/*
COLORES
*/
:root {
    --color-primary: #09A6AA;   /* color de fondo y boton contacto */
    --color-texto-claro: #FFFFFF;   /* color de texto con el fondo oscuro */
    --color-texto-oscuro: #212529;   /* color de texto con el fondo claro */
}


.bg-primary {
    background-color: var(--color-primary);
    /* background-color: #E4EFF5; */
}
.text-white {
    color: #fff !important;
}
.text-claro {
    color: var(--color-texto-claro);
}
.text-oscuro {
    color: var(--color-texto-oscuro) !important;
}

.text-uppercase {
    text-transform: uppercase;
}



.txt-sm-custom {
    font-size: 0.85rem !important;
}


.iti--show-flags  {
    margin-top: 0.5rem !important;
}

/* degradado top página (logo) */
.bg-degredado {
    padding-bottom: 150px;
    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: var(--color-texto-claro);
        text-decoration: none;
        background-color: var(--color-primary);
        border-radius: 10px 10px 0 0;
        border: 1px solid var(--color-texto-claro);
        font-size: 14px;
        font-weight: bold;
    }
    &:hover {
        a {
            background-color: var(--color-texto-claro);
            color: var(--color-primary);
        }
    }
}