@font-face {
    font-family: 'Manrope';
    src:  url('../fonts/Manrope-Regular.ttf');
}

@font-face {
    font-family: 'Manrope-Light';
    src:  url('../fonts/Manrope-Light.ttf');
}

@font-face {
    font-family: 'Manrope-Medium';
    src:  url('../fonts/Manrope-Medium.ttf');
}

@font-face {
    font-family: 'Manrope-Bold';
    src:  url('../fonts/Manrope-Bold.ttf');
}

@font-face {
    font-family: 'Manrope-SemiBold';
    src:  url('../fonts/Manrope-SemiBold.ttf');
}



:root {
    /* Colors */
    --clr-bg-header: #F0F4F9;
    --clr-bg-section-primary: #f4f1eb;
    --clr-bg-nav-color-primary: #75FB92;
    --clr-bg-nav-color-secondary: #69E283;
    --clr-bg-item-primary: #E9E5DF;
    --clr-bg-partner-primary: #05326D;

    --clr-bg-whatsapp-primary: #25D366;

    --clr-text-primary: #000000;
    --clr-text-secondary: #808080;
    --clr-text-third: #5C5C5C;

    --clr-banner-text-primary: #1e58a5;

    --clr-neutral-900: #000000;
    --clr-neutral-600: #404040;
    --clr-neutral-500: #adadad;
    --clr-neutral-450: #d9d9d9;
    --clr-neutral-400: #ffffff;

    /* Typography */
    --fz-largest: 60px;
    --fz-larger: 40px;
    --fz-large: 16px;
    --fz-normal: 14px;
    --fz-small: 12px;
    --fz-smallest: 10px;
    --fz-title: 20px;
    --fz-subtitle: 24px;
    --fz-title-item: 30px;
    --fz-text-testimony: 16px;

    --fw-black: 800;
    --fw-bolder: 700;
    --fw-bold: 600;
    --fw-medium: 500;
    --fw-normal: 400;
    --fw-light: 300;
    --fw-lighter: 200;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--clr-text-primary);
    transition: .3s;
    -webkit-tap-highlight-color: transparent;
}

p{
    margin-bottom: 0;
}

body{
    font-family: "Manrope", sans-serif;
}

img {
    width: 100%;
    height: auto;
}

div,span,a,p,
h1,h2,h3,h4,h5,h6{
    color: var(--clr-text-primary);
}
  
h1,
h2,
h3,
h4,
h5,
h6{
    font-weight: normal;
    line-height: 1.2;
}
  
a{
    text-decoration: none;
    display: inline-block;
}

a:hover{
    color: var(--clr-text-secondary);
}

input,
button{
  border: none;
  outline: none;
  background-color: var(--clr-neutral-400);
}

ul{
    list-style: none;
}

.d-flex{
    display:flex;
}

.relative{
    position: relative;
}

.sticky{
    position: sticky;
}

.w10{
    width: 10%;
}


.w20{
    width: 20%;
}

.w25{
    width: 25%;
}

.w30{
    width: 30%;
}

.w33{
    width: 33%;
}

.w40{
    width: 40%;
}

.w50{
    width: 50%;
}

.w60{
    width: 60%;
}

.w70{
    width: 70%;
}

.w80{
    width: 80%;
}

.w90{
    width: 90%;
}

.w100{
    width: 100%;
}

.mt-140{
    margin-top: 140px;
}


.btn-green{
    font-family: 'Manrope-Bold',sans-serif;
    background-color: var(--clr-bg-whatsapp-primary);
    padding: 16px 24px;
    border-radius: 8px;
    color: #FFF;
}

.btn-green:hover{
    background-color: var(--clr-bg-nav-color-secondary);
    color: #000;
}

.btn-icon{
    align-items: center;
    gap: 8px;
}

/* START CUSTOM CSS */

/* HEADER */
.headerMobile {
    display: none;
}

.menuDesktop{
    display: flex;
}

.header{
    position: sticky;
    top: 0;
    left: 0;
    padding: 20px 0 20px 0;
    background-color: var(--clr-bg-partner-primary);
    z-index: 2;
}

.header-row{
    align-items: center;
    /* justify-content: space-between; */
}

.header-logo a{
    opacity: 100%;
    transition: .3s;
}

.header-logo a:hover{
    opacity: 80%;
}

.nav-items{
    display: flex;
    justify-content: start;
    align-items: center;
    height: 100%;
    gap:20px;
}

.nav-items a{
    font-family: 'Manrope-Medium',sans-serif;
    font-weight: var(--fw-medium);
    font-size: var(--fz-large);
    color: var(--clr-neutral-400);
}

.nav-items a:hover{
    opacity: 80%;
}

.nav-button{
    justify-content: end;
}


/* END HEADER */

/* CONTENT START */

/* BANNER HOME START */

.bannerHome{
    background-image: url('../img/banner-home.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapperBannerTexts{
    padding-top: 380px;
    padding-bottom: 82px;
    flex-direction: column;
    gap: 35px
}

.bannerTitle,
.bannerSubtitle{
    color: var(--clr-neutral-400);
}

.bannerTitle{
    font-family: 'Manrope-SemiBold',sans-serif;
    font-size: var(--fz-largest);
    font-weight: var(--fw-bolder);
    line-height: 1.2;
    width: 65%;
}

.bannerSubtitle{
    font-family: 'Manrope-Light',sans-serif;
    font-size: var(--fz-subtitle);
    font-weight: var(--fw-light);
    width: 50%;

}
/* BANNER HOME END */

/* CAROUSEL SLIDER HOME START */

.carouselHome{
    position: relative;
    z-index: 0;
    background-color: var(--clr-bg-partner-primary);
    top: -1px;
}


.logo-partner-carousel{
    width: auto !important;
    height: 30px !important;
}

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
  }
  
  /* .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--clr-bg-partner-primary));
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--clr-bg-partner-primary));
  } */
  
  /* .logos:hover .logos-slide {
    animation-play-state: paused;
  } */
  
  .logos-slide {
    /* animation: 15s slide infinite linear; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .logos-slide img {
    height: 50px;
    /* margin: 0 35px; */
  }

/* CAROUSEL SLIDER HOME END*/

/* GAS INSTALLATION CONTENT START */
.contentGasInstallation{
    background-color: var(--clr-neutral-400);
    padding-bottom: 160px;
}

.wrapperContentGasInstallation{
    gap: 24px;
}

.containerImgGasInstallation img{
    width: 80px;
}

.wrapperGasInstallation{
    top: 200px;
}

.titleGasInstallation h2{
    font-family: 'Manrope-SemiBold', sans-serif;
    font-size: var(--fz-larger);
    color: #05326d;
}

.textGasInstallation{
    max-width: 390px;
    color: var(--clr-text-third);
    font-family: 'Manrope', sans-serif;
}

.textGasInstallation strong{
    color: var(--clr-text-primary);
    font-family: 'Manrope-Bold', sans-serif;
}

.lineGasInstallation{
    margin-top: 52px;
    margin-bottom: 58px;
}

.contentItemGasInstalarion{
    flex-direction: column;
    gap: 8px;
}

.itemGasInstallation{
    background-color: var(--clr-neutral-400);
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    padding: 56px;
    top: 200px;
}

.numItemGasInstallation{
    font-size: var(--fz-largest);
    background-color: var(--clr-banner-text-primary);
    color: var(--clr-neutral-400);
    border-radius: 50%;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titleItemGasInstallation{
    font-family: "Manrope-SemiBold";
    font-size: var(--fz-title-item);
    margin-top: 15px;
    margin-bottom: 15px;
}

/* GAS INSTALLATION CONTENT END */

/* SEARCH GAS START */

.contentSearchGas{
    background-color: var(--clr-bg-header);
    padding-top: 100px;
    padding-bottom: 100px;
}

.headerSearchGas{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 125px;
}

.titleSearchGas,
.textSearchGas{
    text-align: center;
}

.titleSearchGas{
    font-size: var(--fz-larger);
    font-weight: var(--fw-bold);
    margin-bottom: 33px;
    color: #05326d;
}

.textSearchGas{
    max-width: 768px;
    font-size: var(--fz-subtitle);
    font-weight: var(--fw-light);
}

.wrapperItemsSearchGas{
    max-width: 457px;
}

.itemSearchGas h3{
    font-family: 'Manrope-SemiBold', sans-serif;
    margin-top: 35px;
}

.itemSearchGas p{
    font-size: var(--fz-text-testimony);
    margin-bottom: 40px;
}

/* SEARCH GAS END */

/* DEPOSITIONS START */

.depositions{
    padding-top: 100px;
    padding-bottom: 100px;
}

.wrapperHeaderDepositions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 130px;
}

.wrapperTestimony{
    display: flex;
    justify-content: center;
    gap: 70px;
}

.itemTestimony{
    border-radius: 12px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 73px;
    position: relative;
}

.itemTestimony h3{
    font-family: 'Manrope-SemiBold',sans-serif;
    font-size: var(--fz-title-item);
}

.iconUserTestimony{
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 104px;
}

.quoteItemTestimony{
    font-size: var(--fz-largest);
    color: var(--clr-text-third);
    width: 100%;
    line-height: 0px;
    margin-top: 43px;
}

.textItemTestimony{
    font-size: var(--fz-text-testimony);
    text-align: center;
}


.titleDepositions{
    font-family: 'Manrope-SemiBold',sans-serif;
    font-size: var(--fz-larger);
    margin-bottom: 30px;
    color: #05326d;
}

.textDepositions{
    font-family: 'Manrope-Light',sans-serif;
    font-size: var(--fz-subtitle);
}


/* DEPOSITIONS END */

/* CONTENT END */

/* WHATSAPP ICON START */
.whatsAppButton{
    position: fixed;
    bottom: 25px;
    right: 25px;
}

.linkWhatsAppButton{
    background-color: var(--clr-bg-whatsapp-primary);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation-name: shake-with-delay;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.iconWhatsApp{
    width: 35px;
    height: 35px;
}

@keyframes shake-with-delay {
    from, 16%, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    1.6%, 4.8%, 8%, 11.2%, 14.4% {
        -webkit-transform: translate3d(-3px, -5px, 0);
        transform: translate3d(-3px, -5px, 0);
    }
    3.2%, 6.4%, 9.6%, 12.8% {
        -webkit-transform: translate3d(3px, 5px, 0);
        transform: translate3d(3px, 5px, 0);
    }
}
/* WHATSAPP ICON END */

/* FOOTER START */
.footer{
    background-color: var(--clr-bg-partner-primary);
    padding-top: 88px;
    padding-bottom: 88px;
}

.containerFooter{
    display: flex;
    flex-direction: column;
    gap:20px;
}

.wrapperItemsFooter{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.textFooter{
    font-size: var(--fz-small);
    color: var(--clr-neutral-400);
    opacity: 50%;
}

.linkFooter a{
    color: var(--clr-neutral-400);
}

.linkFooter a:hover{
    opacity: 80%;
}

/* FOOTER END */


/* MOBILE START */
@media only screen and (max-width:768px) {
    /* HEADER START */
    .header-logo a{
        width: 150px;
    }

    .header-row .col-auto.w30{
        width: 100%;
    }

    .header-row .col-auto.w20{
        width: 40%;
    }

    .header-row .col-auto.w50{
        width: 60%;
    }

    .nav-items{
        justify-content: end;
        align-items: end;
        flex-direction: column;
        gap: 10px;
    }

    .nav-items a{
        
        font-size: var(--fz-normal);
    }

    .nav-button .btn-green{
        margin-top: 20px;
        font-size: var(--fz-normal);
        width: 100%;
        justify-content: center;
        align-items: center;
    }
        
    /* HEADER END */

    /* BANNER START */
    .wrapperBannerTexts{
        padding-top: 100px;
    }
    .bannerTitle{
        font-size: var(--fz-larger);
        width: 100%;
    }
    .bannerSubtitle{
        font-size: var(--fz-title);
        width: 100%;
    }
    /* BANNER END */

    /* PARTNER PANEL START */

    .logos-slide{
        gap: 20px;
    }

    .logos{
        padding: 20px 0;
    }

    .logo-partner-carousel{
        height: 20px !important;
    }

    /* PARTNER PANEL END */

    /* GAS INSTALLATION START */

    .wrapperGasInstallation{
        margin-top: 70px;
    }

    .titleGasInstallation h2{
        font-size: var(--fz-larger);
    }

    .contentGasInstallation{
        padding-bottom: 80px;
    }

    .contentItemGasInstalarion{
        margin-top: 0px;
        gap: 30px;
    }

    .numItemGasInstallation{
        font-size: var(--fz-larger);
        width: 60px;
        height: 60px;
    }

    /* GAS INSTALLATION END */

    /* SEARCH GAS START */
    .contentSearchGas{
        padding-top: 70px;
    }

    .headerSearchGas{
        margin-bottom: 25px;
    }

    .titleSearchGas{
        font-size: var(--fz-larger);
    }

    .textSearchGas{
        font-size: var(--fz-title);
    }

    .wrapperImgSearchGas{
        margin-top: 25px;
    }
    /* SEARCH GAS END */

    /* DEPOSITIONS START */
    .depositions{
        padding-top: 70px;
    }

    .titleDepositions{
        font-size: var(--fz-larger);
    }

    .textDepositions{
        font-size: var(--fz-title);
        text-align: center;
    }

    .itemTestimony{
        padding: 90px 40px;
    }

    .itemTestimony h3{
        text-align: center;
    }

    .wrapperTestimony{
        flex-direction: column;
        gap: 100px;
    }
    /* DEPOSITIONS END */

    /* FOOTER START */
    .wrapperItemsFooter{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    /* FOOTER END */

    /* WHATSAPP ICON START */
    .whatsAppButton{
        bottom: 10px;
        right: 10px;
        z-index: 1;
    }
    .linkWhatsAppButton{
        width: 60px;
        height: 60px;
    }
    .iconWhatsApp{
        width: 33px;
        height: 33px;
    }
    /* WHATSAPP ICON END */
}
/* MOBILE END */