@charset "UTF-8";
@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald-Light.woff2") format("woff2"), url("../fonts/Oswald-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald-Regular.woff2") format("woff2"), url("../fonts/Oswald-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Oswald";
    src: url("../fonts/Oswald-Medium.woff2") format("woff2"), url("../fonts/Oswald-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --container-width: 960px;
    --main-outer-width: 1920px;
    --container-padding: 30px;
    --calculated-padding: calc((100% - var(--container-width)) / 2);
    --theme-color-grey: #f9f9f9;
    --theme-color-grey2: #FCFCFC;
    --theme-color-grey3: #F6F6F6;
    --theme-color-accent: rgb(66, 179, 171);
    --theme-color-accent2: #00989F;
    --theme-color-accent-dark: rgba(38, 102, 98);
    --theme-color-text-common: rgb(68, 72, 77);
    --theme-color-text-common2: #575656;
    --theme-color-text-common3: white;
    --theme-border-color: #ececec;
    --theme-animation-duration: 200ms;
    --fancybox-bg: rgba(87, 86, 86, 0.61);
    --theme-animation-duration-fast: 0.1ms
}

@media (max-width: 767px) {
    :root {
        --container-padding: 20px;
    }
}

@media (max-width: 575px) {
    :root {
        --container-padding: 15px;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

br {
    content: "";
    display: block;
    margin-top: 0.5em;
}

b, strong {
    color: var(--theme-color-text-common2);
    font-weight: 400;
}

input,
button,
textarea {
    padding: 0;
    background: none;
    border: none;
    outline: none;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    color: var(--theme-color-text-common);
    font-family: "Oswald", sans-serif;
    font-weight: 300;
    font-size: 16px;
    overflow-x: hidden;
}

.mt-2 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 45px;
}

.mb-4 {
    margin-bottom: 45px;
}

.mt-6 {
    margin-top: 60px;
}

.mb-6 {
    margin-bottom: 60px;
}

.mt-8 {
    margin-top: 80px;
}

.mb-8 {
    margin-bottom: 80px;
}

.mt-10 {
    margin-top: 100px;
}

.mb-10 {
    margin-bottom: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.main-wrapper-outer {
    width: 100%;
    min-height: 100%;
    max-width: var(--main-outer-width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.header {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background: var(--theme-color-grey2);

}

.footer {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-top: 38px;
    padding-bottom: 38px;
}

body:not(.mp) .main {
    padding-bottom: clamp(50px, 5vw, 100px);
}

.container {
    padding-left: max(var(--calculated-padding), var(--container-padding));
    padding-right: max(var(--calculated-padding), var(--container-padding));
}

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

.container.container_extract-l {
    padding-left: 0;
}

.container.container_extract-lp {
    padding-left: var(--container-padding);
}

.container.container_extract-r {
    padding-right: 0;
}

.container.container_extract-rp {
    padding-right: var(--container-padding);
}

.container.container_extract-lr {
    padding-left: 0;
    padding-right: 0;
}

.container.container_extract-lrp {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container.container_blog {
    --calculated-padding: calc((100% - 1195px) / 2);
}

.form-grid1 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px 24px;
}

.form-grid1__row {
    grid-column: span 12;
}

.form-grid1__row_2 {
    grid-column: span 6;
}

.form-grid1__row_4 {
    grid-column: span 3;
}

.btn, button.btn {
    display: inline-block;
    font-weight: 300;
    line-height: 1.25;
    /*padding: 5px 16px 7px;*/
    border-radius: 20px;
    text-align: center;
    text-transform: capitalize;
    padding: 6px 20px 8px 20px !important;
}

.btn_xsmall {
    font-size: 14px;
    min-height: 38px;
    border-radius: 5px;
}

.btn_small {
    font-size: 12px;
    min-height: 42px;
}

.btn_big {
    font-size: 16px;
    min-height: 60px;
}

.btn_wide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.btn_primary, button.btn_primary {
    background-color: var(--theme-color-accent);
    color: #fff;
}

.btn_primary:disabled, .btn_primary:hover:disabled {
    background-color: var(--theme-color-accent);
}

.btn_primary:hover, button.btn_primary:hover {
    background-color: var(--theme-color-accent2);
    color: #fff;
}

.btn_primary.btn_hollow {
    background: none;
    border: 1.5px var(--theme-color-accent) solid;
    color: var(--theme-color-accent);
}

.btn_primary.btn_hollow:hover {
    background-color: var(--theme-color-accent);
    color: #fff;
}

.btn_white {
    background-color: #fff;
    color: var(--theme-color-text-common);
}

.btn_black {
    background-color: var(--theme-color-text-common);
    color: #fff;
}

.btn_grey {
    background-color: var(--theme-color-grey);
    color: #fff;
}

.btn_grey.btn_hollow {
    background: none;
    border: 1px var(--theme-color-grey) solid;
    color: var(--theme-color-grey);
}

.btn_grey-light {
    background-color: #ececec;
}

.btn_grey-light.btn_hollow {
    background: none;
    border: 1px #ececec solid;
}

.btn_grey-light:disabled {
    opacity: 0.5;
}

.btn:disabled {
    cursor: default;
    opacity: 0.5;
}

.btn-play {
    width: 110px;
    height: 110px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-play svg {
    fill: #fff;
    position: relative;
    z-index: 1;
    margin-left: 3%;
    display: block;
    width: 20%;
}

.btn-play::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: background-color var(--theme-animation-duration);
    transition: background-color var(--theme-animation-duration);
}

.btn-play::after {
    content: "";
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background-color: var(--theme-color-accent);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: background-color var(--theme-animation-duration), width var(--theme-animation-duration), height var(--theme-animation-duration);
    transition: background-color var(--theme-animation-duration), width var(--theme-animation-duration), height var(--theme-animation-duration);
}

.btn-play:hover::before {
    background-color: rgba(255, 255, 255, 0.6);
}

.btn-play:hover::after {
    background-color: rgb(29, 29, 29);
    width: 72%;
    height: 72%;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
    -webkit-transition: color var(--theme-animation-duration-fast);
    transition: color var(--theme-animation-duration-fast);
}

.btn-text_primary {
    color: var(--theme-color-accent);
    text-transform: uppercase;
}

.btn-text_primary .btn-text__icon {
    fill: var(--theme-color-accent);
}

.btn-text:focus-visible {
    outline: 3px rgba(0, 0, 0, 0.3) solid;
}

.btn-round {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.2;
    padding: 5px 39px;
}

.btn-round_primary {
    background-color: var(--theme-color-accent);
    color: #fff;
}

.btn-round_grey {
    border: 1px var(--theme-color-grey) solid;
    color: var(--theme-color-grey);
}

.btn-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.btn-icon svg {
    display: block;
}

.btn-icon_search {
    position: relative;
}

.btn-icon_search::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.btn-icon_search svg {
    fill: #CACBCE;
}

.btn-icon_search svg:last-child {
    display: none;
}

.btn-icon_search[data-state=opened] svg:first-child {
    display: none;
}

.btn-icon_search[data-state=opened] svg:last-child {
    display: block;
}

.btn-icon_search:hover svg {
    fill: var(--theme-color-text-common);
}

.btn-icon_grey svg {
    fill: var(--theme-color-grey);
}

.btn-icon_grey:hover svg {
    fill: var(--theme-color-text-common);
}

.btn-icon_share {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.btn-icon_share svg {
    margin-right: 8px;
}

.btn-icon-text {
    font-size: 18px;
    color: var(--theme-color-grey);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 8px;
    position: relative;
}

.btn-icon-text::after {
    content: "";
    position: absolute;
    inset: -5px -5px -5px -5px;
}

.btn-icon-text svg {
    fill: var(--theme-color-accent);
}

.btn-icon-text_1 {
    font-size: 16px;
    color: var(--theme-color-accent);
}

.form-group {
    padding: 10px 0;
}

.form-group__label {
    display: block;
    color: var(--theme-color-text-common);
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.form-group__label_req::after {
    content: "*";
    color: red;
    margin-left: 5px;
}

.field-input1 {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px var(--theme-border-color) solid;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 1.25;
    color: var(--theme-color-text-common);
}

.field-input1::-webkit-input-placeholder {
    color: #A8A8AA;
}

.field-input1::-moz-placeholder {
    color: #A8A8AA;
}

.field-input1:-ms-input-placeholder {
    color: #A8A8AA;
}

.field-input1::-ms-input-placeholder {
    color: #A8A8AA;
}

.field-input1::placeholder {
    color: #A8A8AA;
}

.field-input1:focus::-webkit-input-placeholder {
    color: transparent;
}

.field-input1:focus::-moz-placeholder {
    color: transparent;
}

.field-input1:focus:-ms-input-placeholder {
    color: transparent;
}

.field-input1:focus::-ms-input-placeholder {
    color: transparent;
}

.field-input1:focus::placeholder {
    color: transparent;
}

.field-input1_search1 {
    background-color: #F8F7F7;
    padding-left: 20px;
    padding-right: 66px;
}

.field-input1_search1::-webkit-input-placeholder {
    color: #797D84;
}

.field-input1_search1::-moz-placeholder {
    color: #797D84;
}

.field-input1_search1:-ms-input-placeholder {
    color: #797D84;
}

.field-input1_search1::-ms-input-placeholder {
    color: #797D84;
}

.field-input1_search1::placeholder {
    color: #797D84;
}

textarea.field-input1 {
    height: 118px;
    resize: none;
}

.bx-ui-sls-input-block:has(.bx-ui-sls-fake:focus),
.field-input1:focus {
    border-color: var(--theme-color-accent);
}

.text-checkbox1 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.text-checkbox1__input {
    pointer-events: none;
    position: absolute;
    opacity: 0;
}

.text-checkbox1__visual {
    height: 40px;
    border-radius: 20px;
    border: 1px rgba(30, 30, 30, 0.3) solid;
    padding: 0 19px;
    font-size: 16px;
    color: #1E1E1E;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.text-checkbox1__input:checked + .text-checkbox1__visual {
    border-color: var(--theme-color-accent);
    color: var(--theme-color-accent);
}

.text-checkbox2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.text-checkbox2__input {
    pointer-events: none;
    position: absolute;
    opacity: 0;
}

.text-checkbox2__text {
    cursor: pointer;
    font-size: 16px;
    color: var(--theme-color-grey);
}

.text-checkbox2__input:checked + .text-checkbox2__text {
    color: var(--theme-color-accent);
}

.checkbox-text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-text .checkbox,
.checkbox-text .radio {
    margin-right: 10px;
}

.checkbox-text__label {
    line-height: 1.25;
    color: var(--theme-color-text-common);
    min-height: 20px;
}

.checkbox-text__label a {
    color: var(--theme-color-accent);
}

.checklist {

}

.checklist__item:not(:last-child) {
    margin-bottom: 14px;
}

.checklist[data-item-expandable=collapsed] .checklist__item[data-item-expandable-item] {
    display: none;
}

.checklist1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.checklist1[data-item-expandable=collapsed] .checklist1__item[data-item-expandable-item] {
    display: none;
}

.checklist1_sparse {
    gap: 12px 40px;
}

.checklist1_col3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 15px 20px;
}

.checkbox {
    position: relative;
    font-size: 0;
}

.checkbox__input {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkbox__visual {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 20px;
    border: 1px var(--theme-border-color) solid;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.checkbox__visual svg {
    display: block;
    width: 16px;
    height: 12px;
    fill: var(--theme-color-accent);
    opacity: 0;
}

.checkbox__input:checked + .checkbox__visual {
    border-color: var(--theme-color-accent);
}

.checkbox__input:checked + .checkbox__visual svg {
    opacity: 1;
}

.checkbox__input:not(:disabled):focus-visible + .checkbox__visual, .checkbox__input:not(:disabled):hover + .checkbox__visual {
    border-color: var(--theme-color-accent);
}

.checkbox-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.checkbox-btn__input {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.checkbox-btn__visual {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 40px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 1.2;
    padding: 5px 39px;
    border: 1px var(--theme-color-grey) solid;
    color: var(--theme-color-grey);
    cursor: pointer;
}

.checkbox-btn__input:checked + .checkbox-btn__visual {
    background-color: var(--theme-color-accent);
    color: #fff;
    border-color: transparent;
}

.radio {
    position: relative;
    font-size: 0;
}

.radio__input {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.radio__visual {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border: 1px var(--theme-border-color) solid;
    border-radius: 50%;
}

.radio__visual::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--theme-color-accent);
    display: block;
    opacity: 0;
}

.radio__input:checked + .radio__visual {
    border-color: var(--theme-color-accent);
}

.radio__input:checked + .radio__visual::after {
    opacity: 1;
}

.radio__input:not(:disabled):focus-visible + .radio__visual, .radio__input:not(:disabled):hover + .radio__visual {
    border-color: var(--theme-color-accent);
}

.ts-dropdown .active {
    color: var(--theme-color-accent-dark);
}

.ts-dropdown [data-selectable] {
    cursor: pointer;
}
  
.ts-dropdown .active {
    color: var(--theme-color-accent);
}
  
.ts-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
            clip-path: inset(50%) !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}

.dropdown {
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
    box-shadow: 0 6px 26px 4px rgba(30, 30, 30, 0.1);
    padding: 20px 24px;
    position: absolute;
}

.select {
    display: inline-block;
    position: relative;
    z-index: 100;
}

select.select {
    opacity: 0;
    height: 44px;
}

.select__handle {
    cursor: pointer;
    position: relative;
    height: 44px;
    border-radius: 30px;
    border: 1px solid var(--theme-border-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 5px 50px 5px 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: var(--theme-color-text-common);
    -webkit-transition: border-color var(--theme-animation-duration-fast);
    transition: border-color var(--theme-animation-duration-fast);
}

.select__handle:focus-visible {
    outline: none;
    border-color: var(--theme-color-accent);
}

.select__handle:hover {

}

.select__chevron {
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translate(0, -35%);
    transform: translate(0, -35%);
}

.select.dropdown-active .select__chevron {
    -webkit-transform: translate(0, -35%) rotate(180deg);
    transform: translate(0, -35%) rotate(180deg);
}

.select.dropdown-active {
    z-index: 101;
}

.select__option {
    padding: 10px 20px;
}

.select__option.active {
    color: #fff;
    background-color: var(--theme-color-accent);
}

.select__dropdown .ts-dropdown-content {
    margin-top: -10px;
    margin-bottom: -10px;
}

.select__dropdown.dropdown {
    width: 100%;
    min-width: 244px;
    left: 0;
    top: 100%;
    font-size: 14px;
    line-height: 1.2;
    padding: 22px 0;
    max-height: 250px;
    overflow: auto;
}

.select__dropdown.dropdown a {
    color: var(--theme-color-text-common);
}

.select__dropdown.dropdown a:hover {
    color: var(--theme-color-accent);
}

.select__dropdown.dropdown li:not(:last-child) {
    margin-bottom: 20px;
}

.select_active .select__handle {
    border-color: var(--theme-color-accent);
}

.select_active .select__chevron {
    -webkit-transform: translate(0, -35%) rotate(180deg);
    transform: translate(0, -35%) rotate(180deg);
}

.select_1 .select__handle {
    border-radius: 4px;
    padding-right: 40px;
}

.select_1 .select__handle:focus {
    border-color: var(--theme-color-accent);
}

.select_1 .select__chevron {
    right: 18px;
}

.select_1 .dropdown {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 4px;
    border: 1px solid var(--theme-color-accent);
    color: #82879A;
}

.select_wide {
    width: 100%;
}

.select_wide .select__handle {
    width: 100%;
}

.input-group1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.input-group1__field {
    height: 54px;
    border-color: #fff;
    color: #fff;
    width: 57.5%;
}

.input-group1__btn {
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media (max-width: 640px) {
    .input-group1 {
        display: block;
    }

    .input-group1__field {
        width: 100%;
        margin-bottom: 20px;
    }

    .input-group1__btn {
        width: 100%;
        margin-left: 0;
    }
}

.error .field-input1, .error .bx-ui-sls-input-block {
    border-color: red;
}

.field-error-mess {
    display: none;
    color: red;
}

.error .field-error-mess {
    display: inline-block;
    padding: 5px;
}

.header__bottom {
    border-top: 1px var(--theme-color-accent) solid;
    padding-top: 25px;
    padding-bottom: 25px;
}

.intro {
    padding-top: 25px;
    display: grid;
    grid-template-columns: 64fr 36fr;
}

.intro__left {
    padding-right: 40px;
    padding-bottom: 21px;
}

.intro__right {
    grid-row: span 2;
}

.intro__right img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center bottom;
    object-position: center bottom;
}

.intro__logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 31px;
    position: relative;
}

.intro__logos a,
.intro__logos img {
    display: block;
}

.intro__logos > *:not(:last-child) {
    margin-right: 38px;
}

.intro__text {
    font-size: 20px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000;
}

.intro__date {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}

.intro__text + .intro__date {
    margin-top: 23px;
}

@media (max-width: 768px) {
    .intro {
        grid-template-columns: 1fr;
    }
    
    .intro__right {
        grid-row: auto;
        margin-bottom: 20px;
    }

    .intro__right img {
        max-width: 345px;
        margin-left: auto;
        margin-right: auto;
    }

    .intro__text,
    .intro__date {
        text-align: center;
    }

    .intro__logos {
        margin-bottom: 20px;
    }

    .intro__left {
        padding-right: 0;
        padding-bottom: 20px;
    }
    .header {
        border-bottom: 1px var(--theme-color-accent) solid;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 600px) {
    .intro__logos img {
        width: 120px;
    }

    .intro__logos > *:not(:last-child) {
        margin-right: 19px;
    }

    .intro__text {
        font-size: 18px;
    }

    .intro__date {
        font-size: 20px;
    }

    .intro__text + .intro__date {
        margin-top: 15px;
    }
}

@media (max-width: 400px) {
    .intro__logos img {
        width: 100px;
    }
}

.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.menu > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 36px;
    border-radius: 18px;
    padding: 6px 22.5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    white-space: nowrap;
}

.menu > li:not(.menu__active) > a {
    color: var(--theme-color-text-common);
}

.menu > li:not(.menu__active) > a:hover {
    color: var(--theme-color-accent-dark);
}

.menu__active > a {
    background-color: var(--theme-color-accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    width: 30px;
    height: 24px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='24' viewBox='0 0 30 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='11' width='30' height='2' fill='black'/%3E%3Crect y='22' width='30' height='2' fill='black'/%3E%3Crect width='30' height='2' fill='black'/%3E%3C/svg%3E%0A");
}

.menu-close {
    display: none;
    position: absolute;
    top: 57px;
    right: 20px;
    width: 30px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='24' viewBox='0 0 30 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='22.2791' width='35.9733' height='2' transform='rotate(-37.7078 0 22.2791)' fill='black'/%3E%3Crect width='35.9733' height='2' transform='matrix(-0.79114 -0.611635 -0.611635 0.79114 29.6836 22.2788)' fill='black'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1000px) {
    .menu > li > a {
        padding: 6px 15px;
    }
}
@media (max-width: 900px) {
    .menu > li > a {
        font-size: 14px;
        padding: 6px 10px;
    }
}
@media (max-width: 768px) {
    .header__bottom {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100dvh;
        border: none;
        padding: 0;
        background-color: rgba(255,255,255, 0.95);
    }

    .menu-close {
        display: block;
    }

    .header__bottom.active {
        display: block;
    }

    .header__bottom .container {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .menu {
        display: block;
        text-align: center;
    }
    .menu > li > a {
        display: inline-flex;
        font-size: 16px;
        padding: 6px 22px;
    }
    .menu > li:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .menu-close {
        top: 40px;
        right: 15px;
    }
}

@media (max-width: 400px) {
    .menu-close {
        top: 36px;
    }
}

body.noscroll {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

fieldset,
fieldset legend {
    margin: 0;
    border: none;
    padding: 0;
}

button {
    cursor: pointer;
}

a {
    color: var(--theme-color-text-common);
}

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

.preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

.v-h {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.title1,
.textblock1 .title1 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #000;
    position: relative;
}

.title1::after,
.textblock1 .title1::after {
    content: "";
    position: absolute;
    width: 101px;
    height: 1px;
    border-top: 1px var(--theme-color-accent) solid;
    left: 0;
    top: calc(100% + 14px);
}

@media (max-width: 768px) {
    .title1,
    .textblock1 .title1 {
        margin-bottom: 30px;
    }
}

.title2 {
    font-size: clamp(20px, 3.6vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.title3 {
    font-size: clamp(16px, 3.6vw, 25px);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
}

.title4 {
    font-size: clamp(16px, 3.6vw, 20px);
    font-weight: 700;
    line-height: 1;
}

.loader {
    width: 30px;
    padding: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--theme-color-accent);
    -webkit-mask: var(--m);
    mask: var(--m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    -webkit-animation: l3 1s infinite linear;
    animation: l3 1s infinite linear;
    --m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
}

@-webkit-keyframes l3 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes l3 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.spinner {
    display: inline-block;
}

.spinner svg {
    width: 26px;
    height: 22px;
    fill: #1E1E1E;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: fill;
    transition-property: fill;
    -webkit-transition-duration: 100ms;
    transition-duration: 100ms;
}

.textblock1 {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.textblock1 ul > li {
    position: relative;
    padding-left: 45px;
}

.textblock1 ul > li::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0.3em;
    width: 17px;
    height: 13px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='13' viewBox='0 0 17 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.87828 13L0.406511 7.56472C-0.135504 7.02632 -0.135504 6.15068 0.406511 5.61228C0.948526 5.07388 1.83004 5.07388 2.37206 5.61228L5.87828 9.09512L14.6279 0.4038C15.17 -0.1346 16.0515 -0.1346 16.5935 0.4038C17.1355 0.942201 17.1355 1.81784 16.5935 2.35624L5.87828 13Z' fill='%2342B3AB'/%3E%3C/svg%3E%0A");
}

.textblock1 ul > li:not(:last-child) {
    margin-bottom: 0.95em;
}

.textblock1 h2, .textblock1 h3, .textblock1 h4, .textblock1 h5, .textblock1 h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: inherit;
    margin-bottom: 0.5em;
    color: var(--theme-color-accent);
}

.textblock1 h2 {
    font-size: 22px;
}

.textblock1 p, .textblock1 ul, .textblock1 ol, .textblock1 img {
    margin-bottom: 1.5em;
}

.textblock1 a {
    color: var(--theme-color-accent);
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 1px;
}

.textblock1 img {
    max-width: 100%;
}

.textblock1 p > span {
    color: var(--theme-color-accent);
}

.textblock1 > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .textblock1 {
        font-size: 14px;
    }

    .textblock1 h2, .textblock1 h3, .textblock1 h4, .textblock1 h5, .textblock1 h6 {
        margin-bottom: 1.25em;
    }

    .textblock1 p, .textblock1 ul, .textblock1 ol, .textblock1 img {
        margin-bottom: 1.25em;
    }
}

.video {
    position: relative;
}

.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .video__play {
        width: 54px;
        height: 54px;
    }
}

.breadcrumbs {
    position: relative;
}

.breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.breadcrumbs__item {
    position: relative;
    color: var(--theme-color-grey);
    line-height: 1.2;
}

.breadcrumbs__item:not(:last-child) {
    margin-right: 16px;
}

.breadcrumbs__item:not(:last-child)::after {
    margin-left: 16px;
    content: "/";
}

.breadcrumbs__item.is-active {
    color: inherit;
}

.breadcrumbs__item > a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.breadcrumbs__item > a:hover {
    color: var(--theme-color-accent);
}

@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 14px;
    }

    .breadcrumbs__item:not(:last-child) {
        margin-right: 10px;
    }

    .breadcrumbs__item:not(:last-child)::after {
        margin-left: 10px;
    }
}

.swiper-nav {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-nav_next svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.swiper-nav_prev {
    margin-right: 12px;
}

.swiper-nav_prev svg {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.swiper-nav svg {
    fill: var(--theme-color-text-common);
}

.swiper-nav:not(:disabled):hover svg {
    fill: var(--theme-color-accent);
}

.swiper-nav_disabled {
    cursor: default;
}

/* Members list */
.members-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.members-list_2 {
    justify-content: flex-start;
}

.member-item {
    font-family: "Open sans", serif;
    font-size: 16px;
    width: calc(50% - 30px);
    display: flex;
    align-items: center;
    line-height: 22px;
    font-weight: 300;
    color: var(--theme-color-text-common2);
    margin: 0 15px 74px;
}

.member-item__title {
    text-transform: uppercase;
    font-family: "Oswald", serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: var(--theme-color-text-common);
    margin-bottom: 10px;
}

.member-item__job-title {
    color: var(--theme-color-accent2);
    margin-bottom: 5px;
}

.member-item__col_img {
    padding-right: 26px;
}

.member-item__img {
    display: block;
    overflow: hidden;
    border-radius: 50%;
    width: 135px;
    height: 135px;
    object-fit: cover;
    object-position: center;
}

.member-item_2 {
    padding-left: 37px;
    margin-bottom:55px;
    background: url('../img/icons/rarr.svg') top left no-repeat;
    align-items: start;
}

/* Participant */
.participant-section:not(:last-child) {
    margin-bottom: 88px;
}

.participant-section__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.participant-section__desc {
    display: flex;
    flex-direction: column;
    width: calc(25% - 30px);
    padding: 10px 0;
    margin: 0 15px 30px;
    line-height: 1.5em;
    justify-content: center;
}

.participant-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    width: calc(25% - 30px);
    min-height: 169px;
    background-color: var(--theme-color-grey3);
    padding: 10px;
    margin: 0 15px 20px;
}

.participant-item_simple {
    align-self: flex-start;
    background-color: transparent;
    padding: 5px 0;
    min-height: auto;
}

.participant-item__title {
    text-align: center;
    line-height: 1.5em;
}

.participant-item__div {
    width: 70%;
    height: 0;
    border-bottom: 1px solid var(--theme-color-accent);
    margin-top: 20px;
    margin-bottom: 20px;
}

.participant-item_simple .participant-item__div {
    display: none;
}

.participant-item_simple .participant-item__title {
    padding-bottom: 20px;
}

/* Sponsor packages */
.sponsor-packages {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
    flex-wrap: wrap;
}

.package-item {
    width: calc(33.3333% - 24px);
    background-color: var(--theme-color-grey3);
    padding: 35px 20px 10px;
    border-radius: 20px;
    margin: 0 12px 24px;
}

.package-item_2 {
    background-color: var(--theme-color-accent);
    color: var(--theme-color-text-common3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    text-shadow: 2px 3px 11px rgba(0, 0, 0, 0.25);
}

.package-item__title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    background: url('../img/line.png') bottom left repeat-x;
}

.package-item_2 .package-item__title {
    background: url('../img/line_white.png') bottom left repeat-x;
}

.package-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 77px;
    padding: 15px 8px;
    border-bottom: 1px dotted var(--theme-color-text-common2);
    line-height: 1.5em;
}

.package-item_2 .package-property {
    border-bottom-color: var(--theme-color-text-common3);
}

.package-property:last-child {
    border-bottom: none;
}

.package-property__value {
    width: 40%;
    max-width: 95px;
    padding-left: 20px;
    color: var(--theme-color-accent);
    font-weight: 400;
    flex-shrink: 0;
}

.package-item_2 .package-property__value {
    color: var(--theme-color-text-common3);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: -3px;
}

.gallery-item {
    padding: 3px;
    text-decoration: none;
    outline: none;
}

.gallery-item__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1.4;
}

.block-more-info {
    padding: 20px;
    text-align: center;
}

/* Program */
.program {}

.program__days {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.program__day {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
}

.program__halls {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.program__hall {
    width: calc(25% - 20px);
    margin: 0 10px 20px;
}

.program__hall.active, .program__day.active {
    background: var(--theme-color-accent-dark);
}

.program__hall.disabled, .program__hall.disabled, .program__day.disabled {
    background: var(--theme-color-accent);
    opacity: 0.5;
    pointer-events: none;
}

.program-table {
    display: table;
    width: 100%;
}

.program-table__row {
    display: none;
}

.program-table__row.active {
    display: table-row;
}

.program-table__col {
    display: table-cell;
    vertical-align: middle;
    padding: 25px 15px;
    border-bottom: 1px solid var(--theme-color-accent-dark);
}

.program-table__col_time {
    vertical-align: top;
    background: var(--theme-color-accent);
    color: var(--theme-color-text-common3);
}

.program-table__col_title {
    font-weight: 500;
}

/* Organizers */
.organizers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 54px;
}

.organizer-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizer-item__img {
    max-width: 100%;
    height: auto;
    object-fit:cover;
}

/* Footer */
.footer {
    width: 100%;
    background-color: var(--theme-color-accent);
    color: #fff;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
    line-height: 1.25;
}

.footer a {
    color: #fff;
}

.footer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-block__logo {
    display: block;
}

.footer-block__logo img {
    display: block;
}

.footer-block__data {
    margin-left: 21px;
    border-left: 1px #fff solid;
    padding-left: 24px;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-block__inner p:not(:last-child) {
    margin-bottom: 6px;
}

.icon {
    display: inline-block;
}

.icon_tick {
    width: 27px;
    height: 20px;
}
.icon_tick > svg {
    width: 100%;
    height: 100%;
}

.text-notification {
    padding: 20px;
    border-radius: 4px;
    line-height: 1.5;
    background-color: #F4F7FB;
}

.text-notification a {
    color: var(--theme-color-accent);
    border-radius: 2px;
}

.text-notification a:focus-visible {
    outline: 3px rgba(0, 0, 0, 0.3) solid;
}

.text-notification_bright {
    color: #82879A;
}

.text-notification_alert {
    background-color: rgba(219, 68, 68, 0.1);
    color: #DB4444;
}

.text-notification_alert a {
    color: currentcolor;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.text-notification_success {
    background-color: rgba(79, 173, 0, 0.1);
    color: #4FAD00;
}
.text-notification_success a {
    color: currentcolor;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.text-notification_text-small {
    font-size: 12px;
}

.text-notification_text-big {
    font-size: 16px;
}

.fancybox__container {
    --fancybox-bg: rgba(87, 86, 86, 0.25);
}

@media (max-width: 868px) {
    .package-item {
        width: calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .member-item {
        width: 100%;
    }

    .program__day, .program__hall {
        width: calc(33.3333% - 20px);
    }

    .organizers {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .participant-section__desc,
    .participant-item {
        width: calc(33.3333% - 30px);
    }

}

@media (max-width: 640px) {
    .package-item {
        width: 100%;
    }

    .program-table {
        display: block;
    }

    .program-table__col,
    .program-table__row.active {
        display: block;
    }

    .program__day, .program__hall {
        width: calc(50% - 20px);
    }

    .organizers {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .participant-section__desc,
    .participant-item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 400px) {
    .organizers {
        grid-template-columns: 1fr;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .participant-section__desc,
    .participant-item {
        width: 100%;
    }

    .footer-block {
        flex-direction: column;
    }

    .footer-block .footer-block__data {
        border-left: none;
        text-align: center;
    }

    .footer-block .footer-block__logo,
    .footer-block .footer-block__data {
        margin: 0;
        padding: 5px 0;
    }
}

.img_infi-sonic {
    width: 350px;
    position: absolute;
    display: flex;
    margin-top: -18px;
}
.img_infi-sonic-mob{
    display: none;
}

@media (max-width: 991px) {
    .img_infi-sonic{
        display: none;
    }
.img_infi-sonic-mob {
width: 200px;
        display: block;
        align-items: center;
        margin: 0 auto;
        padding-top: 15px;
}
.btn-primary1{
        color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    position: absolute !important;
display: block;
        align-items: center;
        margin: 0 auto;
        padding-top: 15px;
}

}    

.btn-primary1{
        color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    position: absolute !important;
    display: flex !important;
}
.btn-primary1:hover {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0062cc !important;
    text-decoration: none;
}
.btn1 {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}


@media (max-width: 991px) {

.btn1 {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
    width: 104px !important;
    margin-top: -13px !important;
}
}    

.btn-primary2{
        color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    position: absolute !important;
display: block;
        align-items: center;
        margin: 0 auto;
        padding-top: 15px;
}

}    

.btn-primary2{
        color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
    position: absolute !important;
    display: flex !important;
}
.btn-primary2:hover {
    color: #fff !important;
    background-color: #0069d9 !important;
    border-color: #0062cc !important;
    text-decoration: none !important;
}
.btn2 {
/*display: inline-block;*/
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
    text-decoration: none !important;
    margin-top: 30px !important;
    margin-left: -19px !important;
}


.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 541px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}

.text-primary1{
    z-index: 1;
    position: relative;
    color: white !important;
    font-size: 20px;
    margin-bottom: 67px;
}

@media (max-width: 1760px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 530px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
}
@media (max-width: 1600px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 488px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
}

@media (max-width: 1500px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 458px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
}

@media (max-width: 1300px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 395px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
}
@media (max-width: 1199px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 350px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
}
@media (max-width: 991px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 300px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
.text-primary1{
    z-index: 1;
    position: relative;
    color: white !important;
    font-size: 20px;
    margin-bottom: 0px;
            margin-top: -50px;
}
}

@media (max-width: 865px) {
.bacbanner {
    background-image: url(/local/assets/inc/is/fon4.jpg);
    position: absolute;
    width: 100%;
    height: 260px;
    top: 0;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    background-position: center;
    background-size: contain;
}
.text-primary1{
    z-index: 1;
    position: relative;
    color: rgb(0, 0, 0) !important;
    font-size: 20px;
    margin-bottom: 0px;
            margin-top: -50px;
}
}
@media (max-width: 865px) {
.bacbanner {
display: none;
}
}

.politic{
    margin-top: 190px;
}
@media (max-width: 865px) {
.politic{
    margin-top: 0px;
}
}