﻿li {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px rgb(223, 223, 223);
    padding-bottom: 2px;
}

.logo {
    margin-left: -40px;
    height: 38px;
    width: 72px;
    cursor: pointer;
}

.navbar .link {
    display: flex;
    gap: 2rem;
    color: #222222;
}

.navbar .link a {
    color: #222222;
    position: relative;
    padding: 15px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.navbar .link a.active {
    margin-top: 10px;
    color: #2974D3;
}

.navbar .link a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3E82D7;
    position: absolute;
    bottom: -7px;
    left: 0;
}

.navbar .toggle-btn {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.sign-in {
    width: 180px;
    border: 1px solid #3E82D7;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    color: #3E82D7;
    text-align: center;
    border-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
}

.create-account {
    width: 180px;
    border: 1px solid #3E82D7;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #3E82D7;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    margin-left: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    align-items: left;
    flex-direction: column;
    justify-content: space-between;
    top: 60px;
    background-color: white;
    z-index: 900;
    width: 100%;
    height: 100vh;
}

.dropdown-menu li {
    padding-bottom: 20px;
    border-bottom: solid 1px rgb(223, 223, 223);
    padding-right: 100px;
    padding-top: 10px;
    color: #222222;
    position: relative;
    padding: 15px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.dropdown-item-ind{
	font-size: 12px;
}

.account-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.sign-in2 {
    width: 180px;
    border: 1px solid #3E82D7;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    color: #3E82D7;
    text-align: center;
    border-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
}

.create-account2 {
    width: 180px;
    border: 1px solid #3E82D7;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #3E82D7;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    color: white;
    text-align: center;
    border-radius: 4px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 12px;
    margin-top: 10px;
}

.check {
    opacity: 0;
}

.toggle-btn .bars {
    display: block;
}

.toggle-btn .x-mark {
    display: none;
}

.check:checked~.toggle-btn .bars {
    display: none;
}

.check:checked~.toggle-btn .x-mark {
    display: block;
}

@media(max-width: 1300px) {

    .navbar .link,
    .navbar .sign-in,
    .navbar .create-account {
        display: none;
    }

    .navbar .toggle-btn {
        display: block;
        overflow: auto;
    }

    .logo {
        position: relative;
        margin-left: -40px;
        height: 38px;
        width: 72px;
    }

    .toggle-btn {
        margin-right: 90px;
    }

    .check:checked~.dropdown-menu {
        opacity: 1;
        display: block;
    