:root {
    --color-text: #2a303c;
    --color-yellow: #ff781a;
    --transition-base: all .3s linear 0s;
    --header-height: 96px;
    --margin-top-section: 80px;
    --margin-bottom-section: 125px
}

* {
    outline: none
}

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

:focus {
    outline: none
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: #ff781a
}

::-webkit-scrollbar-thumb:hover {
    background: #0275d0
}

html.hidden {
    overflow: hidden
}

body,
html {
    height: 100%
}

body {
    background-color: #f5f9ff;
    color: var(--color-text);
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    min-width: 320px;
    overflow-x: hidden;
    position: relative
}

main {
    padding-top: 96px
}

.row {
    margin: 0
}

a {
    color: inherit
}

a,
button,
input,
select,
textarea {
    cursor: pointer;
    outline: none
}

textarea {
    resize: none
}

a,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none
}

main {
    height: auto;
    min-height: calc(100vh - 160px);
    width: 100%
}

section {
    overflow: hidden;
    width: 100%
}

.fd-c {
    flex-direction: column
}

.container {
    width: 80.5%
}

.container,
.container-big {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 15px
}

.container-big {
    max-width: 100%;
    width: 82.1%
}

.btn {
    align-items: center;
    border-radius: 5px;
    display: flex;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    height: 50px;
    justify-content: center;
    line-height: 18px;
    width: auto
}

.btn.btn-orange {
    background: #ff781a;
    color: #fff
}

.btn.w225 {
    width: 225px
}

p {
    margin: 0
}

b {
    font-weight: 700
}

.title-section {
    font-family: Playfair Display, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 44px;
    margin: 0;
    text-align: center
}

.title-section.orange-text span {
    color: #ff781a
}

.title-section.blue-text span {
    color: #0275d0
}

.play {
    bottom: 0;
    cursor: pointer;
    height: 110px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 110px;
    z-index: 3
}

.play,
.play:hover {
    transition: var(--transition-base)
}

.play:hover {
    transform: scale(1.1)
}

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

.header {
    background-color: #0275d0;
    color: #fff;
    height: var(--header-height);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99
}

.header .container-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-right: 5vw
}

.header .burger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    padding: 0
}

.header .burger svg {
    height: 50px;
    width: 50px
}

.header .line {
    fill: none;
    stroke: var(--color-yellow);
    stroke-width: 6;
    transition: stroke-dasharray .6s cubic-bezier(.4, 0, .2, 1), stroke-dashoffset .6s cubic-bezier(.4, 0, .2, 1)
}

.header .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6
}

.header .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6
}

.header .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6
}

.header .burger.active .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6
}

.header .burger.active .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6
}

.header .burger.active .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6
}

.header ul {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.header .left {
    height: var(--header-height);
    padding-left: 5vw;
    padding-right: 25px;
    position: relative;
    width: 35%
}

.header .left:after {
    background: linear-gradient(90deg, hsla(0, 0%, 100%, .4), hsla(0, 0%, 100%, 0));
    bottom: 0;
    content: "";
    display: block;
    height: var(--header-height);
    position: absolute;
    right: 0;
    top: 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 100%;
    z-index: 1
}

.header .col {
    height: var(--header-height)
}

.header .col,
.header .logo {
    align-items: center;
    display: flex
}

.header .logo {
    margin-right: 15px;
    position: relative;
    width: 50%;
    z-index: 2
}

.header .logo:last-child {
    margin-right: 0
}

.header .logo img {
    width: 100%
}

.header .menu-items li {
    margin-right: 30px
}

.header .menu-items li:last-child {
    margin-right: 0
}

.header .menu-items li a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.header .lang-items {
    background: #fff;
    border-radius: 5px;
    height: 50px;
    margin-right: 30px;
    width: 90px
}

.header .lang-items li {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%
}

.header .lang-items li:first-child {
    background: #ff781a;
    border-radius: 5px;
    height: 100%
}

.header .lang-items li:first-child a {
    color: #fff
}

.header .lang-items li a {
    align-items: center;
    color: rgba(0, 0, 0, .6);
    display: flex;
    font-size: 14px;
    height: 100%;
    justify-content: center;
    line-height: 18px;
    text-transform: uppercase;
    width: 100%
}

.header .btn {
    width: 200px
}

.mobile-menu {
    background-color: #0275d0;
    display: none;
    left: 0;
    opacity: 0;
    padding: 30px 20px;
    position: fixed;
    top: var(--header-height);
    transform: translateY(-130%);
    width: 100%;
    z-index: 90
}

.mobile-menu,
.mobile-menu.active {
    transition: var(--transition-base)
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0)
}

.mobile-menu ul {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-menu .menu-items {
    flex-direction: column;
    margin-bottom: 20px
}

.mobile-menu .menu-items li {
    margin-right: 0
}

.mobile-menu .menu-items li a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px
}

.mobile-menu .btn {
    margin: 0 auto;
    width: 200px
}

.mobile-menu .lang-items {
    background: #fff;
    border-radius: 5px;
    height: 50px;
    margin: 30px auto 0;
    width: 90px
}

.mobile-menu .lang-items li {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50%
}

.mobile-menu .lang-items li:first-child {
    background: #ff781a;
    border-radius: 5px;
    height: 100%
}

.mobile-menu .lang-items li:first-child a {
    color: #fff
}

.mobile-menu .lang-items li a {
    align-items: center;
    color: rgba(0, 0, 0, .6);
    display: flex;
    font-size: 14px;
    height: 100%;
    justify-content: center;
    line-height: 18px;
    text-transform: uppercase;
    width: 100%
}

.footer {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    padding: 40px 0 20px
}

.footer .top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    width: 100%
}

.footer .top .left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 50%
}

.footer .top .left .title-section {
    margin-bottom: 19px
}

.footer .top .left .info p {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 178.5%;
    margin: 0 0 30px
}

.footer .top .left .info p:last-child {
    margin-bottom: 0
}

.footer .top .right {
    align-items: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 50%
}

.footer .top .right iframe {
    height: 300px;
    width: 100%
}

.footer .desc {
    margin-bottom: 20px;
    padding-bottom: 54px;
    position: relative;
    width: 100%
}

.footer .desc:before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    opacity: .3;
    position: absolute;
    right: 0;
    width: 100%
}

.footer .desc p {
    color: hsla(0, 0%, 100%, .6);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 125.1%;
    margin: 0 0 10px;
    text-align: center
}

.footer .desc p:last-child {
    margin-bottom: 0
}

.footer .copyright {
    width: 100%
}

.footer .copyright p {
    color: hsla(0, 0%, 100%, .6);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 125.1%;
    margin: 0;
    text-align: center
}

.footer .copyright a {
    text-decoration: underline
}

.footer .copyright a:hover {
    text-decoration: none
}

.hero-section .swiper-slide {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.hero-section .swiper-slide .container-hero {
    align-items: flex-end;
    display: flex;
    height: calc(100vh - var(--header-height));
    justify-content: space-between;
    padding: 0 9vw
}

.hero-section .swiper-slide .left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    width: 50%
}

.hero-section .swiper-slide .left .yogi-logo {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px
}

.hero-section .swiper-slide .left .subtitle {
    color: #ff781a;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 125.1%;
    margin: 0 0 30px
}

.hero-section .swiper-slide .left .title {
    color: #3a4049;
    font-family: Playfair Display, serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 91.5%;
    margin: 0 0 45px
}

.hero-section .swiper-slide .left .title span {
    color: #0275d0
}

.hero-section .swiper-slide .left .desc {
    color: rgba(0, 0, 0, .6);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 125.1%;
    margin: 0 0 30px
}

.hero-section .swiper-slide .left .btn-items {
    align-items: center;
    display: flex
}

.hero-section .swiper-slide .left .btn-items .btn {
    margin-right: 40px;
    width: 200px
}

.hero-section .swiper-slide .right {
    width: 50%
}

.hero-section .swiper-slide .right img {
    margin-bottom: -31px;
    width: 100%
}

.advantage-section {
    padding-bottom: var(--margin-top-section);
    padding-top: var(--margin-bottom-section);
    position: relative
}

.advantage-section .container {
    align-items: center
}

.advantage-section .title-section {
    margin-bottom: 30px
}

.advantage-section .advantage-items {
    display: flex;
    flex-direction: column;
    width: 100%
}

.advantage-section .advantage-items .advantage-item {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%
}

.advantage-section .advantage-items .advantage-item:last-child {
    margin-bottom: 0
}

.advantage-section .advantage-items .advantage-item .left {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 35%
}

.advantage-section .advantage-items .advantage-item .left .img {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(21, 40, 69, .05);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 70%
}

.advantage-section .advantage-items .advantage-item .left .img img {
    width: 50%
}

.advantage-section .advantage-items .advantage-item .left .arrow {
    margin-top: 7%;
    width: 30%
}

.advantage-section .advantage-items .advantage-item .center {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(21, 40, 69, .05);
    display: flex;
    flex-direction: column;
    width: 30%
}

.advantage-section .advantage-items .advantage-item .center .img {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%
}

.advantage-section .advantage-items .advantage-item .center .img img {
    width: 100%
}

.advantage-section .advantage-items .advantage-item .center .text {
    color: #3a4049;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
    padding: 8px 0;
    text-align: center
}

.advantage-section .advantage-items .advantage-item .right {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 35%
}

.advantage-section .advantage-items .advantage-item .right .img {
    align-items: center;
    background: #f3fff5;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(21, 40, 69, .05);
    display: flex;
    justify-content: center;
    padding: 10px 0;
    width: 70%
}

.advantage-section .advantage-items .advantage-item .right .img img {
    width: 50%
}

.advantage-section .advantage-items .advantage-item .right .arrow {
    margin-top: 7%;
    width: 30%
}

.well-be-section {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-top-section)
}

.well-be-section .container {
    align-items: center
}

.well-be-section .title-section {
    margin-bottom: 20px
}

.well-be-section .well-items {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%
}

.well-be-section .well-items .well-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%
}


.well-be-section .well-items .well-item .count {
    color: rgba(2, 117, 208, .1);
    display: block;
    font-size: 90px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1;
    margin: 0;
    position: relative;
    text-align: center;
    z-index: 1
}

.well-be-section .well-items .well-item .desc {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    z-index: 2
}

.well-be-section .well-items .well-item .desc:before {
    background-color: #fff;
    border-radius: 5px;
    content: "";
    height: 95px;
    left: 0;
    position: absolute;
    top: -20px;
    width: 100%;
    z-index: 2
}

.well-be-section .well-items .well-item .desc .title {
    color: #3a4049;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0 0 20px;
    min-height: 72px;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 3
}

.well-be-section .well-items .well-item .desc .text {
    color: rgba(0, 0, 0, .6);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    margin: 0 0 15px;
    min-height: 50px;
    position: relative;
    text-align: center;
    z-index: 2
}

.well-be-section .well-items .well-item .desc .icon {
    height: 60px;
    width: 60px
}

.stars-practice-section {
    padding-bottom: var(--margin-top-section);
    padding-top: var(--margin-top-section)
}

.stars-practice-section .container {
    display: block
}

.stars-practice-section .title-section {
    color: #fff;
    margin-bottom: 40px
}

.stars-practice-section .swiperStarsThumbnail {
    margin-bottom: 30px;
    width: 100%
}

.stars-practice-section .swiperStarsThumbnail .swiper-slide {
    align-items: center;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.stars-practice-section .swiperStarsThumbnail .swiper-slide a {
    align-items: center;
    display: flex;
    height: 400px;
    justify-content: center;
    width: 100%
}

.stars-practice-section .swiperStarsThumbnail .swiper-slide a .image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%
}

.stars-practice-section .swiperStars {
    height: auto;
    width: 700px
}

.stars-practice-section .swiperStars .swiper-slide {
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    overflow: hidden
}

.stars-practice-section .swiperStars .swiper-slide .image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%
}


.stars-practice-section .swiper-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 60px 0 0;
    position: static;
    width: 100%
}

.stars-practice-section .swiper-pagination .swiper-pagination-bullet {
    align-items: center;
    background: transparent;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    display: flex;
    height: 12px;
    justify-content: center;
    opacity: 1 !important;
    width: 12px
}

.stars-practice-section .swiper-pagination .swiper-pagination-bullet:before {
    background: #fc9d20;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    content: "";
    height: 6px;
    opacity: 0;
    width: 6px
}

.stars-practice-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 1
}

.rayd-alio-section {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-between
}

.rayd-alio-section .left {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3.75vw;
    padding-right: 10%;
    width: 55%
}

.rayd-alio-section .left .title-section {
    margin-bottom: 20px;
    text-align: left
}

.rayd-alio-section .left .desc-rayd {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%
}

.rayd-alio-section .right {
    position: relative;
    width: 45%
}

.rayd-alio-section .right .play {
    left: -55px;
    right: auto
}

.rayd-alio-section .right .img {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%
}

.rayd-alio-section .right .img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%
}

.business-section {
    padding-bottom: var(--margin-top-section);
    padding-top: var(--margin-top-section)
}

.business-section .container {
    align-items: center
}

.business-section .title-section {
    margin-bottom: 30px;
    text-align: center
}

.business-section .business-box {
    display: flex;
    justify-content: space-between
}

.business-section .business-box .business-item {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(21, 40, 69, .05);
    display: flex;
    height: 58px;
    justify-content: center;
    max-width: 280px;
    padding-left: 20px;
    position: relative;
    width: 100%
}

.business-section .business-box .business-item:after {
    background-color: #fc9d20;
    border-radius: 15px;
    bottom: 0;
    content: "";
    height: calc(100% - 10px);
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 3px
}

.business-section .business-box .business-item p {
    color: #3a4049;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 108.5%;
    margin: 0;
    text-align: left;
    width: 100%
}

.business-section .business-box .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 27%
}

.business-section .business-box .center {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: calc(46% - 40px)
}

.business-section .business-box .center .img {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%
}

.business-section .business-box .center .img img {
    width: 100%
}

.business-section .business-box .center .business-item {
    position: absolute;
    width: 80%
}

.business-section .business-box .center .business-item:after {
    bottom: auto;
    height: 3px;
    left: 0;
    right: 0;
    top: 0;
    width: calc(100% - 20px)
}

.business-section .business-box .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 27%
}

.benefits-section {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: var(--margin-top-section);
    padding-top: var(--margin-top-section);
    position: relative
}

.benefits-section:before {
    right: -278px;
    top: -278px
}

.benefits-section:after,
.benefits-section:before {
    background: radial-gradient(50% 50% at 50% 50%, rgba(2, 117, 208, .15) 0, rgba(2, 117, 208, 0) 100%);
    content: "";
    filter: blur(26.5px);
    height: 556px;
    margin: auto;
    position: absolute;
    width: 556px;
    z-index: 1
}

.benefits-section:after {
    bottom: -278px;
    left: -278px
}

.benefits-section .container {
    align-items: center;
    position: relative;
    width: 75%;
    z-index: 2
}

.benefits-section .title-section {
    margin-bottom: 20px
}

.benefits-section .subtitle {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0 0 40px;
    text-align: center
}

.benefits-section .benefits-items {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 0 40px;
    position: relative;
    width: 100%
}

.benefits-section .benefits-items:before {
    background: radial-gradient(50% 50% at 50% 50%, rgba(239, 111, 0, .15) 0, rgba(239, 111, 0, 0) 100%);
    bottom: 130px;
    content: "";
    filter: blur(26.5px);
    height: 556px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 556px;
    z-index: -1
}

.benefits-section .benefits-items .benefits-item {
    align-items: center;
    display: flex
}

.benefits-section .benefits-items .benefits-item p {
    margin: 0
}

.benefits-section .benefits-items .benefits-item .left {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 145.5%
}

.benefits-section .benefits-items .benefits-item .count {
    -webkit-background-clip: text;
    background-clip: text;
    background-image: url(../img/benefis-img-txt.jpg);
    color: transparent;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 145.5%;
    margin: 0 40px
}

.benefits-section .benefits-items .benefits-item .right {
    color: #3a4049;
    font-size: 14px;
    font-weight: 400;
    line-height: 123.5%
}

.benefits-section .logo-items {
    grid-gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.benefits-section .logo-items a {
    align-items: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.benefits-section .logo-items a img {
    width: 100%
}

.linch-q-section {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

.linch-q-section .container {
    align-items: center;
    justify-content: space-between;
    padding-bottom: 50px;
    padding-top: 50px
}

.linch-q-section .left {
    display: flex;
    flex-direction: column;
    padding-right: 45px;
    width: 50%
}

.linch-q-section .left svg {
    margin-bottom: 25px
}

.linch-q-section .left .desc p {
    color: #fff;
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 140%;
    margin: 0 0 20px
}

.linch-q-section .left .desc .author {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 0
}

.linch-q-section .right {
    align-items: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 50%
}

.linch-q-section .right img {
    width: 100%
}

.practice-section {
    margin-bottom: var(--margin-bottom-section)
}

.practice-section .container {
    background-color: #fff;
    display: block;
    padding-left: 105px;
    padding-right: 105px;
    padding-top: 42px
}

.practice-section .title-section {
    line-height: 145.5%;
    margin-bottom: 40px
}

.practice-section .swiperPractice .swiper-slide {
    align-items: center;
    border: 1px solid rgba(2, 117, 208, .1);
    border-radius: 5px;
    display: flex
}

.practice-section .swiperPractice .swiper-slide .img {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 20px;
    min-width: 200px;
    width: 200px
}

.practice-section .swiperPractice .swiper-slide .img img {
    width: 100%
}

.practice-section .swiperPractice .swiper-slide .text {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0;
    padding-right: 15px
}

.practice-section .swiper-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 60px 0;
    position: static;
    width: 100%
}

.practice-section .swiper-pagination .swiper-pagination-bullet {
    align-items: center;
    background: transparent;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    display: flex;
    height: 12px;
    justify-content: center;
    opacity: 1 !important;
    width: 12px
}

.practice-section .swiper-pagination .swiper-pagination-bullet:before {
    background: #fc9d20;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    content: "";
    height: 6px;
    opacity: 0;
    width: 6px
}

.practice-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 1
}

.reviews-section {
    background-color: #fff;
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-bottom-section)
}

.reviews-section .container {
    align-items: center
}

.reviews-section .title-section {
    margin-bottom: 20px
}

.reviews-section .subtitle-section {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0 0 30px;
    text-align: center
}

.reviews-section .btn {
    width: 245px
}

.reviews-section .reviews-items {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px
}

.reviews-section .reviews-items .col {
    width: calc(33.3% - 20px)
}

.reviews-section .reviews-items .reviews-item {
    border: 1px solid rgba(58, 64, 73, .1);
    border-radius: 5px;
    margin-bottom: 30px
}

.reviews-section .reviews-items .reviews-item:last-child {
    margin-bottom: 0
}

.reviews-section .reviews-items .reviews-item p {
    color: rgba(58, 64, 73, .5);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0
}

.reviews-section .reviews-items .reviews-item .top {
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 19px
}

.reviews-section .reviews-items .reviews-item .top .info .star-items {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    margin: 0 0 18px;
    padding: 0
}

.reviews-section .reviews-items .reviews-item .top .info .name {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 108.5%;
    margin: 0 0 10px
}

.reviews-section .reviews-items .reviews-item .top .info .date {
    color: rgba(58, 64, 73, .5);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0
}

.reviews-section .reviews-items .reviews-item .top .validation {
    align-items: center;
    display: flex
}

.reviews-section .reviews-items .reviews-item .top .validation svg {
    margin-right: 5px
}

.reviews-section .reviews-items .reviews-item .top .validation p {
    color: #29ad1e;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0
}

.reviews-section .reviews-items .reviews-item .desc {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px
}

.reviews-section .reviews-items .reviews-item .desc .text {
    position: relative
}

.reviews-section .reviews-items .reviews-item .desc .text p:last-child {
	display: none;
}

.reviews-section .reviews-items .reviews-item .desc .text:after {
    background: linear-gradient(180deg, #fff, hsla(0, 0%, 100%, 0));
    bottom: 0;
    content: "";
    height: 50%;
    left: 0;
    max-height: 77px;
    position: absolute;
    transform: matrix(1, 0, 0, -1, 0, 0);
    width: 100%
}

.reviews-section .reviews-items .reviews-item .desc.active .text:after {
	opacity: 0;
}

.reviews-section .reviews-items .reviews-item .desc .more-less {
    margin-top: 5px;
    position: relative;
	cursor: pointer;
}

.reviews-section .reviews-items .reviews-item .desc .more-less p {
    align-items: center;
    color: #ff781a;
    display: flex;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 145.5%;
    margin: 0;
    text-decoration-line: underline
}


.reviews-section .reviews-items .reviews-item .desc .more-less p:after {
    background-image: url(../img/arrow-orange-bottom.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 7px;
    width: 12px;
	margin-left: 4px;
}
.reviews-section .reviews-items .reviews-item .desc .more-less .btn-less:after {
	transform: rotate(180deg)
}
.reviews-section .reviews-items .reviews-item .desc .more-less .btn-less {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0
}

.reviews-section .reviews-items .reviews-item .desc .more-less.active .btn-more {
	opacity: 0;
}
.reviews-section .reviews-items .reviews-item .desc .more-less.active .btn-less {
	opacity: 1;
}

.search-teacher-section {
    align-items: center;
    background-color: #0275d0;
    display: flex;
    justify-content: center
}

.search-teacher-section .left {
    width: 45%
}

.search-teacher-section .left img {
    width: 100%
}

.search-teacher-section .right {
    padding-left: 40px;
    padding-right: 3.75vw;
    width: 55%
}

.search-teacher-section .right .title-section {
    color: #fff;
    margin-bottom: 30px;
    text-align: left
}

.search-teacher-section .right .btn-items {
    align-items: center;
    display: flex
}

.search-teacher-section .right .btn-items .btn {
    padding-left: 30px;
    padding-right: 30px
}

.search-teacher-section .right .btn-items svg {
    margin-left: 30px
}

.courses-section {
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-bottom-section)
}

.courses-section .container {
    display: block;
    width: 75%
}

.courses-section .title-section {
    color: #fff;
    margin-bottom: 40px
}

.courses-section .courses-item {
    background-color: #fff;
    border-radius: 5px
}

.courses-section .courses-item .top {
    position: relative
}

.courses-section .courses-item .top .img {
    align-items: center;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%
}

.courses-section .courses-item .top .img img {
    width: 100%
}

.courses-section .courses-item .top .price {
    align-items: center;
    background: #fff;
    border-radius: 5px;
    bottom: -2px;
    color: #ef6f00;
    display: flex;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    height: 68px;
    justify-content: center;
    left: 0;
    line-height: 124.5%;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 180px
}

.courses-section .courses-item .desc {
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 37px
}

.courses-section .courses-item .desc .name {
    color: #3a4049;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 108.5%;
    margin: 0 0 20px;
    text-align: center
}

.courses-section .courses-item .desc .text {
    color: rgba(0, 0, 0, .6);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 125.1%;
    margin: 0 0 26px;
    text-align: center
}

.courses-section .courses-item .desc .btn {
    max-width: 100%;
    width: 215px
}

.courses-section .swiper-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
    position: static;
    width: 100%
}

.courses-section .swiper-pagination .swiper-pagination-bullet {
    align-items: center;
    background: transparent;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    display: flex;
    height: 12px;
    justify-content: center;
    opacity: 1 !important;
    width: 12px
}

.courses-section .swiper-pagination .swiper-pagination-bullet:before {
    background: #fc9d20;
    border: 1px solid #fc9d20;
    border-radius: 2px;
    content: "";
    height: 6px;
    opacity: 0;
    width: 6px
}

.courses-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    opacity: 1
}

.company-logo-section {
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-bottom-section)
}

.company-logo-section .title-section {
    margin-bottom: 35px
}

.company-logo-section .company-items {
    align-items: center;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    padding: 0 40px
}

.company-logo-section .company-items .company-item {
    align-items: center;
    display: flex;
    justify-content: center
}

.company-logo-section .company-items .company-item img {
    max-width: 100%
}

.about-section {
    align-items: center;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-bottom-section)
}

.about-section .title-section {
    margin-bottom: 20px
}

.about-section .text {
    background: linear-gradient(90deg, rgba(2, 117, 208, .08), rgba(2, 117, 208, .08));
    border-radius: 0 5px 5px 0;
    color: rgba(0, 0, 0, .6);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 125.1%;
    max-width: 900px;
    padding: 20px 100px 40px;
    text-align: center;
    width: 60vw
}

.about-section .text p {
    margin-bottom: 15px
}

.about-section .text p:last-child {
    margin-bottom: 0
}

.tm-world-section {
    padding-bottom: var(--margin-bottom-section);
    padding-top: var(--margin-bottom-section)
}

.tm-world-section .title-section {
    margin-bottom: 30px;
    text-align: center
}

.tm-world-section .container {
    align-items: center;
    width: 85%
}

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

.tm-world-section .tm-world-items .item {
    align-items: center;
    border-radius: 0 5px 5px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 26px;
    position: relative;
    width: 25%
}

.tm-world-section .tm-world-items .item:before {
    background: linear-gradient(90deg, rgba(37, 64, 105, .14), hsla(0, 0%, 85%, 0) 100%, rgba(37, 64, 105, 0) 0);
    border-radius: 0 5px 5px 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 100%;
    z-index: -1
}

.tm-world-section .tm-world-items .item .title {
    color: #3a4049;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 113.5%;
    margin: 20px 0;
    text-align: center
}

.tm-world-section .tm-world-items .item .count {
    -webkit-background-clip: text;
    background-clip: text;
    color: #3a4049;
    color: transparent;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 145.5%;
    margin: 0 0 40px;
    text-align: center
}

.tm-world-section .tm-world-items .item .desc {
    color: #3a4049;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.5%;
    margin: 0 0 20px;
    text-align: center
}

.tm-world-section .tm-world-items .item:first-child .count {
    background-image: url(../img/image-text-1.jpg);
    font-size: 40px;
    line-height: 113.5%
}

.tm-world-section .tm-world-items .item:nth-child(2) .count {
    background-image: url(../img/image-text-2.jpg)
}

.tm-world-section .tm-world-items .item:nth-child(3) .count {
    background-image: url(../img/image-text-3.jpg)
}

.tm-world-section .tm-world-items .item:nth-child(4) .count {
    background-image: url(../img/image-text-4.jpg);
    margin-bottom: 0
}

.pagintaion {
    padding: 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagintaion .item {
    display: flex;
    margin: 0 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #22254E;
}

.pagintaion .inactive {
    transition: var(--transition-base);
}
.pagintaion .inactive:hover {
    color: #f5e263;
    transition: var(--transition-base);
}
.pagintaion .current {
    font-weight: 800;
}

.pagintaion .previous {
    background-image: url('../img/svg/prev.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 20px;
}
.pagintaion .next {
    background-image: url('../img/svg/next.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 20px;
}
.hero-page-article {
    position: relative;
}
.hero-page-article .container {
    align-items: center;
    height: 500px;
}
.hero-page-article .left {
    width: 100%;
    /*padding-right: 50px;*/
}
.hero-page-article .left .title {
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 69px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #F5E263;
    margin: 0 0 15px 0;
}
.hero-page-article .left .subtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 108px;
    line-height: 99px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin: -15px 0 45px 0;
}
.hero-page-article .left .desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    margin: 0 0 50px 0;
    padding-right: 150px;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    margin: 0 0 15px 0;
    color: #ffffff;
    padding: 0;
}
.breadcrumbs li {
    display: flex;
}
.breadcrumbs li:after {
    content: "/";
    display: block;
    margin: 0 5px;
}
.breadcrumbs li:last-child:after {
    display: none;
}
.breadcrumbs li a {}
.breadcrumbs li span {}

.article-content {
    padding: 50px 0;
}
.article-content .container {
    flex-direction: column;
}

.article-content h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 49px;
    letter-spacing: 0.02em;
}
.article-content h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0.02em;
}
.article-content h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: 0.02em;
}
.article-content h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.02em;
}
.article-content h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.02em;
}

.article-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.article-content a {
    /* color: #F5E263; */
    text-decoration: underline;
}
.article-content a:hover {
    opacity: 0.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content p,
.article-content ul,
.article-content ol {
    margin: 5px 0 15px;
    color: #22254E;
}
.article-content ol,
.article-content ul {
    padding: 0 0 0 15px;
}
.article-content li {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 5px;
}
.article-content li:last-child {
    margin-bottom: 0;
}
.article-content blockquote:before {
    content: '';
    display: block;
    background-image: url(../img/svg/blockuqout.svg);
    background-size: contain;
    width: 40px;
    height: 30px;
    margin: 0 auto 20px;
}
.article-content blockquote {
    display: block;
    padding: 30px 140px;
    background: #fff;
    -webkit-box-shadow: 0px 4px 30px rgb(69 69 69 / 5%);
    box-shadow: 0px 4px 30px rgb(69 69 69 / 5%);
    margin: 50px 0;
    text-align: center;
}

.article-content .wp-block-image {
    width: 100%;
}
.article-content .wp-block-image img {
    width: 100%;
}
.article-content .wp-block-image figcaption {
    text-align: center;

}
.article-content .wp-block-gallery {
    margin: 0 !important;
    /*gap: 0 !important;*/
    /*--wp--style--unstable-gallery-gap:*/
}

.article-content figure.wp-block-embed .wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /*16:9*/
}
.article-content figure.wp-block-embed .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width:1500px) {
    .container {
        max-width: 100%;
        width: 1100px
    }
}

@media only screen and (max-width:1200px) {
    .container {
        padding: 0 30px;
        width: 100%
    }

    .courses-section .container {
        width: 100%
    }
}

@media only screen and (max-width:768px) {
    :root {
        --margin-top-section: 40px;
        --margin-bottom-section: 65px
    }

    .header .burger {
        display: block
    }

    .header .left {
        margin-right: 15px;
        width: 55%
    }

    .header .lang-items,
    .header nav.col {
        display: none
    }

    .mobile-menu {
        display: block
    }

    .hero-section .swiper-slide .container-hero {
        align-items: center;
        flex-direction: column;
        height: auto;
        justify-content: center;
        padding: 0 30px
    }

    .hero-section .swiper-slide .left {
        height: auto;
        margin-bottom: 25px;
        padding-top: 20px;
        width: 100%
    }

    .hero-section .swiper-slide .left .yogi-logo {
        margin-bottom: 20px
    }

    .hero-section .swiper-slide .left .subtitle,
    .hero-section .swiper-slide .left .title {
        margin-bottom: 15px
    }

    .hero-section .swiper-slide .right {
        align-items: center;
        display: flex;
        justify-content: center;
        width: 100%
    }

    .hero-section .swiper-slide .right img {
        width: 75%
    }

    .well-be-section .well-items .well-item .desc .title {
        min-height: 96px
    }

    .well-be-section .well-items .well-item .desc .text {
        min-height: 80px
    }

    .benefits-section .container {
        width: 100%
    }

    .benefits-section .benefits-items {
        padding: 0
    }

    .search-teacher-section .left {
        width: 40%
    }

    .search-teacher-section .right {
        padding-left: 20px;
        padding-right: 20px;
        width: 60%
    }

    .search-teacher-section .right .title-section {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 10px
    }

    .search-teacher-section .right .btn-items .btn {
        padding-left: 20px;
        padding-right: 20px
    }

    .search-teacher-section .right .btn-items svg {
        width: 65px
    }

    .about-section .text {
        width: 100%
    }

    .practice-section .title-section {
        line-height: 130%
    }

    .reviews-section .reviews-items .col {
        width: calc(33.3% - 10px)
    }

    .reviews-section .reviews-items .reviews-item .top {
        flex-direction: column
    }

    .reviews-section .reviews-items .reviews-item .top .info {
        margin-bottom: 10px;
        width: 100%
    }

    .reviews-section .reviews-items .reviews-item .top .validation {
        width: 100%
    }

    .company-logo-section .company-items {
        display: grid;
        grid-template-columns: repeat(4, 1fr)
    }

    .company-logo-section .company-items .company-item {
        width: 100%
    }

    .tm-world-section .tm-world-items {
        flex-wrap: wrap
    }

    .tm-world-section .tm-world-items .item {
        width: 50%
    }

    .footer .top {
        flex-direction: column
    }

    .footer .top .left {
        margin-bottom: 20px;
        width: 100%
    }

    .footer .top .right {
        width: 100%
    }
}

@media only screen and (max-width:600px) {
    .container {
        padding: 0 20px
    }

    .title-section {
        font-size: 30px;
        line-height: 36px;
        text-align: center
    }

    .header .left {
        width: calc(100% - 60px)
    }

    .header .btn.btn-orange,
    .header .left:after {
        display: none
    }

    .hero-section .swiper-slide .left .subtitle {
        font-size: 14px;
        line-height: 16px
    }

    .hero-section .swiper-slide .left .title {
        font-size: 32px;
        line-height: 100%
    }

    .hero-section .swiper-slide .left .desc {
        font-size: 14px;
        line-height: 16px
    }

    .advantage-section .advantage-items .advantage-item {
        flex-direction: column
    }

    .advantage-section .advantage-items .advantage-item .left {
        flex-direction: column;
        width: 100%
    }

    .advantage-section .advantage-items .advantage-item .left .arrow {
        margin-top: 0
    }

    .advantage-section .advantage-items .advantage-item .center,
    .advantage-section .advantage-items .advantage-item .left .img {
        width: 100%
    }

    .advantage-section .advantage-items .advantage-item .right {
        flex-direction: column;
        width: 100%
    }

    .advantage-section .advantage-items .advantage-item .right .arrow {
        margin-top: 0;
        transform: rotate(180deg)
    }

    .advantage-section .advantage-items .advantage-item .right .img {
        width: 100%
    }

    .well-be-section .well-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .well-be-section .well-items .well-item {
        width: 100%
    }

    .well-be-section .well-items .well-item .desc .text,
    .well-be-section .well-items .well-item .desc .title {
        min-height: auto
    }

    .stars-practice-section .swiperStarsThumbnail .swiper-slide a {
        height: 250px
    }

    .stars-practice-section .swiperStars {
        width: 100%
    }



    .rayd-alio-section {
        flex-direction: column
    }

    .rayd-alio-section .left {
        margin-bottom: 70px;
        padding-top: 50px;
        width: 100%
    }

    .rayd-alio-section .left .desc-rayd,
    .rayd-alio-section .left .title-section {
        text-align: center
    }

    .rayd-alio-section .right {
        width: 100%
    }

    .rayd-alio-section .right .play {
        bottom: auto;
        left: 0;
        margin: auto;
        right: 0;
        top: -55px
    }

    .business-section .business-box {
        flex-direction: column;
        padding-top: 250px;
        position: relative;
        width: 100%
    }

    .business-section .business-box .img {
        height: 250px;
        left: 0;
        position: absolute;
        right: 0;
        top: 0
    }

    .business-section .business-box .business-item {
        margin-top: 15px;
        max-width: 100%;
        width: 100%
    }

    .business-section .business-box .left {
        width: 100%
    }

    .business-section .business-box .center {
        position: static;
        width: 100%
    }

    .business-section .business-box .center .business-item {
        position: relative;
        width: 100%
    }

    .business-section .business-box .center .business-item:after {
        bottom: 0;
        content: "";
        height: calc(100% - 10px);
        left: 0;
        margin: auto;
        right: auto;
        top: 0;
        width: 3px
    }

    .business-section .business-box .right {
        width: 100%
    }

    .benefits-section .subtitle {
        margin-bottom: 20px
    }

    .benefits-section .benefits-items {
        flex-direction: column
    }

    .benefits-section .benefits-items .benefits-item {
        justify-content: space-between;
        width: 100%
    }

    .benefits-section .benefits-items .benefits-item .left {
        font-size: 16px;
        width: 100px
    }

    .benefits-section .benefits-items .benefits-item .count {
        font-size: 44px;
        margin: 0;
        text-align: center;
        width: 90px
    }

    .benefits-section .benefits-items .benefits-item .right {
        width: 100px
    }

    .benefits-section .logo-items {
        grid-gap: 15px;
        grid-template-columns: repeat(2, 1fr)
    }

    .linch-q-section .container {
        flex-direction: column-reverse
    }

    .linch-q-section .left {
        width: 100%
    }

    .linch-q-section .right {
        margin-bottom: 20px;
        width: 100%
    }

    .practice-section .container {
        padding-left: 20px;
        padding-right: 20px
    }

    .practice-section .swiperPractice .swiper-slide .img {
        min-width: 150px;
        width: 150px
    }

    .reviews-section .reviews-items {
        flex-direction: column
    }

    .reviews-section .reviews-items .col {
        margin-bottom: 20px;
        width: 100%
    }

    .reviews-section .reviews-items .reviews-item {
        margin-bottom: 20px
    }

    .search-teacher-section {
        flex-direction: column
    }

    .search-teacher-section .left,
    .search-teacher-section .right {
        width: 100%
    }

    .about-section .text {
        padding: 20px 20px 35px
    }

    .tm-world-section .container,
    .tm-world-section .tm-world-items .item {
        width: 100%
    }
}
