:root{
	--main-color: #2d7bbf;
	--main-dark-color: #001837;
}
*{
	box-sizing: border-box;
}
body{
	margin: 0;
	padding: 0;
	font-family: "Quicksand-SemiBold"; 
}
@font-face {
	font-family: "Quicksand-Medium"; 
	src: url("../fonts/Quicksand/Quicksand-Medium.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "Quicksand-SemiBold"; 
	src: url("../fonts/Quicksand/Quicksand-SemiBold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
@font-face {
	font-family: "Quicksand-Bold"; 
	src: url("../fonts/Quicksand/Quicksand-Bold.ttf") format("truetype"); 
	font-style: normal; 
	font-weight: normal; 
	font-display: swap;
}
header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
	border-bottom: 1px solid var(--main-color);
}
header .logo{
	width: 250px;
	padding: 0 40px;
}
header .logo img{
	width: 100%;
}
header .actions{
	display: flex;
	align-items: center;
	gap: 30px;
}
header .actions .phone{
	display: flex;
	align-items: center;
	font-size: 18px;
	color: var(--main-dark-color);
	text-decoration: none;
	gap: 10px;
	transition: .3s;
	cursor: pointer;
}
header .actions .phone .img{
	width: 40px;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	transition: inherit;
	border-radius: 100%;
}
header .actions .phone .img svg{
	width: 50%;
}
header .actions .phone:hover{
	color: #fba311;
}
header .actions .phone:hover .img{
	background: var(--main-dark-color);
}
header .lang-block{
	position: relative;
	cursor: pointer;
}
header .lang-block p,
header .lang-block a{
	font-size: 18px;
	line-height: 1.5;
	font-family: "Quicksand-SemiBold"; 
	transition: .2s;
}
header .lang-block p{
	color: var(--main-dark-color);
	display: flex;
	align-items: center;
	margin: 15px 0;
}
header .lang-block p svg{
	width: 15px;
	transform: rotate(90deg);
	margin-left: 5px;
	margin-bottom: -7px;
	transition: .2s;
	display: block;
}
header .lang-block:hover p svg{
	margin-bottom: -12px;
}
header .lang-block:hover p{
	color: var(--main-color);
}
header .lang-block .langs{
	position: absolute;
	top: 80%;
	border-radius: 8px;
    border: 1px solid #E1E7EE;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
    box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-15px);
	transition: .2s;
}
header .lang-block:hover .langs{
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}
header .lang-block .langs a{
	color: var(--main-color);
	text-decoration: none;
	padding: 5px 10px;
	background: #fff;
	display: block;
	cursor: pointer;
}
header .lang-block .langs a:hover{
	background: #f1f1f1;
	color: #fba311;
}
.main-btn{
	padding: 18px 35px;
	background: var(--main-dark-color);
	border-radius: 50px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.6;
	display: flex;
	align-items: center;
	transition: .3s;
}
.main-btn .arrows{
	width: 20px;
	margin-left: 3px;
	position: relative;
	transition: inherit;
}
.main-btn .arrows svg{
	width: 100%;
	display: block;
	transition: inherit;
}
.main-btn .arrows svg:last-child{
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(0);
	transform-origin: left bottom;
}
.main-btn .arrows svg:first-child{
	transform-origin: top right;
}
.main-btn:hover .arrows svg:last-child{
	transform: scale(1);
	opacity: 1;
}
.main-btn:hover .arrows svg:first-child{
	transform: scale(0) ;
}
.main-btn:hover{
	background: var(--main-color);
}
.container{
	width: 100%;
	max-width: 1450px;
	padding: 0 20px;
	margin: 0 auto;
}
.booking_section{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 20px;
	gap: 50px;
}
.booking_section .hero{
	width: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	overflow: hidden;
}
.booking_section .hero .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: 5;
	top: 0;
}
.booking_section .hero .info{
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 100px 20px;
	color: #fff;
}
.booking_section .hero .info::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #09042d;
	opacity: .5;
	z-index: -1;
}
.booking_section .hero .info .subtitle{
	display: flex;
	align-items: center;
}
.booking_section .hero .info .subtitle svg{
	width: 118px;
}
.booking_section .hero .info .subtitle p{
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}
.booking_section .hero .info h1{
	font-size: 60px;
	line-height: 1;
	margin: 15px 0;
}
.booking_section .hero .info>p{
	font-size: 18px;
	margin: 0;
	margin-bottom: 15px;
	line-height: 1.6;
}
.cleaning-form{
	width: 50%;
}
.cleaning-form h2{
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    color: #001837;
    text-transform: none;
	text-align: center;
	margin: 0;
	margin-bottom: 20px;
}
.cleaning-form .main-text{
	text-align: center;
	margin-bottom: 25px;
}
.cleaning-form label{
	color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
	display: block;
	margin-top: 10px;
}
.cleaning-form input,
.cleaning-form textarea,
.cleaning-form .input{
	font-size: 13px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 14px 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #E1E7EE;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
    box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
    width: 100%;
    outline: unset;
	margin-bottom: 20px;
}
.cleaning-form .input{
	position: relative;
}
.cleaning-form .input .plus{
	width: 25px;
	position: absolute;
	left: 10px;
	z-index: -1;
}
.cleaning-form .input .plus path{
	transition: .2s;
}
.cleaning-form .input:hover .plus path{
	fill: var(--main-dark-color);
}
.cleaning-form .input input[type = file]{
	padding-left: 32px;
	cursor: pointer;
}
.cleaning-form .input input::-webkit-file-upload-button{
	background: none;
	border: none;
	font-size: 15px;
	margin-right: 15px;
	color: var(--main-color);
	transition: .2s;
}
.cleaning-form .input:hover input::-webkit-file-upload-button{
	color: var(--main-dark-color);
}
.cleaning-form textarea{
	min-width: 100%;
	max-width: 100%;
	height: 150px;
	min-height: 150px;
	max-height: 300px;
}
.cleaning-form .input{
	padding: 0;
	overflow: hidden;
}
.cleaning-form .input input,
.cleaning-form .input select{
	border: none;
	box-shadow: none;
	margin: 0;
	text-align: center;
	border-radius: 0;
	height: 100%;
}
.cleaning-form .input select{
	width: 30%;
	border-left: 1px solid #E1E7EE;
}
.cleaning-form select{
	font-size: 13px;
    font-weight: 400;
    color: #000000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 14px 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #E1E7EE;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
    box-shadow: 0px 2px 10px 0px rgba(86, 66, 199, 0.06);
    width: 100%;
    outline: unset;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	margin-bottom: 20px;
}
.cleaning-form button{
	background: var(--main-color);
    color: #ffffff;
    border-radius: 5px;
    padding: 12px 25px;
    line-height: 1;
    border: 2px solid var(--main-color);
    width: 100%;
	font-size: 16px;
    outline: unset;
	font-family: "Quicksand-Bold"; 
	cursor: pointer;
	transition: .3s;
}
.cleaning-form button:hover{
	color: var(--main-color);
	background: #fff;
}
.terms_and_conditions{
	margin: 100px auto;
}
.terms_and_conditions h2.main-title{
	text-align: center;
}
.terms_and_conditions h3.main-title{
	margin-top: 30px;
}
.main-subtitile{
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 13px;
	color: var(--main-dark-color);
	text-transform: uppercase;
	letter-spacing: .5px;
	gap: 10px;
	margin-bottom: 10px;
	font-family: "Quicksand-Bold"; 
}
.main-subtitile.center{
	justify-content: center;
	text-align: center;
}
.main-subtitile svg{
	width: 20px;
}
.main-title.center{
	text-align: center;
}
.main-title{
	font-size: 55px;
	line-height: 1.1;
	color: var(--main-dark-color);
	margin: 0;
	margin-bottom: 30px;
}
h3.main-title{
	font-size: 24px;
	line-height: 1.2;
	margin: 0;
	margin-bottom: 8px;
	font-family: "Quicksand-Bold"; 
}
.main-text{
	color: #565656;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	font-family: "Quicksand-Medium";
}
.why_we_section{
	padding: 100px 0;
	position: relative;
	display: flex;
	align-items: center;
}
.why_we_section .container{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.why_we_section .answers{
	width: 50%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 80px 10px;
}
.why_we_section .answers .answer{
	width: calc(50% - 10px);
}
.why_we_section .answers .answer img{
	width: 120px;
	margin-bottom: 25px;
}
.reservation_steps_section{
	margin-top: 100px;
}
.why_we_section .side-img,
.central_form_section .side-img{
	position: absolute;
	width: 315px;
	margin-bottom: -65px;
	left: -40px;
	z-index: -1;
	object-fit: contain;
}
.reservation_steps_section{
	position: relative;
}
.reservation_steps_section .side-img{
	position: absolute;
	width: 160px;
	top: 75px;
	left: 0;
	z-index: -1;
	object-fit: contain;
}
.reservation_steps_section .reservation_steps{
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 90px;
}
.reservation_steps .reservation_step{
	width: 33.3%;
	padding: 65px 40px 40px 40px;
	border: 1px solid #e5e5e5;
	border-radius: 30px;
	position: relative;
}
.reservation_steps .reservation_step svg{
	width: 80px;
	margin-top: 65px;
	aspect-ratio: 1/1;
}
.reservation_steps .reservation_step .number{
	position: absolute;
	right: -1px;
	bottom: -1px;
	padding: 10px 0 0 10px;
	border-left: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
	border-radius: 30px 0 0 0;
	background: #fff;
}

.reservation_steps .reservation_step .number span{
	width: 50px;
	aspect-ratio: 1/1;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 100%;
	background: #f0f2f4;
	color: var(--main-dark-color);
	position: relative;
	z-index: 2;
}
.reservation_steps .reservation_step .number .corners{
	position: relative;
	width: 100%;
	height: 100%;
}
.reservation_steps .reservation_step .number .corners::before,
.reservation_steps .reservation_step .number .corners::after{
	content: "";
    position: absolute;
    top: -41px;
    right: 0;
    height: 30px;
    width: 30px;
    border-radius: 0 0 20px 0;
    background-color: transparent;
    border: 1px solid #e5e5e5;
    border-top: 0;
    border-left: 0;
    box-shadow: 0 15px 0 0 #fff;
	z-index: 1;
}
.reservation_steps .reservation_step .number .corners::after{
    left: -41px;
	top: unset;
    bottom: -50px;
}
.about_our_service_section{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 100px;
	padding-top: 70px;
}
.about_our_service_section .info{
	margin-bottom: 50px;
	width: 50%;
}
.about_our_service_section .img{
	width: 50%;
}
.who_we_are_section{
	display: flex;
	justify-content: space-between;
	padding: 40px;
	gap: 40px;
}
.who_we_are_section .img-cont,
.who_we_are_section .info{
	width: 50%;
	border-radius: 30px;
}
.who_we_are_section .img-cont{
	background: url('../images/who-we-are-img.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	object-fit: cover;
}
.who_we_are_section .info{
	padding: 100px 120px;
	
}
.our_services_section{
	padding: 0 40px;
}
.our_services_section .bg-cont{
	background: #f0f2f4;
	padding: 100px 0px 70px 0px;
	border-radius: 30px;
}	
.our_services_section .bg-cont>h2.main-title{
	margin-bottom: 50px;
}
.our_services{
	display: flex;
	justify-content: space-between;
	background: #f0f2f4;
	padding: 0 15px;
	gap: 30px;
}
.our_services .our_service{
	width: 33.3%;
	border-radius: 30px;
    padding: 40px 45px 60px 45px;
	display: flex;
	align-items: center;
	background: #fff;
	position: relative;
	cursor: pointer;
	transition: .3s;
	text-decoration: none;
	transition-delay: .1s;
}
.our_services .our_service:hover{
	transform: translateY(-7%);
}
.our_services .our_service .img{
	background: #1e304e;
	border-radius: 20px;
	padding: 10px;
	display: inline-block;
	margin-right: 20px;
	transition: .3s;
}
.our_services .our_service:hover .img{
	background: var(--main-color);
}
.our_services .our_service .img svg{
	width: 50px;
	display: block;
	fill: #fff;
}
.our_services .our_service .img svg path{
	fill: inherit;
}
.our_services .our_service .arrow{
	position: absolute;
    right: 50px;
    bottom: -10px;
    display: table;
    text-align: center;
    z-index: 1;
    padding: 10px;
    border-radius: 100% 100% 0 0;
	background: #f0f2f4;
}

.our_services .our_service .arrow::before,
.our_services .our_service .arrow::after{
	content: '';
    position: absolute;
    background-color: transparent;
    bottom: 10px;
    height: 40px;
    width: 20px;
}
.our_services .our_service .arrow::before{
	right: 100%;
    border-bottom-right-radius: 20px;
	box-shadow: 0 20px 0 0 #f0f2f4;
}
.our_services .our_service .arrow::after{
	left: 100%;
    border-bottom-left-radius: 20px;
	box-shadow: 0 20px 0 0 #f0f2f4;
}
.our_services .our_service .arrow .arrow-img{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background: #fff;
	transition: .3s;
}
.our_services .our_service .arrow .arrow-img svg{
	width: 30px;
	transition: .3s;
}
.our_services .our_service:hover .arrow .arrow-img{
	background: var(--main-dark-color);
}
.our_services .our_service:hover .arrow .arrow-img svg{
	fill: #fff;
	stroke: #fff;
}
.editional-services{
	display: flex;
	justify-content:center;
	flex-wrap: wrap;
	gap: 25px;
	padding: 15px;
	margin-top: 40px;
}
.editional-services .editional-service{
	width: calc(14.3% - 21.7px);
	aspect-ratio: 1/1;
	padding: 10px;
	border-radius: 25px;
	gap: 10px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	transition: .3s;
}
.editional-services .editional-service img{
	width: 45%;
	transition: inherit;
	display: block;
}
.editional-services .editional-service:hover{
	background: var(--main-color); 
}
.editional-services .editional-service:hover p{
	color: #fff;
}
.editional-services .editional-service:hover img{
	transform: scale(1.15);
}
.editional-services .editional-service p{
	text-align: center;
	position: absolute;
	font-size: .8vw;
	line-height: 1.3;
	transition: inherit;
	bottom: 1vw;
	width: 100%;
}
.faq_section{
	padding: 60px 0px 100px 0px;
}
.faqs{
	margin-top: 50px;
}
.faqs .faq{
	width: 100%;
	margin-bottom: 20px;
}
.faqs .faq .info{
	width: 100%;
	padding: 18px 70px 18px 40px;
	position: relative;
	border-radius: 30px;
	cursor: pointer;
	background: var(--main-color);
}
.faqs .faq .text{
	width: 100%;
	overflow: hidden;
	transition: .3s;
	padding: 0 30px 0 40px;
}
.faqs .faq .text p{
	font-family: "Quicksand-Bold"; 
}
.faqs .faq .info h3{
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin: 0;
}
.faqs .faq .info .plus{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #fff;
	position: absolute;
	right: 6.5px;
	top: 6.5px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faqs .faq .info .plus span{
	position: absolute;
	background: var(--main-color);
	border-radius: 2px;
	display: block;
	transition: .3s;
}
.faqs .faq .info .plus span:first-child{
	width: 13px;
	height: 3px;
}
.faqs .faq .info .plus span:last-child{
	height: 13px;
	width: 3px;
}
.faqs .faq.active .text{
	padding: 30px 30px 15px 40px;
}
.faqs .faq.active .info .plus span:last-child{
	height: 0;
}
footer{
	background: var(--main-dark-color);
	color: #fff;
}
footer .container{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 60px;
}
footer .container .logo{
	width: 200px;
	cursor: pointer;
}
footer .container .logo p{
	font-size: 27px;
	width: 100%;
	text-align: center;
	color: #fff;
	margin: 0;
	margin-top: -45px;
	user-select: none;
	display: block;
}
footer .container .logo p span{
	color: var(--main-color);
}
footer .container .logo img{
	width: 100%;
}
footer .container .col{
	width: 20%;
}
footer .container .col a{
	color: #fff;
	text-decoration: none;
	display: flex;
	transition: .3s;
}
footer .container .col a svg{
	width: 15px;
	margin-right: 5px;
}
footer .container .col a:hover{
	color: var(--main-color);
}
footer .container .col h3{
	font-size: 18px;
	margin: 0;
	margin-bottom: 25px;
}
footer .container .col a,
footer .container .col p{
	font-size: 16px;
	margin: 0;
	line-height: 1.5;
	font-family: "Quicksand-Medium"; 
	margin-bottom: 20px;
}
footer .copyright{
	text-align: center;
	font-family: "Quicksand-Bold"; 
	font-size: 16px;
	padding: 50px;
}
.type_of_cleaning_top_section{
	display: flex;
	justify-content: space-between;
	padding-top: 100px;
	padding-bottom: 50px;
}
.type_of_cleaning_top_section .info{
	width: 45%;
}
.type_of_cleaning_top_section .info img{
	width: 40px;
}
.type_of_cleaning_top_section .info p{
	margin-bottom: 20px;
}
.contact_top_section .info p{
	margin-bottom: 5px;
	margin-top: 30px;
}
.contact_top_section iframe{
	width: 48%;
	border-radius: 35px;
	box-shadow: 10px 10px 45px -30px;
}
.contact_top_section .info a{
	color: var(--main-dark-color);
	transition: .2s;
	text-decoration: none;
}
.contact_top_section .info a:hover{
	color: var(--main-color);
}
.type_of_cleaning_top_section .img{
	width: 48%;
	border-radius: 35px;
	object-fit: cover;
}
.text_section p.main-title{
	margin-bottom: 20px;
}
.text_section h2.main-title{
	margin-top: 50px;
}
.central_form_section{
	max-width: 800px;
	margin: 100px auto;
}
.central_form_section .cleaning-form{
	width: 100%;
}
.home-btn{
	display: inline-flex;
	align-items: center;
	font-size: 16px;
	color: var(--main-color);
	text-decoration: none;
	gap: 10px;
	margin: 0;
	margin-bottom: 30px;
}
.home-btn svg{
	width: 25px;
	height: 25px;
	transition: .3s;
}
.home-btn svg:nth-child(2){
	width: 0;
}
.home-btn:hover svg:nth-child(2){
	width: 25px;
}
.home-btn:hover svg:nth-child(1){
	width: 0;
}
@media(min-width: 1600px){
	.editional-services .editional-service p{
		font-size: 13px;
		bottom: 16px;
	}
}
@media (max-width: 1024px) {
	header,
	.booking_section,
	.why_we_section .container,
	.who_we_are_section,
	.our_services,
	.reservation_steps_section .reservation_steps,
	footer .container,
	.type_of_cleaning_top_section{
		flex-direction: column;
	}
	.about_our_service_section{
		flex-direction: column-reverse;
	}
	header{
		padding: 0;
	}
	header .actions{
		padding: 10px;
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}
	.booking_section .hero,
	.cleaning-form,
	.why_we_section .answers,
	.why_we_section .titile-block,
	.who_we_are_section .info,
	.who_we_are_section .img-cont,
	.about_our_service_section .info,
	.about_our_service_section .img,
	.our_services .our_service,
	.reservation_steps .reservation_step,
	footer .container .col,
	.type_of_cleaning_top_section .info,
	.type_of_cleaning_top_section .img{
		width: 100%;
	}
	.type_of_cleaning_top_section .img{
		min-height: 300px;
	}
	.contact_top_section iframe{
		width: 100%;
		height: 400px;
		margin-top: 30px;
	}
	footer .container{
		padding-top: 0;
		overflow: hidden;
	}
	footer .container .col{
		margin-top: 30px;
	}
	.who_we_are_section .img-cont{
		aspect-ratio: 1/1;
	}
	.who_we_are_section .info{
		padding: 0;
	}
	.contact_top_section{
		padding-bottom: 0;
	}
	footer .container .logo{
		width: 100%;
		max-width: 250px;
		margin-left: -30px;
	}
	.main-title,
	.booking_section .hero .info h1{
		font-size: 45px;
	}
	.side-img{
		display: none;
	}
	.why_we_section{
		padding: 50px 0;
	}
	.reservation_steps_section .reservation_steps{
		padding-bottom: 50px;
	}
	.about_our_service_section .info{
		margin-top: 40px;
	}
	.reservation_steps_section{
		margin-top: 50px;
	}
	.our_services_section .bg-cont{
		padding: 50px 10px;
	}
	.who_we_are_section,
	.our_services_section{
		padding: 20px;
	}
	.editional-services .editional-service{
		width: calc(33.3% - 20px);
	}
	.editional-services .editional-service p{
		font-size: 2vw;
		bottom: 2vw;
	}
}
@media (max-width: 500px) {
	.our_services_section .bg-cont{
		padding: 50px 2vw;
	}
	.editional-services{
		gap: 6vw;
		padding: 3vw;
	}
	.editional-services .editional-service{
		width: calc(50% - 3vw);
		padding: 3vw;
	}
	.editional-services .editional-service p {
        font-size: 3vw;
        bottom: 3vw;
    }
	.contact_top_section iframe{
		width: 100%;
		height: 300px;
		margin-top: 30px;
	}
	;
}
@media (max-width: 390px) {
	.our_services .our_service{
		flex-direction: column;
		padding-bottom: 75px;
		text-align: center;
	}
	.why_we_section .answers{
		gap: 20px;
	}
	.why_we_section .answers .answer{
		width: 100%;
	}
	.why_we_section .answers .answer img{
		margin-bottom: 10px;
	}
	.our_services .our_service .img{
		margin-right: 0;
		margin-bottom: 20px;
	}
	.main-title,
	.booking_section .hero .info h1{
		font-size: 11vw;
	}
}
