:root,[data-bs-theme=light] { 
  --bs-primary-bg-subtle: #2c909b !important;
  --bs-accordion-active-color: #e8f3f4 !important;
  --bs-accordion-btn-color:  #e8f3f4 !important;
  --bs-accordion-btn-focus-box-shadow: black !important;
  --bs-primary-text-emphasis: #e8f3f4 !important;
  --bs-primary: #348694 !important;
  --bs-primary-rgb: 0, 123, 255;
  --bs-primary-border-subtle: #99caff;
}


@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AqumTwoo';
  src: url('../fonts/AqumTwoClassic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Lora-Regular';
  src: url('../fonts/Lora-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('../fonts/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik-Regular';
  src: url('../fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Moderustic-Medium';
  src: url('../fonts/Moderustic-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 14px;
  background: rgb(245, 245, 245);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  background: rgb(245, 245, 245);
}

/* Layout */

.uds-btn {
  margin: 15px 15px 15px auto;
  width: fit-content;
  padding: 0;
  background-color: transparent !important;
  border-color: transparent;
  color: transparent;
}

/* Nav */

.nav-menu-icon {
  width: 50px;
  height: 100%;
  color: #2b2f32;
}

.nav-link-minor {
  font-size: 14px;
  font-family: AqumTwoo, serif;
  color: #2b2f32;
  width: 100%;
  margin-left: 4%;
  text-decoration: none;
  position: relative;
}

.nav-link-minor::after {
  content: '';
  position: absolute;
  width: 80%;
  height: 4px;
  background-image: linear-gradient(135deg, #348694 25%, transparent 25%, transparent 50%, #348694 50%, #348694 75%, transparent 75%, transparent); /* Волновой градиент */
  background-size: 8px 10px;
  bottom: 4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.nav-link-minor:hover::after {
  transform: scaleX(1);
}

.nav-link {
  font-size: 16px;
  border: none;
  cursor: pointer;
  color: #2b2f32;
  font-family: AqumTwoo, serif;
  width: 100%;
}

.nav-link:hover {
  color: #2b2f32;
}

.nav-icon {
  width: 30px;
  color: #148490;
  margin-top: -.5%;
  margin-right: 1%;
  text-decoration: none;
}

nav .nav-link::after {
  content: "";
  display: block;
  height: 3px;
  background: #148490;
  width: 0;
  transition: all ease-in-out 300ms;
}

nav .nav-link:hover::after {
  width: 100%;
}

.dropdown-content .nav-link {
  border-radius: 5px;
  padding: 2%;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content .nav-link::after {
  content: "";
  display: block;
  height: 3px;
  background: transparent;
  width: 0;
  transition: all ease-in-out 300ms;
}

.dropdown-content .nav-link:hover{
  background-color: #c2dbdf;
}

.dropdown {
  display: inline-block;
}

.dropdown-content {
  visibility: hidden;
  position: absolute;
  width: 100vw;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content.active {
  visibility: visible;
  margin: auto;
  opacity: 1;
}

* {
  margin: 0;
}

.layout-container {
  height: fit-content;
  padding: 0 5%;
}

.vertical-divider {
  width: 3px; 
  height: 5vh; 
  background-color: #148490;
  border: 0; 
  margin: 0 auto;
  opacity: 1;
}

/* Header */
.logo {
  background-image: url("images/headerLogo.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 55px;
  height: 48px;
}

.admin-logo {
  text-align: center;
  margin-top: 5%;
}

.header-container {
  background-color: transparent !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}

.header-menu {
  display: none;
  width: 100%;
  background-color: transparent;
}

.header-search-input {
  width: 20%;
  color: #e8f3f4;
  font-size: 1rem;
  border-radius: 3px;
}

.header-menu-item {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

.page-container {
  min-height: 100vh;
  height: fit-content;
}

/* Landing page */

.landing-header-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  color: #e8f3f4;
  padding: 1%;
  background-color: #148490;
  border-radius: 50px;
  width: fit-content;
  margin: 0;
}

.landing-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  margin: 0;
}

.landing-header-underline {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #148490;
  text-decoration-thickness: 3px;
}

.landing-header-image {
  width: 80%;
  border-radius: 90px;
  transform: rotate(180deg);
}

.landing-header-icon {
  width: 100px;
  color: #148490;
}

.sveta-rotan-vertical-divider-left {
  border-left: 2px solid #D1D1D1;
  height: 100%;
}

.sveta-rotan-vertical-divider-right {
  border-right: 2px dotted #D1D1D1;
  height: 100%;
}

.landing-header-text {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
  margin-top: 4%;
}

.landing-header-under-btn-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin-top: 1%;
}

.landing-about-me {
  margin-top: 8%;
}

.landing-about-me-image {
  width: 60%;
  border-radius: 5px;
}

.landing-about-me-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 0;
}

.landing-about-me-horizontal-line {
  border-bottom: 4px solid #148490;
  width: 100%;
}

.landing-about-me-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.8rem;
  margin: 0;
}

.landing-about-me-title-bold {
  font-family: Montserrat-Bold, serif;
  font-size: 2.4rem;
  margin: 0;
}

.landing-about-me-cards-section-container {
  margin-top: 1%;
}

.landing-about-me-card-main-text {
  color: #148490;
  font-weight: 900;
  font-size: 5rem;
  margin-top: 1%;
  margin-bottom: 0;
  font-family: Montserrat-Bold, serif;
}

.landing-about-me-card-sub-text {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.3rem;
}

.landing-about-company {
  margin-top: 8%;
}

.landing-about-company-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
  width: fit-content;
  border-bottom: 3px solid #148490;
  margin: auto auto 2%;
}

.landing-about-company-card {
  padding: 3%;
  border-radius: 50px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.074);
  box-shadow: 10px 10px 10px #bebebe,
  -10px -10px 10px #ffffff;
}

.sveta-rotan-card-white-shadow {
    padding: 3%;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.074);
    box-shadow: 10px 10px 10px #bebebe, -10px -10px 10px #ffffff;
}

.landing-about-company-card-icon {
  width: 130px;
}

.landing-about-company-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 1% 0 0;
}

.landing-about-company-card-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.landing-about-company-circle1 {
  width: 100px;
  height: 100px;
  background: #148490;
  border-radius: 50%;
}

.landing-about-company-circle2 {
  width: 150px;
  height: 150px;
  background: #148490;
  border-radius: 50%;
  margin: auto;
}

.landing-about-company-circle3 {
  width: 75px;
  height: 75px;
  background: #148490;
  border-radius: 50%;
  margin: 5%;
}

.landing-our-goals {
  margin-top: 8%;
}

.landing-our-goals-title {
  font-size: 1.4rem;
  font-family: Montserrat-Bold, serif;
  margin: 3% 0 0;
  width: fit-content;
}

.landing-our-goals-image {
  width: 100%;
  border-radius: 5px;
}

.landing-our-goals-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0;
}

.landing-our-goal-text-bold {
  font-family: Montserrat-SemiBold, serif;
  position: relative;
}

.landing-our-goals-icon {
  width: 50px;
}

.landing-our-services {
  margin-top: 8%;
}

.landing-our-service-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.6rem;
  margin: auto;
  width: fit-content;
  border-bottom: 3px solid #148490;
}

.sveta-rotan-card-green-shadow {
  border-radius: 5px;
  background-color: #348694;
  padding: 5%;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 20px;
}

.sveta-rotan-card-green-shadow-small-height-clickable {
  border-radius: 5px;
  width: 100%;
  background-color: #348694;
  padding: 3%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sveta-rotan-card-green-shadow-small-height-clickable:hover {
  transform: scale(1.1);
}

.sveta-rotan-card-gray {
  background: linear-gradient(to left, #f3f6f4, #eeeeee);
  border-radius: 50px;
  padding: 1%;
}

.sveta-rotan-clickable-div-link {
  text-decoration: none;
}

.sveta-rotan-hoverable-btn {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #ffffff;
  background-color: transparent;
}

.sveta-rotan-hoverable-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #348694;
  box-shadow: 4px 5px 17px -4px #348694;
}

.sveta-rotan-hoverable-btn::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #348694;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.sveta-rotan-hoverable-btn:hover::before {
  width: 250%;
}

.sveta-rotan-hoverable-btn-green {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #348694;
  transition: all 1000ms;
  font-size: 0.9rem;
  font-family: Verdana, serif;
  position: relative;
  overflow: hidden;
  outline: 2px solid #348694;
  background-color: transparent;
}

.sveta-rotan-hoverable-btn-green:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #348694;
  box-shadow: 4px 5px 17px -4px #348694;
}

.sveta-rotan-hoverable-btn-green::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #348694;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.sveta-rotan-hoverable-btn-green:hover::before {
  width: 250%;
}


.sveta-rotan-collapse-with-links-btn {
  font-family: Verdana, serif;
  color: #ffffff;
  font-size: 1.2rem;
  background-color: transparent;
  border-radius: 20px;
  border-color: #ffffff;
  text-decoration: none;
  outline: none;
  padding: 1em 2em;
}

.sveta-rotan-collapse-with-links {
  border-radius: 5px;
  border: 2px solid #ffffff;
  width: 50%;
  margin: auto;
}



.landing-our-services-card {
  border-radius: 5px;
  background-color: #148490;
  padding: 5%;
  height: 100%;
}

.landing-our-services-card-icon-container {
  background-color: #2c909b;
  border-radius: 50%;
  padding: 6%;
  width: fit-content;
}

.landing-our-services-card-icon {
  width: 80px;
}

.landing-our-services-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 0;
  color: #e8f3f4;
}

.landing-our-services-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
  color: #e8f3f4;
}

.landing-our-services-footer {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2%;
}


.landing-page-title-container {
  width: 100%;
  /*background-image: url("images/NameBackground.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 15vh;
  padding: 30px;
  border-radius: 30px;
  font-family: Montserrat-Bold, serif;
}

.landing-page-title {
  font-size: 2rem !important;
  margin: 0 !important;
  letter-spacing: 0.5rem;
  font-weight: 700 !important;
  font-family: Montserrat-Bold, serif;
}

.landing-page-sub-title {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-family: Montserrat-SemiBold, serif;;
}

.landing-page-discription-title {
  margin-top: 10px !important;
  font-weight: 400 !important;
}

.lading-page-section-subtitle {
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  font-size: 1rem !important;
  letter-spacing: 0.3rem;
  text-align: center;
  font-family: Montserrat-SemiBold, serif;
}

.lading-page-section-title {
  width: fit-content;
  font-weight: 600 !important;
  font-size: 2rem !important;
  letter-spacing: 0.2rem;
  margin: auto;
  border-bottom: 3px solid #148490;
  font-family: Montserrat-Bold, serif;
}

.landing-page-school-container {
  margin-top: 1%;
  text-align: center;
}

.lading-page-school-subtitle {
  font-weight: 400 !important;
  margin-top: 5vh !important;
  margin-bottom: 0 !important;
  color: #148490 !important;
  font-family: Montserrat-SemiBold, serif;
}

.lading-page-school-title {
  font-size: 2.6rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
  font-family: Montserrat-Bold, serif;
}

.landing-page-school-title-underline {
  border-bottom: 3px solid #148490;
  width: 70%;
  margin: auto auto 20px;
}

.landing-page-school-card {
  padding: 1vw;
  background-color: #148490;
  border-radius: 5px;
  height: 100%;
}

.landing-page-school-card-text {
  letter-spacing: 0.2rem;
  font-size: 1.1rem;
  color: rgb(245, 245, 245);
  margin: 0;
  font-family: Montserrat-SemiBold, serif;
}

.landing-page-school-discription {
  letter-spacing: 0.1rem;
  font-size: 1rem;
  font-family: Lora-Regular, serif;
}

.landing-page-school-card-icon {
  font-size: 3rem;
  color: white;
  width: 32px;
  height: 32px;
}

.landing-page-title-image {
  width: 60% !important;
  border-radius: 30px;
  height: 100%;
}

.landing-page-card-image-container {
  text-align: end;
}

.landign-page-card-image {
  width: 20vw !important;
  height: 100%;
  border-radius: 30px;
}

.landing-page-card-container {
  text-align: center;
  width: 60%;
  margin: auto;
}

.landing-page-card-title {
  font-weight: 300 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.1rem;
  font-family: Montserrat-Bold, serif;
}

.landing-page-card-icon {
  width: 30px;
  height: 30px;
  color: #148490;
}

.landing-page-card-text {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  margin-top: 1%;
  margin-bottom: 4%;
  font-family: Lora-Regular, serif;
}

.landing-page-card-button {
  font-weight: 500;
  margin-top: 10px;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.4rem;
}

.landing-page-card-details-button-container {
  margin: 20px;
}

.landing-page-about-me-container {
  margin-top: 5%;
}

.landing-page-about-me-image {
  height: 100%;
  width: 100%;
  border-radius: 3px;
}

.landing-page-about-me-subtitle {
  color: #148490;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin: 0;
  font-family: Montserrat-SemiBold, serif;
}

.landing-page-about-me-title {
  font-weight: 600;
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-family: Montserrat-Bold, serif;
}

.landing-page-about-me-text {
  margin: 0;
  font-weight: 350;
  font-size: 1rem;
  font-family: Lora-Regular, serif;
}

.landing-page-about-me-divider {
  width: 100%;
  border-top: 3px solid #148490;
  margin-top: 4%;
  margin-bottom: 4%;
}

.landing-page-about-me-footer {
  margin: 0 !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em;
  font-size: 1rem !important;
  text-align: center;
}

.landing-page-footer-help-link {
  color: #148490;
  width: 20px;
  height: 100%;
  margin-bottom: 4px;
}


/* Landing page review section */

.landing-page-reviews-container {
  margin-top: 5%;
  padding: 0 40px;
}

.landing-page-reviews-quote {
  color: #148490;
  font-size: 3rem;
  width: 80px;
  height: 100%;
}

.landing-page-reviews-carousel {
  width: 100%;
  height: 20%;
}

.landing-page-reviews-text {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 0.1rem;
  padding: 2%;
}

.landing-page-reviews-carousel-btn {
  height: 10px;
  border-top: none !important;
  border-bottom: none !important;
  background: #148490 !important;
}

/* Footer */

.landing-page-footer {
  border-top: 3px solid #148490;
  margin-top: 3%;
  padding-top: 1%;
}

.landing-page-footer-section-title {
  font-weight: 300 !important;
  letter-spacing: 0.1rem !important;
  font-size: 1.2rem !important;
  margin: 0 !important;
}

.landing-page-footer-socials-divider {
  border-bottom: 3px solid #148490;
  width: 45%;
  margin-bottom: 3%;
  margin-top: 2%;
}

.landing-page-footer-socials-button-link {
  width: 30px;
  height: 100%;
  color: #148490 !important;
}

.landing-page-footer-help-text {
  cursor: pointer;
  font-size: 1rem;
  color: #148490;
  font-weight: 400;
  border-color: transparent;
  background: transparent;
  padding: 0;
  font-family: Roboto, serif;
}

.landing-page-footer-contacts-text {
  cursor: pointer ;
  font-size: 1rem ;
  color: #148490;
  font-weight: 400;
}

.landing-page-footer-contacts-text-small {
  font-size: 1rem;
  color: #148490;
  font-weight: 400;
  margin: 0;
}

.landing-page-footer-copyright {
  font-size: 1rem;
  color: #148490;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin: 2% 0 0;
}

/* Records */

.landing-page-records-image {
  height: 100%;
  width: 50%;
  border-radius: 3px;
}

.landing-page-records-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  margin: 1% auto auto;
  font-family: Montserrat-Bold, serif;
}

.landing-page-records-image-container {
  text-align: center;
  margin: 0;
}

.landing-page-records-text {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin: 1%;
  font-family: Lora-Regular, serif;
}

.landing-page-records-subtitle {
  text-align: center;
  font-size: 1.4rem;
  margin: auto;
  font-family: Montserrat-SemiBold, serif;
}

.landing-page-records-list {
  width: 90%;
  margin: 1% auto auto;
}

.landing-page-records-list-loadmore {
  font-size: 1.2rem;
  font-weight: 600;
}

.landing-page-records-list-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.1rem;
  font-family: Montserrat-Bold, serif;
}

.landing-page-records-list-icon {
  font-size: 1.8rem;
  color: #148490;
  width: 40px;
  height: 100%;
}

.landing-page-records-list-discription {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  font-family: Lora-Regular, serif;
}

/* Landing page school details button */

.cta {
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
  color: #2b2f32;
  font-family: Roboto, serif;
}

.cta span {
  letter-spacing: 4px;
  font-size: 1.2rem;
  padding-right: 15px;
  text-transform: uppercase;
  font-family: Roboto, serif;
}

.cta svg {
  margin-bottom: 3px;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: black;
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #148490;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Mentorship page */

.mentorship-card-image {
  border-radius: 30px;
  width: 100%;
  height: 100%;
}

.mentorship-card-title {
  text-align: start;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 0 1%;
  font-family: Montserrat-Bold, serif;
}

.mentorship-card-text {
  font-size: 1rem;
  margin: 1%;
  font-family: Lora-Regular, serif;
}

.mentorship-card-subtitle {
  font-size: 1.2rem;
  margin: 0;
  font-family: Montserrat-SemiBold, serif;
}

.mentorship-card-subtext {
  font-size: 1rem;
  margin: 0;
  font-family: Lora-Regular, serif;
}

.mentorship-card-container {
  margin-left: 1%;
  margin-top: 2%;
  border-left: 3px solid #148490;
  padding: 1%;
}

.mentorship-card-title-icon {
  font-size: 4rem;
  color: #148490;
}

.mentorship-program-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 2% 0 0;
  border-bottom: 3px solid #148490;
  width: fit-content;
  font-family: Montserrat-Bold, serif;
}

.mentorship-program-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  font-family: Montserrat-SemiBold, serif;
}

.mentorship-program-month-number {
  font-size: 3rem;
  color: #148490;
  font-weight: 800;
  margin: 0;
  min-width: 60px;
}

.mentorship-program-month-title {
  font-size: 1rem;
  font-weight: 450;
  margin: 0;
  padding-top: 1%;
  font-family: Montserrat-Bold, serif;
}

.mentorship-program-month-description {
  font-size: 1rem;
  color: #2c3442;
  margin: 0;
  font-family: Lora-Regular, serif;
}

.mentorship-selling-card-container {
  width: 45%;
  padding: 1%;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);
  margin: 1%;
}

.selection-mentor-form {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 2);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}

.radio-input label:has(input:checked) ~ .selection-mentor-form {
  background-color: #148490;
  display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked) ~ .selection-mentor-form {
  transform: translateX(calc(var(--container_width) * 0 / 3));
}

.radio-input label:nth-child(2):has(input:checked) ~ .selection-mentor-form {
  transform: translateX(calc(var(--container_width) * 1));
}

.radio-input label:nth-child(3):has(input:checked) ~ .selection-mentor-form {
  transform: translateX(calc(var(--container_width) * 2));
}

.mentorship-selling-card-btn-container {
  text-align: center;
  margin-top: 1%;
}

.mentorship-selling-card-icon-container {
  margin: auto;
  border-radius: 90px;
  width: fit-content;
  padding: 2%;
  background-color: #148490;
}

.mentorship-selling-card-icon {
  color: #e8f3f4;
  font-size: 4rem;
  width: 30px;
  height: 100%;
}

.mentorship-selling-card-title {
  text-align: center;
  margin: 1% 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: Montserrat-Bold, serif;
}

.mentorship-selling-card-text {
  text-align: center;
  font-size: 1rem;
  margin: 1% 0;
  font-family: Lora-Regular, serif;
}

.mentorship-selling-card-btn {
  margin-top: 1%;
  border-radius: 3px;
  font-size: 1.2rem;
  box-shadow: none;
  height: fit-content;
  width: fit-content;
  text-decoration: none;
  color: #148490;
  font-family: Roboto, serif;
}

.mentorship-selling-card-btn:hover {
  color: #2b2f32 !important;
  background: transparent !important;
}

.mentorship-selling-card-btn:focus {
  color: #2b2f32 !important;
  background: transparent !important;
}

.mentorship-selling-card-btn:active {
  color: #2b2f32 !important;
  background: transparent !important;
}


/* Words meaning */

.words-meaning-page-faq-title {
  width: fit-content;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  font-family: Montserrat-Bold, serif;
}

.words-meaning-page-subtitle {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border-bottom: 3px solid #148490;
  margin: auto;
  font-family: Montserrat-SemiBold, serif;
}

.words-meaning-page-description {
  border-left: 3px solid #148490;
  padding-left: 1%;
  margin: 0 0 0 3%;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 450;
  line-height: 1.4rem;
}

.words-meaning-page-block-header {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #148490;
}

.words-meaning-page-block-words-number {
  margin: 0;
  font-size: 6rem;
  color: #148490;
  font-weight: 900;
  letter-spacing: 0.5rem;
  text-align: center;
}

.words-meaning-page-block-header-subtitle {
  margin: 0;
  font-size: 1.6rem;
  color: #148490;
  font-weight: 700;
  text-align: center;
  font-family: Montserrat-SemiBold, serif;
}

.words-meaning-page-block {
  box-shadow: 0 5px 10px rgb(8, 53, 58, 0.4);
  border-radius: 5px;
  padding: 1%;
  margin-top: 2%;
}

.words-meaning-page-month-chosing {
  border-radius: 3px;
  padding: 5% 10%;
}

.words-meaning-page-month-chosing-radio-title {
  font-size: 1.2rem;
  font-weight: 450;
  letter-spacing: 0.1rem;
  padding-left: 3%;
  margin: 0 0 5%;
}

.words-meaning-page-month-words {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  line-height: 2rem;
}

.words-meaning-page-btn {
  border-radius: 3px;
  font-size: 1.3rem;
  box-shadow: none;
  height: fit-content;
  letter-spacing: 0.1rem;
  font-weight: 500;
  width: fit-content;
  background: #148490;
  border-color: transparent;
  font-family: Roboto, serif;
}

.words-meaning-page-btn-container {
  text-align: center;
  margin-top: 2%;
}

/* School first thread */

.school-first-thread-subtitle {
  width: fit-content;
  margin: auto;
  color: #148490;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: Montserrat-SemiBold, serif;
}

.school-first-thread-title {
  width: fit-content;
  margin: 0.3% auto auto;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  border-bottom: 3px solid #148490;
  font-family: Montserrat-Bold, serif;
}

.school-first-thread-container {
  border-radius: 3px;
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);
  margin-top: 3%;
  padding: 1% 1%;
}

.school-first-thread-card {
  background-color: #148490;
  /*width: fit-content;*/
  border-radius: 3px;
  padding: 3%;
  text-align: center;
  margin: auto;
}

.school-first-thread-icon {
  color: #e8f3f4;
  width: 50px;
  height: 100%;
}

.school-first-thread-icon-description {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #e8f3f4;
}

.school-first-thread-program-title {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  margin: 1% 0 0;
  border-bottom: 3px solid #148490;
  width: fit-content;
  font-family: Montserrat-Bold, serif;
}

.school-first-thread-program-week-number {
  font-size: 5rem;
  color: #148490;
  margin: 0;
  height: fit-content;
  font-family: Montserrat-Bold, serif;
}

.school-first-thread-program-week-text {
  font-size: 1.2rem;
  color: #148490;
  font-weight: 800;
  margin: 0;
  font-family: Montserrat-SemiBold, serif;
}

.school-first-thread-program-text-title {
  font-family: Montserrat-Bold, serif;
}

.school-first-thread-program-text {
  font-size: 1rem;
  margin: 0;
  font-family: Lora-Regular, serif;
}

.school-first-thread-program-column {
  padding: 1%;
}

.school-first-thread-program-footer {
  margin-top: 1%;
  text-align: center;
  font-family: Lora-Regular, serif;
}

.school-first-thread-icon-zoom-text {
  color: #e8f3f4;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.school-first-thread-row {
  background: #148490;
  border-radius: 3px;
  padding: 1%;
}

.school-first-thread-program-subtitle {
  color: #148490;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  font-family: Montserrat-SemiBold, serif;
}

.school-first-thread-program-pricing-title {
  margin: 3% 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  font-family: Montserrat-Bold, serif;
}

.school-first-thread-program-title-btn-container {
  text-align: center;
  margin-top: 2%;
}

.school-first-thread-program-pricing {
  margin: 1% 0 0;
  font-family: Lora-Regular, serif;
}

.school-first-thread-btn {
  margin-top: 1%;
  border-radius: 3px;
  font-size: 1.2rem;
  box-shadow: none;
  height: fit-content;
  letter-spacing: 0.1rem;
  font-weight: 500;
  width: 100%;
  padding: 1%;
  background: #148490;
  border-color: transparent;
  font-family: Roboto, serif;
}

/* Experimental group */

.exp-group-header-image {
  width: 80%;
  border-radius: 20%;
}

.exp-group-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
}

.exp-group-header-title-underline {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: #148490;
  text-decoration-thickness: 4px;
}

.exp-group-header-line {
  border-bottom: 3px solid #148490;
  width: 100%;
}

.exp-group-header-text {
  font-family: Lora-Regular, serif;
  font-size: 1.2rem;
}

.exp-group-header-line-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
}

.exp-group-line-icon {
  width: 60px;
}

.exp-group-header-footer-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin-top: 1%;
}

.exp-group-faq {
  margin-top: 8%;
}

.exp-group-faq-image {
  width: 100%;
  border-radius: 5px;
}

.exp-group-faq-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  text-align: center;
}

.exp-group-faq-card {
  padding: 2% 5%;
  background-color: #148490;
  border-radius: 5px;
  margin-bottom: 2%;
}

.exp-group-faq-card-title {
  font-family: Montserrat-SemiBold, serif;
  color: #e8f3f4;
  font-size: 1rem;
  margin: 0;
}

.exp-group-faq-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  color: #e8f3f4;
  margin: 2% 0 0;
}

.exp-group-faq-card-icon {
  width: 50px;
  height: fit-content;
}

.exp-group-for {
  margin-top: 5%;
}

.exp-group-for-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  margin: auto;
  width: fit-content;
  border-bottom: 3px solid #148490;
}

.exp-group-for-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
}

.exp-group-for-icon {
  color: #148490;
  width: 30px;
}

.exp-group-schedule {
  margin-top: 5%;
  padding: 1%;
  background-color: #eaf4f5;
  border-radius: 5px;
}

.exp-group-schedule-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
}

.exp-group-schedule-bold {
  color: #148490;
}

.exp-group-schedule-subtitle {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.exp-group-schedule-content {
}

.exp-group-schedule-content-week {
  font-family: Montserrat-SemiBold, serif;
  margin: 0;
  border-bottom: 2px solid #148490;
  width: fit-content;
}

.exp-group-schedule-content-icon {
  width: 8vw;
  color: #148490;
  height: fit-content;
}

.exp-group-schedule-content-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin: 1% 0 0;
}

.exp-group-footer-text {
  font-family: Lora-Regular, serif;
}

/* Group mentorship */

.group-mentorship-header-image {
  width: 70%;
  border-radius: 10%;
}

.group-mentorship-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  margin: 0;
}

.group-mentorship-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 2% 0 0;
}

.group-mentorship-header-icon {
  width: 30px;
  color: #148490;
}

.group-mentorship-what-you-get {
  margin-top: 5%;
}

.group-mentorship-what-you-get-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.8rem;
  width: fit-content;
  margin: auto auto 1%;
}

.group-mentorship-what-you-get-card {
  padding: 5%;
  background-color: #148490;
  border-radius: 20px;
  height: 100%;
}

.group-mentorship-what-you-get-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.3rem;
  margin: 0;
  color: #e8f3f4;
}

.group-mentorship-what-you-get-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  color: #e8f3f4;
  margin: 2% 0 0;
}

.group-mentorship-what-you-get-card-icon {
  width: 80px;
  height: fit-content;
}

.group-mentorship-tariffs {
  margin-top: 5%;
}

.group-mentorship-tariffs-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.6rem;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #148490;
  text-decoration-skip-ink: none;
}

.group-mentorship-tariffs-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 4%;
  box-shadow: 0 10px 15px -3px black, 0 4px 6px -4px black;
  border-radius: 10px;
  background: #148490 linear-gradient(45deg, #04051dea 0%, #148490 100%);
}

.group-mentorship-tariffs-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  color: #e8f3f4;
  margin: 0 0 2%;
}

.group-mentorship-tariffs-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  color: #e8f3f4;
  margin: 0 0 2%;
}

.group-mentorship-tariffs-card-bold {
  font-size: 1rem;
}

.group-mentorship-tariffs-btn-container {
  margin-top: auto;
  text-align: center;
}

.group-mentorship-tariffs-btn {
  font-family: Roboto, serif;
  font-size: 1rem;
  padding: 5%;
  width: 100%;
  background-color: transparent;
  border: 2px solid #148490;
  color: #e8f3f4;
  border-radius: 5px;
}

.group-mentorship-tariffs-btn:hover {
  box-shadow: 7px 5px 56px -14px #2c909b;
}

.group-mentorship-tariffs-btn:active {
  transform: scale(0.97);
  box-shadow: 7px 5px 56px -10px #2c909b;
}

.group-mentorship-program {
  margin-top: 5%;
}

.group-mentorship-program-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.2rem;
}

.group-mentorship-program-month {
  font-family: Montserrat-SemiBold, serif;
  background-color: #2c909b;
  border-radius: 5px;
  padding-top: 1%;
  padding-bottom: 1%;
  margin-top: 1%;
}

.group-mentorship-program-month-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  color: #e8f3f4;
  margin: 0;
  text-align: center;
}

.group-mentorship-program-number {
  font-family: Montserrat-SemiBold, serif;
  color: #2c909b;
  font-size: 3rem;
  height: fit-content;
}

.group-mentorship-program-week {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
  margin: 0;
}

.group-mentorship-program-week-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 0;
}

.group-mentorship-how-it-works {
  margin-top: 5%;
}

.group-mentorship-how-it-works-image {
  width: 80%;
  border-radius: 5px;
}

.group-mentorship-how-it-works-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  margin: 3% 0 0;
}

.group-mentorship-how-it-works-title-icon {
  width: 40px;
  color: #148490;
}

.group-mentorship-how-it-works-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0;
}

.group-mentorship-footer {
  margin-top: 2%;
}

.group-mentorship-footer-title {
  font-family: Lora-Regular, serif;
  font-size: 1.1rem;
  margin-top: 2%;
  text-align: center;
}

/* Schedule page */

.schedule-page-card {
  border-radius: 3px;
}

.schedule-page-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  font-family: Montserrat-Bold, serif;
}

.schedule-page-section-title {
  color: #2c909b;
  font-family: AqumTwoo, serif;
  margin: 0;
}

.schedule-page-section-content {
  padding-left: 2%;
  font-size: 1.2rem;
  margin: 0;
  font-family: Calibri, serif;
}

.schedule-page-section-vertical-line {
  border-bottom: 2px solid #2c909b;
  width: 100%;
  margin: 1% auto;
}

/* Application form */

.application-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2%;
  border-radius: 5px;
  position: relative;
  background-color: #08353a;
  color: #fff;
  border: 1px solid #020d0e;
}

.title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: #148490;
  font-family: Montserrat-Bold, serif;
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0;
  background-color: #148490;
}

.message {
  font-size: 1rem;
}

.signin {
  font-size: .9rem;
}

.message,
.signin {
  color: rgba(255, 255, 255, 0.7);
}

.signin {
  text-align: center;
}

.signin a:hover {
  text-decoration: underline #2c909b;
}

.signin a {
  color: #148490;
}

.flex {
  display: flex;
  width: 100%;
  gap: 6px;
}

.application-form label {
  position: relative;
}

.application-form label .application-input {
  background-color: #333;
  color: #fff;
  width: 100%;
  padding: 20px 05px 05px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.application-form label .application-input + span {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.application-form label .application-input:placeholder-shown + span {
  top: 13px;
  font-size: 0.9em;
}

.application-form label .application-input:focus + span,
.application-form label .application-input:valid + span {
  color: #2c909b;
  top: 0;
  font-size: 0.7em;
  font-weight: 600;
}

.application-input {
  font-size: medium;
  margin-bottom: 2%;
}

.submit {
  border: none;
  outline: none;
  padding: 1.5%;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  background-color: #148490
}

.submit:hover {
  background-color: #2c909b;
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

.success-application-text {
  text-align: center;
}

.success-application-row {
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);
  padding: 1%;
}

.success-application-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

/* Radio btn */

.radio-input input {
  display: none;
}

.radio-input {
  --container_width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 3px;
  background-color: #fff;
  color: #000000;
  width: var(--container_width);
  overflow: hidden;
  border-color: transparent;
}

.radio-input label {
  width: 100%;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 450;
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 3);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}

.radio-input label:has(input:checked) {
  color: #e8f3f4;
}

.radio-input label:has(input:checked) ~ .selection {
  background-color: #148490;
  display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 0 / 3));
}

.radio-input label:nth-child(2):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 1));
}

.radio-input label:nth-child(3):has(input:checked) ~ .selection {
  transform: translateX(calc(var(--container_width) * 2));
}

/* Webinars page */

.webinars-card-space {
  padding: 4% 5%;
  background-color: #148490;
  height: fit-content;
  width: 95%;
  border-radius: 5px;
  box-shadow: 0px 8px 24px rgb(8, 53, 58, 0.4);
}

.webinars-card-title {
  font-size: 0.8rem;
  color: #e8f3f4;
  font-weight: 700;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1rem;
  text-align: center;
  font-family: Montserrat-Bold, serif;
}

.webinar-cards-header-text {
  font-size: 1.4rem;
  color: #e8f3f4;
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: Montserrat-Bold, serif;
}

.webinars-page-card-icon {
  color: #e8f3f4;
  font-size: 4rem;
  padding: 0;
  margin: 0;
}

.webinars-page-card-content {
  text-align: start;
  margin: 2% 0 0;
  padding: 0;
  font-size: 0.9rem;
  color: #e8f3f4;
  letter-spacing: 0.05rem;
  line-height: 1.2rem;
  height: 40vh;
  overflow-y: scroll;
  scrollbar-color: #e8f3f4 transparent;
  scrollbar-width: thin;
  font-family: Lora-Regular, serif;
}

.webinar-page-card-btn {
  font-size: 1.2rem;
  box-shadow: none;
  height: fit-content;
  background-color: #2c909b;
  color: #e8f3f4;
  letter-spacing: 0.1rem;
  font-weight: 500;
  width: 100%;
  border-color: transparent;
  border-radius: 3px;
  font-family: Roboto, serif;
}

/* Name trip page */

.nametrip-main-container { }

.nametrip-main-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
}

.nametrip-main-title-underline {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #148490;
  text-decoration-thickness: 4px;
}

.nametrip-main-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.nametrip-main-image {
  border-radius: 5px;
  width: 70%;
}

.nametrip-main-btn-container {
  margin-top: 5%;
}

.nametrip-main-btn-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1rem;
  text-align: center;
}

/* Animated btn */

.animated-button {
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid transparent;
  font-size: 1.2rem;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #148490;
  box-shadow: 0 0 0 2px #2c909b;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #148490;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #148490;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #e8f3f4;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #e8f3f4;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #2c909b;
}

.animated-button:hover .circle {
  width: 100%;
  height: 220px;
  opacity: 1;
}

.nametrip-content-container {
  margin-top: 3%;
}

.nametrip-faq-container {
  margin-top: 8%;
}

.nametrip-faq-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.1rem;
  color: #148490;
  margin: 0;
  text-align: center;
}

.nametrip-faq-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  margin: 0;
  text-align: center;
}

.nametrip-faq-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  text-align: center;
}

.nametrip-faq-cards-container {
  margin-top: 2%;
}

.nametrip-faq-card {
  background-color: #148490;
  border-radius: 5px;
  padding: 5%;
}

.nametrip-faq-card-icon-container {
  background-color: transparent;
  border-radius: 5px;
  padding: 5%;
  width: fit-content;
  margin: auto;
}

.nametrip-faq-card-icon {
  width: 120px;
  color: #e8f3f4;
}

.nametrip-faq-card-title {
  text-align: center;
  font-family: Montserrat-Bold, serif;
  font-size: 1.2rem;
  color: #e8f3f4;
  margin: 1% 0 0;
}

.nametrip-faq-card-text {
  text-align: center;
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  color: #e8f3f4;
  margin-top: 1%;
}

.nametrip-about-container {
}

.nametrip-about-image {
  width: 80%;
}

.nametrip-about-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  border-bottom: 2px solid #148490;
  width: fit-content;
}

.nametrip-about-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  padding-left: 1%;
}

.nametrip-about-text-icon {
  width: 100%;
  color: #148490;
}

.nametrip-format-container {
  margin-top: 5%;
}

.nametrip-format-card {
  border-radius: 5px;
  border: 2px dotted #148490;
  padding: 2%;
  margin-top: 2%;
}

.nametrip-format-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  border-bottom: 2px dotted #148490;
  width: fit-content;
}

.nametrip-format-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
}

.nametrip-tariffs-container {
  margin-top: 5%;
}

.nametrip-tariff-title {
  font-size: 1.4rem;
  font-family: Montserrat-Bold, serif;
  border-bottom: 2px solid #148490;
  color: #e8f3f4;
}

.nametrip-tariff-text {
  font-family: Lora-Regular, serif;
  font-size: 1.2rem;
  color: #e8f3f4;
  margin: 0;
}

.nametrip-tariff-icon-container {
  padding: 5%;
}

.nametrip-tariff-live-icon {
  width: 80px;
  color: #148490;
}

.nametrip-tariff-records-icon {
  width: 80px;
  color: #2c909b;
}

.nametrip-tariff-lives-container {
  background-color: #148490;
  border-radius: 5px;
  padding: 2%;
}

.nametrip-tariff-records-container {
  background-color: #2c909b;
  border-radius: 5px;
  padding: 2%;
}

.nametrip-tariff-live-item {
  font-size: 1rem;
  font-family: Montserrat-SemiBold, serif;
  color: #e8f3f4;
  margin: 0;
}

.nametrip-tariff-select {
  border: transparent;
  background-color: transparent;
  font-size: 1.2rem;
  font-family: Lora-Regular, serif;
  color: #e8f3f4;
  border-radius: 5px;
  width: 90%;
  margin: auto;
}

.nametrip-tariff-select-item {
  background-color: #2c909b;
  color: #e8f3f4;
}

.nametrip-tariff-select-item:hover{
  background-color: #148490;
  
}

.nametrip-name-contact-container {
  margin-top: 5%;
}

.nametrip-name-contact-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
}

.nametrip-name-contact-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

/* Name trip buy btn */

.button2 {
  display: inline-block;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 1.7em;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.5em;
  font-family: Roboto, serif;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  width: fit-content;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button2:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}



/* Name trip new name form */

.form-container {
  margin: 2% auto auto;
  width: 90%;
  background: linear-gradient(#148490, #148490) padding-box,
  linear-gradient(145deg, transparent 35%,#2c909b, #2c909b) border-box;
  padding: 32px 24px;
  font-size: 14px;
  font-family: inherit;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  border-radius: 16px;
  box-shadow: 15px 15px 30px #bebebe,
  -15px -15px 30px #ffffff;
}

.form-container button:active {
  scale: 0.95;
}

.form-container .form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #e8f3f4;
  font-size: 1rem;
  font-family: Roboto, serif;
}

.form-container .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  color: #e8f3f4;
  font-family: inherit;
  background-color: transparent;
  border: 1px solid #e8f3f4;
}

.form-container .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 5px;
  resize: none;
  color: #e8f3f4;
  height: 96px;
  border: 1px solid #e8f3f4;
  background-color: transparent;
  font-family: inherit;
}

.form-container .form-group input::placeholder {
  opacity: 0.5;
}

.form-container .form-group input:focus {
  outline: none;
  border-color: #0e5c65;
}

.form-container .form-group textarea:focus {
  outline: none;
  border-color: #0e5c65;
}

.form-container .form-submit-btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: flex-start;
  font-family: inherit;
  color: #e8f3f4;
  width: 60%;
  background: #0e5c65;
  padding: 12px 16px;
  font-size: 1.2rem;
  gap: 8px;
  margin: 8px auto auto;
  cursor: pointer;
  border-radius: 5px;
}

.form-container .form-submit-btn:hover {
  background-color: #e8f3f4;
  border-color: #e8f3f4;
  color: #2b2f32;
}

.nametrip-reviews-container {
  margin-top: 5%;
  border-radius: 5px;
  background-color: #148490;
  padding: 3%;
}

.nametrip-reviews-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  text-align: center;
  color: #e8f3f4;
}

.nametrip-footer-container {
  margin-top: 5%;
  text-align: center;
}

.nametrip-footer-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
}

.nametrip-footer-text {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
}



.nametrip-individual-subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  margin-top: 1%;
  font-weight: 400;
  text-align: center;
  font-family: Montserrat-SemiBold, serif;
}

.nametrip-individual-content {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}
.nametrip-individual-icon-container {
  width: 50%;
  margin: auto;
  background-color: #148490;
  border-radius: 40px;
  padding: 2%;
}

.nametrip-individual-icon {
  font-size: 5rem;
  color: #e8f3f4;
  margin: 0;
}

.nametrip-individual-icon-text {
  font-size: 2rem;
  color: #e8f3f4;
  margin: 0;
  font-weight: 500;
}

.nametrip-individual-btn {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 1%;
  height: fit-content;
  box-shadow: none;
  margin-top: auto;
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  font-family: Roboto, serif;
}

.nametrip-individual-btn:hover {
  background: #2c909b;
  border-color: transparent;
}

.nametrip-individual-btn:active {
  background: #2c909b !important;
  border-color: transparent !important;
}

.nametrip-individual-btn:focus {
  box-shadow: none !important;
}

.nametrip-list {
  /*padding: 1% 3%;*/
  margin-top: 1%;
  /*box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);*/
  border-radius: 5px;
}

.nametrip-row {
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);
  border-radius: 5px;
}

.nametrip-list-date-container {
  background-color: #148490;
  border-radius: 5px 5px 5px 0;
  height: 10vh;
  position: relative;
  display: flex;
}

.camrecorder-icon {
  color: #e8f3f4;
  height: fit-content;
  width: 30px;
}

.nametrip-list-text-container {
  text-align: center;
  padding: 0;
}

.nametrip-list-date {
  margin: 0;
  text-align: center;
  padding: 0;
  color: #e8f3f4;
  font-size: 1rem;
  font-family: Montserrat-Bold, serif;
}

.nametrip-list-time {
  text-align: center;
  padding: 0;
  margin: 0;
  color: #e8f3f4;
  font-size: 1rem;
  font-family: Montserrat-Bold, serif;
}

.nametrip-list-title {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  color: #e8f3f4;
  text-align: center;
  font-family: Montserrat-Bold, serif;
}

.nametrip-list-discription {
  margin: 2%;
  font-size: 0.9rem;
  font-family: Lora-Regular, serif;
}

.nametrip-list-btn {
  width: 100%;
  font-size: 1rem;
  height: fit-content;
  padding: 1%;
  color: #e8f3f4;
  background: #148490;
  border-color: transparent;
  border-radius: 0 0 5px 5px;
  font-family: Roboto, serif;
}

.shopping-cart-icon {
  color: #e8f3f4;
  height: 100%;
  width: 25px;
  margin-bottom: 6px;
}
/* Individual work */

.individual-work-header-image {
  width: 70%;
  border-radius: 20px;
}

.individual-work-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2.4rem;
  margin: 0;
}

.individual-work-header-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
  margin: 3% 0;
  text-align: center;
}

.individual-work-header-bold {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #2c909b;
  text-decoration-skip-ink: none;
}

.individual-work-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
}

.individual-work-faq {
  margin-top: 5%;
}

.individual-work-faq-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
  text-align: center;
}

.individual-work-faq-subtitle {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
  text-align: center;
}

.individual-work-faq-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
  text-align: center;
}

.individual-work-faq-icon {
  width: 5vw;
  color: #2c909b;
  height: fit-content;
}

.individual-work-products {
}

.individual-work-products-card {
  box-shadow: 0 5px 30px rgb(24, 24, 25, 0.1);
  border-radius: 5px;
  padding: 2%;
  margin-top: 5%;
}

.individual-work-products-card-header-card-text {
  font-family: Montserrat-SemiBold, serif;
  color: #148490;
  font-size: 1.1rem;
  margin: 0;
}

.individual-work-products-card-header-card-icon {
  width: 50px;
  height: fit-content;
}

.individual-work-products-card-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.6rem;
  width: fit-content;
  border-bottom: 2px solid #148490;
  margin: auto auto 2%;
}

.individual-work-products-card-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.1rem;
  margin: 0;
}

.individual-work-products-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 1%;
}

/* Transformation games */

.transformation-games-header-image {
  width: 80%;
  border-radius: 5px;
}

.transformation-games-header-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
}

.transformation-games-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
}

.transformation-games-header-card {
  padding: 2%;
  border: 2px dashed #148490;
  border-radius: 5px;
  height: 100%;
  margin-top: 4%;
}

.transformation-games-header-card-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.transformation-games-header-card-text {
  font-family: Lora-Regular, serif;
  margin: 1% 0 0;
  font-size: 0.9rem;
}

.transformation-games-coaches {
  margin-top: 5%;
}

.transformation-games-coaches-title {
  font-family: Montserrat-Bold, serif;
  margin: 0;
}

.transformation-games-coaches-card-image {
  width: 50%;
  border-radius: 5px;
}

.transformation-games-coaches-card-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.transformation-games-coaches-card-text {
  font-family: Lora-Regular, serif;
  margin: 1% 0 0;
}

.transformation-games-programs {
  margin-top: 5%;
}

.transformation-games-programs-title {
  font-family: Montserrat-Bold, serif;
  margin: 0;
}

.transformation-games-programs-card {
  padding: 2%;
  margin-top: 2%;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe,
  -20px -20px 60px #ffffff;
  border-radius: 5px;
}

.transformation-games-programs-card-title {
  font-family: Montserrat-SemiBold, serif;
  color: #148490;
  margin: 0;
}

.transformation-games-programs-card-icon {
  width: 8vw;
  height: fit-content;
}

.transformation-games-programs-text {
  font-family: Lora-Regular, serif;
  margin: 1% 0;
  font-size: 0.9rem;
}

.transformation-games-programs-subtitle {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.transformation-games-programs-footer {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  color: #148490;
  margin: 0;
}

.transformation-games-programs-footer-line-left {
  border-left: 2px solid #148490;
  height: 100%;
}

.transformation-games-programs-footer-line-right {
  border-right: 2px solid #148490;
  height: 100%;
}

/* Open dialog */

.open-dialog-header-image {
  width: 100%;
  height: fit-content;
  border-radius: 20px;
}

.open-dialog-header-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  margin: 1% 0 0;
  text-align: center;
}

.open-dialog-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  margin: 1% 0 0;
}

.open-dialog-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
}

.open-dialog-what-you-get {
  margin-top: 5%;
}

.open-dialog-what-you-get-title {
  font-family: Montserrat-Bold, serif;
  margin: 0;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #2c909b;
  text-decoration-skip-ink: none;
  width: fit-content;
}

.open-dialog-what-you-get-card {
  background-color: #2c909b;
  border-radius: 5px;
  padding: 5%;
  height: 100%;
}

.open-dialog-what-you-get-card-icon {
  width: 5vw;
}

.open-dialog-what-you-get-card-title {
  color: #e8f3f4;
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.open-dialog-what-you-get-card-text {
  color: #e8f3f4;
  font-family: Lora-Regular, serif;
  margin: 1% 0 0;
}

.open-dialog-themes {
  margin-top: 5%;
}

.open-dialog-themes-title {
  font-family: Montserrat-Bold, serif;
  margin: 0;
  text-align: center;
}

.open-dialog-themes-subtitle {
  font-family: Montserrat-SemiBold, serif;
  margin: 0;
  padding: 2%;
  color: #e8f3f4;
  background-color: #2c909b;
  border-radius: 5px;
  width: fit-content;
}

.open-dialog-themes-text {
  font-family: Lora-Regular, serif;
  margin: 0;
  font-size: 0.9rem;
}

.open-dialog-info {
  margin-top: 5%;
}

.open-dialog-info-image {
  width: 100%;
  border-radius: 5px;
}

.open-dialog-info-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 0;
  border-bottom: 2px solid #2c909b;
  width: fit-content;
}

.open-dialog-info-text {
  font-family: Lora-Regular, serif;
  margin: 2% 0 0;
  font-size: 0.9rem;
}

.open-dialog-info-icon {
  width: 2vw;
  color: #2c909b;
}

.open-dialog-info-footer {
  font-family: Lora-Regular, serif;
  margin: 3% 0 0;
  text-align: center;
}

.open-dialog-what-will-be {
  margin-top: 5%;
  border-radius: 5px;
  border: 2px dotted #2c909b;
  padding: 1%;
}

.open-dialog-what-will-be-icon {
  width: 5vw;
  color: #2c909b;
  height: fit-content;
}

.open-dialog-what-will-be-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 0;
  width: fit-content;
}

.open-dialog-what-will-be-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin-top: 1%;
}

.open-dialog-footer {
  margin-top: 5%;
}

.open-dialog-footer-text {
  font-family: Montserrat-SemiBold, serif;
  margin: 2% 0 0;
  text-align: center;
}

/* Couch session */

.couch-session-header-image {
  width: 75%;
  border-radius: 5px;
}

.couch-session-header-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% auto auto;
  border-bottom: 2px solid #148490;
  width: fit-content;
}

.couch-session-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
  text-align: center;
}

.couch-session-header-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
  text-align: center;
  margin: 2% 0 0;
}

.couch-session-why {
  margin-top: 5%;
}

.couch-session-why-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
}

.couch-session-why-card-icon {
  width: 5vw;
  height: fit-content;
}

.couch-session-why-card-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
}

.couch-session-why-card-text {
  font-family: Lora-Regular, serif;
  margin: 1% 0 0;
  font-size: 0.9rem;
}

.couch-session-usefulness {
  margin-top: 5%;
}

.couch-session-usefulness-title {
  font-family: Montserrat-Bold, serif, serif;
  margin: 3% 0 0;
}

.couch-session-usefulness-card {
  height: 100%;
  padding: 2%;
  background-color: #2c909b;
  border-radius: 5px;
}

.couch-session-usefulness-card-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 1% 0 0;
  color: #e8f3f4;
}

.couch-session-usefulness-card-text {
  font-family: Lora-Regular, serif;
  margin: 1% 0 0;
  font-size: 0.9rem;
  color: #e8f3f4;
}

.couch-session-footer {
  margin-top: 5%;
}

.couch-session-footer-title {
  font-family: Montserrat-SemiBold, serif;
  margin: 2% 0 0;
  text-align: center;
}

.couch-session-footer-subtitle {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin: 2% 0 0;
  text-align: center;
}

.couch-session-footer-footer {
  font-family: Montserrat-SemiBold, serif;
  margin: 2% 0 0;
  text-align: center;
}

/* Video */

.sveta-rotan-video {
  border-radius: 5px;
  height: fit-content;
  width: 70%;
}

.sveta-rotan-video-medium {
  height: 100%;
  border-radius: 5px;
  border: 5px solid #348694;
}

.sveta-rotan-video-medium::-webkit-media-controls-timeline,
.sveta-rotan-video-medium::-webkit-media-controls-current-time-display,
.sveta-rotan-video-medium::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.video-container {
  border-radius: 5px;
  width: 50%;
  height: fit-content;
}

.video-container::-webkit-media-controls-timeline,
.video-container::-webkit-media-controls-current-time-display,
.video-container::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.video-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
  text-align: center;
}

/* Intensive */

.sveta-rotan-header-date {
  font-family: Verdana, serif;
  text-align: center;
  font-size: 1rem;
}

.sveta-rotan-header-title {
  font-family: AqumTwoo, serif;
  text-align: center;
  color: rgb(20, 132, 144);
  margin-top: 20px;
  margin-bottom: 20px;
}

.sveta-rotan-header-subtitle {
  font-family: AqumTwoo, serif;
  text-align: center;
  color: rgb(53, 182, 180);
  margin-top: 20px;
  margin-bottom: 20px;
}

.sveta-rotan-header-btn {
  font-family: Verdana, serif;
  background-color: rgb(20, 132, 144);
  color: #ffffff;
  border-color: transparent;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  padding: 3% 5%;
  text-transform: uppercase;
  overflow: hidden;
  outline: 0;
}

.sveta-rotan-header-btn:hover {
  opacity: .95;
}

.sveta-rotan-header-btn .animation {
  border-radius: 100%;
  animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
  }
}

.sveta-rotan-header-image {
  border-radius: 50%;
  width: 100%;
}

.sveta-rotan-header-image-shadow {
  border-radius: 50%;
  box-shadow:
          0 0 20px rgba(24, 24, 25, 0.2), 
          0 0 40px rgba(24, 24, 25, 0.15),
          0 0 60px rgba(24, 24, 25, 0.1), 
          0 0 80px rgba(24, 24, 25, 0.05);
}

.sveta-rotan-header-vertical-line-break {
  border-bottom: 1px solid rgb(53, 182, 180);
  width: 50%;
  margin: 20px auto;
}

.sveta-rotan-header-container-linear {
  background: radial-gradient(circle at left, rgba(53, 182, 180, 1), rgba(53, 182, 180, 0) 70%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 20px;
}

.sveta-rotan-about {
  margin-top: 5%;
}

.sveta-rotan-about-image {
  width: 80%;
  border-radius: 50px;
  border: 1px solid rgb(20, 132, 144);
}

.sveta-rotan-title {
  font-family: AqumTwoo, serif;
  color: rgb(20, 132, 144);
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-about-text {
  font-family: Calibri, serif;
  font-size: 1.2rem;
  color: rgb(33, 37, 41);
}

.sveta-rotan-about-card {
  background: linear-gradient(45deg, rgb(53, 182, 180), white);
  padding: 2%;
  text-align: center;
  height: 100%;
  border-radius: 20px;
}

.sveta-rotan-text {
  font-family: Calibri, serif;
  color: #2b2f32;
  font-size: 1rem;
}

.sveta-rotan-about-card-icon {
  width: 10vw;
  height: fit-content;
}

.sveta-rotan-subtitle {
  font-family: AqumTwoo, serif;
  color: rgb(53, 182, 180);
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto; 
  -moz-hyphens: auto;    
  -ms-hyphens: auto;     
  hyphens: auto;
}

.sveta-rotan-accordion-title {
  font-family: AqumTwoo, serif;
  font-size: 1rem;
  background-color: #2c909b;
  color: #e8f3f4;
}

.accordion-button:focus {
  box-shadow: none;
}

.sveta-rotan-section {
  margin-top: 15%;
}

.sveta-graphics-icon1 {
  width: 8vh;
}

.sveta-graphics-icon2 {
  width: 10vh;
}

.sveta-graphics-icon3 {
  width: 12vh;
}

.sveta-rotan-bold {
  color: rgb(20, 132, 144);
  font-weight: bold;
}

.sveta-rotan-vertical-line-break {
  margin: 2% auto;
  border-bottom: 1px solid rgb(20, 132, 144);
  width: 100%;
}

.sveta-rotan-text-bigger {
  font-family: Calibri, serif;
  font-size: 1.2rem;
  color: #2b2f32;
  margin-top: 5px;
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-text-bigger-white {
  font-family: Calibri, serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-text-green {
  font-family: Calibri, serif;
  font-size: 1.2rem;
  color: #348694;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-text-icon {
  color: #35b6b4;
  width: 1.5vw;
  margin-top: -1%;
  height: fit-content;
}

.sveta-rotan-icon-small {
  width: 35px;
  height: fit-content;
  margin-top: 0;
  color: #348694;
}

.sveta-rotan-icon-small-white {
  width: 2vw;
  height: fit-content;
  margin-top: 0;
  color: #ffffff;
}

.sveta-rotan-icon-medium-small-white {
  width: 50px;
  height: 50px;
  margin-top: 0;
  color: #ffffff;
}

.sveta-rotan-icon-medium-more-than-small {
    width: 100px;
    height: fit-content;
    margin-top: 0;
    color: #348694;
}

.sveta-rotan-icon-medium-small {
    width: 50px;
    height: fit-content;
    margin-top: 0;
    color: #348694;
}

.sveta-rotan-accordion-icon {
  width: 2vw;
  height: fit-content;
}

.sveta-rotan-calendar {
  width: 28vw;
  height: fit-content;
}

.sveta-rotan-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sveta-rotan-text-big {
  font-family: Verdana, serif;
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-left-border-container {
  border-left: 3px solid #348694;
  padding-left: 2%;
}

.sveta-rotan-tag-green {
  background-color: #348694;
  padding: 1% 2%;
  border-radius: 50px;
  color: #ffffff;
  font-family: Calibri, serif;
  font-size: 1.2rem;
  width: fit-content;
}

.sveta-rotan-review-card {
  padding: 2%;
  border-radius: 30px;
  /*background-color: rgb(20, 132, 144);*/
  background: linear-gradient(90deg, white, lightgray);
  height: 100%;
  align-content: center;
}

.sveta-rotan-review-card-text {
  font-family: Lora-Regular, serif;
  color: #2b2f32;
  text-align: center;
}

.sveta-rotan-review-card-icon {
  width: 10vw;
  color: rgb(20, 132, 144);
}

.sveta-rotan-review-card-quote-icon {
  width: 2vw;
  color: #2b2f32;
}

.sveta-rotan-road-background {
  background: url("https://storage.yandexcloud.net/sveta-rotan-bucket/landing-images/Intensive/Road.jpg") no-repeat;
  background-size: cover;
  border-radius: 50px;
  width: 90%;
  margin: auto;
  padding: 10%;
  position: relative;
  overflow: hidden; 
}

.sveta-rotan-block-with-geometric-background {
  background: url("https://storage.yandexcloud.net/sveta-rotan-bucket/landing-images/magic-pill/geometric-background.jpg") no-repeat;
  background-size: cover;
  border-radius: 10px;
  margin: auto;
  padding: 4%;
  position: relative;
  overflow: hidden;
}

.sveta-rotan-road-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
}

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.sveta-rotan-subtitle-with-background {
  background-color: #348694;
  font-family: Calibri, serif;
  color: #ffffff;
  padding: 2%;
  border-radius: 5px;
}

.sveta-rotan-subtitle-with-background-rounded {
  background-color: #eaeaea;
  font-family: Calibri, serif;
  color: #2b2f32;
  padding: 1% 2%;
  border-radius: 75px;
  width: fit-content;
}

.sveta-rotan-author-image {
  width: 90%;
  border-radius: 50px;
  border: 3px solid rgb(20, 132, 144);
}

.sveta-rotan-logo {
  width: 15%;
  height: fit-content;
}

  /* Order form */

.order-form-container {
  padding: 1%;
  margin: 1% auto auto;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 0 5px 30px rgb(24, 24, 25, 0.1);
}

.order-form-image {
  border-radius: 5px;
  width: 70%;
}

.order-form {
  text-align: center;
  margin-top: auto;
  width: 100%;
}

.order-form-title {
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  font-weight: 700;
  margin: 0;
  font-family: Montserrat-Bold, serif;
}

.order-form-discription {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.order-form-price {
  margin: 0;
  letter-spacing: 0.05rem;
  font-size: 1rem;
  font-weight: 600;
}

.order-form-inputs-container {
  width: 100%;
}

.order-form-label {
  font-size: 0.9rem;
  color: gray;
  margin: 0;
  text-align: start;
  font-weight: 500;
}

.order-form-input {
  color: #2c3442;
  font-size: 1rem;
  font-weight: 500;
  background-color: transparent;
  border: transparent;
  border-bottom: 1px solid #148490;
  border-radius: 0;
  padding-left: 0;
}

.order-form-input:hover {
  background-color: transparent;
}

.order-form-input:active {
  background-color: transparent;
  border-bottom: 1px solid #148490;
}

.order-form-input:focus {
  background-color: transparent;
  border-bottom: 1px solid #148490;
}

.order-form-input:focus-within {
  background-color: transparent;
}

.order-form-btn {
  font-size: 1rem;
  height: fit-content;
  width: fit-content;
  box-shadow: none;
  font-family: Roboto, serif;
}

.order-form-policy {
  margin: 0;
  font-size: 0.8rem;
}

.order-form-checkbox {
  font-size: 0.8rem;
  margin: 0;
}

.order-result-container {
  box-shadow: 0 8px 24px rgb(0, 0, 0, 0.15);
}

.order-result-title {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  font-family: Montserrat-Bold, serif;
}

.order-result-product {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  color: #148490;
  margin: 0 0 2%;
}

.order-result-image {
  border-radius: 5px;
  height: 100%;
  width: 100%;
  display: none;
  text-align: center;
}

.order-result-icon {
  height: 100%;
  width: 32px;
  color: #148490;
}

.order-result-footer {
  margin-top: 5%;
  font-size: 0.9rem;
  letter-spacing: .1rem;
}

.order-result-text-container {
  max-width: 50%;
}

.order-result-btn-container {
  text-align: center;
}

.order-result-btn {
  font-size: 1rem;
  font-family: Roboto, serif;
}

.sveta-rotan-promocode-section {
  margin-top: 5%;
  margin-bottom: 5%;
}

.sveta-rotan-promocode-input {
  border: 3px solid #348694;
  border-radius: 5px;
  padding: 5%;
  font-family: Verdana, serif;
  font-size: 0.9rem;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.sveta-rotan-promocode-input:hover {
  border-color: #348694;
  outline: none;
}

.sveta-rotan-promocode-input:active {
  border-color: #348694;
  outline: none;
}

.sveta-rotan-promocode-input:focus {
  border-color: #348694;
  outline: none;
}

.sveta-rotan-promocode-message {
  font-family: Verdana, serif;
  font-weight: 500;
  font-size: 0.9rem;
}


/* Extasis */

.extasis-main-section {
}

.extasis-main-section-image {
  width: 80%;
  border-radius: 5px 100px 100px 5px;
}

.extasis-main-section-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  color: #148490;
}

.extasis-main-section-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  color: #2b2f32;
}

.extasis-main-section-text-bold {
  font-size: 1rem;
  font-family: Montserrat-SemiBold, serif;
}

.extasis-main-section-btn-container {
  text-align: center;
}

.extasis-faq-section {
  margin-top: 5%;
}

.extasis-faq-section-subtitle {
  color: #148490;
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}

.extasis-faq-section-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 1%;
}

.extasis-faq-section-card {
  margin: auto;
  text-align: center;
  width: 50%;
  height: 100%;
  align-content: center;
}

.extasis-faq-section-card-icon {
  width: 80px;
  color: #148490;
}

.extasis-faq-section-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  text-align: center;
  width: fit-content;
  margin: auto;
}

.extasis-about-section {
  margin-top: 10%;
}

.extasis-about-section-card {
  border-radius: 5px;
  background: #e0e0e0;
  box-shadow: 20px 20px 60px #bebebe,
  -20px -20px 60px #ffffff;
  padding: 3%;
  margin-bottom: 5%;
}

.extasis-about-section-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
}

.extasis-about-section-subtitle-icon {
  width: 30px;
  color: #148490;
}

.extasis-about-section-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.extasis-about-section-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
  text-align: center;
}

.extasis-about-section-video {
  width: 100%;
  border-radius: 5px;
}
.extasis-about-section-video::-webkit-media-controls-timeline,
.extasis-about-section-video::-webkit-media-controls-current-time-display,
.extasis-about-section-video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

.extasis-mentors-section {
  margin-top: 8%;
}

.extasis-mentors-image-container {
  position: relative;
  display: inline-block;
  text-align: center;
}

.extasis-mentors-image {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.extasis-mentors-name {
  font-family: Montserrat-SemiBold, serif;
  color: #e8f3f4;
  font-size: 1rem;
  padding: 3%;
  background-color: #148490;
  border-radius: 5px;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  box-sizing: border-box;
  z-index: 1;
  height: fit-content;
}

.extasis-mentors-title {
  text-align: center;
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
}

.extasis-mentors-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 5% 0 0;
}

.extasis-mentors-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin-top: 1%;
}

.extasis-mentors-image {
  width: 100%;
  display: block;
  border-radius: 5px;
}

.extasis-schedule {
  margin-top: 8%;
  padding: 1%;
  background-color: #eaf4f5;
  border-radius: 5px;
}

.extasis-schedule-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  text-align: center;
  margin: 0;
}

.extasis-schedule-day-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.1rem;
  width: fit-content;
  border-bottom: 2px solid #148490;
  margin: 2% auto auto;
}

.extasis-schedule-day-time {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  margin: 0;
}

.extasis-schedule-day-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  margin: 0;
}

.extasis-schedule-day-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 0;
}

.extasis-footer {
  margin-top: 5%;
}

.extasis-footer-image {
  width: 100%;
  border-radius: 5px;
}

.extasis-footer-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.2rem;
  margin: 0;
}

.extasis-footer-icon {
  width: 50px;
  color: #148490;
}

.extasis-footer-text-bold {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  color: #148490;
}

.extasis-footer-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin: 1% 0 0;
}

.extasis-tariff {
  margin-top: 5%;
}

.extasis-tariff-title-container {
  border-radius: 5px;
  background-color: #148490;
  padding: 2%;
  text-align: center;
}

.extasis-tariff-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
  color: #e8f3f4;
  margin: 0;
}

.extasis-tariff-card {
  width: 80%;
  margin: 3% auto auto;
  border-radius: 5px;
  background: #e0e0e0;
  box-shadow: 15px 15px 30px #bebebe,
  -15px -15px 30px #ffffff;
  padding: 2%;
}

.extasis-tariff-what-you-get-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 0;
  border-bottom: 2px solid #148490;
}

.extasis-tariff-what-you-get-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 1% 0 0;
}

.extasis-tariff-card-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  margin: 1% 0 0;
}

.extasis-tariff-card-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.2rem;
  margin: 0 0 2%;
}

.extasis-tariff-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  margin: 2% 0;
}

.sveta-rotan-rounded-number {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #148490;
  color: #e8f3f4;
  text-align: center;
  font-size: 2.4rem;
  align-content: center;
  margin: auto;
}

.sveta-rotan-block-gray {
  background-color: #e2e3e5;
  border-radius: 5px;
  padding: 2%;
}

/* Master class */

.master-class-header {
  border-radius: 5px;
  padding: 2%;
}

.master-class-header-image {
  width: 100%;
  border-radius: 5px;
}

.master-class-header-subtitle {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

.master-class-header-title {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  margin: 0 0 1%;
  text-align: center;
}

.master-class-header-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 0 2%;
}

.master-class-header-btn-container {
  text-align: center;
}

.master-class-mechanisms {
  margin-top: 8%;
}

.master-class-mechanisms-card {
  border-radius: 5px;
  padding: 2%;
  box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.master-class-mechanisms-card-icon-container {
  width: fit-content;
  text-align: center;
  padding: 4%;
  border-radius: 50px;
  margin: auto;
}

.master-class-mechanisms-card-icon {
  width: 100px;
  color: #148490;
}

.master-class-mechanisms-card-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.1rem;
  margin: 3% 0 2%;
  text-align: center;
}

.master-class-mechanisms-card-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.master-class-mechanisms-card-text-bold {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
}

.master-class-about {
  margin-top: 5%;
}

.master-class-about-color-card {
  background-color:#148490;
  border-radius: 5px 50px 50px 5px;
  width: 100%;
  height: 100%;
}

.master-class-about-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.4rem;
  margin: 0 0 1%;
  /*border-bottom: 2px dotted #148490;*/
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #148490;
  text-decoration-skip-ink: none;
}

.master-class-about-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin: 0;
}

.master-class-about-divider {
  margin-top: 2%;
  margin-bottom: 2%;
}

.master-class-about-review-btn {
  background-color: #148490;
}

.master-class-about-review {
  color: #2b2f32;
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.master-class-reviews-title {
  font-family: Montserrat-SemiBold, serif;
  text-align: center;
}

.master-class-reviews-carousel {
  margin-top: 5%;
}

.master-class-reviews-carousel-btn {
  background-color: #148490 !important;
}

.master-class-reviews-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

.master-class-author {
  margin-top: 5%;
}

.master-class-author-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
}

.master-class-author-text {
  font-family: Lora-Regular, serif;
  font-size: 0.9rem;
}

.master-class-author-image {
  width: 80%;
  border-radius: 5px;
}

.master-class-author-divider {
  border-bottom: 2px dotted #2b2f32;
  margin-bottom: 2%;
  margin-top: 2%;
}

.master-class-author-title-icon {
  width: 50px;
  color: #148490;
  margin-left: 2%;
  margin-top: -1%;
}

.master-class-author-btn-container {
  text-align: center;
}

.master-class-footer {
  margin-top: 3%;
}

.master-class-footer-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.5rem;
  text-align: center;
}

.master-class-footer-info {
  border-radius: 5px;
  padding: 3%;
  border: 2px dotted #2c909b;
}

.master-class-footer-info-icon{
  width: 60px;
  color: #148490;
}

.master-class-footer-info-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

/* Uds form */

.uds-form {
  margin-bottom: 2%;
  background-color: #148490;
  border-radius: 5px;
  padding: 3% 1%;
}

.uds-text {
  margin: 0 0 2%;
  font-size: 1rem;
  font-weight: 500;
  color: #d0e6e9;
}

.uds-code-input {
  font-size: 1rem;
  height: fit-content;
  width: fit-content;
  border-radius: 5px;
  border-color: transparent;
  margin: auto;
}

.uds-code-input:active {
  border-color: transparent !important;
  box-shadow: none;
}

.uds-code-input:focus {
  border-color: transparent !important;
  box-shadow: none;
}

.uds-code-input:focus {
  border-color: #439da6;
}

.uds-btn {
  font-size: 1rem;
  box-shadow: none;
  height: fit-content;
  width: fit-content;
  background-color: transparent;
  color: #e8f3f4;
}

.uds-customer-name {
  font-size: 1rem;
  color: #d0e6e9;
  font-weight: 500;
  margin: 0 0 1%;
}

.uds-customer-points {
  font-size: 1rem;
  color: #d0e6e9;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1%;
}

.uds-customer-discount {
  font-size: 1rem;
  color: #d0e6e9;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1%;
}

.uds-not-found-error {
  margin: 0;
  margin-top: 1%;
  color: yellow;
  font-size: 0.9rem;
}

.uds-not-found-qr {
  margin: auto;
  background-image: url("images/udsQrcode.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 200px;
}

.uds-not-found-link {
  color: yellow;
  text-decoration: underline;
}

/* Uds Modals */

.uds-modal-open-btn {
  margin-top: 10%;
  font-size: 0.9rem;
  box-shadow: none;
  background-color: #2c909b;
}

.uds-form-submit-modal-title {
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  font-family: Montserrat-Bold, serif;
}

.uds-modal-guide-title {
  font-size: 1rem;
  color: #148490;
  font-weight: 600;
  font-family: Montserrat-Bold, serif;
}

.uds-modal-guide-text {
  font-size: 0.9rem;
}

/* Custom form */

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 40%;
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Montserrat-Bold, serif;
}

.form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.group {
  position: relative;
}

.form .group label {
  font-size: 1rem;
  color: rgb(99, 102, 102);
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form .group input,
.form .group textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  outline: 0;
  width: 100%;
  background-color: transparent;
  color: #148490;
  font-size: 0.9rem;
  padding-top: 3%;
}

.form .group input:placeholder-shown + label,
.form .group textarea:placeholder-shown + label {
  top: 10px;
  background-color: transparent;
}

.form .group input:focus,
.form .group textarea:focus {
  border-color: #148490;
}

.form .group input:focus + label,
.form .group textarea:focus + label {
  top: -10px;
  left: 10px;
  background-color: #fff;
  color: #148490;
  font-weight: 600;
  font-size: 14px;
}

.form .group textarea {
  resize: none;
  min-height: 30vh;
}

.form button {
  color: #e8f3f4;
  font-size: 1rem;
  padding: 1%;
  height: fit-content;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form button:hover {
  background-color: #27408b;
}

/* Question form */

.contact-form-title {
  border-bottom: transparent !important;
  font-family: Montserrat-Bold, serif;
}

.contact-form-btn {
  background: #148490;
  border-color: transparent;
  font-family: Roboto, serif;
}

.form-input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 3px solid #148490;
  background: transparent;
}

.form-input:active {
  box-shadow: none;
  border-color: #148490;
  background: transparent;
}

.form-input:focus {
  box-shadow: none;
  border-color: #148490;
  background: transparent;
}

.form-input-textarea {
  border-top: 3px solid #148490;
  border-left: 3px solid #148490;
  border-right: 3px solid #148490;
}

#toastContainer {
  z-index: 1050; /* Убедитесь, что z-index выше, чем у других элементов */
}

.toast-container {
  position: fixed; /* Используйте fixed для фиксированного позиционирования */
  top: 10px; /* Отступ сверху */
  right: 10px; /* Отступ справа */
}

/* Admin contact */

.admin-contact-card {
  border-radius: 10px;
  background-color: #148490;
  padding: 2%;
  box-shadow: 0px 8px 24px rgb(0, 0, 0, 0.15);
}

.admin-contact-card-row {
  margin-bottom: 1%;
}

.admin-contact-card-fio {
  font-size: 0.9rem;
  font-weight: 350;
  margin: 0;
  color: #e8f3f4;
}

.admin-contact-card-done {
  color: #e8f3f4;
  font-size: 1.2rem !important;
  cursor: pointer;
}

.admin-contact-card-date {
  font-size: 0.9rem;
  font-weight: 350;
  margin: 0;
  color: #e8f3f4;
  margin-bottom: 1%;
}

.admin-contact-card-question {
  font-size: 0.8rem;
  font-weight: 350;
  margin: 0;
  color: #e8f3f4;
  margin-bottom: 2%;
}

.admin-contact-card-btn-icon:hover {
  color: #2c909b !important;
}

.admin-contact-card-btn-container {
  margin-top: auto;
}
/* Contact form */

.contact-form-title {
  font-size: 1.4rem !important;
  font-weight: 450 !important;
  width: fit-content;
  margin: auto;
  border-bottom: 3px solid #148490;
  font-family: Montserrat-Bold, serif;
}

.contact-form-input {
  border-radius: 3px;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}

.contact-form-btn {
  padding: 1%;
  font-size: 1.2rem;
  height: fit-content;
  width: 100%;
  font-family: Roboto, serif;
}

/* Autowebinar */

/* Main title btn */

.webinar-main-btn {
  position: relative;
  padding: 12px 35px;
  background: #d0e6e9;
  font-size: 1.2rem;
  font-family: Roboto, serif;
  color: #2b2f32;
  border: 3px solid #2c909b;
  border-radius: 8px;
  box-shadow: 0 0 0 #e8f3f4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

.webinar-main-btn:hover {
  background: transparent;
  color: #e8f3f4;
  box-shadow: 0 0 25px #2c909b;
}

.webinar-main-btn:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.webinar-main-btn:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.webinar-main-btn:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.webinar-main-btn:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.webinar-main-btn:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.webinar-main-btn:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

.webinar-main-section-image {
  width: 80%;
  border-radius: 5px;
}

.webinar-problem-section-card {
  padding: 2%;
  border-radius: 5px;
  border: 2px dotted #2c909b;
  text-align: start;
  height: 100%;
}

.webinar-problem-section-title {
  font-family: Montserrat-Bold, serif;
  font-size: 1.4rem;
  width: fit-content;
}

.webinar-problem-section-description {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

.webinar-problem-section-icon {
  width: 50px;
  height: 50px;
  color: #148490;
}

.webinar-problem-section-btn-container {
  margin-top: 2%;
}

.webinar-tariff-section {
  margin-top: 5%;
}

.webinar-tariff-section-card {
  background-color: #d0e6e9;
  border-radius: 5px;
  padding-top: 5%;
  padding-left: 4%;
  padding-right: 4%;
  height: 100%;
  box-shadow: 20px 20px 60px #bebebe,
  -20px -20px 60px #ffffff;
  margin-bottom: 2%;
}

.webinar-tariff-section-card-icon {
  width: 10vw;
  filter: drop-shadow(3px 3px 2px rgba(0,0,0,0.7));
  height: 100px;
  color: #148490;
  margin: auto;
}

.webinar-tariff-section-card-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  margin: 2% auto 0;
  border-bottom: 3px solid #148490;
  width: fit-content;
}

.webinar-tariff-section-card-text {
  font-family: Lora-Regular, serif;
  font-size: 0.8rem;
  text-align: start;
  margin-top: 2%;
}

.webinar-for {
  margin-top: 5%;
}

.webinar-for-title {
  font-family: Montserrat-Bold, serif;
  margin: 1% 0 0;
}

.webinar-for-icon {
  width: 10vw;
  height: fit-content;
}

.webinar-for-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
  margin:0 ;
}

.webinar-join-us-section {
  margin-top: 5%;
}

.webinar-join-us-section {
  background-color: #2c909b;
  border-radius: 5px;
}

.webinar-join-us-section-card-content-container {
  padding: 1%;
}

.webinar-join-us-section-card-image {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.webinar-join-us-section-card-title {
  color: #e8f3f4;
  font-family: Montserrat-Bold, serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
}

.webinar-join-us-section-card-icon {
  height: 80px;
  color: #e8f3f4 !important;
}

.webinar-join-us-section-card-review-btn {
  background-color: #e8f3f4;
}

.sveta-rotan-review-image {
  width: 90%;
  border-radius: 0;
}

.webinar-join-us-section-card-review {
  color: #e8f3f4;
  font-family: Lora-Regular, serif;
  font-size: 1.2rem;
  font-style: italic;
  padding-left: 7%;
  padding-right: 7%;
  text-align: center;
}

.webinar-svetlana-container {
  margin-top: 8%;
}

.webinar-svetlana-card {
  border-radius: 5px;
  padding: 1%;
}

.webinar-svetlana-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.webinar-svetlana-image-container {
  border-radius: 50px;
  background: #2c909b;
}

.webinar-svetlana-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: block;
}

.webinar-svetlana-title {
  color: #148490;
  margin: 0;
  font-size: 1.2rem;
  font-family: Montserrat-Bold, serif;
}

.webinar-svetlana-subtitle {
  font-family: Montserrat-Bold, serif;
  font-size: 2rem;
  line-height: 2rem;
  margin-top: 1%;
}

.webinar-svetlana-title-line {
  border-bottom: 4px solid #148490;
  margin-top: 18px;
}

.webinar-svetlana-list-container {
  
}

.webinar-svetlana-list-item {
  font-family: Montserrat-SemiBold, serif;
  font-size: 0.9rem;
}

.webinar-svetlana-list-item-icon {
  width: 25px;
  color: #148490;
}

.webinar-svetlana-socials {
  font-size: 1rem;
  width: fit-content;
  border-bottom: 3px solid #148490;
  font-family: Montserrat-SemiBold, serif;
  margin: 5% auto auto;
}

.webinar-svetlana-socials-container {
  margin-top: 2%; 
}

.webinar-svetlana-text {
  font-size: 0.9rem;
  font-family: Lora-Regular, serif;
  margin-top: 2%;
}

.webinar-svetlana-footer {
  font-size: 0.9rem;
  font-family: Lora-Regular, serif;
  margin-top: 3%;
}

.webinar-socials-container {
  margin-top: 1%;
}

.webinar-socials-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
  text-align: center;
}

.webinar-socials-link-container {
  padding: 1%;
  text-align: center;
  width: 100%;
}

.webinar-socials-links-container {
  background-color: #2c909b;
  height: 20vh;
  border-radius: 5px;
}

.webinar-socials-link {
  width: 80px;
  height: 80px;
  color: #e8f3f4;
}

.webinar-info-section {
  margin-top: 5%;
  border-radius: 5px;
  border: 2px dotted #2c909b;
  padding: 2%;
}

.webinar-info-section-icon {
  width: 120px;
  color: #148490;
}

.webinar-info-section-title {
  font-family: Montserrat-SemiBold, serif;
  font-size: 1.2rem;
}

.webinar-info-section-text {
  font-family: Lora-Regular, serif;
  font-size: 1rem;
}

/* Root sistem laws*/
.sveta-rotan-header-with-background-image-container {
  background-image: url('https://storage.yandexcloud.net/sveta-rotan-bucket/landing-images/transformational-games/header-background.jpg');
  width: 100%;
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  text-align: start;
  padding: 2%;
  display: flex;
  flex-direction: column;
  background-position: right center;
}

.sveta-rotan-header-with-background-image-container > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Центрируем всё по вертикали */
}

/* Только для мобилок (max-width: 768px) */
@media (max-width: 992px) {
  .sveta-rotan-header-with-background-image-container {
    background-position: center center;
    height: 600px;
  }

  /* Переопределяем стили для мобилок */
  .sveta-rotan-header-with-background-image-container > div {
    justify-content: space-between; /* Дата вверху, кнопка внизу */
  }

  /* Первый блок (дата "15 мая старт") поднимаем вверх */
  .sveta-rotan-header-with-background-image-container > div > .d-flex {
    margin-top: 0;
    margin-bottom: auto; /* Остальное прижмется к низу */
  }

  /* Заголовки и кнопка прижимаем к низу */
  .sveta-rotan-header-with-background-image-container > div > h4,
  .sveta-rotan-header-with-background-image-container > div > h1,
  .sveta-rotan-header-with-background-image-container > div > div:last-child {
    margin-top: auto;
  }
}

.sveta-rotan-body-with-background-image-container {
  background-image: url('https://storage.yandexcloud.net/sveta-rotan-bucket/landing-images/transformational-games/body-background.jpg');
  width: 100%;
  height: 800px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  text-align: start;
  padding: 2%;
  display: flex;
  flex-direction: column;
  background-position: center center;
}

.sveta-rotan-header-block {
  border: 2px solid white;
  border-radius: 10px;
  padding: 0 2%;
  background-color: rgba(30, 30, 30, 0.7);
}

.sveta-rotan-header-block:not(:last-child) {
  margin-right: 30px;
}

.sveta-rotan-header-big-number {
  font-size: 3rem;
}

.sveta-rotan-block-green-borders {
  border: 2px solid #348694;
  padding: 1%;
  border-radius: 10px;
  text-align: center;
  align-content: center;
  height: 100%;
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(15px);
}

.sveta-rotan-text-with-shadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9),
              -1px -1px 5px rgba(0, 0, 0, 0.9),
              0 0 10px rgba(0, 0, 0, 0.7);
}

/* Supernatural */

.sveta-rotan-column-container {
  margin: auto;
  width: 90%;
  text-shadow:0 0 8px rgba(0, 0, 0, 0.8)
}

.sveta-rotan-header-image-container {
  background-image: url('https://storage.yandexcloud.net/sveta-rotan-bucket/landing-images/talkhouse/header-magic.png');
  width: 100%;
  height: 575px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  text-align: center;
  padding: 1%;
  display: flex;
  flex-direction: column;
}

.sveta-rotan-orange-gradient-btn {
  padding: 16px 33px;
  border-radius: 9px;
  background: linear-gradient(45deg, #FF8C00, #FF4500);
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  color: #e8f3f4;
  font-family: Verdana, serif;
  font-weight: bold;
}

.sveta-rotan-orange-gradient-btn:hover {
  box-shadow: 0 0 15px #FF8C00;
}

.sveta-rotan-list {
  list-style: none;
  padding-left: 0; 
}

.sveta-rotan-list li {
  position: relative;
  padding-left: 25px;  
  margin-bottom: 10px; 
}

.sveta-rotan-list li::before {
  content: "—";      
  color: #FF8C00;    
  position: absolute;
  left: 0;
}

.sveta-rotan-magic-block {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  max-width: 600px;
  margin: 20px auto; 
  box-shadow: 0 0 25px rgba(101, 45, 144, 0.4);
  position: relative;
  overflow: hidden;
  padding: 5%;
}

.sveta-rotan-magic-block::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
  rgba(255, 140, 0, 0.1) 0%,
  rgba(255, 140, 0, 0) 70%);
  transform: rotate(30deg);
}

.sveta-rotan-magic-block-title {
  color: #FFD700;
  font-size: 28px;
  text-align: center;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  letter-spacing: 1px;
}

.sveta-rotan-magic-block-text {
  color: #E0E0E0;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.sveta-rotan-magic-block-divider {
  height: 1px;
  background: linear-gradient(90deg,
  transparent 0%,
  rgba(255, 140, 0, 0.8) 50%,
  transparent 100%);
  margin: 15px 0;
}

.sveta-rotan-magic-block-ornament {
  color: rgba(255, 215, 0, 0.7);
  text-align: center;
  font-size: 24px;
  letter-spacing: 10px;
  margin-top: 15px;
}

.mystic-section-title {
  color: #5E2B8C; /* Глубокий фиолетовый */
  font-family: AqumTwoo, serif;
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(94, 43, 140, 0.2);
}

.mystic-section-title::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, #5E2B8C, #E67E22, transparent);
  margin-top: 10px;
}

/* Список */
.mystic-list {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.mystic-list li {
  color: #333; /* Темно-серый вместо белого */
  font-family: Calibri, serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.mystic-list li:hover {
  color: #5E2B8C; /* Фиолетовый при наведении */
}

/* Акцентные элементы */
.mystic-accent {
  color: #E67E22; /* Теплый оранжевый */
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 1.2rem;
  animation: mystic-twinkle 2s infinite alternate;
}

/* Анимации */
@keyframes mystic-twinkle {
  0% { opacity: 0.7; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}


.magic-orb-wrapper {
  position: relative;
  padding: 30px;
  display: inline-block;
  filter: blur(.5px);
}

.magic-orb-glow {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  filter:
          drop-shadow(0 0 15px rgba(255, 215, 0, 0.7))
          drop-shadow(0 0 30px rgba(101, 45, 144, 0.6))
          drop-shadow(0 0 45px rgba(15, 52, 96, 0.3));
  animation: orb-float 6s ease-in-out infinite;
}

/* Основное свечение (размытое) */
.magic-orb-wrapper::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -15%;
  right: -15%;
  bottom: -15%;
  background: radial-gradient(
          circle at center,
          rgba(255, 215, 0, 0.5) 0%,
          rgba(101, 45, 144, 0.4) 30%,
          rgba(15, 52, 96, 0.2) 60%,
          transparent 80%
  );
  border-radius: 50%;
  z-index: 0;
  animation: orb-pulse 5s infinite alternate;
  filter: blur(20px); /* Сильное размытие */
  opacity: 0.8;
}

/* Вторичное свечение (еще более размытое) */
.magic-orb-wrapper::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  right: -20%;
  bottom: -20%;
  background: radial-gradient(
          circle at center,
          rgba(255, 140, 0, 0.3) 0%,
          rgba(101, 45, 144, 0.2) 40%,
          transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: orb-glow 7s infinite alternate-reverse;
  filter: blur(30px); /* Очень сильное размытие */
  opacity: 0.6;
}

/* Анимации */
@keyframes orb-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 0.9; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

@keyframes orb-glow {
  0% { opacity: 0.4; }
  50% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .magic-orb-wrapper {
    padding: 20px;
  }
  .magic-orb-wrapper::before {
    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;
    filter: blur(15px);
  }
  .magic-orb-wrapper::after {
    top: -25%;
    left: -25%;
    right: -25%;
    bottom: -25%;
    filter: blur(25px);
  }
}

/* Общие стили блоков */
.mystic-features-block,
.mystic-cta-block {
  padding: 30px;
  margin: 40px 0;
  position: relative;
}

/* Первый блок - особенности */
.mystic-subtitle {
  color: #5E2B8C;
  font-family: AqumTwoo, serif;
  margin-bottom: 25px;
  text-align: center;
}

.mystic-features-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
}

.mystic-features-list li {
  color: #333;
  font-family: Calibri, serif;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.mystic-icon {
  color: #E67E22;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  animation: mystic-pulse 2s infinite alternate;
}

.mystic-bonus {
  background: rgba(94, 43, 140, 0.1);
  border-left: 3px solid #E67E22;
  padding: 15px;
  margin-top: 30px;
  font-family: Verdana, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5E2B8C;
  text-align: center;
  border-radius: 0 4px 4px 0;
}

.mystic-gift {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 10px;
  animation: mystic-float 3s infinite ease-in-out;
}

/* Второй блок - призыв к действию */
.mystic-cta-block {
  text-align: center;
  background: linear-gradient(135deg, rgba(94, 43, 140, 0.05) 0%, rgba(230, 126, 34, 0.05) 100%);
  border-radius: 8px;
}

.mystic-cta-title {
  color: #5E2B8C;
  font-family: AqumTwoo, serif;
  margin-bottom: 15px;
}

.mystic-cta-text {
  color: #333;
  font-family: Calibri, serif;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.mystic-cta-button {
  background: linear-gradient(45deg, #5E2B8C, #E67E22);
  color: white;
  border: none;
  padding: 12px 30px;
  font-family: Verdana, serif;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 43, 140, 0.3);
}

.mystic-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94, 43, 140, 0.4);
}

.mystic-special-offer {
  margin-top: 25px;
  color: #E67E22;
  font-family: Calibri, serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mystic-flare {
  font-size: 1.5rem;
  animation: mystic-twinkle 1.5s infinite alternate;
}

/* Анимации */
@keyframes mystic-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

@keyframes mystic-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes mystic-twinkle {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Talk house */

.sveta-rotan-header-image-square {
  width: 80%;
  border-radius: 50px;
}

.sveta-rotan-icon-big {
  color: #348694;
  width: 18vw;
}
  
.sveta-rotan-icon-medium {
  color: #348694;
  width: 10vw;
}

.sveta-rotan-icon-medium-white {
  width: 10vw;
  color: #ffffff;
}


.sveta-rotan-image {
  width: 80%;
  border-radius: 20px;
}

.sveta-rotan-text-vertical-divider {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #D1D1D1;
}

.sveta-rotan-text-vertical-divider-medium {
  border-bottom: 1px solid #D1D1D1;
  margin: 20px auto;
  width: 50%;
}

.sveta-rotan-text-verdana {
  font-family: Verdana, serif;
  font-size: 1rem;
  color: #2b2f32;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-block-shadow {
  border: 2px solid #D1D1D1;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 4%;
  height: 100%;
}

.sveta-rotan-block-dashed {
  border: 2px dashed #348694;
  border-radius: 50px;
  padding: 3% 4%;
  height: 100%;
}

.sveta-rotan-icon-check {
  width: 30px;
  margin-top: -5px;
  height: 30px;
  color: #348694;
}

.sveta-rotan-card-small-with-icons {
  border-radius: 50px;
  padding: 6% 5%;
  background-color: #348694;
  height: 100%;
}

.sveta-rotan-card-icon {
  width: 5vw;
  color: #ffffff;
}

.sveta-rotan-title-white {
  font-family: AqumTwoo, serif;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-text-verdana-white {
  font-family: Verdana, serif;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-icon-subtitle {
  width: 6vw;
  margin-top: -5px;
  color: #348694;
}

.sveta-rotan-text-shadow {
  font-family: Verdana, serif;
  font-size: 1rem;
  margin-top: 20px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.sveta-rotan-text-line-through {
  text-decoration: solid;
  text-decoration-color: #2c909b;
  text-decoration-thickness: 2px;
  text-decoration-line: line-through;
}

.sveta-rotan-btn-container-mt-auto {
  margin-top: auto;
}

.sveta-rotan-ordinary-text {
  font-family: Verdana, serif;
  color: #2b2f32;
  font-size: 1.2rem;
}

.sveta-rotan-colored-block {
  height: 400px;
  width: 70%;
  margin: auto;
}

.sveta-rotan-colored-block-header {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #10808b;
  height: 100px;
  align-content: center;
  padding: 2%;
}

.sveta-rotan-colored-block-body {
  background-color: #a1d7d7;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 300px;
  align-content: center;
  padding: 10%;
}

/* #148490 */


/* Registration button */

.cssbuttons-io-button {
  text-transform: uppercase;
  margin: auto;
  background: #148490;
  color: #e8f3f4;
  font-size: 1rem;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #2c909b;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding: 0.35em 3.3em 0.35em 1.2em;
  cursor: pointer;
  font-family: Roboto, serif;
  width: fit-content;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #2c909b;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #148490;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


.dropdown-item:active {
  background-color: #2c909b;
  color: #e8f3f4 !important;
}


/* Simple beautiful button */

.sveta-rotan-primary-btn {
  padding: 16px 33px;
  border-radius: 9px;
  background: #348694;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  color: #e8f3f4;
  font-family: Verdana, serif;
}

.sveta-rotan-primary-btn:hover {
  box-shadow: 7px 5px 56px -14px #2c909b;
}

.sveta-rotan-primary-btn:active {
  transform: scale(0.97);
  box-shadow: 7px 5px 56px -10px #2c909b;
}

.sveta-rotan-primary-btn-no-background {
  padding: 16px 33px;
  text-decoration: none;
  border-radius: 9px;
  background: transparent;
  border: 2px solid #348694;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  color: #348694;
  font-family: Verdana, serif;
}

.sveta-rotan-primary-btn-no-background:hover {
  box-shadow: 7px 5px 56px -14px #2c909b;
}

.sveta-rotan-primary-btn-no-background:active {
  transform: scale(0.97);
  box-shadow: 7px 5px 56px -10px #2c909b;
}

.sveta-rotan-primary-btn-white {
  padding: 16px 33px;
  border-radius: 9px;
  background: transparent;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  color: #e8f3f4;
  font-family: Verdana, serif;
}

.sveta-rotan-primary-btn:hover {
  box-shadow: 7px 5px 56px -14px #ffffff;
}

.sveta-rotan-primary-btn:active {
  transform: scale(0.97);
  box-shadow: 7px 5px 56px -10px #ffffff;
}

.sveta-rotan-logo-icon-rounded-container {
  padding: 5%;
  text-align: center;
  width: fit-content;
}

.sveta-rotan-logo-icon-rounded {
  width: 100%;
  height: fit-content;
}

/* Alert */
.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  padding: 20px;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
  border-radius: 5px;
}

/* Tap link */

.taplink-image {
  width: 50%;
  border-radius: 50%;
  border: 2px solid #35B6B4;
  transform: rotate(-45deg);
}

.taplink-title {
  font-family: AqumTwoo, serif;
  font-weight: bold;
  color: #202020;
  margin: 20px;
}

.taplink-text {
  font-family: Verdana, serif;
  font-size: 1rem;
  color:#333333;
  margin: 20px;
}

.taplink-btn {
  border-color: transparent;
  font-family: Verdana, serif;
  font-size: 1rem;
  color: #ffffff;
  background-color: #35B6B4;
  border-radius: 20px;
  padding: 2% 3%;
  transition: all 0.2s;
}

.taplink-title-colored {
  font-family: AqumTwoo, serif;
  font-weight: bold;
  color: #35B6B4;
  margin: 20px;
}

.taplink-link {
  font-family: Verdana, serif;
  text-decoration: none;
  color: #35B6B4;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  width: fit-content;
  margin: 20px auto;
}

.taplink-link::after {
  content: "";
  display: block;
  height: 3px;
  background: #35B6B4;
  width: 0;
  transition: all ease-in 300ms;
}

.taplink-link:hover::after {
  margin: auto;
  width: 100%;
}

.taplink-btn:hover {
  background-color: #2a9290;
}

.taplink-btn:active {
  transform: scale(0.97);
  box-shadow: 7px 5px 56px -10px #2c909b;
}

.taplink-block {
  border-radius: 25px;
  margin-bottom: 40px;
  padding: 2%;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.taplink-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.taplink-block:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
  background-color: rgb(247, 247, 247);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.taplink-divider {
  border-bottom: 2px solid #148490;
  margin: 2% auto;
  width: 100%;
}

.taplink-socials-icon {
  color: #2c909b;
  width: 10vw;
}

.taplink-new {
  color: #348694;
}

.hit-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  right: auto;
  background: #348694;
  color: white;
  padding: 6px 15px;
  transform: rotate(-15deg);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Longread */

.sveta-rotan-longread-header-container {
  padding: 1% 3%;
  background-color: #010105;
  border-radius: 5px;
  margin-top: 1%;
}

.sveta-rotan-longread-header-title {
  font-family: Verdana, serif;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.6rem;
}

.sveta-rotan-longread-header-text {
  font-family: Verdana, serif;
  color: #d6516b;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.6rem;
}

.sveta-rotan-longread-header-footer {
  text-transform: uppercase;
  font-family: Verdana, serif;
  color: white;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.6rem;
}

.sveta-rotan-longread-section {
  margin-top: 4%;
  margin-bottom: 4%;
}

.sveta-rotan-longread-title {
  font-family: AqumTwoo, serif;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.6rem;
}

.sveta-rotan-longread-text {
  font-family: Verdana, serif;
  margin-top: 20px;
  margin-bottom: 20px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.6rem;
  padding: 0;
}

.sveta-rotan-longread-interview-question {
  border-radius: 10px;
  background-color: #b9e28c;
  padding: 1%;
}

.sveta-rotan-longread-interview-answer {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 1%;
}

.sveta-rotan-longread-block {
  margin-top: 1%;
  padding: 3%;
  border: 2px solid black;
  border-radius: 10px;
  background-color: #ffffff;
}

/* Art of self control */

.image-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 30%;
}

.image-container img {
  width: 100%;
  height: auto;
  border: 2px solid #348694;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  margin-right: -10%;
  border-radius: 15px;
}

.image-container img:first-child {
  z-index: 3;
}

.image-container img:nth-child(2) {
  z-index: 2;
}

.image-container img:last-child {
  z-index: 1;
  margin-right: 0;
}

.blocks-container {
  position: relative;
  width: 100%; 
  height: 200px; 
}

.block {
  padding: 2%;
  margin-top: 10px;
  text-align: center;
  align-content: center;
  width: 40%; 
  height: fit-content; 
  position: absolute;
  border-radius: 15px;
  background-color: #348694;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.block1 {
  bottom: 0;
  left: 0; 
  z-index: 3;
  border-radius: 5px;
  background-color: #348694;
}

.block2 {
  bottom: 20%; 
  left: 30%; 
  z-index: 2;
  border-radius: 5px;
  background-color: #348694;
}

.block3 {
  bottom: 40%;
  left: 60%;
  z-index: 1;
  border-radius: 5px;
  background-color: #348694;
}

.sveta-rotan-btn-art-of-self-control {
  padding: 16px 55px;
  border-radius: 9px;
  background: #ffc442;
  border: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s;
  color: black;
  font-family: AqumTwoo, serif;
  text-transform: uppercase;
}

.sveta-rotan-btn-art-of-self-control-with-animation {
    padding: 16px 55px;
    border-radius: 9px;
    background: #ffc442;
    border: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.8s;
    color: #348694;
    font-family: AqumTwoo, serif;
    text-transform: uppercase;
}

.sveta-rotan-btn-art-of-self-control-with-animation:hover {
    background-color: #148490;
    color: white;
}

.sveta-rotan-round-block {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  border: 1px solid #f3e0b8;
  padding: 5%;
}

.sveta-rotan-section-with-animation {
  opacity: 0;
  transform: translateY(50px); 
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.sveta-rotan-section-with-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.circle-container {
  display: flex;
  justify-content: space-between; 
  align-items: flex-start; 
  position: relative;
  width: 100%; 
  height: 200px;
}

.circle-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid #348694;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circle-wrapper:nth-child(1) {
  top: 50px;
  left: 0;
}

.circle-wrapper:nth-child(2) {
  top: 0;
  left: 80px;
}

.circle-wrapper:nth-child(3) {
  top: 50px; 
  left: 160px; 
}

/* Placements */

.sveta-rotan-overlay-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin: 0 auto;
}

.sveta-rotan-rounded-text-container {
  border-radius: 50%;
  width: 50%;
  background-color: #148490;
}

.sveta-rotan-records-card-green-shadow {
  display: flex; 
  flex-direction: column; 
  height: 100%;
  border-radius: 5px;
  background-color: #348694;
  padding: 5%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
  margin-bottom: 20px;
}

.sveta-rotan-card-big-green {
  border-radius: 15px;
  background-color: #348694;
}

.sveta-rotan-card-medium-green-border {
  padding: 1.5rem 1rem;
  border-radius: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-left: 3px solid #348694;
}

.sveta-rotan-card-big-white-border-green {
  border: 3px solid #348694;
  border-radius: 15px;
  padding: 1.5rem 1rem;
}

.sveta-rotan-card-big-green-border {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  border: 3px solid #348694;
  border-radius: 15px;
  height: 400px;
  justify-content: space-between;
  align-items: center;
}

.sveta-rotan-card-big-green-border .sveta-rotan-title {
  flex-grow: 1; 
  align-items: center;
  text-align: center;
}

.sveta-rotan-card-big-green-border .sveta-rotan-text-bigger-white {
  flex-shrink: 0; 
  margin: 0 !important;
}




.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(60%) sepia(90%) saturate(600%) hue-rotate(141deg) brightness(100%) contrast(120%);
  color: #348694;
  height: 500px;
  width: 100px;
}


.sveta-rotan-round-block-in-head-of-container {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-color: rgb(53, 182, 180);
  border: transparent;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  align-items: center;
  vertical-align: middle;
}

.sveta-rotan-card-green-round {
  border-radius: 20px;
  background-color: #348694;
  padding: 0.5% 2%;
}

.sveta-rotan-card-transperant-round {
  border-radius: 20px;
  background-color: transparent;
  padding: 0.5% 2%;
  border: 2px solid #348694;
}

/* Media queries */

@media (max-width: 480px) {
  .landing-page-reviews-container {
    padding: 0 !important;
  }
  .landing-page-footer-section-title {
    font-size: 1.4rem !important;
  }
  .landing-page-footer-socials-button-link {
    font-size: 2rem;
  }
  .landing-page-records-list-loadmore {
    text-align: center !important;
  }
  .landing-page-records-image {
    width: 100% !important;
  }
  .landing-page-card-container {
    width: 100%;
  }
  .landing-page-card-image-container {
    text-align: center;
  }
  .landign-page-card-image {
    width: 60vw !important;
  }
  .lading-page-section-title {
    font-size: 2.5rem !important;
  }
  .cta svg {
    display: none;
  }
  .cta span {
    font-size: 1.4rem;
  }
  .lading-page-school-title {
    font-size: 1.8rem !important;
  }
  .lading-page-section-subtitle {
    font-size: 1.3rem !important;
  }
  .landing-page-title {
    font-size: 2.4rem !important;
    font-weight: 600 !important;
    text-align: center !important;
  }
  .landing-page-sub-title {
    text-align: center !important;
    font-size: 1rem !important;
  }

  .selling-page-title-btn {
    width: 100%;
  }
}

@media (min-width: 480px) {
  .landing-page-title {
    font-size: 2rem !important;
    font-weight: 600 !important;
    text-align: center !important;
  }
  .landing-page-sub-title {
    text-align: center !important;
    font-size: 1.6rem !important;
  }
  .landing-page-title-image {
    width: 30% !important;
  }
  .landing-page-card-image-container {
    text-align: center;
  }
  .landign-page-card-image {
    width: 60vw !important;
  }
}

@media (min-width: 586px) {
  .landing-page-card-image-container {
    text-align: center;
  }
  .landign-page-card-image {
    width: 60vw !important;
  }
}

@media (min-width: 768px) {
  .landing-page-card-image-container {
    text-align: center;
  }
  .landign-page-card-image {
    width: 60vw !important;
  }
  .school-page-tariff-card {
    height: 100vh;
  }
  .sveta-rotan-section {
    margin-top: 10%;
  }
  .dropdown-content {
    left: 0;
    transform: none;
  }
  .sveta-rotan-icon-subtitle {
    width: 3vw;
  }
  .dropdown-content {
    width: 40vw;
    transform: translateX(-25%);
  }
  .sveta-rotan-review-image {
    width: 50%;
  }

  .image-container {
    width: 40%;
  }
  .blocks-container {
    height: 250px;
  }
  .sveta-rotan-text-bigger {
     margin-top: 20px;
     margin-bottom: 20px;
   }
}

@media (min-width: 992px) {
  .landing-page-title-image {
    width: 80% !important;
  }
  .landing-page-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-align: left !important;
  }
  .landing-page-sub-title {
    text-align: left !important;
    font-size: 1.6rem !important;
  }
  .landign-page-card-image {
    width: 27vw !important;
  }
  .school-page-tariff-card {
    width: 100%;
  }
  .application-form {
    max-width: 60%;
  }
  .nav-link-minor {
    font-size: 10px;
  }
  .nav-link {
    font-size: 12px;
  }


  .image-container {
    width: 70%;
  }
  .blocks-container {
    height: 300px;
  }
  .sveta-rotan-round-block {
    height: 300px;
    width: 300px;
    padding: 10%;
  }
}

@media (min-width: 1200px) {
  .collapse-menu {
    display: none;
  }
  .order-result-image {
    display: block;
  }
  .extasis-image {
    width: 100%;
  }
  .nav-link-minor {
    font-size: 14px;
  }
  .nav-link {
    font-size: 16px;
  }

  .image-container {
    width: 90%;
  }
  .blocks-container {
    height: 400px;
  }
  .sveta-rotan-round-block {
    height: 400px;
    width: 400px;
    padding: 30%;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 1.2rem !important;
  }
  .sveta-rotan-round-block {
    height: 500px;
    width: 500px;
    padding: 30%;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 1.3rem !important;
  }
}
@media (min-width: 1900px) {
  html {
    font-size: 1.4rem !important;
  }
}
@media (min-width: 2000px) {
  html {
    font-size: 1.6rem !important;
  }
}

@media (min-width: 2200px) {
  html {
    font-size: 1.8rem !important;
  }
}

.sveta-rotan-quote-container {
  background-color: rgb(210, 210, 210);
  border-radius: 15px;
}

.sveta-rotan-icon-medium-smaller-white {
  width: 8vw;
  color: #ffffff;
}

.sveta-rotan-archive-card {
  text-align: center;
  background-color: #2f7986;
  padding: 2% 1%;
  height: 100%;
  width: 80%;
  border-radius: 15px;
}

.plan {
  border-radius: 16px;
  box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
  padding: 10px;
  background-color: #2f7986;
  color: white;
  height: 100%;
}

.plan strong {
  font-weight: 600;
  color: #425275;
}

.plan .inner {
  align-items: center;
  padding: 40px 20px 20px;
  background-color: #348694;
  border-radius: 12px;
  position: relative;
  height: 100%;
}

.content-above-buttons {
  flex: 1;
  margin-bottom: 1rem; 
}

.buttons-container {
  width: 100%;
}

.plan .pricing {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #3c9bac;
  border-radius: 99em 0 0 99em;
  display: flex;
  align-items: center;
  padding: 0.625em 0.75em;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.plan .pricing small {
  color: #707a91;
  font-size: 0.75em;
  margin-left: 0.25em;
}

.plan .plan-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.plan .plan-title + * {
  margin-top: 0.75rem;
}

.plan .info + * {
  margin-top: 1rem;
}

.plan .features {
  display: flex;
  flex-direction: column;
}

.sveta-rotan-collapse-green {
  background-color: #348694;
}

/* Стили для героя */
.hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: 'AqumTwoo', serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #148490;
  margin-bottom: 20px;
  text-shadow: 0px 4px 10px rgba(20, 132, 144, 0.15);
}

.hero-subtitle {
  font-family: 'AqumTwoo', serif;
  font-size: 1.8rem;
  color: #35b6b4;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.hero-subtitle:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #35b6b4, rgba(53, 182, 180, 0.2));
}

.hero-highlight {
  background: rgba(232, 243, 244, 0.7);
  border-left: 4px solid #148490;
  padding: 15px 20px;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
  font-size: 1.25rem;
  font-family: Calibri, sans-serif;
  color: #2b2f32;
  max-width: 90%;
}

.hero-btn {
  background: linear-gradient(95deg, #148490, #35b6b4);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(20, 132, 144, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(20, 132, 144, 0.4);
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hero-image {
  width: 100%;
  max-width: 550px;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: scale(1.03);
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: -5px;
  background: #e63946;
  color: white;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
  transform: rotate(3deg);
}

/* Адаптация */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-highlight {
    font-size: 1.1rem;
  }
}

.countdown-container {
  background: rgba(232, 243, 244, 0.7);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid #e63946;
}

.countdown-title {
  font-family: Calibri, sans-serif;
  font-size: 1.2rem;
  color: #2b2f32;
  margin-bottom: 15px;
  font-weight: bold;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: Verdana, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #148490;
  background: white;
  padding: 5px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  min-width: 60px;
  text-align: center;
}

.countdown-label {
  font-family: Calibri, sans-serif;
  font-size: 0.9rem;
  color: #35b6b4;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .countdown-timer {
    gap: 8px;
  }
  .countdown-number {
    font-size: 1.5rem;
    min-width: 50px;
    padding: 5px 10px;
  }
}

.sr-inside-section {
  position: relative;
  padding: 80px 0;
}

.sr-inside-title {
  position: relative;
  margin-bottom: 40px;
  font-size: 2.5rem !important;
}

.sr-inside-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #148490, #35b6b4);
  border-radius: 2px;
}

.sr-inside-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(53, 182, 180, 0.15);
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.sr-inside-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #148490, #35b6b4);
}

.sr-inside-text {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.sr-inside-text:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #35b6b4;
  font-size: 1.5rem;
  top: -3px;
}

.sr-inside-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.sr-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.sr-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.sr-icon-1 {
  background: rgba(20, 132, 144, 0.1);
  color: #148490;
}

.sr-icon-2 {
  background: rgba(53, 182, 180, 0.1);
  color: #35b6b4;
}

.sr-icon-3 {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}

.sr-icon-text {
  font-family: Calibri, sans-serif;
  font-weight: bold;
  color: #2b2f32;
  text-align: center;
  font-size: 1.1rem;
}

.sr-highlight {
  background: linear-gradient(120deg, rgba(232, 243, 244, 0.7), rgba(232, 243, 244, 0.7));
  padding: 0 5px;
  font-weight: 600;
}

.sr-warning {
  border-left: 3px solid #e63946;
  padding-left: 30px;
  margin-top: 20px;
  background: rgba(230, 57, 70, 0.05);
  border-radius: 0 8px 8px 0;
}

/* Адаптивность */
@media (max-width: 768px) {
  .sr-inside-section {
    padding: 50px 0;
  }

  .sr-inside-title {
    font-size: 2rem !important;
  }

  .sr-inside-container {
    padding: 25px 20px;
  }

  .sr-inside-icons {
    gap: 15px;
  }

  .sr-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .sr-inside-text {
    padding-left: 25px;
  }
}

.sr-bonus-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.sr-bonus-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(53, 182, 180, 0.2);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(20, 132, 144, 0.1);
}

.sr-bonus-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.sr-bonus-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.sr-bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  background: rgba(232, 243, 244, 0.3);
  border-left: 4px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.sr-bonus-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.sr-bonus-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: rgba(20, 132, 144, 0.1);
  color: var(--primary-color);
}

.sr-bonus-content {
  flex-grow: 1;
}

.sr-bonus-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}

.sr-bonus-label {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 8px;
}

.sr-bonus-timer {
  background: rgba(232, 243, 244, 0.7);
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid var(--accent-color);
}

.sr-bonus-subtitle {
  font-family: 'AqumTwoo', serif;
  color: var(--primary-color);
  text-align: center;
  margin-top: 40px;
  padding: 15px;
  background: rgba(232, 243, 244, 0.5);
  border-radius: 10px;
  position: relative;
}

.sr-bonus-subtitle:before {
  content: "✧";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
}

.sr-bonus-subtitle:after {
  content: "✧";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
}

.sr-bonus-btn {
  background: linear-gradient(95deg, var(--primary-color), var(--secondary-color));
  color: #348694;
  border: none;
  border-radius: 50px;
  padding: 16px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: Verdana, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(20, 132, 144, 0.3);
  margin-top: 20px;
}

.sr-bonus-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(20, 132, 144, 0.4);
}

.sr-bonus-deco {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
  font-size: 10rem;
  color: var(--primary-color);
}

.sr-bonus-deco-1 {
  top: 10%;
  left: 5%;
}

.sr-bonus-deco-2 {
  bottom: 10%;
  right: 5%;
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .sr-bonus-section {
    padding: 50px 0;
  }

  .sr-bonus-container {
    padding: 25px 20px;
  }

  .sr-bonus-title {
    font-size: 2rem !important;
  }

  .sr-bonus-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sr-bonus-text {
    font-size: 1.1rem;
  }

  .sr-bonus-subtitle {
    font-size: 1.1rem;
    padding: 15px 10px;
  }
}

@media (max-width: 1198px) {
  .sr-bonus-subtitle:before {
    left: 5px;
  }

  .sr-bonus-subtitle:after {
    right: 5px;
  }

}

.sr-quote-content {
  position: relative;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.sr-quote-decoration {
  position: absolute;
  top: -25px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 2;
}

.sr-quote-text {
  position: relative;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.2rem;
}

.sr-quote-highlight {
  font-weight: 600;
  color: #148490;
  position: relative;
}

.sr-quote-highlight:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #148490, rgba(20, 132, 144, 0.2));
}

.sr-quote-warning {
  background: rgba(230, 57, 70, 0.05);
  border-left: 3px solid #e63946;
  padding: 15px 20px;
  border-radius: 0 10px 10px 0;
  margin-top: 20px;
  font-weight: 500;
}

.sr-quote-signature {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  border-radius: 10px;
  font-family: 'AqumTwoo', serif;
  font-size: 1.3rem;
  color: #148490;
  font-style: italic;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: right;
}

.sr-quote-divider {
  height: 3px;
  background: linear-gradient(90deg, #148490, #35b6b4);
  width: 80%;
  margin: 30px auto 0;
  border-radius: 3px;
  opacity: 0.3;
}

@media (max-width: 1200px) {
  .sr-quote-text {
    font-size: 1.1rem;
  }
}

.sr-quote-mobile {
  padding: 20px 0;
}

.sr-quote-mobile-container {
  position: relative;
  padding: 20px;
}

.sr-quote-mobile .sr-quote-decoration {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 2;
}

.sr-quote-mobile .sr-quote-content {
  margin-top: 40px;
  padding: 25px 20px;
}

.sr-quote-mobile-image {
  max-width: 80%;
  border-radius: 10px;
  margin: 0 auto;
}

.sr-quote-mobile .sr-quote-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.sr-quote-mobile .sr-quote-signature {
  font-size: 1.1rem;
  padding: 8px 15px;
}

/* Адаптация для маленьких экранов */
@media (max-width: 576px) {
  .sr-quote-mobile .sr-quote-content {
    padding: 20px 15px;
    margin-top: 35px;
  }

  .sr-quote-mobile .sr-quote-text {
    font-size: 1rem;
  }

  .sr-quote-mobile-image {
    max-width: 100%;
  }
}

.replacement-block {
  background-color: #f8fafb;
  border-left: 4px solid #348694;
  border-radius: 0 8px 8px 0;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.replacement-text {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
}

.highlight {
  color: #348694;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.highlight:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(52, 134, 148, 0.3);
}

.cta-text {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.manager-link {
  display: inline-block;
  background-color: #348694;
  color: white !important;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 3px 5px rgba(52, 134, 148, 0.2);
}

.manager-link:hover {
  background-color: #2a7280;
  transform: translateY(-2px);
  box-shadow: 0 5px 8px rgba(52, 134, 148, 0.3);
}

@media (max-width: 768px) {
  .replacement-block {
    padding: 15px;
    margin: 20px 0;
  }

  .replacement-text {
    font-size: 16px;
  }

  .manager-link {
    padding: 8px 16px;
    font-size: 15px;
  }
}

.sveta-rotan-challenge-block {
  border: 3px solid #348694;
  border-radius: 5px;
  padding: 6% 6%;
  text-align: center;
}

.sveta-rotan-challenge-underline-green {
  font-weight: bolder;
  color: #348694;
}

.sveta-rotan-challenge-underline-white {
  font-weight: bolder;
  color: white;
}

.sveta-rotan-challenge-btn {
  border: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #348694;
  cursor: pointer;
  transition: all 450ms ease-in-out;
  padding: 16px 55px;
}

.sveta-rotan-challenge-sparkle {
  fill: white;
  transition: all 800ms ease;
}

.sveta-rotan-challenge-text {
  font-weight: 600;
  color: white;
}

.sveta-rotan-challenge-btn:hover {
  background: linear-gradient(0deg,#348694,#2a7280);
  box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4),
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px rgba(255, 255, 255, 0.2),
  0px 0px 180px 0px #348694;
  transform: translateY(-2px);
}

.sveta-rotan-challenge-btn:hover .text {
  color: white;
}

.sveta-rotan-challenge-btn:hover .sparkle {
  fill: white;
  transform: scale(1.2);
}

.photo-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.photo-background {
  position: absolute;
  width: 80%; 
  height: 80%;
  background-color: #348694;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 5px;
}

.photo-img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  border-radius: 30px;
}

.hero {
  display: flex;
  padding: 80px 5%;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

:root {
  --primary-color: #348694;
  --secondary-color: #f8f9fa;
  --accent-color: #ff9e1b;
  --text-dark: #2d3748;
}

.sveta-rotan-h1 {
`  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);`
}

.highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(52, 134, 148, 0.2);
  z-index: -1;
  border-radius: 5px;
}

.subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: #718096;
  margin-bottom: 40px;
  max-width: 500px;
}

.sveta-rotan-block-shadow-no-borders {
  border-radius: 5px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  padding: 6% 8%;
  height: 100%;
  text-align: center;
}

.sveta-rotan-block-shadow-no-borders-green {
  border-radius: 5px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  padding: 6% 8%;
  height: 100%;
  text-align: center;
  background-color: #348694;
}

.sveta-rotan-text-bigger-poppins {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #2b2f32;
  margin-top: 15px;
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-text-bigger-poppins-white {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  
}

.sveta-rotan-challenge-underline-span {
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: #348694;
  text-decoration-thickness: 3px;
}

.checklist-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.checklist-item:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, #348694 0%, white 100%);
}

.checklist-item-no-underline {
  position: relative;
  padding-bottom: 1.5rem;
}


.sveta-rotan-horizontal-line-white {
  margin: auto;
  width: 50%;
  border-bottom: 1px solid #ffffff;
}

.sveta-rotan-horizontal-line-green {
  margin: auto;
  width: 50%;
  border-bottom: 1px solid #348694;
}

.sveta-rotan-form-input {
  
}

.sveta-rotan-form-title {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-size: 2rem;
  color: var(--text-dark);
}

.sveta-rotan-form-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
}

.sveta-rotan-form-info {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: start;
}

.sveta-rotan-form-important {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.sveta-rotan-form-price {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.sveta-rotan-form-policy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.sveta-rotan-form-info-block {
  display: inline-block;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #148490;
  max-width: 90%;
  padding: 3%;
}

.sveta-rotan-form-logo {
  height: fit-content;
  width: 20%;
}

.sveta-rotan-form-icon-small {
  height: fit-content;
  margin-top: 0;
  color: #348694;
}

.sveta-rotan-form-container {
  padding: 1%;
  margin: 1% auto auto;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 0 5px 30px rgb(24, 24, 25, 0.1);
}

.sveta-rotan-escape-review-card {
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 4% 10%;
}

@media (min-width: 576px) { 
  .sveta-rotan-form-container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .sveta-rotan-form-container {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .sveta-rotan-form-container {
    width: 70%;
  }

    .sveta-badge {
        left: 100px;
    }
}

@media (min-width: 1200px) { 
}

@media (min-width: 1400px) { 
  
}

.reviews-section {
  padding: 2rem 0;
}

.review-card {
  margin: auto;
  width: 95%;
  border-radius: 15px;
  padding: 25px 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.1;
  background: white;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.review-content {
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.review-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-author {
  position: relative;
  z-index: 2;
}

.review-author span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  display: block;
  text-align: center;
  padding-top: 10px;
}

.review-author hr {
  border-color: rgba(255,255,255,0.3);
  margin: 0.5rem 0;
}

.gradient-1 {
  background: linear-gradient(135deg, #349094 0%, #2a756f 100%);
}

.gradient-2 {
  background: linear-gradient(135deg, #71aab4 0%, #349094 100%);
}

.gradient-3 {
  background: linear-gradient(135deg, #349094 0%, #2a756f 100%);
}

@media (max-width: 767px) {
  .review-card {
    padding: 20px;
    margin: 0 15px;
  }
    
  .review-content p {
    font-size: 1rem;
  }
}

.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #349094;
}

.read-more {
  color: #349094;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9em;
}

.read-more:hover {
  color: #2a756f;
}

details summary {
  cursor: pointer;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.sveta-rotan-link-text {
  text-decoration: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #2b2f32;
  margin-top: 15px;
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sveta-rotan-review-btn {
  background-color: transparent;
  color: white;
  border-color: transparent;
}

.sveta-square-img {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
    max-height: 450px;
}
.sveta-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.sveta-badge {
    position: absolute;
    top: 15px;
    left: 50px;
    background: #fff;
    color: #2c3e50;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.sveta-badge.bg-success {
    background: #348694;
    color: white;
}

.sveta-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}
.sveta-benefits-list {
    list-style: none;
    padding-left: 0;
}

@media (min-width: 992px) {

    .sveta-badge {
        left: 100px;
    }
}

.review p {
  font-weight: 400;
}

.review-card {
  position: relative;
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  overflow: hidden;
}

.review-content-wrapper {
  position: relative;
  min-height: 500px;
  max-height: 500px;
  transition: all 0.5s ease;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 1% 6%;
}

.review-card[data-expanded="true"] .review-content-wrapper {
  max-height: 1000px
}

.review-author {
  position: relative;
  z-index: 3;
}

.review-author hr {
  margin: 10px 0;
}

.expand-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 15px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s;
  z-index: 2;
}

.review-card[data-expanded="true"] .expand-indicator {
  transform: translateX(-50%) rotate(180deg);
  bottom: calc(100% - 40px);
}

.review-content-wrapper:not([data-expanded="true"])::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  pointer-events: none;
}

.review-card[data-expanded="true"] .review-content-wrapper::after {
  display: none;
}

.sr-info-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    font-family: Poppins, sans-serif;
}

.sr-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: transparent;
    border: 2px solid #348694;
    color: #348694;
    border-radius: 5px;
    padding: 1% 5%;
    box-sizing: border-box;
}

.sr-circle__content {
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    line-height: 1.4;
}

.sr-horizontal-card {
    border: 1px solid transparent;
    border-radius: 5px;
    background-color: #348694;
    padding: 2%;
}

.sveta-rotan-icon-rounded-container {
    width: fit-content;
    height: fit-content;
    border-radius: 50%;
    padding: 20%;
    background-color: #2c909b;
    margin: auto;
}

.sr-image-container {
    position: relative;
    display: inline-block;
}

.sr-image-container img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.circle-background {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 60%;
    background-color: #348694;
    border-radius: 50%;
    z-index: 0;
}

.sr-accordion {
    border: none !important;
    background-color: transparent !important;
    color: #2b2f32 !important;
    font-family: Poppins, sans-serif;
    font-size: 1.4rem !important;
    border-radius: 5px !important;
    padding: 10px !important;
    box-shadow: none !important;
}

.accordion-button::after {
    display: none;
}

.accordion-button .accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
}

.sr-accordion-body {
    border: none !important;
    border-radius: 5px !important;
    border-top: none !important;
}

@media (min-width: 992px) {

    .sr-accordion {
        padding: 30px !important;
    }
}

.sr-relationship-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    font-family: Poppins, sans-serif;
}

.sr-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a9290 50%, #2b2f32 100%);;
    color: white; 
    padding: 2rem;
    text-align: center;
    font-family: Poppins, sans-serif;
}

.sr-day-header {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-family: Poppins, sans-serif;
}

.sr-day-1 .sr-day-header {
    background-color: rgba(255, 165, 0, 0.1);
    border-left: 5px solid #ff7e5f;
    border-radius: 5px;
}

.sr-day-2 .sr-day-header {
    background-color: rgba(0, 123, 255, 0.1);
    border-left: 5px solid #007bff;
    border-radius: 5px;
}

.sr-day-3 .sr-day-header {
    background-color: rgba(147, 112, 219, 0.05);
    border-left: 5px solid #9370db;
    border-radius: 5px;
}

.sr-day-header:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.sr-day-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sr-day.active .sr-day-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.sr-format-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.sr-badge-orange {
    background-color: rgba(255, 165, 0, 0.2);
    color: #cc5500;
}

.sr-badge-blue {
    background-color: rgba(0, 123, 255, 0.2);
    color: #004085;
}

.sr-badge-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: white;
}

.sr-theme-item {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.2rem;
}

.sr-theme-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6c757d;
    font-size: 1.2rem;
}

.sr-cta-button {
    background: linear-gradient(90deg, #348694 0%, #44a8b5 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 134, 148, 0.4);
    color: white;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    border-radius: 5px;
    padding: 16px 33px;
}

.sr-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 134, 148, 0.6);
    background: linear-gradient(90deg, #2a7683 0%, #3a97a5 100%);
}

.sr-benefits-list {
    list-style-type: none;
    padding: 0;
}

.sr-benefits-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.2rem;
}

.sr-benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.sr-day-header i {
    transition: transform 0.3s ease;
}

.sr-value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(52, 134, 148, 0.15);
    height: 100%;
    transition: all 0.3s ease;
    font-family: Poppins, sans-serif;
}

.sr-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: rgba(52, 134, 148, 0.3);
}

.sr-price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.sr-price-tag::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
}

.sr-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-includes-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(52, 134, 148, 0.2);
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.sr-includes-list li:last-child {
    border-bottom: none;
}

.sr-includes-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.sr-value-heading {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.sr-bonus-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--text-dark) 100%);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.sr-carousel-item .row {
    max-height: 500px;
    display: flex;
    align-items: stretch;
}

.sr-carousel-item .col-12 {
    display: flex;
}

.sr-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sveta-value-container {
    font-family: Poppins, sans-serif;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.sveta-value-content {
    padding: 3rem;
}

.sr-price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: linear-gradient(135deg, rgba(52, 134, 148, 0.1) 0%, rgba(255, 126, 95, 0.1) 100%);
    border-radius: 15px;
}

.sr-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-includes-list li {
    padding: 1.2rem 0;
    border-bottom: 1px dashed rgba(52, 134, 148, 0.2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sr-includes-list li:hover {
    background-color: rgba(52, 134, 148, 0.03);
    padding-left: 10px;
    border-radius: 10px;
}

.sr-includes-list li:last-child {
    border-bottom: none;
    padding: 1.5rem 0 0 0;
    justify-content: center;
}

.sr-includes-list i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 134, 148, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.sr-includes-list strong {
    font-size: 1.2rem;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 0.3rem;
}

.sr-course-image {
    width: 65%;
    border-radius: 10px;
}

.sr-course-btn {
    background: linear-gradient(90deg, #348694 0%, #44a8b5 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 134, 148, 0.4);
    color: white;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    border-radius: 10px;
    padding: 16px 20px;
}

.sr-course-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 134, 148, 0.6);
    background: linear-gradient(90deg, #2a7683 0%, #3a97a5 100%);
}

.sr-course-btn-white {
    /*background: rgba(255, 255, 255, 0.9);*/
    background: transparent;
    /*border: 2px solid #348694;*/
    border: transparent;
    transition: all 0.3s ease;
    /*box-shadow: 0 4px 20px rgba(52, 134, 148, 0.25);*/
    color: #2b2f32;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    border-radius: 10px;
    padding: 16px 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    font-weight: 500;
}

.sr-course-btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(90deg, transparent, rgba(52, 134, 148, 0.1), transparent);*/
    transition: left 0.7s ease;
}

.sr-course-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 134, 148, 0.35);
    background: rgba(255, 255, 255, 1);
    color: #348694;
}

.sr-course-btn-white:hover::before {
    left: 100%;
}

.sr-course-btn-white:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 134, 148, 0.3);
}

.sr-course-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #718096;
}

.sr-course-h1 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sr-course-h2 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sr-course-underline {
    text-decoration: underline;
    text-decoration-color: #348694;
    text-decoration-thickness: 5px;
}

.sr-course-card {
    padding: 16px 24px;
    background: #348694;
    border-radius: 10px;
    height: 100%;
}

.sr-course-icon-round-container {
    width: fit-content;
    height: fit-content;
    text-align: center;
    border-radius: 50%;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.15);
    padding: 5%;
}

.sr-course-icon-large{
    width: 120px;
    height: fit-content;
    margin-top: 0;
    color: #ffffff;
}

.sr-course-h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.sr-course-text-black {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 15px;
    margin-bottom: 5px;
}

.sr-course-text-white {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 5px;
}

.sr-course-text-gray {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: #718096;
    margin-top: 15px;
    margin-bottom: 5px;
}

.sr-course-underline-small {
    text-decoration: underline;
    text-decoration-color: #348694;
    text-decoration-thickness: 3px;
}

.sr-course-benefits {
    background-color: white;
}

.sr-course-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.sr-course-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.sr-course-icon-small {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.sr-course-tabs {
    margin-top: 2rem;
    height: 100%;
}

.sr-tab-active {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.sr-tabs-container {
    display: flex;
    position: relative;
    background-color: transparent;
}

.sr-tabs-container input[type="radio"] {
    display: none;
}

.sr-tab {
    display: flex;
    align-items: center;
    height: 40px;
    width: 75%;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    padding: 0 1.2rem;
    z-index: 2;
    position: relative;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
}

.sr-tab i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.sr-tab:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.sr-tabs-container input[type="radio"]:checked + .sr-tab {
    color: var(--secondary-color) !important;
    font-weight: 600;
}

.sr-glider {
    position: absolute;
    height: 40px;
    background: linear-gradient(90deg, #348694 0%, #44a8b5 100%);
    z-index: 1;
    border-radius: 10px;
    transition: 0.3s ease-out;
}

#sr-radio-1:checked ~ .sr-tabs-container .sr-glider {
    transform: translateX(0%);
    width: calc(100% / 3);
}

#sr-radio-2:checked ~ .sr-tabs-container .sr-glider {
    transform: translateX(100%);
    width: calc(100% / 3);
}

#sr-radio-3:checked ~ .sr-tabs-container .sr-glider {
    transform: translateX(200%);
    width: calc(100% / 3);
}

.sr-tab-content {
    padding: 1rem 0.5rem;
    min-height: 550px;
}

.sr-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

#sr-radio-1:checked ~ .sr-tab-content .sr-tab-pane:nth-child(1),
#sr-radio-2:checked ~ .sr-tab-content .sr-tab-pane:nth-child(2),
#sr-radio-3:checked ~ .sr-tab-content .sr-tab-pane:nth-child(3) {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sr-course-text-green-big {
    font-family: Poppins, sans-serif;
    color: #348694;
    font-size: 3rem;
}

@media (min-width: 768px) {
    .sr-course-text-green-big {
        font-size: 4rem;
    }
}

.sr-course-text-green {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 5px;
}

.sr-course-checklist-item-no-underline {
    position: relative;
    padding-bottom: 10px;
}

.sr-course-checklist-item-no-underline:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 80%;
    height: 1px;
}

.sr-course-format {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sr-format-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a9290 100%);
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.sr-format-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.sr-format-content {
    padding: 3rem;
}

.sr-format-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-format-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

.sr-format-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sr-format-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a9290 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.sr-format-text {
    flex: 1;
}

.sr-format-text strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.sr-format-note {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1) 0%, rgba(255, 156, 133, 0.1) 100%);
    border-left: 4px solid #2a9290;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .sr-format-content {
        padding: 1.5rem;
    }

    .sr-format-header {
        padding: 1.5rem;
    }

    .sr-format-title {
        font-size: 2rem;
    }

    .sr-format-item {
        flex-direction: column;
    }

    .sr-format-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.sr-pricing-container {
    font-family: Poppins, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.sr-pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sr-pricing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.sr-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sr-pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.03);
}

.sr-pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
}

.sr-pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a9290 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.sr-pricing-card.popular .sr-pricing-header {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
}

.sr-pricing-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sr-pricing-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sr-pricing-features {
    padding: 2rem;
}

.sr-pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.sr-pricing-features li:last-child {
    border-bottom: none;
}

.sr-pricing-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.sr-pricing-footer {
    margin-top: auto;
    padding: 0 2rem 2rem;
    text-align: center;
}

.sr-pricing-card.popular .sr-pricing-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff9c85 100%);
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.sr-pricing-card.popular .sr-pricing-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.4);
}

@media (max-width: 992px) {
    .sr-pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .sr-pricing-card {
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .sr-pricing-container {
        padding: 1rem;
    }

    .sr-pricing-title h2 {
        font-size: 2.2rem;
    }

    .sr-pricing-card {
        max-width: 100%;
    }
}

.sr-course-bonuses-card-header {
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    padding: 16px 36px;
}

.sr-course-bonuses-card-body {
    background: white;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    padding: 16px 36px;
    height: 100%;
}