* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: var(--first-family);
    font-weight: 400;
    text-decoration: none;
    color: var(--main-color-3);
}

:root {
    --first-family: 'Noto Sans', sans-serif;
    --second-family: 'FoglihtenNo06', serif;

    --section-offset: 160px;
    --header-height: 0px;
    --container: 1400px;
    --offset: calc((100dvi - var(--container)) / 2);

    --main-color-1: #0FA2B5;
    --main-color-2: #0d90a1;
    --main-color-3: #141E37;
    --border-color-1: #D1DFEF;

    --size-xs: 30px;
    --size-s: 40px;
    --size-m: 50px;
    --size-l: 60px;
    --size-xl: 70px;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-thumb {
    background: #9e9e9e;
    border-radius: 5px;
}

*::-webkit-scrollbar-track {
    background: #e1e1e1;
    border-radius: 5px;
    margin: 10px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

a {
    cursor: pointer;
}

button {
    border: none;
    background-color: unset;
    cursor: pointer;
}

.overlay {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 100;
    transition-duration: .2s;
    opacity: 0;
    visibility: hidden;
}

.overlay.overlay_active {
    opacity: 1;
    visibility: visible;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 0 0;
    gap: 20px;
}

.slider-button-circle {
    height: 60px;
    width: 60px;
    background-color: #fff7f2;
    background-image: url('../image/arrow-left.svg');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition-duration: .1s;
    border-radius: 50%;
}

.slider-button-circle:hover {
    background-color: #b8cddb;
}

.slider-button-circle.slider-button-circle_next {
    transform: rotate(180deg);
}

.slider-button-circle.swiper-button-disabled {
    opacity: .5;
    user-select: none;
    pointer-events: none;
    cursor: default;
}

.breadcrumbs {
    margin: 30px 0;
}

.breadcrumbs__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumbs__item {
    font-weight: 400;
    font-size: 14px;
}

a.breadcrumbs__item {
    color: #858585;
    position: relative;
}

a.breadcrumbs__item:after {
    color: #858585;
    content: "/";
    margin: 0 0 0 5px;
}

a.breadcrumbs__item:hover {
    color: var(--main-color-3);
}

.page-header {
    margin: 0 0 60px 0;
}

.page-header__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-family: var(--second-family);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 70px;
}

.section {
    margin-bottom: var(--section-offset);
}

.section.section_no-mb {
    margin-bottom: 0;
}

.section.section_pt {
    padding-top: var(--section-offset);
}

.section.section_pb {
    padding-bottom: var(--section-offset);
}

.section__header {
    margin: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section__header.section__header_center {
    align-items: center;
}

.section__header.section__header_no-mb {
    margin-bottom: 0;
}

.section__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.section__title {
    font-family: var(--second-family);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 60px;
}

.section__title.section__title_center {
    text-align: center;
}

.section__title.section__title_white {
    color: white;
}

[data-tab-content] {
    display: none;
}

.preloader {
    position: relative;
    overflow: hidden;
}

.preloader:not(.preloader_universal) {
    min-height: calc(128px * 3);
}

.preloader:after {
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background-image: url(../image/preloader.svg);
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, .5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 5;
}

.preloader:not(.preloader_universal):after {
    background-size: 32px 32px;
    z-index: 5;
    background-position: center 64px;
}

.preloader.preloader_universal:after {
    background-size: 20px 20px;
    background-position: center;
}

.message {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 20px;
    border-radius: 3px;
}

.message.message_dark {
    background: var(--dark-color-1);
    color: #ffffff;
}

.message.message_light {
    background: #f7f7f7;
    color: var(--dark-color-1);
}

.message.message_success {
    background: #e8f7ef;
    color: #1e7f4f;
    border: 1px solid #b7e5cf;
}

.message.message_warning {
    background: #fff7e6;
    color: #9a6700;
    border: 1px solid #ffe1a8;
}

.message.message_danger {
    background: #fdecea;
    color: #b42318;
    border: 1px solid #f5b7b1;
}