	/*FONTS*/
        @font-face{
            font-family:"Atreyu";
            src:url("../fonts/Atreyu.woff") format("woff");
        }
        @font-face{
            font-family:"Gotham";
            src:url("../fonts/Gotham-Black-2.woff") format("woff");
        }
    .atreyu{
        font-family: "Atreyu";
    }
    .gotham{
        font-family: "Gotham";
    }
    /*COLORS*/
    .bg-white{background: #ffffff;}
    .bg-black{background: #000000;}
    .bg-green{background: #90ba30;}
    .bg-ecoquest {
        background: url(../images/bg.webp) no-repeat;
        background-size: cover;
        width: 100%;
        min-height: 100vh;
        background-attachment: fixed;
        overflow-y:hidden
    }

    .text-white{color: #ffffff;}
    .text-black{ color: #000000;}
    .text-green{ color: #90ba30;}

    .border-white{border:solid 2px #ffffff;}
    .border-black{ border:solid 2px #000000;}
    .border-green{ border:solid 2px #90ba30;}

    /*Cookies*/
    #ot-sdk-btn.ot-sdk-show-settings {
        font-family: "Gotham" !important;
        color: #fff !important;
        background: transparent !important;
        font-family: "Gotham" !important;
        color: #fff !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        font-size: 1em !important;
        text-decoration: underline !important;
    }
    /*CONTENT*/
    .fs-7 {
        font-size: 0.75rem !important;
    }
    .fs-8 {
        font-size: 0.5rem!important;
    }
    .fs-9 {
        font-size: 0.25rem!important;
    }
    .popup{
        position:fixed !important;
        width: 100%;
        top:0;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 100vh;
        height: auto;
        background: #000000DD;
        z-index:999;
    }
    .hidden{
        display:none;
    }
    .sticky{
        position:-webkit-sticky;
        position: sticky;
        top: 0;
          z-index:999;
      }
    
    .button{
            position: relative;
        cursor: pointer;
        overflow: hidden;
        border-radius: 24px;
        padding: .3rem 2rem .3rem 2rem;
        letter-spacing: 0.5px;
        text-align: center;
        font-weight: normal;
        font-size: 1em;
        height: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none;
          -webkit-appearance: button;
        transition-duration: 300ms;
        transition-property: color,border-color,background-color;
    }
    .button:before{
        content: "";
        width: 150%;
        height: 100%;
        top: 0;
        display: block;
        position: absolute;
        transform: skew(0);
        transition: all .35s ease-out;
        z-index: -1;
        left: -160%;
    }
    .button:hover:before {
        transform: skew(
    -45deg);
        left: -30%;
    }
    .button-green,.button-green:focus{
        background:#90ba30;
        color:#fff;
        border:solid 1px #90ba30;
    }
    .button-green:hover{
        animation: btnColor .3s ease forwards;
        background:#fff;
        color:#90ba30;
    }
    .button-green:hover:before{
        color:#90ba30;
        background-color: #fff;
    }

    .button-white,.button-white:focus{
        background:#fff;
        color:#90ba30;
        border:solid 1px #90ba30;
    }
    .button-white:hover{
        animation: btnColor .3s ease forwards;
        background:#90ba30;
        color:#fff;
    }
    .button-white:hover:before{
        color:#fff;
        background-color: #90ba30;
    }
    /*Custom CHK*/
    .custom-ch-label {
        display: block;
        position: relative;
        padding-left: 35px;
        padding-top: 5px;
        margin: 5px 0;
        cursor: pointer;
        font-size: 1.2em !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #90ba30;
    }
    .custom-ch-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    .custom-ch-label input:checked ~ .custom-checkmark {
        background-color: #90ba30;
    }
    .custom-checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 25px;
        width: 25px;
        background: #fff;
        border: solid 2px #90ba30;
        border-radius: 5px;
    }
    .custom-ch-label input:checked ~ .custom-checkmark:after {
        display: block;
    }
    .custom-ch-label .custom-checkmark:after {
        left: 9px;
        top: 5px;
        width: 5px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .custom-checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }
    /*Responsive styles*/
    /*Escritorio*/
    @media (min-width: 1399.98px) {
        
    }
    /*Tablet Portrait*/
    @media (min-width: 576px) and (max-width: 991.98px) and (orientation:portrait) {
        
        
    }
    /*Tablet landscape*/
    @media (min-width: 991.98px) and (max-width: 1199.98px)and (orientation:landscape) {
        
        
    }
    /*Movil Portrait*/
    @media (max-width: 575.98px)and (orientation:portrait) {
       
    }
    /*Movil landscape*/
    @media (min-width: 576px) and (max-width: 991.98px) and (orientation:landscape) {
    
    }
    