@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.maintain{
	font-size: 17px
}



/* general css */
:root{
	--color-primary:rgb(185,229,251);
	--color-two:rgb(142,216,248);
	--color-three: rgb(53,143,206);
	--color-four:rgb(54,62,151);
	--gradient-one:linear-gradient(to right,rgba(142, 216, 248, 0),rgba(142, 216, 248, 1));
	--white-color:rgb(255,255,255);
}

html{
	scroll-behavior: smooth;
}

body{
	background-color: var(--white-color);
}

h1,h2,h3,h4,h5,b{
	font-family: 'Raleway';
	font-weight: 700;
}

a,p,span{
	font-family: 'Raleway';
	text-decoration: none;
}

#wrapper{
	margin: auto;
}
/* --- end general css --- */


/* HEADER CSS */
#header{
	width: 100%;
	position:fixed;
	left: 0;
	top: 0;
	padding: 50px;
	z-index: 10000;
	transition: all .3s;
}

.nav-active{
	padding: 20px 50px !important;
	background-color: #fff;
	box-shadow: 0 0 3px #0002;
}

.navbar{
	width: 100%;
	display: flex;
	justify-content: end;
}
.nav__ul{
	display: flex;
	gap:40px;
	align-items: center;
	list-style: none;
}
.nav__ul--li a{
	text-decoration: none;
	font-size: 17px;
	color: var(--color-four);
}
.nav__ul--li a:hover{
	font-weight: 700;
}
.nav__li-active{
	font-weight: 700;
}
/* END HEADER CSS */




/* MAIN CSS*/
#main{
	width: 100%;
	min-height: 80vh;
}

.main-background{
	width: 100%;
	height: 80vh;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}
.main__background--img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-item{
	width: 100%;
	display: flex;
	flex-direction: column;
	gap:30px;
	align-items: center;
	justify-content: center;
	padding-top: 100px;
	max-width: 1400px;
	margin: auto;
}

.main-logo{
	width: 400px;
	object-fit: cover;
	height: auto;
}
.main__item--logo{
	margin-bottom: 70px;
}
.main__item--title{
	text-align: center;
	font-size: 35px;
	color: var(--color-four);
}

.main__cards{
	width: 100%;
	padding: 20px;
	display: flex;
	gap:40px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.main__cards-item{
	padding: 40px;
	border-radius: 10px;
	background-color: var(--color-four);
	min-height: 300px;
	flex:1;
	color:#fff;
	margin-top: 30px;
	min-width: 300px;
}
.card-item-title{
	margin-top:20px;
	margin-bottom:30px;
	font-size: 30px;
}

.card-item-description{
	font-size: 17px;
}


.main__section--about{
	padding-top: 70px;
}

.main__section-about--title{
	font-size: 30px;
	color: var(--color-three);
	text-align: end;
	width: 57%;
	border-bottom: 3px solid var(--color-three);
	margin-bottom: 50px;
}

.main__section-about--content{
	max-width: 1400px;
	margin: auto;
}
.main__section-about--intro{
	font-weight: 500;
	font-size: 18px;
}

.main__section-about--profiles{
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:30px;
	width: 100%;
	justify-content: center;
}

.profiles__primary{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile__circle{
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	gap:20px;
}
.profile__circle-img--cont{
	width:300px;
	height: 300px;
	border-radius: 50%;
	background-color: var(--color-two);
}
.profile__circle--img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.profile__circle--description{
	color: var(--color-three);
	font-size: 1em;
}


.profiles__secondary{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main__sectuion-about--card{
	padding: 50px;
	background-color: var(--color-four);
	color: #fff;
	border-radius: 10px;
	margin-bottom: 80px;
}

.main__sectuion-about--card ul{
	display: flex;
	flex-direction: column;
	gap:5px;
	padding-left: 17px;
	font-size: 1em;
}
.main__sectuion-about--card ul li p{
	font-weight: 200;
}


.main__banner{
	width: 100%;
	height: 450px;
	line-height: 0;
}
.main__banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.main__book--section{
	width: 100%;
	max-width: 1400px;
	margin: auto;
	padding: 80px 20px;
	font-size: 1.1em;
	font-weight: 500;
}
.btn-container{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	margin-top: 50px;
}
.cta__book{
	padding: 18px 30px;
	border-radius:40px;
	border:2px solid var(--color-four);
	color: var(--color-four);
	font-weight: 700;
	font-size: 24px;
	transition: all .3s;
}
.cta__book:hover{
	background-color: var(--color-four);
	color: #fff;
}
/* END MAIN CSS*/

/* FOOTER CSS */
#footer{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.footer-intro{
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	min-height: 410px;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 1.6em;
}
.footer-intro-img{
	position: absolute;
	line-height: 0;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}
.second-intro-img{
	margin: auto;
	width: 700px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-55%);

}
.footer-intro-img img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	max-height: 410px;
	transform: translateY(12px);
}

.second-intro-img img{
	object-fit: contain;
}


.footer-cards{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	flex-wrap: wrap;
	z-index: 1;
}
.footer-card{
	flex:1;
	height: 400px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	padding: 40px 60px;
	text-align: initial;
	color: #fff;
	font-size: 1.4em;
	min-width: 300px;
}
.footer-card p{
	font-size: .8em;
}
.footer-card p a{
	text-decoration: none;
	color: #fff;
}
.bg-four{
	background-color: var(--color-four);
}
.bg-white{
	background-color: var(--white-color);
	color: var(--color-four);
}
.bg-white p a{
	color: var(--color-four);
}
.bg-three{
	background-color: var(--color-three);
}
.bg-three a{
	color: #fff;
	font-size: .8em;
}

.footer__card-socials{
	display: flex;
	width: 100%;
	justify-content: initial;
	gap:15px;
	margin-top: 5px;
}
.footer__card-socials img{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.footer-btn{
	margin-top: 20px;
}

.footer-btn .cta__book{
	color:#fffe;
	border-color:#fffe;
}
.footer-btn .cta__book:hover{
	background-color: transparent;
}

.footer-separator{
	width: 100%;
	height: 1.5px;
	margin-bottom: 10px;
	background-color: var(--white-color);
}

.footer-links{
	text-align: center;
	font-size: 20px !important;
}



/* END FOOTER CSS*/




/*	 Hidden OBJECTS */
#phone-header{
	display: none;
}
.only-phone{
	display: none;
}
/* END HIDDEN OBJECTS */


/* MEDIA CSS */

@media (max-width:965px){
	.maintain{
		color: inherit; 
		text-decoration: none; 
		font-size: 13px;
	}
	
	.footer-intro{
		display: none;
	}
	.cta__navbar{
		cursor: pointer;
	}
	.profiles__secondary{
		gap:30px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.profiles__secondary .profile__circle:nth-child(2){
/*		display: none;*/
	}
	.profile__circle-img--cont{
		width: 150px;
		height: 150px;
	}
	#header{
		display: none;
	}
	#phone-header{
		display: block;
		padding: 20px;
		width: 100%;
		display: flex;
		justify-content: end;
		position: fixed;
		top: 0;
		transition: all .3s;
	}
	#phone-header.nav-active{
		padding: 10px !important;
	}
	.main-item{
		padding-top: 50px;
	}
	.phone-navbar{
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0;
		left: -100%;
		background-color: var(--color-four);
		color: #fff;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap:20px;
		transition: left .4s;
	}
	.phone-navbar.active{
		left: 0;
	}
	.phone-navbar a{
		color: #fff;
		font-weight: 500;
		font-size: 2em;
		text-decoration: none;
		transition: all .3s;
	}
	.phone-navbar a:hover{
		text-decoration: underline;
		font-weight: 700;
	}
	.cta__nav{
		position: absolute;
		z-index: 10;
		top: 10px;
		right: 10px;
	}
	.cta__nav p{
		color: #fff;
		cursor: pointer;
		font-size: 2em;
	}



	.only-phone{
		display: block;
	}
	.main__cards{
		flex-direction: column;
		padding: 0px;
	}
	.main__cards-item{
		margin: 0 25px;
	}
	.phone-banner{
		height: 35vh;
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap:15px;
		text-align: center;
		color: #fff;
		font-size: 1.1em;
		font-weight: 600;
	}
	.change-on-phone{
		margin-top: -120px;
	}
	.phone-banner img{
		width: 100%;
		position: absolute;
		z-index: -1;
		object-fit: cover;
		height: 100%;
	}
	.alas{
		max-width: 400px;
		width: 90% !important;
		object-fit: contain !important;
	}
}

@media (max-width:660px){
	.main__section-about--intro{
		padding: 20px;
	}
	.main__section-about--title{
		white-space: nowrap;
		width: 80%;
	}
	.main__sectuion-about--card{
		margin-right: 10px;
		margin-left: 10px;
	}

	.maintain{
		color: inherit; 
		text-decoration: none; 
		font-size: 13px;
	}
}
@media (max-width:550px){
	.maintain{
		color: inherit; 
		text-decoration: none; 
		font-size: 13px;
	}

	.footer-card{
		height: fit-content;
		padding: 40px 30px;
		margin-top: -20px;
	}
	.float-right{
		float:right;
		margin-top: -80px;
	}
	.footer-card p{
		font-size: .6em !important;
	}
	.main__sectuion-about--card{
		font-size: .9em;
		padding: 30px;
	}
	.main__item--logo{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.main-logo{
		width: 90%;
		margin: auto;
	}
}

@media (max-width:400px){
	.maintain{
		color: inherit; 
		text-decoration: none; 
		font-size: 13px;
	}

	.profile__circle-img--cont{
		width: 100px;
		height: 100px;
	}
	
	.main__cards-item{
		margin-right: 5px;
		margin-left: 5px;
		min-width: 250px;
	}
	.main__item--title{
		font-size: 30px;
	}
	.card-item-title{
		font-size: 25px;
	}
	.card-item-description{
		font-size: 16px;
	}
	.footer__card-socials img{
		width: 30px;
		height: 30px;
	}
	.popup-conditions div{
		padding:17px !important;
	}
	.popup-conditions div p{
		font-size:.7em !important;
		text-align: center;
	}
}

/* END MEDIA CSS*/