/* Table of Content
==================================================
	#Homepage Styles
	#Page Styles
	#Media Queries
	#Font-Face */
:root{
	--header-height: 113.38px;
	--color1: #f1f1e6;
	--blue: #4d93c8;
	--dk-blue: #0e1f51;
}
*{
	padding:0;
	margin:0;
}
@font-face {
	font-family: 'ProximaNova-Regular';
	src: url('fonts/ProximaNova-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'ProximaNova-Semibold';
	src: url('fonts/ProximaNova-Semibold.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'ProximaNova-Bold';
	src: url('fonts/ProximaNova-Bold.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
html{
	
	scroll-behavior: smooth;
}
body{
	height: 100%;
	font-family: 'ProximaNova-Regular';
	font-size: clamp(14px, 1.25vw, 1.25vw);
}
#main{
	width:100%;
	padding:0;
	margin:0 auto;
	/* padding-top: var(--header-height); */
}
table{
	width: 100%;
}
table, th, td {
    border: 1px solid var(--color1);
    border-collapse: collapse;    
}
th, td {
    padding: 10px;
    font-size: 16px;
    text-align: center;
}
th {
    background-color: var(--color1);
    color: #fff;
}

a{
	cursor: pointer;
	display: inline-block;
}

span{
	display: inline-block;
}

p{
	line-height: 1.4;
	color: #0a0203;
	padding: 0 0 15px 0;
}

/* #Grid system
================================================== */
.container{
	width: 1170px;
	margin:0 auto;
}
.contain_90{
	width: 90%;
	margin: 0 auto;
}
.container:before, .container:after, .row:before, .row:after{
	content:"";
	display:table;
}
.container:after, .row:after{
	clear:both;
}
.row{
	margin-left:-10px;
	margin-right:-10px;
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{
	position:relative;
	min-height:1px;
	padding-left:10px;
	padding-right:10px;
	float:left;
}

.col-sm-12{width:100%;}
.col-sm-11{width:91.66666667%;}
.col-sm-10{width:83.33333333%;}
.col-sm-9{width:75%;}
.col-sm-8{width:66.66666667%;}
.col-sm-7{width:58.33333333%;}
.col-sm-6{width:50%;}
.col-sm-5{width:41.66666667%;}
.col-sm-4{width:33.33333333%;}
.col-sm-3{width:25%;}
.col-sm-2{width:16.66666667%;}
.col-sm-1{width:8.33333333%;}
.flt-right { float: right; }
.flt-left { float: left; }

.clr{
	clear:both;
}

/* =Header
-------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top:0px;
	left: 0;
	z-index: 999;
	padding: 10px 0;
	background: #fff0;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	-ms-transition: height 0.3s;
	-o-transition: height 0.3s;
	transition: height 0.3s;
	/* box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); */
}
header .inner_container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header .logo {
	width: 100px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0;
}
header .logo img{
	width: 100%;
}
header nav {
display: flex;
    flex-direction: row-reverse;
    margin: 0 0 0 auto;
    align-items: center;
    float: right;
    padding: 0% 0% 0% 0%;
    background-color: transparent;
    margin-top: 0px;
    /* width: 68%; */
    width: unset;
}
.menu-toggle .icon-bar{
	background: var(--dk-blue);
}
.ace-responsive-menu > li{
	padding: 0 10px;
}
.ace-responsive-menu > li > a{
	color: var(--dk-blue);
	padding: 5px;
	font-weight: 600;
}
header.smaller {
	/* top:0;
	background-color: transparent;
	background: #fff;
	padding: 0%; */
}
header.smaller .logo {
	/* width: 80px; */
}
header.smaller nav {
	background-color: var(--color1);
}


section{
	position: relative;
}
.section_link{
	position: absolute;
	top: calc(var(--header-height) * -1);
}

/* hero */
.hero .inner_container{
	position: relative;
}
.hero .inner_container .img_box{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.hero .inner_container .img_box img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .inner_container .overlay_box{
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	z-index: 1;
}
.hero .inner_container .overlay_box .left_pane{
	width: 100%;
    height: 100%;
}
.hero .inner_container .overlay_box .left_pane .txt_img img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}
.hero .inner_container .overlay_box .right_pane{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #00000020;
}
.hero .inner_container .overlay_box .right_pane .inner_box{
	width: 50%;
}
.hero .inner_container .overlay_box .right_pane .inner_box .banner_heading{
	color: #fff;
	font-size: clamp(40px, 4.8vw, 4.8vw);
	font-family: 'ProximaNova-Semibold';
}
.hero .inner_container .overlay_box .right_pane .inner_box p{
	color: #fff;
}
.hero .inner_container .overlay_box .right_pane .copyright_text{
	position: absolute;
	right: 2vw;
	bottom: 2vw;
	color: #fff;
}
.hero .inner_container .overlay_box .right_pane .copyright_text .toggle_text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	user-select: none;
}
.hero .inner_container .overlay_box .right_pane .copyright_text .toggle_text .location_txt{
	display: none;
	text-align: center;
}
.hero .inner_container .overlay_box .right_pane .copyright_text .toggle_text:hover .location_txt{
	display: block;
}
.hero .inner_container .overlay_box .right_pane .copyright_text .toggle_text:hover .target_icon{
	display: none;
}

/* climate_advisory */
.climate_advisory .top_pane{
	padding: 5vw 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.climate_advisory .top_pane .left_sec{
	width: 100%;
	background-color: var(--color1);
	text-align: center;
	font-size: 2vw;
	color: #0a0203;
	padding: 1.6vw 0;
}
.climate_advisory .top_pane .right_sec button{
	font-family: 'ProximaNova-Semibold';
	font-size: 2vw;
	width: 100%;
	height: 100%;
	background: var(--blue);
	color: #fff;
	outline: none;
	border: none;
	padding: 1.6vw 0;
}
.climate_advisory .middle_pane{
	display: flex;
	flex-wrap: wrap;
	align-items: center;	
	padding-bottom: clamp(25px, 3vw, 3vw);
}
.climate_advisory .middle_pane .text_box{
	width: calc(100% / 3);
	padding: 3vw 0 0 0;
}
.climate_advisory .middle_pane .text_box .title{
	font-size: clamp(20px, 2.34vw, 2.34vw);
	color: var(--dk-blue);
	font-family: 'ProximaNova-Semibold';
	padding: 0 0 1.45vw;
}
.climate_advisory .middle_pane .info_boxes{
	width: calc((100% / 3) * 2);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2vw;
}
.climate_advisory .middle_pane .info_boxes .info_box .img_box{
	padding: 200% 0 0 0;
	position: relative;
}
.climate_advisory .middle_pane .info_boxes .info_box .img_box img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.climate_advisory .middle_pane .info_boxes .info_box .txt{
	font-family: 'ProximaNova-Semibold';
	text-align: center;
	font-size: clamp(20px, 1.45vw, 1.45vw);
	text-transform: uppercase;
	color: var(--dk-blue);
	padding-top: clamp(15px, 1.3vw, 1.3vw);
}
.climate_advisory .last_pane{
	background: var(--blue);
	padding: clamp(20px, 1.35vw, 1.35vw) 30px;
	font-family: 'ProximaNova-Semibold';
	
	text-align: center;
	font-size: clamp(28px, 2vw, 2vw);
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 1.85vw;
}
.heading{
	font-size: clamp(28px, 2vw, 2vw);
	font-family: 'ProximaNova-Semibold';
	color: var(--dk-blue);
	text-align: center;
	margin: 0 0 3vw 0;
}
.heading span{
	/* background: var(--color1); */
	position: relative;
}
.heading span::before{
	position: absolute;
	content: '';
	height: 2px;
	width: 85px;
	background: var(--dk-blue);
	left: -100px;
	top: calc(50% - 1px);
}
.heading span::after{
	position: absolute;
	content: '';
	height: 2px;
	width: 85px;
	background: var(--dk-blue);
	right: -100px;
	top: calc(50% - 1px);
}
/* solutions */
.solutions{
	padding: 5vw 0;
	background-color: var(--color1);
}
.solutions .info_boxes_wrapper{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.solutions .info_boxes_wrapper .info_boxes{
	/* display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */

	display: flex;
}
.solutions .info_boxes_wrapper .info_boxes:nth-child(2){
	padding-top: 1.05vw;
	margin-top: 1.05vw;
	border-top: 1px solid var(--blue);
}
.solutions .info_boxes_wrapper .info_boxes .info_box{
	text-align: center;
	font-size: 1.2vw;
	line-height: 1.4;
	font-family: 'ProximaNova-Semibold';
	color: var(--dk-blue);
	border-right: 1px solid var(--blue);
	padding: 1.3vw 1vw;
	position: relative;
	flex: 1 1 auto;
}
.solutions .info_boxes_wrapper .info_boxes .info_box::before{
	position: absolute;
    content: '';
    right: -3px;
    top: calc(50% - 3px);
    width: 5px;
    height: 5px;
    background-color: var(--blue);
    transform: rotateZ(45deg);
}
.solutions .info_boxes_wrapper .info_boxes .info_box:last-child{
	border-right: 0;
}
.solutions .info_boxes_wrapper .info_boxes .info_box:last-child::before{
	display: none;
}
/* sectors */
.sectors{
	padding: 5vw 0;
}
.sectors .info_boxes{
	/* display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-columns: repeat(auto-fit, minmax(clamp(250px ,19vw, 300px), 1fr));
	justify-content: center;
	grid-gap: 20px; */

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.sectors .info_boxes .info_box{
	flex: 0 0 calc(20% - ((20px * 4) / 5));
	display: flex;
	flex-direction: column;
}
.sectors .info_boxes .info_box .img_box{
	position: relative;
}
.sectors .info_boxes .info_box .img_box img{
	width: 100%;
}
.sectors .info_boxes .info_box .links_overlay{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	height: 0;
	transition: all 0.3s;
	overflow: hidden;
}
.sectors .info_boxes .info_box:hover .links_overlay{
	max-height: 1000px;
	height: 100%;
}
.sectors .info_boxes .info_box .links_overlay .inner_box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul{
	max-width: 80%;
	padding: 0 0 0 18px;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li{
	list-style: disc;
	font-size: clamp(14px, 1.15vw, 18px);
	padding: 0 0 2px;
	margin: 0 0 3px;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li:last-child{
	margin: 0;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li::marker{
	color: #fff;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li button{
	background: transparent;
	border: none;
	outline: none;
	text-align: left;
	color: #fff;
	vertical-align: text-top;
	position: relative;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li button::before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: all 0.3s;
}
.sectors .info_boxes .info_box .links_overlay .inner_box ul li button:hover::before{
	width: 100%;
}
.sectors .info_boxes .info_box .txt{
	font-size: clamp(16px, 1vw, 1vw);
	text-transform: uppercase;
	text-align: center;
	font-family: 'ProximaNova-Semibold';
	color: var(--dk-blue);
	background-color: var(--color1);
	padding: clamp(15px, 1vw, 1vw);
}
.sectors .heading_2{
	position: relative;
	padding: 2vw 0;
	margin: 0;
}
.sectors .heading_2::before{
	position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background: var(--dk-blue);
    left: 0;
    top: calc(50% - 1px);
}
.sectors .heading_2 span{
	background: #fff;
	padding: 0 10px;
}
.sectors .heading_2.heading span::before{
	display: none;
}
.sectors .heading_2.heading span::after{
	display: none;
}

/* why_aqura */
.why_aqura{
	background-color: var(--color1);
	padding: 5vw 0;
}
.why_aqura .heading{
	margin: 0 0 1.5vw;
}
.why_aqura .sub_head p{
	color: var(--dk-blue);
	text-align: center;
	margin: 0 0 1.5vw;
}
.why_aqura .band_txt{
	text-align: center;
	position: relative;
}
.why_aqura .band_txt::before{
	position: absolute;
	content: '';
	left: 0;
	top: calc(50% - 1px);
	width: 100%;
	height: 2px;
	background-color: var(--blue);
}
.why_aqura .band_txt span{
	background: var(--blue);
	color: var(--color1);
	font-size: 1.45vw;
	padding: 10px 4.5vw;
	position: relative;
}
.why_aqura .band_txt span::before{
	position: absolute;
	content: '';
	left: calc((4.5vw - 1px) * -1);
	top: 0;
	width: 4.5vw;
	height: 100%;
	background: url(../images/hollow-triangle.png) no-repeat;
	background-size: contain;
	background-position: left center;
	transform: rotateY(180deg);
}
.why_aqura .band_txt span::after{
	position: absolute;
	content: '';
	right: calc((4.5vw - 1px) * -1);
	top: 0;
	width: 4.5vw;
	height: 100%;
	background: url(../images/hollow-triangle.png) no-repeat;
	background-size: contain;
	background-position: left center;
	/* transform: rotateY(180deg); */
}
.why_aqura .info_boxes{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 2vw 0 0 0;
}
.why_aqura .info_boxes .info_box{
	display: flex;
	align-items: center;
}
.why_aqura .info_boxes .info_box .img_box{
	width: 6.25vw;
	margin: 0 20px 0 0;
}
.why_aqura .info_boxes .info_box .txt{
	/* width: calc(100% - 6.25vw); */
	font-size: clamp(14px, 1.3vw, 1.3vw);
	font-family: 'ProximaNova-Semibold';
	color: var(--dk-blue);
}
form{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}
form .input_box{
	padding: 0 0 15px;
}
form .input_box .form-label{
	font-size: clamp(16px, 1vw, 1vw);
	color: #02448e;
	font-family: 'ProximaNova-Semibold';
	display: inline-block;
	padding: 0 0 5px;
}
form .input_box .form-input{
	font-size: clamp(16px, 1vw, 1vw);
	color: #000;
	/* background: var(--color1); */
	background: #f1f2f2;
	width: 100%;
	border: none;
	outline: none;
	padding: 8px 15px;
}
form .submit_btn{
	font-size: clamp(16px, 1.5vw, 1.5vw);
	text-transform: uppercase;
	padding: 10px 30px;
	color: #fff;
	background: var(--blue);
	border: none;
	outline: none;
}

footer{
	position: relative;
	padding: 5vw 0 3vw;
	border-bottom: 2vw solid var(--blue);
}
footer .socials{
	padding: 2vw 0 0 0;
}
footer .socials ul{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
footer .socials ul li{
	padding: 0 0 0 15px;
}
footer .socials ul li a img{
	/* max-width: 25; */
}

.body_overlay {
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}
.body_overlay .inner_box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.request_overlay_box {
    width: 600px;
    max-width: 90%;
/*    margin: 8% auto;*/
    background: #fff;
    padding: 15px;
    box-shadow: 5px 2px 23px -15px;
    position: relative;
    max-height: 90vh;
    overflow: auto;

}
/*.request_overlay_box [class*=col-sm]{
	width: 50%;
}*/
/*.request_overlay_box [class*=col-sm].slot_box{
	width: 100%;
}*/
.request_overlay_box [class*=col-sm]{
	width: 50%;
}
.request_overlay_box [class*=col-sm].textarea_box{
	width: 100%;
}
.request_overlay_box [class*=col-sm].submit_box{
	width: 100%;
}
.request_overlay_box [class*=col-sm].submit_box button{
	margin: 10px;
}
.request_overlay_box .submit_wrapper{
	width: 100%;
	text-align: center;
}
.request_overlay_box .submit_wrapper .input_box{
	padding: 0;
}
.request_overlay_box .heading{
    /* font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    padding: 15px 0 10px;
	font-family: 'ProximaNova-Bold'; */
	margin: 0 0 1vw;
}
.request_overlay_box .booking_form{
    padding-top: 15px;
    border-top: 1px solid #e4e4e4;
}
.request_overlay_box .booking_form .total_price{
    font-size: 1.4em;
}
.request_overlay_box .form_enquire_now{
    width: 98%;
    margin: 0 auto;
    padding: 2% 0%;
}
.close_overlay {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
}
.close_overlay:hover {
  opacity: 1;
}
.close_overlay:before, .close_overlay:after {
    position: absolute;
    left: 50%;
    content: ' ';
    height: 100%;
    width: 2px;
    background-color: #000000;
}
.close_overlay:before {
  transform: rotate(45deg);
}
.close_overlay:after {
  transform: rotate(-45deg);
}

[type=submit][disabled]{
	cursor: not-allowed;
	opacity: 0.5;
	transition: all 0.3s;
}

.spinners{
  position: relative;
}
.spinners::before{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: inherit;
  border-radius: inherit;
  color: #fff;
  z-index: 10;
}
.spinners::after{
  position: absolute;
    content: '';
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid #22285a;
    border-bottom: 2px solid #22285a;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 11;
}
/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#butterfly-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  /* background: #fff; */
  overflow: hidden;
}

.butterfly_image {
  position: absolute;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  will-change: transform, opacity;
}
.error{
	color: red;
	font-size: 14px;
}

#scrollTopBtn {
	font-size: 40px;
	display: none; /* Hidden by default */
	position: fixed; 
	bottom: 20px; 
	right: 20px; 
	z-index: 99; 
	padding: 0;
	background-color: transparent;
	color: var(--dk-blue);
	cursor: pointer;
	border-radius: 4px;
	border: none;
}

#scrollTopBtn:hover {
	color: var(--blue);
}
