* {
    margin: 0;
    padding: 0;
    font-family: 'Saira', sans-serif;
}

#computer_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}
#mobile_header,#mySidenav{
    display: none;
}
#left_header, #middle_header {
    margin-right: 90px;
}

.logo_img {
    width: 70px;
    padding-right: 200px;
}

.header_anchor_tags {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 2px;
}

#middle_header {
    text-align: center;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.right_border {
    border-right: 3px solid black;
}

.header_anchor_tags {
    position: relative;
    color: #333;
    transition: color 0.3s ease;
}

.header_anchor_tags:hover {
    color: #000000;
}

.header_anchor_tags::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.header_anchor_tags:hover::after {
    width: 100%;
}

#right_header {
    display: flex;
    align-items: center;
}

#right_header a>img {
    width: 40px;
    margin-right: 10px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    height: 100vh;
    background-color: #00000050;

}



.loader-2 {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border-width: 0.5rem;
    border-style: solid;
    border-color: #F6F1F1;
    display: inline-block;
    position: relative;
}

.loader-2::after {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border-width: 0.5rem;
    border-style: solid;
    border-color: transparent transparent transparent #000000;
    content: "";
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(135deg);
    }

    to {
        transform: rotate(495deg);
    }
}

@keyframes dash {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@media (min-width: 48rem) {
    .container {
        flex-direction: row;
    }
}

#loader {
    display: none;
    position: absolute;
    z-index: 100;
    top: 0;
}

@media (max-width: 800px) {
    #computer_header {
        display: none;
    }

    #mobile_header {
        display: flex;
        margin: 20px;
        justify-content: space-between;
    }

    .sidenav {
        display: block !important;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        background-color: #111;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 130px;
    }

    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 1.5rem;
        color: #ffffff;
        display: block;
        transition: 0.3s;
        margin-bottom: 15px;
    }

    .sidenav a:hover {
        color: #ffffff;
    }

    .sidenav .closebtn {
        position: absolute;
        top: 50px;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    @media screen and (max-height: 450px) {
        .sidenav {
            padding-top: 15px;
        }

        .sidenav a {
            font-size: 18px;
        }
    }
    #links_mob{
        display: flex;
        flex-direction: row;
        margin-top: 60px;
        align-items: center;
    }
    #links_mob a>img{
        width: 40px;
    }
    .card-container{
        margin-right: 0 !important;
    }
    #cards{
        margin: 50px 0 50px 0 !important;
        align-items: center;
    }
}