body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.btn {
    font-size: 12px;
    background: transparent;
    border: none;
    padding: 1em 1.5em;
    color: #000;
    text-transform: uppercase;
    position: relative;
    transition: .5s ease;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #b31235;
    transition: .5s ease;
}

.btn:hover {
    color: white;
    transition-delay: .5s;
}

.btn:hover::before {
    width: 100%;
}

.btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background-color: #b31235;
    transition: .4s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
    transition-delay: 0.4s;
}

.navbar {
    display: flex;
    width: 1350px;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 10px;
}

.navbar-left {
    display: flex;

}

.navbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    padding: 0px 10px;
    font-size: 10px;
    height: 25px;
    background-color: white;
    color: black;
    border: 1px solid #b31235;
    border-radius: 10px;
    cursor: pointer;
}

.dropdown-button .arrow {
    margin-left: 5px;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    color: #000;
    z-index: 1;
    min-width: 200px;
    padding: 10px 0;
    font-size: 14px;
}

.dropdown-item {
    padding: 8px 16px;
}

.dropdown-item a {
    color: black;
    text-decoration: none;
    font-size: 14px;
}

.checkbox-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.checkbox-content label {
    color: black;
    cursor: pointer;
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 10px;
}

.checkbox-content input {
    margin-right: 8px;
}

.dropdown-subcontent {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #444;
    min-width: 160px;
    z-index: 1;
    padding: 10px 0;
    font-size: 10px;
}

.dropdown-item:hover .dropdown-subcontent {
    display: block;
}

.dropdown-content a,
.dropdown-subcontent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover,
.dropdown-subcontent a:hover {
    background-color: #555;
    color: #000;
}

.dropdown-item a:hover {
    background-color: #f5f5f5;
}


.dropdown:hover .dropdown-content {
    display: block;
}
@media(max-width:1272px){
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 99%;
        justify-content: flex-end;
        align-items: center;
        padding: 10px;
        margin: 10px auto auto auto;
    }
}
@media (min-width:1273px) and (max-width: 1400px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 83%;
        justify-content: flex-end;
        align-items: center;
        padding: 10px;
        margin: 10px auto auto auto;
    }

    .navbar-right {
        font-size: 10px;
        display: flex;
        justify-content: flex-end;
        width: 390px;
        margin-top: 20px;
        align-items: center;
    }

}

@media (min-width:1000px) and (max-width: 1200px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        justify-content: flex-end;
        align-items: center;
        background-color: ;
        padding: 10px;
        margin: 10px auto auto auto;
    }

    .navbar-right {
        font-size: 10px;
        display: flex;
        justify-content: flex-end;
        width: 390px;
        margin-top: 20px;
        align-items: center;
    }

}

@media (min-width:700px) and (max-width: 999px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        background-color: ;
        padding: 10px;
        margin: 10px auto auto auto;
    }

    .navbar-left {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        width: 100%%;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .navbar-right {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
        align-items: center;
    }

}

@media (min-width:480px) and (max-width: 700px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-end;
        align-items: center;
        background-color: ;
        padding: 10px;
        margin: 10px auto auto auto;
        gap: 10px;
    }

    .navbar-left {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        width: 100%%;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .navbar-right {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        align-items: center;
    }

}

@media screen and (max-width: 480px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: initial;
        align-items: center;
        background-color: ;
        padding: 10px;
        margin: 10px auto auto auto;
    }

    .navbar-left {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        width: 100%%;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .navbar-right {
        font-size: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
        align-items: center;
    }

    .btn {
        font-size: 10px;
        padding: 2px 10px;
    }

    .dropdown-item {
        font-size: 10px;
    }
}
