@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap");

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

html,
body {
    height: 100%;
    min-width: 320px;
}

body {
    color: #565656;
    line-height: 1;
    font-family: Arial;
    font-size: 1rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: "Nunito Sans", sans-serif;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    color: inherit;
    background-color: transparent;
}

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

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    background-color: #f3f3f3;
}

@supports (overflow: clip) {
    .wrapper {
        overflow: clip;
    }
}

.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.wrapper > * {
    min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*="__container"] {
    max-width: 77.5rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0px 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0.625rem;
    background-color: #6a9fd1;
    color: #fff;
    font-family: FuturaLT;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0.75rem 0.9375rem;
    text-align: center;
}

.button--fw {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input {
    border-radius: 0.625rem;
    width: 100%;
    display: block;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    color: #565656;
    line-height: 155%;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
    -ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
    -ms-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
    opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
    opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
    opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
    opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0;
}

textarea.input {
    resize: none;
}

.options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
}

._header-scroll .options {
    position: relative;
}

._header-scroll .options::before {
    content: "";
    height: 0.75rem;
    width: 0.0625rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #2c3c72;
    position: absolute;
}

.options__item {
    position: relative;
    cursor: pointer;
}

.options__input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

.options__input:checked + .options__label span {
    border: 2px solid #4da898;
}

._header-scroll .options__input:checked + .options__label span {
    border: none;
    font-weight: 700;
}

.options__label {
    cursor: pointer;
}

.options__text {
    display: block;
    border-radius: 50%;
    position: relative;
    width: 1.5625rem;
    height: 1.5625rem;
}

._header-scroll .options__text {
    width: auto;
    height: auto;
}

.options__text svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

._header-scroll .options__text svg {
    display: none;
}

.options__text-dn {
    display: none;
}

._header-scroll .options__text-dn {
    display: block;
    color: #2c3c72;
    font-size: 1rem;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

body::after {
    content: "";
    background-color: rgba(142, 151, 178, 0.98);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease 0s;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

.popup-show body::after {
    opacity: 1;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    -webkit-transition: visibility 0.8s ease 0s;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto;
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.popup__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    background-color: #fff;
    width: 100%;
    max-width: 44.4375rem;
    border-radius: 0.625rem;
}

.lock .popup__content {
    visibility: visible;
}

.popup__close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 1;
}

.popup__close svg {
    max-width: 100%;
}

.popup__close svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.popup__text {
    border-radius: 0.625rem;
    overflow: hidden;
}

.popup__slider {
    position: relative;
    overflow: visible !important;
}

.popup__slide-ibg {
    padding-top: 63.3%;
}

.popup__navigation button svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.popup__bottom {
    padding: 0 1.25rem 1.5rem 0;
}

.popup__name {
    color: #2c3c72;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
}

.popup__item {
    color: #565656;
    line-height: 155%;
}

.popup__item span {
    font-weight: 700;
}

.politic .popup__content {
    max-width: 75rem;
}

.politic .politic__title {
    text-align: center;
    color: #565656;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
}

.politic ol {
    list-style: none;
    counter-reset: li;
}

.politic ol a {
    text-decoration: underline;
    color: #637ed6;
}

.politic ol li {
    text-indent: 3.125rem;
    position: relative;
}

.politic li:before {
    counter-increment: li;
    content: counters(li, ".") ". ";
    position: absolute;
    top: 0;
    left: -3.125rem;
}

.politic .politic__content > ol > li {
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
}

.politic .politic__content > ol > li > ol > li {
    font-weight: 400;
    line-height: 120%;
    text-transform: none;
}

.politic .politic__content > ol > li > ol > li p {
    text-indent: 0;
}

[class*="-ibg"] {
    position: relative;
}

[class*="-ibg"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

[class*="-ibg--contain"] img {
    -o-object-fit: contain;
    object-fit: contain;
}

.title {
    color: #2c3c72;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
}

.slidercont {
    position: relative;
    padding: 0 3.125rem;
}

.swiper {
    margin: 0 auto;
}

.swiper-pagination {
    position: absolute;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: calc(100% + 45px);
    max-width: 62.25rem;
    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;
    -webkit-column-gap: 0.375rem;
    -moz-column-gap: 0.375rem;
    column-gap: 0.375rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    row-gap: 0.9375rem;
}

.swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active-main) {
    display: none;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
    display: block;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 0.5625rem;
    height: 0.5625rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0.5625rem;
    flex: 0 0 0.5625rem;
    background-color: #679dd0;
    border-radius: 50%;
    cursor: pointer;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2c3c72;
}

.swiper-navigation {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.swiper-button {
    width: 3.125rem;
    height: 5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 3.125rem;
    flex: 0 0 3.125rem;
    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;
    position: absolute;
    top: 0;
}

.swiper-button svg {
    max-width: 100%;
}

.swiper-button-prev {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.swiper-button-next {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    right: 0;
}

.header {
    padding: 0.375rem;
    position: relative;
    z-index: 2;
}

._header-scroll .header__bodycont {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 60, 114, 0.98);
    padding: 0;
}

.menu-open ._header-scroll .header__bodycont {
    left: 0;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
}

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.875rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

._header-scroll .header__body {
    max-width: 25rem;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 1.125rem 2.75rem 1.6875rem 2.75rem;
    margin-left: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    overflow: auto;
    gap: 1.875rem;
}

.header__logo-ibg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

._header-scroll .header__logo-ibg {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    margin-bottom: 2.375rem;
}

.header__button {
    display: none;
}

._header-scroll .header__button {
    display: block;
    background-color: #cf5143;
    width: 100%;
}

.header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5625rem;
}

.header__socs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__soc {
    display: block;
    width: 2rem;
    height: 2rem;
}

.header__soc svg {
    width: 2rem;
    height: 2rem;
}

.header__soc svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header__mail {
    color: #2c3c72;
    font-family: FuturaLT;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: lowercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

._header-scroll .header__form {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

._header-scroll .menu {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.menu__iconcont {
    position: fixed;
    top: 1.1875rem;
    right: 1.25rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 5;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

._header-scroll .menu__iconcont {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 0.625rem;
}

._header-scroll .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 2.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 1.875rem;
}

.menu__link {
    color: #2c3c72;
    font-size: 1rem;
    line-height: 1.0625;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.icon-menu {
    display: block;
    z-index: 5;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    height: 0.125rem;
    right: 0.9375rem;
}

.icon-menu span {
    top: calc(50% - 0.0625rem);
}

.menu-open .icon-menu span {
    width: 0;
}

.menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.footer {
    background: #565656;
    color: #fff;
    padding-bottom: 0.625rem;
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.875rem;
    margin-bottom: 1.6875rem;
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1.25rem;
}

.footer__link {
    line-height: 1.05;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.875rem;
}

.footer__pol {
    color: #fff;
    text-decoration: underline;
    line-height: 1.1875;
}

.footer__copy {
    color: #fff;
    text-align: center;
    font-weight: 700;
    line-height: 1.1875;
    text-transform: uppercase;
    text-align: right;
}

.footer__info {
    max-width: 22.5rem;
    text-align: right;
    line-height: 1.1;
}

.feed__title {
    color: #fff;
}

.feed__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.875rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.feed__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.feed__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.feed__info {
    line-height: 1.0625;
    max-width: 28.75rem;
}

.feed__info a {
    text-decoration: underline;
}

.feed__right {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.feed__contacts {
    margin-bottom: 2.125rem;
}

.feed__contactsname {
    color: #fff;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 1.1428571429;
    text-transform: uppercase;
}

.feed__contactslink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.feed__contactslink svg {
    width: 1.5rem;
    height: 1.5625rem;
}

.feed__contactslink svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.feed__socsaddresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.feed__socs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    color: #fff;
    text-align: right;
    font-family: Futura LT;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.feed__soc {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.feed__soc svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.feed__address {
    color: #fff;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 1.1428571429;
    text-transform: uppercase;
}

.first {
    padding-top: 4.5625rem;
    padding-bottom: 14.8125rem;
    position: relative;
}

.first__container {
    position: relative;
    z-index: 1;
}

.first__title {
    max-width: 50rem;
    color: #2c3c72;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 103%;
    text-transform: uppercase;
}

.first__title-small {
    display: block;
}

.first__title-light {
    color: #629ace;
}

.first__subtitle {
    max-width: 33.0625rem;
    color: #565656;
    font-weight: 300;
    line-height: 1.5;
}

.first__button {
    background-color: #cf5143;
}

.first__bg-ibg {
    position: absolute;
    top: -3.125rem;
    left: 44%;
    -webkit-transform: translateX(-10%);
    -ms-transform: translateX(-10%);
    transform: translateX(-10%);
}
@media (max-width: 1825px) {
    .first__bg-ibg {
        left: 36%;
    }
}
@media (max-width: 1695px) {
    .first {
        margin-right: -15px;
        overflow: hidden;
    }
}

.first__bg-b {
    display: none;
}

.first__bg-s {
    display: none;
}

.activity {
    padding-top: 1.875rem;
    position: relative;
    z-index: 1;
}

.activity__title {
    margin-bottom: 1.875rem;
}

.activity__tabs-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 2px solid #6ea1d2;
}

.activity__tabs-title {
    color: #2c3c72;
    text-align: center;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    max-width: 23.75rem;
}

.activity__tabs-title._tab-active {
    color: #679dd0;
}

.activity__tabs-type {
    color: #2c3c72;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 128%;
    text-transform: uppercase;
    margin-bottom: 0.3125rem;
}

.activity__slider {
    padding: 0.9375rem;
}

.activity__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0.625rem;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(44, 60, 114, 0.5);
    box-shadow: 5px 5px 10px 0px rgba(44, 60, 114, 0.5);
    overflow: hidden;
    background-color: #fff;
}

.activity__image-ibg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24.375rem;
    flex: 0 0 24.375rem;
    height: 23.5rem;
}

.activity__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.activity__bottom {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.activity__name {
    color: #2c3c72;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
}

.activity__list {
    margin-bottom: 1rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    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;
}

.activity__item {
    color: #000;
    line-height: 155%;
    position: relative;
}

.activity__item::before {
    content: "";
    width: 0.1875rem;
    height: 0.1875rem;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
}

.activity__button {
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
}

.activity__swiper-navigation .swiper-button svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.work {
    border: 1px solid #679dd0;
    background: -webkit-gradient(linear, left top, left bottom, from(#2c3c72), to(#00124e));
    background: linear-gradient(180deg, #2c3c72 0%, #00124e 100%);
}

.work__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
}

.work__title {
    color: #fff;
}

.work__socs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8125rem;
}

.work__soc {
    display: block;
}

.work__soc svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.work__soc svg {
    width: 3.125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.work__row {
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    row-gap: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.work__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc((100% - 60px) / 3);
    flex: 0 1 calc((100% - 60px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.work__icon-ibg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.work__icon-ibg img {
    -o-object-fit: contain;
    object-fit: contain;
}

.work__text {
    color: #fff;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
    max-width: 13.75rem;
}

.work__buttoncont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5625rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dev__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dev__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#679dd0), to(#2c3c72));
    background: linear-gradient(180deg, #679dd0 0%, #2c3c72 100%);
}

.dev__text {
    color: #565656;
    font-weight: 700;
    line-height: 155%;
    text-transform: uppercase;
    max-width: 61.875rem;
}

.dev__text p {
    position: relative;
}

.dev__text p:not(:last-child) {
    margin-bottom: 2.1875rem;
}

.dev__text p::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: #2d3e74;
    top: 0;
}

.dev__text p:nth-child(1)::before {
    background-color: #669bce;
}

.dev__text p:nth-child(2)::before {
    background-color: #5e8ec2;
}

.dev__text p:nth-child(3)::before {
    background-color: #5681b5;
}

.dev__text p:nth-child(4)::before {
    background-color: #4e73a7;
}

.dev__text p:nth-child(5)::before {
    background-color: #45659a;
}

.dev__text p:nth-child(6)::before {
    background-color: #3d598e;
}

.dev__text p:nth-child(7)::before {
    background-color: #354b81;
}

.dev__text p:nth-child(8)::before {
    background-color: #2d3e74;
}

.dev__text p:last-child::before {
    bottom: 0;
    top: auto;
}

.dev__buttoncont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.projects {
    background: -webkit-gradient(linear, left top, left bottom, from(#2c3c72), to(#02144f));
    background: linear-gradient(180deg, #2c3c72 0%, #02144f 100%);
}

.projects__title {
    color: #fff;
}

.projects__slider {
    padding: 0.9375rem;
}

.projects__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0.625rem;
    overflow: hidden;
    background-color: #fff;
}

.projects__image-ibg {
    padding-top: 66.5%;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(white, #000);
    mask-image: radial-gradient(white, #000);
    z-index: 1;
}

.projects__image-ibg img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.projects__content {
    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-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-left: 1.125rem;
    padding-right: 1.125rem;
}

.projects__name {
    color: #2c3c72;
    font-family: FuturaLT;
    font-weight: 700;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    line-height: 155%;
    text-transform: uppercase;
}

.projects__item {
    color: #565656;
    line-height: 140%;
    position: relative;
}

.projects__item::before {
    content: "";
    width: 0.1875rem;
    height: 0.1875rem;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
}

.projects__button {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.projects__swiper-pagination {
    top: calc(100% + 25px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.projects__swiper-pagination::before {
    content: "";
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.projects__swiper-pagination .swiper-pagination-bullet {
    background-color: #fff;
}

.projects__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #679dd0;
}

.projects__navigation svg path {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.about__slider {
    padding: 0.9375rem;
}

.about__slide {
    border-radius: 0.625rem;
    background: #fff;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(44, 60, 114, 0.5);
    box-shadow: 5px 5px 10px 0px rgba(44, 60, 114, 0.5);
    overflow: hidden;
}

.about__top {
    background-color: #679dd0;
    font-family: FuturaLT;
    font-weight: 700;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.about__text {
    color: #565656;
    line-height: 155%;
}

.about__swiper-pagination {
    bottom: auto;
    top: calc(100% + 50px);
}

.swiper {
    overflow: hidden;
}

.swiper-initialized {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
    display: none !important;
}

@media (min-width: 47.99875em) {
    .feed__form {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 49.1875rem;
        flex: 0 1 49.1875rem;
    }

    .feed__right {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 22.8125rem;
        flex: 0 1 22.8125rem;
    }

    .feed__contactslink {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .activity__tabs-title-s {
        display: none;
    }

    .activity__tabs-type {
        display: none;
    }
}

@media (min-width: 61.99875em) {
    .icon-menu {
        background-color: #679dd0;
        position: relative;
        width: 3.75rem;
        height: 3.75rem;
        border-radius: 50%;
        -webkit-transition: background-color 0.3s;
        transition: background-color 0.3s;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        background-color: #fff;
        width: 1.875rem;
    }

    .icon-menu::before {
        top: 1.25rem;
    }

    .icon-menu::after {
        bottom: 1.25rem;
    }

    .feed__address {
        text-align: right;
    }

    .first__bg-b {
        display: block;
    }
}

@media (min-width: 61.99875em) and (any-hover: hover) {
    .icon-menu:hover {
        background-color: #4da898;
    }
}

@media (min-width: 77.5em) {
    .button {
        font-size: 1.25rem;
    }

    .button {
        padding-top: 1.375rem;
    }

    .button {
        padding-bottom: 1.375rem;
    }

    .button {
        padding-left: 1.375rem;
    }

    .button {
        padding-right: 1.375rem;
    }

    .input {
        padding-top: 0.625rem;
    }

    .input {
        padding-bottom: 0.3125rem;
    }

    .input {
        font-size: 1rem;
    }

    textarea.input {
        min-height: 6.25rem;
    }

    .popup__top {
        margin-bottom: 4.625rem;
    }

    .popup .popup__swiper-pagination {
        bottom: -1.875rem;
    }

    .popup__bottom {
        padding-left: 2.4375rem;
    }

    .popup__name {
        font-size: 1.25rem;
    }

    .popup__name {
        margin-bottom: 1.625rem;
    }

    .popup__item {
        font-size: 1rem;
    }

    .politic .popup__content {
        padding: 2.5rem;
    }

    .politic .politic__title {
        font-size: 1.875rem;
    }

    .politic .politic__title {
        margin-bottom: 2.5rem;
    }

    .politic .politic__content > ol > li {
        font-size: 1.25rem;
    }

    .politic .politic__content > ol > li {
        margin-bottom: 2.5rem;
    }

    .politic .politic__content > ol > li > ol > li {
        font-size: 1.25rem;
    }

    .politic .politic__content > ol > li > ol > li {
        margin-bottom: 1.875rem;
    }

    .politic .politic__content > ol > li > ol > li p:not(:last-child) {
        margin-bottom: 1.875rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .swiper-pagination {
        -webkit-column-gap: 1rem;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }

    .header {
        min-height: 6.8125rem;
    }

    .header__logo-ibg {
        width: 10rem;
    }

    .header__logo-ibg {
        -ms-flex-preferred-size: 10rem;
        flex-basis: 10rem;
    }

    .header__logo-ibg {
        height: 5.8125rem;
    }

    ._header-scroll .header__button {
        font-size: 1rem;
    }

    .menu__list {
        gap: 2.5rem;
    }

    .footer {
        padding-top: 6.25rem;
    }

    .footer__list {
        -webkit-column-gap: 5.25rem;
        -moz-column-gap: 5.25rem;
        column-gap: 5.25rem;
    }

    .footer__link {
        font-size: 1.25rem;
    }

    .footer__pol {
        font-size: 1rem;
    }

    .footer__copy {
        font-size: 1rem;
    }

    .footer__copy {
        margin-bottom: 1.1875rem;
    }

    .footer__info {
        font-size: 0.625rem;
    }

    .feed {
        margin-bottom: 7rem;
    }

    .feed__title {
        margin-bottom: 3.25rem;
    }

    .feed__rows {
        margin-bottom: 1.125rem;
    }

    .feed__row {
        gap: 0.75rem;
    }

    .feed__row:not(:last-child) {
        margin-bottom: 0.75rem;
    }

    .feed__bottom {
        gap: 1.625rem;
    }

    .feed__info {
        font-size: 1rem;
    }

    .feed__contactsblock:not(:last-child) {
        margin-bottom: 2.5625rem;
    }

    .feed__contactsname {
        font-size: 0.875rem;
    }

    .feed__contactsname {
        margin-bottom: 0.75rem;
    }

    .feed__contactslink {
        gap: 1.6875rem;
    }

    .feed__contactslink {
        font-size: 1.25rem;
    }

    .feed__socsaddresses {
        gap: 0.75rem;
    }

    .feed__socs {
        gap: 0.6875rem;
    }

    .feed__soc {
        width: 1.9375rem;
    }

    .feed__soc {
        height: 1.9375rem;
    }

    .feed__soc {
        -ms-flex-preferred-size: 1.9375rem;
        flex-basis: 1.9375rem;
    }

    .feed__soc svg {
        width: 1.9375rem;
    }

    .feed__soc svg {
        height: 1.9375rem;
    }

    .feed__address {
        font-size: 0.875rem;
    }

    .first__title {
        font-size: 4.375rem;
    }

    .first__title {
        margin-bottom: 2.625rem;
    }

    .first__title-small {
        font-size: 2.5rem;
    }

    .first__subtitle {
        font-size: 1.5rem;
    }

    .first__subtitle {
        margin-bottom: 3.1875rem;
    }

    .activity {
        padding-bottom: 7.375rem;
    }

    .activity__tabs-navigation {
        padding-bottom: 1.75rem;
    }

    .activity__tabs-navigation {
        margin-bottom: 3.125rem;
    }

    .activity__tabs-title {
        font-size: 1rem;
    }

    .activity__right {
        padding-bottom: 1.5rem;
    }

    .activity__bottom {
        padding-left: 2.0625rem;
    }

    .activity__bottom {
        padding-right: 1.9375rem;
    }

    .activity__name {
        padding-left: 2.0625rem;
    }

    .activity__name {
        padding-right: 1.9375rem;
    }

    .activity__name {
        padding-top: 1.875rem;
    }

    .activity__name {
        font-size: 1.25rem;
    }

    .activity__name {
        margin-bottom: 0.6875rem;
    }

    .activity__item {
        font-size: 1rem;
    }

    .activity__item {
        padding-left: 1.5rem;
    }

    .activity__item::before {
        left: 0.625rem;
    }

    .activity__item::before {
        top: 0.625rem;
    }

    .activity__button {
        padding-left: 2.8125rem;
    }

    .activity__button {
        padding-right: 2.8125rem;
    }

    .work {
        padding-top: 6.3125rem;
    }

    .work {
        padding-bottom: 6.25rem;
    }

    .work__top {
        margin-bottom: 3.125rem;
    }

    .work__soc svg {
        width: 3.125rem;
    }

    .work__soc svg {
        height: 3.125rem;
    }

    .work__soc svg {
        -ms-flex-preferred-size: 3.125rem;
        flex-basis: 3.125rem;
    }

    .work__row {
        margin-bottom: 3.125rem;
    }

    .work__item {
        gap: 1.875rem;
    }

    .work__icon-ibg {
        width: 7.375rem;
    }

    .work__icon-ibg {
        -ms-flex-preferred-size: 7.375rem;
        flex-basis: 7.375rem;
    }

    .work__icon-ibg {
        height: 6rem;
    }

    .work__text {
        font-size: 1rem;
    }

    .dev {
        padding-top: 6.25rem;
    }

    .dev {
        padding-bottom: 6.25rem;
    }

    .dev__title {
        margin-bottom: 3.375rem;
    }

    .dev__top {
        margin-bottom: 2.375rem;
    }

    .dev__image {
        -ms-flex-preferred-size: 0.25rem;
        flex-basis: 0.25rem;
    }

    .dev__image {
        width: 0.25rem;
    }

    .dev__text {
        font-size: 1.25rem;
    }

    .dev__text p {
        padding-left: 4.375rem;
    }

    .dev__text p::before {
        width: 1.875rem;
    }

    .dev__text p::before {
        height: 1.875rem;
    }

    .dev__text p::before {
        left: -1.0625rem;
    }

    .projects {
        padding-top: 5.625rem;
    }

    .projects {
        padding-bottom: 8.125rem;
    }

    .projects__title {
        margin-bottom: 5.8125rem;
    }

    .projects__content {
        padding-top: 1.25rem;
    }

    .projects__content {
        padding-bottom: 1.8125rem;
    }

    .projects__name {
        font-size: 1.125rem;
    }

    .projects__name {
        margin-bottom: 0.9375rem;
    }

    .projects__list {
        margin-bottom: 0.875rem;
    }

    .projects__item {
        font-size: 1rem;
    }

    .projects__item {
        padding-left: 1.5rem;
    }

    .projects__item::before {
        left: 0.625rem;
    }

    .projects__item::before {
        top: 0.625rem;
    }

    .projects__button {
        padding-left: 2.5rem;
    }

    .projects__button {
        padding-right: 2.5rem;
    }

    .about {
        padding-top: 6.25rem;
    }

    .about {
        padding-bottom: 8.75rem;
    }

    .about__title {
        margin-bottom: 3.375rem;
    }

    .about__top {
        padding-top: 1.8125rem;
    }

    .about__top {
        padding-left: 2.4375rem;
    }

    .about__top {
        padding-right: 2.1875rem;
    }

    .about__top {
        padding-bottom: 1.5rem;
    }

    .about__top {
        font-size: 1.25rem;
    }

    .about__text {
        font-size: 1rem;
    }

    .about__text {
        padding-top: 1.8125rem;
    }

    .about__text {
        padding-left: 2.4375rem;
    }

    .about__text {
        padding-right: 2.1875rem;
    }

    .about__text {
        padding-bottom: 2.75rem;
    }
}

@media (min-width: 90em) {
    .first__bg-ibg {
        width: 74.4375rem;
    }

    .first__bg-ibg {
        height: 60.3125rem;
    }
}

@media (max-width: 62em) {
    .menu__list {
        gap: 0.9375rem;
    }
}

@media (max-width: 20em) {
    .button {
        font-size: 0.6875rem;
    }

    .button {
        padding-top: 0.625rem;
    }

    .button {
        padding-bottom: 0.625rem;
    }

    .button {
        padding-left: 0.9375rem;
    }

    .button {
        padding-right: 0.9375rem;
    }

    .input {
        padding-top: 0.5rem;
    }

    .input {
        padding-bottom: 0.1875rem;
    }

    .input {
        font-size: 0.75rem;
    }

    textarea.input {
        min-height: 5.625rem;
    }

    .popup__top {
        margin-bottom: 3.125rem;
    }

    .popup .popup__swiper-pagination {
        bottom: -1.25rem;
    }

    .popup__bottom {
        padding-left: 1.25rem;
    }

    .popup__name {
        font-size: 0.875rem;
    }

    .popup__name {
        margin-bottom: 0.9375rem;
    }

    .popup__item {
        font-size: 0.75rem;
    }

    .politic .popup__content {
        padding: 0.9375rem;
    }

    .politic .politic__title {
        font-size: 1rem;
    }

    .politic .politic__title {
        margin-bottom: 1.25rem;
    }

    .politic .politic__content > ol > li {
        font-size: 1rem;
    }

    .politic .politic__content > ol > li {
        margin-bottom: 1.25rem;
    }

    .politic .politic__content > ol > li > ol > li {
        font-size: 1rem;
    }

    .politic .politic__content > ol > li > ol > li {
        margin-bottom: 0.625rem;
    }

    .politic .politic__content > ol > li > ol > li p:not(:last-child) {
        margin-bottom: 0.625rem;
    }

    .title {
        font-size: 1.25rem;
    }

    .swiper-pagination {
        -webkit-column-gap: 0.625rem;
        -moz-column-gap: 0.625rem;
        column-gap: 0.625rem;
    }

    .header {
        min-height: 3.625rem;
    }

    .header__logo-ibg {
        width: 5rem;
    }

    .header__logo-ibg {
        -ms-flex-preferred-size: 5rem;
        flex-basis: 5rem;
    }

    .header__logo-ibg {
        height: 2.875rem;
    }

    ._header-scroll .header__button {
        font-size: 0.75rem;
    }

    .footer {
        padding-top: 3.125rem;
    }

    .footer__list {
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }

    .footer__link {
        font-size: 0.75rem;
    }

    .footer__pol {
        font-size: 0.5rem;
    }

    .footer__copy {
        font-size: 0.625rem;
    }

    .footer__copy {
        margin-bottom: 0.8125rem;
    }

    .footer__info {
        font-size: 0.5rem;
    }

    .feed {
        margin-bottom: 2.6875rem;
    }

    .feed__title {
        margin-bottom: 1.3125rem;
    }

    .feed__rows {
        margin-bottom: 0.625rem;
    }

    .feed__row {
        gap: 0.4375rem;
    }

    .feed__row:not(:last-child) {
        margin-bottom: 0.4375rem;
    }

    .feed__bottom {
        gap: 0.875rem;
    }

    .feed__info {
        font-size: 0.5rem;
    }

    .feed__contactsblock:not(:last-child) {
        margin-bottom: 1.625rem;
    }

    .feed__contactsname {
        font-size: 0.625rem;
    }

    .feed__contactsname {
        margin-bottom: 0.625rem;
    }

    .feed__contactslink {
        gap: 0.625rem;
    }

    .feed__contactslink {
        font-size: 1rem;
    }

    .feed__socsaddresses {
        gap: 0.4375rem;
    }

    .feed__socs {
        gap: 0.3125rem;
    }

    .feed__soc {
        width: 1.375rem;
    }

    .feed__soc {
        height: 1.375rem;
    }

    .feed__soc {
        -ms-flex-preferred-size: 1.375rem;
        flex-basis: 1.375rem;
    }

    .feed__soc svg {
        width: 1.375rem;
    }

    .feed__soc svg {
        height: 1.375rem;
    }

    .feed__address {
        font-size: 0.625rem;
    }

    .first__title {
        font-size: 1.25rem;
    }

    .first__title {
        margin-bottom: 0.875rem;
    }

    .first__title-small {
        font-size: 1.25rem;
    }

    .first__subtitle {
        font-size: 0.75rem;
    }

    .first__subtitle {
        margin-bottom: 0.875rem;
    }

    .activity {
        padding-bottom: 2.25rem;
    }

    .activity__tabs-navigation {
        padding-bottom: 0.75rem;
    }

    .activity__tabs-navigation {
        margin-bottom: 1.25rem;
    }

    .activity__tabs-title {
        font-size: 0.875rem;
    }

    .activity__right {
        padding-bottom: 1.125rem;
    }

    .activity__bottom {
        padding-left: 1.1875rem;
    }

    .activity__bottom {
        padding-right: 1.25rem;
    }

    .activity__name {
        padding-left: 1.1875rem;
    }

    .activity__name {
        padding-right: 1.25rem;
    }

    .activity__name {
        padding-top: 1rem;
    }

    .activity__name {
        font-size: 0.875rem;
    }

    .activity__name {
        margin-bottom: 1.0625rem;
    }

    .activity__item {
        font-size: 0.75rem;
    }

    .activity__item {
        padding-left: 1.125rem;
    }

    .activity__item::before {
        left: 0.5rem;
    }

    .activity__item::before {
        top: 0.4375rem;
    }

    .activity__button {
        padding-left: 0.9375rem;
    }

    .activity__button {
        padding-right: 0.9375rem;
    }

    .work {
        padding-top: 3.125rem;
    }

    .work {
        padding-bottom: 3.125rem;
    }

    .work__top {
        margin-bottom: 1.5rem;
    }

    .work__soc svg {
        width: 1.5625rem;
    }

    .work__soc svg {
        height: 1.5625rem;
    }

    .work__soc svg {
        -ms-flex-preferred-size: 1.5625rem;
        flex-basis: 1.5625rem;
    }

    .work__row {
        margin-bottom: 1.75rem;
    }

    .work__item {
        gap: 0.625rem;
    }

    .work__icon-ibg {
        width: 3.75rem;
    }

    .work__icon-ibg {
        -ms-flex-preferred-size: 3.75rem;
        flex-basis: 3.75rem;
    }

    .work__icon-ibg {
        height: 2.8125rem;
    }

    .work__text {
        font-size: 0.75rem;
    }

    .dev {
        padding-top: 3.125rem;
    }

    .dev {
        padding-bottom: 3.125rem;
    }

    .dev__title {
        margin-bottom: 1.25rem;
    }

    .dev__top {
        margin-bottom: 1.75rem;
    }

    .dev__image {
        -ms-flex-preferred-size: 0.0625rem;
        flex-basis: 0.0625rem;
    }

    .dev__image {
        width: 0.0625rem;
    }

    .dev__text {
        font-size: 0.75rem;
    }

    .dev__text p {
        padding-left: 0.9375rem;
    }

    .dev__text p::before {
        width: 0.9375rem;
    }

    .dev__text p::before {
        height: 0.9375rem;
    }

    .dev__text p::before {
        left: -0.5rem;
    }

    .projects {
        padding-top: 3.125rem;
    }

    .projects {
        padding-bottom: 3.125rem;
    }

    .projects__title {
        margin-bottom: 1.4375rem;
    }

    .projects__content {
        padding-top: 1rem;
    }

    .projects__content {
        padding-bottom: 1.5rem;
    }

    .projects__name {
        font-size: 0.875rem;
    }

    .projects__name {
        margin-bottom: 0.0000000625rem;
    }

    .projects__list {
        margin-bottom: 0.4375rem;
    }

    .projects__item {
        font-size: 0.75rem;
    }

    .projects__item {
        padding-left: 1.125rem;
    }

    .projects__item::before {
        left: 0.5rem;
    }

    .projects__item::before {
        top: 0.4375rem;
    }

    .projects__button {
        padding-left: 1.25rem;
    }

    .projects__button {
        padding-right: 1.25rem;
    }

    .about {
        padding-top: 3.125rem;
    }

    .about {
        padding-bottom: 2.1875rem;
    }

    .about__title {
        margin-bottom: 1.875rem;
    }

    .about__top {
        padding-top: 1.25rem;
    }

    .about__top {
        padding-left: 1.5rem;
    }

    .about__top {
        padding-right: 1.5rem;
    }

    .about__top {
        padding-bottom: 0.9375rem;
    }

    .about__top {
        font-size: 0.875rem;
    }

    .about__text {
        font-size: 0.75rem;
    }

    .about__text {
        padding-top: 1.25rem;
    }

    .about__text {
        padding-left: 1.5rem;
    }

    .about__text {
        padding-right: 1.5rem;
    }

    .about__text {
        padding-bottom: 1.5625rem;
    }
}

@media (max-width: 77.5em) {
    .header__body {
        gap: 0.625rem;
    }
}

@media (max-width: 61.99875em) {
    .header {
        background: rgba(243, 243, 243, 0.9);
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
    }

    .header__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 1.25rem;
        width: 100%;
    }

    .header__bodycont::before {
        content: "";
        position: fixed;
        width: 100%;
        background-color: #fff;
        left: 100%;
        top: 0;
        height: 6.25rem;
    }

    .menu-open .header__bodycont::before {
        left: 0;
        -webkit-transition: left 0.3s;
        transition: left 0.3s;
    }

    ._header-scroll .header__body {
        padding-top: 8.125rem;
        max-width: none;
    }

    ._header-scroll .header__logo-ibg {
        margin-bottom: 0rem;
    }

    .menu__iconcont {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        position: relative;
        top: auto;
        right: auto;
    }

    .icon-menu {
        width: 1.375rem;
        height: 1rem;
        position: relative;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        content: "";
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        background-color: #2c3c72;
    }

    .icon-menu::before {
        top: 0;
    }

    .icon-menu::after {
        bottom: 0;
    }

    .feed__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .first {
        padding-top: 9.375rem;
        padding-bottom: 11.25rem;
    }

    .first__bg-ibg {
        height: 41rem;
        width: 23.75rem;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        left: auto;
        right: 0;
    }

    .first__bg-s {
        display: block;
    }

    .activity__slide {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .activity__image-ibg {
        display: none;
    }

    .activity__right {
        width: 100%;
    }

    .work__soc svg {
        gap: 0.375rem;
    }

    .work__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 30px) / 2);
        flex: 0 1 calc((100% - 30px) / 2);
    }
}

@media (max-width: 61.99875em) and (max-width: 20em) {
    .first__bg-ibg {
        top: 1.875rem;
    }
}

@media (max-width: 47.99875em) {
    .politic ol li {
        text-indent: 2.5rem;
    }

    .politic li:before {
        left: -2.5rem;
    }

    .slidercont {
        padding: 0;
    }

    .swiper-pagination {
        top: calc(100% + 15px);
        position: relative;
        margin-top: 0.9375rem;
    }

    .swiper-navigation {
        display: none;
    }

    .footer__top {
        margin-bottom: 2.6875rem;
    }

    .footer__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer__pol {
        text-align: center;
    }

    .footer__copy {
        text-align: center;
    }

    .footer__info {
        text-align: center;
    }

    .feed__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .feed__socsaddresses {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .feed__socs {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    .first__title {
        max-width: 16.3125rem;
    }

    .first__subtitle {
        max-width: 20.9375rem;
    }

    .activity {
        padding-bottom: 2.1875rem;
    }

    .activity__tabs-title-b {
        display: none;
    }

    .activity__slider {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
    }

    .activity__name {
        padding-bottom: 0.8125rem;
        padding-top: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        color: #fff;
        background-color: #679dd0;
    }

    .work__row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        row-gap: 1.875rem;
    }

    .projects {
        padding-bottom: 3.125rem;
    }

    .projects__slider {
        padding: 0;
    }

    .about {
        padding-bottom: 2.1875rem;
    }

    .about__slider {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
    }

    .about__swiper-pagination {
        top: calc(100% + 17px);
    }
}

@media (max-width: 33.125em) {
    .work__item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}

@media (max-width: 29.99875em) {
    .first {
        padding-bottom: 18.125rem;
    }

    .first__subtitle {
        max-width: 14.6875rem;
    }
}

@media (min-width: 20em) and (max-width: 77.5em) {
    @supports (font-size: clamp(0.6875rem, 0.4918478261rem + 0.9782608696vw, 1.25rem)) {
        .button {
            font-size: clamp(0.6875rem, 0.4918478261rem + 0.9782608696vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.6875rem, 0.4918478261rem + 0.9782608696vw, 1.25rem)) {
        .button {
            font-size: calc(0.6875rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem)) {
        .button {
            padding-top: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem);
        }
    }

    @supports not (padding-top: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem)) {
        .button {
            padding-top: calc(0.625rem + 0.75 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem)) {
        .button {
            padding-bottom: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem);
        }
    }

    @supports not (padding-bottom: clamp(0.625rem, 0.3641304348rem + 1.3043478261vw, 1.375rem)) {
        .button {
            padding-bottom: calc(0.625rem + 0.75 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem)) {
        .button {
            padding-left: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem);
        }
    }

    @supports not (padding-left: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem)) {
        .button {
            padding-left: calc(0.9375rem + 0.4375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem)) {
        .button {
            padding-right: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem);
        }
    }

    @supports not (padding-right: clamp(0.9375rem, 0.785326087rem + 0.7608695652vw, 1.375rem)) {
        .button {
            padding-right: calc(0.9375rem + 0.4375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .input {
            padding-top: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem);
        }
    }

    @supports not (padding-top: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .input {
            padding-top: calc(0.5rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(0.1875rem, 0.1440217391rem + 0.2173913043vw, 0.3125rem)) {
        .input {
            padding-bottom: clamp(0.1875rem, 0.1440217391rem + 0.2173913043vw, 0.3125rem);
        }
    }

    @supports not (padding-bottom: clamp(0.1875rem, 0.1440217391rem + 0.2173913043vw, 0.3125rem)) {
        .input {
            padding-bottom: calc(0.1875rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .input {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .input {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (min-height: clamp(5.625rem, 5.4076086957rem + 1.0869565217vw, 6.25rem)) {
        textarea.input {
            min-height: clamp(5.625rem, 5.4076086957rem + 1.0869565217vw, 6.25rem);
        }
    }

    @supports not (min-height: clamp(5.625rem, 5.4076086957rem + 1.0869565217vw, 6.25rem)) {
        textarea.input {
            min-height: calc(5.625rem + 0.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(3.125rem, 2.6032608696rem + 2.6086956522vw, 4.625rem)) {
        .popup__top {
            margin-bottom: clamp(3.125rem, 2.6032608696rem + 2.6086956522vw, 4.625rem);
        }
    }

    @supports not (margin-bottom: clamp(3.125rem, 2.6032608696rem + 2.6086956522vw, 4.625rem)) {
        .popup__top {
            margin-bottom: calc(3.125rem + 1.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (bottom: clamp(-1.875rem, -1.0326086957rem + -1.0869565217vw, -1.25rem)) {
        .popup .popup__swiper-pagination {
            bottom: clamp(-1.875rem, -1.0326086957rem + -1.0869565217vw, -1.25rem);
        }
    }

    @supports not (bottom: clamp(-1.875rem, -1.0326086957rem + -1.0869565217vw, -1.25rem)) {
        .popup .popup__swiper-pagination {
            bottom: calc(-1.25rem + -0.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.25rem, 0.8369565217rem + 2.0652173913vw, 2.4375rem)) {
        .popup__bottom {
            padding-left: clamp(1.25rem, 0.8369565217rem + 2.0652173913vw, 2.4375rem);
        }
    }

    @supports not (padding-left: clamp(1.25rem, 0.8369565217rem + 2.0652173913vw, 2.4375rem)) {
        .popup__bottom {
            padding-left: calc(1.25rem + 1.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .popup__name {
            font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .popup__name {
            font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.9375rem, 0.6983695652rem + 1.1956521739vw, 1.625rem)) {
        .popup__name {
            margin-bottom: clamp(0.9375rem, 0.6983695652rem + 1.1956521739vw, 1.625rem);
        }
    }

    @supports not (margin-bottom: clamp(0.9375rem, 0.6983695652rem + 1.1956521739vw, 1.625rem)) {
        .popup__name {
            margin-bottom: calc(0.9375rem + 0.6875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .popup__item {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .popup__item {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding: clamp(0.9375rem, 0.3940217391rem + 2.7173913043vw, 2.5rem)) {
        .politic .popup__content {
            padding: clamp(0.9375rem, 0.3940217391rem + 2.7173913043vw, 2.5rem);
        }
    }

    @supports not (padding: clamp(0.9375rem, 0.3940217391rem + 2.7173913043vw, 2.5rem)) {
        .politic .popup__content {
            padding: calc(0.9375rem + 1.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem)) {
        .politic .politic__title {
            font-size: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem);
        }
    }

    @supports not (font-size: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem)) {
        .politic .politic__title {
            font-size: calc(1rem + 0.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .politic .politic__title {
            margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .politic .politic__title {
            margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .politic .politic__content > ol > li {
            font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .politic .politic__content > ol > li {
            font-size: calc(1rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .politic .politic__content > ol > li {
            margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (margin-bottom: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .politic .politic__content > ol > li {
            margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .politic .politic__content > ol > li > ol > li {
            font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .politic .politic__content > ol > li > ol > li {
            font-size: calc(1rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .politic .politic__content > ol > li > ol > li {
            margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem);
        }
    }

    @supports not (margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .politic .politic__content > ol > li > ol > li {
            margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .politic .politic__content > ol > li > ol > li p:not(:last-child) {
            margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem);
        }
    }

    @supports not (margin-bottom: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .politic .politic__content > ol > li > ol > li p:not(:last-child) {
            margin-bottom: calc(0.625rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .title {
            font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .title {
            font-size: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (
        (-moz-column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem)) or
            (column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem))
    ) {
        .swiper-pagination {
            -webkit-column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem);
            -moz-column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem);
            column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem);
        }
    }

    @supports not (
        (-moz-column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem)) or
            (column-gap: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem))
    ) {
        .swiper-pagination {
            -webkit-column-gap: calc(0.625rem + 0.375 * (100vw - 20rem) / 57.5);
            -moz-column-gap: calc(0.625rem + 0.375 * (100vw - 20rem) / 57.5);
            column-gap: calc(0.625rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (min-height: clamp(3.625rem, 2.5163043478rem + 5.5434782609vw, 6.8125rem)) {
        .header {
            min-height: clamp(3.625rem, 2.5163043478rem + 5.5434782609vw, 6.8125rem);
        }
    }

    @supports not (min-height: clamp(3.625rem, 2.5163043478rem + 5.5434782609vw, 6.8125rem)) {
        .header {
            min-height: calc(3.625rem + 3.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem)) {
        .header__logo-ibg {
            width: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem);
        }
    }

    @supports not (width: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem)) {
        .header__logo-ibg {
            width: calc(5rem + 5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (flex-basis: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem)) {
        .header__logo-ibg {
            -ms-flex-preferred-size: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem);
            flex-basis: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem);
        }
    }

    @supports not (flex-basis: clamp(5rem, 3.2608695652rem + 8.6956521739vw, 10rem)) {
        .header__logo-ibg {
            -ms-flex-preferred-size: calc(5rem + 5 * (100vw - 20rem) / 57.5);
            flex-basis: calc(5rem + 5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(2.875rem, 1.8532608696rem + 5.1086956522vw, 5.8125rem)) {
        .header__logo-ibg {
            height: clamp(2.875rem, 1.8532608696rem + 5.1086956522vw, 5.8125rem);
        }
    }

    @supports not (height: clamp(2.875rem, 1.8532608696rem + 5.1086956522vw, 5.8125rem)) {
        .header__logo-ibg {
            height: calc(2.875rem + 2.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        ._header-scroll .header__button {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        ._header-scroll .header__button {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .footer {
            padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem);
        }
    }

    @supports not (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .footer {
            padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (
        (-moz-column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem)) or
            (column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem))
    ) {
        .footer__list {
            -webkit-column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem);
            -moz-column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem);
            column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem);
        }
    }

    @supports not (
        (-moz-column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem)) or
            (column-gap: clamp(1.25rem, -0.1413043478rem + 6.9565217391vw, 5.25rem))
    ) {
        .footer__list {
            -webkit-column-gap: calc(1.25rem + 4 * (100vw - 20rem) / 57.5);
            -moz-column-gap: calc(1.25rem + 4 * (100vw - 20rem) / 57.5);
            column-gap: calc(1.25rem + 4 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem)) {
        .footer__link {
            font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem)) {
        .footer__link {
            font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem)) {
        .footer__pol {
            font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem)) {
        .footer__pol {
            font-size: calc(0.5rem + 0.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem)) {
        .footer__copy {
            font-size: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.625rem, 0.4945652174rem + 0.652173913vw, 1rem)) {
        .footer__copy {
            font-size: calc(0.625rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.8125rem, 0.6820652174rem + 0.652173913vw, 1.1875rem)) {
        .footer__copy {
            margin-bottom: clamp(0.8125rem, 0.6820652174rem + 0.652173913vw, 1.1875rem);
        }
    }

    @supports not (margin-bottom: clamp(0.8125rem, 0.6820652174rem + 0.652173913vw, 1.1875rem)) {
        .footer__copy {
            margin-bottom: calc(0.8125rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .footer__info {
            font-size: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem);
        }
    }

    @supports not (font-size: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .footer__info {
            font-size: calc(0.5rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(2.6875rem, 1.1875rem + 7.5vw, 7rem)) {
        .feed {
            margin-bottom: clamp(2.6875rem, 1.1875rem + 7.5vw, 7rem);
        }
    }

    @supports not (margin-bottom: clamp(2.6875rem, 1.1875rem + 7.5vw, 7rem)) {
        .feed {
            margin-bottom: calc(2.6875rem + 4.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.3125rem, 0.6385869565rem + 3.3695652174vw, 3.25rem)) {
        .feed__title {
            margin-bottom: clamp(1.3125rem, 0.6385869565rem + 3.3695652174vw, 3.25rem);
        }
    }

    @supports not (margin-bottom: clamp(1.3125rem, 0.6385869565rem + 3.3695652174vw, 3.25rem)) {
        .feed__title {
            margin-bottom: calc(1.3125rem + 1.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.625rem, 0.4510869565rem + 0.8695652174vw, 1.125rem)) {
        .feed__rows {
            margin-bottom: clamp(0.625rem, 0.4510869565rem + 0.8695652174vw, 1.125rem);
        }
    }

    @supports not (margin-bottom: clamp(0.625rem, 0.4510869565rem + 0.8695652174vw, 1.125rem)) {
        .feed__rows {
            margin-bottom: calc(0.625rem + 0.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__row {
            gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem);
        }
    }

    @supports not (gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__row {
            gap: calc(0.4375rem + 0.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__row:not(:last-child) {
            margin-bottom: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem);
        }
    }

    @supports not (margin-bottom: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__row:not(:last-child) {
            margin-bottom: calc(0.4375rem + 0.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.875rem, 0.6141304348rem + 1.3043478261vw, 1.625rem)) {
        .feed__bottom {
            gap: clamp(0.875rem, 0.6141304348rem + 1.3043478261vw, 1.625rem);
        }
    }

    @supports not (gap: clamp(0.875rem, 0.6141304348rem + 1.3043478261vw, 1.625rem)) {
        .feed__bottom {
            gap: calc(0.875rem + 0.75 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem)) {
        .feed__info {
            font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.5rem, 0.3260869565rem + 0.8695652174vw, 1rem)) {
        .feed__info {
            font-size: calc(0.5rem + 0.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.625rem, 1.2989130435rem + 1.6304347826vw, 2.5625rem)) {
        .feed__contactsblock:not(:last-child) {
            margin-bottom: clamp(1.625rem, 1.2989130435rem + 1.6304347826vw, 2.5625rem);
        }
    }

    @supports not (margin-bottom: clamp(1.625rem, 1.2989130435rem + 1.6304347826vw, 2.5625rem)) {
        .feed__contactsblock:not(:last-child) {
            margin-bottom: calc(1.625rem + 0.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem)) {
        .feed__contactsname {
            font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem);
        }
    }

    @supports not (font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem)) {
        .feed__contactsname {
            font-size: calc(0.625rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.625rem, 0.5815217391rem + 0.2173913043vw, 0.75rem)) {
        .feed__contactsname {
            margin-bottom: clamp(0.625rem, 0.5815217391rem + 0.2173913043vw, 0.75rem);
        }
    }

    @supports not (margin-bottom: clamp(0.625rem, 0.5815217391rem + 0.2173913043vw, 0.75rem)) {
        .feed__contactsname {
            margin-bottom: calc(0.625rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.625rem, 0.2554347826rem + 1.847826087vw, 1.6875rem)) {
        .feed__contactslink {
            gap: clamp(0.625rem, 0.2554347826rem + 1.847826087vw, 1.6875rem);
        }
    }

    @supports not (gap: clamp(0.625rem, 0.2554347826rem + 1.847826087vw, 1.6875rem)) {
        .feed__contactslink {
            gap: calc(0.625rem + 1.0625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .feed__contactslink {
            font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .feed__contactslink {
            font-size: calc(1rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__socsaddresses {
            gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem);
        }
    }

    @supports not (gap: clamp(0.4375rem, 0.3288043478rem + 0.5434782609vw, 0.75rem)) {
        .feed__socsaddresses {
            gap: calc(0.4375rem + 0.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.3125rem, 0.1820652174rem + 0.652173913vw, 0.6875rem)) {
        .feed__socs {
            gap: clamp(0.3125rem, 0.1820652174rem + 0.652173913vw, 0.6875rem);
        }
    }

    @supports not (gap: clamp(0.3125rem, 0.1820652174rem + 0.652173913vw, 0.6875rem)) {
        .feed__socs {
            gap: calc(0.3125rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
        }
    }

    @supports not (width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            width: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
        }
    }

    @supports not (height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            height: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (flex-basis: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            -ms-flex-preferred-size: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
            flex-basis: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
        }
    }

    @supports not (flex-basis: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc {
            -ms-flex-preferred-size: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
            flex-basis: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc svg {
            width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
        }
    }

    @supports not (width: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc svg {
            width: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc svg {
            height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem);
        }
    }

    @supports not (height: clamp(1.375rem, 1.1793478261rem + 0.9782608696vw, 1.9375rem)) {
        .feed__soc svg {
            height: calc(1.375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem)) {
        .feed__address {
            font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem);
        }
    }

    @supports not (font-size: clamp(0.625rem, 0.5380434783rem + 0.4347826087vw, 0.875rem)) {
        .feed__address {
            font-size: calc(0.625rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1.25rem, 0.1630434783rem + 5.4347826087vw, 4.375rem)) {
        .first__title {
            font-size: clamp(1.25rem, 0.1630434783rem + 5.4347826087vw, 4.375rem);
        }
    }

    @supports not (font-size: clamp(1.25rem, 0.1630434783rem + 5.4347826087vw, 4.375rem)) {
        .first__title {
            font-size: calc(1.25rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.875rem, -0.777173913rem + 8.2608695652vw, 5.625rem)) {
        .first__title {
            margin-bottom: clamp(0.875rem, -0.777173913rem + 8.2608695652vw, 5.625rem);
        }
    }

    @supports not (margin-bottom: clamp(0.875rem, -0.777173913rem + 8.2608695652vw, 5.625rem)) {
        .first__title {
            margin-bottom: calc(0.875rem + 4.75 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .first__title-small {
            font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (font-size: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .first__title-small {
            font-size: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.4891304348rem + 1.3043478261vw, 1.5rem)) {
        .first__subtitle {
            font-size: clamp(0.75rem, 0.4891304348rem + 1.3043478261vw, 1.5rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.4891304348rem + 1.3043478261vw, 1.5rem)) {
        .first__subtitle {
            font-size: calc(0.75rem + 0.75 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.875rem, 0.0706521739rem + 4.0217391304vw, 3.1875rem)) {
        .first__subtitle {
            margin-bottom: clamp(0.875rem, 0.0706521739rem + 4.0217391304vw, 3.1875rem);
        }
    }

    @supports not (margin-bottom: clamp(0.875rem, 0.0706521739rem + 4.0217391304vw, 3.1875rem)) {
        .first__subtitle {
            margin-bottom: calc(0.875rem + 2.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(2.25rem, 0.4673913043rem + 8.9130434783vw, 7.375rem)) {
        .activity {
            padding-bottom: clamp(2.25rem, 0.4673913043rem + 8.9130434783vw, 7.375rem);
        }
    }

    @supports not (padding-bottom: clamp(2.25rem, 0.4673913043rem + 8.9130434783vw, 7.375rem)) {
        .activity {
            padding-bottom: calc(2.25rem + 5.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(0.75rem, 0.402173913rem + 1.7391304348vw, 1.75rem)) {
        .activity__tabs-navigation {
            padding-bottom: clamp(0.75rem, 0.402173913rem + 1.7391304348vw, 1.75rem);
        }
    }

    @supports not (padding-bottom: clamp(0.75rem, 0.402173913rem + 1.7391304348vw, 1.75rem)) {
        .activity__tabs-navigation {
            padding-bottom: calc(0.75rem + 1 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.25rem, 0.597826087rem + 3.2608695652vw, 3.125rem)) {
        .activity__tabs-navigation {
            margin-bottom: clamp(1.25rem, 0.597826087rem + 3.2608695652vw, 3.125rem);
        }
    }

    @supports not (margin-bottom: clamp(1.25rem, 0.597826087rem + 3.2608695652vw, 3.125rem)) {
        .activity__tabs-navigation {
            margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.875rem, 0.8315217391rem + 0.2173913043vw, 1rem)) {
        .activity__tabs-title {
            font-size: clamp(0.875rem, 0.8315217391rem + 0.2173913043vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.8315217391rem + 0.2173913043vw, 1rem)) {
        .activity__tabs-title {
            font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .activity__right {
            padding-bottom: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem);
        }
    }

    @supports not (padding-bottom: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .activity__right {
            padding-bottom: calc(1.125rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem)) {
        .activity__bottom {
            padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem);
        }
    }

    @supports not (padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem)) {
        .activity__bottom {
            padding-left: calc(1.1875rem + 0.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem)) {
        .activity__bottom {
            padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem);
        }
    }

    @supports not (padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem)) {
        .activity__bottom {
            padding-right: calc(1.25rem + 0.6875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem)) {
        .activity__name {
            padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem);
        }
    }

    @supports not (padding-left: clamp(1.1875rem, 0.8831521739rem + 1.5217391304vw, 2.0625rem)) {
        .activity__name {
            padding-left: calc(1.1875rem + 0.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem)) {
        .activity__name {
            padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem);
        }
    }

    @supports not (padding-right: clamp(1.25rem, 1.0108695652rem + 1.1956521739vw, 1.9375rem)) {
        .activity__name {
            padding-right: calc(1.25rem + 0.6875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem)) {
        .activity__name {
            padding-top: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem);
        }
    }

    @supports not (padding-top: clamp(1rem, 0.6956521739rem + 1.5217391304vw, 1.875rem)) {
        .activity__name {
            padding-top: calc(1rem + 0.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .activity__name {
            font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .activity__name {
            font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.6875rem, 1.1929347826rem + -0.652173913vw, 1.0625rem)) {
        .activity__name {
            margin-bottom: clamp(0.6875rem, 1.1929347826rem + -0.652173913vw, 1.0625rem);
        }
    }

    @supports not (margin-bottom: clamp(0.6875rem, 1.1929347826rem + -0.652173913vw, 1.0625rem)) {
        .activity__name {
            margin-bottom: calc(1.0625rem + -0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .activity__item {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .activity__item {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .activity__item {
            padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem);
        }
    }

    @supports not (padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .activity__item {
            padding-left: calc(1.125rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .activity__item::before {
            left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem);
        }
    }

    @supports not (left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .activity__item::before {
            left: calc(0.5rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem)) {
        .activity__item::before {
            top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem);
        }
    }

    @supports not (top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem)) {
        .activity__item::before {
            top: calc(0.4375rem + 0.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem)) {
        .activity__button {
            padding-left: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem);
        }
    }

    @supports not (padding-left: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem)) {
        .activity__button {
            padding-left: calc(0.9375rem + 1.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem)) {
        .activity__button {
            padding-right: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem);
        }
    }

    @supports not (padding-right: clamp(0.9375rem, 0.285326087rem + 3.2608695652vw, 2.8125rem)) {
        .activity__button {
            padding-right: calc(0.9375rem + 1.875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(3.125rem, 2.0163043478rem + 5.5434782609vw, 6.3125rem)) {
        .work {
            padding-top: clamp(3.125rem, 2.0163043478rem + 5.5434782609vw, 6.3125rem);
        }
    }

    @supports not (padding-top: clamp(3.125rem, 2.0163043478rem + 5.5434782609vw, 6.3125rem)) {
        .work {
            padding-top: calc(3.125rem + 3.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .work {
            padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem);
        }
    }

    @supports not (padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .work {
            padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.5rem, 0.9347826087rem + 2.8260869565vw, 3.125rem)) {
        .work__top {
            margin-bottom: clamp(1.5rem, 0.9347826087rem + 2.8260869565vw, 3.125rem);
        }
    }

    @supports not (margin-bottom: clamp(1.5rem, 0.9347826087rem + 2.8260869565vw, 3.125rem)) {
        .work__top {
            margin-bottom: calc(1.5rem + 1.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            width: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem);
        }
    }

    @supports not (width: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            width: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            height: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem);
        }
    }

    @supports not (height: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            height: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (flex-basis: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            -ms-flex-preferred-size: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem);
            flex-basis: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem);
        }
    }

    @supports not (flex-basis: clamp(1.5625rem, 1.0190217391rem + 2.7173913043vw, 3.125rem)) {
        .work__soc svg {
            -ms-flex-preferred-size: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 57.5);
            flex-basis: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.75rem, 1.2717391304rem + 2.3913043478vw, 3.125rem)) {
        .work__row {
            margin-bottom: clamp(1.75rem, 1.2717391304rem + 2.3913043478vw, 3.125rem);
        }
    }

    @supports not (margin-bottom: clamp(1.75rem, 1.2717391304rem + 2.3913043478vw, 3.125rem)) {
        .work__row {
            margin-bottom: calc(1.75rem + 1.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (gap: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .work__item {
            gap: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem);
        }
    }

    @supports not (gap: clamp(0.625rem, 0.1902173913rem + 2.1739130435vw, 1.875rem)) {
        .work__item {
            gap: calc(0.625rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem)) {
        .work__icon-ibg {
            width: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem);
        }
    }

    @supports not (width: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem)) {
        .work__icon-ibg {
            width: calc(3.75rem + 3.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (flex-basis: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem)) {
        .work__icon-ibg {
            -ms-flex-preferred-size: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem);
            flex-basis: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem);
        }
    }

    @supports not (flex-basis: clamp(3.75rem, 2.4891304348rem + 6.3043478261vw, 7.375rem)) {
        .work__icon-ibg {
            -ms-flex-preferred-size: calc(3.75rem + 3.625 * (100vw - 20rem) / 57.5);
            flex-basis: calc(3.75rem + 3.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(2.8125rem, 1.7038043478rem + 5.5434782609vw, 6rem)) {
        .work__icon-ibg {
            height: clamp(2.8125rem, 1.7038043478rem + 5.5434782609vw, 6rem);
        }
    }

    @supports not (height: clamp(2.8125rem, 1.7038043478rem + 5.5434782609vw, 6rem)) {
        .work__icon-ibg {
            height: calc(2.8125rem + 3.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .work__text {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .work__text {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .dev {
            padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem);
        }
    }

    @supports not (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .dev {
            padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .dev {
            padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem);
        }
    }

    @supports not (padding-bottom: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .dev {
            padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.25rem, 0.5108695652rem + 3.6956521739vw, 3.375rem)) {
        .dev__title {
            margin-bottom: clamp(1.25rem, 0.5108695652rem + 3.6956521739vw, 3.375rem);
        }
    }

    @supports not (margin-bottom: clamp(1.25rem, 0.5108695652rem + 3.6956521739vw, 3.375rem)) {
        .dev__title {
            margin-bottom: calc(1.25rem + 2.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.75rem, 1.5326086957rem + 1.0869565217vw, 2.375rem)) {
        .dev__top {
            margin-bottom: clamp(1.75rem, 1.5326086957rem + 1.0869565217vw, 2.375rem);
        }
    }

    @supports not (margin-bottom: clamp(1.75rem, 1.5326086957rem + 1.0869565217vw, 2.375rem)) {
        .dev__top {
            margin-bottom: calc(1.75rem + 0.625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (flex-basis: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem)) {
        .dev__image {
            -ms-flex-preferred-size: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem);
            flex-basis: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem);
        }
    }

    @supports not (flex-basis: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem)) {
        .dev__image {
            -ms-flex-preferred-size: calc(0.0625rem + 0.1875 * (100vw - 20rem) / 57.5);
            flex-basis: calc(0.0625rem + 0.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem)) {
        .dev__image {
            width: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem);
        }
    }

    @supports not (width: clamp(0.0625rem, -0.0027173913rem + 0.3260869565vw, 0.25rem)) {
        .dev__image {
            width: calc(0.0625rem + 0.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem)) {
        .dev__text {
            font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.5760869565rem + 0.8695652174vw, 1.25rem)) {
        .dev__text {
            font-size: calc(0.75rem + 0.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(0.9375rem, -0.2581521739rem + 5.9782608696vw, 4.375rem)) {
        .dev__text p {
            padding-left: clamp(0.9375rem, -0.2581521739rem + 5.9782608696vw, 4.375rem);
        }
    }

    @supports not (padding-left: clamp(0.9375rem, -0.2581521739rem + 5.9782608696vw, 4.375rem)) {
        .dev__text p {
            padding-left: calc(0.9375rem + 3.4375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (width: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem)) {
        .dev__text p::before {
            width: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem);
        }
    }

    @supports not (width: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem)) {
        .dev__text p::before {
            width: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (height: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem)) {
        .dev__text p::before {
            height: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem);
        }
    }

    @supports not (height: clamp(0.9375rem, 0.6114130435rem + 1.6304347826vw, 1.875rem)) {
        .dev__text p::before {
            height: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (left: clamp(-1.0625rem, -0.3043478261rem + -0.9782608696vw, -0.5rem)) {
        .dev__text p::before {
            left: clamp(-1.0625rem, -0.3043478261rem + -0.9782608696vw, -0.5rem);
        }
    }

    @supports not (left: clamp(-1.0625rem, -0.3043478261rem + -0.9782608696vw, -0.5rem)) {
        .dev__text p::before {
            left: calc(-0.5rem + -0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(3.125rem, 2.2554347826rem + 4.347826087vw, 5.625rem)) {
        .projects {
            padding-top: clamp(3.125rem, 2.2554347826rem + 4.347826087vw, 5.625rem);
        }
    }

    @supports not (padding-top: clamp(3.125rem, 2.2554347826rem + 4.347826087vw, 5.625rem)) {
        .projects {
            padding-top: calc(3.125rem + 2.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(3.125rem, 1.3858695652rem + 8.6956521739vw, 8.125rem)) {
        .projects {
            padding-bottom: clamp(3.125rem, 1.3858695652rem + 8.6956521739vw, 8.125rem);
        }
    }

    @supports not (padding-bottom: clamp(3.125rem, 1.3858695652rem + 8.6956521739vw, 8.125rem)) {
        .projects {
            padding-bottom: calc(3.125rem + 5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.4375rem, -0.0842391304rem + 7.6086956522vw, 5.8125rem)) {
        .projects__title {
            margin-bottom: clamp(1.4375rem, -0.0842391304rem + 7.6086956522vw, 5.8125rem);
        }
    }

    @supports not (margin-bottom: clamp(1.4375rem, -0.0842391304rem + 7.6086956522vw, 5.8125rem)) {
        .projects__title {
            margin-bottom: calc(1.4375rem + 4.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .projects__content {
            padding-top: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem);
        }
    }

    @supports not (padding-top: clamp(1rem, 0.9130434783rem + 0.4347826087vw, 1.25rem)) {
        .projects__content {
            padding-top: calc(1rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(1.5rem, 1.3913043478rem + 0.5434782609vw, 1.8125rem)) {
        .projects__content {
            padding-bottom: clamp(1.5rem, 1.3913043478rem + 0.5434782609vw, 1.8125rem);
        }
    }

    @supports not (padding-bottom: clamp(1.5rem, 1.3913043478rem + 0.5434782609vw, 1.8125rem)) {
        .projects__content {
            padding-bottom: calc(1.5rem + 0.3125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.875rem, 0.7880434783rem + 0.4347826087vw, 1.125rem)) {
        .projects__name {
            font-size: clamp(0.875rem, 0.7880434783rem + 0.4347826087vw, 1.125rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.7880434783rem + 0.4347826087vw, 1.125rem)) {
        .projects__name {
            font-size: calc(0.875rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.0000000625rem, -0.3260868723rem + 1.6304346739vw, 0.9375rem)) {
        .projects__name {
            margin-bottom: clamp(0.0000000625rem, -0.3260868723rem + 1.6304346739vw, 0.9375rem);
        }
    }

    @supports not (margin-bottom: clamp(0.0000000625rem, -0.3260868723rem + 1.6304346739vw, 0.9375rem)) {
        .projects__name {
            margin-bottom: calc(0.0000000625rem + 0.9374999375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(0.4375rem, 0.285326087rem + 0.7608695652vw, 0.875rem)) {
        .projects__list {
            margin-bottom: clamp(0.4375rem, 0.285326087rem + 0.7608695652vw, 0.875rem);
        }
    }

    @supports not (margin-bottom: clamp(0.4375rem, 0.285326087rem + 0.7608695652vw, 0.875rem)) {
        .projects__list {
            margin-bottom: calc(0.4375rem + 0.4375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .projects__item {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .projects__item {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .projects__item {
            padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem);
        }
    }

    @supports not (padding-left: clamp(1.125rem, 0.9945652174rem + 0.652173913vw, 1.5rem)) {
        .projects__item {
            padding-left: calc(1.125rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .projects__item::before {
            left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem);
        }
    }

    @supports not (left: clamp(0.5rem, 0.4565217391rem + 0.2173913043vw, 0.625rem)) {
        .projects__item::before {
            left: calc(0.5rem + 0.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem)) {
        .projects__item::before {
            top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem);
        }
    }

    @supports not (top: clamp(0.4375rem, 0.3722826087rem + 0.3260869565vw, 0.625rem)) {
        .projects__item::before {
            top: calc(0.4375rem + 0.1875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .projects__button {
            padding-left: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (padding-left: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .projects__button {
            padding-left: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .projects__button {
            padding-right: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem);
        }
    }

    @supports not (padding-right: clamp(1.25rem, 0.8152173913rem + 2.1739130435vw, 2.5rem)) {
        .projects__button {
            padding-right: calc(1.25rem + 1.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .about {
            padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem);
        }
    }

    @supports not (padding-top: clamp(3.125rem, 2.0380434783rem + 5.4347826087vw, 6.25rem)) {
        .about {
            padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(2.1875rem, -0.0951086957rem + 11.4130434783vw, 8.75rem)) {
        .about {
            padding-bottom: clamp(2.1875rem, -0.0951086957rem + 11.4130434783vw, 8.75rem);
        }
    }

    @supports not (padding-bottom: clamp(2.1875rem, -0.0951086957rem + 11.4130434783vw, 8.75rem)) {
        .about {
            padding-bottom: calc(2.1875rem + 6.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (margin-bottom: clamp(1.875rem, 1.3532608696rem + 2.6086956522vw, 3.375rem)) {
        .about__title {
            margin-bottom: clamp(1.875rem, 1.3532608696rem + 2.6086956522vw, 3.375rem);
        }
    }

    @supports not (margin-bottom: clamp(1.875rem, 1.3532608696rem + 2.6086956522vw, 3.375rem)) {
        .about__title {
            margin-bottom: calc(1.875rem + 1.5 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem)) {
        .about__top {
            padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem);
        }
    }

    @supports not (padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem)) {
        .about__top {
            padding-top: calc(1.25rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem)) {
        .about__top {
            padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem);
        }
    }

    @supports not (padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem)) {
        .about__top {
            padding-left: calc(1.5rem + 0.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem)) {
        .about__top {
            padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem);
        }
    }

    @supports not (padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem)) {
        .about__top {
            padding-right: calc(1.5rem + 0.6875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(0.9375rem, 0.7418478261rem + 0.9782608696vw, 1.5rem)) {
        .about__top {
            padding-bottom: clamp(0.9375rem, 0.7418478261rem + 0.9782608696vw, 1.5rem);
        }
    }

    @supports not (padding-bottom: clamp(0.9375rem, 0.7418478261rem + 0.9782608696vw, 1.5rem)) {
        .about__top {
            padding-bottom: calc(0.9375rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .about__top {
            font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem);
        }
    }

    @supports not (font-size: clamp(0.875rem, 0.7445652174rem + 0.652173913vw, 1.25rem)) {
        .about__top {
            font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .about__text {
            font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem);
        }
    }

    @supports not (font-size: clamp(0.75rem, 0.6630434783rem + 0.4347826087vw, 1rem)) {
        .about__text {
            font-size: calc(0.75rem + 0.25 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem)) {
        .about__text {
            padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem);
        }
    }

    @supports not (padding-top: clamp(1.25rem, 1.0543478261rem + 0.9782608696vw, 1.8125rem)) {
        .about__text {
            padding-top: calc(1.25rem + 0.5625 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem)) {
        .about__text {
            padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem);
        }
    }

    @supports not (padding-left: clamp(1.5rem, 1.1739130435rem + 1.6304347826vw, 2.4375rem)) {
        .about__text {
            padding-left: calc(1.5rem + 0.9375 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem)) {
        .about__text {
            padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem);
        }
    }

    @supports not (padding-right: clamp(1.5rem, 1.2608695652rem + 1.1956521739vw, 2.1875rem)) {
        .about__text {
            padding-right: calc(1.5rem + 0.6875 * (100vw - 20rem) / 57.5);
        }
    }

    @supports (padding-bottom: clamp(1.5625rem, 1.1494565217rem + 2.0652173913vw, 2.75rem)) {
        .about__text {
            padding-bottom: clamp(1.5625rem, 1.1494565217rem + 2.0652173913vw, 2.75rem);
        }
    }

    @supports not (padding-bottom: clamp(1.5625rem, 1.1494565217rem + 2.0652173913vw, 2.75rem)) {
        .about__text {
            padding-bottom: calc(1.5625rem + 1.1875 * (100vw - 20rem) / 57.5);
        }
    }
}

@media (min-width: 62em) and (max-width: 77.5em) {
    @supports (gap: clamp(0.9375rem, -5.3125rem + 10.0806451613vw, 2.5rem)) {
        .menu__list {
            gap: clamp(0.9375rem, -5.3125rem + 10.0806451613vw, 2.5rem);
        }
    }

    @supports not (gap: clamp(0.9375rem, -5.3125rem + 10.0806451613vw, 2.5rem)) {
        .menu__list {
            gap: calc(0.9375rem + 1.5625 * (100vw - 62rem) / 15.5);
        }
    }
}

@media (min-width: 61.995em) and (max-width: 90em) {
    @supports (width: clamp(62.875rem, 37.2789568827rem + 41.2872701303vw, 74.4375rem)) {
        .first__bg-ibg {
            width: clamp(62.875rem, 37.2789568827rem + 41.2872701303vw, 74.4375rem);
        }
    }

    @supports not (width: clamp(62.875rem, 37.2789568827rem + 41.2872701303vw, 74.4375rem)) {
        .first__bg-ibg {
            width: calc(62.875rem + 11.5625 * (100vw - 61.995rem) / 28.005);
        }
    }

    @supports (height: clamp(52.5rem, 35.2053762721rem + 27.8968041421vw, 60.3125rem)) {
        .first__bg-ibg {
            height: clamp(52.5rem, 35.2053762721rem + 27.8968041421vw, 60.3125rem);
        }
    }

    @supports not (height: clamp(52.5rem, 35.2053762721rem + 27.8968041421vw, 60.3125rem)) {
        .first__bg-ibg {
            height: calc(52.5rem + 7.8125 * (100vw - 61.995rem) / 28.005);
        }
    }
}

@media (max-width: 61.99875em) and (min-width: 62em) {
    .first__bg-ibg {
        top: 6.25rem;
    }
}

@media (max-width: 61.99875em) and (min-width: 20em) and (max-width: 62em) {
    @supports (top: clamp(1.875rem, -0.2083333333rem + 10.4166666667vw, 6.25rem)) {
        .first__bg-ibg {
            top: clamp(1.875rem, -0.2083333333rem + 10.4166666667vw, 6.25rem);
        }
    }

    @supports not (top: clamp(1.875rem, -0.2083333333rem + 10.4166666667vw, 6.25rem)) {
        .first__bg-ibg {
            top: calc(1.875rem + 4.375 * (100vw - 20rem) / 42);
        }
    }
}

@media (any-hover: hover) {
    .button:hover {
        background-color: #4da898;
    }

    ._header-scroll .options__input:checked + .options__label span:hover {
        color: #2c3c72;
    }

    ._header-scroll .options__text-dn:hover {
        color: #4da898;
    }

    .popup__close:hover svg path {
        stroke: #4da898;
    }

    .popup__navigation button:hover svg path {
        stroke: #679dd0;
    }

    .politic ol a:hover {
        text-decoration: none;
    }

    ._header-scroll .header__button:hover {
        background-color: #4da898;
    }

    .header__soc svg:hover path {
        fill: #4da898;
    }

    .header__mail:hover {
        color: #4da898;
    }

    .menu__link:hover {
        color: #4da898;
    }

    .footer__link:hover {
        color: #4da898;
    }

    .footer__pol:hover {
        text-decoration: none;
    }

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

    .feed__contactslink:hover {
        color: #4da898;
    }

    .feed__contactslink:hover svg path {
        stroke: #4da898;
    }

    .feed__soc:hover svg path {
        fill: #4da898;
    }

    .first__button:hover {
        background-color: #4da898;
    }

    .activity__tabs-title:hover {
        color: #4da898;
    }

    .activity__tabs-title._tab-active:hover {
        color: #679dd0;
    }

    .activity__swiper-navigation .swiper-button:hover svg path {
        stroke: #2c3c72;
    }

    .work__soc:hover svg path {
        fill: #4da898;
    }

    .projects__slide:hover .projects__image-ibg img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .projects__navigation button:hover svg path {
        stroke: #679dd0;
    }
}

@media (any-hover: none) {
    .icon-menu {
        cursor: default;
    }
}

.about__text p a {
    color: #2c3c72;
    text-decoration: underline;
}
