*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    border: 0;
    list-style: none;
    text-decoration: none;
}

:root {
    --color-base1: #141F84;
    --color-base2: #A80B0B;
    --color-text: #252525;
    --split-color-left: rgba(20, 31, 132, 0.4);
    --split-color-right: rgba(168, 11, 11, 0.4);
    --hover-width: 75%;
    --other-width: 25%;
    --spacing-s: 8px;
    --spacing-m: 16px;
    --spacing-l: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 64px;
}

.popup{
    background-color: rgba(0,0,0, .6);
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.popup-visible{
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition:  opacity 0.3s 0s, visibility 0s 0s;
}

.popup-container{
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 4em auto;
    background: #fff;
    border-radius: 20px 20px 20px 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    opacity: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 11;
}
.popup-container img{
    width: 5em;
    position: relative;
    top: 2em;
}
.popup-container p{
    padding: 2em 1em;
    font-size: 24px;
}
.popup-down{
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: var(--color-base1);
    transition: .3s all ease-in;
}
.popup-down a{
    color: #fff;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;

}
.popup-down:hover{
    transform: scale(1.1);
    background-color: var(--color-base2);
}
.popup-container .popup-close{
    position: absolute;
    top: 8px;
    right: 8px;
    width: 45px;
    height: 45px;
}
.img-replace{
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
}

.popup-container .popup-close::before, .popup-container .popup-close::after{
    content: '';
    position: absolute;
    top: 12px;
    width: 26px;
    height: 3px;
    background-color: #252525;
}
.popup-container .popup-close::before{
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 10px;
}
.popup-container .popup-close::after{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 10px;
}

.nav{
    width: 100%;
    height: 65px;
    position: absolute;
    line-height: 65px;
    text-align: center;
    z-index: 9;
    
}

.nav .logo{
    float: left;
    width: auto;
    height: auto;
    padding-right: 5rem;
}
.nav .logo a img{
    width: 5rem;
}
.nav .main_list{
    height: 65px;
    float: right;
}
.nav .main_list ul{
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav .main_list ul li{
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}
.nav .main_list ul li a{
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: .3s ease;
}
.nav .main_list ul li a:hover{
    color: var(--color-base1);
}
.navTrigger{
    display: none;
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
}
.nav{
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.btn_services{
    border: none;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    background: none;
    font-size: 22px;
    color: #fff;
    transition: .5s ease;
}
.navTrigger i{
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}
.navTrigger i:nth-child(1){
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(2){
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger i:nth-child(3){
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}
.navTrigger.active i:nth-child(1){
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}
.navTrigger.active i:nth-child(2){
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}
.navTrigger.active i:nth-child(3){
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}
@-webkit-keyframes inM{
    50%{
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes inM{
    50%{
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}
@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}


.btn_services:hover{
 color: var(--color-text);
}
.menu ul .dropdown .dropdown-menu{
    display: none;
}
.menu ul .dropdown .dropdown-menu.active{
    display: block;
    transition: .5s ease;
    position: absolute;
    transform: translate(0, 40px) !important;
    border: none;
    background: rgba(160, 160, 160, 0.7) ;
}
.dropdown-item{
    font-size: 20px !important;
}
.dropdown-item:hover{
    background: rgba(241, 241, 241, 0.9)!important;
    border-radius: 5px;
}


.menu ul li a{
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    transition: .3s ease-in;
}

.menu ul li a:hover{
    color: var(--color-text);
}

.contain{
    position: relative;
    width: 100%;
    height: 100vh;
}
.split{
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.index_text{
    font-size: 48px;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
.btn_view{
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 2.5em;
    padding-top: 0.4em;
    width: 15rem;
    text-align: center;
    color: #fff;
    border: #fff solid;
    border-radius: 5px;
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateX(-50%);

}
.split.left{
    left: 0;
    background: url('img/ventilacion-extraccion-imagen-57-basque-culinary-cente_20190307-122742_1.jpg') center center no-repeat;
    background-size: cover;

}
.split.left::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--split-color-left);

}
.split.right{
    right: 0;
    background: url('img/1684776546.png') center center no-repeat;
    background-size: cover;
}
.split.right::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--split-color-right);
}
.split.left, .split.right , .split.left::before, .split.right::before{
transition: 1000ms ease-in-out;
}
.hover-left .left{
  width: var(--hover-width);
}
.hover-left .right{
    width: var(--other-width);
}

.hover-left .right:before{
    z-index: 2;
}

.hover-right .right{
    width: var(--hover-width);
}
.hover-right .left{
    width: var(--other-width);
}

.hover-right .left:before {
    z-index: 2;
  }

  /**SECTION2**/

.contain2{
   width: 100%;
   position: relative;
   height: 82.7vh;
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   align-items: center;
   justify-content: center;
   background-color: var(--color-base1);
}
.section1{
    width: 100%;
    margin: 10px 10px 0 30px;
    text-align: center;
  
}
.section1 .title{
    color: #fff;
    left: 0;
    margin-right: 60px;
    text-align: center;
}
.section1 p{
    display: block;
    width: 90%;
    color: #fff;
}
.section1 p em{
    font-weight: 600;
    font-size: 18px;
}

.contain2 img{
    width: 52%;
    margin-right: 20px;
    margin-top: 3em;
    z-index: 3;
    border-radius: 0 0 0 10em;
}

/**SERVICES SECTION 1**/
.services1_section{
    align-items: flex-start;
    display: flex;
    min-height: 100%;
    justify-content: center;
    padding: var(--spacing-xxl) var(--spacing-l);
}
.title_services1{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
padding-top: 10em;
}
.title_services1 p{
    text-align: center;
    width: 75%;
}
.card-grid{
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: var(--spacing-xl);
grid-row-gap: var(--spacing-l);
max-width: 1600px;
width: 100%;
}
.card-grid-2{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: var(--spacing-xl);
    grid-row-gap: var(--spacing-l);
    max-width: 1600px;
    width: 100%;
    }
.services_card{
    list-style: none;
    position: relative;
}
.services_card:before{
    content: '';
    display: block;
    padding-bottom: 150%;
    width: 100%;
}

.card_bg{
    background-size: cover;
    background-position: center;
    border-radius: var(--spacing-l);
    bottom: 0;
    filter: brightness(0.75) saturate(1.2) contrast(0.85);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    transform: scale(1) translateZ(0);
    transition: 
    filter 200ms linear,
    transform 200ms linear;
}
.services_card:hover .card_bg{
    transform: scale(1.05) translateZ(0);
}
.card-grid:hover> .services_card:not(:hover) .card_bg{
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}
.card-grid-2:hover> .services_card:not(:hover) .card_bg{
    filter: brightness(0.5) saturate(0) contrast(1.2) blur(20px);
}
.card_content{
    left: 0;
    padding: var(--spacing-l);
    position: absolute;    
    top: 43%;
}
.card_category{
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-s);
    text-transform: uppercase;
}
.card_heading{
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    line-height: 1.4;
}
.card-info{
    color: #fff;
    font-size: 14px;
}
/**SERVICES SECTION2**/

.card_content-2{
    left: 0;
    padding: var(--spacing-l);
    position: absolute;
    top: 20%;
}
.card_heading-2{
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    line-height: 1.2;
}

/**SECTION4**/
.contain3{
    width: 100%;
    position: relative;
    height: 82.7vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    background-color: var(--color-base2);
 }
 .contain3 img{
    width: 110%;
    margin-right: 20px;
    margin-top: 3em;
    z-index: 3;
    border-radius: 0 0 0 10em;
}

/**COUNTER SECTION**/

.counter-section{
    background: rgb(232,232,232);
background: linear-gradient(90deg, rgba(232,232,232,1) 0%, rgba(111,111,111,1) 100%);
    padding: 2em 0 2em 0;
    margin-top: 5em;
    margin-bottom: 5em;
}

.col-md-4{
    text-align: center;
    padding-bottom: 50px;
    border-right: 1px dashed black;
}
.col-md-4:last-child{
    border-right: 0px solid black;
}
.counter{
    animation-duration: 1s;
    animation-delay: 0ms;
}
.col-md-4 ion-icon{
   width: 28px;
   height: 28px;
}
.certifics-logos{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 10vh;
    justify-content: center;
}
.certifics{
    padding-left: 40px;
}
.fm-aproved, .ul-listed, .revit, .naviswork {
    padding-left: 0;
}

.certifics img{
    width: 100px;
}
.nfpa{
    width: 80px !important;
}
.listed, .captive, .green, .auto{
width: 150px !important; 
}
.desk, .navis{
    width: 200px !important;
}
.fm{
    width: 120px !important;
}
.sodeca{
    width: 120px;
}
/**SLIDER**/

.brands{
    text-align: center;
    padding: 20px;
}
.slick-slide{
    margin: 0px 20px;
}
.slick-slide img{
    width: 100%;
}
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display:block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden{
    display: none;
}

.frisby{
    width: 65% !important;
    margin-top: 10px;
}
.sofitel{
    margin-top: 35px !important;
}

/**FOOTER**/
#contact{
    width: 100%;
    height: 100%;
    background-color: var(--color-text);
}
.section-header{
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    font: 400 60px 'Roboto',sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 6px;
}
.section-header_2{
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    font: 300 24px 'Roboto', sans-serif;
    color: #fff;
    /*animation: attention 1s ease infinite normal;*/
}
@keyframes attention {
	0%,
	100% {
		transform: translateX(0%);
		transform-origin: 50% 50%;
	}

	15% {
		transform: translateX(-30px) rotate(-6deg);
	}

	30% {
		transform: translateX(15px) rotate(6deg);
	}

	45% {
		transform: translateX(-15px) rotate(-3.6deg);
	}

	60% {
		transform: translateX(9px) rotate(2.4deg);
	}

	75% {
		transform: translateX(-6px) rotate(-1.2deg);
	}
}

.section-header_2 span{
    color: var(--color-base2);
    font-weight: 500;
}
.contact-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    max-width: 840px;
}
.form-horizontal {
    max-width: 400px;
    font-family: 'Roboto',sans-serif;
    font-weight: 400;
}
.form-group{
    padding-top: 20px;
}
.form-control_1{
    max-width: 400px;
    background-color: var(--color-text);
    color: #fff;
    letter-spacing: 1px;
    border: #fff 1px solid;
    width: 100%;
    border-radius: 5px;
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    background-clip: padding-box;
    appearance: none;
}

.send-button{
    margin-top: 15px;
    height: 34px;
    width: 400px;
    overflow: hidden;
    transition: all .2s ease-in-out;
    background-color: var(--color-base1) !important;
    transition: .2s ease-in-out;
}
.send-button:hover{
    background-color: var(--color-base2) !important;
}
.alt-send-button{
    height: 34px;
    transition: all .2s ease-in-out;
}
.alt-send-button ion-icon{
    color: #fff;
}
.send-text{
    color: #fff;
    display: block;
    margin-top: 10px;
    font: 700 12px 'Roboto', sans-serif;
}
.alt-send-button:hover{
    transform: translate3d(0px, -29px, 0px);
}
.direct-contact-container{
    max-width: 400px;
}
.contact-list{
    list-style-type: none;
    margin-left: 30px;
    padding-right: 20px;
}

.list-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.list-item ion-icon{
    padding-bottom: 10px;
    width: 46px;
    height: 46px;
}
.contact-text{
    font: 400 18px 'Roboto',sans-serif;
    letter-spacing: 1.9px;
    color: #fff;
}
.place{
    text-align: justify;
    padding-bottom: 10px;
}
.phone{
    padding-bottom: 10px;
}

.contact-text a{
    color: #fff;
    text-decoration: none;
    transition-duration: 0.2s;
}
.contact-text a:hover{
    color: var(--color-base2);
    text-decoration: none;
}
.social-media-list{
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.social-media-list li a{
    color: #fff;
    position:relative;
    z-index: 1001;
    
}
.social-media-list li{
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 10px 3px;
    line-height: 70px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--color-base2);
    cursor: pointer;
    transition: all .2s ease-in-out;
}
.social-media-list li a ion-icon{
    width: 28px;
    height: 28px;
}
.social-media-list li:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    transition: all .2s ease-in-out;
}
.social-media-list li:hover{
    background-color: #fff;
}
.social-media-list li:hover:after{
    opacity: 1;
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}
.social-media-list li:hover a{
    color: var(--color-text);
}

hr{
    left: 5%;
    position: relative;
    opacity: 0.45 !important;
    border-color: rgba(255,255,255,0.9) !important;
}

.floating_btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
@keyframes pulsing{
    to{
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}
.contact_icon{
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1) ;
    font-weight: normal;
    text-decoration: none;
    transition: all 300ms ease-in-out;
}
.text-icon{
    text-align: center;
    margin-top: 8px;
    color: var(--color-base2);
    font-size: 13px;
}

/**RESPONSIVE**/

@media (max-width: 1300px){
    .card-grid-2{
        grid-template-columns: repeat(4, 1fr);
    }
    .card_content{
        padding: var(--spacing-m);
        top: 25%;
    }

    .card_heading-2{
        font-size: 1rem;
    }
    .card-info{
        font-size: 14px;
    }
    .card_category{
        font-size: 0.7rem;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
    .container{
        margin: 0;
    }
}
@media  (max-width: 1200px) {
    
    .contain2{
        height: 65vh;
    }
    .section1{
        margin: 0 0 0 30px;
    }
    .title{
        font-size: 1.3rem !important;
    }
    .section1 p{
        font-size: 14px;
    }
    .section1 p em{
        font-size: 16px;
    }
    .card-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .card_content{
        top: 60%;
    }
    .card_category{
        font-size: 0.9rem;
    }
    .card_heading{
        font-size: 1.7rem;
    }
    .card-info{
        font-size: 18px;
    }
    .contain3{
        height: 65vh;
    }
    .contain3 img{
        margin-top: 2em;
    }
    .card-grid-2{
        grid-template-columns: repeat(2,1fr);
    }
    .card_content-2{
        top: 50%;
    }
    .card_heading-2{
        font-size: 1.5rem;
    }
    .floating_btn{
        right: 75px;
    }
}
@media (max-width: 900px){
    .container{
        margin: 0;
    }
    .nav .main_list{
        float: none;
        position: relative;
        display: flex !important;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }
    .index_text{
        font-size: 40px;
    }
    .btn_view{
        width: 13rem;
    }
    .contain2{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
        justify-items: center;
    }
    .contain2 img{
        width: 85%;
        height: 85%;
        margin-top: 0;
        margin-right: 0;
    }
    .section1{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 0 0 0;
    }
    .section1 .title{
        font-size: 28px;
        text-align: center;
    }
    .section1 p{
        text-align: center;
        width: 80%;
    }

    .title_services1{
        padding-top: 5em;
    }
    .card-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .card_content{
        top: 40%;
    }
    .card_content-2{
        top: 30%;
    }
    .card_category{
        font-size: 0.9rem;
    }
    .card_heading{
        font-size: 1.5rem;
    }
    .contain3{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
        justify-items: center;
    }
    .contain3 img{
        width: 85%;
        height: 85%;
        margin-top: 0;
        margin-right: 0;
    }
    .counter-section{
        padding: 2em 0 4em 0;
        margin-bottom: 0;
    }
    .certifics-logos{
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
    }
    .brands{
        padding-top: 4em;
    }
    .greenheck{
        position: relative;
        left: 18em;
    }
    .contact-list{
        padding-left: 0;
    }
    .contact-text{
        font: 400 16px 'Roboto', sans-serif;
        text-align: center;
    }

    .floating_btn{
        right: 30px;
    }
}

@media (max-width: 768px){

    .navTrigger{
        display: block;
    }
    .nav .logo{
        margin-left: 15px;
    }
    .nav .main_list{
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav .show_list{
        height: auto;
        display: none;
    }
    .nav .main_list ul{
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: var(--color-text);
        background-position: center top;
    }
    .nav .main_list ul li{
        width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .nav .main_list ul li a{
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }
    .nav .media_button{
        display: block;
    }
    .index_text{
        font-size: 34px;
    }
    .contain2{
        height: 95vh;
    }
    .contain3{
        height: 95vh;
    }
    .section1{
        width: 80%;
        margin: 20px 0 0 0;
    }
    .contain2 img{
        margin-top: -20px;
    }
    .section1 .title{
        font-size: 24px;  
        margin-right: 0;
    }
    .section1 p{
        font-size: 15px;
        width: 100%;
    }
    .card_content{
        top: 20%;
    }
    .card_content-2{
        top: 20%;
    }
    .card_heading, .card_heading-2{
        font-size: 1.2rem;
    }
    .card-info{
        font-size: 14px;
    }
    .certifics{
        padding-left: 0;
    }
    .greenheck{
        left: 16em;
    }
    .col-md-4{
        border-bottom: 1px dashed black;
        border-right: none;
    }
    .contact-wrapper {
        display: flex;
        flex-direction: column;
      }
      .direct-contact-container, .form-horizontal {
        margin: 0 auto;
      }  
      
      .direct-contact-container {
        margin-top: 60px;
        max-width: 300px;
      }    
      .social-media-list{
         padding-left: 0 !important;
      }
      .social-media-list li {
        height: 60px;
        width: 60px;
      }
      .social-media-list li:after {
        width: 60px;
        height: 60px;
        line-height: 60px;
      }
      .place{
        text-align: center;
      }
      .form-control_1{
        height: 50px;
      }
      .send-button{
        height: 40px;
      }
}
@media (max-width:520px){
    .split.left,.split.right{
    width: 100%;
    height: 50%;
    margin: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    }  
    .hover-left .left{
        height: var(--hover-width);
      }
      .hover-left .right{
          height: var(--other-width);
      }
      
      .hover-left .right:before{
          z-index: 2;
      }
      
      .hover-right .right{
          height: var(--hover-width);
      }
      .hover-right .left{
          height: var(--other-width);
      }
      
      .hover-right .left:before {
          z-index: 2;
        }
      .index_text{
        font-size: 28px;
        width: 80%;
      }
      .btn_view{
        height: 2em;
        width: 10rem;
        top: 60%;
        font-size: 18px;
        padding-top: 0.1em;
      }
      .contain2{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
        justify-items: center;
      }
      .contain2 img{
        width: 100%%;
        height: 95%;
      }
      .section1{
        width: 90%;
        margin: 10px 0 0 30px;
      }
      .card_content{
        top: 30%;
      }
      .card_category{
        font-size: 1rem;
      }
      .card_heading, .card_heading-2{
        font-size: 1.5rem;
      }
      .card-info{
        font-size: 16px;
      }
      .card-grid{
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: var(--spacing-l);
        grid-row-gap: var(--spacing-m);
    }
    .card-grid-2{
        grid-template-columns: repeat(1, 1fr);
    }
    .card_content-2{
        top: 50%;
    }
      .contain3{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
        justify-items: center;
      }
      .contain3 img{
        width: 99.9%;
        height: auto;
      }

      .greenheck{
        left: 0em;
    }

      .direct-contact-container{
        max-width: none;
      }
      .contact-list{
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
      }
      hr{
        left: 0;
      }
      .social-media-list{
        padding-left: 0;
      }
      .social-media-list li{
        line-height: 70px;
      }
      .sofitel{
        margin-top: 30px !important;
      }
      .certifics-logos{
      
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        justify-items: center;
      }
      .certifics{
        padding-left: 0;
      }
      .certifics-logos .weg, .naviswork{
       grid-area: 3 /1 /4 /3;
      }
}


@media (max-width: 390px){
    .nav .logo a img{
       width: 3.5rem;
       margin-top: -30px;
    }
    .nav .main_list ul li {
      height: 50px;  
    }
    .nav .main_list ul li a{
        font-size: 2rem;
    }
    .section1{
        margin: auto;
    }
    .section1 .title{
        margin-bottom: 0;
        margin-top: 5px;
    }
     .section1 p{
        font-size: 14px;
        
    }
    .contain2 img{
        width: 100%;
        border-radius: 0 0 0 25%;
    }
    .contain3 img{
        width: 100%;
        border,radius: 0 0 0 25%;
    }
    .card-grid{
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: var(--spacing-l);
        grid-row-gap: var(--spacing-m);
    }
    .card_content{
    top: 40%;
    }
    .card_content-2{
        top: 20%;
    }
    .card_category{
        font-size: .9rem;
    }
    .card_heading{
        font-size: 1.3rem;
    }

    .section-header{
    font: 400 42px 'Roboto', sans-serif;
    padding: 20px 20px;
    }
    .section-header_2{
        font: 300 16px 'Roboto', sans-serif;
    }
  .form-horizontal{
    margin: 0 0 0 0;
  }
  .send-button{
    width: 350px;
  }

  .certifics-logos{
    margin-top: -50px;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    justify-items: center;
  }
  .certifics{
    padding-left: 0;
  }
  .certifics-logos .weg{
    grid-area: 3 /1 /4 /3;
   }
}