* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: var(--primary-text-color);
}

html {
    background: #F7F7F7;
}

:root {
    --primary-text-color: #1E1E1E;
    --main-color: #006CB4;
    --main-color-pale: #5BAFE7;
    --main-color-hover: #117DC5;
    --mb: 120px;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #3F3F3F;
    opacity: 0.6;
    z-index: 20;
    display: none;
}

.overlay.active {
    display: block;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

a {
    cursor: pointer;
}

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

.social {
    display: flex;
    gap: 20px;
}

.social__item {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition-duration: .2s;
}

.social__item.social__item_wa {
    background-image: url('../image/wa-default.svg');
}

.social__item.social__item_viber {
    background-image: url('../image/viber-default.svg');
}

.social__item.social__item_telegram {
    background-image: url('../image/telegram-default.svg');
}

.social.social_w .social__item.social__item_wa {
    background-image: url('../image/wa-white.svg');
}

.social.social_w .social__item.social__item_viber {
    background-image: url('../image/viber-white.svg');
}

.social.social_w .social__item.social__item_telegram {
    background-image: url('../image/telegram-white.svg');
}

.social.social_b .social__item {
    width: 35px;
    height: 35px;
    background-size: 18px;
    border-radius: 50%;
    background-color: var(--main-color-pale);
}

.social.social_b .social__item.social__item_wa {
    background-image: url('../image/wa-white.svg');
}

.social.social_b .social__item.social__item_viber {
    background-image: url('../image/viber-white.svg');
}

.social.social_b .social__item.social__item_telegram {
    background-image: url('../image/telegram-white.svg');
}

.social.social_b .social__item:hover {
    background-color: var(--main-color-hover);
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: var(--main-color);
    border-radius: 5px;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    transition-duration: .2s;
}

.btn-fill:hover {
    background-color: var(--main-color-hover);
}

.btn-fill span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    transition-duration: .2s;
}

.btn-light span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.btn-light:hover {
    color: white !important;
    background-color: var(--main-color);
}

.block-header {
    display: flex;
    margin: 0 0 70px 0;
}

.block-small-title {
    width: calc(100% - 850px);
    color: #979797;
    font-size: 14px;
    font-weight: 400;
}

.block-big-title {
    width: 850px;
    font-size: 52px;
    font-weight: 600;
}

.block-big-title b {
    font-size: inherit;
    color: var(--main-color);
    font-weight: inherit;
}

.block-big-title_wide {
    width: 100%;
}

.block-big-title_center {
    text-align: center;
}

.field {
    width: 100%;
    position: relative;
}

.field span {
    display: none;
    font-size: 12px;
    color: red;
    position: absolute;
    left: 0;
    bottom: -16px;
}

.field.error span {
    display: block;
}

.field input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #F7F7F7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    border: none;
    transition-duration: .2s;
}

.field.error input,
.field.error input::placeholder {
    color: red;
}

.field input:hover,
.field input:active,
.field input:focus {
    background: #ebebeb;
}

.field input::placeholder {
    color: #979797;
}

.field textarea {
    resize: none;
    width: 100%;
    height: 130px;
    border-radius: 5px;
    background: #F7F7F7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    border: none;
}

.field textarea:hover,
.field textarea:active,
.field textarea:focus {
    background: #ebebeb;
}

.field textarea::placeholder {
    color: #979797;
}

.policy {
    margin: 20px 0 0 0;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.policy a {
    font-size: inherit;
    font-weight: inherit;
    text-decoration-line: underline;
}

.policy a:hover {
    text-decoration: none;
}

.burger {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    transition-duration: .2s;
}

.burger span {
    width: 100%;
    height: 2px;
    transition-duration: .2s;
    background-color: black;
}

.burger.burger_white span {
    background-color: white;
}

.burger span:nth-child(2) {
    width: 50%;
}

.burger:hover span:nth-child(2) {
    width: 100%;
}

.default-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.default-dots button {
    background-color: #D1D1D1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition-duration: .2s;
}

.default-dots button.active {
    background-color: var(--main-color);
    cursor: default;
}

.default-dots button:not(.active):hover {
    background-color: var(--main-color-pale);
}

.default-dots.disabled {
    display: none;
}

.default-nav button {
    border-radius: 50%;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    border: none;
    background-image: url('../image/arrow-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    transition-duration: .2s;
}

.default-nav button:hover {
    background-color: var(--main-color-hover);
}

.default-nav button.owl-prev {
    transform: rotate(180deg);
}

.default-nav button span {
    display: none;
}

.default-nav.disabled {
    display: none;
}

.table table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.table td {
    padding: 15px;
    border: 1px solid #D1D1D1;
}

.table thead td {
    background-color: var(--main-color);
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.table tbody td {
    font-size: 16px;
    font-weight: 500;
}

.table tbody button {
    font-size: inherit;
    font-weight: inherit;
    color: var(--main-color);
    text-decoration: underline;
    transition-duration: .2s;
}

.table tbody button:hover {
    text-decoration: none;
}

.text p {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 15px 0;
}

.text h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0 40px 0;
}

.text h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0 30px 0;
}

.text h4 {
    font-size: 26px;
    font-weight: 800;
    margin: 5px 0 20px 0;
}

.text b {
    font-weight: 500;
    color: var(--main-color);
}

.text a {
    text-decoration: underline;
    font-weight: inherit;
    color: var(--main-color);
}

.text ul {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.text ul li {
    padding: 0 0 0 18px;
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

.text ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-radius: 50%;
    background-color: var(--main-color);
    left: 0;
    top: 7px;
}

.text ol {
    margin: 0 0 15px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 0 0 18px;
}

.text ol li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    list-style-type: decimal;
}

.default-close {
    width: 38px;
    height: 38px;
    background-color: var(--main-color);
    border-radius: 50%;
    background-image: url('../image/close.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px;
    transition-duration: .2s;
}

.default-close:hover {
    background-color: var(--main-color-hover);
}

.owl-nav.disabled {
    display: none;
}

.owl-dots.disabled {
    display: none;
}

.tooltip {
    padding: 20px;
    background: #f7f7f77d;
    border: 1px solid #ECEBEB;
    border-radius: 5px;
    margin: 0 0 40px 0;
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

.tooltip.tooltip_no-mb {
    margin: 0;
}

.tooltip img {
    width: 32px;
}

.tooltip p {
    font-size: 12px;
    font-weight: 400;
}

.tooltip p b {
    font-size: 12px;
    font-weight: 700;
}