@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Italic.woff2") format("woff2");
    font-weight: normal;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-BoldItalic.woff2") format("woff2");
    font-weight: bold;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-ExtraLight.woff2") format("woff2");
    font-weight: 200;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-MediumItalic.woff2") format("woff2");
    font-weight: 500;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Bold.woff2") format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-ExtraLightItalic.woff2") format("woff2");
    font-weight: 200;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-SemiBoldItalic.woff2") format("woff2");
    font-weight: 600;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-ThinItalic.woff2") format("woff2");
    font-weight: 100;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-LightItalic.woff2") format("woff2");
    font-weight: 300;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Thin.woff2") format("woff2");
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../font/IBMPlexSans-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh
}

body.scroll-lock {
    overflow: hidden
}

main {
    background-color: #f6f5f5;
    flex-grow: 1
}

h1, h2 {
    color: #145397;
    font-size: 3.75rem;
    font-weight: 300
}

h1 {
    margin-top: 100px
}

h3 {
    font-size: 2.125rem;
    font-weight: 300
}

p, address, a, span, dl {
    font-size: 1.25rem
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

body, button, textarea {
    font-family: IBM Plex Sans, sans-serif
}

main {
    padding-left: 100px
}

.container {
    width: min(1200px, 95%);
    margin: 0 auto
}

.pagination {
    text-align: center
}

.pagination a {
    color: #34bfbd;
    margin: 0 5px
}

.pagination a:hover {
    text-decoration: underline
}

.pagination span {
    color: #4b707e;
    margin: 0 5px
}

.bold-font {
    font-weight: 500
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100vh;
    background-color: #145397;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all .5s ease
}

.main-header.hidden {
    transform: translateY(-100%)
}

.main-header > div {
    width: 100%;
    height: 100px;
    padding: 0 10px
}

.nav {
    flex-grow: 1;
    width: 100%
}

.logo-icon {
    width: 100%;
    height: 100%;
    color: #fff
}

.nav-icon {
    width: 40px;
    height: 40px;
    fill: #fff
}

.menu-item {
    position: relative;
    color: #60b6e6;
    transition: all .5s ease
}

.menu-item:hover {
    color: #fafafa
}

.menu a, .menu span, .menu button, .no-popup a {
    font-size: 1rem;
    font-weight: 500;
    color: #60b6e6;
    background-color: #145397;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none
}

.menu a:hover, .menu span:hover, .menu button:hover, .no-popup a:hover {
    color: #fafafa
}

.no-popup a {
    padding: 10px
}

.menu span {
    cursor: default
}

.submenu a, .submenu span {
    flex-direction: row;
    justify-content: start;
    white-space: nowrap;
    gap: 20px;
    padding: 20px
}

.submenu a:has(svg), .submenu span:has(svg) {
    padding: 10px 20px
}

.submenu {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 10;
    transition: all .5s ease;
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
    border-left: 1px solid #60b6e6
}

.submenu .submenu {
    left: 100%
}

.menu-item:hover > .submenu, .menu-item:focus-within > .submenu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.btn {
    background-color: rgba(0, 0, 0, 0);
    padding: 16px 24px;
    border-radius: 9999px;
    font-size: 1.5rem;
    transition: all .5s ease;
    cursor: pointer
}

.btn-light {
    margin: 0 auto;
    display: block;
    color: #34bfbd;
    border: 1px solid #cfd3d7;
    background-color: #fafafa
}

.btn-light:hover {
    color: #4b707e;
    background-color: rgba(52, 191, 189, .1)
}

.lang-btn {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #60b6e6;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 500
}

.lang-btn:hover {
    color: #fafafa
}

.lang-mobile {
    display: none
}

.contact-us {
    font-weight: normal;
    position: fixed;
    color: #fafafa;
    background-color: #145397;
    border: 1px solid #fafafa;
    top: 40px;
    right: 40px;
    z-index: 100
}

.contact-us:hover {
    background-color: #2987c4
}

.hamburger-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    border-radius: 9999px;
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    margin-right: 25px
}

.hamburger-btn span {
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    transition: all .5s ease;
    display: block;
    margin: 0 auto;
    position: relative
}

.hamburger-btn span::before, .hamburger-btn span::after {
    content: "";
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute
}

.hamburger-btn span::before {
    transform: translate(-50%, -10px)
}

.hamburger-btn span::after {
    transform: translate(-50%, 10px)
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, .8);
    z-index: 15;
    opacity: 0;
    transform: translateY(-100%);
    transition: all .5s ease;
    display: none
}

.overlay.active {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.mobile-nav {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #145397;
    transform: translateY(-100%);
    transition: all .5s ease;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    display: none
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    display: block
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #145397;
    z-index: 7;
    transform: translateX(100%)
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
    min-height: 100%
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center
}

.mobile-menu-item {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fafafa;
    transition: all .5s ease;
    flex-grow: 0;
    padding-left: 10px
}

.mobile-menu-item > div, .mobile-menu-item > a {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    height: 100%
}

.mobile-menu-item button {
    color: inherit
}

.submenu-back-trigger span:last-of-type {
    text-align: end;
    padding-right: 16px
}

.mobile-menu-item-text {
    flex: 1
}

.has-submenu, .back-item {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.back-item {
    margin-bottom: 16px
}

.submenu-enter-icon, .submenu-exit-icon {
    position: relative
}

.submenu-enter-icon::after, .submenu-exit-icon::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #fafafa;
    border-bottom: 1px solid #fafafa;
    transform: rotate(-45deg);
    position: absolute;
    left: 14px
}

.submenu-exit-icon::after {
    transform: rotate(135deg);
    left: 18px
}

.submenu-enter-icon, .submenu-exit-icon {
    border-radius: 9999px;
    height: 44px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

footer {
    padding: 80px 0 80px 100px;
    background-color: #145397
}

.footer-contacts, .footer-nav {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 100px;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #2987c4;
    font-size: 1.5rem;
    line-height: 160%;
    color: #a8ddfb
}

.footer-contacts div, .footer-nav div {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
    gap: 30px
}

.footer-contacts div:last-of-type, .footer-nav div:last-of-type {
    gap: 20px;
    color: #fafafa
}

.footer-contacts a, .footer-nav a {
    font-size: 1.25rem;
    transition: all .5s ease
}

.footer-contacts a:hover, .footer-nav a:hover {
    text-decoration: underline
}

.footer-nav {
    padding-bottom: 0;
    border-bottom: none
}

.footer-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #fafafa
}

.footer-menu li {
    padding: 0 20px;
    border-right: 1px solid #2987c4
}

.footer-menu li:last-child {
    border-right: none
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px
}

.social-links li:hover {
    color: #fafafa
}

.footer-copyrights {
    font-size: 1.25rem;
    text-align: center;
    line-height: 160%;
    color: #a8ddfb
}

.footer-copyrights a:hover {
    text-decoration: underline
}

.read-more {
    text-align: end;
    font-size: 1.25rem;
    color: #34bfbd
}

.quality-mark {
    padding: 18px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    background-color: rgba(52, 191, 189, .1);
    border-radius: 9999px
}

.quality-mark .link {
    color: #34bfbd
}

.quality-mark .hero-icon {
    width: 40px;
    height: 40px;
    color: #34bfbd
}

.quality-mark p {
    color: #6a7884;
    line-height: 160%
}

.image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    border: 1px solid #cfd3d7
}

.image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover
}

.footer-low {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

#cookie-banner {
    position: fixed;
    width: calc(100% - 100px);
    z-index: 100;
    bottom: 0;
    left: 100px;
    background-color: #f6f5f5;
    padding: 10px 40px;
    border-top: 1px solid #cfd3d7
}

#cookie-banner a {
    text-decoration: underline;
    font-size: inherit
}

#cookie-banner .cookie-header {
    text-align: center;
    color: #3e4e57;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: unset;
    margin: 0 auto 10px
}

#cookie-banner p {
    color: #6a7884;
    line-height: 160%;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1rem
}

#cookie-banner .cookie-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

#cookie-banner .cookie-buttons button {
    padding: 8px 16px;
    border: 1px solid #cfd3d7;
    color: #34bfbd;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: #fafafa;
    cursor: pointer;
    transition: all .5s ease
}

#cookie-banner .cookie-buttons button:first-of-type {
    color: #fafafa;
    background-color: #2987c4
}

#cookie-banner .cookie-buttons button:hover {
    color: #fafafa;
    background-color: #145397;
    border-color: #145397
}

#language-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

#language-form select, #language-form select::picker(select) {
    appearance: base-select
}

#language-form select {
    background-color: rgba(0, 0, 0, 0);
    color: #fafafa;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 160%;
    height: 64px;
    border: 1px solid #fafafa;
    border-radius: 9999px;
    padding: 16px 48px;
    cursor: pointer;
    transition: all .5s ease
}

#language-form select:hover {
    background-color: #2987c4
}

#language-form select::picker(select) {
    color: #34bfbd;
    border-radius: 20px;
    border: 1px solid #cfd3d7;
    transition: all .5s ease;
    font-weight: normal
}

#language-form select::picker(select):hover {
    background-color: #edf5f9
}

#language-form select:open::picker-icon {
    transform: rotate(180deg)
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden
}

@media (max-width: 1279px) {
    h1 {
        font-size: 3.125rem;
        margin-top: 50px
    }

    h2 {
        font-size: 3.125rem
    }

    footer {
        padding: 40px 0 40px 100px
    }

    .footer-menu {
        flex-direction: column
    }

    .footer-menu li {
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid #2987c4
    }

    .footer-menu li:last-child {
        border-bottom: none
    }

    .footer-contacts {
        margin-bottom: 30px;
        padding-bottom: 30px
    }

    .footer-nav {
        margin-bottom: 20px
    }

    .footer-nav-menu {
        align-items: center
    }

    .social-links {
        justify-content: center
    }
}

@media (max-width: 799px) {
    h1 {
        margin-top: 30px
    }

    .lang-btn {
        display: none
    }

    .lang-mobile {
        display: flex
    }

    .main-header {
        width: 100vw;
        height: 100px;
        flex-direction: row
    }

    .main-header > div {
        width: 74px;
        height: 100%;
        padding: 0 0 0 25px
    }

    .nav {
        display: none
    }

    .hamburger-btn {
        display: block
    }

    main, footer {
        padding-left: 0
    }

    main {
        padding-top: 100px
    }

    footer {
        padding-bottom: 80px
    }

    footer a {
        text-decoration: underline
    }

    .footer-menu {
        flex-direction: column
    }

    .footer-menu li {
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid #2987c4
    }

    .footer-menu li:last-child {
        border-bottom: none
    }

    .social-links {
        flex-wrap: wrap
    }

    .footer-contacts {
        gap: 50px
    }

    .footer-contacts div {
        gap: 20px
    }

    .footer-contacts div:last-of-type {
        gap: 10px
    }

    #cookie-banner {
        left: 0;
        padding: 10px;
        width: 100%
    }

    .contact-us {
        top: unset;
        bottom: 5px;
        right: 5px;
        padding: 12px 18px;
        font-size: 1.25rem
    }
}

@media (max-width: 639px) {
    .footer-contacts, .footer-nav {
        margin: 0 auto;
        width: min(400px, 95%);
        grid-template-columns:unset;
        grid-template-rows:auto;
        border-bottom: none;
        padding-bottom: 30px;
        gap: 30px
    }

    .footer-contacts div, .footer-nav div {
        align-items: center;
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .footer-low {
        align-items: center;
        flex-direction: column;
        gap: 20px
    }

    .footer-contacts {
        gap: 20px
    }

    .footer-contacts div {
        gap: 10px
    }

    .footer-contacts div:last-of-type {
        gap: 10px
    }

    .footer-contacts a {
        text-decoration: underline
    }
}

@media (max-width: 479px) {
    h1, h2 {
        font-size: 2.75rem
    }
}

@media (max-width: 399px) {
    h1, h2 {
        font-size: 2.5rem
    }
}
