body {
    font-family: 'Montserrat', sans-serif;
}

textarea,
input[type="date" i] {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.m-header {
    padding-top: 30px;
}

.container {
    padding: 0 20px;
}

.m-header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #E7E7E7;
}

.m-header-logo {
    display: flex;
    align-items: center;
    align-items: center;
    gap: 20px;
}

.m-header-logo-image {
    height: 60px;
}

.m-header-logo-image img {
    height: 100%;
}

.m-header-logo h1 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    color: #000;
}

.m-header-logo h2 {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 24px;
    color: #000;
}

.m-header-action {
    display: flex;
    align-items: center;

}

.m-header-action a {
    margin-right: 40px;
}

.m-header-action button.m-header-action-special,
.m-header-action button.m-header-action-lang,
.m-header-action button.m-header-action-burger {
    border-radius: 8px;
    background: #2B8C95;
    width: 44px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.m-header-action-special-dropdown-wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 10px;
}

.m-header-action-special-dropdown-wrapper span {
    font-size: 20px;
}

.m-header-action button.m-header-action-burger {
    display: none;
    font-size: 22px;
    color: #fff;
}

.m-header-action-special {
    position: relative;
}


.m-header-action-special-dropdown {
    position: absolute;
    bottom: -186px;
    right: 0;
    width: max-content;
    background: #fff;
    padding: 20px;
    border: 1px solid #E7E7E7;
    /* display: none; */
    z-index: 2;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.12);
}

/* .m-header-action-special-dropdown.show{
    display: block;
} */
.m-header-action-special-dropdown h3 {
    text-align: left;
    margin-bottom: 4px;
}

.m-header-action-special-dropdown form {
    flex-direction: column;
    height: auto !important;
    width: max-content;
    min-width: auto !important;
    background-color: transparent !important;
    padding: 0 !important;
    padding-bottom: 6px;
    margin-bottom: 10px;
    border-bottom: 1px solid #E7E7E7;
    border-radius: 0 !important;
}

.m-header-action-special-dropdown label {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.m-header-action-special-dropdown input {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    justify-content: center;
    font-size: 1rem;
    width: auto !important;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #000 !important;
    margin-right: 10px;
}

.m-header-action-special-dropdown input:checked {
    background-color: #003057;
    border-color: #003057;
}

.m-header-action-lang {
    position: relative;
}

.m-header-action-lang-dropdown {
    position: absolute;
    bottom: -110px;
    right: 0;
    width: max-content;
    background: #fff;
    padding: 20px;
    border: 1px solid #E7E7E7;
    /* display: none; */
    z-index: 2;
    padding: 6px 14px;
    border-radius: 12px;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.12);
}

/* .m-header-action-lang-dropdown.show{
    display: block;
} */

.m-header-action-lang-dropdown ul li a {
    margin-right: 0;
    font-size: 16px;
    color: #2B8C95;
    padding: 4px 0;
    display: inline-block !important;
}

.m-header-action-lang-dropdown ul li a.active {
    font-weight: 600;
}

.m-header-action form {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgb(241, 241, 241);
    padding: 10px 14px;
    height: 34px;
    min-width: 260px;
}

.m-header-action form input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.m-header-action form button {
    border: none;
    outline: none;
    background: transparent;
    margin-right: 0;
}

.dropdown-content {
    display: none;
}

.dropdown-content.show {
    display: block;
}

.m-header-bottom {
    padding: 20px 0 30px;
}

.m-header-bottom ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.m-header-bottom ul li {
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding-bottom: 20px;
}

.m-header-bottom ul li .m-header-bottom-arrow-active {
    display: none;
}

.m-header-bottom ul li:hover {
    color: #2B8C95;
}

.m-header-bottom ul li:hover .m-header-bottom-arrow-active {
    display: block;
}

.m-header-bottom ul li:hover .m-header-bottom-arrow-default {
    display: none;
}

/* .m-header-bottom ul li:hover, */
.parent-li.active .m-header-bottom-submenu {
    display: flex;
}


.m-header-bottom ul li a,
.m-header-bottom ul li span {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    padding: 5px 20px;
    width: 100%;
    transition: 0.3s;
}

.m-header-bottom ul li span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
}

.m-header-bottom ul li span::after,
menu ul li span::after {
    position: absolute;
    content: "";
    background-image: url('../foto/svg/arrow-bottom-active.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 10px;
    height: 10px;
    display: block;
    right: 0;
    transition: 0.3s;
}

/* .m-header-bottom ul li:hover span::after,
menu ul li:hover span::after {
    background-image: url('../foto/svg/arrow-bottom-active.svg');
} */

menu ul li {
    /* height: 42px; */
    /* transition: 0.3s;
    overflow: hidden; */
}

/* menu ul li.active {
    height: auto;
    overflow: inherit;
} */

menu ul li.active span::after {
    transform: rotate(-180deg);
}

menu ul li.active ul li span::after {
    transform: rotate(0deg);
}

.m-header-bottom ul li:hover ul li span::after {
    transform: rotate(0deg);
}

menu ul li ul li span::after {
    transform: rotate(0deg);
}

.m-header-bottom ul li ul li:hover span::after {
    transform: rotate(-0deg);
}

menu ul li ul li.active span::after {
    transform: rotate(-180deg);
}

.m-header-bottom ul li a:hover,
menu ul li a:hover {
    color: #fff;
    background-color: #2B8C95;
    border-radius: 6px;
}

.m-header-bottom ul li .m-header-bottom-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 0;
    border: 1px solid #E7E7E7;
    display: none;
    z-index: 10;
    gap: 80px;
    padding: 20px 40px;
}

.m-header-bottom ul li .m-header-bottom-submenu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    transition: 0.5s;
    width: max-content;
    min-width: 210px;
    max-width: 250px;
    justify-content: flex-start;
}

.m-header-bottom ul li .m-header-bottom-submenu ul li {
    width: max-content;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
}

.m-header-bottom ul li .m-header-bottom-submenu ul li img {
    transition: 0.3s;
}

.m-header-bottom ul li .m-header-bottom-submenu ul li ul {
    padding-left: 40px;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.m-header-bottom ul li .m-header-bottom-submenu ul li.active ul {
    height: auto;
    opacity: 1;
    pointer-events: all;
}

.m-header-bottom ul li .m-header-bottom-submenu ul li:hover img {
    transform: rotate(180deg);
}

.m-header-bottom ul li .m-header-bottom-submenu ul li ul a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 5px 0;
}

.m-header-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    overflow: scroll;
}

.m-header-mobile.open {
    left: 0;
}

.m-header-mobile-wrapper {
    width: max-content;
    max-width: 80%;
    background-color: #fff;
    min-height: 100%;
    padding: 20px;
}

.m-header-mobile-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E7E7E7;
}

.m-header-mobile-header-logo {
    margin: 0 auto 20px auto;
    display: block;
}

.m-header-mobile-header form {
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: rgb(241, 241, 241);
    padding: 10px 14px;
    height: 34px;
    min-width: 260px;
    margin-bottom: 20px;
}

.m-header-mobile-header form input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}

.m-header-mobile-header form button {
    border: none;
    outline: none;
    background: transparent;
    margin-right: 0;
}

.m-header-mobile-header a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-header-mobile-body menu ul li span,
.m-header-mobile-body menu ul li a {
    color: #2B8C95;
    line-height: 32px;
    font-size: 16px;
}

/* News */
.m-news-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.m-news-tab-body-block {
    display: none;
}

.m-news-tab-body-block.active {
    display: block;
}

.m-news-tab {
    width: calc(33% - 25px);
}

.m-news-tab-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.m-news-tab-header button {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    border: none;
    outline: none;
    background-color: transparent;
    padding-right: 10px;
    border-right: 2px solid #CACACA;
    margin-right: 10px;
}


.m-news-tab-header button.active {
    color: #2B8C95;
}

.m-news-tab-header button:nth-child(2) {
    border-right: none;
    margin-right: 0px;
    padding-right: 0;
}

.m-news-tab-header a {
    margin-left: auto;
    color: #2B8C95;
    display: flex;
    align-items: center;
    gap: 10px;
}


.m-news-tab-item {
    display: inline-block;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D8D8D8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.m-news-tab-item:last-child {
    margin-bottom: 0;
}

.m-news-tab-item-info {
    z-index: 2;
}

.m-news-tab-item-info span {
    color: #9A9A9A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #9A9A9A;
    margin-bottom: 8px;
    display: inline-block;
}

.m-news-tab-item-info h2 {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: left;
    transition: 0.3s;
}

.m-news-tab-item-info h2:hover {
    color: #2B8C95;
}

.m-news-tab-item-info span:nth-child(2) {
    border-right: none;
}

.m-news-tab-item.isImage {
    height: 290px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
    border-radius: 12px;
}

.m-news-tab-item:last-child {
    border-bottom: none;
}

.m-news-tab-item.isImage span,
.m-news-tab-item.isImage h2 {
    color: #fff !important;
    border-color: #fff;
}

.m-news-tab-item.isImage::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 1px;
    left: 1px;
    /* background: linear-gradient(180.00deg, rgba(0, 113, 193, 0) 40.962%, rgba(60, 149, 157, 0.8) 100%); */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, #2B8C95 84%);
    border-radius: 12px;
}

.m-news-hsk-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.m-news-hsk-block a {
    display: inline-block;
    width: 100%;
    height: 140px;
    border-radius: 12px;
    background: rgb(241, 241, 241);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.m-news-hsk-block a:hover {
    transform: scale(1.01);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.m-news-hsk-block a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.m-news-countdown {
    width: 66%;
}

.m-news-countdown-banner {
    /* height: 160px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
    background: #2B8C95 url(../foto/uzor.png) no-repeat;
    border-radius: 12px;
    margin-bottom: 20px;
    background-size: cover; */
}

.m-news-countdown-banner-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 14px;
}

.m-news-countdown-banner-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.m-news-countdown-banner-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.m-news-countdown-banner-item h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0%;
    text-align: left;
}

.m-news-countdown-banner a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2B8C95;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    margin-top: 10px;
    background-color: #fff;
    transition: 0.3s;
}

.m-news-countdown-banner a:hover {
    transform: scale(1.07);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.m-news-countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.m-news-countdown-item {
    position: relative;
    height: 120px;
    background: rgba(60, 149, 157, 0.8);
    width: 33%;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.m-news-countdown-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 12px;
}

.m-news-countdown-item h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

.m-news-countdown-form {
    padding: 30px;
    background-color: #F1F1F1;
    border-radius: 12px;
}

.m-news-countdown-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.m-news-countdown-form-header h3 {
    color: #2B8C95;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
}

.m-news-countdown-form-header a {
    width: 120px;
    text-align: center;
    height: 36px;
    border-radius: 12px;
    background: #2B8C95;
    color: #fff;
    padding: 10px 16px;
    transition: 0.3s;
}

.m-news-countdown-form-header a:hover {
    transform: scale(1.07);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.m-news-countdown-form form {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.m-news-countdown-form form input,
.m-news-countdown-form form select {
    padding: 11px 20px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    width: 100%;
    border-radius: 12px;
    border: none;
    outline: none;
}

.m-news-countdown-form form input::placeholder {
    color: #000;
}

.m-news-countdown-form form button {
    height: 40px;
    padding: 0 18px;
    border-radius: 12px;
    background: #2B8C95;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    display: flex;
    align-items: center;
}

.m-news-countdown-form-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.m-news-countdown-form-item:hover p {
    color: #2B8C95;
}

.m-news-countdown-form-item p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    transition: 0.3s;
}

.m-news-countdown-form-item:last-child {
    margin-bottom: 0;
}

.m-link {
    margin-bottom: 70px;
}

.m-link-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}


.m-link-item {
    width: calc(25% - 15px);
    height: 90px;
    border-radius: 12px;
    background-color: #2B8C95;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.m-link-item:hover {
    transform: scale(1.04);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.m-link-item img {
    width: 90px;
    position: absolute;
    bottom: 0;
    right: 20px;
}

.m-link-item h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
}

.m-map {
    margin-bottom: 80px;
}

.m-map-title {
    position: relative;
}

.m-map-title::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #2B8C95;
    left: 0;
    bottom: -10px;
    width: 120px;
}

.m-map-title h2 {
    color: #2B8C95;
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.m-map-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.m-map-svg {
    min-width: calc(60% - 50px);
    max-width: calc(60% - 50px);
    height: auto;
}

.m-map-svg path {
    fill: rgba(0, 113, 193, 0.55) !important;
    transition: 0.3s;
}

.m-map-svg path:hover,
.m-map-svg path.active {
    fill: #2B8C95 !important;
}

.m-map-info {
    min-width: 40%;
    max-width: 40%;
    padding: 20px 30px;
    border-radius: 12px;
    background: rgb(241, 241, 241);
}

.m-map-info h3 {
    color: #2B8C95;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.m-map-info ul {
    margin-bottom: 2px;
}

.m-map-info-list-item {
    display: none;
}

.m-map-info-list-item.active {
    display: block;
}

.m-map-info ul li,
.m-map-info ul li a {
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}



.m-map-info a.m-map-info-link {
    padding: 12px 18px;
    display: table;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: #2B8C95;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 20px;
    margin-left: auto;
    transition: 0.3s;
}

.m-map-info a.m-map-info-link:hover {
    transform: scale(1.02);
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.m-useful {
    margin-bottom: 100px;
}

.m-useful-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.m-useful-links {
    width: 100%;
}

.m-useful-title {
    position: relative;
}

.m-useful-title::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #2B8C95;
    left: 0;
    bottom: -10px;
    width: 120px;
}

.m-useful-title h2 {
    color: #2B8C95;
    font-size: 34px;
    font-weight: 700;
    line-height: 34px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.m-useful-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-radius: 12px;
    background-color: #F1F1F1;
    height: 90px;
}

.m-useful-item-logo img {
    height: 100%;
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.m-useful-item-title {
    overflow: hidden;
}

.m-useful-item-title p {
    color: rgb(133, 133, 133);
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
}

.m-useful-item-title h4 {
    color: #2B8C95;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

.m-useful .owl-nav,
.m-useful .owl-nav.disabled {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
    position: absolute;
    top: 30%;

}

.m-useful .owl-dots {
    display: none !important;
}

.m-useful .owl-nav button {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    box-shadow: 0px 1px 7px 0px rgba(0, 0, 0, 0.12);
}

.m-useful .owl-nav button:hover span {
    color: #2B8C95;
}

.m-useful .owl-nav .owl-prev {
    margin-left: -18px;
}

.m-useful .owl-nav .owl-next {
    margin-right: -18px;
}

.m-useful .owl-nav button span {
    font-size: 30px;
    height: 42px;
    transition: 0.3s;
}

.m-useful-carousel {
    margin-bottom: 70px;
}

.m-useful-banner {
    position: relative;
    height: 300px;
    width: 100%;
    background: #3C959D;
    align-items: center;
    border-radius: 12px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    padding-right: 0;
    gap: 50px;
}

/* .m-useful-banner::after {
    position: absolute;
    content: '';
    background-image: url('../foto/m-useful-bg.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    height: 100%;
    width: 240px;
    right: 0;
    top: 0;
    bottom: 0;
} */

.m-useful-banner h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 10px;
}

.m-useful-banner p {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.m-useful-banner-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.m-useful-banner-link a img {
    width: 200px;
    height: auto;
}

footer.m-footer {
    background-color: #2B8C95;
}

.m-footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid #fff;
}

.m-footer-bottom {
    padding: 24px 0;
}

.m-footer-wrapper {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.m-footer-item-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.m-footer-item-logo-title {
    width: max-content;
}

.m-footer-item-logo-title h2 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.m-footer-item-logo-title h3 {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.m-footer-item-social ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.m-footer-item-social ul li a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.m-footer-item-social ul li a:hover {
    background-color: #2B8C95;
}

.m-footer-item p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.m-footer-item p:first-child {
    margin-bottom: 40px;
}

.m-footer-item-options li,
.m-footer-item-options li a {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.m-footer-item menu {
    width: 100%;
}

menu ul {
    width: 100%;
}

menu ul li span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;


}

menu ul li nav {
    /* display: none; */
    pointer-events: none;
    overflow: hidden;
    border: 1px solid #25B2D3;
    /* -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear; */
    padding: 0;
    height: 0;
    /* transition: 3s; */
    opacity: 0;
}

menu ul li nav li a,
menu ul li nav {
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: height 0.3s ease;
    /* -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear; */
}

menu ul li nav li a {
    height: max-content;
    opacity: 1;
    overflow: inherit;
    pointer-events: all;
}

menu ul li nav a,
menu ul li nav span {
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0%;
    display: block;
    text-align: left;
    color: #fff;
}

menu ul li nav span {
    display: flex !important;
}

menu ul li.active nav {
    /* display: block; */
    height: max-content;
    pointer-events: all;
    overflow: inherit;
    padding: 20px;
    height: auto;
    opacity: 1;
    transition: height 0.3s ease !important;
}

.m-footer-item menu ul li.active nav {
    padding: 10px;
}

.m-footer-item menu ul li.active nav a,
.m-footer-item menu ul li.active nav span {
    padding: 0px 10px;
}

.m-footer-item menu ul li.active nav span:hover {
    color: #fff;
    background-color: #2B8C95;
    border-radius: 6px;
}

menu ul li span,
menu ul li a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: left;
    color: #fff;
}

menu ul li nav ul li ul {
    opacity: 0;
    height: 0;
    /* display: none; */
    transition: all 0.5s linear;
    pointer-events: none;
    overflow: hidden;
}

menu ul li nav ul li.active ul {
    opacity: 1;
    height: max-content;
    pointer-events: all;
    overflow: inherit;
    padding-left: 20px;
}

menu ul li.active img {
    transform: rotate(180deg);
}

menu ul li.active ul li img {
    transform: rotate(0deg);
}

menu ul li ul li.active img {
    transform: rotate(180deg);
}

.m-footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.m-footer-bottom-wrapper p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

/* media */
@media (max-width:1200px) {}

@media (max-width:1100px) {
    .m-header-logo-title {
        display: none;
    }

    .m-news-wrapper {
        gap: 30px;
    }

    .m-news-tab-header button {
        font-size: 20px;
        padding-right: 10px;
        margin-right: 10px;
    }

    .m-news-countdown-banner {
        padding: 0 30px;
    }

    .m-news-countdown-banner-item {
        gap: 5px;
    }

    .m-news-countdown-banner-item h2 {
        font-size: 30px;
    }



    .m-useful-banner-link {
        flex-direction: column;
    }

}

@media (max-width:992px) {
    .m-news-wrapper {
        flex-direction: column-reverse;
        padding-top: 20px;
    }

    .m-news-countdown,
    .m-news-tab {
        width: 100%;
    }

    .m-useful-wrapper {
        flex-direction: column;
    }

    .m-useful-links,
    .m-useful-banner {
        width: 100%;
        padding: 20px 50px;
    }


    .m-footer-wrapper {
        flex-wrap: wrap;
    }

    .m-footer-item {
        width: 47%;
    }

    .m-header-action button.m-header-action-burger {
        display: block;
    }

    .m-link-item {
        height: 70px;
    }

    .m-link-item h3 {
        font-size: 20px;
    }

    .m-link-item img {
        width: 70px;
    }

    .m-useful-title h2,
    .m-useful-title h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .m-header-bottom,
    .m-header-action a,
    .m-header-form,
    .m-map {
        display: none !important;
    }

    .m-header-action button.m-header-action-special,
    .m-header-action button.m-header-action-lang,
    .m-header-action button.m-header-action-burger {
        height: 46px;
        margin-right: 10px;
    }

    .m-news-countdown-banner-item:nth-child(1) span {
        display: block;
    }

    .m-news-countdown-item h3 {
        text-align: center;
        width: 100%;
    }

    .m-useful-banner {
        flex-direction: column;
        height: auto;
    }

    .m-useful-banner-link {
        flex-direction: row;
    }

    .m-news-hsk-block {
        justify-content: center;
    }

    .m-news-hsk-block a {
        width: auto;
        height: 100px;
        padding: 20px;
    }
}

@media (max-width:768px) {
    .m-footer-item {
        width: max-content;
    }

    .m-news-countdown-banner {
        flex-direction: column;
        padding: 30px;
        height: auto;
    }

    .m-news-countdown-wrapper {
        flex-direction: column;
    }

    .m-news-countdown-item {
        width: 100%;
        min-height: 80px;
        height: auto;
    }

    .m-link-item {
        width: 48%;
    }

    .m-footer-bottom-wrapper {
        flex-direction: column;
    }

    .m-footer-bottom-wrapper p {
        text-align: center;
        font-size: 14px;
    }
}

@media (max-width:576px) {
    .m-link-item {
        width: 100%;
    }

    .m-news-countdown-form-header h3 {
        font-size: 20px;
    }

    .m-news-countdown-form {
        padding: 14px;
    }

    .m-news-countdown-form form {
        gap: 10px;
        flex-direction: column;
    }

    .m-news-countdown-form form button {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .m-footer-wrapper {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .m-footer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 80%;
    }

    .m-footer-item menu {
        width: 100%;
    }

    .m-useful-banner h2 {
        font-size: 38px;
        line-height: 40px;
    }

    .m-useful-banner p {
        font-size: 22px;
    }

    .m-useful-banner-link {
        flex-direction: column;
    }
}

@media (max-width:400px) {}