/* Mundial fonts */

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialBoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialLightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialBlack.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialBlackItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialDemibold.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialDemiboldItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialThin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Mundial';
    src: url('../fonts/MundialThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mundial';
}

/* Base header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: transform 0.4s ease;
    /* Slide only */
}

/* Slide up (hidden) */
.header.hide {
    transform: translateY(-100%);
}

/* Slide down (visible) */
.header.show {
    transform: translateY(0);
}

/* .navbar {
background-color: rgba(0, 0, 0, 0.4) !important;
} */

.navbar.transparent {
    background-color: transparent !important;
    padding-top: 20px;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar .nav-link {
    color: white !important;
    padding: 10px 33px;
    font-size: 18px;
    font-weight: 200;
}

.login-btn {
    position: relative;
    display: inline-block;
    padding: 10px 35px;
    font-size: 18px;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    text-decoration: none;
    clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15px);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border-radius: 6px;
}

.login-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -3px;
    width: 20px;
    height: 20px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

.login-btn span {
    position: relative;
    z-index: 2;
}

.login-btn:hover {
    background: white;
    color: black;
}

.sign-btn {
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    font-size: 18px;
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 15px);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border-radius: 6px;
    font-weight: 300;
    margin-left: 0;
}

.sign-btn::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -10px;
    width: 22px;
    height: 22px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}

.sign-btn span {
    position: relative;
    z-index: 2;

    line-height: 0;
}

.sign-btn:hover {
    background: white;
    color: black;
}

.user-btn {
    align-content: center;
    background: transparent !important;
    position: static !important;
    padding: 0 !important;
    border: none !important;
    cursor: pointer;
    margin-left: 0;
}

.user-btn.sign-btn::before {
    display: none;
}

.after-hero {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.after-hero h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.after-hero p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat p {
    margin-top: 10px;
    font-size: 1rem;
}

.header-logo {
    width: 143.3px;
    height: 39.5px;
    flex-grow: 0;
    object-fit: contain;
}

.navbar-toggler {
    border: var(--bs-border-width) solid rgb(255 255 255 / 0%);
}

.navbar-toggler-icon {
    background-image: url(../img/menu.webp);
    width: 24px;
    height: 24px;

}

.navbar-toggler {
    border: none;
    margin-right: -10px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-nav .menu-item.active .nav-link {
    color: #e2b792;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        gap: 10px;
        padding-right: 30px;
    }
}

@media (max-width: 900px) {
    .navbar-collapse {
        background-color: #e5403e;
        padding: 15px 0px 30px 0px;
    }

    /* Custom Hamburger Icon */
    .header-logo {
        width: 89px;
        height: 24.5px;
        flex-grow: 0;
        object-fit: contain;
    }

    .navbar {
        /* background-color: rgba(0, 0, 0, 0.4) !important; */
        padding-bottom: 20px;
    }

    .mb-btn {
        justify-content: center;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        text-align: center;
    }

    #nav-icon1 {
        width: 28px;
        height: 25px;
        position: relative;
        cursor: pointer;
        display: inline-block;
    }

    #nav-icon1 span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: #fff;
        /* You can change color here */
        border-radius: 4px;
        opacity: 1;
        left: 0;
        transition: all 0.25s ease-in-out;
    }

    #nav-icon1 span:nth-child(1) {
        top: 3px;
    }

    #nav-icon1 span:nth-child(2),
    #nav-icon1 span:nth-child(3) {
        top: 12px;
    }

    #nav-icon1 span:nth-child(4) {
        top: 21px;
    }

    #nav-icon1.open span:nth-child(1) {
        top: 12px;
        width: 0%;
        left: 50%;
    }

    #nav-icon1.open span:nth-child(2) {
        transform: rotate(45deg);
    }

    #nav-icon1.open span:nth-child(3) {
        transform: rotate(-45deg);
    }

    #nav-icon1.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

}

.navbar-nav .dropdown-menu {
    left: -37px;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle {
    position: relative;
    padding-right: 20px;
}

.dropdown-toggle::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(var(--arrow-rotation, 0deg));
    width: 24px;
    height: 24px;
    background-image: url(../img/down-arrow.png);
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.dropdown-menu .dropdown-item.dropdown-toggle::after {
    all: unset !important;
}

.dropdown-toggle::after {
    display: none !important;
}

.dropdown-toggle {
    position: relative;
    padding-right: 20px;
}

.nav-item.dropdown {
    padding-right: 18px;
}

.dropdown-item {
    font-weight: 300;
}

.dropdown-item:hover {
    color: #fff;
    background-color: #e5403e;
}

@media screen and (max-width: 991px) {
    .dropdown-menu {
        padding: 0;
    }

    .dropdown-toggle {
        position: relative;
    }


    .dropdown-menu {
        padding: 0;
    }

    .dropdown-toggle {
        position: relative;
    }

    .nav-item.dropdown {
        position: static;
        /* height: 50px; */
        transition: height 0.3s ease-in-out;
        padding-right: 0px;
    }

    .dropdown-menu.depth_0>.dropdown-menu {
        padding: 0;
    }

    .dropdown-menu .dropdown-item.dropdown-toggle {
        text-align: center;
        padding: 10px 0;
        height: 34px;
        flex-grow: 0;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.5;
        letter-spacing: 0.3px;
        color: #ffffff !important;
        background-color: #232323;
    }

    ul.dropdown-menu.depth_0 {
        background-color: #232323;
        padding: 12px 20px;
    }

    ul.dropdown-menu.dropdown-menu.depth_1 {
        justify-content: center;
        align-items: center;
        padding-left: 0 !important;
        background-color: #232323;
    }

    .mobile-menu-toggle {
        display: block;
    }

    ul.dropdown-menu.depth_0 {
        flex-direction: column;
    }


}

@media screen and (max-width: 768px) {
    .dropdown-item {
        text-align: center;
        padding: 15px;
    }

    .dropdown-toggle::before {
        content: "";
        position: absolute;
        right: var(--arrow-right, 34%);
        top: 50%;
        /* transform: translateY(-50%); */
        transform: translateY(-50%) rotate(0deg);
        width: 24px;
        height: 24px;
        background-image: url("../img/down-arrow.png");
        background-size: cover;
        background-repeat: no-repeat;
        right: 20%;
    }


    .dropdown-toggle.rotated::before {
        transform: translateY(-50%) rotate(180deg);
        /* Rotate when active */
    }

    #bootscore-navbar li {
        width: 100%;
    }

    #bootscore-navbar li:not(:last-child) {
        border-bottom: solid 0.8px #ececec;
    }


    .dropdown-menu.depth_0 {
        width: 100% !important;
    }
}