@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

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

body {
    font-family: 'Inter';
    font-style: normal;
}


/* ///////////////// navbar ////////////// */

.navbar .dropdown-menu {
    background: rgba(255, 31, 85, 0.6);
    border-radius: 0px 0px 5px 5px;
}

.navbar .dropdown-menu a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}

.navbar .dropdown-menu a:hover {
    background-color: #000040;
    color: white !important;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    top: 60px;
}

.main-navbar {
    background-color: #000040;
    border-bottom: 1px solid #383D74;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
    padding: 25px 0 !important;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand span {
    color: #FF1F55;
}

.nav-item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.nav-item .active {
    color: #FF1F55 !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 25px;
}

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

.link-1 {
    display: block;
    border-right: 1px solid white;
    padding-right: 20px !important;
}

.nav-item a:hover {
    color: #FF1F55 !important;
}

.nav-item a::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background-color: #FF1F55;
    transition: 0.3s;
}

.nav-item a:hover::after {
    width: 60% !important;
    transition: 0.3s !important;
}

.nav-item .active::after {
    content: '' !important;
    display: block !important;
    width: 60% !important;
    height: 2px !important;
    background-color: #FF1F55 !important;
    transition: 0.3s !important;
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 18px;
    }

    .nav-item a {
        font-size: 13px;
    }

    .navbar-brand {
        font-size: 21px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px;
    }

    .link-1 {
        display: none;
    }

    .nav-item a:hover::after {
        width: 5% !important;
        transition: 0.3s !important;
    }

    .nav-item .active::after {
        content: '' !important;
        display: block !important;
        width: 3% !important;
        height: 2px !important;
        background-color: #FF1F55 !important;
        transition: 0.3s !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 479px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px;
    }

    .link-1 {
        display: none;
    }

    .navbar-brand {
        font-size: 23px;
    }

    .nav-item a:hover::after {
        width: 10% !important;
        transition: 0.3s !important;
    }

    .nav-item .active::after {
        content: '' !important;
        display: block !important;
        width: 10% !important;
        height: 2px !important;
        background-color: #FF1F55 !important;
        transition: 0.3s !important;
    }
}