@import url("https://fonts.googleapis.com/css2?family=Forum&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --index: calc(1vw + 1vh);
  --font-size: 16px;
  --line-height: 1.4;
  --item-width: 325px;
  --burger-color: black;
  --burger-color-active: black;
  --container-width: 1420px;
  --container-padding: 30px;
  --font-default: "Open Sans", sans-serif;
  --transition: cubic-bezier(0.445, 0.050, 0.550, 0.950);
  --transition2: cubic-bezier(0.785, 0.135, 0.150, 0.860);
  --transition3: cubic-bezier(0.715, -0.235, 0.120, 1.300);
  --bg-body: white;
  --color-body: #3A3F2C;
  --color-text: #3A3F2C;
  --primary: #515940;
  --grey-bg: rgba(161, 148, 121, 0.1);
}
@media screen and (max-width: 480px) {
  :root {
    --item-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --container-padding: 15px;
  }
}

/* responsive */
@font-face {
  font-family: "Diatype";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Diatype/ABCDiatype-Regular.woff2") format("woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none !important;
}

a {
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

input,
a {
  outline: none !important;
  color: var(--color-text);
}

button,
input,
textarea {
  font-family: var(--font-default);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*::-webkit-input-placeholder {
  opacity: 1;
}

*:-moz-placeholder {
  opacity: 1;
}

*::-moz-placeholder {
  opacity: 1;
}

*:-ms-input-placeholder {
  opacity: 1;
}

input:focus {
  outline: none;
}

html {
  font-size: var(--font-size);
}

body {
  background: var(--bg-body);
  font-size: var(--font-size);
  min-width: 320px;
  position: relative;
  line-height: var(--line-height);
  font-family: var(--font-default);
  font-weight: normal;
  font-style: normal;
  color: var(--color-body);
  border-top: 8px solid var(--color-blue-light);
}
@media screen and (max-width: 992px) {
  body {
    border-top: 4px solid var(--color-blue-light);
  }
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  body.no-scroll {
    padding-right: 0px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}

@media screen and (min-width: 480px) {
  .-md4-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .-md3-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1280px) {
  .-md1-hidden {
    display: none !important;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  max-width: var(--container-width);
}

.container-fluid {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.wrapper {
  min-height: 100vh;
  overflow: hidden;
}

.burger-content {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
}
.burger-content__body {
  padding: 99px 30px 0;
  display: flex;
  flex-direction: column;
  color: #202020;
}
@media screen and (max-width: 768px) {
  .burger-content__body {
    padding: 60px 15px 0;
  }
}
.burger-content__body a {
  text-decoration: none;
}
.burger-content ul {
  list-style: none;
}
.burger-content__nav {
  border-top: 1px solid #DDDDDD;
}
.burger-content__nav li a {
  padding: 8px 0;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: #202020;
  line-height: 120%;
  border-bottom: 1px solid #DDDDDD;
}
.burger-content__clinics li a {
  padding: 8px 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  line-height: 120%;
  color: #202020;
  line-height: 120%;
  border-bottom: 1px solid #DDDDDD;
  gap: 7px;
  font-family: "Forum", serif;
}
.burger-content__bottom {
  margin-top: 23px;
}
.burger-content__btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.burger-content__btn {
  text-align: center;
  color: #3A3F2C;
  font-size: 12px;
  line-height: 120%;
  padding: 7px;
  border: 1px solid rgba(58, 63, 44, 0.7);
}
.burger-content__btn:hover {
  opacity: 1;
  background: rgba(58, 63, 44, 0.05);
}
.burger-content__items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.burger-content__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 120%;
  color: #3A3F2C;
}
.burger-content__item a {
  color: #3A3F2C;
}

.burger {
  cursor: pointer;
  display: none;
  width: 30px;
  position: relative;
  z-index: 1000;
  padding-bottom: 7.5px;
}
@media screen and (max-width: 992px) {
  .burger {
    display: block;
  }
}
.burger i {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--burger-color);
  transition: all 0.2s ease-out;
}
.burger i::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  top: -10px;
}
.burger i::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--burger-color);
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  bottom: -10px;
}
.burger.active i {
  background: transparent;
}
.burger.active i::before {
  top: 0;
  transform: rotateZ(45deg);
  background: var(--burger-color-active);
}
.burger.active i::after {
  bottom: 0;
  transform: rotateZ(-45deg);
  background: var(--burger-color-active);
}

.top {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .top {
    text-align: left;
    margin-bottom: 20px;
  }
}
.top .title {
  font-family: "Forum", serif;
  font-size: 52px;
  line-height: 90%;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: #381D02;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .top .title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.top .desc {
  color: rgba(32, 32, 32, 0.9);
  font-size: 18px;
  line-height: 130%;
  max-width: 749px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 992px) {
  .top .desc {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .top .desc {
    font-size: 14px;
  }
}

.header {
  position: relative;
  z-index: 1000;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    box-shadow: 0px 4px 4px 0px rgba(32, 32, 32, 0.1);
  }
  .header.active {
    box-shadow: none;
  }
}
.header a {
  text-decoration: none;
}
.header__top {
  background: var(--primary);
  padding: 8px 0;
  color: white;
}
@media screen and (max-width: 768px) {
  .header__top {
    display: none;
  }
}
.header__top a {
  color: white;
}
.header__top-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.header__top-left {
  display: flex;
  gap: 30px;
}
.header__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.5px;
}
.header__top-right {
  display: flex;
  gap: 30px;
}
.header__content {
  padding: 13px 0;
}
.header__content ul {
  display: flex;
  list-style: none;
  gap: 22px;
}
@media screen and (max-width: 1200px) {
  .header__content ul {
    gap: 13px;
  }
}
@media screen and (max-width: 992px) {
  .header__content ul {
    display: none;
  }
}
.header__content ul li a {
  font-size: 13px;
  line-height: 120%;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__content ul li a {
    font-size: 11px;
  }
}
.header__body {
  display: flex;
  align-items: center;
  gap: 47px;
}
@media screen and (max-width: 1200px) {
  .header__body {
    gap: 25px;
    justify-content: space-between;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  aspect-ratio: 193/38;
  max-height: 38px;
  min-height: 20px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-height: 30px;
  }
.header__logo img{
    max-height: 30px;
     aspect-ratio: auto;
  }

}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .header__bottom-right {
    margin-left: 0;
  }
}
.header__btns {
  margin-left: auto;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .header__btns {
    gap: 10px;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__btns {
    display: none;
  }
}
.header__btn {
  border: 1px solid var(--color-body);
  padding: 6px 15px;
  font-size: 13px;
  line-height: 120%;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__btn {
    padding: 6px 13px;
  }
}
.header__btn:hover {
  opacity: 1;
  background: rgba(56, 29, 2, 0.05);
}
.header__els {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__els {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.header__el {
  height: 12px;
  min-width: 9px;
  display: flex;
  align-items: center;
}
.header__el img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}

.topbreads {
  padding: 12px 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .topbreads {
    display: block;
  }
}
.topbreads__breads {
  display: flex;
  gap: 3px;
  font-size: 10px;
  line-height: 120%;
}
.topbreads__bread {
  color: #202020;
}
.topbreads__bread a {
  color: #9D9D9D;
  text-decoration: none;
}
.topbreads__bread-separator {
  color: #9D9D9D;
}

.sectmain {
  position: relative;
  height: calc(100vh - 100px);
  max-height: 745px;
  color: white;
  padding: 40px 0;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 992px) {
  .sectmain {
    max-width: 100%;
    min-height: 600px;
    height: auto;
    padding-top: 300px;
  }
}
@media screen and (max-width: 768px) {
  .sectmain {
    align-items: flex-start;
    padding-top: 39px;
    height: calc(100vh - 90px);
    min-height: 400px;
  }
}
.sectmain::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(-90deg, rgba(102, 111, 82, 0) 5.15%, rgba(87, 95, 69, 0.85) 57.62%, #515940 91.89%);
}
@media screen and (max-width: 768px) {
  .sectmain::before {
    display: none;
  }
}
.sectmain::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(186.43deg, rgba(102, 111, 82, 0) 60.45%, #515940 93.21%);
}
@media screen and (max-width: 768px) {
  .sectmain::after {
    background: linear-gradient(180.16deg, #515940 30.06%, rgba(81, 89, 64, 0) 59.97%);
  }
}
.sectmain__img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
    object-position: center; 
}
@media screen and (max-width: 768px) {
  .sectmain__img {
    height: calc(100% - 220px);
    bottom: 0;
    top: auto;
    -o-object-position: center;
       object-position: center;
  }
}
.sectmain__body {
  position: relative;
  z-index: 3;
}
.sectmain__title {
  margin: 0;
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 90%;
  margin-bottom: 20px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .sectmain__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.sectmain__desc {
  max-width: 669px;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .sectmain__desc {
    font-size: 12px;
  }
}
.sectmain__btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sectmain__btns {
    margin-top: 25px;
    gap: 10px;
  }
}
.sectmain__btn {
  border: 1px solid white;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  text-decoration: none;
  padding: 9px 22px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .sectmain__btn {
    font-size: 12px;
    padding: 8px 20px;
  }
}
.sectmain__btn:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}
.sectmain__btn span {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 100%;
  font-weight: 300;
}

.sectabout {
  background: var(--grey-bg);
  padding: 40px 0 70px;
}
@media screen and (max-width: 768px) {
  .sectabout {
    padding: 50px 0;
  }
}
.sectabout__breads {
  margin-bottom: 33px;
  display: flex;
  gap: 3px;
  font-size: 14px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .sectabout__breads {
    display: none;
  }
}
.sectabout__bread {
  color: #202020;
}
.sectabout__bread a {
  color: #9D9D9D;
  text-decoration: none;
}
.sectabout__bread-separator {
  color: #9D9D9D;
}
.sectabout__content {
  display: flex;
  gap: 52px;
}
@media screen and (max-width: 992px) {
  .sectabout__content {
    flex-direction: column;
    gap: 25px;
  }
}
.sectabout__left {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 48%;
}
@media screen and (max-width: 992px) {
  .sectabout__left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sectabout__left {
    gap: 15px;
  }
}
.sectabout__title {
  font-family: "Forum", serif;
  font-size: 52px;
  line-height: 90%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sectabout__title {
    font-size: 28px;
  }
}
.sectabout__desc {
  font-size: 18px;
  line-height: 135%;
  color: rgba(58, 63, 44, 0.9);
}
@media screen and (max-width: 768px) {
  .sectabout__desc {
    font-size: 14px;
  }
}
.sectabout__desc p + p {
  margin-top: 20px;
}
.sectabout__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  width: 52%;
}
@media screen and (max-width: 992px) {
  .sectabout__items {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sectabout__items {
    gap: 10px;
  }
}
.sectabout__item {
  grid-column: 6 span;
  background: #B4B49A;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 172px;
  padding: 20px 24px 20px 20px;
  border: 1px solid rgba(58, 63, 44, 0);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .sectabout__item {
    grid-column: 12 span;
    min-height: 130px;
    padding: 15px;
  }
}
.sectabout__item::before {
  content: "";
  width: 100%;
  height: 200%;
  left: 0;
  top: 0;
  background: linear-gradient(182.47deg, rgba(82, 90, 65, 0) 2.06%, #525A41 93.14%);
  position: absolute;
}
.sectabout__item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .sectabout__item-img {
    max-width: 30px;
  }
  .sectabout__item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.sectabout__item-title {
  color: white;
  font-family: "Forum", serif;
  font-size: 24px;
  line-height: 90%;
  font-weight: 400;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sectabout__item-title {
    font-size: 20px;
  }
}

.yogaforms {
  padding: 70px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .yogaforms {
    padding: 50px 0;
  }
}
.yogaforms__arrows {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  display: none;
}
@media screen and (max-width: 992px) {
  .yogaforms__arrows {
    display: flex;
  }
}
.yogaforms__arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.yogaforms__arrow:hover {
  opacity: 0.6;
}
.yogaforms__arrow--next {
  transform: rotate(180deg);
}
.yogaforms__slider .swiper-slide {
  height: auto;
}
.yogaforms__item {
  background: rgba(56, 29, 2, 0.05);
  border: 1px solid rgba(56, 29, 2, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 20px;
  min-height: 220px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .yogaforms__item {
    padding: 20px 15px;
    min-height: 0;
  }
}
.yogaforms__item-title {
  font-family: "Forum", serif;
  font-size: 24px;
  line-height: 100%;
  font-weight: 400;
  color: #381D02;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .yogaforms__item-title {
    font-size: 20px;
  }
}
.yogaforms__item-subtitle {
  font-size: 20px;
  font-family: "Forum", serif;
  line-height: 90%;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .yogaforms__item-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.yogaforms__item-desc {
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  color: rgba(56, 29, 2, 0.8);
}
@media screen and (max-width: 768px) {
  .yogaforms__item-desc {
    font-size: 10px;
    margin-bottom: 20px;
  }
}
.yogaforms__item-level {
  color: #381D02;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .yogaforms__item-level {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
.yogaforms__item-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 130%;
  color: #381D02;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .yogaforms__item-btn {
    font-size: 12px;
    gap: 3px;
  }
}
.yogaforms__item-btn span {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #381D02;
  line-height: 90%;
}
@media screen and (max-width: 768px) {
  .yogaforms__item-btn span {
    font-size: 11px;
  }
}

.yogafirst {
  background: var(--grey-bg);
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .yogafirst {
    padding: 50px 0;
  }
}
.yogafirst .title {
  color: var(--color-body);
}
.yogafirst .desc {
  color: rgba(58, 63, 44, 0.9);
}
.yogafirst__items {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 480px) {
  .yogafirst__items {
    gap: 10px;
  }
}
.yogafirst__item {
  grid-column: 3 span;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 300px;
  position: relative;
  padding: 20px;
  border: 1px solid rgba(58, 63, 44, 0.2);
}
@media screen and (max-width: 992px) {
  .yogafirst__item {
    grid-column: 6 span;
    min-height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .yogafirst__item {
    grid-column: 12 span;
    min-height: 147px;
    padding: 15px;
    gap: 8px;
  }
}
.yogafirst__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(182.47deg, rgba(82, 90, 65, 0) 2.06%, #525A41 93.14%);
}
.yogafirst__item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.yogafirst__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yogafirst__item-title {
  position: relative;
  z-index: 2;
  font-family: "Forum", serif;
  font-size: 23px;
  line-height: 90%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .yogafirst__item-title {
    font-size: 20px;
  }
}
.yogafirst__item-desc {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 480px) {
  .yogafirst__item-desc {
    font-size: 10px;
  }
}

.yogateam {
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .yogateam {
    padding: 50px 0;
  }
}
.yogateam__slider {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .yogateam__slider {
    display: none;
  }
}
.yogateam__slider .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 8px;
}
.yogateam__slider .swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1 !important;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(56, 29, 2, 0.1);
  font-size: 18px;
  transition: 0.3s ease;
  color: var(--color-body);
}
.yogateam__slider .swiper-pagination-bullet:hover {
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slider .swiper-pagination-bullet-active {
  background: #F5F3F3;
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slide-img {
  max-height: 300px;
  aspect-ratio: 256/300;
  margin-bottom: 20px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .yogateam__slide-img {
    max-height: unset;
    height: auto;
    aspect-ratio: 140/165;
    margin-bottom: 12px;
    width: 100%;
  }
}
.yogateam__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.yogateam__slide-title {
  font-family: "Forum", serif;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .yogateam__slide-title {
    font-size: 16px;
  }
}
.yogateam__slide-items {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .yogateam__slide-items {
    margin-top: 8px;
    gap: 8px;
  }
}
.yogateam__item {
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.5px;
  color: rgba(56, 29, 2, 0.6);
}
@media screen and (max-width: 768px) {
  .yogateam__item {
    font-size: 9px;
  }
}
.yogateam__item span {
  color: rgba(56, 29, 2, 0.9);
}
.yogateam__slider-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}
.yogateam__slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  border: 1px solid rgba(56, 29, 2, 0.1);
  border-radius: 100%;
  transition: 0.3s ease;
  cursor: pointer;
}
.yogateam__slider-arrow:hover {
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slider-arrow--next {
  transform: rotate(180deg);
}
.yogateam__slidermob {
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 768px) {
  .yogateam__slidermob {
    display: block;
  }
}
.yogateam__slidermob .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 8px;
}
.yogateam__slidermob .swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1 !important;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(56, 29, 2, 0.1);
  font-size: 14px;
  transition: 0.3s ease;
  color: var(--color-body);
}
.yogateam__slidermob .swiper-pagination-bullet:hover {
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slidermob .swiper-pagination-bullet-active {
  background: #F5F3F3;
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slidermob-slide {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 20px;
}
.yogateam__slidermob-slide .yogateam__slide {
  grid-column: 6 span;
}
.yogateam__slidermob-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 8px;
}
.yogateam__slidermob-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border: 1px solid rgba(56, 29, 2, 0.1);
  border-radius: 100%;
  transition: 0.3s ease;
  cursor: pointer;
}
.yogateam__slidermob-arrow:hover {
  border-color: rgba(56, 29, 2, 0.3);
}
.yogateam__slidermob-arrow--next {
  transform: rotate(180deg);
}

.yogaspace {
  background: var(--grey-bg);
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .yogaspace {
    padding: 50px 0;
  }
}
.yogaspace img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.yogaspace__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .yogaspace__content {
    display: none;
  }
}
.yogaspace__big {
  aspect-ratio: 1360/700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .yogaspace__big {
    aspect-ratio: 290/150;
  }
}
.yogaspace__item {
  display: flex;
  gap: 20px;
}
.yogaspace__item:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.yogaspace__item-img-big {
  aspect-ratio: 670/360;
  display: flex;
  align-items: center;
  width: 50%;
}
.yogaspace__els {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25%;
  gap: 20px;
}
.yogaspace__el {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .yogaspace__el {
    gap: 8px;
  }
}
.yogaspace__el-title {
  font-family: "Forum", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #3A3F2C;
  line-height: 90%;
}
@media screen and (max-width: 480px) {
  .yogaspace__el-title {
    font-size: 16px;
  }
}
.yogaspace__el-desc {
  font-size: 12px;
  color: rgba(58, 63, 44, 0.8);
  letter-spacing: -0.5px;
  line-height: 130%;
}
@media screen and (max-width: 480px) {
  .yogaspace__el-desc {
    font-size: 10px;
  }
}
.yogaspace__item-img-small {
  display: flex;
  align-items: center;
  aspect-ratio: 325/360;
  width: 25%;
}
.yogaspace__contentmob {
  display: none;
}
@media screen and (max-width: 768px) {
  .yogaspace__contentmob {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.yogaspace__contentmob-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.yogaspace__contentmob-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.yogaspace__contentmob-item:nth-child(1) .yogaspace__contentmob-item-img {
  aspect-ratio: 250/135;
  margin-right: 80px;
}
@media screen and (max-width: 480px) {
  .yogaspace__contentmob-item:nth-child(1) .yogaspace__contentmob-item-img {
    margin-right: 40px;
  }
}
.yogaspace__contentmob-item:nth-child(2) {
  margin-left: 180px;
}
@media screen and (max-width: 480px) {
  .yogaspace__contentmob-item:nth-child(2) {
    margin-left: 90px;
  }
}
.yogaspace__contentmob-item:nth-child(2) .yogaspace__contentmob-item-img {
  aspect-ratio: 200/220;
}
.yogaspace__contentmob-item:nth-child(3) {
  margin-right: 140px;
}
@media screen and (max-width: 480px) {
  .yogaspace__contentmob-item:nth-child(3) {
    margin-right: 70px;
  }
}
.yogaspace__contentmob-item:nth-child(3) .yogaspace__contentmob-item-img {
  aspect-ratio: 220/220;
}
.yogaspace__contentmob-item:nth-child(4) .yogaspace__contentmob-item-img {
  aspect-ratio: 290/150;
}
.yogaspace__contentmob-item-img {
  display: flex;
  align-items: center;
}

.yogacalendar {
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .yogacalendar {
    padding: 50px 0;
  }
}
.yogacalendar .top {
  text-align: center;
}
.yogacalendar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .yogacalendar__nav {
    gap: 0px;
    font-size: 12px;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
.yogacalendar__nav-week {
  font-size: 18px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .yogacalendar__nav-week {
    font-size: 12px;
  }
}
.yogacalendar__nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
  transition: 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.yogacalendar__nav-btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .yogacalendar__nav-btn {
    font-size: 12px;
    gap: 3px;
  }
  .yogacalendar__nav-btn img {
    min-width: 9px;
    max-width: 9px;
    height: 7px;
  }
}
.yogacalendar__nav-btn--next img {
  transform: rotate(180deg);
}
.yogacalendar__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .yogacalendar__filters {
    gap: 6px;
    margin-bottom: 15px;
  }
}
.yogacalendar__dropdown {
  position: relative;
}
.yogacalendar__dropdown.is-open .yogacalendar__dropdown-menu {
  display: block;
}
.yogacalendar__dropdown.is-open .yogacalendar__dropdown-btn svg {
  transform: rotate(180deg);
}
.yogacalendar__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(56, 29, 2, 0.2);
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}
.yogacalendar__dropdown-btn:hover {
  border-color: rgba(58, 63, 44, 0.6);
}
@media screen and (max-width: 768px) {
  .yogacalendar__dropdown-btn {
    gap: 2px;
    padding: 6px 9px;
    font-size: 10px;
  }
}
.yogacalendar__dropdown-btn svg {
  transition: 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .yogacalendar__dropdown-btn svg {
    width: 9px;
  }
}
.yogacalendar__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  background: white;
  border: 1px solid rgba(58, 63, 44, 0.2);
  z-index: 100;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .yogacalendar__dropdown-menu {
    min-width: 0;
    width: -moz-max-content;
    width: max-content;
    max-width: calc(100vw - 30px);
  }
}
.yogacalendar__dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}
.yogacalendar__dropdown-menu label:hover {
  background: rgba(58, 63, 44, 0.05);
}
.yogacalendar__dropdown-menu label input[type=checkbox] {
  accent-color: var(--primary);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.yogacalendar__table-wrap {
  overflow-x: auto;
}
.yogacalendar__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}
.yogacalendar__table thead th {
  border: 1px solid #C3BBB3;
  padding: 12px 10px 14px;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  background: white;
  vertical-align: top;
}
.yogacalendar__table thead th:first-child {
  width: 80px;
  min-width: 80px;
  text-align: center;
  background: #F5F4F2;
  border-right-width: 2px;
}
.yogacalendar__table thead th .cal-day-num {
  font-size: 24px;
  line-height: 140%;
  display: block;
}
.yogacalendar__table thead th .cal-day-name {
  font-size: 14px;
  display: block;
}
.yogacalendar__table tbody td {
  border: 1px solid #C3BBB3;
  padding: 3px;
  vertical-align: top;
  min-height: 48px;
  height: 48px;
}
.yogacalendar__table tbody td:first-child {
  text-align: right;
  font-size: 15px;
  padding: 8px;
  white-space: nowrap;
  background: #F5F4F2;
  border-right: 2px solid #C3BBB3;
}
.yogacalendar__event {
  background: rgba(161, 148, 121, 0.18);
  padding: 4px 6px;
  cursor: pointer;
  transition: 0.2s ease;
  height: 100%;
  border-radius: 6px;
}
.yogacalendar__event:hover {
  filter: brightness(0.93);
}
.yogacalendar__event--color-1 {
  background: #CBCBB8;
}
.yogacalendar__event--color-2 {
  background: #FAF7E6;
}
.yogacalendar__event--color-3 {
  background: #E3DFDA;
}
.yogacalendar__event--color-4 {
  background: #D0C9BC;
}
.yogacalendar__event-title {
  font-size: 14px;
  line-height: 150%;
  display: block;
}
.yogacalendar__event-meta {
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .yogacalendar__nav--desktop {
    display: none;
  }
}
.yogacalendar__nav--mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .yogacalendar__nav--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }
}
.yogacalendar__nav--mobile .yogacalendar__nav-btn {
  font-size: 12px;
  padding: 0;
}
.yogacalendar__daytabs {
  display: none;
}
@media screen and (max-width: 768px) {
  .yogacalendar__daytabs {
    display: flex;
    overflow-x: auto;
    gap: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #C3BBB3;
    scrollbar-width: none;
  }
  .yogacalendar__daytabs::-webkit-scrollbar {
    display: none;
  }
}
.yogacalendar__daytab {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
  gap: 2px;
  flex-grow: 1;
}
.yogacalendar__daytab-name {
  font-size: 12px;
  color: #C3BBB3;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #C3BBB3;
  width: 100%;
  display: block;
  text-align: center;
  padding-bottom: 3px;
}
.yogacalendar__daytab-num {
  font-size: 18px;
  line-height: 130%;
  color: #C3BBB3;
  padding: 1px 0;
}
.yogacalendar__daytab.is-active .yogacalendar__daytab-name {
  color: var(--color-body);
}
.yogacalendar__daytab.is-active .yogacalendar__daytab-num {
  color: var(--color-body);
}
@media screen and (max-width: 768px) {
  .yogacalendar__table {
    min-width: 0;
  }
  .yogacalendar__table thead {
    display: none;
  }
  .yogacalendar__table tbody td:not(:first-child) {
    display: none;
  }
  .yogacalendar__table tbody td.cal-col-active {
    display: table-cell;
    width: 100%;
  }
  .yogacalendar__table tbody td:first-child {
    width: 80px;
    min-width: 80px;
  }
}

.yogacost {
  padding: 70px 0;
  background: var(--grey-bg);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .yogacost {
    padding: 50px 0;
  }
}
.yogacost__arrows {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  display: none;
}
@media screen and (max-width: 992px) {
  .yogacost__arrows {
    display: flex;
  }
}
.yogacost__arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.yogacost__arrow:hover {
  opacity: 0.6;
}
.yogacost__arrow--next {
  transform: rotate(180deg);
}
.yogacost__slider .swiper-slide {
  height: auto;
}
.yogacost__slider .swiper-slide:nth-child(2n) .yogacost__slide {
  background: #E0E0D4;
}
.yogacost__slide {
  background: rgba(58, 63, 44, 0.05);
  border: 1px solid rgba(58, 63, 44, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .yogacost__slide {
    padding: 20px 18px 20px 15px;
  }
}
.yogacost__slide-title {
  font-family: "Forum", serif;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .yogacost__slide-title {
    font-size: 20px;
  }
}
.yogacost__slide-items {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .yogacost__slide-items {
    gap: 12px;
  }
}
.yogacost__slide-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .yogacost__slide-item {
    gap: 5px;
  }
}
.yogacost__item-title {
  font-family: "Forum", serif;
  font-size: 19px;
  line-height: 90%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .yogacost__item-title {
    font-size: 16px;
  }
}
.yogacost__item-desc {
  color: rgba(58, 63, 44, 0.8);
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .yogacost__item-desc {
    font-size: 10px;
  }
}
.yogacost__slide-btn {
  color: var(--color-body);
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .yogacost__slide-btn {
    font-size: 12px;
  }
}
.yogacost__slide-btn span {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .yogacost__slide-btn span {
    font-size: 11px;
  }
}
.yogacost__desc {
  margin: 0 auto;
  margin-top: 25px;
  max-width: 401px;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.5px;
  color: rgba(32, 32, 32, 0.9);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .yogacost__desc {
    font-size: 12px;
    margin: 0;
    margin-top: 20px;
    text-align: left;
  }
}

.actual {
  padding: 70px 0;
}
@media screen and (max-width: 768px) {
  .actual {
    padding: 50px 0;
  }
}
.actual .desc {
  color: rgba(56, 29, 2, 0.9);
}
.actual__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: fit-content;
   margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .actual__items {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .actual__items {
    gap: 10px;
  }
}
.actual__item {
  grid-column: 1 span;
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 16px;
  color: white;
  align-items: flex-start;
  overflow: hidden;
  max-width: 256px;
}
.actual__item:hover .actual__item-img {
  transform: scale(1.1);
}
.actual__item:hover .actual__item-arrow {
  transform: rotate(45deg);
}
@media screen and (max-width: 1200px) {
  .actual__item {
    grid-column: 3 span;
  }
}
@media screen and (max-width: 992px) {
  .actual__item {
    grid-column: 4 span;
  }
}
@media screen and (max-width: 768px) {
  .actual__item {
    grid-column: 6 span;
    min-height: 160px;
    padding: 15px;
  }
}
@media screen and (max-width: 480px) {
  .actual__item {
    grid-column: 12 span;
  }
}
.actual__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(182.47deg, rgba(82, 90, 65, 0.5) 2.06%, rgba(82, 90, 65, 0) 23.75%, rgba(82, 90, 65, 0) 52.2%, #525A41 77.76%);
}
@media screen and (max-width: 768px) {
  .actual__item::after {
    background: linear-gradient(182.47deg, rgba(82, 90, 65, 0.5) 2.06%, rgba(82, 90, 65, 0) 18.25%, rgba(82, 90, 65, 0) 37.1%, #525A41 73.94%);
  }
}
.actual__link {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.actual__item-img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.actual__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.actual__item-arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  align-self: flex-end;
  transition: 0.3s ease;
}
.actual__item-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .actual__item-bottom {
    gap: 12px;
  }
}
.actual__item-sub {
  line-height: 130%;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .actual__item-sub {
    font-size: 12px;
    padding: 5px 12px;
  }
}
.actual__item-title {
  font-family: "Forum", serif;
  line-height: 110%;
  font-weight: 400;
  font-size: 20px;
  line-height: -1px;
}
@media screen and (max-width: 768px) {
  .actual__item-title {
    font-size: 16px;
  }
}

.yogacont {
  background: #F6F4F2;
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  .yogacont {
    padding: 50px 0;
  }
}
.yogacont__body {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .yogacont__body {
    flex-direction: column;
    gap: 25px;
  }
}
.yogacont__left {
  max-width: 562px;
}
@media screen and (max-width: 992px) {
  .yogacont__left {
    max-width: 100%;
  }
}
.yogacont__title {
  font-family: "Forum", serif;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .yogacont__title {
    font-size: 28px;
  }
}
.yogacont__desc {
  font-size: 18px;
  color: rgba(58, 63, 44, 0.9);
  line-height: 130%;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .yogacont__desc {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.yogacont__items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.yogacont__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .yogacont__item {
    gap: 8px;
  }
}
.yogacont__item-title {
  font-family: "Forum", serif;
  font-size: 20px;
  line-height: 90%;
  letter-spacing: -0.5px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .yogacont__item-title {
    font-size: 16px;
  }
}
.yogacont__item-desc {
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.5px;
  color: rgba(58, 63, 44, 0.8);
}
@media screen and (max-width: 768px) {
  .yogacont__item-desc {
    font-size: 12px;
  }
}
.yogacont__btns {
  margin-top: 52px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .yogacont__btns {
    margin-top: 20px;
    gap: 10px;
  }
}
.yogacont__btn {
  border: 1px solid var(--color-body);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 22px;
  line-height: 130%;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .yogacont__btn {
    padding: 8px 20px;
    font-size: 12px;
    gap: 3px;
  }
}
.yogacont__btn:hover {
  opacity: 1;
  background: rgba(58, 63, 44, 0.07);
}
.yogacont__btn span {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .yogacont__btn span {
    font-size: 11px;
  }
}
.yogacont__map {
  max-width: 654px;
  width: 100%;
  position: relative;
  cursor: grab;
}
@media screen and (max-width: 992px) {
  .yogacont__map {
    max-width: 100%;
    height: 280px;
  }
}
.yogacont__map::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #A19479;
  mix-blend-mode: screen;
  pointer-events: none;
}
.yogacont__map iframe {
  filter: brightness(86%) grayscale(1);
}

.footer {
  background: var(--primary);
  color: white;
  padding: 51px 0 25px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 20px;
  }
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer__top {
  display: flex;
}
@media screen and (max-width: 992px) {
  .footer__top {
    justify-content: space-between;
  }
}
.footer__top-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-right: 77px;
  max-width: 228px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .footer__top-left {
    margin-right: 30px;
    max-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .footer__top-left {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .footer__top-left {
    max-width: unset;
    width: auto;
    margin-right: -15px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  aspect-ratio: 193/38;
  max-height: 38px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-height: 30px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__desc {
  font-size: 8px;
  line-height: 110%;
  letter-spacing: -0.5px;
  max-width: 228px;
}
@media screen and (max-width: 768px) {
  .footer__desc {
    font-size: 7px;
    max-width: 145px;
  }
}
.footer__up {
  display: flex;
  align-items: center;
  margin-top: auto;
  border: 1px solid white;
  text-decoration: none;
  font-size: 12px;
  line-height: 130%;
  padding: 7px 15px;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .footer__up {
    font-size: 8px;
    padding: 5px 12.5px;
    margin-top: 12px;
    gap: 5px;
  }
  .footer__up img {
    max-height: 7px;
  }
}
.footer__up:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
.footer__navs {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: 20px;
  padding-bottom: 33px;
}
@media screen and (max-width: 992px) {
  .footer__navs {
    display: none;
  }
}
.footer__navs--mob {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer__navs--mob {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    padding-bottom: 0;
    margin-top: 30px;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .footer__nav {
    grid-column: 6 span;
  }
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.footer__nav ul li {
  display: flex;
  align-items: center;
}
.footer__nav ul li a {
  font-size: 12px;
  line-height: 200%;
}
@media screen and (max-width: 768px) {
  .footer__nav ul li a {
    font-size: 8px;
  }
}
.footer__nav-label {
  font-family: "Forum", serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .footer__nav-label {
    margin-bottom: 5px;
    font-size: 14px;
  }
}
.footer__nav-desc {
  font-size: 12px;
  line-height: 110%;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .footer__nav-desc {
    font-size: 8px;
    line-height: 120%;
    margin-top: 0;
  }
}
.footer__nav-desc span {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .footer__nav-desc span {
    font-size: 120%;
  }
}
.footer__items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__items {
    gap: 5px;
  }
}
.footer__items-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__items-top {
    gap: 5px;
    display: none;
  }
}
.footer__items-top--mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer__items-top--mob {
    display: flex;
  }
}
.footer__item {
  font-size: 12px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  padding: 7px 15px;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .footer__item {
    font-size: 8px;
    padding: 5px 12px;
    white-space: nowrap;
  }
  .footer__item img {
    max-height: 8px;
  }
}
.footer__item:hover {
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}
.footer__items-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__items-bottom {
    gap: 5px;
    flex-direction: column-reverse;
  }
}
.footer__bottom {
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding-top: 12px;
    margin-top: 30px;
  }
}
.footer__bottom-text {
  font-size: 10px;
  letter-spacing: -0.5px;
  line-height: 110%;
}
@media screen and (max-width: 768px) {
  .footer__bottom-text {
    font-size: 8px;
  }
}

@media screen and (min-width: 769px) {

	.yogacost__slider {
		display: flex;
		justify-content: center;
	}
	.yogacost__slider > .swiper-wrapper {
		width: fit-content;
		margin: 0px auto;
	}

}