:root {
  --gray: #272727;
  --blue: #2b56d2;
  --pink: #e65c75;
  --yellow: #feca05;
  --red: #ff1f46;
  --border: 30px;
}

/* @font-face {
  font-family: "Raleway";
  src: url("../font/raleway/Raleway-VariableFont_wght.ttf");
} */

@font-face {
  font-family: "Raleway";
  src: url("../font/raleway/Raleway-Italic-VariableFont_wght.ttf");
}

/* @font-face {
  font-family: "Jost";
  src: url("../font/jost/Jost-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Montserrat";
  src: url("../font/montserrat/Montserrat-VariableFont_wght.ttf");
} */

* {
  box-sizing: border-box;
  /* padding: 0;
    margin: 0; */
  color: var(--gray);
}

html {
  line-height: 1.15;
}
img {
  max-width: 100%;
}
button {
  background-color: transparent;
  outline: none;
  border: none;
}
a:hover {
  text-decoration: none;
}
body {
  margin: 0;
  min-width: 360px;
  font-family: "Raleway italic";
}

button {
  cursor: pointer;
}

/* Common classes */
.info-message {
  margin: 100px 0;
}
.validation-error-message {
  color: red;
}
.medium-title {
  font-size: 31px;
  line-height: 36px;
}
.semi-grand-title {
  font-size: 51px;
  margin-bottom: 6px;
}

.grand-title {
  font-size: 56px;
  margin-bottom: 6px;
}

.minor-title {
  font-size: 24px;
  line-height: 26px;
}
.blue-text {
  color: var(--blue);
}
.plain-text {
  font-size: 19px;
  line-height: 24px;
}
.rounded {
  border-radius: 30px;
}
.italic {
  font-style: italic;
}
.font-bold {
  font-weight: bold;
}
.font-normal {
  font-weight: normal;
}
.margin-none {
  margin: 0;
}
.margin-bottom-14 {
  margin-bottom: 14px;
}
.padding-70 {
  padding: 70px;
}
.text-centered {
  text-align: center;
}
.pointer {
  cursor: pointer;
}
.white-background {
  background-color: #fff;
}

.anchor {
  text-decoration: none;
}

.yellow-container {
  color: #fff;
  background-color: var(--yellow);
}
/* Flex */
.flex-group {
  display: flex;
  flex-wrap: wrap;
}
.flex {
  display: flex;
  flex-direction: row;
}
.flex-row-2 {
  max-width: 45%;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.flex-reversed {
  flex-direction: row-reverse;
}
.flex-item-3 {
  flex: 1 1 30%;
}
.flex-item-2 {
  flex: 1 1 45%;
}
.flex-item-40 {
  flex: 1 1 40%;
}
.flex-item-60 {
  flex: 1 1 60%;
}
.firstSLideBg {
  opacity: 0;
  background-image: url("../img/hero-section/background.png");
  transition: opacity 0.4s ease;
}
.firstSLideBg.shown {
  opacity: 1;
  transition: opacity 0.4s ease;
}
.secondSLideBg {
  opacity: 0;
  background-image: url("../img/hero-section/background-322.png");
}
.secondSLideBg.shown {
}
.gap {
  gap: 30px;
}
.flex-around {
  justify-content: space-around;
}
.flex-center {
  align-items: center;
  justify-content: center;
}

/* Header */
.header__line {
  align-items: center;
  padding: 40px 100px 20px 100px;
}
.mobileMenu--opened {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);

  transition: all 0.4s ease;
  z-index: 2;
}
.header__mobileMenu {
  position: absolute;
  top: 100px;
  left: -1px;
  right: 0;
  bottom: 0;

  padding: 50px;
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobileMenu__list {
  color: var(--gray);
  font-weight: 700;
  font-size: 25px;

  padding: 0;
  margin: 0;
  list-style-type: none;

  text-align: center;
}
.mobileMenu__list li {
  margin-bottom: 16px;
}
.mobileMenu__list li:last-of-type {
  margin-bottom: 0;
}
.mobileMenu__phone {
  margin-top: 72px;
  color: var(--gray);
  font-weight: 600;
  font-size: 25px;

  text-align: center;
}
.mobileMenu__whatsapp {
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  text-align: center;

  text-decoration: underline;
  margin-top: 14px;
}
.freeLesson {
  margin-top: 50px;

  color: var(--gray);
  font-size: 17px;
  font-weight: 700;

  padding: 17px 37px;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}
.header__mobileMenu--opened {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.4s ease;
}
.header__menu {
  padding: 10px 100px 0 100px;
}
.header__menu ul {
  list-style: none;
  display: flex;
  padding: 0;
  gap: 40px;
}
.header__menu ul li {
  font-weight: bold;
  font-size: 19px;
  border-bottom: 1px solid transparent;
}
.header__menu ul li:hover {
  cursor: pointer;
  border-bottom: 1px solid var(--gray);
}
.header__free-lesson-button {
  padding: 17px 37px;
  border: 1px solid rgb(228, 228, 228);
}
.header__phone {
  font-weight: 1000;
  font-size: 30px;
}
.header__whatsapp-cta {
  text-decoration: underline;
}
.burger-button {
  display: none;
  position: relative;
  align-items: center;
  width: 30px;
  height: 18px;
  z-index: 1;
}

.burger-button span {
  height: 2px;
  width: 100%;
  transform: scale(1);
  background-color: var(--blue);
}

.blog-carousel {
  padding: 20px;
}
.blog-item {
  max-width: 400px;
}

.burger-button::before,
.burger-button::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--blue);
  transition: all 0.3s ease 0s;
}

.burger-button::before {
  top: 0;
}
.burger-button::after {
  bottom: 0;
}
.burger-button.active span {
  transform: scale(0);
}
.burger-button.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger-button.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}

/* Structure */
.container {
  margin: 50px auto;
  border-radius: 30px;
  max-width: 1340px;
}
.inner-container {
  padding: 40px 100px;
}

/* Util */
.circle {
  border-radius: 50%;
}
.overflowHidden {
  overflow-y: hidden;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.centered {
  display: block;
  margin: 0 auto;
}
.shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.inner-container-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

/* Blur */
.transparent-blur {
  background: rgba(241, 243, 244, 0.1);
  border: 1px solid #ffffff;
  backdrop-filter: blur(27px);
}
.white-blur {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(9px);
}
.circles-background {
  background-repeat: no-repeat;
  background-position: top;
  overflow: hidden;
  margin: 0 auto;
}

/* Hero section */
#hero-img-768 {
  display: none;
}
#hero-img-mobile {
  display: none;
}
.hero-section__background {
  background-image: url("../img/hero-section/background.png");
}
.hero-section__background-2 {
  background-image: url("../img/hero-section/background-2.png");
}
.hero-section__title {
  max-width: 550px;
  margin-bottom: 50px;
}
.hero-section__form {
  margin-top: 100px;
  width: fit-content;
}
.hero-section__form--input {
  padding: 24px 40px;
  font-size: 14px;
  font-weight: 300;

  width: 366px;
  height: 60px;

  outline: none;

  border-color: var(--blue);
  border-radius: var(--border);
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(43, 86, 210, 0.4);
}
.cta-absolute {
  position: absolute;
  right: 5px;
  top: 5px;
}
.cta-button {
  cursor: pointer;
  color: #fff;
  padding: 14px 45px;
  background-color: var(--blue);
  font-size: 18px;
  font-weight: bold;
  border-radius: var(--border);
  box-shadow: 0px 4px 4px rgba(43, 86, 210, 0.5);
}

.hero-section__additional-container {
  display: flex;
  padding: 5px 21px;
  border-radius: 30px;
  width: 245px;
  height: 128px;
  top: -70px;
}
.hero-section__five-plus {
  padding: 15px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  font-weight: bold;
  font-size: 23px;
  width: 60px;
  height: 60px;
  position: relative;
  left: -32px;
  top: 12px;
  z-index: -1;
}
.hero-section__paper-ship {
  position: absolute;
  top: -118px;
  left: -130px;
}
.hero-section__mountains {
  position: absolute;
  right: -140px;
  top: -100px;
}
.hero-section__hero-heart {
  position: absolute;
  top: -350px;
  left: 300px;
}

/* Teacher section */
.teacher__section-title-first::before {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--blue);
  position: absolute;
  backdrop-filter: blur(4px);
  box-shadow: 0px 4px 4px rgba(43, 86, 210, 0.54);
  top: -80px;
  right: 15px;
}
.teacher__section-title-first::after {
  content: url("../img/general/yellow_heart.svg");
  position: absolute;
  top: -30px;
  right: -5px;
}
.teacher-section__title-container {
  margin: 140px 0 78px 0;
}
/* .teacher__section_list {
  margin: 62px 0 44px 0;
  list-style: url("../img/general/list-pointer.png");
} */
.teacher__section_list {
  margin: 62px 0 44px 0;
  list-style: none;
}

.teacher-section__teacher-container::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: -10px;
  left: 0;
  background-color: var(--red);
  box-shadow: 0px 4px 4px rgba(230, 92, 117, 0.48);
  backdrop-filter: blur(4px);
}
.teacher-section__info-block {
  position: relative;
  top: -100px;
  left: 20px;
  width: 90%;
  border-radius: 30px;
  padding: 35px;
}
.teacher-section__phone-cta {
  background-color: var(--blue);
  width: 80px;
  height: 80px;
  position: absolute;
  top: -50px;
  right: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Grid */
.grid-group {
  display: grid;
  /*grid-template-columns: 1fr 1fr 1fr;*/
  grid-gap: 30px;
}

.grid-column-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-column-2 {
  grid-template-columns: 1fr 1fr;
}

/* Features */
.features-section-container {
  min-width: 360px;
  min-height: 360px;
  padding: 50px;
  text-align: left;
}
.features__background {
  background-image: url("../img/features-section/features_background.png");
}
.features-section__title-heart::after {
  content: url("../img/general/pink_heart.svg");
  position: absolute;
  top: -20px;
  right: 40px;
}

.features-section__additional-events:after {
  content: url("../img/features-section/four-features-lines.png");
  position: absolute;
  top: 100px;
  right: 25px;
}

/* Price section */
.left-price-section {
  /*text-align: center;*/
  margin-bottom: 50px;
}
.right-price-section {
  padding: 0 10px;
  margin-bottom: 50px;
}
.price__img {
  width: 360px;
  height: 300px;
}
.price__exercises-container {
  width: 80%;
  max-width: 280px;
  /*border-radius: 30px;*/
  padding: 40px 10px;
  /*background-color: #FFF;*/
  position: absolute;
  bottom: -20%;
  /*left: calc(50% - 140px);*/
  /*display: flex;*/
  /*flex-direction: column;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}
.price-section__exercises-desc {
  font-family: "Jost", sans-serif;
  margin: 0;
}
.price__age-info {
  position: absolute;
  top: -30px;
  left: 5px;
  color: #fff;
  background-color: var(--blue);
  padding: 14px 20px;
}
.price__container {
  margin-bottom: 90px;
}

/* Leave phone number section */
.leave-phone-number__input {
  display: block;
  margin-bottom: 18px;
  width: 280px;
  border-width: 0 0 1px 0;
  padding: 5px;
  border-color: var(--blue);
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
}
.leave-phone-number__textarea {
  resize: none;
  height: 60px;
}
.leave-phone-number__input:focus {
  outline: none;
}
.leave-phone-number__name-input::after {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue);
  position: absolute;
  top: -90px;
  right: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.leave-phone-number__number-input::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--red);
  position: absolute;
  top: -30px;
  right: 70px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.leave-phone-number__comment-input::after {
  content: url("../img/general/yellow_heart.svg");
  position: absolute;
  top: 60px;
  right: 0;
}

/* Reviews section */
.reviews__background {
  background-image: url("../img/reviews-section/reviews_background.png");
}
.reviews__slider-button {
  cursor: pointer;
  margin-bottom: 100px;
}

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

.reviews__controls .prev {
  display: flex;
}
.reviews-header {
  margin-bottom: 10%;
}
.reviews__title,
.reviews__subtitle {
  text-align: center;
}

.reviews__subtitle {
  margin-top: 21px;
  margin-bottom: 55px;
}

.reviews__additional {
  max-width: 251px;
  line-height: 0.9;
  margin-top: 66px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-frame {
  width: 560px;
  height:800px;
  overflow:hidden;
  position:relative;
}


/* First lesson section */
.first-lesson-background {
  background-image: url("../img/first-lesson-section/background.png");
}
.first-lesson__heading::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue);
  position: absolute;
  top: -70%;
  left: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.first-lesson__heading::after {
  content: url("../img/general/yellow_heart.svg");
  position: absolute;
  top: -65%;
  left: 10%;
}
.first-lesson__form {
  max-width: 460px;
  background-color: #fff;
  border-radius: 30px;
}
.first-lesson__berry {
  position: absolute;
  top: 200px;
  right: 80%;
}
.first-lesson__cake {
  position: absolute;
  top: -120px;
  right: 40%;
}
.first-lesson__ship {
  position: absolute;
  top: 140px;
  right: 20%;
}

.map__wrap {
  padding-top: 10%;
  margin-top: 70px;
}

#map {
  overflow: hidden;
  width: 100%;
  padding-top: 5%;
  height: 400px;
}

.ymaps-2-1-79-map-copyrights-promo {
  display: none;
}

.ymaps-2-1-79-controls__bottom {
  display: none;
}

.footer {
  position: relative;
  height: 100%;
  padding: 80px;

  background: rgba(211, 211, 211, 0.1);
  border: 1px solid #ffffff;
  backdrop-filter: blur(27px);

  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));

  border-radius: 30px;
}

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

.footer__map-card {
  display: flex;
  flex-direction: column;
}

.footer__address p {
  padding: 0;
  margin: 0;

  font-weight: 400;
  font-size: 21px;
}

.footer__blue {
  font-weight: 700;
  font-size: 22px;

  margin-bottom: 5px;
  color: #2b56d2;
}

.footer__address {
  margin-bottom: 55px;
}

.footer__social {
  margin-top: auto;
}

.footer__phone {
  font-weight: 600;
  font-size: 27px;
  color: #272727;

  margin-top: 13px;
}

#faq > .inner-container {
  height: unset !important;
}

.spoiler-item {
  background-color: #f6f6f6;
  margin: 20px;
  height: unset !important;
  min-height: 30px;
  padding: 15px 20px;
  border-radius: 30px;
}

/* Footer */
/* .footer__container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*}*/
/*.footer__map {*/
/*    margin: 110px 0 40px 0;*/
/*    cursor: pointer;*/
/*}*/
/*.footer__map-card {*/
/*    !*width: 490px;*!*/
/*    !*height: 630px;*!*/
/*    border-radius: 30px;*/
/*    position: absolute;*/
/*    top: -20px;*/
/*    left: 150px;*/
/*    !*padding: 75px;*!*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-around;*/
/*}*/
/*.footer__helper {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-around;*/
/*    width: 100%;*/
/*    margin-bottom: 50px;*/
/*}*/
/*.footer__helper-desc {*/
/*    font-size: 16px;*/
/*    line-height: 20px;*/
/*    max-width: 510px;*/
/*}*/
/*.footer__icon {*/
/*    cursor: pointer;*/
/*} */

@media (max-width: 1250px) {
  .grid-column-3 {
    grid-template-columns: 1fr 1fr;
  }
  .hero-section__background {
    background-image: url("../img/hero-section/background_768.png");
  }
  .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .flex-row-2 {
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .inner-container {
    padding: 40px 20px;
  }
  .header__line {
    position: relative;
    top: -1px;
    left: -1px;
    padding: 40px 20px 20px 20px;
  }
  .header__menu {
    padding: 10px 20px 0 20px;
  }
  .semi-grand-title {
    font-size: 36px;
  }
  .medium-title {
    font-size: 28px;
  }
  .minor-title {
    font-size: 22px;
  }
  .plain-text {
    font-size: 18px;
  }
}

@media (max-width: 1255px) {
  .leave-phone-number__number-input::after {
    top: -100px;
    right: 37px;
  }
}

@media (max-width: 700px) {
  .price__container {
    flex-direction: column;
    margin-bottom: 30px;
  }
}

@media (max-width: 560px) {
  .container {
    margin: 0 auto;
  }
  .price__container {
    flex-direction: column;
  }
  .right-price-section h1 {
    font-size: 21px;
  }
  .hero-section__background {
    background-image: url(../img/hero-section/background-560.png) !important;
    background-size: cover !important;
  }
  .leave-phone-number__number-input::after {
    top: -100px;
    right: 37px;
  }
  .reviews__subtitle {
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 40px;
  }
  .reviews__background {
    background-image: url(../img/reviews-section/reviews_background-560.png) !important;
    background-size: contain;
  }
  .right-price-section {
    font-size: 18px !important;
  }
  .minor-title {
    margin: revert !important;
  }
  .first-lesson__heading {
    font-size: 30px !important;
  }
  
  .reviews__lead {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 20px !important;
  }
  .reviews__slider-button {
    margin-top: 28px;
    margin-bottom: 0;
  }
  .prices {
    font-size: 30px !important;
  }
  .reviews__additional {
    font-size: 12px !important;
    max-width: 150px;
    line-height: 1;
    color: var(--gray);
  }
  .whats-next__form {
    width: auto;
  }
  .inner-container {
    padding: 20px 20px;
  }
  .header-logo {
    width: 470px;
  }
  .header__menu {
    display: none;
  }
  .burger-button {
    display: flex;
    position: absolute;
    top: 50px;
  }
  .header__free-lesson-button {
    display: none;
  }
  .header__contacts {
    display: none;
  }
  .hero-img {
    height: 350px;
  }
  .hero-section__title {
    margin-bottom: 10px;
  }
  .hero-section__form {
    margin-top: 20px;
  }
  .hero-section__hero-heart {
    left: 250px;
  }
  .hero-section__form--input {
    padding: 0 10px;
    width: 300px;
    font-size: 12px;
  }
  .flex-item-2,
  .flex-item-3,
  .flex-item-40,
  .flex-item-60 {
    flex: 1 1 100%;
  }
  .blog-carousel {
    padding: 20px;
  }
  .grid-column-3 {
    grid-template-columns: 1fr;
  }
  .features-section-container {
    min-width: 320px;
    min-height: 260px;
    padding: 40px 25px;
  }
  .semi-grand-title {
    font-size: 25px;
  }
  .medium-title {
    font-size: 18px;
  }
  .margin-bottom-14 {
    margin: 0;
  }
  .padding-70 {
    padding: 70px 20px;
  }
  .teacher-section__title-container {
    margin: 60px 0 0 0;
  }
  .teacher__section_list {
    margin: 0 0 40px 0;
  }
  .teacher-section__info-block {
    /*width: 100%;*/
    /*padding: 15px;*/
  }
  /* .price__container {
    margin-bottom: 30px;
  } */
}

@media (max-width: 768px) {
  .header__free-lesson-button {
    display: none;
  }
  .container {
    margin: 24px auto;
  }
  .prices__wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .right-price-section {
    padding-left: 0;
    max-width: 569px;
  }
  .whats-next {
    flex-direction: column;
  }
  .whats-next br {
    display: none;
  }
  .whats-next__subtitle {
    max-width: 275px;
    text-align: center;
  }
  .whats-next__form {
    width: 100%;
  }
  .leave-phone-number__number-input::after {
    top: -100px;
    right: 37px;
  }
  .prices {
    margin: 0;
    padding: 0;
  }
  .features__background {
    background-image: url(../img/features-section/features_background-768.png);
    background-size: contain;
  }
  .reviews__background {
    background-image: url(../img/reviews-section/reviews_background-768.png);
  }
  /* .semi-grand-title {
    font-size: 24px;
  } */
  .medium-title {
    font-size: 24px;
  }
  .minor-title {
    margin: 0;
  }
  .inner-container {
    grid-template-columns: 1fr;
  }
  .hero-section__background {
    background-image: url("../img/hero-section/background-768.png");
    background-size: contain;
  }
  .first-lesson-background {
    background-image: none;
  }
  .first-lesson-background-2 {
    background-image: url("../img/first-lesson-section/first-lesson-bg-768.png");
    background-repeat: no-repeat;
    background-position: top center;
  }
  .first-lesson__form {
    margin: 0 auto;
  }
  .price__container {
    gap: 2rem;
    flex-wrap: nowrap;
  }
  .first-lesson__heading::before {
    display: none;
  }
  .first-lesson__heading::after {
    display: none;
  }
  .first-lesson__ship,
  .first-lesson__cake,
  .first-lesson__berry {
    display: none;
  }
  .first-lesson__heading {
    font-size: 52px;
    text-align: center;
    margin-bottom: 32px;
  }
  .hero-section__hero-heart {
    display: none;
  }
  .hero-section__mountains {
    display: none;
  }
  .hero-section__paper-ship {
    display: none;
  }
  .right-price-section {
    margin-bottom: 10px;
  }
}

@media (max-width: 1200px) {
  .footer {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .reviews-frame {
    max-width: 400px;
  }
  .footer {
    font-size: 18px;

    padding: 50px 20px;
  }
  .footer h1 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .footer {
    position: relative;
    top: 100px;
    left: 0;

    max-width: none;
    width: 100%;
  }
  .map__wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .inner-container-shadow {
    box-shadow: none;
  }
}
