.txt-sm-custom {
    font-size: 0.85rem !important;
}
.text-white {
    color: #fff;
}
.mt-custom {
    margin-top: -100px !important;
}

@media (min-width: 992px) { 
    .mt-custom {
        margin-top: -100px !important;
    }
}
@media (min-width: 1400px) {
    .mt-custom {
        margin-top: -140px !important;
    }
}
@media (min-width: 1600px) {
    .mt-custom {
        margin-top: -170px !important;
    }
}


/* degradado top página */
.bg-degredado {
    padding-bottom: 50px;
    /* background: linear-gradient(180deg, rgba(66,66,66,0.3) 0%, rgba(11,11,12,0) 100%); */
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
}





/* Scroll flechas */
.scroll-arrows {
    position: absolute;
    right: 0;
    left: 50%;
    transform: translate(-50%,0);
    bottom: 7%;
    z-index: 91;
    width: 24px;
    height: 24px;

    a {
        display: block;
        height: 60px;
        width: 30px;
    }
}
    
.chevron {
    position: absolute;
    width: 28px;
    height: 4px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}
    
.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #fff;
}
    
.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}
    
@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}




/*   BTN CONTACTO    */
#call-to-action {
    position: fixed;
    top: 30%;
    right: 40px;
    z-index: 999999999;
    transform: rotate(-90deg);
    transform-origin: top right; 
}

#call-to-action span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Syne", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    a {
        transition: all 0.3s ease-in-out;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
        color: #bcb1a2;
        text-decoration: none;
        background-color: #573e36;
        border-radius: 10px 10px 0 0;
        border: 1px solid #bcb1a2;
        font-size: 14px;
        font-weight: bold;
    }
    &:hover {
        a {
            background-color: #bcb1a2;
            color: #573e36;
        }
    }
}