	/*FONTS*/
        @font-face{
            font-family:"NeulandGrotesk-Light";
            src:url("../fonts/NeulandGrotesk-CondensedLight.woff2") format("woff2");
            font-weight: light;
        }
        @font-face{
            font-family:"NeulandGrotesk";
            src:url("../fonts/NeulandGrotesk-CondensedRegular.woff2") format("woff2");
            font-weight: normal;
        }
        @font-face{
            font-family:"NeulandGrotesk-Bold";
            src:url("../fonts/NeulandGrotesk-CondensedBold.woff2") format("woff2");
            font-weight: bold;
        }
    /*COLORS*/
    .bg-white{background: #ffffff;}
    .bg-black{background: #000000;}
    .bg-light-black{background: #231F20;}
    .bg-light-grey{background: #F2F2F2;}
    .bg-rose-red{background: #B2234D;}
    .bg-beige{background: #EBE4D6;}
    .bg-red{background: #BA181F;}
    .bg-blue-grey{background: #48555A;}
    .bg-back{background: url(../images/Iconnection-Back.jpg) no-repeat;background-size: cover;background-color: #240807;}
    .bg-ribbon{background: url(../images/Iconnection-Back-2.png) no-repeat;background-size: cover;}
    .bg-colors{background: url(../images/Iconnection-Back-colores-vista.jpg) no-repeat;background-size: cover;}

    .text-white{color: #ffffff;}
    .text-black{ color: #000000;}
    .text-light-black{color: #231F20;}
    .text-light-grey{color: #F2F2F2;}
    .text-rose-red{color: #B2234D;}
    .text-beige{color: #EBE4D6;}
    .text-red{color: #BA181F;}
    .text-blue-grey{color: #48555A;}
    .text-shadow{text-shadow: #231F20 1px 0 10px;}

    .border-white{border:solid 2px #ffffff;}
    .border-black{ border:solid 2px #000000;}
    .border-light-black{border:solid 2px #231F20;}
    .border-light-grey{border:solid 2px #F2F2F2;}
    .border-rose-red{border:solid 2px #B2234D;}
    .border-beige{border:solid 2px #EBE4D6;}
    .border-red{border:solid 2px #BA181F;}
    .border-blue-grey{border:solid 2px #48555A;}
    
    /*CONTENT*/
    body{
        background-color: #000;
    }
    p,a,span,h1,h2,h3,h4,h5,h6,div,input,textarea,button,label,.poppins{
        font-family:"NeulandGrotesk";
        color: #242423;
    }
    footer{
        clear: both;
    position: relative;
    height: 120px;
    margin-bottom: -120px;
    }
    .fw-light{
        font-family:"NeulandGrotesk-Light";
    }
    .fw-bold{
        font-family:"NeulandGrotesk-Bold";
    } 
    .fs-01{
        font-size: 3.5rem!important; 
    }
    .fs-0{
        font-size: 3rem!important; 
    }
    .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;
        height: 100vh;
        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: .625rem 2rem .625rem 2rem;
        letter-spacing: 0.5px;
        text-align: center;
        font-weight: normal;
        font-size: 1rem;
        z-index: 1;
        height: auto;
        min-height: 2.75rem;
        margin:10px 0;
        white-space: nowrap;
        display: inline-block;
    }
    .button:before{
        content: "";
        width: 150%;
        height: 100%;
        top: 0;
        display: block;
    }
    .button-red,.button-red:focus{
        background:#BA181F;
        background-color:#BA181F;
        color:#ffffff;
        border:solid 1px #BA181F;
        cursor: pointer;
        overflow: hidden;    
        border-radius: 25px;
        padding: 0.5em 2em;
        letter-spacing: 0.5px;
        text-align: center;
        text-decoration: none;
        font-weight: normal;
        font-size: 1rem;
        z-index: 1;
        height: auto;
        min-height: 2.75rem;
        white-space: nowrap;
        line-height: normal;
    }
    .button-red:hover{
        background:#921118;
        background-color:#921118;
        color:#ffffff;
    }
    
    /*Custom CHK*/
    .custom-ch-label {
        display: block;
        position: relative;
        padding-left: 35px;
        padding-top: 5px;
        margin: 5px 0;
        cursor: pointer;
        font-size: 1em !important;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        color: #BA181F;
    }
    .custom-ch-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }
    .custom-ch-label input:checked ~ .custom-checkmark {
        background-color: #BA181F;
    }
    .custom-checkmark {
        position: absolute;
        top: 5px;
        left: 0;
        height: 25px;
        width: 25px;
        background: #fff;
        border: solid 2px #BA181F;
        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;
    }
    .separator {
        display: flex;
        align-items: center;
        text-align: center;
      }
      
      .separator::before,
      .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #EBE4D6;
      }
      
      .separator:not(:empty)::before {
        margin-right: .25em;
      }
      
      .separator:not(:empty)::after {
        margin-left: .25em;
      }
    /*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) {
        .fs-01{
            font-size: 2.5rem!important; 
        }
        .fs-0{
            font-size: 2rem!important; 
        }
    }
    /*Movil landscape*/
    @media (min-width: 576px) and (max-width: 991.98px) and (orientation:landscape) {
        .fs-01{
            font-size: 2.5rem!important; 
        }
        .fs-0{
            font-size: 2rem!important; 
        }
    }
    