@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------------------- top-most-link ----------------------- */
/* --------------------------------------------------------------------- */
.top-most-link {
    background: linear-gradient(35deg, #2b3a41, #2b3b42);
    padding-inline: 5vw;
    padding-block: 0.5vw;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.top-contact-info {
    display: grid;
    grid-template-columns: auto auto;
    max-width: max-content;
    gap: 1vw;
}

.top-contact-info a {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    width: max-content;
    font-size: 1.5vw;
}

.top-contact-info a:last-child {
    padding-left: 1vw;
    border-left: 1px solid #ffffff;
}

.top-most-icon {
    width: 1.5vw;
    color: #ffffff;
}

/* --------------------------------- Big Navigation -------------------- */
/* --------------------------------------------------------------------- */
.nav {
    padding-block: 1vw;
    padding-inline: 5vw;
    background: linear-gradient(35deg, #c00101ee, #ff0000ee);
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-relative-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav .brand {
    font-weight: 600;
    color: #222222;
    text-decoration: none;
}

.brand {
    color: #f7f2f2 !important;
    font-size: 1.5vw !important;
}

.nav-links {
    display: grid;
    grid-template-columns: auto auto auto auto auto;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li:not(:last-child) {
    border-right: 1px solid #3333338f;
    padding-inline: 2vw;
}

.login-btn-last {
    padding-left: 2vw;
}

.nav-links li {
    font-size: 1vw;
    font-weight: 400;
    transition: 0.5s ease-in-out;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    transition: 0.5s ease-in-out;
    font-weight: bold;
}

.nav-links li:hover a {
    color: #ffffff;
}

.nav-links-mid {
    display: none;
}

.small-nav-links {
    display: none;
}

/* -------------------------------------------screen size 800px ------- */
/* -------------------------------------------------------------------- */
@media screen and (max-width: 800px) {

    /* ----------------------- top-most-link ---- 800px ------------ */
    /* ------------------------------------------------------------- */
    .top-most-link {
        padding-block: 1.5vw;
        padding-inline: 3vw;
    }

    .top-contact-info {
        gap: 1vw;
    }

    .top-contact-info a {
        width: max-content;
        font-size: 3vw;
    }

    .top-most-icon {
        width: 3vw;
    }

    /* --------------------------------- Big Navigation --800px------------- */
    /* --------------------------------------------------------------------- */
    .nav {
        padding-inline: 3vw;
    }

    .brand {
        font-size: 3vw !important;
    }

    .nav-links {
        display: none;
    }

    .nav-links-mid {
        display: block;
        list-style-type: none;
    }

    .small-screen-open-btn-icon {
        width: 4vw;
        color: #2b3b42;
        transition: 0.5s ease;
        cursor: pointer;
    }

    .small-screen-close-btn-icon {
        width: 5vw;
        color: #2b3b42;
        transition: 0.5s ease;
        cursor: pointer;
    }

    .small-screen-open-btn-icon:hover {
        color: #ffffff;
    }

    .small-screen-close-btn-icon:hover {
        color: #ea1111;
    }

    .small-nav-links {
        display: block;
        position: absolute;
        right: -100vw;
        top: -1vw;
        /* width: something;*/
        padding-top: 1vw;
        padding-bottom: 2vw;
        padding-inline: 2.5vw;
        background-color: #dddddd;
        transition: 0.5s ease-in-out;
    }

    .nav-links-small {
        list-style-type: none;
        padding-left: 3vw;
        padding-right: 5vw;
    }

    .nav-links-small li {
        margin-block: 4vw;

    }

    .nav-links-small a {
        text-decoration: none;
        color: #333333;
        font-size: 2vw;
        transition: 0.5s ease;
    }

    .nav-links-small a:not(:last-child):hover {
        color: #ea1111;
    }

    .btn-nav-in-menu {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        font-size: 2vw;
        font-family: "Montserrat", sans-serif;
        padding: 1vw;
        border-radius: 0.4vw;
        text-decoration: none;
        text-align: center;
        background: linear-gradient(135deg, #ff0000, #970101);
        color: #ffffff !important;
        box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
        border: none;
        cursor: pointer;
    }

    .btn-nav-icon {
        width: 4vw;
        transition: 0.6s ease;
        color: #ffffff;
    }

    .btn-nav-in-menu:hover .btn-nav-icon {
        margin-right: -2vw;
        color: #cbe007;
    }
}

/* ------------------------------------------------screen size 500px --- */
/* -------------------------------------------------------------------- */
@media screen and (max-width: 500px) {

    /* ----------------------- top-most-link ---- 500px ------------ */
    /* ------------------------------------------------------------- */
    .top-most-link {
        padding-block: 2vw;
    }

    .top-contact-info {
        gap: 2vw;
    }

    .top-contact-info a {
        width: max-content;
        font-size: 4vw;
    }

    .top-most-icon {
        display: none;
    }

    /* ----------------------------- Big Navigation --500px------------- */
    /* ----------------------------------------------------------------- */

    .brand {
        font-size: 4.5vw !important;
        padding-block: 3.5vw;
    }

    .small-screen-open-btn-icon {
        width: 8vw;
    }

    .small-screen-close-btn-icon {
        width: 8vw;
    }

    .small-nav-links {
        top: -0.5;
    }

    .nav-links-small li {
        padding-block: 2vw;
        padding-inline: 5vw;
    }

    .nav-links-small a {
        font-size: 4vw;
    }

    .btn-nav-in-menu {
        font-size: 2vw;
        padding: 2vw;
        border-radius: 1vw;
    }

    .btn-nav-icon {
        width: 8vw;
    }

    .btn-nav-in-menu:hover .btn-nav-icon {
        margin-right: -3vw;
    }
}