.content {
    width: 95%;
    margin: auto;
    padding: 0 30px;

}

.navbar {
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    /* position: fixed; */
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo img {

    width: 180px;
    height: auto;
}

.navbar .menu-list {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu-list li {
    list-style: none;
}

.menu-list li a {
    color: #0C1179;
    font-size: 16px;
    font-weight: bold;
    margin-left: 30px;
    text-decoration: none;
    transition: all 0.3s ease;

}

.seul{
    margin-left: 90px;
}

.btn {
    background-color: #1CAF07;
    font-size: 20px;
    font-weight: bold;
    font-family: "poppins";
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-left: 20px;
}


.cta {
    width: 100px;
    height: 50px;
    font-size: 20px;
    font-weight: 400;
    font-family: "poppins";
    border-radius: 6px;
    background-color: #1CAF07;
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu-list li a:hover {
    color: #1CAF07;
}

.icon {
    color: #0C1179;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.menu-list .cancel-btn {
    position: absolute;
    right: 30px;
    top: 20px;
}

@media (max-width: 1230px) {
    .content {
        padding: 0 60px;
    }
}

@media (max-width: 1100px) {
    .content {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .content {
        padding: 0 20px;
    }
}

@media (max-width: 868px) {
    body.disabled {
        overflow: hidden;
    }

    .icon {
        display: block;
    }

    .icon.hide {
        display: none;
    }

    .navbar .menu-list {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0px;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: rgb(255, 255, 255);
        transition: all 0.3s ease;
    }

    .navbar.show .menu-list {
        left: 0%;
    }

    .navbar .menu-list li {
        margin-top: 35px;
    }

    .navbar .menu-list li a {
        font-size: 23px;
        margin-left: -100%;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar.show .menu-list li a {
        margin-left: 0px;
    }
}

@media (max-width: 380px) {
    .navbar .logo a {
        font-size: 27px;
    }
}