.fixed-top {
    /* position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    transition: 0.3s; */
}
.nav {
    width: 100%;
    background-color: #ffffff00;
    padding: 25px 0;
}
#header.header-scrolled {
    height: auto;
    padding: 10px 0;
    background: #E8E4DC;
    /* transition: 0.3s; */
    /* box-shadow: 0 0 15px #3838387a; */
}
.nav .container,
.nav .nav-list > li a.sub {
    position: relative;
}
.nav .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav .nav-header > .nav-title {
    color: #fff;
}
.nav .nav-title .logo {
    width: 45px;
    height: auto;
}
.nav .nav-list {
    display: flex;
    gap: 32px;
    margin: 0;
    /* padding: 10px */
}
.nav .nav-list > li {
    list-style-type: none;
    display: flex;
    align-items: center;
}
.nav .nav-list > li a {
    text-decoration: none;
    cursor: pointer;
    text-transform: capitalize;
    position: relative;
    transition: 0.3s;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;

    letter-spacing: -0.02em;

color: #000000;

}
/* .nav .nav-list > li a::before {
    position: absolute;
    content: "";
    width: 38px;
    height: 4px;
    background: linear-gradient(137.18deg, #f96a22 15.48%, #ff9701 85.03%);
    border-radius: 100px;
    display: none;
    bottom: -5px;
    right: 0;
    left: 0;
    margin: 0 auto;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s ease-out;
} */
.nav .nav-list > li a.active,
.nav .nav-list > li a:hover {
    /* color: #fc7d16; */
}
.nav .nav-list > li a.sub + .sub-list {
    padding: 10px;
    /* background: #1a237e; */
    display: none;
    position: absolute;
    top: 36px;
    list-style: none;
}
.nav .nav-list > li a.sub + .sub-list li {
    padding: 3px;
}
.nav .nav-list > li a.sub + .sub-list:hover,
.nav .nav-list > li a.sub:hover + .sub-list {
    display: block;
}
.nav .nav-list > li a:hover::before {
    display: table;
}
.nav .nav-list > li a.active::before {
    display: table;
    transition: 0.3s;
}
.nav #nav-check {
    display: none;
}

.nav .menu-phone{
    box-sizing: border-box;
    padding: 10px 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #000000;
    text-decoration: none;
}

.nav .nav-btn{
    display: none;
}

@media only screen and (max-width: 1624px) {
    .nav .nav-list {
        /* gap: 10px; */
    }
}
@media only screen and (max-width: 1512px) {
    .nav .nav-list > li a {
        /* font-size: 13px; */
    }
}

@media only screen and (max-width: 1372px) {
    .nav .nav-title .logo {
        width: 26px;
    }

    .nav {
        padding: 1rem;
    }
    .nav .nav-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        /* right: 0; */
        /* top: 0px; */
        padding-top: 0.2rem;
        height: 100%;
    }
    .nav .nav-btn label {
        display: flex;
        justify-content: center;
        align-items: center;
        /* width: 40px; */
        /* height: 40px; */
        /* padding: 13px; */

        width: 36px;
        height: 36px;
        margin-right: 10px;
        border: 1px solid #043304;
        border-radius: 4px;


    }
    .nav .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
    }
    .nav .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background-color: #e1e4ff;
        height: 0;
        transition: 0.3s ease-in;
        top: 60px;
        left: 0;
        overflow: auto;
        /* padding: 0px 10px; */
    }
    .nav .nav-list > li {
        width: 100%;
        margin-top: 0;
        display: block;
    }
    .nav #nav-check:checked ~ .nav-list {
        height: calc(100vh - 50px);
        padding: 15px 10px;
    }
    .nav .nav-list > li a.sub + .sub-list {
        padding: 10px;
        background: 0 0;
        display: block;
        position: relative;
        top: 36px;
        list-style: none;
        margin-top: -40px;
    }

    .nav .nav-list > li a.sub + .sub-list li {
        margin-bottom: 15px;
    }
    .footer .contact-info2 .content-card .content-img p {
        word-break: break-all;
    }

}
