@charset "UTF-8";
/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/
 Description:  Дочерняя тема для Hello Elementor
 Author:       Inn dev
 Author URI:   https://example.com/
 Template:     hello-elementor
 Version:      1.0.1
*/
.prices-shortcode-price {
	font-family: Unbounded;
	font-weight: 500;
	font-size: 48px;
}

@media screen and (max-width: 768px) {
	.prices-shortcode-price {
		font-size: 32px;
	}
}

.teaching-container {
  display: grid;
}
.teaching-container .teaching-item .teaching-item-img {
  border-radius: 15px;
}
.teaching-container .teaching-item .teaching-item-heading {
  font: 400 1.5rem/1.4 "Unbounded", sans-serif;
  margin: 0;
}
.teaching-container .teaching-item .teaching-item-caption {
  font: 400 1.125rem/1.4 "Montserrat", sans-serif;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .teaching-container {
    gap: 1rem;
  }
  .teaching-item {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-template-rows: 1fr auto;
    column-gap: 1rem;
    row-gap: 0.5rem;
  }
  .teaching-item .teaching-item-img {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .teaching-item .teaching-item-heading {
    grid-column: 2;
    align-self: end;
  }
  .teaching-item .teaching-item-caption {
    grid-column: 2;
    align-self: end;
  }
}
@media (min-width: 1440px) {
  .teaching-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
  .teaching-item:nth-child(2) {
    z-index: 1;
  }
  .teaching-item:nth-child(3) {
    z-index: 2;
  }
  .teaching-item:nth-child(4) {
    z-index: 3;
  }
  .teaching-item .teaching-item-heading {
    order: 0;
  }
  .teaching-item .teaching-item-img {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    order: 1;
  }
  .teaching-item .teaching-item-img:hover {
    opacity: 1;
  }
  .teaching-item .teaching-item-caption {
    order: 2;
  }
  .teaching-item:not(:first-child) {
    margin-top: -2rem;
  }
}
@media (max-width: 767px) {
  .teaching-item-heading {
    margin-bottom: 8px;
  }
  .teaching-item-caption {
    margin-bottom: 1.5rem !important;
  }
}
:root {
  --testimonial-image-bg: #18191D;
}

.block-title {
  all: unset;
  font: 500 2rem/1.4 "Unbounded", sans-serif !important;
}

.testimonial-container {
  display: grid;
  gap: 2rem;
  height: auto;
  overflow: hidden;
}

.testimonial-body,
.testimonial-item-container {
  height: 100%;
  min-height: 0;
}

.testimonial-images {
  --pad: 2.5rem;
  --cap: 500px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: var(--pad);
  max-height: var(--cap);
  background-color: var(--testimonial-image-bg);
  border-radius: 16px;
}
.testimonial-images img {
  grid-area: 1/1;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(var(--cap) - 2 * var(--pad));
  object-fit: cover;
  border-radius: 10px !important;
}
.testimonial-images .testimonial-screenshot-controls {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 0.5rem;
  justify-content: center;
}
.testimonial-images .screenshot-control {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s;
}
.testimonial-images .screenshot-control:hover {
  background: #fff;
}
.testimonial-images .screenshot-control.active {
  opacity: 1;
}
.testimonial-images .image-expand {
  position: absolute;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 1rem;
  right: 1rem;
  bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease-in-out;
}
.testimonial-images .image-expand:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.testimonial-images .image-expand svg {
  width: 18px;
  height: 18px;
}
.testimonial-images .image-expand svg path {
  stroke: #fff;
}

.image-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

/* Анимация масштабирования (необязательно) */
.image-lightbox-overlay.active img {
  transform: scale(1);
}

/* Кнопка закрытия */
.image-lightbox-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.image-lightbox-overlay .close-btn:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.testimonial-body {
  display: grid;
  gap: 2rem;
  min-height: 0;
}
.testimonial-body .testimonial-item-container {
  display: grid;
  gap: 2.5rem;
  grid-template-rows: 1fr auto;
  min-height: 0;
  overflow: hidden;
}
.testimonial-body .testimonial-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  gap: 1rem;
}
.testimonial-body .item-text-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  gap: 0.75rem;
  max-height: none;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.testimonial-body .item-text-container .item-text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  transition: none;
  font: 400 1.25rem/1.5 "Montserrat", sans-serif;
}
.testimonial-body .item-text-container .item-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.testimonial-body .author-info {
  display: flex;
  align-self: flex-start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .testimonial-body .author-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.testimonial-body .author-info:not(.has-university) {
  gap: 0;
}
.testimonial-body .author-divider {
  display: none;
  align-self: center;
  height: 6px;
  width: 6px;
  border-radius: 50px;
  background-color: #EDEDED;
}
.testimonial-body .item-author,
.testimonial-body .author-university {
  font: 300 1.25rem/1.2 "Montserrat", sans-serif;
  margin: 0 !important;
}
.testimonial-body .author-university {
  color: #EADAA2;
}
.testimonial-body .author-university:empty {
  display: none;
}
.testimonial-body .has-university .author-divider {
  display: none;
}
.testimonial-body .testimonial-controls {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.testimonial-body .testimonial-controls .testimonial-numbers {
  display: flex;
  gap: 0.5rem;
}
.testimonial-body .testimonial-controls .testimonial-numbers .number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font: 300 1rem/1.2 "Montserrat", sans-serif;
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.testimonial-body .testimonial-controls .testimonial-numbers .number-item.number-item-active {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}
.testimonial-body .testimonial-controls .testimonial-numbers .number-item:hover {
  background-color: rgba(234, 218, 162, 0.2);
  border: 1px solid #EADAA2;
}
.testimonial-body .testimonial-controls .control-arrows {
  display: flex;
  gap: 1rem;
  cursor: pointer;
}
.testimonial-body .testimonial-controls .control-arrows svg:last-child {
  transform: scale(-1);
}
.testimonial-body .testimonial-controls .control-arrows svg path {
  transition: all 0.3s ease-in-out;
}
.testimonial-body .testimonial-controls .control-arrows svg:hover path {
  fill: #EADAA2;
}

/* Chrome, Edge, Safari */
.item-text-container::-webkit-scrollbar {
  width: 8px;
}

.item-text-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.item-text-container::-webkit-scrollbar-track {
  background: transparent;
}

/* Firefox */
.item-text-container {
  scrollbar-width: thin; /* "auto" | "thin" | "none" */
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.item-text-container .item-expand-button {
  font: 500 1.25rem/1.2 "Montserrat", sans-serif;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}
.item-text-container .item-expand-button:hover {
  color: #EADAA2;
}

.testimonial-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
}

.testimonial-popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.testimonial-popup-content {
  background: #1C2722;
  color: #fff;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  font: 400 1rem/1.6 "Montserrat", sans-serif;
}

.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0 !important;
  border: none !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.popup-close:hover {
  border: none !important;
  background-color: transparent !important;
  color: #EADAA2 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  .testimonial-container {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
  }
  .testimonial-images {
    max-width: 528px;
  }
  .has-university .author-divider {
    display: block;
  }
  .testimonial-body {
    text-align: right;
    max-width: 600px;
  }
  .testimonial-body .author-info {
    align-self: flex-end;
  }
}
@media (max-width: 767px) {
  .testimonial-images {
    --cap: 400px;
    --pad: 1.5rem;
  }
  .testimonial-body {
    max-width: none;
    gap: 1rem;
  }
  .testimonial-body .testimonial-item {
    gap: 1.5rem;
  }
  .testimonial-item-container {
    gap: 2rem;
  }
  .testimonial-item-container .block-title {
    font-size: 1.5rem !important;
  }
  .testimonial-body .item-text-container .item-text {
    -webkit-line-clamp: 8;
  }
}
.faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 1rem;
  font: 500 1.125rem/1.3 "Unbounded", sans-serif;
  color: var(--e-global-color-text);
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: var(--e-global-color-e439216);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.faq-item .faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.faq-item .faq-question .faq-toggle-icon {
  font-size: 22px;
  color: #EADAA2;
}
.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-item .faq-answer .faq-answer-inner {
  padding: 24px;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .faq-item .faq-question {
    padding: 1.5rem 0;
  }
  .faq-item .faq-question:hover {
    background-color: transparent;
  }
  .faq-answer-inner {
    padding: 1.5rem 0;
    padding-bottom: 0;
  }
}
html {
  overflow-y: scroll;
}

body.popup-open {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.popupform-container {
  position: fixed;
  align-items: flex-end;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  display: none;
  padding: 1rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.popupform-close {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0 !important;
  width: 32px !important;
  height: 32px !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.popupform-close:hover {
  color: #EADAA2 !important;
  border-color: #EADAA2 !important;
}

.popupform-close-desktop {
  opacity: 0;
  position: absolute;
  right: 2%;
  top: 2%;
}

.popupform-heading-conteiner {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.popupform-close-adaptive {
  display: block;
}

.popupform-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  padding-top: env(safe-area-inset-top, 16px);
}

.popupform-heading {
  all: unset;
  display: block;
  font: 500 1.5rem/1.4 "Unbounded", sans-serif !important;
}

.form-header {
  display: grid;
  gap: 0.5rem;
}

.form-heading {
  all: unset;
  display: block;
  font: 500 1.5rem/1.2 "Unbounded", sans-serif !important;
  color: #1C2722 !important;
}

.form-caption {
  all: unset;
  display: block;
  font: 400 1rem/1.2 "Montserrat", sans-serif;
  color: #1C2722;
}

.popupform-body {
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}
.popupform-body .form-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.popupform-body .popupform-group .form-group-label {
  font: 300 0.875rem/1.2 "Montserrat", sans-serf;
  color: #1C2722;
}
.popupform-body .popupform-group .form-group-input {
  padding: 12px 16px;
  font: 300 1rem/1.2 "Montserrat", sans-serif;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  background-color: transparent;
  color: #1C2722;
}
.popupform-body .popupform-group .form-group-input::placeholder {
  color: #4D5C55;
}
.popupform-body .popupform-group #comment {
  height: 128px;
}
.popupform-body .popupform-button {
  width: 100%;
  font: 400 1rem/1.2 "Montserrat", sans-serif;
  color: #fff;
  background-color: #1C2722;
  border: 0;
  transition: all 0.4s ease-in-out;
}
.popupform-body .popupform-button:hover {
  background-color: #EADAA2;
  color: #1C2722;
  transform: translateY(-12px);
}

.form-error-global {
  display: none;
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #e63946;
  margin-bottom: 0.5rem;
}

@media (max-width: 460px) {
  .popupform-container {
    align-items: flex-start;
    overflow-y: auto;
  }
}
@media (min-width: 768px) {
  .popupform-heading {
    font-size: 2rem;
  }
}
@media (min-width: 1340px) {
  .form-heading {
    font-size: 2rem !important;
  }
  .form-caption {
    font-size: 1.125rem;
    max-width: 70%;
  }
}
@media (min-width: 1024px) {
  .popupform-container {
    justify-content: center;
    padding: 2rem;
  }
  .popupform-wrapper {
    flex-direction: row;
    max-width: 1330px;
    justify-content: space-between;
  }
  .popupform-heading {
    font-size: 2.5rem !important;
    max-width: 700px;
  }
  .popupform-heading-conteiner {
    display: block;
  }
  .popupform-close-desktop {
    opacity: 1;
  }
  .popupform-close-adaptive {
    display: none !important;
  }
  .popupform-body {
    min-width: 450px;
    max-width: 550px;
  }
  .form-group-label {
    font-size: 1rem !important;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1920px) {
  .popupform-wrapper {
    width: 100%;
    max-width: 1440px;
  }
  .popupform-heading {
    font-size: 3rem !important;
    max-width: 750px;
  }
}
/* === Off-canvas menu (для [oc_menu]) === */
:root {
  --oc-z: 9999;
}

/* Кнопка-гамбургер */
.oc-toggle {
  all: unset;
  display: block;
  width: 40px;
  padding: 8px !important;
  border-radius: 3px !important;
  border-color: transparent !important;
  background-color: transparent !important;
  cursor: pointer;
  color: inherit; /* наследует цвет текста */
}
.oc-toggle:focus {
  border-color: #fff;
}
.oc-toggle .oc-toggle-span {
  height: 2px;
  width: 100%;
  display: block;
  background-color: #fff;
}
.oc-toggle .oc-toggle-span:not(:last-child) {
  margin-bottom: 4px;
}

/* Контейнер и состояния */
.oc {
  position: fixed;
  inset: 0;
  z-index: var(--oc-z);
  pointer-events: none; /* закрыто — некликабельно */
}

.oc.is-open {
  pointer-events: auto;
}

/* Оверлей */
.oc__overlay {
  position: absolute;
  inset: 0;
  background: var(--oc-overlay, rgba(0, 0, 0, 0.55));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.oc.is-open .oc__overlay {
  opacity: 1;
}

/* Панель */
.oc__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--oc-w, 250px);
  height: 100dvh; /* корректная высота на мобилках */
  background: var(--oc-bg, #131B18);
  color: var(--oc-fg, #fff);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: max(16px, env(safe-area-inset-top)) 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.oc.is-open .oc__panel {
  transform: translateX(0);
}

/* Кнопка закрытия */
.oc__close {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  padding: 0 !important;
  border: none !important;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  height: 32px;
  width: 32px;
}

/* Меню внутри */
.oc__nav .oc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.oc__nav a {
  color: inherit;
  text-decoration: none;
}

.oc__nav a:hover {
  opacity: 0.85;
}

/* Блокировка скролла страницы, когда меню открыто */
body.oc-lock {
  overflow: hidden;
  touch-action: none;
}

/* Фокус для клавиатуры (а11y) */
.oc__panel :focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

/* Уважение к reduced motion */
@media (prefers-reduced-motion: reduce) {
  .oc__overlay, .oc__panel {
    transition: none !important;
  }
}
:root {
  --cc-content-padding: 20px;
}

body {
  overflow: hidden;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/Unbounded-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("ttf");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@supports not (height: 100dvh) {
  #hero-section {
    height: calc(var(--vh, 1vh) * 100 - 106px - 35px - 20px);
  }
  #hero-section .hero-content-wrapper {
    padding-bottom: 16px;
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
  }
  @media (max-width: 1024px) {
    #hero-section {
      height: calc(var(--vh, 1vh) * 100 - 78px - 35px);
    }
  }
}
.decorative_element {
  line-height: 0;
}

#site-header {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-br {
    display: none;
  }
}

#header-menu-container #menu-main-2,
.elementor-6 .elementor-element.elementor-element-f9c57b1 .elementskit-menu-container {
  height: auto !important;
}

#header-menu-container #menu-main-2 {
  gap: 1.5rem;
}

#nav-header .elementskit-menu-hamburger span {
  height: 2px;
}

@media (max-width: 1240px) {
  #nav-header .elementor-element-e5ab2dc {
    display: none;
  }
}
.footer-tel-input,
.footer-tel-input:focus,
.footer-button {
  all: unset !important;
}

.footer-tel-input::placeholder {
  font: 400 1.25rem/1.2 "Montserrat", sans-serif !important;
  color: #fff !important;
}

#footer-contact-form .wpcf7-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 35px;
  border: 1px solid #fff;
  border-radius: 50px;
}

.footer-button {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 24px !important;
  height: 24px !important;
}
.footer-button svg {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.wpcf7-form.submitting .footer-form-spinner {
  opacity: 1;
}
.wpcf7-form.submitting .footer-button svg {
  opacity: 0;
}

.wpcf7-response-output {
  display: none !important;
}

.footer-form-spinner {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

#wpcf7-f99-p6-o1 .wpcf7-form p:first-of-type {
  max-width: 50% !important;
}

.footer-contacts-list .elementor-icon-list-text {
  color: #fff !important;
}
.footer-contacts-list .elementor-icon-list-text:hover {
  color: #EADAA2 !important;
}

.show-popup {
  cursor: pointer;
}

.footer-input-container {
  max-width: 400px;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.study-content .elementor-image-box-wrapper {
  gap: 1rem;
}
.study-content .elementor-image-box-description {
  display: none;
}

.embla {
  overflow: hidden;
  padding-inline: var(--cc-content-padding) 0;
}

.embla__container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.embla__slide {
  flex: 0 0 200px;
  width: 200px;
  height: 128px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.embla__slide--spacer {
  min-width: var(--cc-content-padding);
  pointer-events: none;
}

.workshop-container {
  display: grid;
  gap: 1rem;
}
.workshop-container img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.workshop-container .workshop-main-img {
  align-self: stretch;
  padding-inline: var(--cc-content-padding);
  position: relative;
  overflow: hidden;
}
.workshop-container .workshop-main-img .main-img-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.workshop-container .workshop-main-img img {
  max-height: 440px;
}
.workshop-container .workshop-main-img .fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
}
.workshop-container .workshop-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.workshop-container .workshop-address a {
  font: 300 1.25rem/1.2 "Montserrat", sans-serif;
  color: #EADAA2;
}
.workshop-container .workshop-address svg path {
  fill: #EADAA2;
}
.workshop-container .workshop-address:hover a {
  color: #fff;
}
.workshop-container .workshop-address:hover svg path {
  fill: #fff;
}
.workshop-container .gallery-container .gallery-container-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.workshop-container .gallery-container .gallery-item {
  position: relative;
}
.workshop-container .gallery-container .gallery-item::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}
.workshop-container .gallery-container .gallery-item:hover::before {
  opacity: 1;
}
.workshop-container .gallery-container .gallery-item.item-active::before {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}

.workshop-divider {
  grid-column: 1/-1;
  height: 1px;
  margin-inline: var(--cc-content-padding);
  background-color: #EDEDED;
}

.workshop-info {
  display: grid;
  gap: 0.5rem;
  padding-inline: var(--cc-content-padding);
}
.workshop-info .workshop-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.workshop-info .workshop-item .item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}
.workshop-info .workshop-item .item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.workshop-info .workshop-item .item-info {
  all: unset;
  font: 400 1rem/1.4 "Montserrat", sans-serif;
}

.pricing-img {
  max-height: 250px;
}

@media (max-width: 1024px) {
  .footer-input-container {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  :root {
    --cc-content-padding: 0;
  }
  .workshop-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto;
    column-gap: 3rem;
    row-gap: 1.5rem;
  }
  .workshop-container .gallery-container {
    grid-column: 1/-1;
  }
  .workshop-container .workshop-info {
    gap: 1rem;
    padding-inline: 0 var(--cc-content-padding);
    grid-row: 1/2;
    grid-column: 2/-1;
    align-self: start;
  }
  .workshop-container .workshop-info .workshop-item:nth-child(5) {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) and (max-width: 1550px) {
  #advantages-grid-container {
    padding-inline: 50px;
  }
  .elementor-element-6b40bf73 {
    grid-template-columns: minmax(500px, 0.8fr) 0.6fr !important;
  }
  .elementor-element-6b40bf73 .elementor-heading-title {
    font-size: 28px !important;
  }
  .elementor-element-6b40bf73 .elementor-element-28789da6,
  .elementor-element-6b40bf73 .elementor-element-7836bbda,
  .elementor-element-6b40bf73 .elementor-element-397c4db3,
  .elementor-element-6b40bf73 .elementor-element-26f6d5d2 {
    padding: 24px;
  }
  .elementor-element-6b40bf73 .elementor-element-28789da6 .elementor-icon-box-description,
  .elementor-element-6b40bf73 .elementor-element-7836bbda .elementor-icon-box-description,
  .elementor-element-6b40bf73 .elementor-element-397c4db3 .elementor-icon-box-description,
  .elementor-element-6b40bf73 .elementor-element-26f6d5d2 .elementor-icon-box-description {
    font-size: 18px !important;
  }
}
@media (min-width: 1024px) and (max-width: 1440px) {
  .elementor-heading-title {
    font-size: 24px !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  :root {
    --cc-content-padding: 30px;
  }
  .study-content .elementor-image-box-wrapper .elementor-image-box-img {
    width: 45% !important;
  }
  .study-content .elementor-image-box-wrapper .elementor-image-box-content {
    width: 55%;
  }
  .study-content .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
    display: block;
  }
  .workshop-info {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .pricing-text {
    min-height: 76px;
  }
  .pricing-text p {
    margin-block-end: 0;
  }
}
@media (max-width: 460px) {
  .footer-nav-container {
    flex-direction: column !important;
  }
  .workshop-main-img {
    height: 300px;
  }
  .workshop-item .workshop-info {
    font-size: 1.125rem !important;
  }
  .hero-pills {
    width: 100% !important;
    flex-wrap: nowrap !important;
    overflow-x: scroll !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .hero-pills::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}

/*# sourceMappingURL=style.css.map */
