html {
  scroll-behavior: smooth;
}
body{
	font-size: 1rem;
	font-size: 15px;
	color: #000000;
	line-height: 1.45;
	font-weight: 500;
	font-weight: 400;
	font-family: 'Poppins', sans-serif;
	
}
p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
b, strong {
    font-weight: 600;
}
a{
	text-decoration: none;
}
.gap{
	height: 60px;
}
.relative{
	position: relative;
	overflow: hidden;
}
.button-default{
background: #22B2A8;
    color: #fff;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 11px 22px;
    line-height: 1;
    transition: all .35s ease;
    font-weight: 500;
    border: 2px solid #22B2A8;
}
.button-default:hover{
	 /* background: #51852e; */
	 background: #fff;
	 color: #22B2A8;
}
.button-default.btn-arrow {
	background: #22B2A8 url(../img/btn-arrow.svg) no-repeat;
    background-position: right 25px center;
    padding-right: 40px;
}

.button-default.btn-arrow:hover {
	background: #fff url(../img/btn-arrow-hover.svg) no-repeat;
    background-position: right 25px center;
	color: #22B2A8;
}
.button-default.btn-arrow > img{
	margin-left: 10px;
}
.h1,h1{
font-size: 70px;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    line-height: 105%;
    margin-bottom: -2px;
    letter-spacing: 1px;
}
.h2,h2{
	font-size: 42px;
	font-family: "DM Serif Text", serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	line-height: 105%;
	margin-bottom: 1.0rem;
	letter-spacing: 2px;
}

.h3,h3{
	/* font-size: 30px; */
	font-size: 25px;
	/* font-weight: 700; */
	font-weight: 600;
	
}
.h5, h5 {
    font-size: 17px;
    letter-spacing: 0.7px;
}
.h6,h6{
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 110%;
	font-size: 14px;
    letter-spacing: 0.5px;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
}
.color-default{
	color: #000000 !important;
}
.color-theme{
	color: #22BAB0 !important;
}
.color-white{
	color: #fff !important;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
    transition-duration: .8s;
}
.section-main{
	/* background: url(../img/main.jpg) no-repeat;  */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 700px;
	min-height: 700px;
	height: calc(100vh - 107px);
	height: calc(100vh - 0px);
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
	/* background-image: url(../img/bg-blue.jpg); */
}

.background {
	/* background-image: url(../img/main.jpg); */
	background-image: url(../img/main.jpg);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    padding: 0;
    border: 0;
    animation: kenburns 110s infinite linear;
}
@keyframes kenburns {
  50% {
    transform: scale(1.3) rotate(0.04deg);
  }
}

.slidermain-item{
	position: relative;
	height: calc(100vh - 0px);
	overflow: hidden;
}
.slidermain-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(220deg, rgba(0, 128, 168, 0) 0%, rgba(0, 0, 0, 45%) 100%);
}
.bannerdiscover{
position: absolute;
    left: calc(50% - 55px);
    bottom: 30px;
    /* transform: translateX(-50%); */
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 54%);
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 14px;
	    letter-spacing: 1px;
	z-index:1;
}

.bannerdiscover[data-aos^=fade][data-aos^=fade].aos-animate {
    /* transform: translateX(-50%) translateZ(0); */
}

.box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box span{
    display: block;
    width: 16px;
    height: 16px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg);
    margin: -10px -10px;
    animation: animate 2s infinite;
}

.box span:nth-child(2)
{
  animation-delay: -0.2s;
}

.box span:nth-child(3)
{
  animation-delay: -0.4s;
}

@keyframes animate{
  
  0%{
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

.hero {
    position: absolute;
    left: 50%;
    bottom: 40%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1px;
	z-index:1;
	opacity: 0;
	transition: all .5s ease-out;
}
.slidermain-item.slick-current .hero{
	opacity: 1;
}
.hero h3 {
    /* font-size: 30px; */
    font-size: 26px;
    /* font-weight: 700; */
    font-weight: 400;
    letter-spacing: 3px;
	text-transform: uppercase;
}
.section-main:not(.noblacklayer):before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: linear-gradient(220deg, rgba(0, 128, 168, 0) 0%, rgba(0, 0, 0, 45%) 100%);
}
a.brand{
    transform: translateY(5px);
    display: block;
}
.nav-main{
	position: fixed;
	width: 100%;
	top: 0px;
	/* background: red; */
	padding: 30px 30px 26px 30px;
	z-index: 900;
	transition: all .5s;
	border-bottom: 1px solid rgb(0 0 0 / 8%);
	background: #fff;
}
.page-template-page-homepage .nav-main{
	/* background:transparent; */
	background:rgb(255 255 255 / 50%);
	border-bottom: 0px solid rgb(0 0 0 / 8%);
}
.scrolled ,
.page-template-page-homepage .scrolled { 
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgb(0, 0, 0);
    /* background: linear-gradient(180deg, rgb(0 0 0 / 50%) 0%, rgba(0, 0, 0, 0) 118%); */
    background: #fff;
    position: fixed;
	border-bottom: 1px solid rgb(0 0 0 / 8%);
}
.list-nav-main {
	display: flex;
	margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.list-nav-main > li {
    /* padding-left: 4px; */
    transition: all .25s ease;
    padding: 0px 15px;
    border-bottom: 2px solid transparent;
}
.list-nav-main > li > a,
.list-nav-main .dropdown-toggle
{
	display: block;
    /* border-bottom: 1px solid #e5e5e5; */
    color: #000;
    /* font-size: 18px; */
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    /* padding: 13px 25px; */
    padding: 18px 2px 13px;
    transition: all .25s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
	position: relative;
	border-radius: 0;
	    letter-spacing: 1px;
}
.list-nav-main .dropdown-toggle.show{
	color: #22BAB0;
}
.list-nav-main .dropdown-toggle::after{
	display: none;
}
.list-nav-main > li > a:before {
	/* text-decoration: underline; */
    /* color: #FF5100; */
	cursor: pointer;
}
.list-nav-main > li > a:before,
.list-nav-main .dropdown-toggle:before
 {
    display: block;
    content: '';
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    /* border-image: linear-gradient(90deg, rgba(44, 51, 114, 1) 0%, rgba(114, 174, 76, 1) 33%, rgba(41, 48, 116, 1) 83%) 1 0 0 0; */
	border-top: 2px solid #22b2a8;
 
    /* transform-origin: 0% 50%; */
    position: absolute;
    width: 100%;
    left: 0;
    /* bottom: -2px; */
    top: 100%;
}
.list-nav-main > li:not(.current-menu-item)> a:hover:before ,
.list-nav-main  a.dropdown-toggle:hover:before ,
.list-nav-main  > li  a.active:before,
.list-nav-main  > li.active  a:before
{

	transform: scaleX(1);
}
.list-nav-main  > li.current-menu-item > a,
.list-nav-main  > li.active > a,
.list-nav-main .dropdown-toggle.active {
    /* border-bottom: 2px solid #22b2a8; */
}
.list-nav-main  .dropdown-menu {
    
    min-width: 10rem;
    padding: 15px 30px 15px  15px;
    margin: 0;
    font-size: inherit;
    color: inherit;
    border: 0px solid rgba(0, 0, 0, .15);
    border-radius: 12px;
	    box-shadow: 0px 2px 10px -6px #000;

}
.dropdown-menu {
  animation: 0.5s slideup;
}

@keyframes slideup {
  from {
	  opacity: 0;
    transform: translateY(50%);
  }

  to {
	  opacity: 1;
    transform: translateY(47px);
  }
}

.list-nav-main  .dropdown-item ,
.list-nav-main  .menu-item > a
{
    display: block;
    width: 100%;
    padding: 10px 0;
    clear: both;
    font-weight: 500;
    color: #111B29;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
	    display: flex;
    align-items: center;
	transition: all .25s ease;
}
.list-nav-main  .menu-item > a:hover,
.list-nav-main li.current_page_item a{
	 color: #22b2a8;
}

.icon-image-wrapper{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.wp-menu-img-before img {
    margin-right: 0;
    max-width: 18px;
}
.section{
	position: relative;
	overflow: hidden;
}
.section-100vh{
	min-height: 700px;
	height: calc(100vh - 107px) !important;
}.section-90vh{
	min-height: 700px;
	height: calc(90vh - 107px) !important;
}
.vertical-align-middle{
	display: flex;
	height: 100%;
	align-items: center;
}
.section-padding{
	padding-top: 60px;
	padding-bottom: 60px;
}
.section-minheight{
	/* min-height: 500px; */
	min-height: 600px;
}
.section-img{
	height: 100%;
	 width: 100%;
	 /* padding-top: 66.66%; */
    /* position: relative; */
}
.section-img.developmentconcept {
    height: 390px;
    width: 100%;
}
.section-img.lifestyledestination {
    height: 390px;
    width: 100%;
}
.section-img img:not(.img-resources) {
object-fit: cover;
    height: 100%;
    /* height: 420px; */
    height: 392px;
    /* width: 100%; */
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* bottom: 0; */
    /* right: 0; */
}
.section-img img.h100 {
    height: 100%;
}
.section-img img.img-contain {
    object-fit: contain;
}
.section-map{
	height: 100%;
	 width: 100%;
}
.section-map iframe, .section-map > p  {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
label,.label{
	font-weight: 400;
	color: #22BAB0;
	letter-spacing: .5px;
	text-transform: uppercase;
	line-height: 110%;
	    font-size: 15px;
    /* letter-spacing: 0.5px; */
}
p > label {
    transform: translateY(12px);
}

.section-info{
	padding-right: 73px;
	padding-right: 95px;
	text-align: justify;
}
.section-info h2 span{
	color: #22BAB0 !important;
	/* display: block; */
}
.section-info ul{
	padding-left: 27px;
}
.order-lg-1 .section-info{
padding-left: 73px;
padding-right: 0;
}
.section-info p{
	margin-bottom: 1rem;
}
.div-location{
	background-image: url(../img/blur.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 50px 50px;
	color: #fff;
}
.location-info{
	max-width: 546px;
}
.info-why{
	padding-right: 55px;
}
.wrapper-why{
	padding: 0 7px;
	margin-bottom: -10px;
}
.box-why{
	height: 237px;
	border: 1px solid #22BAB0;
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
	margin: 0 -7px 10px;
	position: relative;
	overflow: hidden;
}
.box-why-content{
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.overlay-why{
	background: #22BAB0;
	padding: 15px 12px;
	border: 0px solid #22BAB0;
	border-radius: 9px;
	color: #fff;
	text-align: center;
	position: absolute;
	height: 100%;
	width: 100%;
	top:100%;
	left: 0;
	font-size: 13px;
	line-height: 130%;
	transition: all .25s ease;
}
.box-why:hover .overlay-why{
	top:0%;
}

.top-why{
	height: 55%;
	    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-why{
	height: 45%;
	text-transform: uppercase;
	text-align: center;
	padding: 5px 12px;
}
.bottom-why h3,.overlay-why h3{
    margin: 0;
    font-weight: 500;
    line-height: 107%;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.overlay-why h3{
	margin-bottom: 7px;
	font-size: 15px;
}
.bghome{
    /* background-image: url(../img/bg.png); */
    background-repeat: no-repeat;
    background-size: 48.611vw;
    background-attachment: fixed;
    background-position-y: 50%;
    background-position-x: 115%;
   
	position: relative;
	overflow: hidden;
  }
 .img-bghome{
    position: fixed;
    right: -10%;
    top: 14%;
    z-index: -1;
	 animation: moving 15s infinite linear;
	 opacity: .1;
 }
@keyframes moving {
  50% {
      /* transform: rotate(0.04deg) translate(-55px, -35px); */
      transform: skewX(4deg) translate(-5px, -5px);
     
  }

}
.bg-white{
	background: #fff;
}
.section-blue{
	background: url(../img/section-about.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	height: 400px;
}
.section-blue .section-title{
	letter-spacing: 0.1em;
}
.section-partner{
	height: 300px;
}
.row-partners {
	padding: 50px 0;
}
.wrapper-logo-partner{
	padding: 0 30px;
}
.footermenu{
	background: #22BAB0;
	color: #fff;
	font-size: 14px;
}
.footer-menu-label{
    color: #fff;
    margin-bottom: 13px;
    letter-spacing: .5px;
    font-weight: 500;
    font-size: 14px;
}
.list-footer {
    list-style: none;
    padding-left: 0px;
	    margin-bottom: 30px;
}
.list-footer > li{
	margin-bottom: 9px;
}
.list-footer > li > a{
	color: #fff;
	    font-size: 14px;
}
.list-social{
	 list-style: none;
    padding-left: 0px;
	    margin-bottom: 0px;
	display: flex;
	justify-content: flex-end;
}

.wrapper-follow {
    border-top: 1px solid #fff;
    padding: 10px 0;
}
.list-pnc{
	list-style: none;
    padding-left: 0px;
	margin-bottom: 0px;
	font-size: 12px;
	margin-left: -25px;
}
.list-pnc li{
	display: inline-block;
}
.list-pnc a{
	color: #fff;
	padding: 10px 25px;
	    display: inline-block;
}

.footercopyright{
	background: #000;
	    padding: 10px 0px;
}
.copyright{
	font-size: 12px;
	text-align: right;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.section-top{
	margin-top: 107px;
}
.bg-ourstory{
	position: relative;
	overflow: hidden;
}
.img-bg-ourstory{
	position: absolute;	
	z-index: -1;
	animation: moving 15s infinite linear;
	width: 700px;
	
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}
.img-bg-ourstory.top{
    left: -5%;
    top: 2%;
 }
.img-bg-ourstory.bottom{
	right: -14%;
	/* top: 19%; */
	top: 35px;
	z-index: -1;
 }
.img-our-vision{
	max-width: 439px;
}
.slidercontainer{
    width: 694.5px;
    left: 694.5px;
    position: absolute;
    /* top: 50%; */
    height: auto;
    /* transform: translateY(-50%); */
}
.slider-half .slider-item{
opacity: .7;	
transition: all .25s ease;
}
.slider-half .slider-item.slick-current{
	opacity: 1;
}
.slider-half .slider-item img{
	/* width: 520px; */
	/* height: 378px; */
	/* height: 420px; */
	height: 392px;
	object-fit: cover;
	margin-right: 10px;
}
.slider-full .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right: 0;
}
.fromleft .slider-item img{
	margin-right: 0px;
	margin-left: 10px;
}
.slickarrows {
width: 520px;
    text-align: center;
    padding: 13px 0px;
    position: absolute;
    /* bottom: -50px; */
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.slickarrows.full {
	width: 100%;
	left: 0;
	    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
}
.slickarrows{
	transition: all .25s ease;
}
.slider-arrow.slick-disabled{
	opacity: .2;
}
.slider-arrow{
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .25s ease;
	border-radius: 50%;
}
.slider-arrow:hover{
	background: #e6e6e6;
}
.slider.slider-half .slick-prev ,
.slider.slider-half .slick-next {
    display: none !important;
}
.section-brand, .section-brand .row{
	height: 378px;
}
.section-brand{
	margin-bottom: 60px;
}
.fromleft .slickarrows{
	left: auto;
	right: 0;
}

.slidercontainer{
	width: 50%;
	left: 50%;
}

.slidercontainer.fromleft{
	width: 50%;
	left: 0%;
}

.img-bg-ourvision {
	/* position: absolute; */
	/* right: -8%; */
	/* top: 9%; */
	/* z-index: -1; */
	/* animation: movingourvision 15s infinite linear; */
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}
@keyframes movingourvision {
  33% {
      /* transform: rotate(0.04deg) translate(-55px, -35px); */
      transform: skewX(14deg) ;
     
  }
  66% {
      /* transform: rotate(0.04deg) translate(-55px, -35px); */
      transform: skewX(5deg) ;
     
  }
   100% {
      /* transform: rotate(0.04deg) translate(-55px, -35px); */
      transform: skew(0deg, 0deg) ;
     
  }

}
.wrapper-services{
	max-width: 400px;
}
.box-services {
    /* height: 87px; */
border: 1px solid #22BAB0;
    border-radius: 8px;
    font-size: 13px;
    margin: 0 0px 8px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 100%;
    padding: 12px 19px;
    text-align: left;
}
.box-services  img{
	width: 48px;
}
.img-bg-whoweare {
	/* position: absolute; */
	/* right: -8%; */
	/* top: 9%; */
	/* z-index: -1; */
	    /* width: 700px; */

	/* animation: movingwhoweare 15s infinite linear; */
	
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}
@keyframes movingwhoweare {

   50% {
      /* transform: rotate(0.04deg) translate(-55px, -35px); */
      transform: skew(3deg, -2deg);
     
  }

}
.bg-bod{
	/* background: url(../img/bg-bod.png) no-repeat; */
	/* background-size: 100vw; */
	/* background-attachment: fixed; */
}
.img-bg-bod {
	position: absolute;
	left: -19%;
	top: 9%;
	z-index: -1;
	width: 550px;
	animation: movingwhoweare 15s infinite linear;
	/* display: none; */
}
.img-bg-bod.bottom{
	left: auto;
	right: -15%;
	top: auto;
	bottom: 9%;
}
.row-bod{
    justify-content: center;
	margin-bottom: 1rem;
}
.wrapper-bod{
	padding: 0 7px;
}
.box-bod {
    text-align: center;
    position: relative;
    color: #fff ! Important;
    font-weight: 300;
    font-size: 15px;
    margin: 0 auto 15px;
    max-width: 350px;
    margin: 0px -7px 32px;
}
.box-bod:before{
	content: '';
	width: 100%;
	height: 50%;
	background: #22BAB0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.box-bod h3{
    font-size: 15px;
    margin-bottom: 1px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
	    font-weight: 500;
}
.box-bod-desc{
	padding: 15px 15px 15px;
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
}
.box-bod-desc p:last-of-type{
	margin-bottom: 0;
}
.box-bod-img{
width: 240px;
    height: 244px;
    margin: 0 auto;
	    margin: 0 auto;
		overflow:hidden
}
.box-bod-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .7s ease;
}
.box-bod:hover .box-bod-img img{
	transform: scale(1.2) translateY(15px) ;
}
.img-bg-ourbrandblue {
position: absolute;
    left: -13%;
    top: -27vw;
    z-index: -1;
    transform: rotate(212deg);
    width: 58vw;
}

.img-bg-ourbrand {
    position: absolute;
    right: 0;
    top: 51%;
    z-index: -1;
    /* animation: movingourvision 15s infinite linear; */
    width: 50vw;
    transform: translateY(-50%);
}
.wrapper-box-corporate-governance{
	padding: 0 8px;
}
.box-corporate-governance {
    position: relative;
	height: 290px;
	margin: 0 -8px;
}
.box-corporate-governance img{
    max-width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.box-corporate-governance-overlay {
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #fff;
    letter-spacing: .5px;
    padding: 16px 20px;
    line-height: 120%;
}
.bg-video{
	    background: url(../img/section-about.jpg) no-repeat;
    background-size: 100vw;
    background-position-y: 324px;
}
.video-overlay{
	color: white;
    text-align: center;
    letter-spacing: 1px;
    font-size: 13px;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
	transition: all .35s ease;
}
.video-overlay:hover{
	opacity: .7;
}
.video-overlay a{
	color: white;
}
.video-overlay img{
	margin-bottom: 10px;
}
.bg-brochure{
	 /* background: url(../img/bg-brochure.png) no-repeat; */
    /* background-size: cover; */
}
.img-bg-brochure {
    position: fixed;
    left: 0;
    top: -21%;
    z-index: -1;
    width: 100vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}
.wrapper-faq{
	 margin: 0 -7px;
}
.list-faq{
	list-style: none;
	display: flex;
	flex-wrap: wrap;padding: 0;
}

.list-faq > li{
	max-width: 50%;
	flex: 0 0 auto;
        width: 50%;
}
.box-faq {
	border: 1px solid #22BAB0;
	margin: 0 7px 14px;
	background: #fff;

}
.imgmapbm{
	width: 100%;
	transform: translateY(-138px);
}
.box-faq h3{
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    padding: 22px 45px 22px 21px;
    position: relative;
	height:80px;
	display: flex;
    align-items: center;
}

.box-faq h3:before{
	content: url(../img/arrow-accordion2.png);
	position: absolute;
	width: 24px;
	height: 24px;
	right: 13px;
	top: 29p;
	transition: all .15s ease;
}
.box-faq h3[aria-expanded="true"]:before{
	transform: rotate(-180deg)
}
.faq-body{
font-size: 14px;
    padding: 0px 21px 20px;
    line-height: 145%;
	    text-align: justify;
}
.faq-body ol{
	padding-left: 15px;
	    margin-bottom: 0.5rem;
}
.faq-body li{
	margin-bottom: 0.5rem;
}
.box-sustainability {
    position: relative;
    height: 318px;
    margin: 0 -8px;
	overflow: hidden;
}
.box-sustainability img.img-sustainability{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.box-sustainability-overlay{
	position: absolute;
    background: #22bab0;
    padding: 10px 10px;
    color: #fff;
    letter-spacing: .5px;
	line-height: 130%;
    width: 100%;
    font-size: 14px;
    bottom: 20px;
    left: 0;
	transition: all .5s ease;
	height: 58px;;
}

.box-sustainability:hover .box-sustainability-overlay{
	bottom: 0px;
	height: 100%;
	
}
.box-sustainability h3{
	font-weight: 500;
    font-size: 15px;
}
.box-sustainability ul {
    padding-left: 18px;
	font-size: 13px;
	line-height: 105%;
}
.box-sustainability ul li {
    margin-bottom: 4px;
}


.box-sustainability-overlay--before{
	position: absolute;
    background: #22bab0;
    padding: 10px 10px;
    color: #fff;
    letter-spacing: .5px;
	line-height: 130%;
    width: 100%;
    font-size: 14px;
    bottom: 20px;
    left: 0;
	transition: all .5s ease;
	height: 58px;
	opacity: 1;
}
.box-sustainability-overlay--before img {
    width: 24px;
}
.box-sustainability:hover .box-sustainability-overlay--before{
	opacity: 0;
    bottom: 100%;
	/* transform: scaleY(-1); */
	/* transform-style: preserve-3d; */
}
.box-sustainability-overlay--after{
	position: absolute;
    background: #22bab0;
    padding: 25px 10px 15px;
    color: #fff;
    letter-spacing: .5px;
	line-height: 130%;
    width: 100%;
    font-size: 14px;
    top: 100%;
    left: 0;
	transition: all .5s ease;
	height: 100%;
	opacity: 0
}
.box-sustainability-overlay--after img {
    width: 42px;
	margin-bottom: 10px;
}
.box-sustainability:hover .box-sustainability-overlay--after{
	opacity: 1;
    top: 0px;
}
/*
.cl {
  height: 440px;
  /* padding: 10px; *
}

.cl-yellow {
  background: #f1c40f;
}

.cl-blue {
  background: #3498db;
}

.cl-red {
  background: #e74c3c;
}

.slick-active {
  padding: 20px 0;
}

.slick-center {
  transform: scale(1.08);
}

.slick-slide:not(.slick-active) {
  margin: 20px 0;
}

.child {
  width: 100%;
}

.slide:not(.slick-active) {
  cursor: pointer;
}
*/

.rev_slider.slick-slider {
  /* margin-left: -12%; */
  /* margin-right: -12%; */
  --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
margin-right: calc(var(--bs-gutter-x)* -.5);
    margin-left: calc(var(--bs-gutter-x)* -.5);
}

.rev_slider .slick-list {
padding-top: 5% !important;
    padding-bottom: 5% !important;
    padding-left: 15% !important;
    padding-right: 15% !important;
}

.rev_slider .slick-dots {
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.rev_slider .slick-track {
  max-width: 100%!important;
  transform: translate3d(0, 0, 0)!important;
  perspective: 100px;
}

.rev_slider .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100%!important;
  transform: translate3d(0, 0, 0);
  transition: transform .7s, opacity 1s;
}

.rev_slider .slick-snext,
.rev_slider .slick-sprev {
  display: block;
}

.rev_slider .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  transform: translate3d(0, 0, 20px);
  z-index: 2;
}

.rev_slider .slick-snext {
  opacity: 1;
  transform: translate3d(20%, 0, 0px);
  z-index: 1;
}

.rev_slider .slick-sprev {
  opacity: 1;
  transform: translate3d(-20%, 0, 0px);
}

.test {

}
.rev_slider .slick-prev,
.rev_slider .slick-next,
.slidermain .slick-prev,
.slidermain .slick-next
{
	z-index: 1;
	width: 36px;
    height: 36px;
	transition: all .25s ease;
	border-radius: 50%;
}
.rev_slider .slick-prev:hover,
.rev_slider .slick-next:hover,
.slidermain .slick-prev:hover,
.slidermain .slick-next:hover
{
	background: #00000075;
}
.rev_slider .slick-prev,
.slidermain .slick-prev {
    left: 32px;
}
.rev_slider .slick-next,
.slidermain .slick-next
 {
    right: 32px;
}
.rev_slider .slick-prev:before,
.rev_slider .slick-next:before,
.slidermain .slick-prev:before,
.slidermain .slick-next:before 
{
	content: '';
    font-family: 'slick';
    font-size: 24px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.rev_slider .slick-prev:before,
.slidermain .slick-prev:before
{
	content: url(../img/slick-prev-white.png);
}
.rev_slider .slick-next:before,
.slidermain .slick-next:before
{
	content: url(../img/slick-next-white.png);
}
.rev_slide_wrapper{
	position: relative;
}
.rev_slide_wrapper > img{
	width: 100%;
}
.rev_slide_overlay{
    font-size: 12px;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    padding: 16px 10%;
    line-height: 110%;
    font-weight: 400;
    width: 100%;
}
.rev_slide_overlay h3{
	font-size: 14px;
    text-transform: uppercase;
       font-weight: 500;
    letter-spacing: 1px;
    line-height: 110%;
}
.slider-center  .slick-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.pagination {
  text-align: center;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
}
.img-bg-effort {
    /* position: absolute; */
    /* right: -14%; */
    /* top: 3%; */
    /* z-index: -1; */
    /* width: 41vw; */
    /* animation: movingwhoweare 15s infinite linear; */
	
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}

.button-pills {
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 13px 22px;
    line-height: 1;
    transition: all .35s ease;
    font-weight: 500;
    border: 2px solid transparent;
}
.button-pills.active{
	border: 2px solid #22B2A8;
}
.button-pills.active:hover{
	color: #fff;
}
.button-pills:not(.active):hover{
	color: #22B2A8;
}
.btn.button-pills:focus {
    outline: 0;
    box-shadow: none;
}
.tab-pane .col.column-20 {
    flex: 1 0 0%;
    max-width: 20%;
}
.row--3{
	margin: 0 -3px;
}
.padding-x-3{
	padding: 0 3px;
}
.row--5{
	margin: 0 -5px;
}
.padding-x-5{
	padding: 0 5px;
}
.box-esg{
	height: 300px;
    width: 100%;
    border: 2px solid #22BAB0;
    color: #000000;
    padding: 11px 20px;
    position: relative;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 120%;
    transition: all .25s ease;
	background-image: url(../img/esg-1.png);
	background-repeat: no-repeat;
	background-position: right 15px top 15px;
}
.col-lg-10 .box-esg{
	height: 284px;
    font-size: 15px;
}
.box-esg:hover{
	background-color: #22BAB0;
	background-image: url(../img/esg-1--hover.png);
	color: #fff;
}

.box-esg.esg-2{
	background-image: url(../img/esg-2.png);
}
.box-esg.esg-2:hover{
	background-image: url(../img/esg-2--hover.png);
}
.box-esg.esg-3{
	background-image: url(../img/esg-3.png);
}
.box-esg.esg-3:hover{
	background-image: url(../img/esg-3--hover.png);
}
.box-esg.esg-4{
	background-image: url(../img/esg-4.png);
}
.box-esg.esg-4:hover{
	background-image: url(../img/esg-4--hover.png);
}
.box-esg.esg-5{
	background-image: url(../img/esg-5.png);
}
.box-esg.esg-5:hover{
	background-image: url(../img/esg-5--hover.png);
}
.box-str{
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 110%;
    margin: 0 0px 20px;
}
.wrapper-box-community {
    padding: 0 ;
    margin: 0 5px;
}
.box-community {
    position: relative;
    height: 318px;
    margin: 0 -5px;
}
.box-community img {
    max-width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.box-community-overlay {
    font-size: 16px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    padding: 16px 15px;
    line-height: 110%;
    font-weight: 500;
}
.normaldots .slick-dots{
	position: absolute;
    bottom: -48px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slidermain  .slick-dots {
    bottom: 25%;
}
.normaldots .slick-dots li {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 1px;
    padding: 0;
    cursor: pointer;
}
.normaldots .slick-dots li.slick-active,
.normaldots .slick-dots li.slick-active button,
.normaldots .slick-dots li.slick-active button:before{
    width: 13px;
    height: 13px;
	
}
.normaldots .slick-dots li.slick-active button:before{
    background: rgb(28 28 28 / 42%);
	
}
.normaldots .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 13px;
    height: 13px;
    padding: 0px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.normaldots .slick-dots li button:before {
    font-family: 'slick';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    content: '';
    background: rgb(28 28 28 / 25%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.normaldots .slider-item {
    opacity: 0;
    transition: all .85s ease;
}
.normaldots .slider-item.slider-item.slick-slide.slick-current.slick-active {
    opacity: 1;
}
.normaldots:not(.slidermain) .slick-prev:before,
.normaldots:not(.slidermain) .slick-next:before {
   /* display: none; */
   content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    opacity: 11;
}
.normaldots:not(.slidermain) .slick-prev:before{
	background-image: url(../img/slick-prev.png);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: center;
}
.normaldots:not(.slidermain) .slick-next:before{
	background-image: url(../img/slick-next.png);
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: center;
}
.normaldots .slick-prev,
.normaldots .slick-next{
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .25s ease;
    border-radius: 50%;
	
}
.normaldots:not(.slidermain) .slick-prev:hover,
.normaldots:not(.slidermain) .slick-next:hover {
    background-color: #e6e6e6;
}
.normaldots .slick-prev.slick-disabled:hover,
.normaldots .slick-next.slick-disabled:hover {
    background-color:transparent;
}
.normaldots:not(.slidermain) .slick-prev {
    left: -50px;
}
.normaldots:not(.slidermain) .slick-next {
    right: -50px;
}
.bg-cd {
    position: absolute;
    right: -1%;
    top: 2%;
    z-index: -1;
    width: 54vw;
    animation: movingwhoweare 15s infinite linear;
}
.box-uvpnew{
	display: flex;
    column-gap: 20px;
    border-bottom: 1px solid #d4d1d0;
    padding: 20px 0 10px;
}
.box-uvpnew:last-of-type{
    border-bottom: 0px solid #d4d1d0;
}
.box-uvp {
    height: 300px;
    width: 100%;
    border: 2px solid #22BAB0;
    color: #000000;
    padding: 18px 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    line-height: 120%;
    transition: all .25s ease;
    background-repeat: no-repeat;
    background-position: right 15px top 15px;
	
	background-color: #fff;
}
.box-uvp:hover{
	background-color: #22BAB0;
	color: #fff;
}
.box-uvp-img{
	width: 60px;
	height: 60px;
	background-position: center;
	background-repeat: no-repeat;
	flex: 0 0 auto;
	background-size: contain;
}
.uvp-1 .box-uvp-img{
	background-image: url(../img/uvp-1.png);
}
.uvp-1:hover .box-uvp-img{
	background-image: url(../img/uvp-1--hover.png);
}
.uvp-2 .box-uvp-img{
	background-image: url(../img/uvp-2.png);
}
.uvp-2:hover .box-uvp-img{
	background-image: url(../img/uvp-2--hover.png);
}
.uvp-3 .box-uvp-img{
	background-image: url(../img/uvp-3.png);
}
.uvp-3:hover .box-uvp-img{
	background-image: url(../img/uvp-3--hover.png);
}

.uvp-4 .box-uvp-img{
	background-image: url(../img/uvp-4.png);
}
.uvp-4:hover .box-uvp-img{
	background-image: url(../img/uvp-4--hover.png);
}
.uvp-5 .box-uvp-img{
	background-image: url(../img/uvp-5.png);
}
.uvp-5:hover .box-uvp-img{
	background-image: url(../img/uvp-5--hover.png);
}
.uvp-6 .box-uvp-img{
	background-image: url(../img/uvp-6.png);
}
.uvp-6:hover .box-uvp-img{
	background-image: url(../img/uvp-6--hover.png);
}
.box-uvp-title {
    /* padding-right: 60px; */
    height: 60px;
    display: flex;
    align-items: center;
	justify-content: space-between;
	column-gap: 13px;
}
.box-uvp ul,
.box-uvpnew ul{
    padding-left: 18px;
}
.box-uvp li,
.box-uvpnew li{
    margin-bottom: 4px;
}
.box-uvp h3{
	font-size: 18px;
    margin-bottom: 0;
}
.box-uvpnew h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 4px;
}
.list-ald-icon{
	width: 28px;
}
.img-bg-ald {
    position: absolute;
    right: -16%;
    top: -8%;
    z-index: -1;
    width: 63.681vw;
    width: 862px;
    animation: movingourvision 15s infinite linear;
}
.img-bg-ald2 {
    position: absolute;
    left: -26%;
    top: 34%;
    z-index: -1;
    width: 63.681vw;
	width: 862px;
    transform: rotate(-22deg);
    animation: movingourvisionald2 15s infinite linear;
}

@keyframes movingourvisionald2 {
  33% {
      transform: skewX(14deg) rotate(-22deg);     
  }
  66% {
      transform: skewX(5deg) rotate(-22deg);     
  }
   100% {
      transform: skewX(0deg) rotate(-22deg);     
  }

}
.img-bg-ald3 {
    position: absolute;
    right: -11%;
    top: 68%;
    z-index: -1;
    width: 63.681vw;
	width: 862px;
    transform: rotate(-22deg);
    animation: movingourvisionald2 15s infinite linear;
}
.img-bg-cd {
    /* position: absolute; */
    /* right: -14%; */
    /* top: 10%; */
    /* z-index: -1; */
    /* width: 65vw; */
    /* animation: movingwhoweare 15s infinite linear; */
	
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}
.img-bg-dp {
    /* position: absolute; */
    /* right: -5%; */
    /* top: 54%; */
    /* z-index: -1; */
    /* width: 54vw; */
    /* animation: movingwhoweare 15s infinite linear; */
	
	position: fixed;
    right: -12%;
    top: 10%;
    z-index: -1;
    width: 46vw;
    animation: movingwhoweare 15s infinite linear;
    opacity: .1;
}

/* Define overlay styles */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow mouse events to pass through */
}

.polygon-overlay {
  fill: rgba(32, 70, 242, 0); /* Transparent initially */
  stroke: transparent; /* Transparent border initially */
  transition: fill 0.3s, stroke 0.3s;
}
.phase1{
	fill: #fab465;
	fill: red;
}
.accordionmap{
	
	
}
.accordion-itemx{
	color: #fff;
	    padding-left: 15px;
	position: relative;
}
.accordion-itemx:before{
	content: '';
    position: absolute;
    top: 22px;
    left: 0px;
    border-right: solid 15px rgb(249 159 58);
    border-bottom: solid 9px transparent;
    border-top: solid 9px transparent;
}
.accordion-itemx h3{
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase
	
}
.accordion-itemx .accordion-body {
	background: #F99F3A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 285px;
    padding: 24px 24px calc(24px - 0.5rem);
}
#phase2 .accordion-body {
	background: #22BAB0;
}
#phase2:before{	
    border-right: solid 15px #22BAB0;
}

#phase3 .accordion-body {
	background: #76b862;
}
#phase3:before{	
    border-right: solid 15px #76b862;
}

#phase4 .accordion-body {
	background: #789c9f;
}
#phase4:before{	
    border-right: solid 15px #789c9f;
}

#phase5 .accordion-body {
	background: #c76eb9;
}
#phase5:before{	
    border-right: solid 15px #c76eb9;
}


.box-communities {
    position: relative;
    height: 386px;
    margin: 0 -8px;
    overflow: hidden;
	color: #fff;
}
.box-communities h3 {
font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.box-communities img.img-communities {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box-communities-overlay--before{
position: absolute;
    width: 100%;
    top: 0%;
    left: 0;
    height: 100%;
    text-align: center;
    padding: 20px 15px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
	background: rgb(0,0,0);
background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 59%);
}
.box-communities-overlay--after{
    position: absolute;
    background: #22bab0;
    padding: 25px 22px 15px;
    color: #fff;
    letter-spacing: .5px;
    line-height: 130%;
    width: 100%;
    font-size: 16px;
    top: 100%;
    left: 0;
    transition: all .5s ease;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    text-align: center;
}
.box-communities:hover .box-communities-overlay--after{
	top: 0%;
	opacity: 1;
}
.box-invest {
    height: 390px;
    width: 100%;
    border: 2px solid #22BAB0;
    color: #000000;
    padding: 30px  20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 14px;
    line-height: 140%;
    transition: all .25s ease;
    background-repeat: no-repeat;
    background-position: right 15px top 15px;
    background-color: #fff;
    border-radius: 22px;
}
.box-invest h3 {
    font-size: 16px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.box-invest-top {
text-align: center;
    height: 70px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
}
.box-invest-bottom{
	text-align: center;
	/* height: 190px; */
}
.icon-invest{
    margin: 0 auto;
}
.img-map_contact_us{
	width: 548px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0px 0px;
    padding: 6px 10px;
    border: 2px solid #00a0d2;
    font-size: 14px;
}
.button-default.btn-send {
    display: inline-block;
    width: auto;
    min-width: 130px;
	color: #fff;
	border: 2px solid #22B2A8;
	font-size: 14px;
    letter-spacing: 0.5px;
    padding: 11px 22px;
    line-height: 1;
    transition: all .35s ease;
    font-weight: 500;
}
.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #22B2A8;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0px -45px;
    position: relative;
    transform: translateY(8px);
}
.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    font-weight: normal;
    display: block;
    margin: 3px 2px;
}
.form-control {
    display: block;
    width: 100%;
    padding: 11px 20px 11px 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    background-color: #F7F7F7;
    background-clip: padding-box;
    border: 1px solid #F7F7F7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	
}
.form-control.field-icon{
	padding-left: 58px;
	background-repeat: no-repeat;
    background-position: left 20px center;
}
textarea.form-control {
    min-height: 30px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
    background: transparent;
	 padding: 11px 0px 11px 0px;
}
.form-control:focus {
    color: #000;
    background-color: #F7F7F7;
    border-color: #22bab0;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(34 186 176 / 25%);
}
textarea.form-control:focus {
	color: #000;
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: none
}
.form-control.field-name{
	background-image: url(../img/field-name.png);
}
.form-control.field-email{
	background-image: url(../img/field-email.png);
}
.form-control.field-subject{
	background-image: url(../img/field-subject.png);
}

.grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}
.grid-item {
	position: relative;
	overflow: hidden;
}
.grid-overlay {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(34 180 170 / 100%);
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 15px 15px 10px;
    line-height: 120%;
    transition: all .25s ease;
	opacity: 0;
	font-weight: 500;
}
.grid-item:hover .grid-overlay{
	top: 0;
	opacity: 1;
}
.list-icon li{
	display: flex;
	font-weight: 400;
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
    line-height: 110%;
    font-size: 15px;
	column-gap: 13px;
	align-items: center;
	margin-bottom: 10px;
}

.bg-blur-half{
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
    left: 0;
    width: 25vw;
    object-fit: cover;
}
.section-bg-blur{
	background-image: url(../img/bg-blur.jpg);
    background-repeat: no-repeat;
    background-size: cover;	
	color: #fff;
	background-attachment: fixed;
    background-position: center;
}