@import '/css/nav.css';
@import '/css/footer.css';
@import '/css/brand-anim.css';
@import '/css/nav-logo-anim.css';
@import '/css/hero-logo-anim.css';
@import '/css/mob-nav.css';

*{
    scroll-behavior: smooth;
}

select{
    border: none;
    background-color: #ffffff;
    color: #363636;
    font-family: 'Albert Sans';
    letter-spacing: 1.7px;
    outline: none;
    width: 190px;
    padding: 10px;
    cursor: pointer;
}

option{
    background-color: #ffffff;
    color: #363636;
    letter-spacing: 1.7px;
}

button{
    outline: none;
    border: none;
    background-color: none;
    background: none;
    cursor: pointer;
    z-index: 1000000000;
}




/* Arrows */

.arr-up svg{
    width: 30px;
    height: auto;
    fill: rgb(167, 167, 167);
    stroke: rgb(167, 167, 167);
    transition: fill 0.5s, stroke 0.5s;
}

.arr-up:hover svg{
    animation: arrowhover1 1.3s linear forwards;
    fill: #bda146;
    stroke: #bda146;
    transition: fill 0.5s, stroke 0.5s;
}

.arr-down svg{
    width: 30px;
    height: auto;
    fill: rgb(167, 167, 167);
    stroke: rgb(167, 167, 167);
    transition: fill 0.5s, stroke 0.5s;
}

.arr-down{
    margin-top: 40vh;
}

.arr-down:hover svg{
    animation: arrowhover2 1.3s linear forwards;
    fill: #bda146;
    stroke: #bda146;
    transition: fill 0.5s, stroke 0.5s;
}


@keyframes arrowhover1{
    0%{transform: translateY(0%);}
    25%{transform: translateY(-9px);}
    50%{transform: translateY(0%);}
    75%{transform: translateY(-9px);}
    100%{transform: translateY(0%);}
}

@keyframes arrowhover2{
    0%{transform: translateY(0%);}
    25%{transform: translateY(9px);}
    50%{transform: translateY(0%);}
    75%{transform: translateY(9px);}
    100%{transform: translateY(0%);}
}

/* Nav Arrows*/

.arrows{
    display: none;
    opacity: 0;
    transition: 0.2s;
}

.scrolled1 .arrows{
    margin-top: 5vh;
    display: flex;
    opacity: 1;
    flex-direction: column;
    position: fixed;
    height: 60vh;
    width: 10vw;
    margin-left: 90vw;
    transition: 1s;
}

/* After Landing */

section{
    width: 100%;
    height: auto;
    overflow: hidden;
    z-index: 10;
}

/* Section 2 */

.section-2{
    background-color: #000000;
    display: flex;
    transition: 1s;
    color: #7e7e7e;
}

.section-2 .container{
    background-color: #000000;
    display: flex;
    width: 100%;
    height: auto;
}

.section-2 .text-container{
    padding: 80px 0px;
    width: 50%;
    margin-left: 25%;
    transform: translateY(-80px);
}



.section-2 .container h1{
    text-align: left;
    margin-top: 10vh;
    font-size: 25px;
    font-weight: 200;
    font-family: 'Poppins';
    line-height: 35px;
}

.section-2 .container h2{
    text-align: left;
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.7px;
    font-family: 'Urbanist';
}

.section-2 .container p{
    width: 100%;
    margin-top: 15px;
    line-height: 30px;
    font-family: 'quicksand';
    font-weight: 500;
    letter-spacing: 1.4px;
    font-size: 14px;
    text-align: justify;
}

.section-2 .text-container{
    height: auto;
}

ul {
    width: 100%;
    margin-top: 15px;
    line-height: 30px;
    font-family: 'quicksand';
    font-weight: 300;
    letter-spacing: 1.4px;
    font-size: 14px;
    text-align: justify;
}

@media (max-width: 1000px) {
    .section-2 .text-container{
        padding: 0px 0px;
        width: 90%;
        margin-left: 5%;
        transform: translateY(0px);
    }

    .section-2 .container h1{
        text-align: left;
        margin-top: 10vh;
        font-size: 17px;
        font-weight: 200;
        font-family: 'Poppins';
        line-height: 20px;
    }
    
    .section-2 .container h2{
        text-align: left;
        margin-top: 50px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 1.7px;
        font-family: 'Urbanist';
    }
    
    .section-2 .container p{
        width: 100%;
        margin-top: 15px;
        line-height: 18px;
        font-family: 'quicksand';
        font-weight: 500;
        letter-spacing: 1.4px;
        font-size: 14px;
        text-align: justify;
    }
}