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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    background: #fff;
    color: #000;
    font-size: 18px;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.56;
    letter-spacing: 1.3px
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-in-out;
    cursor: pointer
}

a:hover {
    color: rgba(134, 137, 84, .67)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: #000
}

h2 {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 32px;
    letter-spacing: 1.1px
}

ul,
li {
    list-style: none
}

.df {
    display: flex
}

.jc-sb {
    justify-content: space-between
}

.al-c {
    align-items: center
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid #2d292a;
    padding-top: 15px;
    padding-bottom: 15px;
    background: hsla(0, 0%, 100%, .81);
    z-index: 100;
    backdrop-filter: blur(5px)
}

.header_bottom .logo_link {
    height: 50px
}

.header_bottom .logo_img {
    height: 100%
}

.header_bottom .nav {
    margin: 0;
    padding: 0;
    gap: 20px
}

.header_bottom .nav li a {
    display: block;
    font-weight: 400;
    letter-spacing: .05em;
    color: #373737;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1
}

.header_bottom .nav li a:hover {
    color: rgba(134, 137, 84, .67)
}

.header_bottom .call_action {
    text-align: right
}

.call_action-mobile {
    display: none
}

.social-icons {
    margin-top: 10px
}

.social-icons ul {
    margin: 0;
    padding: 0;
    width: auto;
    font-size: 0;
    display: flex
}

.social-icons li {
    margin: 0
}

.social-icons li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.social-icons li a:hover svg g {
    fill: rgba(134, 137, 84, .67)
}

.social-icons li a svg {
    height: 25px;
    width: 25px
}

.social-icons li a svg g {
    transition: all .3s ease-in-out
}

.mobile_menu {
    position: fixed;
    top: 70px;
    width: 100vw;
    background: #fff;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out, opacity .5s ease-in-out, height .5s ease-in-out;
    opacity: 0;
    height: 0;
    margin-top: 1px
}

.mobile_menu.active {
    max-height: 100vh;
    opacity: 1;
    height: 100vh;
    z-index: 100
}

.mobile_menu .nav_mobile {
    flex-direction: column
}

.mobile_menu .nav_mobile li {
    margin-bottom: 20px
}

.mobile_menu .nav_mobile li a {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    color: #222;
    font-size: 5vw;
    text-decoration: none
}

.mobile_menu_social {
    display: flex;
    padding-left: 40px;
    margin-bottom: 20px
}

.mobile_menu_social a {
    width: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px
}

.mobile_menu_social a svg {
    width: 20px
}

.mobile_menu__book {
    width: 100%;
    background: rgba(134, 137, 84, .67);
    padding: 10px;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-family: "Oswald", sans-serif
}

.mobile_burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 90px
}

.mobile_burger .line {
    width: 30px;
    height: 2px;
    background-color: #000;
    margin: 3px 0;
    transition: all .3s ease;
    transform-origin: center
}

.mobile_burger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile_burger.active .line:nth-child(2) {
    opacity: 0
}

.mobile_burger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.first-screen {
    height: 100vh;
    width: 100vw
}

.first-screen__canvas {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1
}

.first-screen__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    height: 100%
}

.first-screen__title {
    color: #585858;
    font-size: 60px;
    text-transform: uppercase;
    max-width: 550px;
    text-align: center;
    cursor: default;
    margin: 0
}

.first-screen__btn {
    padding: 24px 32px;
    border-radius: 40px;
    border: 1px solid #585858;
    outline: 0;
    background: none;
    text-transform: uppercase;
    font-size: 14px;
    color: #000
}

.first-screen__btn:hover {
    background: rgba(134, 137, 84, .67);
    color: #fff;
    border: 1px solid rgba(134, 137, 84, .67)
}

.service {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px
}

.service__title {
    margin-bottom: 25px
}

.service_list {
    overflow: hidden;
    padding: 0
}

.service_list .services_category {
    border-bottom: 1px solid #d8d8d8
}

.service_list .services_category__link {
    letter-spacing: 1.1px;
    font-weight: 300;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 28px;
    position: relative;
    transition: all .3s
}

.service_list .services_category__link:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 2px solid #595959;
    border-right: 2px solid #595959;
    transform-origin: 50% 50%;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(135deg);
    transition: border-color .6s, transform .3s, -webkit-transform .3s
}

.service_list .services_category.active .services_category__link {
    color: rgba(134, 137, 84, .67)
}

.service_list .services_category.active .services_category__link:after {
    transform: rotate(-45deg);
    border-color: rgba(134, 137, 84, .67)
}

.service .services {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height .5s ease, padding .5s ease
}

.service .services li {
    padding: 18px 20px
}

.service .services .service__item {
    letter-spacing: 1.1px;
    font-weight: 300;
    display: block;
    text-align: left;
    cursor: pointer;
    font-size: 28px;
    flex: 1
}

.service .services .service__item__time {
    width: 100px
}

.service .services .service__item__price {
    width: 100px;
    text-align: right
}

.service .services .service_link__book {
    background: rgba(134, 137, 84, .67);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px
}

.service .services.open {
    max-height: max-content;
    padding: 0 20px
}

.service .services li {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.reviews {
    margin-top: 60px;
    margin-bottom: 80px
}

.reviews__title {
    margin-bottom: 40px
}

.reviews_slider {
    position: relative
}

.reviews_slider__item img {
    width: 100%;
    height: auto;
    border: 1px solid #efeeec
}

.reviews_slider .swiper-button {
    top: 0;
    margin: 0
}

.reviews_slider .swiper-button::after {
    color: #d7d6d4;
    font-weight: 600
}

.reviews_slider .swiper-button-prev {
    right: 45px;
    left: auto;
    margin-top: -73px;
    padding: 3px 16px 6px 14px
}

.reviews_slider .swiper-button-next {
    right: 0;
    left: auto;
    margin-top: -73px;
    padding: 3px 14px 6px 16px
}

.promo {
    padding-top: 70px;
    padding-bottom: 70px
}

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

.promo_header_title {
    margin-bottom: 25px
}

.promo_header__action {
    background: rgba(172, 172, 172, .5607843137);
    padding: 5px 10px;
    border-radius: 10px;
    backdrop-filter: blur(60px);
    color: #000
}

.promo_header__action:hover {
    color: #000
}

.promo_wrapper {
    gap: 30px
}

.promo_item {
    width: calc(25% - 24px);
    background-color: rgba(102, 194, 181, .2);
    backdrop-filter: blur(60px);
    padding: 20px;
    border-right: 10px;
    cursor: pointer;
    height: auto
}

.promo_item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-right: 10px
}

.promo_item__title {
    font-size: 24px;
    text-transform: none;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    color: #505050
}

.promo_item__tags {
    margin-bottom: 20px;
    line-height: 1;
    height: 35px
}

.promo_item a:hover {
    color: #505050
}

.portfolio {
    background: #fff;
    padding: 70px 0
}

.portfolio__title {
    margin-bottom: 30px
}

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

.portfolio_wrap__item {
    width: calc(25% - 16px);
    margin: 8px
}

.portfolio_wrap__item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2/3;
    object-fit: cover
}

.portfolio_wrap__item video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2/3
}

.about {
    background-color: #fff;
    margin-bottom: 80px;
    padding-top: 50px;
    padding-bottom: 40px
}

.about_inner {
    position: relative
}

.about_inner::after {
    z-index: 1;
    content: "";
    background: #fff;
    position: absolute;
    top: 0;
    right: 48.8%;
    bottom: 0;
    left: -200px
}

.about_text {
    width: 40%;
    z-index: 2
}

.about_text__title {
    margin-bottom: 32px
}

.about_text__subtitle {
    margin-bottom: 20px
}

.about_slider {
    margin-left: 40px;
    padding-top: 70px;
    width: 60%
}

.about_slider .swiper-slide-prev {
    display: none
}

.about_slider__item {
    height: 370px
}

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

.masters {
    margin-bottom: 40px
}

.masters__title {
    margin-bottom: 40px
}

.masters_slider {
    position: relative
}

.masters_slider_item {
    height: 500px;
    border: 1px solid #efeeec;
    background-color: rgba(239, 238, 236, .2);
    backdrop-filter: blur(60px)
}

.masters_slider_item__img {
    width: 100%;
    height: 315px;
    object-fit: cover
}

.masters_slider_item__name {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-width: 500;
    padding: 16px 16px 0 16px;
    margin-bottom: 10px
}

.masters_slider_item__des {
    font-size: 14px;
    line-height: 1.2em;
    padding: 0 16px 16px 16px
}

.masters_slider .swiper-button {
    top: 0;
    margin: 0
}

.masters_slider .swiper-button::after {
    color: #d7d6d4;
    font-weight: 600
}

.masters_slider .swiper-button-prev {
    right: 45px;
    left: auto;
    margin-top: -73px;
    padding: 3px 16px 6px 14px
}

.masters_slider .swiper-button-next {
    right: 0;
    left: auto;
    margin-top: -73px;
    padding: 3px 14px 6px 16px
}

.faq__title {
    margin-bottom: 25px
}

.faq_list {
    margin: 0;
    padding: 0;
    background-color: rgba(239, 238, 236, .2);
    backdrop-filter: blur(60px)
}

.faq_list li {
    border-bottom: 1px solid #d8d8d8;
    background: rgba(0, 0, 0, 0);
    transition: all .5s ease
}

.faq_list li span {
    letter-spacing: 1.1px;
    font-weight: 300;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 28px;
    transition: all .3s ease-in-out;
    position: relative
}

.faq_list li span:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    border-top: 2px solid #595959;
    border-right: 2px solid #595959;
    transform-origin: 50% 50%;
    right: 30px;
    top: 50%;
    margin-top: -10px;
    transform: rotate(135deg);
    transition: border-color .6s, transform .3s, -webkit-transform .3s
}

.faq_list li:hover span {
    color: rgba(134, 137, 84, .67)
}

.faq_list li .faq_answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .5s ease, padding .5s ease
}

.faq_list li .faq_answer.open {
    max-height: 200px;
    padding: 20px
}

.faq_list li.active {
    background: rgba(56, 26, 20, .08)
}

.faq_list li.active .faq_question {
    color: rgba(134, 137, 84, .67)
}

.faq_list li.active .faq_question:after {
    transform: rotate(-45deg);
    border-color: rgba(134, 137, 84, .67)
}

.footer {
    margin-top: 120px;
    padding: 60px 0 20px;
    background: #222;
    color: hsla(0, 0%, 100%, .6)
}

.footer_nav ul {
    padding: 0;
    margin: 0;
    gap: 20px;
    text-transform: uppercase
}

.footer_contact {
    margin: 30px 0
}

.footer_contact__link {
    text-transform: uppercase
}

.footer_contact__link.second::before {
    content: "|";
    display: inline-block;
    margin: 0 10px;
    color: hsla(0, 0%, 100%, .6) !important
}

.footer_contact__link-number {
    padding: 20px;
    border-right: 1px solid hsla(0, 0%, 100%, .6);
    border-left: 1px solid hsla(0, 0%, 100%, .6);
    flex-shrink: 1
}

.footer_contact__social {
    gap: 20px
}

.footer_contact__social a:hover svg g {
    transition: all .3s ease-in;
    fill: rgba(134, 137, 84, .67)
}

.footer_info {
    opacity: .5;
    justify-content: space-between
}

.whatsapp-float {
    position: fixed;
    bottom: 140px;
    right: 25px;
    width: 50px;
    height: 50px;
    z-index: 10
}

.whatsapp-float img {
    width: 100%
}

.book_fixed {
    position: fixed;
    bottom: 40px;
    right: 25px;
    z-index: 10
}

.book_fixed__btn {
    min-width: 80px;
    min-height: 80px;
    display: inline-flex;
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    line-height: 1.1;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    background: #ff6e01;
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(255, 110, 1, .71);
    transition: all .3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px
}

.book_fixed__btn::before {
    content: "";
    border-radius: 1000px;
    min-width: 92px;
    min-height: 92px;
    border: 2px solid #ff6e01;
    box-shadow: 0 0 60px rgba(255, 110, 1, .64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s
}

.book_fixed__btn:hover,
.book_fixed__btn:focus {
    color: #313133;
    transform: translateY(-6px)
}

.book_fixed__btn:hover::before,
.book_fixed__btn:focus::before {
    opacity: 1
}

.book_fixed__btn::after {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 2px solid #ff6e01;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite
}

.book_fixed__btn:hover::after,
.book_fixed__btn:focus::after {
    animation: none;
    display: none
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0
    }
}

.single_page {
    padding-top: 110px
}

.single_page__content {
    margin-top: 30px
}

.page_breadcrumb {
    opacity: .8;
    color: gray
}

.page_breadcrumb .breadcrumbs-sep {
    margin: 0 5px
}

.page__title {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1.3
}

.uslugi_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 25px 0
}

.uslugi_wrap_item {
    width: calc(33.3333333333% - 8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-height: 202px;
    padding: 40px;
    border-radius: 24px
}

.uslugi_wrap_item:hover {
    color: #000;
    filter: brightness(1.2)
}

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

.uslugi_wrap_item__initial {
    font-family: "Oswald", sans-serif;
    font-size: 26px;
    line-height: 32px;
    text-transform: uppercase
}

.uslugi_wrap_item__name {
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.uslugi_wrap_item__count {
    font-size: 12px;
    line-height: 16px
}

.uslugi_wrap_item:first-child {
    background: #282155;
    color: #fff;
}

.uslugi_wrap_item:nth-child(2) {
    background: #ce3643;
    color: #fff;
}

.uslugi_wrap_item:nth-child(3) {
    background: #7dcd48;
    color: #fff;
}

.uslugi_wrap_item:nth-child(4) {
    background: #02ab98;
    color: #fff;
}

.uslugi_wrap_item:nth-child(5) {
    background: #0091c6;
    color: #fff;
}

.uslugi_wrap_item:nth-child(6) {
    background: #f4e12d
}

.page_action {
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px
}

.page_action .post-item {
    width: calc(25% - 24px);
    background-color: rgba(102, 194, 181, .2);
    backdrop-filter: blur(60px);
    padding: 20px;
    border-right: 10px;
    cursor: pointer
}

.page_action .post-item .wp-post-image {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto
}

.cert_header {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/bg_cert.webp") no-repeat center;
    position: relative
}

.cert_header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .5)
}

.cert_header__inner {
    z-index: 10
}

.cert_header__text {
    margin-top: 30px;
    font-weight: bold;
    color: #fff;
    font-size: 32px;
    background: #2d292a;
    padding: 15px 20px;
    border: 2px solid #fff;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4
}

.post_action__img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: contain
}

.post_action__date {
    text-align: left
}

.contact_container {
    margin-top: 20px
}

.contact_info {
    width: 45%;
    padding-right: 40px
}

.contact_info__address svg {
    width: 30px;
    margin-right: 10px
}

.contact_info__number svg {
    width: 30px;
    margin-right: 10px
}

.contact_info__time svg {
    width: 30px;
    margin-right: 10px;
    height: 30px
}

.contact_info__road img {
    width: 30px;
    margin-right: 10px;
    height: 30px
}

.contact_info__req {
    opacity: .7
}

.contact_map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden
}

.about_container {
    margin-top: 20px
}

.about_text {
    width: 50%;
    padding-right: 40px
}

.about_photo {
    width: 50%;
    height: 350px
}

.about_photo img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    object-fit: cover
}

.about_info {
    margin-top: 50px;
    margin-bottom: 50px
}

.about_wrap {
    flex-wrap: wrap;
    gap: 20px
}

.about_wrap .item {
    width: calc(50% - 10px);
    border-radius: 10px;
    padding: 20px;
    transition: all .3s ease-in-out
}

.about_wrap .item__img {
    height: 70px;
    width: 70px;
    margin-right: 20px
}

.about_wrap .item:hover {
    filter: brightness(1.3)
}

.about_scope {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.about_scope .item {
    background: #ebebeb;
    width: calc(33.3333333333% - 10px);
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(5px)
}

.about_scope .item img {
    width: 70px;
    height: 70px
}

.page-template-usluga {
    background: #eff8f5
}

.page_usluga {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.page_usluga__img {
    height: 160px;
    mix-blend-mode: darken
}

.page_usluga__title {
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 64px
}

.usluga_slider__item {
    height: auto;
    border-radius: 5px;
    overflow: hidden
}

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

.usluga_slider_bottom {
    margin-top: 40px
}

.usluga_slider_bottom__btn {
    width: 100px;
    position: relative
}

.usluga_slider_bottom__btn .swiper-button-next:after,
.usluga_slider_bottom__btn .swiper-button-prev:after {
    color: #000;
    font-size: 20px;
    font-weight: bold
}

.usluga_slider_bottom__text {
    width: 45%;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400
}

.usluga_about {
    margin-top: 50px;
    border-top: 1px solid gray
}

.usluga_list {
    margin-top: 50px
}

.usluga_list_table {
    margin: 0;
    padding: 0;
    column-count: 2;
    column-gap: 50px
}

.usluga_list_table__link {
    justify-content: space-between;
    padding: 5px;
    align-items: center;
    border-bottom: 1px solid rgba(128, 128, 128, .231372549)
}

.usluga_list_table__item__price {
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: .1px;
    padding-left: 15px
}

@media(max-width: 960px) {
    .first-screen__container {
        padding-top: 0
    }

    .header {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .header_bottom .nav,
    .call_action {
        display: none
    }

    .call_action-mobile {
        display: block;
        width: 90px
    }

    .header_bottom .logo_link {
        padding-right: 0;
        padding-left: 0
    }

    .mobile_burger {
        display: flex
    }

    .service .services .service__item {
        font-size: 20px
    }

    .promo_wrapper {
        gap: 10px
    }

    .promo_item {
        width: calc(33.3333333333% - 10px)
    }

    .promo_item__title {
        font-size: 22px
    }

    .portfolio_wrap__item {
        width: calc(33.3333333333% - 16px)
    }

    .about_text {
        width: 50%
    }

    .about_slider {
        width: 50%;
        margin-left: 20px
    }

    .masters_slider_item {
        height: auto
    }

    .masters_slider_item__img {
        height: 450px;
        aspect-ratio: 2/3
    }

    .faq_list li span {
        font-size: 22px
    }

    .footer_info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px
    }

    .uslugi_wrap_item {
        width: calc(50% - 8px)
    }

    .contact_info {
        width: 50%;
        padding-right: 20px
    }

    .page_action {
        gap: 15px
    }

    .usluga_list_table {
        column-gap: 20px
    }

    .usluga_list_table__item__price {
        padding-left: 10px
    }
}

@media(max-width: 780px) {
    .service_list .services_category__link {
        padding: 10px 0
    }

    .service .services.open {
        padding: 0
    }

    .service .services li {
        padding: 5px 0
    }

    .service .services .service__item {
        font-size: 16px
    }

    .service .services .service__item__time {
        font-size: 14px;
        width: auto;
        padding: 0 10px
    }

    .service .services .service__item__price {
        width: 85px;
        padding: 0 10px;
        font-size: 16px
    }

    .service .services .service_link__book {
        display: none
    }

    .service_list .services_category__link:after {
        right: 10px
    }

    .portfolio_wrap__item {
        width: calc(50% - 8px);
        margin: 4px
    }

    .about_inner {
        flex-direction: column
    }

    .about_inner:after {
        display: none
    }

    .about_text {
        width: 100%
    }

    .about_slider {
        width: 100%;
        margin-left: 0;
        padding-top: 30px
    }

    .faq_list li span {
        padding: 10px 20px 10px 10px
    }

    .faq_list li span:after {
        right: 10px
    }

    .faq_list li .faq_answer.open {
        padding: 10px
    }

    .footer {
        margin-top: 50px
    }

    .footer_nav .nav {
        flex-wrap: wrap;
        justify-content: center
    }

    .footer_contact {
        flex-direction: column
    }

    .footer_contact__link {
        padding: 15px;
        width: 100%;
        text-align: center;
        border-top: 1px solid hsla(0, 0%, 100%, .6);
        display: inline-block
    }

    .footer_contact__link-number {
        padding: 0;
        border: none;
        width: 100%
    }

    .footer_contact__social {
        padding: 15px;
        border-bottom: 1px solid hsla(0, 0%, 100%, .6);
        width: 100%;
        text-align: center;
        border-top: 1px solid hsla(0, 0%, 100%, .6);
        justify-content: center
    }

    .portfolio,
    .about {
        padding-top: 30px;
        padding-bottom: 0
    }

    .promo {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .uslugi_wrap_item {
        width: 100%;
        min-height: 150px
    }

    .contact_container {
        flex-direction: column
    }

    .contact_container div {
        width: 100%
    }

    .about_wrap .item {
        width: 100%;
        flex-direction: column
    }

    .about_wrap .item__img {
        margin-right: 0;
        margin-bottom: 20px
    }

    .about_scope .item {
        width: calc(50% - 10px)
    }

    .about_container {
        flex-direction: column
    }

    .about_container .about_text {
        width: 100%
    }

    .about_container .about_photo {
        width: 100%;
        height: auto
    }

    .about_container .about_text {
        width: 100%
    }

    .promo_item {
        width: calc(50% - 10px)
    }

    .usluga_list_table {
        column-count: 1
    }

    .usluga_list_table__link {
        padding: 5px 0
    }

    .page_usluga {
        padding: 10px 0 30px 0;
        flex-direction: column;
        align-items: flex-start
    }

    .page_usluga__img {
        height: 100px
    }

    .page_usluga__title {
        font-size: 2rem;
        margin: 0
    }

    .usluga_slider_bottom__text {
        width: auto
    }

    .usluga_slider_bottom__text:last-child {
        display: none
    }
}

@media(max-width: 480px) {
    .single_page {
        padding-top: 90px
    }

    .about_scope .item {
        width: 100%
    }

    .promo_item {
        padding: 10px
    }

    .promo_item__tags {
        margin-bottom: 10px;
        line-height: 1;
        height: 32px;
        font-size: 16px
    }

    .promo_item__title {
        font-size: 18px
    }

    .page__title {
        font-size: 1.5rem;
        margin-bottom: 20px
    }

    .faq_list li span {
        font-size: 18px;
        padding: 10px 30px 10px 10px
    }

    .faq_list li .faq_answer {
        font-size: 16px
    }

    .footer_info {
        gap: 5px;
        font-size: 14px
    }

    .usluga_about__text {
        font-size: 16px
    }

    .usluga_list_table__item__name {
        font-size: 14px
    }

    .usluga_list_table__item__price {
        font-size: 16px
    }
}