@import url('https://fonts.googleapis.com/css?family=Montserrat:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

@font-face {
    font-family: "Fjalla One", sans-serif;;
    src: url('./britanic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}
body {
    position: relative;
    font-family: "Fjalla One", sans-serif;
    margin: 0;
    padding: 0;
}



.background-overlay {
    background-image: url('../images/7.png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    opacity: 0.8; /* Adjust this value for more or less opacity */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures it stays behind other content */
}

.content {
    position: relative;
    z-index: 1;
	 /* Ensures content appears above the overlay */
    /* Add padding, margin, or other styling as needed */
}


header {
	height:20px min-content;
	
	
	/* background: #000; */
}
.black {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
nav { 
	
	padding-top: 20px;
	/*padding-bottom: 20px; */
	top: 0;
	position: fixed;
	display: flex;
	width: 100%;
	z-index: 1000;
	background: #fff;
	justify-content: space-around;
	transition: 1.5s;
	align-items: center;
	height: 90px;
}
nav ul {
	display: flex;
	align-items: center;
}
nav ul li {
	list-style: none;
	margin: 5px 10px;
}
nav ul li a {
	padding: 2px 10px;
	color: #2e2e2e;
	cursor: pointer;
	transition: .5s;
	text-decoration: none;
}
nav ul li:hover {
	list-style: none;
	margin: 5px 10px;
	scale: 1.5;
	transition: all 0.8s;
	background: #33b5ed;
	border-radius: 10%;


}
nav ul li a:hover .active{
	color: #fff;
	border-radius: 5px;
	background: #33b5ed;
}
.active {
	color: #fff;
	border-radius: 5px;
	background: #33b5ed;
}

.logo img{
	width: 120px;
	cursor: pointer;
	transition: all 1s;
}

/* .logo-img{
	width: 50px;
	height: 50px;
} */

a, button {
	float: left;
	font-family: "Fjalla One", sans-serif;;
	font-weight: 500;
	font-size: 15px;
	color: #2E3D49;
	display: block;
	text-decoration: none;
	text-align: center;
}

.selector {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #33b5ed;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #f9f9f9;
    background-image: url('../images/localization-icon.png'); /* Add your localization icon path here */
    background-repeat: no-repeat;
    background-position: 10px center;
    background-size: 20px 20px;
    padding-left: 40px; /* Add space for the icon */
    color: #333;
    appearance: none; /* Remove default arrow for customization */
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.selector:hover {
    border-color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.selector:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.4);
}

.selector option {
    font-size: 1rem;
    padding: 10px;
}

.nav_button {
    background-color: #1292f3;
    color: var(--white);
    font-family: "Fjalla One", sans-serif;
    font-size: medium;
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between text and icon */
    max-width: max-content;
    padding: 10px 20px;
    border-radius: 10px;
    /* overflow: hidden; */
    box-shadow: #000 0px 0px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav_button a {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px; /* Space between text and image */
}

.nav_button:hover {
    background-color: #0a7ac4;
    box-shadow: #000 0px 4px 15px;
}

.nav_button img {
    width: 30px; /* Adjust size of the image */
    height: 30px; /* Ensure consistent icon size */
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1) contrast(1);
}

.nav_button:hover img {
    transform: translateX(5px); /* Slide the icon slightly to the right */
    filter: brightness(1.5) contrast(1.2); /* Slightly brighten and enhance contrast */
}

.nav_button .span {
	
    font-size: large;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav_button:hover .span {
    color: #f3f4f4; /* Highlight text on hover */
}
/* chart of ratings */
.question {
	margin-bottom: 20px;
}
.choices {
	display: flex;
	gap: 10px;
}
.choice {
	display: flex;
	align-items: center;
	gap: 5px;
}
button {
	display: block;
	margin: 20px auto;
	padding: 10px 20px;
	background-color: #4CAF50;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}
.chart-container {
	width: 90%;
	max-width: 1200px;
	margin: 40px auto;
	padding: 20px;
	box-sizing: border-box;
}
.filters {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.filters select {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	min-width: 200px;
}
#ratingsChart {
	width: 100% !important;
	height: auto !important;
}
  
/* Container for the header */
.head-container {
    min-height: auto;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    align-items: center;
    justify-content: center; /* Center elements for better alignment */
    position: relative;
    padding: 20px; /* Adds padding for better spacing on smaller screens */
}

/* Full viewport height for larger screens */
@media (min-width: 768px) {
    .head-container {
        min-height: 100vh;
        flex-wrap: nowrap; /* Prevent wrapping on larger screens */
    }
}

/* Quote section styling */
.quote {
    margin-top: 50px;
    max-width: 100%; /* Makes the quote section flexible */
    transform: translateY(-30px); /* Adjusted for a balanced look */
    padding: 20px; /* Padding added for better spacing */
    text-align: center; /* Center-align text for better appearance */
}

/* Quote text styling */
.quote h5 {
    margin-top: 20px;
    color: #0009;
	text-align: left;
    line-height: 1.5; /* Uses relative line height for better scaling */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem; /* Responsive font size */
}

.quote p {
	margin-top: 100px;
    max-width: 100%; /* Allows it to fit smaller screens */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem; /* Responsive font size */
    color: #33b5ed;
    text-align: left; /* Center-align text for better appearance */
    line-height: 1.2; /* Responsive line height */
    font-weight: bold;
    font-family: "Fjalla One", sans-serif;
}

/* Play button section */
.quote .play {
    margin-top: 20px;
    display: flex;
    align-items: start;
    justify-content: center; /* Center-align play button */
}

.quote .play img {
    width: 40px;
    cursor: pointer;
    filter: drop-shadow(0 0 10px #0002);
}

.quote .play span a {
    margin-left: 10px;
    font-size: 1.2rem; /* Responsive font size */
    font-weight: 900;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    text-decoration: none; /* Remove underline from link */
}
/* .quote .check{
	color: #175a77;
} */

/* GIF image styling */
.gif-image {
    width: 100%; /* Full width for responsiveness */
    display: flex;
    justify-content: center; /* Center GIF for better balance */
    margin-top: 50px;
	box-sizing: content-box;
	
}
.gif-image .img1{
	width: 750px;
}
.gif-image .oceanimg{
	width: 750px;
}

.gif-image img {
    max-width: 100%; /* Ensures no overflow */
    height: auto; /* Maintains aspect ratio */
    filter: drop-shadow(0 20px 10px rgba(0, 0, 0, 0.2));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote p {
        font-size: 1.8rem; /* Adjusted for smaller screens */
        line-height: 1.4;
    }
    .quote h5 {
        font-size: 1.2rem;
    }
    .quote .play img {
        width: 35px; /* Adjusted icon size */
    }
    .quote .play span a {
        font-size: 1rem;
    }
}

/* SIDE MENU */
.menu {
	cursor: pointer;
	width: 25px;
	display: none;
}
.side-menu {
	width: 100%;
	height: 100%;
	background: rgba(65, 217, 255, 0.993);
	position: absolute;
	top: 0;
	transition: .8s;
	z-index: 2000;
	transform: translateX(-100%);
}
.side-menu ul {
	margin-top: 35%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* background: #FA4B37; */
}
.side-menu ul li {
	list-style: none;
	/* background: #009900; */
	display: flex;
	justify-content: center;
	align-items: center;
	/* border-bottom: 1px solid #fff; */
	/* padding: 10px 0px; */
}
.side-menu ul li:hover a{
	background: #fff;
	color: #DF2771;
}
.side-menu ul li a{
	color: #FFF;
	width: 100%;
	font-size: 1em;
	/* background: #2E3D49; */
	text-decoration: none;
	padding: 15px 0px;
}
.close img{
	float: right;
	width: 35px;
	cursor: pointer;
	margin: 10px;
}
.user {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10%;
}
.user img {
	width: 60px;
	border-radius: 50%;
	border: 2px solid #fff;
	filter: drop-shadow(0 10px 20px #0004);
	margin-right: 30px;
	cursor: pointer;
}
.user p {
	color: #fff;
	cursor: pointer;
}
.user img, .user p {
	opacity: 1;
}
/*Common things in all sections*/
#about_section, #portfolio_section, #team_section, #services_section, #contactus_section {
	font-family: "Fjalla One", sans-serif;;
	color: #2E3D49;
	position: relative;
	font-size: larger;
	font-weight: bold;
}
.diffSection {
	width: 100%;
	position: relative;
	justify-content: center;
	align-items: center;
	
}
.diffSection .content {
	margin: 10px;
	text-align: center;
	padding: 10px 100px;
	font-size: 1.5em;
}
/*PORTFOLIO*/
.extra {
	width: 100%;
}
.extra p {
	padding: 30px;
	padding-bottom: 150px;
	font-size: 50px;
	text-align: center;
	color: #fff;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7)),url("../images/imgVEX/1W2A0066.jpg");
	background-size: cover;
	background-attachment: fixed;
	font-family: cursive;
	z-index: -9;
}
.smbox {
	display: flex;
	flex-wrap: wrap;
	transform: translateY(-100px);
	justify-content: center;
}
.smbox span {
	margin: 1%;
	background: #fff;
	box-shadow: inset 0px 0px 25px rgba(0,0,0,0.2),
						0 0 40px rgba(0,0,0,0.3);
	border-radius: 10px;
	padding: 30px 50px;
	cursor: pointer;
}
.smbox span:hover {
	transform: scale(1.3);
	transition: .5s ease;
}
.smbox .data {
	font-size: 80px;
	color: #33b5ed;	
}
.smbox .det {
	font-size: 20px;
	color: #272529;
	font-family: cursive;
}

/*Title*/
.title {
	margin-top: 0;
	font-family: "Fjalla One", sans-serif;;
	font-size: 30px;
	text-align: center;
	color: #2E3D49;
}

/*ABOUT*/
.about-content {
	width: 100%;
	position: relative;
	justify-content: center;
	flex-wrap: wrap;
	display: flex;
	align-items: center;
}
.about-content .side-text {
	width: 550px;
	padding: 50px 40px;
	background: #fff;
	box-shadow: 2px 0 100px rgba(0,0,0,0.3);
	border-radius: 5px;
	text-align: justify;
	line-height: 22px;
	opacity: 0;
	transform: translateX(-100px);
	transition: 1s ease-in-out;
}
.about-content .side-text-appear {
	opacity: 1;
	transform: translateX(0px);
}
.about-content .side-text h2 {
	padding: 10px;
}
.about-content .side-text p {
	padding: 10px;
}
.about-content .side-image img {
	width: 90%;
	border-radius: 5px;
}
.sideImage {
	transform: translateX(100px);
	opacity: 0;
	transition: .8s ease-in-out;
}
.sideImage-appear {
	opacity: 1;
	transform: translateX(0px);
}

/*POPULAR SUBJECTS*/
.cbox {
	filter: drop-shadow(0 20px 10px rgba(0, 0, 0, 0.2)); /* Drop shadow */
	position: relative;
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cbox .det {
	width: 250px;
	height: 80px;
	margin: 10px;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
}
.cbox .det a{
	justify-content: space-around;
	width: 250px;
	padding: 28px;
	border-radius: 10px;
	border: 1px solid #33b5ed;
	font-size: 15px;
	color: #272529;
	font-family: cursive;
	text-decoration: none;
}
.cbox .det a:hover {
	background: linear-gradient(to right, #33b5ed, #1f7194);
	color: white;
}
.cbox .det a:hover img{
	transform: scale(2);
    transition:.5s ease;
}
.cbox img {
	width: 20px;
	margin-right: 20px;
}

.diffSection {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* TEAM SECTION */
.totalcard {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.totalcard .card {
    margin: 50px;
    width: 300px;
    border-radius: 10px;
    background: #fff;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.4),
                0 0 10px rgba(0,0,0,0.3);
}

.card:nth-child(1) {
    border-top: 5px solid green;
}

.card:nth-child(2) {
    border-top: 5px solid blue;
}

.card:nth-child(1):hover {
    box-shadow: inset 0px 0px 10px rgba(0,255,0,0.5),
                1px 1px 30px rgba(0,255,0,0.5);
}

.card:nth-child(2):hover {
    box-shadow: inset 0px 0px 10px rgba(0,0,255,0.5),
                1px 1px 30px rgba(0,0,255,0.5);
}

.totalcard .card img {
    width: 100px;
    height: 100px;
    margin-top: 5px;
    cursor: pointer;
    border-radius: 50px;
    transition-duration: .8s;
}

.totalcard .card img:hover {
    transform: scale(3.5);
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Centering the Our Team Button */
.button-container {
    text-align: center;
    margin-top: 30px;
}

.team-btn {
    background-color: #207093;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.team-btn:hover {
    background-color: #165c75;
	transition: 5ms;
}

#detail p{
	font-size: 15px;
	line-height: 25px;
	font-variant: small-caps;
	text-align: center;
	margin: 25px;
	margin-bottom: 0px;
	margin-top: 0px;
}
#detail button {
	outline: none;
	border-radius: 10px;
	border-style: none;
	border: 1px solid black;
	padding: 9px 25px;
	cursor: pointer;
	transition-duration: .4s;
}
#detail a {
	bottom: 80px;
	text-decoration: none;
	margin-bottom: 30px;
	margin-top: 20px;
	margin-left: 90px;
	align-self: center;
}
.btn-roshan:hover {
	background: rgba(0,255,0,0.7);
	color: #fff;
}
.btn-roshan2:hover {
	background: rgba(0,0,255,0.5);
	color: #fff;
}
.card-title {
	font-size: 17px;
	color: #343A40;
	padding: 20px;
	font-weight: 700;
}

/*Service Section*/
/* gloable section */
.goals-section {
	padding: 20px ;
	display: contents;
    text-align: center;
    margin: 50px auto;
    width: auto;
	min-width: auto;
	
	
}

.goals-section h2 {
    font-size: 2.5rem;
    color: #33b5ed; /* color similar to the title */
    margin-bottom: 40px;
}

.goal-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.goal-card {
    background-color: #f9f9f9; /* Light background color */
    border-radius: 15px;
    padding: 20px;
    flex: 1;
    margin: 10px;
    min-width: 400px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.goal-card img {
    height: 50px;
    margin-bottom: 20px;
}

.goal-card h3 {
    font-size: 1.5rem;
    color: #1292f3; 
    margin-bottom: 15px;
}

.goal-card p {
    font-size: 1rem;
	display: flex;
    color: #333;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


/* Capstone Project Section */
.capstone-section {
	align-content: center;
	align-self: center;
    position: sticky;
    text-align: center;
    color: white;
    font-family: 'Arial, sans-serif';
	display: inline-block;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background-image.png') no-repeat center center/cover;
    z-index: -1;
}

.content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.content h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 30px;
}

.goal-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Add gap between items */
}

.goal-item {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    margin: 10px auto;
    text-align: left;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.goal-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.goal-item h3 {
    font-size: 1.75rem;
    color: #000;
    margin-bottom: 15px;
}

.goal-item p {
    font-size: 1.1rem;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content h2 {
        font-size: 2rem;
    }
    .goal-item {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 10px;
    }
    .goal-item {
        padding: 20px;
    }
    .goal-item img {
        width: 50px;
        height: 50px;
    }
    .goal-item h3 {
        font-size: 1.5rem;
    }
    .goal-item p {
        font-size: 1rem;
    }
}


/*Service Section*/

.service-swipe {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7)),url("../Explor/img/rules/competition.jpg");
	background-size: cover;
	background-attachment: fixed;
}
.service-swipe .s-card img {
	width: 100px;
}
.service-swipe a {
	padding: 0;
	margin: 40px 10px;
	font-weight: bold;
	font-size: 16px;
}
.service-swipe .s-card {
	display: flex;
	justify-content: space-around;
	padding: 10px;
	align-items: center;
	text-align: center;
	width: 350px;
	height: 200px;
	box-shadow: inset 0 0 20px rgba(255,255,255,0.05),
					0 0 50px rgba(0,0,0,0.8);
	border-radius: 5px;
	cursor: pointer;
	transition-duration: .5s;
}
.service-swipe .s-card p {
	color: #f2f2f2;
	font-size: 1.2em;
	font-family: 'Open Sans',sans-serif;
}
.service-swipe .s-card:hover {
	box-shadow: 0 0 50px rgba(255,255,255,0.8);
	transform: translateY(-10px);
}

/*Contact Us Section*/
.csec {
	background: linear-gradient(to right, #33b5ed, #1f6d8f);
	background-attachment: fixed; 
	position: absolute;
	width: 100%;
	height: 250px;
	top: 200px;
	content: '';
	transform-origin: top right;
	transform: skewY(-10deg);
	z-index: -1;
}
.back-contact {
	margin-top: 0px;
	transform: translateY(-50px);
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.cc {
	height: 400px;
	width: 400px;
	height: 500px;
	border-radius: 10px;
	justify-content: center;
	box-shadow: 1px 1px 20px rgba(0,0,0,0.4);
	background: #fff;
}
.cc form {
	margin: 5%;
	margin-top: 40px;
	width: 90%;
	height: 90%;
}
.cc form label {
	position: absolute;
	color: #2E3D49;
	font-size: 10px;
	font-weight: 800;
}
.cc form input {
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 5px;
	box-shadow: inset 0 0 5px lightgray;
	border: 1px solid rgba(0,0,0,0.2);
	outline: none;
	color: #2E3D49;
	font-weight: 600;
}
.imp {
	color: rgb(35, 179, 223);
}
form textarea {
	width: 100%;
	height: 100px;
	box-shadow: inset 0 0 5px lightgray;
	border: 1px solid rgba(0,0,0,0.2);
	border-radius: 5px;
	outline: none;
	color: #2E3D49;
	font-weight: 600;
	padding: 15px;
}
#csubmit {
	margin-top: 20px; 
	background: linear-gradient(to right, #33b5ed, #175a77);
	border-radius: 5px;
	border-style: none;
	outline: none;
	width: 100%;
	padding: 15px 25px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

#makeitfull {    
	display: flex;
    justify-content: center;
    transform: translateY(35px);
}
#makeitfull img {
    width: 50px;
}
.review {
    background: transparent;
    width: 100%;
}
.rev-container {
    padding: 10px 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.rev-card {
    width: 550px;
    height: 240px;
    margin-bottom: 40px;
    background: #fff;
    display: flex;
    padding: 10px;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}
.rev-card:hover {
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}
.identity {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}
.identity img {
    width: 120px;
    height: 120px;
    transition-duration: .8s;
    border-radius: 50%;
}
.identity img:hover {
    transform: scale(2.2);
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.identity p {
    width: 150px;
    font-weight: bold;
    color: #2E3D49;
    text-align: center;
}
.identity h6 {
    width: 150px;
    text-align: center;
}
.identity .rating img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}
.rev-cont {
    overflow: hidden;
}
.rev-cont #title {
    padding: 10px;
    color: #2E3D49;
    font-weight: bold;
}
.rev-cont #content {
    padding: 10px;
    font-size: .9em;
    color: #2E3D49;
    line-height: 22px;
    text-align: justify;
	font-weight: bold;
	font-family: "Fjalla One" , sans-serif;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}
.modal iframe {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/*FEEDBACK*/
.title2 {
	position: relative;
	margin-top: 150px;
	margin-left: 100px;
}
.title2 span{
	font-weight: 700;
	font-family: "Fjalla One", sans-serif;;
	font-size: 30px;
	color: #2E3D49;
}
.title2 .shortdesc2 {
	padding: 10px;
	font-family: "Fjalla One", sans-serif;;
	font-size: 15px;
	color: #2E3D49;
	margin-bottom: 10px;
}
.feedbox {
	margin-top: 50px;
	width: 100%;
	display: flex;
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0.7)),url("../images/feadback.png");
	background-size: cover;
	padding: 50px 80px;
	background-attachment: fixed;
}
.feed {
	width: 800px;
	height: 400px;
	position: relative;
	border-radius: 10px;
	justify-content: center;
	box-shadow: inset 0 0 90px rgba(0,0,0,0.6),
					0 0 80px rgba(0,0,0,0.2);
	background: rgba(0,0,0,0.4);
}
.feed form {
	width: 100%;
	height: 100%;
	padding: 20px;
}

.feed form label {
	position: absolute;
	color: #f2f2f2;
	font-size: 10px;
	font-weight: 800;
}
.feed form input, .feed textarea {
	padding: 15px;
	border-radius: 5px;
	box-shadow: inset 0 0 5px lightgray;
	border: 1px solid rgba(0,0,0,0.2);
	outline: none;
	color: #2E3D49;
	background: #fff9;
	font-weight: 600;
}
.feed form input {
	margin-bottom: 15px;
	width: 50%;
}
.feed form .fname {
	width: 25%;
}
.feed form textarea {
	width: 100%;
	height: 100px;
}
.feed #csubmit {
	margin-top: 25px; 
	background: linear-gradient(to right, #33b5ed, #2685ae);
	border-radius: 5px;
	border-style: none;
	outline: none;
	width: 100%;
	padding: 15px 25px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

/*SCROLLING TEXT*/
.marqu {
	text-align: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	padding: 10px;
}

/*FOOTER*/
footer {
	color: #E5E8EF;
	background: #000D;
	padding: 50px 0; 
}
footer .footer-container {
	max-width: 1300px;
	margin: auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap-reverse;
}
footer .social-media img{
	width: 22px;
}
footer .logo {
	width: 180px;
	color: #fff;
}
footer .social-media a{
	margin-right: 10px;
	font-size: 22px;
	text-decoration: none;
}
footer .right-col h1{
	font-size: 26px;
}
footer .border{
	width: 100px;
	height: 4px;
	background: linear-gradient(to right, #33b5ed, #15749d);
	margin: 2px;
}
footer .newsletter-form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
footer input::placeholder {
  color: white !important;
}
footer .txtb {
	flex: 1;
	padding: 18px 40px;
	font-size: 16px;
	background: #343A40;
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	min-width: 260px;
	margin-top: 20px;
	color: white;
}
footer .btn {
	margin-top: 20px;
	padding: 18px 40px;
	font-size: 16px;
	color: #f1f1f1;
	background: linear-gradient(to right, #33b5ed, #2788b2);
	border: none;
	font-weight: 700;
	outline: none;
	border-radius: 5px;
	margin-left: 20px;
	cursor: pointer;
	transition: opacity .3s linear;	
}
footer .btn:hover {
	opacity: .7;
}

/*PROPERTIES FOR MAKING WEBSITE RESPONSIVE*/
@media screen and (max-width: 960px) {
	.footer-container {
		max-width: 600px;
	}
	.right-col {
		width: 100%;
		margin-bottom: 60px;
	}
	.left-col {
		width: 100%;
		text-align: center;
	}
	.social-media {
		display: flex;
		justify-content: center;
	}
	.logo {
		transition: 1s;
		margin-left: 30%;
	}
	nav ul, .srch, .get-started{
		display: none;
	}
	.menu {
		display: block;
	}
	nav {
		padding-bottom: 20px;
		border-bottom: 1px solid #0005;
		/* position: fixed; */
		/* top: 0; */
	}
	.quote p, .quote h5, .play {
		justify-content: center;
		text-align: center;
	}
	.quote p {
		font-size: 30px;
	}
	.service-container .right-side img {
		width: 90%;
	}
	.title {
		margin-top: 0px;
	}
	
}
@media screen and (max-width: 700px) {
	footer .btn{
		margin: 0;
		width: 100%;
		margin-top: 20px;
	}
	.svg-image img {
		width: 90%;
		margin: 20px;
		/* align-self: center; */
	}
}

@media screen and (max-width: 1000px) {	
	.feedbox form input, .feedbox form .fname{
		width: 100%;
	}
}



#whySTEMAi h3 {
	font-size: 50px;
	padding: 100px 100px 0;
	font-weight: 700;
}

#whySTEMAi button {


	width: 85%;



	height: auto;
	background: #f2f2f2;
}

#whySTEMAi button.active {
	background-color: #33b5ed;
	color: white;
}



.btn.active  span {


	color: #6e8ea4;
}

.btn.active p {
	color: white;
}

#cardtext {
	box-shadow: inset 0px 0px 10px rgb(90, 162, 234),
		1px 1px 30px rgb(90, 162, 234);
}

#whySTEMAi button:hover {
	box-shadow: inset 0px 0px 10px #42b5e7,
		1px 1px 30px #42b5e7;



}


