/* 
    Created on : 16/09/2023, 12:29:36 PM
    Author     : Steven
*/
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Josefin+Sans:wght@200&family=Raleway:wght@300;400;500;600;700&family=Space+Grotesk:wght@300&display=swap');

:root{
    --bg-black-900:#e6e6f0;
    --bg-black-100:#fdf9ff;
    --bg-black-50:#e8dfec;
    --text-black-900:#302e4d;
    --text-black-700:#504e70;
    --bg-footer-900:#151515;
    --text-footer-900:#e6e6f0;
}
body.dark{
    --bg-black-900:#151515;
    --bg-black-100:#222;
    --bg-black-50:#393939;
    --text-black-900:#fff;
    --text-black-700:#e9e9e9;
    --bg-footer-900:#fff;
    --text-footer-900:#151515;
}

body{
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Raleway' sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {display: none;} /*Chrome*/
*{
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
    scrollbar-width: none; /*firefox*/
}

::before,::after{
    box-sizing: border-box;
}

.section{
    transition: left 0.3s ease;

    &.back-section{
        z-index: 1;
    }
    &.active{
        z-index: 2;
        opacity: 1;
        animation: slideSection 1s ease;
    }
}

@keyframes slideSection {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(0%);
    }
}

/*Botones*/

.bttn{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: #FFF;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--skin-color);
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;

    &:hover{
        transform: scale(1.05);
    }
}

.shadow-dark{
    box-shadow: 0 0 10px rgba(48, 46, 77, 0.5);
}

/*section-title*/

.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
    margin-top: 40px;

    & h2{
        font-size: 40px;
        color: var(--text-black-900);
        font-weight: 700;
        position: relative;
        
        &::before{
            content: '';
            height: 4px;
            width: 50px;
            background-color: var(--skin-color);
            position: absolute;
            top: 100%;
            left: 0;
        }
        
        &::after{
            content: '';
            height: 4px;
            width: 25px;
            background-color: var(--skin-color);
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 8px;
        }
    }
}

@media (max-width:992px){

}

.tooltipStyle{
    color: var(--text-footer-900);
    background: var(--bg-footer-900);
}