/* Header */
.header_up {
    background: #161A1B;
    padding: 12px 0;
}
.header_up nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_up nav .links {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header_up nav .links a {
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 117%;
}
.header_up nav button {
    background: #FFF;
    border-radius: 2rem;
    padding: 11px 53px;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    color: #212121;
    font-family: "Mazzard", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 117%;
}
.header_down {
    background: linear-gradient(180deg, #343BB8 0%, #292E89 100%);
    padding: 16px 0;
}
.header_down nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_down nav .btn {
    overflow: hidden;
    border-radius: 66px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    border: 1px solid #FFF;
    gap: 10px;
    align-items: center;
    padding-right: 20px;
    -webkit-border-radius: 66px;
    -moz-border-radius: 66px;
    -ms-border-radius: 66px;
    -o-border-radius: 66px;
}
.header_down nav .btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_down nav .btns .btn .round {
    border-radius: 50%;
    height: 40px;
    aspect-ratio: 1/1;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: grid;
    place-items: center;
}
.header_down nav .btns .btn span {
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 117.333%; /* 117.333% */
}
header nav .map {
    display: flex;
    align-items: center;
}
header nav .map span {
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 117.333%; /* 117.333% */
}
header nav .lngs {
    display: flex;
    align-items: center;
    gap: 10px;
}
header nav .lngs .lng {
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 146.667%; /* 146.667% */
}
header nav .lngs .lng.active {
    text-decoration-line: underline; 
}
header nav .time {
    display: flex;
    align-items: center;
    gap: 5px;
}
header nav .time span {
    text-align: left;
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 14.4px */
}
.header_down nav .phone {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_down nav .phone > div {
    display: grid;
    gap: 4px;
}
.header_down nav .phone > div a {
    color: #FFF;
    font-family: "Mazzard", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
}
@media (max-width: 1200px) {
    header .mobile-up {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    header .header_up button {
        background: #FFF;
        border-radius: 50%;
        padding: 7px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        color: #212121;
        font-family: "Mazzard", sans-serif;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 500;
        line-height: 117%;
    }
    header .header_up button img {
        width: 20px;
        height: 20px;
    }
    .header_down {
        padding: 8px;
    }
    .header_down nav .btn {
        padding-right: 10px;
        gap: 5px;
    }
    .header_down nav .btns .btn .round {
        height: 30px;
    }
    .header_down nav .btns .btn .round img {
        width: 60%;
    }
}
@media (max-width: 700px) {
    .header_down nav .btn {
        padding-right: 10px;
        gap: 5px;
    }
    .header_down nav .btns {
        gap: 6px;
    }
    .header_down {
        padding: 8px 0;
    }
    .header_down nav .btns .btn .round {
        height: 20px;
    }
    .header_down nav .btns .btn .round img {
        width: 60%;
    }
    .header_down nav .btns .btn span {
        font-size: 1.1rem;
    }
    .header_down nav .logo {
        max-width: 60px;
    }
    .header_down nav .logo img {
        width: 100%;
    }
    header nav .map img {
        max-width: 18px;
    }
    header nav .time img {
        max-width: 13px;
    }
    header nav .lngs {
        gap: 6px;
    }
}
@media (max-width: 400px) {
    .header_down nav .btn {
        padding-right: 3px;
        gap: 3px;
    }
}