/* general styles and settings */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #313B45;
    --color-gray-light: #E6E6E6;
    --color-black-10: #F3F3F4;
    --color-black-20: #E7E8EA;
    --color-black-30: #CFD1D3;
    --color-black-40: #CFD1D3;
    --color-black-50: #9EA3A7;
    --color-black-60: #878C92;
    --color-black-80: #4A525B;
    --color-black-100: #0D1924;
    --color-blue-50: #0150B4;
    --color-error: #FF5A13;
    --color-red: #CF0700;
    --color-dark-red: #b30600;
    --color-sky-50: #00B5E2;
}

/* animations */

@keyframes image-change {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes popup-open {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes popup-open-mobile {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

/* animations */

@font-face {
    font-family: "RobotoFlex";
    src: url("../fonts/RobotoFlex-VariableFont.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "GolosText";
    src: url("../fonts/GolosText-VariableFont_wght.ttf") format("truetype");
    font-display: swap;
}

/* animations */

body {
    display: none;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--color-blue-50);
    border-radius: 4px;
}

html::-webkit-scrollbar-button {
    display: none !important;
    visibility: hidden !important;
    height: 0;
    width: 0;
}

.smooth-wrapper,
.smooth-content {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    will-change: transform;
}

a {
    text-decoration: none;
    color: var(--color-blue-50);
    transition: all 0.2s;
}

a.text-color-black100:hover {
    color: var(--color-sky-50);
}

a.text-color-blue:hover {
    color: var(--color-black-100);
}

p, a, h1, h2, h3, h4, span, button {
    will-change: transform;
}

button:not(:disabled) {
    cursor: pointer;
}

.tab-element {
    display: none !important;
}

.tab-element.active {
    display: flex !important;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 112px;
    padding-bottom: 112px;
    background-color: var(--color-white);
}

.block-wrapper {
    width: 100%;
    padding: 0px 88px;
}

.block-wrapper.no-padding {
    padding: 0;
}

.block-wrapper.padding-top {
    padding-top: 80px;
}

.block-wrapper.padding-bottom {
    padding-bottom: 80px;
}

.block-wrapper.border-top {
    border-top: 1px solid var(--color-black-30);
}

.side-padding {
    padding: 0px 88px;
}

.d-none {
    display: none !important;
}

.h1-title-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 112px 88px 0px;
}

.h1-title {
    display: inline;
    font-size: 112px;
    line-height: 96px;
    text-transform: uppercase;
    text-align: center;
}

.h2-title {
    display: inline;
    width: 100%;
    font-size: 56px;
    line-height: 56px;
    font-weight: 650;
    text-transform: uppercase;
}

.h4-title {
    display: inline;
    font-size: 38px;
    line-height: 40px;
    font-weight: 650;
    text-transform: uppercase;
}

.block-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 56px;
}

input,
textarea {
    border: none !important;
    font-family: "RobotoFlex";
    font-size: 16px;
    color: var(--color-black-100);
}

input:focus,
textarea:focus {
    outline: 2px solid var(--color-sky-50);
}

.select2-container--open .select2-selection {
    outline: 2px solid var(--color-sky-50);
}

textarea {
    resize: none;
    min-height: 128px;
}

textarea::-webkit-scrollbar {
    display: none;
}

.form-input-container label {
    display: flex;
    gap: 4px;
    font-family: "GolosText";
    color: var(--color-black-100);
    font-weight: 500;
    font-size: 12px;
    padding-left: 8px;
}

.other-inputs + label {
    font-size: 16px;
    font-weight: 400;
    padding-left: 0;
}

.styled-checkbox {
    position: relative;
    width: 22px;
    height: 22px;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.styled-checkbox::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-black-40);
    border-radius: 8px;
    opacity: 1;
    background-color: white;
    transition: all 0.2s ease;
}

.styled-checkbox + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid var(--color-black-40);
    border-radius: 8px;
    background-color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.styled-checkbox + label::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 11px;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.styled-checkbox:hover + label::before {
    border-color: var(--color-black-60);
    background-color: var(--color-black-5);
}

.styled-checkbox:checked + label::after {
    opacity: 1;
}

.styled-checkbox:checked + label::before {
    background-color: var(--color-blue-50);
    border: 1px solid var(--color-blue-50);
}

.error-message {
    display: none;
    font-size: 12px;
    font-family: "GolosText";
    color: var(--color-error);
}

.input-helping-message {
    display: inline;
    font-size: 12px;
    font-family: "GolosText";
    margin-left: 8px;
    color: var(--color-black-50);
}

.active-error.error-message {
    position: absolute;
    bottom: -18px;
    left: 0;
}

.form-input-container:has(select.active-error) .select2-selection {
    outline: 2px solid var(--color-error) !important;
}

input:not(:focus).active-error,
textarea:not(:focus).active-error {
    outline: 2px solid var(--color-error) !important;
}

.necessary-field-sign {
    display: none;
}

.field-is-necessary .necessary-field-sign {
    display: block;
}

fieldset {
    border: none;
}

.mobile-menu {
    display: none;
}

/* reusable styles */

.font-robotoflex {
    font-family: "RobotoFlex";
}

.font-golostext {
    font-family: "GolosText";
}

.huge-page-title {
    font-size: 112px;
    line-height: 96px;
    text-transform: uppercase;
    text-align: center;
}

.huge-page-subtitle {
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
    visibility: hidden;
}

.popup-title {
    font-size: 30px;
    line-height: 32px;
    text-transform: uppercase;
}

.font-size24 {
    font-size: 24px;
}

.font-size16 {
    font-size: 16px;
}

.line-height32 {
    line-height: 32px;
}

.line-height24 {
    line-height: 24px;
}

.font-weight650 {
    font-weight: 650;
}

.font-weight300 {
    font-weight: 300;
}

.font-weight400 {
    font-weight: 400;
}

.font-weight500 {
    font-weight: 500;
}

.text-color-black100 {
    color: var(--color-black-100);
}

.text-color-white {
    color: var(--color-white);
}

.text-color-blue {
    color: var(--color-blue-50);
}

.text-color-black60 {
    color: var(--color-black-60);
}

.text-color-black40 {
    color: var(--color-black-40);
}

.block-title {
    font-size: 56px;
    line-height: 56px;
    color: var(--color-blue-50);
    font-weight: 650;
    font-family: "RobotoFlex";
    text-transform: uppercase;
}

.block-title.text-color-black100 {
    color: var(--color-black-100);
}

.button-base {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    padding: 16px;
    font-size: 22px;
    text-transform: uppercase;
    transition: 0.2s all;
    text-align: center;
}

.button-base.disabled {
    color: var(--color-black-50);
    background-color: var(--color-black-20);
    pointer-events: none;
}

.button-base.disabled path {
    fill: var(--color-black-50);
    cursor: default;
}

.button-base.fit-content {
    width: fit-content;
    padding: 16px 24px;
}

.red-button {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
}

.red-button:hover {
    background-color: var(--color-dark-red);
}

.blue-white-button {
    background-color: var(--color-blue-50);
    color: var(--color-white);
    border: none;
}

.blue-white-button:hover {
    background-color: var(--color-sky-50);
    color: var(--color-white);
}

.blue-white-button path {
    fill: var(--color-white);
}

.white-black-button {
    background-color: var(--color-black-10);
    color: var(--color-black-100);
    border: none;
}

.white-black-button:hover {
    color: var(--color-blue-50);
}

.white-black-button:hover path {
    fill: var(--color-blue-50);
}

.white-black-button path {
    fill: var(--color-black-100);
}

.gray-white-button {
    background-color: var(--color-black-60);
    color: var(--color-white);
    border: none;
}

.gray-white-button:hover {
    background-color: var(--color-black-80);
    color: var(--color-white);
}

.gray-white-button:hover path {
    color: var(--color-white);
}

.gray-white-button path {
    fill: var(--color-white);
}

.white-button {
    background-color: var(--color-white);
    color: var(--color-black-100);
    border: none;
    font-weight: 700;
}

.white-button:hover {
    background-color: var(--color-black-20);
    color: var(--color-blue-50);
}

.white-button:hover path {
    fill: var(--color-blue-50);
}

.white-button path {
    fill: var(--color-black-100);
}

.blue-border-button {
    background-color: var(--color-white);
    color: var(--color-blue-50);
    border: 1px solid var(--color-blue-50);
}

.blue-border-button path {
    fill: var(--color-blue-50);
}

.blue-border-button:hover {
    color: var(--color-sky-50);
    border: 1px solid var(--color-sky-50);
}

.blue-border-button:hover path {
    fill: var(--color-sky-50);
}

.wide-button {
    width: 344px;
    padding: 24px;
    font-size: 22px;
}

.full-width-button {
    width: 100%;
    font-size: 22px;
}

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

.gray-card {
    background-color: var(--color-black-10);
    border: 1px solid var(--color-black-10);
    transition: 0.5s all;
}

.gray-card:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-black-30);
}

.overflow-h {
    overflow: hidden;
}

/* desktop screen width >= 991 */

.desktop {
    display: initial;
}

p.desktop, h1.desktop, h2.desktop, h3.desktop, h4.desktop {
    display: inline;
}

.button-base.desktop {
    display: flex;
}

/* tablet 600 <= screen width < 990 */

.tablet {
    display: none;
}

/* mobile screen width < 600 */

.mobile {
    display: none;
}

/* general styles and settings */

/* reusable styles */

/* header styles */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background-color: #FFFFFF;
    user-select: none;
    z-index: 10000;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 88px;
}

.header__logo {
    width: 300px;
    height: 100%;
}

.header__logo img {
    width: 100%;
    height: 100%;
}

.header__logo.mobile-logo {
    display: none;
}

.header__center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.header__menu-option {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
}

.header__menu-option.active {
    color: var(--color-blue-50);
    pointer-events: none;
}

.header__right {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.social-media-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.header__right__buttons {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.sandwich-button {
    display: none !important;
}

.header__button {
    height: 100%;
    padding: 16px;
    text-decoration: none;
    text-transform: uppercase;
}

/* header styles */

/* footer styles */

footer {
    width: 100%;
    background-color: var(--color-black-10);
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 112px;
    padding: 112px 88px 56px 88px;
}

.footer-block {
    width: 100%;
    display: flex;
    gap: 16px;
}

.footer-subblock {
    display: flex;
    flex: 1;
}

.footer__join-us-block {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__join-us-block__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__cards-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__cards-block__card {
    position: relative;
    width: calc(33.3% - 32px / 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    aspect-ratio: 1/1;
    background-color: var(--color-blue-50);
    border-radius: 24px;
    overflow: hidden;
}

.footer__card-number {
    font-size: 22px;
}

.footer__cards-block__card p {
    z-index: 3;
}

.footer__card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.2;
    z-index: 2;
}

.footer__bottom-subblock {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__bottom-subblock__gap {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer__bottom-subblock__between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-footer-bottom-block {
    display: none;
}

/* footer styles */

.banner-wrapper {
    width: 100%;
    min-height: 600px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-container .swiper-wrapper {
    height: 100%;
}

.banner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F3F3F4;
    padding: 80px 88px;
    overflow: hidden;
}

.banner-bg-image {
    position: absolute;
    height: 105%;
    top: -5%;
    right: 0%;
}

.banner-h1 {
    position: relative;
    width: 584px;
    display: flex;
    flex-direction: column;
    font-size: 112px;
    line-height: 96px;
    font-weight: 650;
    text-transform: uppercase;
    z-index: 2;
}

.banner-bottom {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}

.banner-card {
    max-width: 344px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--color-white);
}

.banner-card-title {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
}

.banner-card-text {
    font-size: 16px;
    line-height: 24px;
}

.banner-container .swiper-buttons {
    top: auto;
    bottom: 80px;
}

.banner-container .swiper-buttons .swiper-next-button,
.banner-container .swiper-buttons .swiper-prev-button {
    background-color: var(--color-white);
    z-index: 2;
}

.request-form {
    width: 704px;
    row-gap: 48px;
}

form {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.form-fields-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 24px;
}

.form-input-container {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 8px;
}

.form-input-container .full-sized-input {
    width: 100%;
    border-radius: 24px;
    padding: 16px 24px;
    background-color: var(--color-black-10);
}

.form-input-container.full-width {
    width: 100%;
}

.form-input-container.half-width {
    width: 49%;
}

.select2.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: auto !important;
    padding: 16px;
    border: none !important;
    border-radius: 24px !important;
    background-color: var(--color-black-10) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: auto !important;
    top: 50% !important;
    right: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--color-black-100) !important;
    width: 10px !important;
    height: 10px !important;
    border-width: 0px 2px 2px 0px !important;
    transform: translateY(-50%) rotate(45deg) !important;
    transition: 0.2s all
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(225deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-family: "GolosText";
    font-size: 16px;
    color: var(--color-black-100) !important;
    line-height: 16px !important;
}

.select2-dropdown {
    border-radius: 24px !important;
    top: 5px !important;
    border: none !important;
    box-shadow: 0px 0px 5px 1px var(--color-black-60);
    padding: 8px !important;
}

.select2-results__option {
    font-family: "GolosText";
    color: var(--color-black-100) !important;
    border-radius: 24px;
}

.select2-search--dropdown {
    display: none !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-black-10) !important;
    color: var(--color-blue-50) !important;
}

.select2-results__option {
    padding: 8px 16px !important;
    transition: 0.2s all;
}

.select2-container--default .select2-results__option--disabled {
    color: var(--color-black-60) !important;
}

.select2-container--default .select2-results__option--selected {
    background: none !important;
}

.add-new-field-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 8px;
    user-select: none;
    cursor: pointer;
}

.form-agreements-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-input-container.agreement-field {
    flex-wrap: nowrap;
}

.form-input-container.agreement-field input {
    flex-shrink: 0;
}

.form-input-container.agreement-field label {
    color: var(--color-black-60);
}

.popup {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    background-color: #0D192466;
}

.popup.active {
    display: flex;
}

.popup-container {
    width: 400px;
    max-height: 90vh;
    display: none;
    flex-direction: column;
    background-color: var(--color-white);
    border-radius: 32px;
}

.popup-container.active {
    display: flex;
}

.popup-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.popup-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    overflow: auto;
    scrollbar-gutter: stable;
}

.popup-subblock {
    border-bottom: 1px solid var(--color-black-20);
}

.popup-container .popup-subblock:last-child {
    border-bottom: none;
}

.popup-main::-webkit-scrollbar {
    width: 4px;
}

.popup-main::-webkit-scrollbar-track {
    background: transparent;
}

.popup-main::-webkit-scrollbar-thumb {
    background-color: var(--color-black-20);
    border-radius: 4px;
}

.popup-main::-webkit-scrollbar-button {
    display: none !important;
    visibility: hidden !important;
    height: 0;
    width: 0;
}

.popup-form {
    width: 100%;
    gap: 24px;
}

.password-input {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.show-password-button {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    cursor: pointer;
}

.popup-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 24px;
}

.popup-bottom__link {
    color: var(--color-blue-50);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.popup-bottom__link:hover {
    color: var(--color-black-100);
}

.popup-form-button {
    flex: 1;
}

.close-popup-button,
.get-back-to-sign-in-popup-button {
    cursor: pointer;
}

.club-info-container {
    width: 100%;
    display: flex;
    gap: 36px;
}

.club-info__sidebar {
    flex: 1;
}

.club-info__main-info {
    display: flex;
    flex-direction: column;
    gap: 56px;
    flex: 2;
}

.club-signs-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.club-signs-container__top {
    width: 100%;
    align-items: center;
}

.club-badges-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.club-signs-container .club-logo {
    width: 144px;
    height: 144px;
}

.club-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.club-name-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.club-name {
    font-size: 22px;
    text-transform: uppercase;
}

.join-club-button {
    max-width: 304px;
    width: 100%;
    padding: 16px;
}

.club-info__main-info__indicators {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.club-info__indicator {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 12px 0px;
}

.club-info__main-info .club-info__indicator  {
    border-bottom: 1px solid var(--color-black-30);
}

.club-info__indicator__name {
    color: var(--color-black-60);
}

.club-info__indicator__name,
.club-info__indicator__value {
    font-size: 24px;
    line-height: 32px;
}

.club-info__main-info .club-info__main-info__indicators .club-info__indicator:last-child {
    border-bottom: none;
}

.club-info__main-info__about {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 24px;
    line-height: 32px;
    color: var(--color-black-100);
    font-family: "GolosText";
    font-weight: 400;
}

.list-inside-article-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-inside-article__list {
    list-style: "—  ";
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 32px;
}

.club-map {
    width: 100%;
    display: flex;
    border-radius: 24px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.club-achievement-badge {
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 24px;
    background: var(--color-blue-50);
    padding: 24px;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.club-achievement-badge:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: url('../images/club-badge-bg.png');
    background-size: 150%;
    background-position: center 100%;
    opacity: 0.5;
}

.club-achievement-badge__content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 4;
}

.club-achievement-badge__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.club-achievement-badge__title {
    text-transform: uppercase;
    font-size: 22px;
    line-height: 24px;
}

.club-achievement-badge__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.club-achievement-badge__top-pos {
    text-transform: uppercase;
    font-size: 112px;
    line-height: 96px;
}

.club-achievement-badge__value {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
}

.block-title-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.block-title-container.center {
    display: flex;
    justify-content: center;
}

.club-card {
    min-width: 300px;
    min-height: 432px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 24px 20px 24px;
    border-radius: 24px;
    background-color: var(--color-black-10);
    border: 1px solid var(--color-black-10);
    transition: 0.5s background-color, border;
    cursor: pointer;
}

.club-card:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-black-30);
}

.club-card:hover .club-card__club-name .text-color-black100 {
    color: var(--color-blue-50);
}

.club-card__title-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.club-card__logo-container {
    width: 64px;
    height: 64px;
}

.club-card__logo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.club-card__club-name {
    font-size: 38px;
    line-height: 40px;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.club-card__short-description {
    font-size: 16px;
    line-height: 18px;
}

.club-card .club-info__indicator__name,
.club-card .club-info__indicator__value {
    font-size: 16px;
    line-height: 24px;
}

.club-card .club-info__indicator {
    padding: 4px 0px;
}

.club-card .club-info__indicator {
    border-top: 1px solid var(--color-black-20);
}

.other-clubs-swiper {
    width: 100%;
    padding: 0px 88px;
}

.block-bottom-button-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.swiper-buttons {
    position: absolute;
    top: 0;
    right: 88px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.swiper-prev-button,
.swiper-next-button {
    width: 72px;
    height: 72px;
}

.swiper-next-button {
    transform: rotate(180deg);
}

.gap8-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gap16-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gap24-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gap32-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gap40-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gap48-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.gap56-column-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.gap16-row-container {
    width: 100%;
    display: flex;
    gap: 16px;
}

.all-options-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.all-options-bar button {
    flex-shrink: 0;
}

.all-options-bar::-webkit-scrollbar {
    display: none;
}

.rating-table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.rating-sheet {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.mobile-rating-sheet {
    display: none;
}

.rating-sheet th {
    height: 48px;
    text-align: left;
    vertical-align: top;
    color: var(--color-black-60);
    font-family: "GolosText";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-wrap: nowrap;
}

.rating-sheet td {
    border-top: 1px solid var(--color-black-30);
}

.rating-sheet td,
.rating-sheet th {
    padding-right: 16px;
}

.rating-sheet tr td:last-child,
.rating-sheet tr th:last-child {
    padding-right: 0px;
    text-align: right;
}

.rating-sheet td {
    position: relative;
    min-width: 104px;
    padding: 16px 16px 16px 0px;
    color: var(--color-black-60);
    font-family: "GolosText";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    transition: 0.5s all;
}

.rating-sheet .bold-cell,
.mobile-rating-sheet .bold-cell {
    color: var(--color-black-100);
    font-family: "RobotoFlex";
    font-weight: 650;
    font-size: 38px;
    line-height: 40px;
    text-transform: uppercase;
    transition: 0.5s all;
    cursor: pointer;
}

.club-name-cell-container {
    width: 100%;
    display: flex;
    align-items: center;
}

.club-name-cell-container span,
.club-name-cell-container a {
    width: 300px;
    min-width: 0;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-spacing: 0 !important;
    display: list-item;
}

.rating-sheet tr:hover td {
    border-top: 1px solid var(--color-black-100);
}

.rating-sheet tr:hover td:nth-child(2) {
    color: var(--color-blue-50);
}

.rating-sheet tr td:first-child {
    width: 160px;
}

.rating-sheet .club-logo,
.mobile-rating-sheet .club-logo {
    position: absolute;
    top: 50%;
    left: -56px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.rating-sheet tr:last-child td {
    border-bottom: none;
}

.four-cards-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.four-cards-container .rating-card {
    width: calc(25% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
    aspect-ratio: 1/1;
    background-color: var(--color-black-10);
}

.four-cards-container .card-title {
    font-size: 38px;
    line-height: 40px;
    text-transform: uppercase;
}

.page-utility-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-utility-bar__subcontainer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-utility-bar__subcontainer.all-options-bar {
    width: fit-content;
}

.search-input {
    position: relative;
}

.page-utility-bar__subcontainer .search-input {
    width: 324px;
}

.search-input .full-sized-input {
    padding: 16px 48px;
}

.search-input .search-button {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}

.all-clubs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.all-clubs-container .club-card {
    width: calc(25% - 12px);
    min-width: 184px;
}

.filter-popup__fieldset {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--color-black-20);
}

.filter-popup__fieldset .fieldset-legend {
    font-weight: 650;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
}

.filter-popup .filter-popup__fieldset:last-child {
    border-bottom: none;
}

.filter-popup .popup-main {
    padding: 0px;
}

.filter-popup .form-fields-container {
    row-gap: 0px;
}

.fieldset-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.fieldset-container .column {
    max-width: fit-content;
    min-width: calc(33% - 11px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
}

.applied-filters-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.applied-filters-container::-webkit-scrollbar {
    display: none;
}

.applied-filter {
    font-size: 16px !important;
    line-height: 24px;
    text-transform: none;
    user-select: none;
}

.applied-filter span {
    white-space: nowrap;
}

.applied-filter svg {
    cursor: pointer;
}

.divided-into-two-page-container {
    width: 100%;
    display: flex;
    gap: 136px;
}

.divided-into-two-page__subcontainer {
    flex: 1;
}

.divided-into-two-page-container .divided-into-two-page__subcontainer:first-child {
    position: relative;
    flex: 0.85;
}

.slb-banner {
    width: 100%;
    aspect-ratio: 2/2.3;
    border-radius: 24px;
    background: url('../images/about-us-banner.jpg');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.slb-banner__container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.slb-banner__container img {
    width: 40%;
    height: 60%;
}

.about-us-page-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.columns-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.columns-cards.one-column .document-card {
    width: 100%;
}

.columns-cards.two-columns .footer__cards-block__card {
    width: calc(50% - 8px);
    aspect-ratio: 3/2.2;
}

.columns-cards.three-columns .partner-card {
    width: calc(33% - 11px);
}

.who-it-will-fit-card p {
    font-size: 24px;
    line-height: 32px;
}

.who-it-will-fit__top-text {
    font-size: 30px !important;
    line-height: 32px !important;
    text-transform: uppercase;
}

.employee-card {
    width: calc(50% - 8px);
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    background-color: var(--color-black-10);
    border-radius: 24px;
    padding: 24px;
}

.employee-card__photo {
    width: 80px;
    height: 80px;
}

.employee-card__photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.employee-card__name {
    font-size: 38px;
    line-height: 40px;
    font-weight: 650;
    text-transform: uppercase;
}

.employee-card .social-media-links-container {
    justify-content: flex-start;
}

.partner-card {
    min-height: 296px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--color-black-30);
    border-radius: 24px;
    padding: 24px;
}

.partner-logo-container {
    width: 144px;
    height: 144px;
}

.partner-logo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.partner-title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.document-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--color-black-10);
    border: 1px solid var(--color-black-10);
    transition: 0.5s all;
}

.document-card:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-black-30);
}

.document-card:hover .document-card__title {
    color: var(--color-blue-50);
}

.document-card__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.document-card__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

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

.inspire-block-image {
    width: 1184px;
    min-height: 584px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.inspire-block-image__column {
    width: calc(20% - 13px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inspire-block-image__column.center {
    padding-top: 120px;
}

.inspire-block-image__column.start {
    justify-content: flex-start;
}

.inspire-block-image__column.end {
    justify-content: flex-end;
}

.inspire-block-image__column .inspire-block-image__img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 24px;
    overflow: hidden;
}

.inspire-block-image__img-container.mobile {
    display: none;
}

.inspire-block-image__img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.inspire-block-image__img-container img:last-child {
    animation: image-change 30s infinite;
}

.inspire-block-image__column:nth-child(1) .inspire-block-image__img-container img:last-child {
    animation-delay: 0s;
}

.inspire-block-image__column:nth-child(2) .inspire-block-image__img-container:nth-child(1) img:last-child {
    animation-delay: 7s;
}

.inspire-block-image__column:nth-child(2) .inspire-block-image__img-container:nth-child(2) img:last-child {
    animation-delay: 21s;
}

.inspire-block-image__column:nth-child(3) .inspire-block-image__img-container:nth-child(1) img:last-child {
    animation-delay: 1s;
}

.inspire-block-image__column:nth-child(3) .inspire-block-image__img-container:nth-child(2) img:last-child {
    animation-delay: 17s;
}

.inspire-block-image__column:nth-child(4) .inspire-block-image__img-container:nth-child(1) img:last-child {
    animation-delay: 4s;
}

.inspire-block-image__column:nth-child(4) .inspire-block-image__img-container:nth-child(2) img:last-child {
    animation-delay: 10s;
}

.inspire-block-image__column:nth-child(5) .inspire-block-image__img-container:nth-child(1) img:last-child {
    animation-delay: 13s;
}

.inspire-block__description {
    width: 100%;
    padding: 0px 240px;
}

.inspire-block__description__subblock {
    flex: 1;
}

.map-block-main-page .map {
    position: relative;
    width: 100%;
    height: 70vh;
}

.rating-page-map {
    position: relative;
    width: 100%;
    height: 70vh;
}

.map .swiper-buttons {
    position: absolute;
    top: 50%;
    right: 88px;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 100;
}

.map .swiper-buttons .white-black-button {
    background-color: var(--color-white);
}

.main-page-us-swiper {
    width: 100%;
}

.main-page-us-swiper__slide {
    width: fit-content;
    min-width: 470px;
    min-height: 392px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.main-page-us-swiper__slide.bottom {
    justify-content: flex-start;
    flex-direction: column-reverse;
}

.main-page-us-swiper__slide__text-block {
    height: 120px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-page-us-swiper__slide__title {
    letter-spacing: -1px;
    line-height: 96px;
    font-size: 112px;
    text-transform: uppercase;
}

.main-page-us-swiper__slide__text-block .image-container {
    flex-shrink: 0;
    width: 212px;
    height: 100%;
}

.main-page-us-swiper__slide__text-block .image-container img {
    width: 100%;
    height: 100%;
    border-radius: 60px;
    object-fit: cover;
}

.main-page-us-swiper__slide__text-block .text-container {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
}

.join-us-banner-main-page {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
}

.join-us-banner-main-page__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 152px 88px;
    background-color: #00000080;
    z-index: 3;
}

.transparent-card {
    background: none;
    border: 1px solid #FFFFFF20;
    border-radius: 24px;
    padding: 24px;
}

.join-us-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.join-us-banner-main-page__cards__container .join-us-card:first-child {
    flex: 2;
}

.join-us-card-title {
    font-size: 112px;
    line-height: 96px;
    text-transform: uppercase;
}

.join-us-card-description {
    font-size: 16px;
    line-height: 24px;
}

.book-cards-container {
    width: 100%;
    min-height: 648px;
}

.book-card {
    position: relative;
    display: flex;
    justify-content: center;
    flex: 1;
    min-height: 100%;
    max-height: 100%;
    background-color: var(--color-black-10);
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    cursor: pointer;
    transform-origin: right;
}

.book-card.active {
    max-width: 984px;
    width: fit-content;
    flex: none;
    flex-shrink: 0;
    cursor: default;
}

.book-card-container {
    width: 100%;
    display: flex;
    gap: 16px;
}

.book-card.active .book-card__man-photo {
    position: absolute;
    width: 296px;
    left: 40px;
    bottom: 0;
}

.book-card__man-photo {
    position: absolute;
    width: 240px;
    bottom: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card.active .book-card__left-block {
    width: 344px;
    align-items: flex-start;
    flex-shrink: 0;
}

.book-card__left-block {
    width: 100%;
    align-items: center;
}

.book-card__number {
    font-size: 22px;
    line-height: 24px;
    color: var(--color-blue-50);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card.active .book-card__number {
    color: var(--color-black-100);
}

.book-card.active .book-card__name {
    visibility: visible;
    opacity: 1;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card__name {
    width: min-content;
    font-size: 22px;
    line-height: 24px;
    color: var(--color-black-100);
    text-transform: uppercase;
    visibility: collapse;
    opacity: 0;
}

.book-card.active .book-card__description {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black-60);
    visibility: visible;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-card__description {
    visibility: collapse;
    opacity: 0;
}

.book-card.active .book-card__right-block {
    display: block;
    max-width: 544px;
    height: 100%;
    flex-shrink: 0;
}

.book-card__right-block {
    display: none;
}

.book-card.active .book-card__quote {
    display: block;
    font-size: 40px;
    line-height: 42px;
    text-transform: uppercase;
}

.book-card__quote {
    display: none;
}

.main-page-events-container {
    flex-wrap: wrap;
}

.event-card {
    width: calc(25% - 12px);
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.event-card.wide-event-card {
    width: calc(50% - 12px);
    flex: none;
}

.event-card-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
}

.event-card.with-bg .event-card-container {
    background-color: #00000040;
}

.event-card.with-bg .event-card__title,
.event-card.with-bg .event-card__big-name,
.event-card.with-bg .event-card__date,
.event-card.with-bg .event-card__name,
.event-card.with-bg .event-card__description {
    color: var(--color-white);
}

.event-card__title {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
}

.event-card__big-name {
    font-size: 38px;
    line-height: 40px;
    text-transform: uppercase;
}

.event-card__date {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--color-black-50);
}

.event-card__name {
    font-size: 30px;
    line-height: 32px;
    text-transform: uppercase;
}

.event-card__description {
    font-size: 16px;
    line-height: 24px;
}

.search-field.mobile {
    display: none;
}

.map-marker .marker {
    position: relative;
    border-radius: 50%;
    transition: 0.2s all;
    cursor: pointer;
}

.club-map .cluster-element {
    cursor: default;
}

.club-map .map-marker .marker {
    cursor: default;
}

.map-marker.hover .marker {
    background-color: var(--color-sky-50) !important;
}

.club-map .map-marker.hover .marker {
    background-color: var(--color-blue-50) !important;
}

.map-marker.hover .marker .blue {
    fill: var(--color-sky-50) !important;
}

.club-map .map-marker.hover .marker .blue {
    fill: var(--color-blue-50) !important;
}

.map-marker.active .marker {
    background-color: var(--color-sky-50) !important;
}

.map-marker.active .marker .blue {
    fill: var(--color-sky-50) !important;
}

.map-marker.active .map-popup {
    display: flex;
}
.map-marker {
    position: relative;
    z-index: 0;
}

.map-marker.active {
    z-index: 100;
}

.cluster-element {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-blue-50, #0150B4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "RobotoFlex", sans-serif;
    font-size: 14px;
    font-weight: 650;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.map-marker .marker .blue {
    transition: 0.2s all;
}

.map-popup {
    position: absolute;
    display: none;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 16px;
    left: 50%;
    bottom: calc(100% + 16px);
    transform: translateX(-50%);
    min-width: 232px;
    width: fit-content;
    min-height: 272px;
    z-index: 100;
    box-shadow: 0px 7px 7px 0px #00000040;
}

.map-popup-arrow {
    position: absolute;
    bottom: calc(-15px);
    left: 50%;
    transform: translateX(-50%);
}

.map-popup-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.map-popup-top-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-popup-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-popup-top-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    overflow: hidden;
    box-sizing: border-box;
}

.map-popup-top-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.map-popup-top-title {
    display: flex;
    flex-direction: column;
    font-family: "RobotoFlex";
    font-size: 22px;
    line-height: 24px;
    color: var(--color-black-100);
    font-weight: 650;
    text-transform: uppercase;
    transition: 0.5s all;
}

.map-popup-top-title:hover {
    color: var(--color-blue-50);
}

.map-popup-top-description {
    font-family: "GolosText";
    font-size: 12px;
    line-height: 16px;
    color: var(--color-black-60);
    font-weight: 400;
}

.map-marker .club-info__indicator__name,
.map-marker .club-info__indicator__value {
    font-size: 12px;
    line-height: 16px;
    text-transform: capitalize;
}

.map-marker .club-info__indicator {
    padding: 4px 0px;
    border-top: 1px solid var(--color-black-10);
}

.map-popup-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.popup-bottom-black-a {
    font-family: "GolosText";
    font-size: 16px;
    line-height: 24px;
    color: var(--color-black-100);
    font-weight: 400;
}

.popup-bottom-black-a:hover {
    color: var(--color-blue-50);
}

.popup-bottom-blue-a {
    font-family: "GolosText";
    font-size: 16px;
    line-height: 24px;
    color: var(--color-blue-50);
    font-weight: 400;
}

.ymaps3x0--marker:has(.map-marker.active) {
    z-index: 10 !important;
}

.all-clubs-page:has(.all-clubs-container:not(.active)) .block-bottom-button-container {
    display: none;
}


.error-page-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px !important;
    padding-left: 88px;
    padding-right: 88px;
}

.error-page__shifting-images-container {
    position: relative;
    width: 381px;
    height: 214px;
    border-top-left-radius: 30% 50%;
    border-bottom-left-radius: 30% 50%;
    border-top-right-radius: 30% 50%;
    border-bottom-right-radius: 30% 50%;
    overflow: hidden;
}

.error-page__shifting-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    animation: fadeInOut 8s infinite ease-in-out;
    opacity: 0;
}

.error-page__shifting-image:nth-child(1) { animation-delay: 0s; }
.error-page__shifting-image:nth-child(2) { animation-delay: 2s; }
.error-page__shifting-image:nth-child(3) { animation-delay: 4s; }
.error-page__shifting-image:nth-child(4) { animation-delay: 6s; }

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    10%, 25% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    }
}

.error-title {
    display: flex;
    gap: 32px;
    align-items: center;
}

.error-page__subtitle {
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-align: center;
}

.cookies-popup {
    position: fixed;
    width: 584px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    right: 88px;
    bottom: 48px;
    padding: 20px 24px;
    background-color: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-gray-light);
    box-shadow: 0px 0px 5px 1px #00000010;
    z-index: 1000;
}

.cookies-popup.active {
    display: flex;
}

.cookie-popup__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    font-size: 14px;
    line-height: 140%;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-popup__button {
    padding: 7px 37px !important;
    font-size: 14px !important;
    line-height: 20px !important;
    text-transform: none !important;
}

.map .swiper-buttons button {
    border-radius: 50%;
}

.cant-signin-mobile-message {
    display: none;
}


.doc-img {
    width: 100%;
}

@media screen and (max-width: 1640px) {
    .employee-card__name {
        font-size: 32px;
        line-height: 34px;
    }
}

@media screen and (max-width: 1570px) {

    .book-card.active {
        max-width: 820px;
    }

    .book-card.active .book-card__right-block {
        max-width: 400px;
    }

    .book-card.active .book-card__quote {
        font-size: 32px;
        line-height: 34px;
    }

    .book-card.active .book-card__left-block {
        width: 300px;
    }

    .club-card__club-name {
        font-size: 32px;
        line-height: 34px;
    }

    .inspire-block__description {
        padding: 0px 120px;
    }

    .club-achievement-badge__top-pos {
        font-size: 96px;
        line-height: 80px;
    }

    .four-cards-container .card-title {
        font-size: 32px;
        line-height: 28px;
    }

    .who-it-will-fit__top-text {
        font-size: 28px !important;
        line-height: 28px !important;
    }

    .columns-cards.three-columns .partner-card {
        width: calc(50% - 8px);
    }

    .banner-h1 {
        font-size: 104px;
        line-height: 92px;
    }

    .banner {
        padding: 60px 88px;
    }

    .banner-container .swiper-buttons {
        bottom: 60px;
    }
}

@media screen and (max-width: 1448px) {
    .all-clubs-container .club-card {
        width: calc(33% - 10px);
    }

    .divided-into-two-page-container {
        gap: 56px;
    }

    .footer__cards-block__card p {
        font-size: 14px;
        line-height: 140%;
    }
}

@media screen and (max-width: 1400px) {

    .header__logo {
        width: 282px;
    }

    .header__menu-option {
        font-size: 20px;
    }

    header .header__menu-option {
        font-size: 18px;
    }

    header .header__right {
        gap: 16px;
    }

    header .header__center {
        gap: 16px;
    }

    .button-base {
        font-size: 20px;
    }

    .inspire-block-image {
        width: 991px;
        min-height: 484px;
        gap: 8px;
    }

    .inspire-block-image__column {
        gap: 8px;
    }

    .h2-title {
        font-size: 48px;
        line-height: 50px;
    }

    .h4-title {
        font-size: 34px;
        line-height: 36px;
    }

    .join-us-card-title {
        font-size: 88px;
        line-height: 80px;
    }

    .rating-sheet td.bold-cell {
        font-size: 28px;
        line-height: 32px;
    }

    .book-card__man-photo {
        width: 220px;
    }

    .book-card.active .book-card__man-photo {
        width: 270px;
    }

    .book-card.active .book-card__right-block {
        max-width: 340px;
    }

    .book-card.active .book-card__quote {
        font-size: 28px;
        line-height: 32px;
    }

    .book-card.active {
        max-width: 720px;
    }

    .book-card.active .book-card__left-block {
        width: 260px;
    }

    .book-cards-container.gap16-row-container {
        gap: 12px;
    }

    .footer-block.footer-top-block {
        flex-direction: column;
        gap: 40px;
    }

    .footer__join-us-block {
        gap: 16px;
    }

    .event-card__name {
        font-size: 24px;
        line-height: 28px;
    }

    .event-card__big-name {
        font-size: 32px;
        line-height: 34px;
    }

    .banner-h1 {
        font-size: 96px;
        line-height: 90px;
    }

    .huge-page-title {
        font-size: 96px;
        line-height: 80px;
    }

    .club-info-container {
        flex-direction: column;
        gap: 56px;
    }

    .club-badges-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .club-map {
        aspect-ratio: 2/1;
    }

    .club-achievement-badge {
        width: calc(50% - 8px);
    }

    .club-signs-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .club-signs-container__top.gap24-column-container {
        width: fit-content;
        flex-direction: row;
    }

    .club-name-container {
        align-items: flex-start;
    }

    .employee-card__name {
        font-size: 24px;
        line-height: 28px;
    }

    .footer__cards-block__card p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1330px) {
    .book-cards-container.gap16-row-container {
        flex-direction: column;
    }

    .book-card.active {
        width: 100%;
        max-width: none;
        height: 720px;
        animation: none;
    }

    .book-card {
        width: 100%;
        flex: none;
        height: 104px;
        scroll-margin-top: 100px;
        transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
    }

    .book-card-container {
        flex-direction: column-reverse;
        justify-content: space-between;
    }

    .book-card__man-photo {
        left: auto;
        right: 40px;
        top: 0;
    }

    .book-card.active .book-card__man-photo {
        left: auto;
        right: 40px;
        top: auto;
        bottom: 0;
    }

    .book-card.active .book-card__right-block {
        max-width: none;
        height: auto;
        width: 100%;
    }

    .book-card.active .book-card__quote {
        font-size: 48px;
        line-height: 48px;
    }

    .book-card__left-block {
        height: 100%;
        flex-direction: row;
        gap: 40px;
    }

    .book-card.active .book-card__left-block {
        width: fit-content;
        height: fit-content;
    }

    .book-card.active .book-card__left-block.gap24-column-container {
        flex-direction: row;
    }

    .book-card__name {
        width: fit-content;
        visibility: visible;
        opacity: 1;
    }

    .book-card.active .book-card__name {
        width: min-content;
    }

    .book-card__description {
        display: none;
    }

    .book-card.active .book-card__description {
        display: block;
    }

    .event-card {
        width: calc(50% - 8px);
    }

    .event-card.wide-event-card {
        width: 100%;
    }

    .banner-bg-image {
        height: 90%;
        top: auto;
        bottom: 0%;
    }

    .banner-h1 {
        font-size: 72px;
        line-height: 64px;
    }

    .four-cards-container .rating-card {
        width: calc(50% - 8px);
        aspect-ratio: 2 / 1;
    }

    .four-cards-container .card-title {
        font-size: 38px;
        line-height: 40px;
    }

    .who-it-will-fit-card p {
        font-size: 20px;
        line-height: 22px;
    }

    .who-it-will-fit__top-text {
        font-size: 24px !important;
        line-height: 24px !important;
    }
}

@media screen and (max-width: 1200px) {

    header .header__menu-option {
        font-size: 20px;
    }

    .sandwich-button {
        display: flex !important;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .sandwich-button__inner-container {
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .sandwich-button__line {
        width: 16px;
        height: 2px;
        background-color: var(--color-black-100);
        transition: all 0.2s;
    }

    .sandwich-button .sandwich-button__line:last-child {
        width: 8px;
        align-self: flex-start;
        margin-left: 4px;
    }

    .sandwich-button.active .sandwich-button__line:nth-child(1) {
        transform: rotate(45deg) translate(3.5px, 3.5px);
        width: 16px;
    }

    .sandwich-button.active .sandwich-button__line:nth-child(2) {
        transform: rotate(-45deg);
        width: 16px;
    }

    .sandwich-button.active .sandwich-button__line:nth-child(3) {
        opacity: 0;
        visibility: hidden;
    }

    header .header__center {
        display: none;
    }

    .inspire-block-image {
        width: 704px;
        aspect-ratio: 1/1;
    }

    .inspire-block-image .inspire-block-image__column:first-child {
        display: none;
    }

    .inspire-block-image .inspire-block-image__column:last-child {
        display: none;
    }

    .inspire-block-image__column {
        width: calc(33% - 3px);
    }

    .inspire-block-image__img-container.mobile {
        display: block;
    }

    .inspire-block-image__column.start {
        justify-content: center;
    }

    .inspire-block__description {
        padding: 0px;
    }

    .block-title {
        font-size: 48px;
        line-height: 48px;
    }

    .join-us-card-title {
        font-size: 64px;
        line-height: 60px;
    }

    .footer-bottom-block {
        flex-direction: column;
        gap: 40px;
    }

    .rating-sheet td.bold-cell {
        font-size: 24px;
        line-height: 28px;
    }

    .club-name-cell-container {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .rating-sheet tr td:first-child {
        width: 90px;
        min-width: 90px;
    }

    .rating-sheet .club-logo,
    .mobile-rating-sheet .club-logo {
        position: relative;
        left: auto;
        left: auto;
        transform: none;
    }

    .club-name-cell-container span,
    .club-name-cell-container a {
        width: 200px;
    }

    .book-card.active .book-card__man-photo {
        width: 240px;
    }

    .book-card.active .book-card__quote {
        font-size: 38px;
        line-height: 42px;
    }

    .banner-bg-image {
        object-fit: cover;
    }

    .main-page-us-swiper__slide__title {
        font-size: 96px;
        line-height: 82px;
    }

    .main-page-us-swiper__slide {
        min-height: 364px;
    }

    body.mobile-menu-open {
        overflow-y: hidden;
    }

    body.mobile-menu-open .wrapper {
        filter: brightness(0.5);
    }

    body.mobile-menu-open footer {
        filter: brightness(0.5);
    }

    .mobile-menu {
        position: fixed;
        max-height: fit-content;
        width: 100%;
        left: 0px;
        display: flex;
        padding: 40px 32px;
        background-color: var(--color-white);
        z-index: 1000;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        transform: scaleY(0);
        transform-origin: top;
    }

    .mobile-menu.active {
        max-height: fit-content;
        left: 0px;
        padding: 40px 32px;
        visibility: visible;
        transform: scaleY(1);
        transform-origin: top;
    }

    .mobile-menu__container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 56px;
    }

    .mobile-menu__options-list {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu__option {
        width: 100%;
        padding: 16px 0px;
        border-top: 1px solid var(--color-black-30);
        font-size: 56px;
        line-height: 56px;
        color: var(--color-black-100);
        text-transform: uppercase;
        font-weight: 650;
    }

    .mobile-menu__bottom {
        width: 100%;
        display: flex;
        align-items: flex-end;
    }

    .mobile-menu__bottom-subblock {
        flex: 1;
    }

    .mobile-menu__extra-options {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .all-clubs-container .club-card {
        width: calc(50% - 8px);
    }

    .page-utility-bar__subcontainer .search-input {
        width: 260px;
    }

    .slb-banner {
        position: static !important;
        width: 100% !important;
        aspect-ratio: 2/1;
    }

    .divided-into-two-page-container {
        flex-direction: column;
    }

    .who-it-will-fit__top-text {
        font-size: 30px !important;
        line-height: 32px !important;
    }

    .employee-card__name {
        font-size: 38px;
        line-height: 40px;
    }

    .columns-cards.three-columns .partner-card {
        width: calc(33% - 10px);
    }

}

@media screen and (max-width: 1100px), (pointer: coarse) {
    .sign-in-popup form {
        display: none;
    }

    .sign-in-popup .popup-bottom {
        display: none;
    }

    .cant-signin-mobile-message {
        display: flex;
    }
}

@media screen and (max-width: 991px) {

    .desktop {
        display: none;
    }

    p.desktop, h1.desktop, h2.desktop, h3.desktop, h4.desktop {
        display: none;
    }

    .button-base.desktop {
        display: none;
    }

    .tablet {
        display: initial;
    }

    p.tablet, h1.tablet, h2.tablet, h3.tablet, h4.tablet {
        display: inline;
    }

    .button-base.tablet {
        display: flex;
    }

    .wrapper {
        gap: 80px;
        padding-bottom: 80px;
    }

    .banner-wrapper {
        min-height: 800px;
    }

    .block-wrapper.padding-top {
        padding-top: 80px;
    }

    .block-wrapper.padding-bottom {
        padding-bottom: 80px;
    }

    .header-container {
        padding: 16px 32px;
    }

    .banner {
        padding: 56px 32px;
    }

    .banner-h1 {
        width: 100%;
        display: inline;
        font-size: 96px;
        line-height: 80px;
    }

    .banner-bg-image {
        width: 140%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0%;
        height: auto;
    }

    .banner-container .swiper-buttons {
        right: 32px;
        bottom: 56px;
    }

    .block-wrapper {
        padding: 0px 32px;
    }

    .inspire-block-image {
        width: 100%;
    }

    .side-padding {
        padding: 0px 32px;
    }

    .join-us-banner-main-page__container {
        padding: 104px 32px;
    }

    .other-clubs-swiper {
        padding: 0px 32px;
    }

    .join-us-banner-main-page__cards__container.gap16-row-container {
        flex-wrap: wrap;
    }

    .join-us-banner-main-page__cards__container .join-us-card:first-child {
        width: 100%;
        flex: none
    }

    .join-us-card-title {
        font-size: 112px;
        line-height: 96px;
    }

    .footer-container {
        gap: 80px;
        padding: 80px 32px 48px;
    }

    .footer-apply-button {
        align-self: center;
    }

    .footer-top-text {
        align-self: flex-end;
    }

    .footer__join-us-block__top {
        gap: 8px;
    }

    .footer-bottom-block {
        gap: 16px;
    }

    .mobile-rating-sheet {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .mobile-rating-sheet .row {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 16px 0px;
        border-top: 1px solid var(--color-black-30);
        gap: 16px;
    }

    .mobile-rating-sheet .row .row-top {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-rating-sheet .row .cell {
        flex: 1;
    }

    .mobile-rating-sheet .row .cell:first-child,
    .mobile-rating-sheet .row .cell:last-child {
        width: 104px;
        flex: none;
    }

    .mobile-rating-sheet .row .cell:last-child  {
        text-align: end;
    }

    .mobile-rating-sheet .row .row-bottom {
        display: flex;
        gap: 20px;
        margin-left: 120px;
    }

    .mobile-rating-sheet .row .row-bottom span {
        position: relative;
        font-size: 16px;
        line-height: 24px;
        color: var(--color-black-60);
        white-space: nowrap;
    }

    .mobile-rating-sheet .row .row-bottom span:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-rating-sheet .row .row-bottom span::after {
        position: absolute;
        content: '';
        width: 4px;
        height: 4px;
        background-color: var(--color-black-30);
        top: 50%;
        right: -12px;
        transform: translateY(-50%);
        border-radius: 50%;
    }

    .mobile-rating-sheet .row .row-bottom span:last-child::after {
        display: none;
    }

    .mobile-rating-sheet .row .row-bottom span:last-child::before {
        position: absolute;
        content: '';
        width: 4px;
        height: 4px;
        background-color: var(--color-black-30);
        top: 50%;
        left: -12px;
        transform: translateY(-50%);
        border-radius: 50%;
    }

    .main-page-clubs .swiper-buttons  {
        display: none;
    }

    .mobile-footer-bottom-block {
        display: flex;
    }

    .h1-title-container {
        padding: 80px 32px 0px;
    }

    .search-field.mobile {
        width: 100%;
        display: flex;
    }

    .search-input {
        width: 100%;
    }

    .join-club-button {
        max-width: 221px;
    }

    .club-signs-container .club-logo {
        width: 104px;
        height: 104px;
    }

    .four-cards-container .rating-card {
        width: calc(50% - 8px);
        aspect-ratio: 1 / 1;
    }

    .employee-card__name {
        font-size: 32px;
        line-height: 32px;
    }

    .map .swiper-buttons {
        right: 32px;
    }

    .error-page-container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .error-title {
        gap: 16px;
    }

    .error-page__subtitle {
        font-size: 20px;
        line-height: 22px;
    }

    .cookies-popup {
        right: 32px;
    }
}

@media screen and (max-width: 768px) {
    .inspire-block__description.columns-cards {
        flex-direction: column;
        gap: 24px;
    }

    .inspire-block__description__subblock br {
        display: none;
    }

    .club-card {
        max-width: 420px;
    }

    .request-form {
        width: 100%;
    }

    .error-page__number {
        width: 96px;
        height: auto;
    }

    .error-page__shifting-images-container {
        width: 291px;
        height: 151.06px;
    }

    .club-card__short-description {
        font-size: 12px;
        line-height: 14px;
    }
}

@media screen and (max-width: 720px) {

    .header__logo {
        display: none;
    }

    .header__logo.mobile-logo {
        display: block;
        width: 48px;
    }

    .banner-h1 {
        display: flex;
    }

    .banner-bottom .gap16-column-container {
        gap: 8px;
    }

    .h2-title {
        font-size: 38px;
        line-height: 36px;
    }

    .block-title {
        font-size: 38px;
        line-height: 36px;
    }

    .join-us-card-title {
        font-size: 96px;
        line-height: 84px;
    }

    .rating-sheet .bold-cell,
    .mobile-rating-sheet .bold-cell {
        font-size: 32px;
        line-height: 32px;
    }

    .mobile-rating-sheet .row .cell:first-child,
    .mobile-rating-sheet .row .cell:last-child {
        width: 82px;
    }

    .mobile-rating-sheet .row .row-bottom {
        margin-left: 98px;
    }

    .book-card.active .book-card__quote {
        font-size: 32px;
        line-height: 32px;
    }

    .event-card {
        width: 100%;
    }

    .footer-container {
        position: relative;
    }

    .cards-subblock {
        position: relative;
        left: -32px;
        padding: 0px 32px;
        width: calc(100% + 64px);
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .footer__cards-block {
        width: fit-content;
        flex-wrap: nowrap;
    }

    .cards-subblock::-webkit-scrollbar {
        width: 0;
    }

    .footer__cards-block__card {
        width: 212px;
    }

    .book-card__man-photo {
        width: 120px;
        right: 16px;
    }

    .book-card.active .book-card__man-photo {
        right: 16px;
    }

    .book-card {
        height: 64px;
        padding: 20px;
    }

    .book-card.active {
        height: 640px;
    }

    .main-page-us-swiper__slide__title {
        font-size: 64px;
        line-height: 56px;
    }

    .main-page-us-swiper__slide {
        min-height: 306px;
    }

    .banner-bg-image {
        height: 70%;
    }

    .mobile-menu__option {
        font-size: 48px;
        line-height: 48px;
    }

    .mobile-menu__bottom {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .huge-page-title {
        font-size: 64px;
        line-height: 56px;
    }

    .all-clubs-container .club-card .club-card__club-name {
        font-size: 28px;
        line-height: 24px;
    }

    .club-card {
        min-height: 340px;
    }

    .club-signs-container {
        flex-direction: column;
        gap: 24px;
    }

    .club-signs-container__top.gap24-column-container {
        flex-direction: column;
    }

    .club-name-container {
        align-items: center;
    }

    .club-achievement-badge {
        width: 100%;
        aspect-ratio: 2/1;
    }

    .club-signs-container .club-logo {
        width: 120px;
        height: 120px;
    }

    .four-cards-container .card-title {
        font-size: 28px;
        line-height: 30px;
    }

    .four-cards-container .rating-card {
        aspect-ratio: 1 / 1.5;
    }

    .employee-card__name {
        font-size: 24px;
        line-height: 24px;
    }

    .who-it-will-fit__top-text {
        font-size: 24px !important;
        line-height: 28px !important;
    }

    .columns-cards.three-columns .partner-card {
        width: calc(50% - 8px);
    }

    .cookies-popup {
        width: calc(100vw - 64px);
    }
}

@media screen and (max-width: 600px) {

    .tablet {
        display: none;
    }

    p.tablet, h1.tablet, h2.tablet, h3.tablet, h4.tablet {
        display: none;
    }

    .button-base.tablet {
        display: none;
    }

    .mobile {
        display: initial;
    }

    p.mobile, h1.mobile, h2.mobile, h3.mobile, h4.mobile {
        display: inline;
    }

    .button-base.mobile {
        display: flex;
    }

    .wrapper {
        gap: 40px;
        padding-bottom: 40px;
    }

    .block-wrapper.padding-top {
        padding-top: 40px;
    }

    .block-wrapper.padding-bottom {
        padding-bottom: 40px;
    }

    .button-base {
        padding: 16px;
    }

    header {
        height: 72px;
    }

    .header-container {
        padding: 12px 16px;
    }

    .header__button {
        padding: 12px;
    }

    .header__logo.mobile-logo {
        height: 48px;
    }

    .header__right {
        gap: 16px;
    }

    .sandwich-button {
        padding: 12px;
    }

    .banner {
        padding: 32px 16px;
    }

    .banner-container .swiper-buttons {
        display: none;
    }

    .banner-card {
        max-width: none;
        width: 100%;
    }

    .banner-bottom .button-base {
        width: 100%;
    }

    .banner-h1 {
        font-size: 72px;
        line-height: 60px;
    }

    .h2-title {
        font-size: 32px;
        line-height: 32px;
    }

    .h4-title {
        font-size: 22px;
        line-height: 24px;
    }

    .font-size24 {
        font-size: 20px;
    }

    .line-height32 {
        line-height: 28px;
    }

    .block-wrapper {
        padding: 0px 16px;
    }

    .side-padding {
        padding: 0px 16px;
    }

    .join-us-card-title {
        font-size: 64px;
        line-height: 56px;
    }

    .join-us-card {
        height: 200px;
    }

    .join-us-banner-main-page__container {
        padding: 40px 16px;
        gap: 32px;
    }

    .footer-container {
        padding: 40px 16px 24px;
        gap: 32px;
    }

    .cards-subblock {
        width: calc(100% + 32px);
        left: -16px;
        padding: 0px 16px;
    }

    .footer__cards-block {
        gap: 8px;
    }

    .footer__cards-block__card {
        width: 184px;
    }

    .footer-top-text {
        align-self: flex-start;
    }

    .footer-block.footer-top-block {
        gap: 32px;
    }

    .footer__bottom-subblock {
        align-items: center;
    }

    .footer__bottom-subblock__between {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer__bottom-subblock__gap {
        flex-direction: column;
        gap: 8px;
    }

    .footer-bottom-block {
        gap: 24px;
    }

    .footer__bottom-subblock:last-child {
        gap: 8px;
    }

    .footer__cards-block__card p {
        font-size: 14px;
        line-height: 18px;
    }

    .mobile-rating-sheet .row .cell:first-child {
        width: 40px;
    }

    .mobile-rating-sheet .row .cell:last-child {
        width: 64px;
    }

    .rating-sheet .bold-cell,
    .mobile-rating-sheet .bold-cell {
        font-size: 22px;
        line-height: 24px;
    }

    .club-name-cell-container {
        gap: 8px;
    }

    .rating-sheet .club-logo,
    .mobile-rating-sheet .club-logo {
        width: 24px;
        height: 24px;
    }

    .mobile-rating-sheet .row .row-bottom {
        margin-left: 0px;
    }

    .mobile-rating-sheet .row {
        gap: 12px;
    }

    .main-page-us-swiper__slide__title {
        font-size: 54px;
        line-height: 48px;
    }

    .main-page-us-swiper__slide {
        min-height: 296px;
    }

    .join-us-card-description {
        font-size: 12px;
        line-height: 16px;
    }

    .h2-title br {
        display: none;
    }

    .book-card.active .book-card__left-block.gap24-column-container {
        flex-direction: column;
        gap: 8px;
    }

    .book-card.active .book-card__man-photo {
        width: 152px;
    }

    .book-card.active {
        height: 560px;
    }

    .book-card.active .book-card__quote {
        font-size: 28px;
        line-height: 28px;
    }

    .book-card__left-block {
        gap: 16px;
    }

    .inspire-block-image {
        min-height: 280px;
    }

    .mobile-menu__option {
        font-size: 32px;
        line-height: 32px;
    }

    .mobile-menu.active {
        padding: 24px 16px;
    }

    .gap56-column-container {
        gap: 32px;
    }

    .block-title {
        font-size: 32px;
        line-height: 32px;
    }

    .event-card__name {
        font-size: 22px;
        line-height: 24px;
    }

    .block-container {
        gap: 32px;
    }

    .all-options-bar {
        gap: 8px;
    }

    .other-clubs-swiper {
        padding: 0px 16px;
    }

    .join-us-banner-main-page__cards__container.gap16-row-container {
        gap: 8px;
    }

    .club-card__club-name {
        font-size: 22px !important;
        line-height: 24px !important;
    }

    .all-clubs-container .club-card {
        width: calc(50% - 4px);
    }

    .club-card .club-info__indicator__name,
    .club-card .club-info__indicator__value {
        font-size: 12px;
        line-height: 16px;
    }

    .club-card__logo-container {
        width: 48px;
        height: 48px;
    }

    .club-card__title-container {
        gap: 16px;
    }

    .all-clubs-container {
        gap: 8px;
    }

    .h1-title-container {
        padding: 40px 16px 0px;
    }

    .huge-page-title {
        font-size: 54px;
        line-height: 48px;
    }

    .huge-page-subtitle {
        font-size: 20px;
        line-height: 24px;
    }

    .club-card {
        padding: 16px 16px 12px;
    }

    .club-info__indicator__name, .club-info__indicator__value {
        font-size: 20px;
        line-height: 28px;
    }

    .club-achievement-badge__top-pos {
        font-size: 64px;
        line-height: 56px;
    }

    .club-info-container {
        gap: 32px;
    }

    .club-info__main-info {
        gap: 32px;
    }

    .club-badges-container {
        gap: 8px;
    }

    .four-cards-container {
        gap: 8px;
    }

    .four-cards-container .card-title {
        font-size: 22px;
        line-height: 24px;
    }

    .rating-card .font-size16 {
        font-size: 12px;
        line-height: 16px;
    }

    .who-it-will-fit-card p {
        font-size: 20px;
        line-height: 28px;
    }

    .who-it-will-fit__top-text {
        font-size: 22px !important;
        line-height: 24px !important;
    }

    .columns-cards.two-columns .footer__cards-block__card {
        width: 100%;
        aspect-ratio: 3 / 1.5;
    }

    .columns-cards {
        gap: 8px;
    }

    .partner-logo-container {
        width: 128px;
        height: 128px;
    }

    .about-us-page-info {
        gap: 40px;
    }

    .partner-card {
        min-height: 240px;
        padding: 16px;
    }

    .document-card {
        padding: 16px;
    }

    .employee-card__photo {
        width: 64px;
        height: 64px;
    }

    .employee-card__name {
        font-size: 20px;
        line-height: 22px;
    }

    .employee-card .gap16-column-container {
        gap: 8px;
    }

    .employee-card {
        min-height: 288px;
    }

    .divided-into-two-page-container {
        gap: 32px;
    }

    .divided-into-two-page-container .gap32-column-container {
        gap: 24px;
    }

    .request-form {
        gap: 24px;
    }

    .banner-wrapper {
        min-height: 600px;
    }

    .rating-table-container {
        gap: 16px;
    }

    .map .swiper-buttons {
        right: 16px;
    }

    .map .swiper-buttons button {
        width: 48px;
        height: 48px;
    }

    .error-page-container {
        gap: 16px !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .error-page__subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 8px;
    }

    .error-page__number {
        width: 72.64px;
    }

    .error-page__shifting-images-container {
        width: 206.87px;
        height: 116px;
    }

    .cookies-popup {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 24px;
        flex-direction: column;
        padding: 16px;
    }

    .cookie-popup__left {
        gap: 19px;
    }

    .cookie-popup__button {
        width: 100%;
    }
}

@media screen and (max-width: 476px) {
    .columns-cards.two-columns.employee-block .employee-card {
        width: 100%;
    }

    .employee-card__name {
        font-size: 22px;
        line-height: 24px;
    }

    .mobile-full-width .form-input-container.half-width {
        width: 100%;
    }

    .club-info__main-info__about {
        font-size: 20px;
        line-height: 28px;
    }
}

@media screen and (max-width: 450px) {
    .join-us-card-title {
        font-size: 56px;
        line-height: 48px;
    }

    .wide-button {
        width: 100%;
    }

    .banner-bg-image {
        height: 80%;
    }

    .mobile-rating-sheet .row .cell:first-child {
        width: fit-content;
    }

    .mobile-rating-sheet .row .cell:last-child {
        width: fit-content;
    }

    .club-name-cell-container span,
    .club-name-cell-container a {
        width: 100px;
    }

    .book-card__name {
        font-size: 18px;
        line-height: 20px;
    }

    .book-card.active .book-card__quote {
        font-size: 24px;
        line-height: 26px;
    }

    .wide-event-card .event-card-container {
        height: 50%;
        background-color: var(--color-black-10) !important;
    }

    .event-card.with-bg .event-card__title {
        color: var(--color-blue-50);
    }

    .event-card.with-bg .event-card__date {
        color: var(--color-black-50);
    }

    .event-card__big-name {
        font-size: 22px;
        line-height: 24px;
    }

    .event-card.with-bg .event-card__big-name {
        color: var(--color-black-100);
    }

    .wide-event-card.event-card {
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }

    .event-card__top.gap16-column-container {
        gap: 8px;
    }

    .event-card.wide-event-card {
        height: 432px;
    }

    .event-card {
        min-height: 302px;
    }

    .event-card__big-name br {
        display: none;
    }

    .club-card {
        min-width: 280px;
        min-height: 292px;
    }

    .header__center {
        flex-direction: column;
        gap: 8px;
    }

    .book-card__left-block__name-block.gap24-column-container {
        gap: 16px;
    }

    .main-page-events-container.gap16-row-container {
        gap: 8px;
    }

    .footer-top-text br {
        display: none;
    }

    .banner-h1 {
        font-size: 54px;
        line-height: 48px;
    }

    .banner-card {
        gap: 16px;
    }

    .fieldset-container.many-options .column {
        max-width: none;
        min-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fieldset-container.many-options {
        flex-direction: column;
        gap: 8px;
    }

    .fieldset-container.many-options .column .form-input-container.full-width {
        width: calc(50% - 4px);
    }

    .popup-title {
        font-size: 22px;
        line-height: 24px;
    }

    .join-club-button {
        max-width: none;
    }

    .club-achievement-badge__top-pos {
        font-size: 54px;
        line-height: 48px;
    }

    .four-cards-container .card-title {
        font-size: 18px;
        line-height: 20px;
    }

    .option-button {
        padding: 12px;
    }

    .form-fields-container {
        gap: 20px;
    }

    .popup-form-button {
        font-size: 16px;
    }

    .slb-banner {
        aspect-ratio: 1/1;
    }

    .error-page__button {
        width: 100%;
    }

    .select2-results__option {
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {

    .error-title {
        width: 100%;
    }

    .error-page__shifting-images-container {
        width: auto;
        flex: 1;
    }
}

@media screen and (max-width: 416px) {
    .all-clubs-container .club-card {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {

    .other-inputs + label {
        font-size: 12px;
    }

    .join-us-card-title {
        font-size: 48px;
        line-height: 48px;
    }

    .header__logo.mobile-logo {
        width: 32px;
        height: 32px;
    }

    header .header__menu-option {
        font-size: 18px;
    }

    header .header__button {
        font-size: 16px;
    }

    .book-card.active {
        height: 480px;
    }

    .book-card__name {
        font-size: 14px;
    }

    .book-card.active .book-card__description {
        font-size: 12px;
        line-height: 16px;
    }

    .book-card.active .book-card__quote {
        font-size: 20px;
        line-height: 24px;
    }

    .book-card__man-photo {
        width: 90px;
    }

    header .social-media-links-container {
        gap: 8px;
    }

    .page-utility-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .huge-page-title {
        font-size: 42px;
        line-height: 38px;
    }

    .block-title {
        font-size: 28px;
        line-height: 28px;
    }

    .club-info__indicator__name, .club-info__indicator__value {
        font-size: 16px;
        line-height: 24px;
    }

    .club-achievement-badge__title {
        font-size: 20px;
        line-height: 22px;
    }

    .club-achievement-badge__top-pos {
        font-size: 48px;
        line-height: 42px;
    }

    .club-achievement-badge {
        padding: 16px;
    }

    .four-cards-container .rating-card {
        width: 100%;
        aspect-ratio: 1.5 / 1;
    }

    .columns-cards.three-columns .partner-card {
        width: 100%;
    }

    .popup-form-button {
        font-size: 14px;
    }

    .error-page__shifting-images-container {
        height: 97.55px;
    }

    .error-page__number {
        width: 62px;
    }

    .mobile-rating-sheet .row .row-bottom span {
        font-size: 14px;
    }
}