@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*,
*::before,
*::after {
  box-sizing: inherit;
}
*, html, body {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
    background-color: #FFF;
}
html,
body {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #041D2C;
    letter-spacing: .05rem;
    font-size: min(calc(14px + (16 - 14) * (100vw - 380px)/(1920 - 380)), 16px);
    width: 100%;
}
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
.main-container {
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}
.content-container {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}
a {
    text-decoration: none;
    color: #fff;
}
a span {
    position: relative;
}
a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    left: 50%;
    bottom: -3px;
    background: #fff;
    transition: .3s;
}
a:hover span::after {
    width: 100%;
    left: 0;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}i
h1 {
    font-weight: 700;
    font-size: min(calc(22px + (48 - 22) * (100vw - 380px)/(1920 - 380)), 48px);
}
h2 {
    font-weight: 700;
    font-size: min(calc(20px + (38 - 20) * (100vw - 380px)/(1920 - 380)), 38px);
}
h3 {
    font-weight: 700;
    font-size: min(calc(18px + (32 - 18) * (100vw - 380px)/(1920 - 380)), 32px);
}
h4 {
    font-weight: 700;
    font-size: min(calc(16px + (28 - 16) * (100vw - 380px)/(1920 - 380)), 28px);
}
h5 {
    font-weight: 700;
    font-size: min(calc(15px + (24 - 15) * (100vw - 380px)/(1920 - 380)), 24px);
}
h6 {
    font-weight: 600;
    font-size: min(calc(14px + (20 - 14) * (100vw - 380px)/(1920 - 380)), 20px);
}
img {
    max-width: 100%;
    max-height: 100%;
    border-style: none;
}
a.link {
    text-decoration: none;
    color: #003A90;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}
a.link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -3px;
    background: #003A90;
    transition: .3s;
}
a.link:hover::after {
    width: 0;
    left: 50%;
}
select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  margin: 0;      
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select:focus {
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  outline: 0;
}


select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.error {
    color: #F93939;
}
.checkbox {
    cursor: pointer;
    -webkit-appearance: none;
    display: inline-block;
    position: relative;
    outline: none;
    margin-top: 0;
}

.checkbox::before {
    content: "";
    background: transparent;
    border-radius: 4px;
    border: 2px solid #D0D0D0;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.checkbox:checked::before{
    background-color: #003A90;
    border-color: #003A90;
    box-shadow: inset 0 0 0 2px #fff;
}

.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    flex: 0 0 auto;
}
.icon svg {
    width: 100%;
    height: 100%;
}
.left-decor {
    border-left: 5px solid #EB9D05;
    padding-left: 1rem;
}

.mt-15 {margin-top: 1.5rem}

/* buttons */
.btn {
    padding: .75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05rem;
}
.btn-primary {
    background: #003A90;
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.btn-primary::after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: linear-gradient(90deg, rgba(0, 58, 144, 1) 0%, rgba(235, 157, 5, 1) 100%);
    transition: opacity .3s ease-in-out;
    z-index: -1;
    border-radius: 4px;
    padding: .75rem 1.5rem;
}
.btn-primary:hover::after {
  opacity: 1;
}

input[type='submit'].btn-primary:hover {
    background: linear-gradient(90deg, rgba(0, 58, 144, 1) 0%, rgba(235, 157, 5, 1) 100%);
    border: 2px solid #003A90;
}

.btn-primary-white {
    background-color: #fff;
    color: #003A90;
}
.btn-primary-white::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(235, 157, 5, 1) 100%);
}
.btn-secondary {
    color: #003A90;
    text-decoration: underline;
}
.btn-secondary:hover {
    color: #041D2C;
}
.btn-grey {
    background-color: #D0D0D0;
    color: #4D5A62;
}
.btn-grey:hover {
    border-color: #D0D0D0;
    background: linear-gradient(90deg, rgba(208, 208, 208, 1) 0%, rgba(235, 157, 5, 1) 100%);
}
.btn-yellow {
    background-color: #EB9D05;
    color: #fff;
}
.btn-yellow:hover {
    border-color: #EB9D05;
    background: linear-gradient(90deg, rgba(208, 208, 208, 1) 0%, rgba(235, 157, 5, 1) 100%);
}
.btn-reset {
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}
.main-body__wrapper {
    background-color: #fff;
    border-radius: 1rem 1rem 0 0;
    top: -5rem;
    position: relative;
    margin-bottom: -5rem;
}
.home-template {
    margin: 2.2rem 0 6.25rem 0;
}
.logo {
    display: inline-block;
    width: 10rem;
}

.blackouted {
    position: relative;
}
.blackouted::after {
    content: '';
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
}

/* search */
.search {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all .2s;
}

.search--active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.search__wrapper {
    min-height: calc(410px - 9.2rem);
    margin-top: 9.2rem;
    padding: 4.3rem 0;
    border-top: 3px solid #EB9D05;
    background-color: #F4F4F4;
}
.search__container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5rem;
}
.search__form {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search__form > input {
    width: 100%;
    padding: 0 0 8px 2.75rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid #003A90;
    outline: none;
    color: #4D5A62;
    font-size: calc(16px + (24 - 16) * (100vw - 380px)/(1920 - 380));
    background: transparent url('data:image/svg+xml,<svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><g clip-path="url(%23clip0_1660_709)"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.25 9.375C2.25 5.43997 5.43997 2.25 9.375 2.25C13.31 2.25 16.5 5.43997 16.5 9.375C16.5 13.31 13.31 16.5 9.375 16.5C5.43997 16.5 2.25 13.31 2.25 9.375ZM9.375 0C4.19733 0 0 4.19733 0 9.375C0 14.5527 4.19733 18.75 9.375 18.75C11.5584 18.75 13.5675 18.0036 15.161 16.752L22.0795 23.6705C22.5188 24.1098 23.2312 24.1098 23.6705 23.6705C24.1098 23.2312 24.1098 22.5188 23.6705 22.0795L16.752 15.161C18.0036 13.5675 18.75 11.5584 18.75 9.375C18.75 4.19733 14.5527 0 9.375 0Z" fill="%234D5A62"/></g><defs><clipPath id="clip0_1660_709"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>') no-repeat left 0px;
}
.search__form > input::-ms-input-placeholder {
    color: #4D5A62;
}
.search__form > input::-ms-input-placeholder {
    color: #4D5A62;
}
.search__form > input::placeholder {
    color: #4D5A62;
}
.search__close {
    align-self: flex-end;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    color: #003A90;
}
.search__close:hover {
    opacity: .8;
}

.wpcf7-list-item {
    margin: 0;
}
.wpcf7-spinner {
    display: none;
}
.form__body {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form__body-row {
    display: flex;
    gap: 1.5rem;
}
.form__body-item {
    flex: 1;
}
.form__hidden {
    display: none;
}
.form__input,
.form__textarea,
.form__select {
    border-radius: .5rem;
    border: 2px solid #D0D0D0;
    padding: .75rem 1.5rem;
    color: #4D5A62;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
    font-family: 'Inter', sans-serif;
}
.form__input-full {
    grid-column: 1 / 3;
}
.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
    color: #4D5A62;
}
.form__input::-ms-input-placeholder,
.form__textarea::-ms-input-placeholder {
    color: #4D5A62;
}
.form__input::placeholder,
.form__textarea::placeholder {
    color: #4D5A62;
}
.form__policy {
    color: #041D2C;
    a {
        color: #003A90;
        margin-left: .3em;
    }
    a span::after {
        background: #003A90;
    }
}
.form__btn {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.form__policy .modal_show {
    margin-left: .3rem;
}
.form__policy > label > input {
    margin-right: .3rem;
}
.form__fileinput {
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-radius: 4px;
    border: 1px solid #EAEAEA;
}
.form__fileinput-text {
    font-size: 14px;
    font-weight: 500;
    color: #4D5A62;
    padding: .875rem 1.25rem;
}
.form__fileinput > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}
.bootstrap-touchspin {
    display: flex;
    align-items: center;
    font-size: 22px;
}
.bootstrap-touchspin input {
    color: #041D2C;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #D0D0D0;
    text-align: center;
    width: 35px;
    height: 38px;
}
.bootstrap-touchspin button {
    padding: 0;
    color: #4D5A62;
    background-color: #fff;
    border-color: #EB9D05;
    width: 26px;
    height: 32px;
}
.bootstrap-touchspin button:hover {
    background-color: transparent;
}
.input-group-prepend button {
    border-radius: 8px 0 0 8px;
    border-right: 0;
}
.input-group-append button {
    border-radius: 0 8px 8px 0;
    border-left: 0;
}

#exchange {display: none;}

/* header */
.header {
    position: sticky;
    margin: 0 auto;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
}
.customize-support .header {
    top: 30px;
}
.header__main-container {
    background-color: #fff;    
    height: 5.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__controls-buttons {
    background-color: #F4F4F4;
    border-radius: 0 0 4px 4px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: .625rem 1.5rem;
}
.header__controls-buttons .icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: .2s;
}
.header__controls-buttons .icon:hover {
    opacity: .8;
}
.header__container {
    display: flex;
    justify-content: space-between;
}
.header__nav {
    margin-left: auto;
    display: none;
}
.header__logo {
    width: 9.5rem;
}
.header__nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
}
.header__nav-menu-item > a {
    color: #003A90;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2.25rem 0 3rem 0;
}
.header__nav-menu-item > a span::after {
    background: #003A90;
}
.header__controls {
    margin-left: 5rem;
    margin-top: 1.25rem;
    position: relative;
}

.header__menu-dropdown {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all .2s;
}
.header__nav-menu-item--active .header__menu-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.header__nav-menu-item:hover > a span::after {
    width: 100%;
    left: 0;
}
.header__menu-dropdown--active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.header__menu-dropdown .header__menu-dropdown-column:nth-of-type(4) {
    display: none;
}
.header__menu-dropdown-wrapper {
    min-height: calc(410px - 9.2rem);
    margin-top: 9.2rem;
    padding: 4.3rem 0;
    border-top: 3px solid #EB9D05;
    background-color: #F4F4F4;
}
.header__menu-dropdown-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.header__menu-dropdown-column {
    padding-left: 2.5rem;
    margin-left: 2.5rem;
    border-left: 1px solid #EAEAEA;
}
.header__menu-dropdown-container .header__menu-dropdown-column:first-child {
    border-color: transparent;
    padding-left: 0;
    margin-left: 0;
}
.header__menu-dropdown-title {
    color: #003A90;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: block;
    font-size: min(calc(18px + (32 - 18) * (100vw - 380px) / (1920 - 380)), 32px);
}
.header__menu-dropdown-text {
    color: #4D5A62;
    font-size: min(calc(14px + (18 - 14) * (100vw - 380px) / (1920 - 380)), 18px);   
}
.header__menu-dropdown-column-2 figure {
    border-radius: 1rem;
    overflow: hidden;
}
.header__menu-dropdown-column-3 {
    font-size: 1rem
}
.header__menu-dropdown-column-3 > p + p {
    margin-top: 1.5rem;
}
.header__menu-dropdown-column-4 {
    h1,h2,h3,h4,h5,h6 {
        text-transform: uppercase;
        color: #003A90;
        margin: .75rem 0;
    }
    strong {
        text-transform: uppercase;
        color: #003A90;
        margin: .75rem 0;
        font-weight: 700;
        font-size: min(calc(15px + (24 - 15) * (100vw - 380px) / (1920 - 380)), 24px);
        display: block;
    }
    p {
        color: #4D5A62;
        font-size: 1rem;
        font-weight: 400;
    }
    p + p {
        margin-top: .75rem;
    }
    a {
        color: #003A90;
        font-weight: 700;
        display: inline-block;
        font-size: 1rem;
        text-transform: uppercase;
    }
    a:hover {
        text-decoration: underline;
    }
}
.header__menu-dropdown-column .contacts__phone {
    font-weight: 500;
    color: #4D5A62;
    margin-top: 1rem;
}
.header__menu-dropdown-column .contacts__link span::after {
    background-color: #003A90;
}
.header__menu-dropdown-column .contacts__contacts,
.header__menu-dropdown-column .contacts__link {
    color: #003A90;
    font-size: 1rem;
    font-weight: 700;
}
.header__menu-dropdown-column .contacts__phones-list {
    margin: 2.5rem 0;
}
.header__menu-dropdown-column .contacts__socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header__menu-dropdown-column .contacts__social {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}
.header__menu-dropdown-column.prices__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.header__menu-dropdown-column .prices__item {
    border: none;
    padding: 0;
    border-radius: 0;
    gap: 1rem;
}
.header__menu-dropdown-link {
    margin-top: 1.5rem;
}
.header__menu-dropdown-link .btn {
    padding: 0;
    text-decoration: none;
}
.header__menu-dropdown-link a > span::after {
    background-color: #041D2C;
}
.header__menu-dropdown-children {
    list-style: none;
}
.header__menu-dropdown-children li > a {
    color: #003A90;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    padding: .625rem 1.25rem;
    display: block;
    border-radius: 3px;
}
.header__menu-dropdown-children li > a:hover {
    font-weight: 700;
    background-color: #EAEAEA;
}

.section-header {
    position: relative;
    height: 23rem;
}
.section-header__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.section-header__background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.section-header__header {
    border-bottom: 1px solid #EAEAEA;
    padding: 3.125rem 0 2.25rem;
}
.section-header__heading {
    color: #003A90;
    text-transform: uppercase;
    max-width: 968px;
}
.section-header__text {
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: min(calc(16px + (18 - 16) * (100vw - 380px)/(1920 - 380)), 18px);
    color: #4D5A62;
    max-width: 968px;
}
.section-header__breadcrumbs {
    margin-bottom: 2rem;
}
.section-header__breadcrumbs ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
    color: #4D5A62;
    font-size: min(calc(10px + (14 - 10) * (100vw - 380px)/(1920 - 380)), 14px);
}
.section-header__breadcrumbs a {
    color: #4D5A62;
}
.section-header__breadcrumbs a span:after {
    background: #4D5A62;
}
.section-header__breadcrumbs li.active {
    font-weight: 700;
}
.section-header__registration {
    margin-top: 2.5rem;
}
.section-header__icon {
    position: absolute;
    top: 0;
    right: 30px;
    width: 2rem;
    height: 2rem;
}
.section-header__form-text {
    margin-top: 1rem;
    color: #4D5A62;
    font-weight: 500;
    font-size: min(calc(16px + (18 - 16)*(100vw - 380px) / (1920 - 380)), 18px);
}
.section-header__form-body form p {
    margin-top: 1.5rem;
    display: flex;
    align-items: baseline;
    flex-direction: column;
    gap: 1.25rem;
}
.section-header__additionals {
    margin-top: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 1.125rem;
    flex-direction: column;
}
.section-header__additional {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #003A90;
    font-weight: 700;
    font-size: min(calc(16px + (18 - 16)*(100vw - 380px) / (1920 - 380)), 18px);
}
.section-header__additional-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* dropdown */
.dropdown {
    position: relative;
    z-index: 2;
}
.dropdown__list {
    list-style: none;
    background-color: #F4F4F4;
    border-radius: 0 0 4px 4px;
    padding: .625rem;
    position: absolute;
    top: calc(100% + .625rem);
    left: -.625rem;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -100%) scaleY(0);
    transition: all .3s ease-in;
}
.dropdown__list-active {
    transform: translate(0, 0);
    top: calc(100% + .625rem);
    opacity: 1;
    visibility: visible;
}
.dropdown__list img {
    width: 100%;
    height: 100%;
}
.dropdown__list li {
    opacity: .75;
    transition: .2s;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.dropdown__list li:hover {
    opacity: 1;
}
.dropdown__list li + li {
    margin-top: 1.3rem;
}

/*country*/
.prices__item {
    border: 2px solid #EAEAEA;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}
.prices__item-body {
    flex: 1;
}
.prices__item-title {
    border-bottom: 2px solid #EAEAEA;
    padding-bottom: .3rem;
    color: #041D2C;
    font-weight: 700;
    font-size: min(calc(15px + (24 - 15) * (100vw - 380px) / (1920 - 380)), 24px);
    display: block;
}
.prices__item-text {
    margin-top: .56rem;
    color: #4D5A62;
    font-weight: 500;
    font-size: calc(16px + (18 - 16) * (100vw - 380px) / (1920 - 380));
}
.prices__item-icon {
    width: 4rem;
    height: 4rem;
    img {
        width: 100%;
        height: 100%;
    }
}

/* footer */
.footer {
    color: #fff;
    position: relative;
}
.footer::after {
    position: absolute;
    content: "";
    background: url(../img/ts-text-decor.svg) 100% top / cover no-repeat;
    bottom: 0;
    right: 0;
    width: 11rem;
    height: 10rem;
    opacity: .1;
}
.footer__main {
    background-color: #002F74;
}
.footer__additional-info {
    background-color: #003A90;
    padding: 5rem 0 4rem;
    position: relative;
}
.footer__reviews {
    width: 100%;
}
.footer__additional-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/footer_decor_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10rem;
    height: 20rem;
}
.footer__additional-info::after {
    content: '';
    position: absolute;
    top: -3.5rem;
    right: 1rem;
    background-image: url(../img/footer_decor_2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13rem;
    height: 10rem;
}
.footer__container {
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}
.footer__information-bottom {
    border-top: 2px solid #EB9D05;
    padding: 4rem 0 2rem;
    display: none;
    z-index: 1;
    position: relative;
}
.footer__address-list {
    display: flex;
    gap: 3.375rem;
    margin-top: 2rem;
}
.footer__address-item {
    max-width: 200px;
}
.footer__address-item p,
.footer__any-question p {
    margin-bottom: 0;
    font-size: 12px;
    margin-top: 1rem;
}
.footer__any-question {
    max-width: 18rem;
    margin-left: auto;
    display: none;
}
.footer__any-question strong {
    font-size: min(calc(18px + (20 - 18) * (100vw - 380px)/(1920 - 380)), 20px);
    font-weight: 600;
}
.footer__copyright {
    background-color: #1C293C;
    padding: 1.5rem 0;
    font-size: 14px;
    font-weight: 600;
}
.footer__copyright a span::after {
    width: 100%;
    left: 0;
}
.footer__copyright a:hover span::after {
    width: 0;
    left: 50%;
}
.footer__privacy {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    flex-direction: column;
}
.footer__license {
    margin-bottom: .8rem;
}
.footer__development {
    align-self: end;        
} 
.footer__information-top {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0 2rem;
    flex-direction: column;
}
.footer__menu {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin-left: 1rem;
}
.footer__subscribes {
    margin-top: 3.5rem;
}
.footer__subscribes form p {
    background-color: #F4F4F4;
    margin-top: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 4px;
    max-width: 25rem;
}
.footer__subscribes-input {
    background-color: transparent;
    color: #003A90;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
}
.footer__subscribes-input::-ms-input-placeholder {
    color: rgba(0, 58, 144, 0.5);
}
.footer__subscribes-input::-ms-input-placeholder {
    color: rgba(0, 58, 144, 0.5);
}
.footer__subscribes-input::placeholder {
    color: rgba(0, 58, 144, 0.5);
}
.footer__socials {
    display: flex;
    margin-top: 2.8rem;
    gap: 1.5rem;
}
.footer__icon-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.footer__icon-list .icon {
    width: 1.8rem;
    height: 1.8rem;
    transition: .2s ease;
}
.footer__icon-list .icon:hover {
    opacity: .8;
}
.footer__icon-list .icon img {
    filter: brightness(0) saturate(100%) invert(98%) sepia(100%) saturate(0%) hue-rotate(342deg) brightness(107%) contrast(101%);
}
.footer__main-info {
    margin-bottom: 2.8rem;
}
.footer__item-list h6 {
    text-transform: uppercase;
    margin-bottom: 1.56rem;
}
.footer__item-list h6 a span::after {
    width: 100%;
    left: 0;
}
.footer__item-list h6 a:hover span::after {
    width: 0;
    left: 50%;
}
.footer__menu-list {
    list-style: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.footer__menu-list > li + li {
    margin-top: .75rem;
}
.footer__additional-info-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.footer__additional-info-question {
    grid-template-areas:
        "a a"
        "b c"
        "d d";
    display: grid;
    position: relative;
    z-index: 1;
}
.footer__additional-info-question h3 {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    grid-area: a;
    z-index: 1;
}
.footer__additional-info-question-text {
    grid-area: b;
    z-index: 1;
}
.footer__additional-info-question-text p {
    font-size: 1rem;
}
.footer__additional-info-question-text p + p {
    margin-top: 1.5rem;
}
.footer__additional-info-question figure {
    grid-area: c;
}
.footer__additional-info-question figure > image {

}
.footer__additional-info-question button {
    grid-area: d;
    margin-top: 1.5rem;
    z-index: 1;
}
.footer__additional-info-subtitle {
    margin-bottom: 1rem;
    font-size: calc(16px + (20 - 16) * (100vw - 380px) / (1920 - 380));
    max-width: 550px;
}

.accordion__tab {
    border-bottom: 1px solid #EB9D05;
}
.accordion__tab:first-child {
    border-top: 1px solid #EB9D05;
}
.accordion__tab-heading {
    color: #003A90;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion__tab-content {
    display: none;
}
.accordion__arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: .3s all ease;
    position: relative;
    border-radius: 50%;
    border: 2px solid #003A90;
}
.accordion__arrow:after,
.accordion__arrow:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,-50%);
    background: #003A90
}
.accordion__arrow:before {
    width: 12px;
    height: 2px
}
.accordion__arrow:after {
    width: 2px;
    height: 12px
}
.accordion__tab.open > .accordion__tab-heading .accordion__arrow:after {
    opacity: 0;
    visibility: hidden
}

.search-form {
    border: 2px solid #EAEAEA;
    border-radius: 1rem;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
}
.search-form__container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.search-form__input {
    width: 100%
}
.search-form input {
    width: 100%;
    border: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    color: #4D5A62;
    font-weight: 600;
    line-height: 1.54;
    font-size: min(calc(14px + (18 - 14)*(100vw - 380px) / (1920 - 380)), 18px);
}
.search-form input:focus {
    box-shadow: none;
    outline: 0
}
.search-form input::-ms-input-placeholder {
    color: #4D5A62
}
.search-form input::-ms-input-placeholder {
    color: #4D5A62
}
.search-form input::placeholder {
    color: #4D5A62
}
.search-form button {
    background: 0 0;
    border: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.search-form button:hover {
    opacity: .7
}
.search-form button span {
    display: none
}

.burger {
    width: 32px;
    height: 32px;
    display: block;
    background-image: url(../img/burger.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
    cursor: pointer;
}
.mobile_menu {
    display: flex;
    justify-content: end;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    transition: .3s;
}
.mobile_menu::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .7);
    position: absolute;
    height: 100vh;
}
.mobile_menu_wrap {
    position: relative;
    height: 100vh;
    background: #002F74;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.mobile_menu_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background-color: #003A90;
    padding: 1.7rem 1.4rem;
    border-bottom: 2px solid #EB9D05;
}
.mobile_menu.open {
    right: 0;
}
.mobile_menu_close {
    width: 32px;
    height: 32px;
    display: block;
    background-image: url(../img/cross.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
    cursor: pointer;
}
.mobile_menu__contact {
    font-weight: 700;
    color: #CEE5F8;
    font-size: 1rem;
    margin-bottom: 2rem;
}
.mobile_menu__contact > span {
    display: block;
    margin-bottom: 1rem;
}
.mobile_menu__contact > a {
    font-size: 2rem;
    color: #5273FD;
}
.mobile_menu__contact > a span::after {
    background-color: #5273FD;
}
.mobile_menu__contact-address {
    margin-top: 4rem;
    color: #CEE5F8;
    font-weight: 500;
}
.mobile_menu__contact-address > span:first-child {
    font-weight: 700;
    color: #5273FD;
    margin-bottom: 1rem;
    display: block;
}
.mobile_menu__button {
    display: inline-block;
}
.mobile_menu__copyright {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
    font-weight: 700;
    font-size: .8rem;
    color: #CEE5F8;
}
.mobile_menu___bottom-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.mobile_menu___privacy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.mobile_menu___privacy > a {
    font-weight: 400;
}
.mobile_menu_body {
    padding: 2.14rem 1.4rem;
    max-height: 100%;
    overflow-y: auto;
    flex: 1;
}
.mobile_menu__controls {
    border-bottom: 1px solid #6689BC;
    padding-bottom: 2.14rem;
}
.mobile_menu__button {
    border-color: #F4F4F4;
}
.mobile_menu_footer {
    background-color: #1C293C;
    padding: 2.14rem 1.4rem;
}
.mobile_menu__menu {
    padding: 2.14rem 0 2.14rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
.mobile_menu__item span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    display: block;
}
.mobile_menu__item--active .mobile_menu__item-list {
    height: 100%;
    visibility: visible;
    opacity: 1;
    margin-top: 1.7rem;
}
.mobile_menu__item-list > li a {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.mobile_menu__item-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    list-style: none;
    margin-left: .85rem;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: .2s;
}
.mobile_menu__contacts {
    border-top: 1px solid #6689BC;
    padding-top: 3.5rem;
}
.mobile_menu__contacts, .mobile_menu__link {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.mobile_menu__phone {
    font-weight: 500;
    font-size: 16px;
    color: #6689BC;
}
.mobile_menu__phone .mobile_menu__link {
    font-size: 16px;
}
.mobile_menu__phones-list {
    padding: 2.14rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}

/*service*/
.service__item {
    background-color: #F4F4F4;
    border-radius: 1rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.service__item-title {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #003A90;
    margin-bottom: 1.5rem;
    img {
        width: 2.5rem;
        height: 2.5rem;
    }
}
.service__item-text {
    font-size: min(calc(16px + (18 - 16) * (100vw - 380px)/(1920 - 380)), 18px);
    font-weight: 500;
    margin-bottom: 2.5rem;
}
.service__item-link {
    align-self: end;
}

.page-182 .block-text__container,
.page-186 .block-text__container,
.page-193 .block-text__container,
.page-190 .block-text__container {
    max-width: 980px;
}
.page-423 .block-trademark-registration {
    margin-bottom: -5rem;
}
.page-84 .block-numbers__container {
    background-color: #fff;
    border: 1px solid #EAEAEA;
}
/*.page-84 .block-numbers {
    position: relative;
}
.page-84 .block-numbers::after {
    position: absolute;
    content: '';
    left: calc((100% - 100vw) / 2);
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: #f4f4f4;
}*/
/* Trademark Search text block */
.page-182 .block-text {
    position: relative;
}
.page-182 .block-text::before {
    position: absolute;
    content: "";
    background: url(../img/ts-text-decor.svg) 100% / contain no-repeat;
    top: 50%;
    left: calc(100vw - (100vw - 100%) / 2);
    width: 30rem;
    height: 35rem;
    transform: translate(-100%, -25%);
}

.page-17 .block-advantages__title,
.page-17 .block-advantages__text {
    max-width: 700px;
}

/* modal */
.modal_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_wrap.active {
    opacity: 1;
    visibility: visible;
}
.modal_form {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    position: absolute;
    max-width: 70%;
    background: #F4F4F4;
    color: #003A90;
    max-height: 100%;
    overflow: auto;
    border-radius: 1rem;
    padding: 2.14rem;
}
.modal_form_body {
    margin-top: 2.85rem;
}
.modal_form.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    position: relative;
}
.modal_heading {
    color: #003A90;
    font-weight: 700;
    font-size: min(calc(15px + (20 - 15) * (100vw - 380px)/(1920 - 380)), 20px);
}
.modal_close {
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    top: 2.14rem;
    right: 2.14rem;
}
.modal_close:hover {
    opacity: .5;
}
.modal_header {
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 0.85rem;
}
.wpcf7-response-output {
    color: red;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #4D5A62;
}
.cf7_mailsent_form {
    width: 100%;
    max-width: 35rem;
}
.modal_callback {
    width: 100%;
    max-width: 37rem;
    .form__input, .form__textarea {
        border-color: #EAEAEA;
        border-width: 1px;
        font-weight: 400;
        padding: .75rem 1rem;
    }
}
.subscription__form .wpcf7-response-output {
    display: none;
}
.modal_policy {
    width: 100%;
    max-width: 60rem;
}
.modal_policy {
    font-size: 1rem;
    font-weight: 500;
    h2, h3, h4, h5, p {
        color: #041D2C;
    }
    h2, h3, h4, h5 {
        margin: 2.5rem 0 1.5rem;
    }
}

.modal_consult {
    width: 100%;
    max-width: 35rem;
}
.modal-consult__body {
    display: flex;
    flex-direction: column;
    gap: 5.2rem;
}
.modal-consult__contacts-inner, .modal-consult__form-inner {
    flex: 0 0 calc(50% - 2.6rem);
}
.modal-consult__text {
    color: #FDFDFD;
    font-size: 1.14rem;
}
.modal-consult__form, .modal-consult__contacts {
    margin-top: 2.9rem;
}
.modal-consult__contacts-item + .modal-consult__contacts-item {
    margin-top: 1.5rem;
}
.modal-consult__contacts-item-label {
    font-size: 1.14rem;
    color: rgba(253, 253, 253, .7);
    margin-bottom: .7rem;
}
.modal-consult__contacts-item-value {
    color: #FDFDFD;
    font-size: 1.42rem;
    font-weight: 600;
}
.modal-consult__contacts-item-value span:after {
    background: #FDFDFD;
}