@font-face {
  font-family: 'Chillax-Extralight';
  src: url('../fonts/Chillax-Extralight.woff2') format('woff2'),
       url('../fonts/Chillax-Extralight.woff') format('woff'),
       url('../fonts/Chillax-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Light';
  src: url('../fonts/Chillax-Light.woff2') format('woff2'),
       url('../fonts/Chillax-Light.woff') format('woff'),
       url('../fonts/Chillax-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Regular';
  src: url('../fonts/Chillax-Regular.woff2') format('woff2'),
       url('../fonts/Chillax-Regular.woff') format('woff'),
       url('../fonts/Chillax-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Medium';
  src: url('../fonts/Chillax-Medium.woff2') format('woff2'),
       url('../fonts/Chillax-Medium.woff') format('woff'),
       url('../fonts/Chillax-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Semibold';
  src: url('../fonts/Chillax-Semibold.woff2') format('woff2'),
       url('../fonts/Chillax-Semibold.woff') format('woff'),
       url('../fonts/Chillax-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Bold';
  src: url('../fonts/Chillax-Bold.woff2') format('woff2'),
       url('../fonts/Chillax-Bold.woff') format('woff'),
       url('../fonts/Chillax-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Chillax-Variable';
  src: url('../fonts/Chillax-Variable.woff2') format('woff2'),
       url('../fonts/Chillax-Variable.woff') format('woff'),
       url('../fonts/Chillax-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}
:root{
    --bg-blue:#002A44;
    --bg-halfwhite:#F9F9F9;
    --font-chillax-extralight : 'Chillax-Extralight';
    --font-chillax-light : 'Chillax-Light';
    --font-chillax-regular : 'Chillax-Regular';
    --font-chillax-medium : 'Chillax-Medium';
    --font-chillax-semibold : 'Chillax-Semibold';
    --font-chillax-bold : 'Chillax-Bold';
    --font-chillax-variable : 'Chillax-Variable';
    --font-base-color:#D1CCBF;
    --font-dark-color:#2B3530;
}
body{
    font-family: "DM Sans", sans-serif;
}
.font-c-el{
    font-family: var(--font-chillax-extralight);
}
.font-c-l{
    font-family: var(--font-chillax-light);
}
.font-c-r{
    font-family: var(--font-chillax-regular);
}
.font-c-m{
    font-family: var(--font-chillax-medium);
}
.font-c-sb{
    font-family: var(--font-chillax-semibold);
}
.font-c-b{
    font-family: var(--font-chillax-bold);
}
.font-c-v{
    font-family: var(--font-chillax-variable);
}
.text-brand{
    color: var(--font-base-color);
}
.text-beige{
    color: var(--text-soft-beige);
}
.text-dark{
    color: var(--font-dark-color);
}
.bg-blue{
    background: var( --bg-blue);
}
.bg-halfwhite{
    background: var(--bg-halfwhite);
}
.bg-texture{
    background-image: url(../images/bg-texture.png);
}
.blue-texture{
    background-image: url(../images/blue-texture.png);
}
.header-nav {
    transition: all 0.4s ease;
    overflow: hidden;
    max-height: 100px; 
    opacity: 1;
}
.header-fixed-active {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    padding-bottom: 0!important;
}
.header-fixed-active .home-logo{
    width: 80px !important;
}
.header-fixed-active .header-nav{
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}
.video-bottom-active {
    padding-top: 0!important;
    position: fixed!important;
    top: 70px!important;
    bottom: initial!important;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}
.project1-bg:after{
    content: "";
    background: url(../images/project-overlay.png) no-repeat;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background-size: cover;
}
.skyhectares-block:after {
    content: "";
    background: url(../images/project-overlay.png) no-repeat;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    background-size: cover;
}

.testimonial-controls{
    position: absolute;
    top: 5%;
    right: 29.75%;
}
.testimonial-controls button{
    background:#E0E0E0;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f9f9f9;
}
.testimonial-controls button img{
    width: 10px;
}
.award-controls{
    position: absolute;
    bottom: 5%;
    left: -40px;
}
.award-controls button{
    background:#E0E0E0;
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f9f9f9;
}
.award-controls button img{
    width: 10px;
}
.footer-block input[type="text"],.footer-block input[type="button"]{
    background: transparent;
}
.footer-block input::placeholder {
    color: #fff;
}
.footer-block input::-webkit-input-placeholder {
    color: #fff;
}
.footer-block input:-ms-input-placeholder {
    color: #fff;
}
.footer-block input::-ms-input-placeholder {
    color: #fff;
}
.footer-block input[type="text"]:focus,
.footer-block input[type="button"]:focus{
    outline: none;
}
.award-block .splide__slide img{
    width: 100%;
}
/* Project Lists Page */
.search-block.sticky-active {
    padding-top: 12px;
    padding-bottom: 12px;
}
.search-block.sticky-active h4 {
    font-size: 16px;
}
.search-block.sticky-active label {
    font-size: 10px;
}
.search-block.sticky-active select {
    font-size: 14px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.search-block.sticky-active img {
    width: 35px;
}
.iti {
    width: 100%;
}
.iti input {
    background: transparent;
    color: white;
    width: 100%;
}
.splide__track--nav>.splide__list>.splide__slide {
    border: 0;
}
.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: 0;
}
.tab-item h3{
    font-family: 'Chillax-Light';
    position: relative;
}
.tab-item p{
    font-family: 'Chillax-Light';
    color: #000;
}
.tab-item.active h3{
    font-family: 'Chillax-Medium';
    padding-bottom: 5px;
}
.tab-item.active h3:after{
    position: absolute;
    content: "";
    background:#FD0018;
    width: 50px;
    height: 2px;
    border-radius: 2px;
    bottom: 0;
    left: 0;
}
.contact-tabs li{
    border-radius: 50px;
}
.contact-tabs li.bg-inactive{
    border: 1px solid #4C4C4C;
    color: #000; 
}
.contact-tabs li.bg-active{
    background: #002A44;
    color: #fff;
}



