@font-face {
    font-family: "Oswald";
    src: url('/wp-content/themes/soccer-school/fonts/Oswald-VariableFont_wght.ttf');
    font-style: normal;
    font-weight: normal;
}

:root {
    --main-font: 'Montserrat';
    --main-color: #3b3b3b;
    --main-color-bright: #727272;
    --main-color-title: #252525;
    --main-color-btn: #5b5b5b;
    --main-color-btn-bright: #8d8d8d;
    --main-color-link: rgba(255, 255, 255, 0.50);
    --main-color-link-hover: rgba(255, 255, 255, 1);
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #dcdcdc;
    border-radius: 10px;
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: #dcdcdc;
}

html::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #FFF;
    background-image: -webkit-gradient(linear,
    40% 0%,
    75% 84%,
    from(var(--main-color)),
    to(var(--main-color-btn)),
    color-stop(.6, var(--main-color)))
}

html {
    font-family: 'Oswald';
}


a {
    text-decoration: none;
    color: var(--main-color-link);
    transition: all .3s ease-in-out;
}

a:focus,
a:active {
    color: var(--main-color-link);
}

.current-menu-item a {
    color: var(--main-color-link-hover);
}

a:hover {
    color: var(--main-color-link-hover);
}

main {
    display: flex !important;
    flex-direction: column;
    padding-top: 70px;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
}


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

.header_logo {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.header_logo picture {
    display: flex;
    height: 50px;
    padding: 10px;
}

.header_logo img {
    height: 50px;
    max-width: 70px;
    object-fit: contain;
    margin: 0 20px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.menu a {
    text-transform: uppercase;
}

.header_social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
}

.header li {
    list-style: none;
}

.header_social svg {
    width: 25px;
    height: 25px;
    object-fit: contain;
    transition: all .3s ease-in-out;
}

.header_social svg path {
    fill: #fff;
    transition: all .3s ease-in-out;
}

.header_social svg:hover path {
    fill: var(--main-color-btn);
}

.menu__box .header_social svg path {
    fill: var(--main-color-title);
}

.menu__box .header_social svg:hover path {
    fill: var(--main-color-btn);
}

.main_video {
    background: #3b3b3b;
    height: 100vh;
}

#menu__toggle {
    display: none;
    opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
    background-color: #5b5b5b;
    transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
    background-color: #5b5b5b;
    top: 0;
    transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
    background-color: #5b5b5b;
    top: 0;
    transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
    visibility: visible;
    right: 0;
}

.menu__btn {
    display: flex;
    align-items: center;
    position: absolute;
    top: 5px;
    right: 20px;
    height: 60px;
    width: 30px;
    cursor: pointer;
    z-index: 2;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e8e8e8;
    transition-duration: .3s;
}

.menu__btn > span::before {
    content: '';
    top: -8px;
}

.menu__btn > span::after {
    content: '';
    top: 8px;
}

.menu__box {
    display: block;
    position: fixed;
    visibility: hidden;
    top: 0;
    right: -100%;
    width: 230px;
    height: 100%;
    margin: 0;
    padding: 80px 40px;
    list-style: none;
    background-color: #ECEFF1;
    box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    z-index: 1;
    transition-duration: .3s;
}

.menu__box ul {
    margin: 0;
    padding: 0;
}

.menu__box .current-menu-item a {
    font-weight: 700;
    color: var(--main-color-title);
}

.menu__item {
    display: block;
    padding: 12px 24px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition-duration: .3s;
}

.menu__item:hover {
    background-color: #CFD8DC;
}

.menu__hamburger {
    margin-bottom: 40px !important;
}

.menu__hamburger li {
    margin-bottom: 20px;
}

.menu__hamburger li a {
    font-size: 18px;
    color: #3b3b3b;
    text-transform: uppercase;
}

.hamburger-menu {
    display: flex;
    height: 70px;
    width: 70px;
    position: relative;
    background: #5b5b5b;
}

.button {
    font-size: 14px !important;
    text-transform: uppercase !important;
    display: flex;
    text-align: center;
    font-weight: 700;
    height: 38px;
    letter-spacing: .2em;
    outline: none !important;
    padding: 10px 40px;
    border: 3px solid #e6e6e666;
    background-color: var(--main-color-btn);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
    cursor: pointer;
    align-items: center;
}

@keyframes glowing {
    0% {
        background-color: var(--main-color-btn-bright);
        box-shadow: 0 0 5px var(--main-color-btn-bright);
    }
    50% {
        background-color: var(--main-color-btn-bright);
        box-shadow: 0 0 20px var(--main-color-btn-bright);
        filter: brightness(1.2);
    }
    100% {
        background-color: var(--main-color-btn-bright);
        box-shadow: 0 0 5px var(--main-color-btn-bright);
    }
}

.button_animation {
    animation: glowing 1300ms infinite;
}

.button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    background-color: #ffffff;
    z-index: -1;
}

.button:hover, .button:focus {
    color: var(--main-color-btn-bright);
}

.button:hover:before, .button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}

.button:active {
    transform: scale(0.9);
}

.header_right .button {
    padding: 0 20px;
}

@media (max-width: 1440px) {
    .header_logo .main-navigation {
        display: none;
    }
}

@media (max-width: 900px) {
    .header_right .header_right_social {
        display: none;
    }

    .button {
        font-size: 12px !important;
    }
}

.footer {
    background: #3b3b3b;
    padding: 0;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.footer_copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 35px;
    padding: 30px 0;
}

.copyright_container {
    display: flex;
    gap: 0 15px;
    color: #e6e6e6;
    font-size: 14px;
    font-family: 'Roboto';
}

.footer_copy .header_social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.copy {
    display: inline-block;
    max-width: 500px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .footer_copy {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .copyright_container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .copy {
        text-align: center;
    }

    .studio {
        padding: 20px 0;
    }

    .header_social {
        align-items: center;
        justify-content: center;
    }
}

.section-video {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video-block__player {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0.5;
}

.section-video-content {
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-video-title {
    padding: 0 150px;
    user-select: none;
}

.section-video-title h1 {
    font-size: 120px;
    color: #e6e6e6;
    max-width: 900px;
    margin-bottom: 20px;
}

.section-video-title span {
    font-size: 40px;
    color: #e6e6e6;
}

.section-slide-content {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-slide-title {
    padding: 0 150px;
    user-select: none;
}

.section-slide-title h1 {
    font-size: 120px;
    color: #e6e6e6;
    max-width: 900px;
}

.section-slide-title span {
    font-size: 40px;
    color: #e6e6e6;
}

@media (max-width: 1440px) {
    .section-video-title,
    .section-slide-title {
        padding: 0 30px;
    }

    .section-video-title h1,
    .section-slide-title h1 {
        margin: 0;
        font-size: 100px;
    }

}

@media (max-width: 900px) {
    .section-video-title h1,
    .section-slide-title h1 {
        margin: 0;
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .section-video-title h1,
    .section-slide-title h1 {
        margin: 0;
        font-size: 60px;
    }

    .section-video-title span,
    .section-slide-title span {
        font-size: 40px;
        color: #e6e6e6;
    }
}

@media (max-width: 480px) {
    .section-video-title h1,
    .section-slide-title h1 {
        margin: 0;
        font-size: 44px;
    }

    .section-video-title span,
    .section-slide-title span {
        font-size: 32px;
        color: #e6e6e6;
    }
}

.section-slideshow {
    height: calc(100vh - 70px);
}

.mainSlider {
    height: 100%;
}

.slideshow_slide {
    position: relative;
}

.slideshow_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide_block_btn {
    margin-top: 30px;
    width: fit-content;
}

.swiper-button-next,
.swiper-button-prev {
    border: 2px solid var(--main-color-link);
    border-radius: 50%;
    padding: 12px 20px;
    top: auto !important;
    bottom: 10px;
    transition: 0.5s all ease;
    user-select: none;
}

.swiper-button-prev {
    left: 40% !important;
    right: auto !important;
}

.swiper-button-next {
    right: 40% !important;
    left: auto !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    color: var(--main-color-link) !important;
    transition: 0.5s all ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border: 2px solid var(--main-color-link-hover);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: var(--main-color-link-hover) !important;
}

.swiper-pagination {
    color: var(--main-color-link) !important;
    font-size: 24px !important;
    user-select: none;
    bottom: 30px !important;
    z-index: 1 !important;
}

@media (max-width: 1200px) {
    .swiper-button-prev {
        left: 30% !important;
        right: auto !important;
    }

    .swiper-button-next {
        right: 30% !important;
        left: auto !important;
    }
}

@media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        padding: 2px 10px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
    }

    .swiper-pagination {
        bottom: 20px !important;
    }

    .swiper-button-prev {
        left: 20% !important;
        right: auto !important;
    }

    .swiper-button-next {
        right: 20% !important;
        left: auto !important;
    }
}

.section_category {
    padding: 50px 0;
}

.section_title {
    font-size: 58px;
    line-height: 70px;
    color: var(--main-color-title);
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: 15px;
}

.section_title_white {
    font-size: 58px;
    line-height: 70px;
    color: #e6e6e6;
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-left: 15px;
}

.section_desc_white {
    margin-bottom: 30px;
    margin-left: 15px;
    font-size: 22px;
    color: #e6e6e6;
}

.section_desc {
    margin-bottom: 30px;
    margin-left: 15px;
    font-size: 22px;
}

.category_list {
    display: flex;
    flex-wrap: wrap;
}

.category_item {
    user-select: none;
    position: relative;
    font-size: 18px;
    margin: 0 15px 30px;
    min-height: 200px;
    width: calc(25% - 30px);
    box-shadow: 0 60px 60px -10px rgba(0, 0, 0, .2);
    color: #333;
    transition: 0.5s all ease;
}

.category_item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.category_item_content {
    padding: 30px;
}

.category_item:hover {
    background: inherit;
}

.category_item:hover,
.category_item:focus,
.category_item:active {
    color: #333;
}

.category_item_content {
    position: relative;
    z-index: 3;
    color: #e6e6e6;
}

.category_item_title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 6px var(--main-color);
}

.category_item_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(145, 152, 229, 0.3), var(--main-color));
    opacity: 0.8;
    z-index: 2;
}

.category_item:hover .category_item_wrap {
    background: linear-gradient(rgba(145, 152, 229, 0.3), var(--main-color-bright));
}

.category_item_continue {
    position: relative;
    margin-top: 20px;
    width: 100%;
    text-align: right;
    font-size: 14px;
    color: var(--main-color-link);
    z-index: 3;
}

.category_item:hover .category_item_continue {
    color: #e6e6e6;
}

@media (max-width: 1400px) {
    .category_item {
        width: calc(33.33% - 30px);
    }
}

@media (max-width: 1000px) {
    .category_item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .category_item {
        width: calc(50% - 30px);
        margin-bottom: 20px;
    }

    .section_title,
    .section_title_white {
        font-size: 38px;
        margin-left: 0;
    }

    .section_desc,
    .section_desc_white {
        margin-left: 0;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .category_item {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}

.section_adv {
    background: var(--main-color);
    padding: 100px 0;
    user-select: none;
}

.adv_list {
    display: flex;
    flex-wrap: wrap;
}

.adv_item {
    display: flex;
    align-items: center;
    width: calc(25% - 90px);
    margin: 0 15px;
    padding: 30px;
    box-shadow: 0 60px 60px -10px rgba(0, 0, 0, .2);
}

.adv_item_svg {
    display: flex;
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

.adv_item_svg svg path,
.adv_item_svg svg polygon {
    fill: #e6e6e6;
}

.adv_item_content {
    height: 100%;
}

.adv_item_title {
    color: #e6e6e6;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.adv_item_desc {
    color: #e6e6e6;
    font-size: 16px;
}

.inherit {
    background: inherit;
    transition: 0.5s all ease;
}

.no_inherit {
    background: var(--main-color) !important;
    transition: 0.5s all ease;
}

@media (max-width: 1400px) {
    .adv_item {
        width: calc(33.33% - 90px);
    }
}

@media (max-width: 1000px) {
    .adv_item {
        width: calc(50% - 90px);
    }
}

@media (max-width: 768px) {
    .adv_item {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }

    .section_adv {
        padding: 50px 0;
    }
}

.trainer_container {
    position: relative;
    background: var(--main-color);
    display: flex;
    overflow: hidden;
}

.trainersSlider {
    width: 100%;
    height: 700px !important;
}

.trainer_container .section_title_white {
    position: absolute;
    top: 13%;
    left: 13%;
    z-index: 3;
    transform: rotate(90deg);
    width: min-content;
}

.trainer_container .section_title_white b {
    color: var(--main-color-bright);
}

.section_title b {
    color: var(--main-color);
}

.trainer_wrapper {
    position: relative;
}

.trainer_slide {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
}

.logo-back-container {
    position: absolute;
    left: 40%;
    top: 5%;
    max-width: 600px;
    height: auto;
}

.logo-back-container img {
    width: 100%;
    opacity: 0.05;
}

.trainer_slide_content {
    display: flex;
}

.trainer_photo {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.trainer_photo img {
    max-height: 600px;
}

.trainer_slide_content img {
    height: 90%;
}

.trainer_slide_content-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-right: 80px;
}

.trainer_title {
    color: #fff;
    font-size: 68px;
    line-height: 100%;
    margin-bottom: 30px;
    width: min-content;
    text-transform: uppercase;
}

.trainer_dol {
    color: var(--main-color-link);
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 40px;
    opacity: .8;
    text-transform: uppercase;
}

.trainer-text {
    color: var(--main-color-link);
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 15px;
}

.trainer_date {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.trainer_bio {
    font-family: 'Roboto';
    color: #fff;
    font-size: 18px;
    font-weight: 200;
    line-height: 110%;
    max-width: 400px;
}

.trainer_slide_content-desc {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1700px) {
    .trainer_container .section_title_white {
        top: 10%;
        left: 0;
    }
}

@media (max-width: 1400px) {
    .trainer_slide_content {
        padding-left: 200px;
    }
}

@media (max-width: 1200px) {
    .trainer_slide_content-title {
        padding-right: 40px;
    }

    .trainer_slide_content img {
        height: 80%;
    }
}

@media (max-width: 1000px) {
    .trainer_slide_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 20px 20px 0 20px;
        padding-top: 100px;
    }

    .trainer_slide_content-title {
        flex-direction: row;
        padding: 0;
    }

    .trainer_slide_content img {
        height: 100%;
    }

    .trainer_container .section_title_white {
        position: absolute;
        top: 2%;
        left: 20px;
        z-index: 3;
        transform: rotate(0deg);
        width: max-content;
    }

    .trainer_title {
        padding-right: 30px;
        font-size: 44px;
    }

    .trainersSlider {
        height: auto !important;
    }

    .trainer_dol {
        margin-bottom: 20px;
    }
}

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

    .trainer_photo img {
        max-height: 500px;
    }

    .trainer_slide_content {
        padding-top: 0;
    }

    .trainer_slide_content-title {
        flex-direction: column;
    }

    .trainer_title {
        width: fit-content;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .trainer_dol {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .trainer_date {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .trainer_bio {
        font-size: 14px;
    }

    .trainer_slide_content img {
        max-height: 500px;
        width: 100%;
        object-fit: contain;
    }

    .trainer_slide_content {
        margin-top: 20px;
        height: 100%;
    }

    .trainer_container {
        flex-direction: column;
    }

    .trainer_container .section_title_white {
        position: relative;
        padding-top: 20px;
    }

    .trainer_slide {
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    .trainer_photo {
        height: 100%;
    }

    .trainer_photo img {
        max-height: 300px;
    }

    .trainersSlider {
        width: 100%;
        height: 100% !important;
        align-items: flex-end;
    }

    .trainer_wrapper {
        align-items: flex-end;
    }

    .trainer_dol {
        margin-bottom: 20px;
    }

    .trainer_bio {
        max-width: 300px;
    }

    .trainer_title {
        width: 270px;
        line-height: 120%;
    }

    .trainer_slide_content img {
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }

    .logo-back-container {
        left: 0;
        top: 10%;
        right: -60%;
    }
}

.section_news {
    position: relative;
    padding: 100px 0;
}

.news_container {
    display: flex;
    overflow: hidden;
}

.newsSlider {
    margin-right: -200px !important;
}

.news_wrapper {
    padding-bottom: 60px;
    height: 400px !important;
}

.news_slide {
    background-color: #1e1e1e;
    box-shadow: 0 30px 30px rgba(0, 0, 0, .2);
    height: 400px !important;
    position: relative;
    color: #ffffff;
    user-select: none;
}

.news_container-title {
    display: flex;
    width: 35%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}


.news_container .section_title_white b {
    color: var(--main-color);
}

.news_slide-next,
.news_slide-prev {
    position: relative !important;
    top: 0 !important;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    padding: 10px 20px;
    transition: 0.5s all ease;
    user-select: none;
    margin-top: 0 !important;
    z-index: auto !important;
}

.news_slide-next:after,
.news_slide-prev:after {
    font-size: 20px !important;
    color: var(--main-color) !important;
    transition: 0.5s all ease;
}

.news_slide-next:hover,
.news_slide-prev:hover {
    border: 2px solid var(--main-color-bright);
}

.news_slide-next:hover:after,
.news_slide-prev:hover:after {
    color: var(--main-color-bright) !important;
}

.news_slide-prev {
    left: 0 !important;
}

.news_slide-next {
    right: 0 !important;
}

.news_slide_nav {
    display: flex;
    position: relative;
    align-items: center;
    padding: 0 255px;
}

.news_slide_nav .button {
    width: fit-content;
    margin-right: 65px;
    min-width: fit-content;
}

.swiper-scrollbar {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 20px;
}

.swiper-scrollbar-drag {
    background: var(--main-color) !important;;
}

.news_slide_content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 85%;
    padding: 15px;
    padding-bottom: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.news_slide_date {
    color: hsla(0, 0%, 100%, .7);
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 15px;
}

.news_slide img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.news_slide_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(145, 152, 229, 0.2), var(--main-color-title));
    z-index: 2;
}

.news_slide:hover .news_slide_wrap {
    background: linear-gradient(rgba(145, 152, 229, 0.3), var(--main-color));
}

.news_slide_title {
    display: flex;
}

.news_slide_nav-arrow {
    display: flex;
    align-items: center;
    width: 70%;
}

.news_title {
    display: flex;
    height: 100%;
    padding: 0 30px;
}

.news_title .section_title_white {
    display: flex;
    flex-direction: column;
    writing-mode: vertical-rl;
    width: min-content;
    color: var(--main-color-title);
}

.news_slide_nav-btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 40px;
}

.news_slide_nav-btn .button {
    width: fit-content;
}

.news_container-title-mob {
    display: none;
}

@media (max-width: 768px) {
    .news_wrapper {
        height: 300px !important;
        padding-bottom: 30px;
    }

    .news_container-title {
        display: none;
    }

    .news_container-title-mob {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .news_container-title-mob .section_title_white,
    .section_title {
        line-height: 105%;
        color: var(--main-color-title);
        margin-bottom: 0;
    }

    .news_single_container .section_title {
        margin-bottom: 30px;
    }

    .news_container {
        flex-direction: column;
        padding: 0 15px;
    }

    .news_container-title {
        flex-direction: row;
        width: 100%;
        align-items: center;
    }

    .news_container-title .section_title_white {

        line-height: 40;
        writing-mode: horizontal-tb;
    }

    .newsSlider {
        width: 100%;
        margin-right: 0 !important;
    }

    .news_slide_nav-arrow {
        width: 100%;
    }

    .news_slide_nav-btn {
        padding: 0;
    }

    .news_slide-next,
    .news_slide-prev {
        padding: 7px 20px;
    }
}

.ymaps-layers-pane {
    filter: hue-rotate(90deg);
    -ms-filter: hue-rotate(90deg);
    -webkit-filter: hue-rotate(90deg);
    -moz-filter: hue-rotate(90deg);
    -o-filter: hue-rotate(90deg);
}

.section_where {
    padding: 40px 0;
}

.where_wrapper {
    align-items: center;
    height: 700px !important;
}

.where_slide {
    position: relative;
    width: 700px !important;
    height: 500px !important;
}

.where_slide picture {
    display: flex;
    width: 100%;
    height: 100%;
}

.where_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.where_slide_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 85%;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #e6e6e6;
}

.where_slide_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(145, 152, 229, 0) 10%, var(--main-color) 90%);
    z-index: 2;
    opacity: 0.5;
}

.where_slide_title {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.where_slide_desc {
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 50%;
}

.where_slide_adress {
    font-size: 24px;
}

.trainer_container_date {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .where_wrapper {
        align-items: center;
        height: 400px !important;
    }

    .where_slide {
        position: relative;
        width: 280px !important;
        height: 300px !important;
    }

    .where_slide_title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .where_slide_desc {
        font-size: 14px;
        margin-bottom: 10px;
        max-width: 80%;
    }

    .where_slide_adress {
        font-size: 18px;
    }

    .trainer_container_date {
        display: flex;
        align-items: flex-end;
    }

    .trainer_container_date .trainer_date {
        margin-bottom: 0;
    }

    .trainer_container_bio {
        display: flex;
        align-items: flex-start;
    }

    .trainer-text {
        margin-right: 15px;
        margin-bottom: 0;
    }

    .trainer_container_bio .trainer-text {
        margin-bottom: 0;
        writing-mode: vertical-rl;
    }

    .trainer_bio {
        margin-bottom: 0;
    }
}

.swiper-pagination-bullet {
    width: 25px !important;
    border-radius: 3px !important;
}

.swiper-pagination-bullet-active {
    background: var(--main-color-bright) !important;
    width: 50px !important;
}

.section_feedback {
    background: var(--main-color);
    padding: 50px 0;
}

.feedback_container {
    display: flex;
    gap: 50px;
}

.feedback_container_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 50px);
}

.contact-form__input {
    padding: 20px 30px;
}

.form__controls {
    width: 100%;
    margin-bottom: 30px;
}

.form__controls p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.feedback_form {
    position: relative;
    padding: 60px;
    background: #ffffff;
    box-shadow: 0 30px 30px rgba(0, 0, 0, .2);
}

.wpcf7-form-control-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form__label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.wpcf7-text {
    border-radius: 15px;
    border: 3px solid var(--main-color-bright);
}

.feedback_form .section_title {
    margin-left: 0;
    position: relative;
    color: var(--main-color);
}


.feedback_form_desc {
    margin-bottom: 40px;
    font-size: 22px;
    color: #5b5b5b;
}

.form__row .button {
    height: 100%;
    padding: 20px 70px;
}

.wpcf7-not-valid-tip {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    font-size: 14px;
}

.wpcf7-response-output {
    position: absolute;
    bottom: 0;
    left: 50px;
    width: 77%;
    font-size: 14px;
}

.form__check, .form__check p {
    display: flex;
}

.wpcf7-list-item {
    margin-left: 0;
    margin-right: 20px;
}

.checkmark {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    background: inherit;
    border: 2px solid var(--main-color-bright);
    border-radius: 4px;
    margin-right: 20px;
}

.form__check-input:checked ~ * .checkmark:before {
    position: absolute;
    left: 4px;
    top: -2px;
    content: '\2713';
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.form__check-input {
    display: none;
}

.form__check-label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #181818 !important;
}

.form__check-label a {
    color: #545454 !important;
    text-decoration: underline;
    margin-left: 5px;
}

.form__check-input:checked ~ * span.checkmark {
    background-color: var(--main-color-bright);
    border: 2px solid var(--main-color-bright);
}

.reviews-slide {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
}

.reviews-slide img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 80px;
    margin-bottom: 10px;
}

.reviews-fio {
    font-size: 24px;
    color: #111111;
    margin-bottom: 20px;
}

.reviews-checked {
    color: orange;
}

.reviews-ocenka {
    font-size: 24px;
    margin-bottom: 20px;
}

.reviews-text {
    font-family: 'Roboto';
    text-align: center;
    padding: 0 50px;
}

.feedback_reviews {
    display: flex;
    width: 100%;
}

.reviewsSwiper {
    display: flex;
    width: 400px;
}

.reviews-slide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 50px 0;
}

.feedback_container .section_title_white {
    margin-bottom: 50px;
    margin-left: 0;
}

@media (max-width: 1100px) {
    .reviews-slide {
        min-height: 550px;
    }

    .feedback_form {
        display: flex;
        padding: 30px;
        flex-direction: column;
        align-items: center;
    }

    .feedback_reviews {
        display: flex;
        width: 100%;
    }

    .reviewsSwiper {
        display: flex;
        height: 100%;
    }

    .feedback_container {
        flex-direction: column;
    }

    .feedback_container_item {
        width: 100%;
    }

    .feedback_form {
        padding: 30px;
    }

}

@media (max-width: 480px) {
    .form__row .button {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
}

.wpcf7 form .wpcf7-response-output {
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.fancybox-content .wpcf7-form {
    padding-bottom: 25px;
}

.thanks-popup {
    background: var(--main-color) !important;
}

.thanks-popup__title {
    font-size: 40px;
    color: #e6e6e6;
}

.thanks-popup__desc {
    font-size: 20px;
    color: #e6e6e6;
}

.breadcrumbs {
    padding: 30px 0;
}

.breadcrumbs a {
    color: var(--main-color);
}

.entry-title {
    font-size: 58px;
    line-height: 100%;
    color: var(--main-color-title);
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 0;
}

.entry-content {
    font-size: 18px;
    line-height: 180%;
    font-family: 'Roboto';
}

.wp-block-image .alignleft {
    margin-right: 30px;
}

.entry-content ul {
    padding-left: 20px;
}

.entry-content ul li {
    margin-bottom: 10px;
}

.wp-block-details {
    margin: 40px;
}

.wp-block-table {
    margin-bottom: 40px;
    font-family: 'Oswald';
    overflow: visible;
}

.wp-element-caption {
    margin: 20px;
    font-size: 14px;
}

.wp-block-table tbody tr:nth-child(even) {
    background: #f3f3f3;
}

.wp-block-table tr:first-child {
    background: var(--main-color);
    color: #e6e6e6;
}

.page_container {
    margin-bottom: 80px;
}

.wp-block-pullquote {
    padding: 30px 0;
}

.page_container_aside_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page_container_aside_list .news_slide {
    max-height: 300px;
}

.page_container {
    display: flex;
    gap: 50px;
}

.page_container_content {
    max-width: 70%;
}

.page_container_aside {
    display: flex;
    flex-direction: column;
    height: fit-content;
    background: var(--main-color);
    padding: 20px;
    max-width: 30%;
}

.page_container_aside-title {
    color: #e6e6e6;
}

.wp-block-heading {
    font-family: 'Oswald';
    margin-top: 50px;
}

.news_archive_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
    margin-bottom: 40px;
}

.news_archive_list article {
    position: relative;
    width: 23%;
    height: 400px;
}

.news_archive_container {
    margin-bottom: 80px;
}

.news_archive_container .section_title {
    margin-left: 0;
}

.news_archive_container .button {
    width: fit-content;
}

.news_archive_list .news_slide {
    display: flex;
}

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

.not {
    border: 2px solid #8d8d8d;
    color: #8d8d8d;
    padding: 10px 20px;
    border-radius: 12px;
    width: fit-content;
}

@media (max-width: 1200px) {
    .news_archive_list article {
        width: 32%;
    }
}

@media (max-width: 1000px) {
    .news_archive_list {
        margin-top: 40px;
    }

    .news_archive_list article {
        width: 49%;
    }
}

@media (max-width: 600px) {
    .news_archive_list article {
        width: 100%;
        height: 250px !important;
    }

    .news_archive_list article .news_slide {
        height: 250px !important;
    }
}

.news_single_container {
    width: 100%;
    font-size: 16px;
    font-family: 'Roboto';
    margin: 0 50px;
}

.news_single_content {
    margin-bottom: 80px;
    line-height: 180%;
}

.news_single_container .news_single_img picture {
    display: flex;
    height: 600px;
    width: 100%;
    box-shadow: 0 60px 60px -10px rgba(0, 0, 0, .2);
}

.news_single_container .news_single_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 60px 60px -10px rgba(0, 0, 0, .2);
}

.news_single_img {
    margin-bottom: 80px;
}

.news_nav {
    display: flex;
    align-items: center;
    color: var(--main-color) !important;
    gap: 20px;
}

.news_nav svg path {
    fill: var(--main-color) !important;
}

.news_single_header {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
}

.news_single_container .section_title {
    margin-left: 0;
    font-family: 'Oswald';
}

.news_single_gallary {
    margin-bottom: 80px;
}

.news_single_gallary_img img {
    object-fit: cover;
    cursor: pointer;
}

@media (max-width: 1440px) {
    .news_single_container {
        margin: 0;
    }
}

@media (max-width: 1024px) {
    .page_container_aside {
        display: none;
    }

    .page_container_content {
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .news_single_container .news_single_img picture {
        height: 400px;
    }

    .news_single_container .news_single_img img {
        height: 400px;
    }

    .wpcf7-form {
        margin-bottom: 30px;
    }

    .wpcf7-response-output {
        bottom: 0;
        left: 20px;
        width: 70%;
        font-size: 12px;
    }

    .news_slide {
        height: 300px !important;
    }
}

@media (max-width: 480px) {

    .news_single_container .news_single_img picture {
        height: 250px;
    }

    .news_single_container .news_single_img img {
        height: 250px;
    }

    .news_single_gallary_img img {
        width: 155px;
        height: 100px;
    }

    .news_single_img {
        margin-bottom: 40px;
    }

    .form__check-label a {
        margin-left: 43px;
    }

    .entry-content,
    .news_single_content {
        font-size: 16px;
        line-height: 150%;
    }

    .wp-block-pullquote {
        padding: 0;
    }

    .blockquote {
        font-size: 18px;
    }


}

.contact_container {
    width: 100%;
    margin-bottom: 80px;
}

.contact_container_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact_container_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
    min-height: 245px;
    width: calc(33.3% - 90px);
    background-color: #fff;
    box-shadow: 0 60px 60px -10px rgba(0, 0, 0, .2);
    padding: 30px;
    position: relative;
}

.contact_container_item h3 {
    text-transform: uppercase;
    font-size: 28px;
}

.contact_container_item-row {
    display: flex;
    gap: 15px;
}

.contact_container_item-row-val {
    font-weight: bold;
}

@media (max-width: 1500px) {
    .container {
        width: auto;
    }
}

@media (max-width: 1024px) {
    .contact_container_item {
        width: calc(50% - 100px);
    }

    .news_single_content-block iframe {
        width: 100%;
        height: 400px;
    }

    .entry-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .contact_container_item {
        width: 100%;
    }

    .news_single_content-block iframe {
        width: 100%;
        height: 200px;
    }
}

.section_group {
    position: relative;
    width: 100%;
    padding: 100px 0;
}

.section_group-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.section_group-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(rgba(0, 0, 0, 0.4) 0%, var(--main-color) 100%);
}

.group_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.group_head .section_title_white {
    max-width: min-content;
}

.group-slide {
    padding: 30px 0;
    color: #ffffff;
    opacity: .4;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: all .2s ease-in-out !important;
    min-height: 370px;
}

.group-slide:hover {
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.group-slide.swiper-slide-active {
    opacity: 1;
}

.group-slide-head {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.group-slide-head-desc {
    color: var(--main-color-bright);
}

.group-slide-title {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 40px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.group-slide-desc {
    font-family: 'Roboto';
    font-size: 16px;
    line-height: 26px;
    margin-left: 0px;
    position: relative;
    margin-bottom: 10px;
    margin-top: 0px;
}

.group-slide-desc ul {
    padding-left: 20px;
}

.group-slide-desc ul li {
    margin-bottom: 10px;
}

.groupSwiper .swiper-pagination {
    bottom: 0 !important;
}

.group-wrapper {
    margin-bottom: 40px;
}

.groupSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .9 !important;
}

.group-slide-head,
.group-slide-title,
.group-slide-desc {
    padding: 0 20px;
}

.section_group .section_title_white b {
    color: var(--main-color-bright);
}

@media (max-width: 768px) {
    .section_group {
        padding: 50px 0;
    }

    .group_head .button {
        display: none;
    }

    .section_group .section_title_white {
        line-height: 105%;
    }

    .group_head {
        margin-bottom: 0;
    }

    .group_list {
        margin: 0 15px;
    }

    .section_group .swiper {
        padding-right: 10px;
    }
}

.tel {
    display: flex;
    gap: 15px;
    align-items: center;
}

.tel a {
    font-size: 28px;
    font-weight: bold;
}

.tel span {
    font-size: 14px;
    color: rgb(123 123 123);
}

.tel_mob {
    display: none;
}

@media (max-width: 768px) {
    .tel {
        display: none;
    }

    .tel_mob {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 30px;
    }

    .tel_mob a {
        color: #2a2a2a;
    }
}

.error-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.error-404 h1 {
    font-size: 150px;
    text-shadow: var(--main-color-bright);
    margin: 40px 0 !important;
}

.error-404_desc {
    font-size: 22px;
    margin-bottom: 40px;

}

.error-404_btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.error-404_btns div {
    cursor: pointer;
}

.section_price {
    padding: 50px 0;
    background: #f5f5f5;
}

.price_container {
    display: flex;
    flex-direction: column;
    padding: 50px 100px;
}

.price_head {
    display: flex;
}

.price_head_item {
    display: flex;
    flex-direction: column;
    width: 25%;
    padding-top: 20px;
    border-radius: 15px 15px 0 0;
    font-family: Comfortaa;
}

.price_head_item p {
    padding: 50px 20px;
    line-height: 26px;
    font-weight: 700;
}

.price_item {
    display: flex;
    width: 100%;
    font-family: Comfortaa;
}

.price_item_child {
    display: flex;
    width: 25%;
}

.price_head_title-most {
    padding-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    font-family: Comfortaa;
}

.price_head_title {
    display: flex;
    gap: 10px;
    font-size: 28px;
    align-items: center;
    padding-bottom: 15px;
    font-family: Comfortaa;
    font-weight: 700;

}

.price_head_item:nth-child(3) {
    background: var(--main-color-bright);
    padding-left: 5px;
    padding-right: 5px;
}

.price_head_item:nth-child(2),
.price_head_item:last-child {
    padding-top: 56px;
}

.price_head_title {
    padding: 0 20px;
    padding-top: 20px;
    background: #fff;
    color: var(--main-color-bright)
}

.price_head_title svg path {
    fill: var(--main-color-bright);
}

.price_head_mini_desc {
    padding: 0 20px;
    background: #fff;
}

.price_head_text_btn {
    display: flex;
    width: 100%;
    justify-content: center;
    background: #fff;
}

.price_head_price {
    padding: 0 20px;
    background: #fff;
}

.price_head_price_desc {
    padding: 0 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100px;
    margin-bottom: -1px;
    font-family: Comfortaa;
    font-size: 14px;
}

.price_item_premium,
.price_item_econom {
    padding: 10px 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.price_item_standart {
    background: var(--main-color-bright);
    padding-left: 5px;
    padding-right: 5px;
}

.price_item_standart_inner {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    align-items: center;
}

.price_item_child svg {
    width: 35px;
    height: 35px;
}

.price_head_mini_desc {
    font-family: Comfortaa;
    padding: 15px 20px;
    display: flex;
    height: 55px;
}

.price_head_text_btn .button {
    display: flex;
    font-family: Oswald;
    text-align: center;
    width: 100%;
    padding: 5px 20px;
    margin: 0 20px;
    color: #e6e6e6;
    align-items: center;
    justify-content: center;
}

.price_head_text_btn .button:hover {
    color: var(--main-color-bright);
}

.price_head_price {
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 42px;
    font-weight: 700;
    font-family: Comfortaa;
    text-align: center;
}

.price_item_econom,
.price_item_standart_inner,
.price_item_premium {
    border-top: 1px solid #f5f5f5;
}

.price_item_title span {
    padding: 20px;
}

.price_head_price span {
    font-size: 24px;
}

.price_head_price_desc_tool {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.price_head_price_desc_tool .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-size: 11px;
    position: absolute;
    z-index: 1;
}

.price_head_price_desc_tool .tooltiptext p {
    margin: 0;
    padding: 0;
}

.price_head_price_desc_tool .tooltiptext ul {
    padding-left: 20px;
}

.price_head_price_desc_tool .tooltiptext ul li {
    text-align: left;
}

/* Show the tooltip text when you mouse over the tooltip container */
.price_head_price_desc_tool:hover .tooltiptext {
    visibility: visible;
}

.btn_order {
    display: flex;
    justify-content: center;
}

.price_head_item:nth-child(2) .price_head_title {
    border-radius: 20px 0 0 0;
}

.price_head_item:last-child .price_head_title {
    border-radius: 0 20px 0 0;
}

.price_head_price_mini {
    display: none;
}

@media (max-width: 1024px) {
    .price_container {
        padding: 40px 0;
    }

    .price_head {
        display: flex;
        width: 100%;
        overflow: hidden;
    }

    .price_container {
        font-size: 12px;
    }

    .price_head_title-most {
        font-size: 12px;
    }

    .price_head_title {
        font-size: 18px;
        padding: 10px;
        padding-top: 20px;
    }

    .price_head_title svg {
        width: 30px;
        height: 30px;
    }

    .price_head_mini_desc {
        padding: 10px;
        height: 60px;
    }

    .price_head_price {
        padding: 10px;
        font-size: 18px;
    }

    .price_head_item p {
        line-height: 14px;
    }

    .price_head_price_desc {
        font-size: 10px;
    }

    .price_head_item:nth-child(2), .price_head_item:last-child {
        padding-top: 50px;
    }

}

@media (max-width: 768px) {
    .price_container {
        overflow-x: scroll;
    }

    .price_head_title-most,
    .price_head_mini_desc,
    .price_head_text_btn,
    .price_head_price,
    .price_head_price_desc {
        display: none;
    }

    .price_head_title {
        writing-mode: vertical-rl;
    }

    .price_head_item,
    .price_item_child {
        width: 15%;
    }

    .price_head_item:first-child,
    .price_item_child:first-child {
        width: 55%;
    }

    .price_item_standart_inner {
        padding: 0;
    }

    .price_head_item:nth-child(2), .price_head_item:last-child {
        padding-top: 20px;
    }

    .price_head_title {
        writing-mode: vertical-rl;
        height: 170px;
    }

    .price_head_item p {
        padding: 0 20px;
    }

    .price_item_title span {
        padding: 10px;
    }

    .price_item_child svg {
        width: 25px;
        height: 25px;
    }

    .price_head_item:nth-child(3) {
        padding-left: 2px;
        padding-right: 2px;
    }

    .price_item_standart {
        padding-left: 2px;
        padding-right: 2px;
    }
    .price_head_price {
        display: flex;
        writing-mode: vertical-rl;
        align-items: center;
    }
    .price_head_price span {
        font-size: 14px;
    }
}