/* Header Layout */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 0px;
    z-index: 100;   
    transition: all 0.2s;
}

/* .header._scrolling {
    background-color: #0F1760;
    padding: 25px 0px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.3);
}

.header._scrolling .logo {
    max-width: 120px;
} */

.header__body {
    padding: 0px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__right {
    display: flex;
}

.header__icon {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    gap: 30px;
}

.nav__link {
    padding-bottom: 2px;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.nav__link::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: #fff;
    opacity: 0;
    transition: opacity 200ms, transform 200ms;
}

.nav__link:hover::after {
    opacity: 1;
    transform: translate3d(0, 0.2em, 0);
}

/* Logo */
.logo {
    z-index: 300;
    cursor: pointer;
    transition: all 0.3s;
}

.logo img {
    width: 100%;
}

/* Burger Menu and Header's Responsiveness */
@media (max-width: 975px) {
    .header {
        position: fixed;
        padding: 30px 0px;
    }

    .logo {
        max-width: 120px;
    }

    .header__icon {
        z-index: 200;
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
    }

    .header__icon span, 
    .header__icon::before,
    .header__icon::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 10%;
        transition: all 0.3s ease 0s;
        background-color: #fff;
    }

    .header__icon::before,
    .header__icon::after {
        content: "";
    }

    .header__icon::before {
        top: 0;
    }

    .header__icon::after {
        bottom: 0;
    }

    .header__icon span {
        top: 50%;
        transform: scale(1) translate(0px, -50%);
    }

    .header__icon._active span {
        transform: scale(0) translate(0px, -50%);
    }

    .header__icon._active::before {
        top: 50%;
        transform: rotate(-45deg) translate(0px, -50%);
    }

    .header__icon._active::after {
        bottom: 50%;
        transform: rotate(45deg) translate(0px, 50%);
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #252b65f1;
        padding: 135px 50px 50px 50px;
        transition: left 0.3s ease 0s;
        overflow-y: auto;
        flex-direction: column;
    }

    

    .nav._active {
        left: 0;
    }

    .nav::before {
        content: "";
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        height: 112px;
        z-index: 295;
        transition: all 0.3s ease 0s;
    }

    .header._scrolling .nav::before {
        background-color: rgb(15, 23, 96);
    }

    .nav__link {
        font-size: 24px;
        line-height: 32px;
    }
}