body {
	/*font-family: "Figtree", sans-serif;*/
	font-family: "SN Pro", sans-serif;
	margin: 0;
	min-height: 100dvh;
	min-height: 100vh;
	background: #f8f8f7;
	color: #03193C;
	padding-top: 70px;
}

h1, h2, p {
	margin: 0;
}

/*FOOTER START*/

footer {
	font-size:12px;
	color: white;
	background-color: black;
	border-radius: 90px 90px 0 0;
	height: fit-content;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer {
	width: 90%;
	display: flex;
	justify-content: space-between;
	padding: 80px 0px 40px 0px;
	border-bottom: 1px solid #878787;
	box-sizing: border-box;
}

.logo-box {
	width: 300px;
	font-size: 16px;
	color: #888780;
	font-weight: 500;
}

.logo-box img {
	width: clamp(200px, 25vw, 300px);
}

.links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #888780;
}

.links h1 {
	font-weight: 400;
}

.links a {
	text-decoration: none;
	color: #b4b2a9;
	font-size: 16px;
	font-weight: 600;
}

.links a:hover {
	color: #f1efe8;
}

.socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	font-size: 14px;
}

.social-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	text-decoration: none;
	background: #2c2c2a;
	cursor: pointer;
	transition: .3s;
}

  .social-btn:hover {
      background: #3c3c3a;
      border-color: rgba(255,255,255,0.18);
    }


.social-btn i {
	color: #888780;
}

.social-btn:hover i {
	color: #d3d1c7;
}

.copyright {
	text-align: center;
	padding: 20px;
	color: #888780;
	font-weight: 600;
}

/*FOOTER END*/

header {
	width: 100vw;
	padding: 20px 65px 20px 50px;
	position: fixed;
	box-sizing: border-box;
	z-index: 99;
	top: 0;
	transition: .3s;
}

.header-content {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	width: 100%;
	background-color: #f8f8f7;
	backdrop-filter: blur(10px);
	box-sizing: border-box;
	z-index: 99;
	border-radius: 30px;
	padding: 5px 5px;
	box-shadow: ;
	border: 1px solid transparent;

}

.logo {
	background-image: url('../resources/logo&text-v2.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
	width: 180px;
	height: 90%;
	margin: 0px 10px;
}

.nav-bar {
	display: flex;
	justify-content: space-around;
	gap: 40px;
}

.nav-bar a {
	text-decoration: none;
	color: #03193C;
	font-size: 16px;
	font-weight: 700;
	transition: .3s;
}

.nav-bar a:hover {
	color: #2a3d5b;
}

.header-btn {
	height: 100%;
	display: flex;
}

.signup-header {
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	width: 100px;
	transition: .3s;
	border-radius: 30px;
	height: 100%;
	background-color: transparent;
	border: none;
	
}

.signup-header:hover {
	background-color: #dadada;
	color: #2e4364;
	
}

.login-header {
	border: 0;
	background: #2e4364;
	border-bottom: 3px solid #000000;
	color: white;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	border-radius: 20px;
	width: 100px;
	height: 100%;
	transition: .3s;
}


.login-header:hover {
	background: #516c99;
}

.menu-icon {
	display: none;
	height: 100%;
}

.login-opacity {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
	
}

.login-opacity.active {
	display: flex;
	opacity: 1;

}

.login-box {
	background: white;
    padding: 25px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
	-webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.login-box h2 {
	font-size: 30px;
	margin: 0;
	margin-top: 10px;
}

.login-box p {
	margin: 0;
	margin-bottom: 20px;
	margin-top: -5px;
	color: #777;
	
}


.login-body {
	overflow: hidden;
	padding-right: 15px;
}

#loginForm {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.email-container {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}

.email-container input  {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #2e4364;
	border: 1px solid #919191;
}

.email-container label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
}

.email-container input:focus+label, .email-container input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.password-container {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
}

.password-container input {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #000000;
	border: 1px solid #919191;
}

.password-container label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
}

.password-container input:focus+label, .password-container input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.login {
	border: 0;
	background: #2e4364;
	box-shadow: 0 4px 0 #03193C;
	color: white;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	border-radius: 10px;
	width: 100%;
	height: 40px;
	transition: .5s;
	margin-top: 10px;
}

.login:hover {
	background: #516c99;
}

.login-logo {
	background-image: url('../resources/logo.png');
	background-size: cover;
	width: 80px;
	height: 80px;
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    cursor: pointer;
	transform: translateY(-50%);
}

.forgot-password {
	display: flex;
	justify-content: center;
	color: #5c5c5c;
}

.forgot-password a {
	text-decoration: none;
	color: #03193C;
	font-weight: 600;
	padding-left: 5px;
}

.forgot-password a:hover {
	text-decoration: underline;
}


.about-container {
	display: flex;
	padding: 20px 40px;
	flex-direction: column;
	
}

.about-box {
	background: #091630;
	background: linear-gradient(138deg, rgba(9, 22, 48, 1) 55%, rgba(68, 77, 102, 1) 100%);
	border-radius: 10px;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10%;
	gap: 120px;

}

.about-detail {
	width: 45vw;
}

.about-detail h1 {
	font-size: clamp(40px, 6vw, 80px);
	margin: 0;
}

.about-detail p {
	margin: 0;
	font-size: clamp(16px, 1.8vw, 18px);
	opacity: .8;
	width: 80%;
}

.logo-about {
	width: clamp(200px, 30vw, 450px);
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-about img {
	object-fit: cover;
	width: 100%;
}

.objective-container {
	height: fit-content;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 40px;
}

.objective-content {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	width: 90%;
	padding: 40px;
	border-bottom: 1px solid #c1c1c1;
}

.objective-content:last-child {
	border-bottom: none;
}

.objective-content h1 {
	font-size: 32px;
}

.icon {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: 40%;
}

.content {
	display: flex;
	align-items: center;
	width: 50%;
	font-size: 18px;
	font-weight: 500;
	color: #676767;
}



.slider-container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	overflow: hidden;
	background: #222e45;
	background: radial-gradient(circle, rgba(34, 46, 69, 1) 0%, rgba(0, 0, 0, 1) 100%);
	padding: 100px 40px;
	box-sizing: border-box;
	gap: 40px;
}

.slider-title {
	width: 60%;
	text-align: center;
	color: white;
}

.slider-title h1 {
	font-size: clamp(60px, 7vw, 80px);
	font-weight: 700;	
	margin: 0;
}

.slider-title p {
	opacity: .8;
	font-weight: 400;
}
.slider-images{
	display: flex;
	align-items: center;
	gap: 20px;
}

.slider-images img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	opacity: 1;
	transition: .7s ease;
}

.slider-img {
	width: 7vw;
	border-radius: 6px;
	position: relative;
	transition: .7s;
	height: 450px;
}



.overlay {
	background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 80%);
	height: 100%;
	width: 100%;
	position: absolute;
	transition: .7s ease;
	opacity: 1;
}

.slider-img h1 {
	font-size: 38px;
	width: 100%;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 80%;
	transform: rotate(270deg);
	transition: .3s ease;
	opacity: 1;
	margin: 0;
	text-align: left;
}

.slider-img .detail {
	position: absolute;
	top: 80%;
	left: 5%;
	transition: .7s ease;
	opacity: 0;
	color: white;
}

.slider-img .detail h2 {
	font-size: 26px;
	margin: 0;

}

.slider-img .detail p {
	font-size: 20px;
	margin: 0;
	
}

.slider-img:hover {
	width: 21vw;
}

.slider-img:hover h1 {
	opacity: 0;
}

.slider-img:hover .detail {
	opacity: 1;
}

.slider-img:hover .overlay {
	opacity: 0;
}

.cta-section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}


.cta-section h1 {
	font-size: 60px;
	width: 40%;
	text-align: center;
}

.cta-section button {
	margin: 20px;
	border: 2px solid #03193c;
	background: transparent;
	color: #03193c;
	font-size: 18px;
	font-weight: 700;
	border-radius: 20px;
	padding: 10px;
	width: 300px;
	cursor: pointer;
	transition: .3s;

}

.cta-section button:hover {
	background: #2a3d5b;
	color: white;
	border: 2px solid transparent;
}

