@charset "UTF-8";
 :root {
    --brown_text: #5E4B45;
    --almond_cream: #E5DACF;
    --soft_rose: #C38E81;
    --sage_mist: #C6BFA9;
    --linen_white: #FEF3ED;
    --muted_accent: #A18F88;
    --fresh_olive: #A8A388;
    --dusty_rose: #B07D70;
}

.nav {
    width: 100%;
    height: 65px;
    background-color: rgba(1, 1, 1, 0.7);
    position: fixed;
    top: 0;
    z-index: 999;
}

.nav_title {
    width: auto;
    height: 65px;
    position: absolute;
    left: 0;
    color: var(--linen_white);
    font-size: 20px;
    justify-content: center;
    padding-left: 20px;
    padding-top: 20px;
}

.nav_width {
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    padding-right: 100px;
}

.nav_trigger_list {
    width: 100%;
    height: auto;
    padding-right: 100px;
}

.nav div.main_list {
    height: auto;
    width: auto;
    padding-left: 50px;
    padding-top: 0;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 5px;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 50px;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: var(--linen_white);
    line-height: 65px;
    font-size: 20px;
}

.nav div.main_list ul li a:hover {
    color: var(--dusty_rose);
}

.navTrigger {
    display: none;
}

.nav {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media screen and (max-width:768px) {
    /**to show the button**/
    .navTrigger {
        display: block;
    }
    .nav_width {
        width: 100%;
        position: static;
        padding-right: 0;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        position: absolute;
        left: 0;
        right: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        width: 100%;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: auto;
        left: 0;
        right: 0;
        top: 0;
        padding: 0;
        margin: 0;
        background-color: rgba(1, 1, 1, 0.7);
        background-position: right top;
    }
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
        font-size: 20px;
        left: 0;
        padding-right: 100px;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
    }
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: var(--linen_white);
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

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

.dropbtn {
    background-color: rgba(0, 0, 0, 0);
    color: var(--linen_white);
    border: none;
    cursor: pointer;
    height: 60px;
}

.dropbtn img {
    width: 30px;
    height: 30px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--linen_white);
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: var(--dusty_rose);
}

.dropdown:hover .dropdown-content {
    display: block;
    color: rgba(0, 0, 0, 0.6);
}

.desktop-lang {
    display: block;
}

.mobile-lang {
    display: none;
}

@media (max-width: 768px) {
    .desktop-lang {
        display: none;
    }
    .mobile-lang {
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
        font-size: 14px;
    }
    .mobile-lang a {
        text-decoration: none;
        /* color: #333; */
        font-weight: bold;
    }
    .mobile-lang span {
        color: var(--linen_white);
    }
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}