/* NAV */

header{
    position: fixed;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px 0 15px;
    background-color: var(--bg-primary);
    z-index: 999;
}

header img{
    width: 100px;
    object-fit: contain;
}

/* NAV START */

.mobile{
    position: relative;
    width: 90%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.navbar-list a{
    padding: 0 25px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: var(--secondary);
    transition: .2s ease;
}

.navbar-list a:hover{
    color: var(--bg-secondary);
    text-decoration: underline;
}


.mobile input[type="checkbox"]{
    display: none;
}

.toggle_button{
    width: 30px;
    height: 23px;
    position: absolute;
    top: 18px;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer; 
    transition: .5s ease; 
}

.bar{
    height: 4px;
    width: 100%;
    background: #000;
    border-radius: 100px;
}

.toggle_button:hover{
    transform: translateY(-3px);
}

@media(max-width: 768px){
    .toggle_button{
        display: flex;
    }

    #toggle_button:checked ~ .navbar-list{
        transform: translateX(0);
    }

    .mobile{
        width: 100%;
    }

    .navbar-list{
        position: absolute;
        top: 65px;
        right: -15px;
        width: 100%;
        height: 90vh;
        background: var(--bg-secondary);
        display:flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        transform: translateX(100%);
        transition: 0.4s;
        text-align: center;
        border-radius: 50% 0 50% 0;
    }

    .navbar-list :nth-child(1){
        margin-top: 40px;
    }

    .navbar-list a{
        height: min-content;
        width: 100%;
        padding: 5px;
        margin-bottom: 40px;
    }

    .navbar-list a{
        padding: 15px;
    }

    .navbar-list a:hover{
        transform: translateY(0px);
        scale: 1.2;
        background: var(--secondary);
    }
}

.data{
    position: relative;
    top: 80px;
    width: 100%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_text{
    width: 90%;
}

.data h1{
    color: var(--pr-color);
}

.data h2{
    padding-bottom: 1rem;
    color: var(--pr-color);
    text-align: start;
}

.data h3{
    color: var(--pr-color);
    padding-bottom: 1rem;
    text-align: start;
}

.data h4{
    color: var(--pr-color);
    padding-bottom: 1rem;
    text-align: start;
}

.data p{
    padding: 1rem 0 2rem 0;
    color: var(--pr-color);
    max-width: 75ch;
}

.data ul{
    list-style: none;
    margin-bottom: 2rem;
}

.data ul li{
    font-size: 2.5rem;
    color: var(--pr-color);
}

.home-btn{
    position: fixed;
    box-sizing: border-box;
    right: .5rem;
    top: 50%;
    width: 95px;
    height: 70px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.4);
    transition: all 500ms;
}

.home-btn a img{
    position: absolute;
    padding-right: 5px;
}

.home-btn:hover{
    transform: translateY(-5px);
    box-shadow: 2px 2px 2px 2px var(--dark-pr-color);
    transition: all 500ms;
}

/* FOOTER */

.footer_container{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 150px;
}

.footer_container h3{
    font-size: clamp(22px, 2vw, 2rem);
}

.footer_container p{
    font-size: clamp(12px, 1.5vw, 1.5rem);
}

.footer_container :is(h3, p){
    color: var(--secondary);
    text-align: center;
    line-height: 175%;
}

.footer-content{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 25px;
}

.footer-content a{
    text-decoration: none;
    color: var(--secondary);
    font-size: clamp(14px, 1.5vw, 1.5rem);
    text-align: center;
}

.footer-content a:hover{
    color: var(--bg-primary);
}

@media(max-width: 768px){
    .footer-content{
        justify-content: center;
        gap: 20px;
    }
}