:root {
  --body-ff: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-fz: 16px;
  --body-lh: 1.4;
  --body-fc: var(--black);
  --body-bg: var(--white);
  --h-ff: var(--body-fc);
  --h-fw: 600;
  --h-lh: 1.2;
  --h-mb: 0 0 25px 0;
  --h1-fz: 42px;
  --h2-fz: 38px;
  --h3-fz: 32px;
  --h4-fz: 28px;
  --h5-fz: 26px;
  --h6-fz: 24px;
  --p-mb: 0 0 25px 0;
  --sec-p: 75px;
  --sec-h-mb: 35px;
  --sec-h-t-mb: 15px;
  --white: #ffffff;
  --black: #000000;
  --gray: #F6F6F6;
  --gray-low: #939393;
  --gray-deep: #888B8D;
  --bardo: #7A174D;
  --pink: #B90066;
  --pink-deep: #E30780;
  --pink-low: #9F5A7F;
  --pink-light: #EFDAE6;
  --green: #92BA00;
  --green-light: #a3c825;
}

@media (min-width: 1550px) {
  :root {
    --body-fz: 24px;
  }
}
@media screen and (max-width: 1550px) {
  :root {
    --h1-fz: 38px;
    --h2-fz: 32px;
    --h3-fz: 28px;
    --h4-fz: 26px;
    --h5-fz: 24px;
    --h6-fz: 22px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --h1-fz: 32px;
    --h2-fz: 28px;
    --h3-fz: 26px;
    --h4-fz: 24px;
    --h5-fz: 22px;
    --h6-fz: 20px;
    --sec-p: 50px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --h1-fz: 28px;
    --h2-fz: 26px;
    --h3-fz: 24px;
    --h4-fz: 22px;
    --h5-fz: 20px;
    --h6-fz: 18px;
    --sec-p: 30px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --h1-fz: 26px;
    --h2-fz: 24px;
    --h3-fz: 22px;
    --h4-fz: 20px;
    --h5-fz: 18px;
    --h6-fz: 16px;
    --sec-h-mb: 20px;
  }
}
.container {
  --bs-gutter-x: 30px;
}
@media (min-width: 1550px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1550px) {
  .container-wide {
    max-width: 1440px;
  }
}

.gy-base {
  --bs-gutter-y: 30px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-gray-deep {
  color: var(--gray-deep) !important;
}

.bg-gray-deep {
  background-color: var(--gray-deep) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.color-pink {
  color: var(--pink) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.color-bardo {
  color: var(--bardo) !important;
}

.bg-bardo {
  background-color: var(--bardo) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
}

* {
  outline-offset: 3px;
  outline-color: var(--pink);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
.h2,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

b {
  font-weight: 600;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

ol:not(.reset-list),
ul:not(.reset-list) {
  padding-left: 20px;
  margin: 0;
}
ol:not(.reset-list):not(:last-child),
ul:not(.reset-list):not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1550px) {
  ol:not(.reset-list),
  ul:not(.reset-list) {
    padding-left: 16px;
  }
}

sup {
  font-size: 60%;
}

.button {
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  gap: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 25px;
  min-height: 40px;
  color: var(--white);
  border: none;
  outline: none;
  border-radius: 10px;
  transition: opacity ease-in-out 0.2s;
}
.button:hover {
  opacity: 0.8;
}
.button-pink {
  background-color: var(--pink);
}
.button-green {
  background-color: var(--green);
}
.button-gray {
  background-color: var(--gray-low);
}
@media (max-width: 1550px) {
  .button {
    font-size: 14px;
    min-height: 35px;
    padding: 2px 20px;
  }
}
@media (max-width: 991px) {
  .button {
    font-size: 12px;
    min-height: 30px;
    padding: 1px 15px;
    border-radius: 7px;
  }
}
@media (max-width: 576px) {
  .button {
    font-size: 10px;
  }
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
}
@media (max-width: 768px) {
  .button-icon {
    width: 19px;
    height: 19px;
  }
}
.button-icon svg,
.button-icon img {
  width: 100%;
  height: 100%;
}
.button-bordered {
  color: var(--pink);
  border: 1px solid var(--pink);
  background-color: var(--white);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-size: 14px;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
@media (max-width: 1550px) {
  .button-bordered svg {
    max-width: 10px;
  }
}
@media (max-width: 991px) {
  .button-bordered-return {
    padding: 0;
    min-width: 24px;
    width: 24px;
    height: 24px;
    min-height: 24px;
    border-radius: 5px;
  }
  .button-bordered-return svg,
  .button-bordered-return img {
    max-width: 15px;
    max-height: 15px;
  }
}
.button-return {
  width: 24px;
  height: 24px;
  border: 1px solid var(--pink);
  border-radius: 5px;
}

button.button {
  text-transform: none !important;
}

.button-box {
  padding: 0;
  width: 36px;
  height: 34px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  transition: opacity ease-in-out 0.2s;
}
.button-box:hover {
  opacity: 0.8;
}
@media (max-width: 1550px) {
  .button-box {
    width: 30px;
    height: 30px;
  }
  .button-box svg {
    width: 100%;
    height: 100%;
  }
}

.return-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.return-link:hover {
  color: var(--pink);
}

.input-group:not(:last-child) {
  margin-bottom: 15px;
}
.input-line:not(:last-child) {
  margin-bottom: 30px;
}
.input-info {
  font-size: 16px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .input-info {
    font-size: 14px;
  }
}
.input-meta {
  font-size: 14px;
}
.input-label {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .input-label {
    font-size: 16px;
  }
}
.input-control {
  font-family: inherit;
  font-size: 14px;
  max-width: 100%;
  width: 100%;
  min-height: 45px;
  padding: 0 15px;
  border-radius: 5px !important;
  border: none;
  background-color: var(--gray);
  box-sizing: border-box;
  outline: none;
}
@media (max-width: 1550px) {
  .input-control {
    min-height: 30px;
    border-radius: 7px !important;
  }
}
.input-pin {
  gap: 14px;
}
.input-pin input {
  text-align: center;
  padding: 0;
  height: 80px;
  font-size: 30px;
  -moz-appearance: textfield;
}
.input-pin input::-webkit-outer-spin-button, .input-pin input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-checkbox, .input-radio {
  display: block !important;
  position: relative;
  margin-left: 0 !important;
}
.input-checkbox:not(:last-child), .input-radio:not(:last-child) {
  margin-bottom: 8px !important;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span {
  display: block;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-size: 14px;
  font-weight: 500;
}
.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.input-checkbox input[type=checkbox]:checked + span:before,
.input-checkbox input[type=radio]:checked + span:before {
  border-color: var(--pink);
}
.input-checkbox input[type=checkbox]:checked + span:after,
.input-checkbox input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-checkbox input[type=radio] + span:before {
  border-radius: 100%;
}
.input-checkbox span:before {
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 3px;
  transition: border-color ease-in-out 0.2s;
}
.input-checkbox span:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='11'%20viewBox='0%200%2014%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.75%205.70833L4.91667%208.875L12.0417%201.75'%20stroke='%23B90066'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}
.input-radio input[type=radio]:checked + span:before {
  background-color: var(--s-black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}
.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-color: var(--gray);
  background-image: url("data:image/svg+xml,%3csvg%20width='23'%20height='12'%20viewBox='0%200%2023%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M21.5%201.5L13.6213%209.37868C12.4497%2010.5503%2010.5503%2010.5503%209.37868%209.37868L1.5%201.5'%20stroke='%23B90066'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  padding-right: 40px;
}

button.button {
  text-transform: uppercase;
}

textarea.input-control {
  min-height: 130px;
  padding-top: 10px;
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .section {
    overflow: hidden;
  }
}
.section.pt-double {
  padding-top: calc(var(--sec-p) * 2);
}
.section.pb-double {
  padding-bottom: calc(var(--sec-p) * 2);
}
.section.pt-half {
  padding-top: calc(var(--sec-p) * 1.5);
}
.section.pb-half {
  padding-bottom: calc(var(--sec-p) * 1.5);
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
}
.section-title:last-child {
  margin: 0;
}
.section-inner {
  position: relative;
  z-index: 2;
}
.section-footer {
  margin-top: 40px;
}
@media (max-width: 1550px) {
  .section-footer {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .section-footer {
    margin-top: 20px;
  }
}

.modal {
  --bs-modal-width: 490px;
}
.modal-backdrop {
  --bs-backdrop-bg: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  --bs-backdrop-opacity: 1;
}
.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  background-image: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.88653%2011.9987L0.443377%202.56955C0.161125%202.28727%200.00255775%201.90441%200.00255775%201.50521C0.00255775%201.106%200.161125%200.723146%200.443377%200.440865C0.725628%200.158584%201.10844%200%201.5076%200C1.90677%200%202.28958%200.158584%202.57183%200.440865L12%209.88503L21.4282%200.440865C21.7104%200.158584%2022.0932%203.54433e-07%2022.4924%203.57407e-07C22.8916%203.60381e-07%2023.2744%200.158584%2023.5566%200.440865C23.8389%200.723146%2023.9974%201.106%2023.9974%201.50521C23.9974%201.90441%2023.8389%202.28727%2023.5566%202.56955L14.1135%2011.9987L23.5566%2021.4279C23.6971%2021.5673%2023.8086%2021.733%2023.8847%2021.9157C23.9608%2022.0984%2024%2022.2943%2024%2022.4922C24%2022.6901%2023.9608%2022.8861%2023.8847%2023.0687C23.8086%2023.2514%2023.6971%2023.4172%2023.5566%2023.5566C23.4173%2023.6971%2023.2515%2023.8086%2023.0688%2023.8847C22.8862%2023.9608%2022.6903%2024%2022.4924%2024C22.2945%2024%2022.0986%2023.9608%2021.9159%2023.8847C21.7333%2023.8086%2021.5675%2023.6971%2021.4282%2023.5566L12%2014.1124L2.57183%2023.5566C2.43249%2023.6971%202.26671%2023.8086%202.08405%2023.8847C1.9014%2023.9608%201.70548%2024%201.5076%2024C1.30973%2024%201.11381%2023.9608%200.931156%2023.8847C0.748501%2023.8086%200.58272%2023.6971%200.443377%2023.5566C0.302885%2023.4172%200.191372%2023.2514%200.115274%2023.0687C0.0391769%2022.8861%200%2022.6901%200%2022.4922C0%2022.2943%200.0391769%2022.0984%200.115274%2021.9157C0.191372%2021.733%200.302885%2021.5673%200.443377%2021.4279L9.88653%2011.9987Z'%20fill='%237A174D'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1550px) {
  .modal-close {
    width: 20px;
    height: 20px;
  }
}
.modal-close svg {
  width: 100%;
  height: 100%;
}
.modal-close {
  transition: opacity ease-in-out 0.2s;
}
.modal-close:hover {
  opacity: 0.8;
}
@media (max-width: 576px) {
  .modal-close {
    top: 15px;
    right: 15px;
  }
}
.modal-content {
  display: block;
  padding: 55px;
  box-sizing: border-box;
  background-color: var(--white);
  border: none;
  box-shadow: none;
  border-radius: 30px;
  position: relative;
  box-shadow: 6px 8px 30px rgba(11, 4, 47, 0.1);
}
@media (max-width: 576px) {
  .modal-content {
    padding: 50px 25px 25px 25px;
    border-radius: 15px;
  }
}
.modal-header {
  text-align: center;
  padding: 0;
}
.modal-header:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .modal-header:not(:last-child) {
    margin-bottom: 20px;
  }
}
.modal-header-title {
  margin-bottom: 12px;
  line-height: 1.1;
  font-size: 30px;
  color: var(--pink);
}
@media (max-width: 991px) {
  .modal-header-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .modal-header-title {
    font-size: 24px;
  }
}
.modal-header-title:last-child {
  margin: 0;
}
.modal-disclaimer-title {
  margin-bottom: 20px;
  font-size: 24px;
}
@media (max-width: 991px) {
  .modal-disclaimer-title {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .modal-disclaimer-title {
    font-size: 18px;
  }
}
.modal-disclaimer-text {
  margin-bottom: 30px;
  font-size: 20px;
}
@media (max-width: 1550px) {
  .modal-disclaimer-text {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .modal-disclaimer-text {
    font-size: 16px;
  }
}
.modal-message {
  line-height: 1.1;
  margin-bottom: 20px;
  font-size: 24px;
  padding: 20px 0;
}
@media (max-width: 1550px) {
  .modal-message {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .modal-message {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .modal-message {
    font-size: 18px;
  }
}
.modal-message.small {
  font-size: 18px;
}
.modal-tabs-buttons {
  border-radius: 6px;
  margin-bottom: 35px;
  font-size: 16px;
  background-color: var(--pink);
}
@media (max-width: 576px) {
  .modal-tabs-buttons {
    margin-bottom: 30px;
  }
}
.modal-tabs-buttons-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  color: var(--white);
  font-weight: normal;
  transition: color ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .modal-tabs-buttons-item {
    font-size: 14px;
  }
}
.modal-tabs-buttons-item span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.modal-tabs-buttons-item.current {
  color: var(--pink);
  background-color: var(--gray);
}
.modal-tabs-buttons-item.current:before {
  opacity: 1;
}
.modal-tabs-content-item:not(.current) {
  display: none;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
  top: 0 !important;
  width: auto !important;
}
.swiper-pagination-bullet {
  display: block;
  margin: 0 !important;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--gray-low);
  opacity: 0.3 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--green-light);
}
.swiper-controls {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 1550px) {
  .swiper-controls {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .swiper-controls {
    margin-top: 30px;
  }
}
.swiper-control {
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--green-light);
  transition: opacity ease-in-out 0.2s;
}
.swiper-control:hover {
  opacity: 0.8;
}
.swiper-slide {
  height: auto;
}

.rating-header {
  margin-bottom: 20px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .rating-header {
    font-size: 16px;
  }
}
.rating-items, .rating-footer {
  max-width: 580px;
  margin: 0 auto;
}
.rating-items {
  justify-content: space-between;
  margin-bottom: 10px;
}
.rating-item input {
  display: none;
}
.rating-item input:checked + span {
  background-color: var(--violet);
  color: var(--white);
}
.rating-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--violet);
  color: var(--violet);
  width: 42px;
  height: 42px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 100%;
  transition: background-color ease-in-out 0.2s, color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .rating-item span {
    width: 26px;
    height: 26px;
    font-size: 16px;
    font-weight: bold;
  }
}
.rating-footer {
  font-size: 16px;
}
@media (max-width: 576px) {
  .rating-footer {
    font-size: 12px;
  }
}

.header {
  position: relative;
  padding: 15px 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .header {
    padding-bottom: 40px;
  }
}
.header:before {
  content: "";
  width: 100%;
  height: 115%;
  background-image: url("data:image/svg+xml,%3csvg%20width='1920'%20height='199'%20viewBox='0%200%201920%20199'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7594_1446)'%3e%3cpath%20d='M93.8938%20149.87L12.8734%2015.8703C-7.27468%20-17.4528%2016.7198%20-60%2055.6604%20-60L1864.98%20-60C1903.73%20-60%201927.75%20-17.8268%201907.99%2015.5031L1828.53%20149.503C1819.52%20164.689%201803.17%20174%201785.52%20174L136.681%20174C119.178%20174%20102.95%20164.848%2093.8938%20149.87Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7594_1446'%20x='-19.4175'%20y='-85'%20width='1959.48'%20height='284'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.08%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7594_1446'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7594_1446'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
}
@media (max-width: 1550px) {
  .header:before {
    background-size: 1500px;
  }
}
@media screen and (max-width: 1400px) {
  .header:before {
    background-size: 1400px;
  }
}
@media (max-width: 1200px) {
  .header:before {
    background-size: 1100px;
  }
}
@media (max-width: 991px) {
  .header:before {
    background-size: 103%;
  }
}
.header-nav {
  padding: 20px 0 0 0;
}
@media (max-width: 1550px) {
  .header-nav {
    padding: 30px 0 0 0;
  }
}
@media (max-width: 1200px) {
  .header-nav {
    position: absolute;
    max-width: calc(100vw - 40px);
    width: 100%;
    left: 50%;
    top: calc(100% + 20px);
    max-height: calc(100vh - 100% - 30px);
    overflow-y: auto;
    transform: translate(-50%, 0);
    background-color: var(--white);
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.2));
    padding: 30px;
    box-sizing: border-box;
    transform: translate(-50%, 0);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .header-nav-inner {
    max-width: 960px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .header-nav-inner {
    max-width: 720px;
  }
}
@media (max-width: 768px) {
  .header-nav-inner {
    max-width: 540px;
  }
}
.header-nav-list {
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .header-nav-list {
    flex-direction: column;
  }
}
.header-nav-item {
  position: relative;
}
.header-nav-item:hover .header-nav-child {
  opacity: 1;
  visibility: visible;
}
.header-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .header-nav-link {
    font-size: 16px;
  }
}
.header-nav-link:hover {
  opacity: 0.8;
}
.header-nav-link-icon, .header-nav-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
}
.header-nav-link-arrow {
  transition: transform ease-in-out 0.2s;
}
.header-nav-link.active .header-nav-link-arrow {
  transform: rotate(180deg);
}
@media screen and (min-width: 1200px) {
  .header-nav-link:hover .header-nav-link-arrow {
    transform: rotate(180deg);
  }
}
.header-nav-child {
  position: absolute;
  background-color: var(--white);
  z-index: 2;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 15px 15px;
  width: 100%;
  left: 50%;
  top: 100%;
  min-width: 230px;
  overflow: hidden;
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .header-nav-child {
    min-width: 180px;
  }
}
@media (max-width: 1200px) {
  .header-nav-child {
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    box-shadow: none;
    transform: none;
    top: 0;
    left: 0;
    min-width: 100%;
    border-radius: 0;
    position: relative;
  }
}
.header-nav-child li:not(:last-child) {
  border-bottom: 1px solid var(--gray);
}
.header-nav-child .header-nav-link {
  display: flex;
  width: 100%;
  padding: 13px 20px;
  font-size: 16px;
  transition: background-color ease-in-out 0.2s;
}
.header-nav-child .header-nav-link:hover {
  background-color: var(--pink-light);
}
@media (max-width: 1550px) {
  .header-nav-child .header-nav-link {
    font-size: 14px;
  }
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
.header-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--bardo);
  position: absolute;
  border-radius: 3px;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.header-toggle span:nth-child(1) {
  top: 0;
}
.header-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header-toggle span:nth-child(3) {
  bottom: 0;
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .header-inner {
    gap: 10px;
  }
}
.header-logo {
  display: block;
  max-width: 180px;
}
@media (max-width: 1550px) {
  .header-logo {
    max-width: 140px;
  }
}
@media (max-width: 768px) {
  .header-logo {
    max-width: 90px;
  }
}
.header-lungs {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .header-lungs {
    position: absolute;
    right: 15px;
    width: 40%;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .header-lungs {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .header-lungs {
    width: auto;
  }
}
.header-lungs-icon {
  max-width: 40px;
}
@media (max-width: 1550px) {
  .header-lungs-icon {
    max-width: 30px;
  }
}
.header-lungs-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-deep);
  line-height: 1.3;
}
@media (max-width: 1550px) {
  .header-lungs-text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .header-lungs-text {
    font-size: 9px;
  }
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
@media (max-width: 1550px) {
  .header-actions {
    gap: 12px;
  }
}
@media (max-width: 991px) {
  .header-actions {
    gap: 8px;
  }
}
.header-user {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1200px) {
  .header-user {
    max-width: 200px;
  }
}
.header-user-name {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .header-user-name {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .header-user-name {
    font-size: 14px;
  }
}

.has-decor {
  position: relative;
}
.has-decor:before {
  content: "";
  width: 100%;
  height: calc(100% - 140px);
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--white);
  box-shadow: -19px -20px 25px rgba(0, 0, 0, 0.04);
  border-radius: 50px 50px 0 0;
  z-index: 2;
}
@media screen and (max-width: 1680px) {
  .has-decor:before {
    border-top-left-radius: 0;
  }
}
@media (max-width: 1200px) {
  .has-decor:before {
    height: 100%;
    border-radius: 20px 20px 0 0;
  }
}
.has-decor .section-title {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.has-decor .section-title:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  box-shadow: 0px -20px 20px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1200px) {
  .has-decor .section-title:before {
    display: none;
  }
}
.has-decor .section-title span {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  z-index: 3;
}
@media (max-width: 1550px) {
  .has-decor .section-title span {
    padding: 15px 0;
  }
}
@media (max-width: 1200px) {
  .has-decor .section-title span {
    padding: 0;
  }
}
.has-decor .section-title span:before, .has-decor .section-title span:after {
  content: "";
  width: 99px;
  height: 96%;
  position: absolute;
  top: -17px;
  background-image: url("data:image/svg+xml,%3csvg%20width='99'%20height='90'%20viewBox='0%200%2099%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9514_306)'%3e%3cg%20filter='url(%23filter0_d_9514_306)'%3e%3cpath%20d='M-2.20703%2017C15.3009%2017%2031.5337%2026.1576%2040.5879%2041.1426L57.834%2069.6857C65.0774%2081.6738%2078.0635%2089%2092.07%2089H1124C1151.61%2089%201174%20111.386%201174%20139V867C1174%20894.614%201151.61%20917%201124%20917H-1245C-1272.61%20917%20-1295%20894.614%20-1295%20867V139C-1295%20111.386%20-1272.61%2089%20-1245%2089H-760.383C-746.254%2089%20-733.174%2081.5467%20-725.971%2069.3922L-709.448%2041.5098C-700.445%2026.3167%20-684.094%2017.0001%20-666.434%2017H-2.20703Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_9514_306'%20x='-1320'%20y='-8'%20width='2519'%20height='950'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.04%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_9514_306'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_9514_306'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_9514_306'%3e%3crect%20width='99'%20height='90'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 1550px) {
  .has-decor .section-title span:before, .has-decor .section-title span:after {
    height: 121%;
  }
}
@media (max-width: 1200px) {
  .has-decor .section-title span:before, .has-decor .section-title span:after {
    display: none;
  }
}
.has-decor .section-title span:before {
  right: 100%;
  transform: scale(-1, 1);
}
.has-decor .section-title span:after {
  left: 100%;
}

.hero {
  padding-top: 30px;
}
.hero-row {
  --bs-gutter-x: 50px;
}
@media (max-width: 1550px) {
  .hero-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
  }
}
.hero-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background-color: var(--green);
  border-radius: 15px;
  position: relative;
  top: 0;
}
@media (max-width: 1200px) {
  .hero-box {
    min-height: 370px;
  }
}
@media (max-width: 991px) {
  .hero-box {
    min-height: 410px;
  }
}
@media (max-width: 768px) {
  .hero-box {
    min-height: 320px;
  }
}
@media (max-width: 576px) {
  .hero-box {
    min-height: 380px;
    max-width: 300px;
    margin: 0 auto;
  }
}
.hero-box {
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
.hero-box:hover {
  opacity: 0.8;
  top: -5px;
}
.hero-box-inner {
  flex: 1;
  padding: 40px 50px;
  box-sizing: border-box;
  color: var(--white);
  position: relative;
}
@media (max-width: 1550px) {
  .hero-box-inner {
    padding: 30px 25px;
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-inner {
    padding: 20px;
  }
}
.hero-box-inner:before {
  content: "";
  width: calc(100% + 37px);
  height: calc(100% + 58px);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -13px;
  top: -5px;
  background-image: url("data:image/svg+xml,%3csvg%20width='440'%20height='514'%20viewBox='0%200%20440%20514'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7581_108)'%3e%3cpath%20d='M410%205C418.284%205%20425%2011.7157%20425%2020V430C425%20441.046%20416.046%20450%20405%20450H215.215C203.609%20450%20192.885%20456.163%20187.082%20466.166L179.666%20478.95C176.088%20485.118%20169.497%20488.914%20162.366%20488.914H37.3564C26.4128%20488.914%2015%20481.321%2015%20470.377V20C15%2011.7157%2021.7157%205%2030%205H410Z'%20fill='%23B90066'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7581_108'%20x='0'%20y='0'%20width='440'%20height='513.914'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='10'/%3e%3cfeGaussianBlur%20stdDeviation='7.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.3%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7581_108'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7581_108'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
}
@media (max-width: 1550px) {
  .hero-box-inner:before {
    right: -12px;
    height: calc(100% + 64px);
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-inner:before {
    right: -11px;
    height: calc(100% + 54px);
    width: calc(100% + 29px);
  }
}
.hero-box-header {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
  min-height: 71px;
  display: flex;
  align-items: center;
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='68'%20viewBox='0%200%2014%2068'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.602%2067.5763C10.2482%2067.5763%2013.204%2064.5508%2013.204%2060.8187C13.204%2057.0865%2010.2482%2054.061%206.602%2054.061C2.95582%2054.061%200%2057.0865%200%2060.8187C0%2064.5508%202.95582%2067.5763%206.602%2067.5763Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2013.5153C10.2482%2013.5153%2013.204%2010.4898%2013.204%206.75763C13.204%203.02549%2010.2482%200%206.602%200C2.95582%200%200%203.02549%200%206.75763C0%2010.4898%202.95582%2013.5153%206.602%2013.5153Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2040.5458C10.2482%2040.5458%2013.204%2037.5203%2013.204%2033.7881C13.204%2030.056%2010.2482%2027.0305%206.602%2027.0305C2.95582%2027.0305%200%2030.056%200%2033.7881C0%2037.5203%202.95582%2040.5458%206.602%2040.5458Z'%20fill='%2392BA00'/%3e%3c/svg%3e");
  background-position: 0 center;
  background-repeat: no-repeat;
  padding-left: 40px;
}
@media (max-width: 1550px) {
  .hero-box-header {
    font-size: 26px;
    background-size: 10px;
    padding-left: 30px;
    min-height: 58px;
    margin-bottom: 25px;
  }
}
.hero-box-header, .hero-box-desc {
  position: relative;
  z-index: 2;
}
.hero-box-desc {
  font-size: 20px;
}
@media (max-width: 1550px) {
  .hero-box-desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .hero-box-desc {
    font-size: 16px;
  }
}
.hero-box-footer {
  text-align: right;
  padding: 15px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .hero-box-footer {
    padding: 10px 15px;
  }
}
.hero-box-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
@media screen and (max-width: 1400px) {
  .hero-box-button {
    font-size: 14px;
  }
}
.hero-img {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .hero-img {
    border-radius: 0;
    width: 100vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.hero-img-decor {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 2;
  max-width: 350px;
}
@media (max-width: 1550px) {
  .hero-img-decor {
    max-width: 250px;
  }
}
@media (max-width: 576px) {
  .hero-img-decor {
    max-width: 200px;
    bottom: 30px;
    right: 30px;
    top: inherit;
  }
}

.events-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 15px;
  color: var(--white);
  background-color: var(--gray-low);
  padding: 30px;
  box-sizing: border-box;
  line-height: 1.3;
  position: relative;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .events-box {
    min-height: 267px;
    padding: 20px;
  }
}
.events-box-title {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1550px) {
  .events-box-title {
    font-size: 26px;
  }
}
.events-box-desc {
  font-size: 28px;
  margin-bottom: 20px;
}
@media (max-width: 1550px) {
  .events-box-desc {
    font-size: 20px;
  }
}
.events-box-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events-box:hover {
  opacity: 0.8;
  top: -5px;
}
.events-slider {
  position: relative;
}
@media (max-width: 1200px) {
  .events-slider {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .events-slider {
    width: calc(100% + 15px);
  }
}
.events-slider-inner {
  padding: 5px 0;
  box-sizing: border-box;
}
.events-slider .swiper-slide {
  width: 32%;
}
@media (max-width: 1550px) {
  .events-slider .swiper-slide {
    width: 31.7%;
  }
}
@media (max-width: 768px) {
  .events-slider .swiper-slide {
    width: 70vw;
  }
}
.events-slider-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
@media (max-width: 1200px) {
  .events-slider-controls {
    position: relative;
  }
}
.events-calendar {
  height: 100%;
  border-radius: 15px;
  background-color: var(--white);
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.08);
}

@media screen and (min-width: 1200px) {
  .search {
    padding-bottom: 0;
  }
}
.search-box {
  padding: 43px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 15px;
  filter: none;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1550px) {
  .search-box {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .search-box {
    padding: 20px;
  }
}
.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1550px) {
  .search-form {
    gap: 16px;
  }
}
@media (max-width: 1200px) {
  .search-form {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .search-form {
    gap: 10px;
  }
}
.search-form-title {
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1550px) {
  .search-form-title {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .search-form-title {
    width: 100%;
  }
}
.search-form-input {
  max-width: 700px;
  background-image: url("data:image/svg+xml,%3csvg%20width='21'%20height='21'%20viewBox='0%200%2021%2021'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3ccircle%20cx='7.92453'%20cy='7.92453'%20r='6.92453'%20stroke='black'%20stroke-width='2'/%3e%3cpath%20d='M13.585%2013.5849L20.0001%2020'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: 15px center;
  background-repeat: no-repeat;
  border: none;
  padding-left: 50px;
}
@media (max-width: 1550px) {
  .search-form-input {
    background-size: 15px;
    background-position: 10px center;
    padding-left: 30px;
  }
}
@media (max-width: 1200px) {
  .search-form-input {
    max-width: inherit;
    flex: 1;
  }
}
.rec-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
@media (max-width: 1550px) {
  .rec-row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}
.rec-box {
  display: block;
  height: 100%;
  padding: 20px 30px;
  box-sizing: border-box;
  background-color: var(--white);
  text-decoration: none;
  font-size: 24px;
  line-height: 1.3;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  position: relative;
  top: 0;
  padding-right: 100px;
  box-sizing: border-box;
  min-height: 102px;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 1550px) {
  .rec-box {
    padding: 20px 50px 20px 20px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .rec-box {
    font-size: 18px;
    min-height: 120px;
  }
}
.rec-box-button {
  position: absolute;
  right: 30px;
  bottom: 20px;
}
@media (max-width: 1550px) {
  .rec-box-button {
    right: 20px;
  }
}
.rec-box:hover {
  opacity: 0.8;
  top: -5px;
}
.rec-box.active {
  color: var(--white);
  background-color: var(--pink);
}

.popular-row {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 30px;
}
@media (max-width: 1550px) {
  .popular-row {
    --bs-gutter-x: 35px;
  }
}
.popular-box {
  display: block;
  text-decoration: none;
  background-color: var(--pink);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  position: relative;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .popular-box {
    max-width: 300px;
    margin: 0 auto;
  }
}
.popular-box-inner {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 20px 50px 20px;
  box-sizing: border-box;
  gap: 20px;
}
.popular-box-inner:before {
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 85px);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -22px;
  top: -17px;
  background-image: url("data:image/svg+xml,%3csvg%20width='461'%20height='286'%20viewBox='0%200%20461%20286'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7644_2096)'%3e%3cpath%20d='M40.1025%2020C31.8183%2020%2025.1025%2026.7157%2025.1025%2035V206C25.1025%20217.046%2034.0568%20226%2045.1025%20226H219.884C231.489%20226%20242.213%20232.163%20248.016%20242.166L250.21%20245.949C253.788%20252.117%20260.379%20255.914%20267.51%20255.914H415.103C426.148%20255.914%20435.103%20246.96%20435.103%20235.914V35C435.103%2026.7157%20428.387%2020%20420.103%2020H40.1025Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7644_2096'%20x='0.102539'%20y='0'%20width='460'%20height='285.914'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7644_2096'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7644_2096'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
}
.popular-box-icon, .popular-box-text {
  position: relative;
  z-index: 2;
}
.popular-box-icon {
  max-width: 100px;
}
.popular-box-text {
  font-size: 22px;
  line-height: 1.3;
}
@media (max-width: 1550px) {
  .popular-box-text {
    font-size: 20px;
  }
}
.popular-box-footer {
  display: flex;
  align-items: flex-end;
  padding: 20px 20px 20px 45px;
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='68'%20viewBox='0%200%2014%2068'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M6.602%2067.5763C10.2482%2067.5763%2013.204%2064.5508%2013.204%2060.8187C13.204%2057.0865%2010.2482%2054.061%206.602%2054.061C2.95582%2054.061%200%2057.0865%200%2060.8187C0%2064.5508%202.95582%2067.5763%206.602%2067.5763Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2013.5153C10.2482%2013.5153%2013.204%2010.4898%2013.204%206.75763C13.204%203.02549%2010.2482%200%206.602%200C2.95582%200%200%203.02549%200%206.75763C0%2010.4898%202.95582%2013.5153%206.602%2013.5153Z'%20fill='%2392BA00'/%3e%3cpath%20d='M6.602%2040.5458C10.2482%2040.5458%2013.204%2037.5203%2013.204%2033.7881C13.204%2030.056%2010.2482%2027.0305%206.602%2027.0305C2.95582%2027.0305%200%2030.056%200%2033.7881C0%2037.5203%202.95582%2040.5458%206.602%2040.5458Z'%20fill='%2392BA00'/%3e%3c/svg%3e");
  background-position: 20px 20px;
  background-repeat: no-repeat;
  font-size: 16px;
  color: var(--white);
  gap: 10px;
}
@media (max-width: 1550px) {
  .popular-box-footer {
    font-size: 14px;
    padding: 15px 15px 15px 30px;
    background-size: 10px;
    background-position: 10px 17px;
  }
}
.popular-box-info {
  flex: 1;
}
.popular-box:hover {
  opacity: 0.8;
  top: -5px;
}

.air-datepicker.-inline- {
  width: 100%;
  border: none;
}

.air-datepicker-cell {
  border-radius: 20px;
  height: 40px;
}
@media (max-width: 1550px) {
  .air-datepicker-cell {
    height: 30px;
  }
}
@media (max-width: 1200px) {
  .air-datepicker-cell {
    height: 26px;
  }
}

.air-datepicker-cell.-selected- {
  background-color: transparent;
  border: 2px solid var(--pink);
  color: var(--black);
}

.air-datepicker-cell.-current- {
  --adp-color-current-date: var(--pink);
}

.air-datepicker-body--cells.-months- .air-datepicker-cell {
  border-radius: 0;
  border: none;
}

.air-datepicker-cell.-selected-.-current- {
  background-color: transparent;
  color: var(--pink);
}

.air-datepicker-cell.-focus-,
.air-datepicker-cell.-selected-.-focus- {
  background-color: transparent;
}

.air-datepicker-body--day-name {
  color: var(--gray-low);
}

.breadcrumbs {
  padding: 20px 0;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--gray-low);
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs-list li.start {
  position: relative;
  padding-left: 15px;
  box-sizing: border-box;
}
.breadcrumbs-list li.start:before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3csvg%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.5%204.58333L5.75%200.5L11%204.58333V11C11%2011.3094%2010.8771%2011.6062%2010.6583%2011.825C10.4395%2012.0438%2010.1428%2012.1667%209.83333%2012.1667H1.66667C1.35725%2012.1667%201.0605%2012.0438%200.841709%2011.825C0.622916%2011.6062%200.5%2011.3094%200.5%2011V4.58333Z'%20stroke='%23939393'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M4%2012.1668V6.3335H7.5V12.1668'%20stroke='%23939393'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.breadcrumbs-list li:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}
.breadcrumbs-list li:not(:last-child):after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translate(0, -50%);
  background-image: url("data:image/svg+xml,%3csvg%20width='7'%20height='11'%20viewBox='0%200%207%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.668946%209.74316L5.66895%205.24316L0.668946%200.743164'%20stroke='%23B90066'%20stroke-width='2'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
}

.faq-row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 30px;
}
.faq-box {
  background-color: var(--pink);
  height: 100%;
  box-sizing: border-box;
  border-radius: 15px;
  font-size: 16px;
  position: relative;
  top: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
.faq-box:hover {
  opacity: 0.8;
  top: -5px;
}
@media (max-width: 991px) {
  .faq-box {
    max-width: 450px;
    margin: 0 auto;
    left: 10px;
  }
}
@media (max-width: 576px) {
  .faq-box {
    max-width: 290px;
    font-size: 12px;
  }
}
.faq-box-header, .faq-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-box-header {
  gap: 30px;
  padding: 60px 30px 80px 20px;
  box-sizing: border-box;
  position: relative;
  flex: 1;
}
@media (max-width: 1200px) {
  .faq-box-header {
    padding: 30px 30px 60px 20px;
  }
}
@media (max-width: 576px) {
  .faq-box-header {
    gap: 10px;
    padding: 10px 0 19px 0;
  }
}
.faq-box-header .speaker-faqs-item-title,
.faq-box-header .speaker-faqs-item-content {
  position: relative;
  z-index: 2;
}
.faq-box-header:before {
  content: "";
  width: calc(100% + 60px);
  height: calc(100% + 85px);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='893'%20height='535'%20viewBox='0%200%20893%20535'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_d_7773_577)'%3e%3cpath%20d='M40%2020C31.7158%2020%2025%2026.7157%2025%2035V423.122C25%20434.168%2033.9543%20443.122%2045%20443.122H425.078C448.916%20443.122%20470.943%20455.78%20482.862%20476.327L493.463%20494.601C497.041%20500.769%20503.632%20504.565%20510.763%20504.565H847.136C858.181%20504.565%20867.136%20495.611%20867.136%20484.565V35C867.136%2026.7157%20860.42%2020%20852.136%2020H40Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_7773_577'%20x='0'%20y='0'%20width='892.136'%20height='534.565'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_7773_577'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_7773_577'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -22px;
  top: -17px;
}
@media (max-width: 576px) {
  .faq-box-header:before {
    width: calc(100% + 40px);
    height: calc(100% + 65px);
    right: -10px;
  }
}
.faq-box-footer {
  align-items: flex-end;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: 30px;
}
@media (max-width: 1550px) {
  .faq-box-footer {
    font-size: 16px;
    padding: 60px 30px 30px 30px;
  }
}
@media screen and (max-width: 1400px) {
  .faq-box-footer {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .faq-box-footer {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .faq-box-footer {
    font-size: 12px;
    padding: 50px 10px 10px 10px;
    min-height: 115px;
    padding: 10px;
    min-height: 80px;
  }
}
.faq-box-img {
  max-width: 260px;
  min-width: 260px;
}
@media (max-width: 1550px) {
  .faq-box-img {
    max-width: 180px;
    min-width: 180px;
  }
}
@media (max-width: 576px) {
  .faq-box-img {
    max-width: 90px;
    min-width: 90px;
  }
}
.faq-box-info {
  position: relative;
  z-index: 2;
}
.faq-box-info-name {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 1550px) {
  .faq-box-info-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .faq-box-info-name {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .faq-box-info-desc {
    padding-right: 5px;
  }
}
.faq-box-meta {
  flex: 1;
}
.faq-box-meta span {
  display: block;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 1550px) {
  .faq-box-meta span {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .faq-box-meta span {
    font-size: 12px;
    line-height: 1.15;
  }
}
@media (max-width: 576px) {
  .faq-header {
    margin-bottom: 30px;
  }
}

.speaker-title {
  padding: 40px 0 0 0;
}
.speaker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.speaker-header .section-title {
  margin: 0 auto 0 80px;
}
@media (max-width: 1550px) {
  .speaker-header .section-title {
    margin: 0 auto 0 60px;
  }
}
@media (max-width: 1200px) {
  .speaker-header .section-title {
    margin: 0 10px;
    text-align: center !important;
  }
}
.speaker-header .button {
  position: relative;
  top: -10px;
  z-index: 2;
}
@media (max-width: 1550px) {
  .speaker-header .button {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .speaker-header .button {
    top: -15px;
  }
}
.speaker-person {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .speaker-person {
    gap: 10px;
  }
}
.speaker-person-img {
  max-width: 260px;
  width: 100%;
}
@media (max-width: 1550px) {
  .speaker-person-img {
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .speaker-person-img {
    max-width: 90px;
  }
}
.speaker-person-text {
  flex: 1;
  max-width: 800px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .speaker-person-text {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .speaker-person-text {
    font-size: 14px;
  }
}
.speaker-faqs-inner, .speaker-faqs-filter {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .speaker-faqs-inner, .speaker-faqs-filter {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .speaker-faqs-inner, .speaker-faqs-filter {
    margin-bottom: 20px;
  }
}
.speaker-faqs-filter {
  padding: 0 140px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .speaker-faqs-filter {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .speaker-faqs-filter {
    padding: 0 20px;
  }
}
.speaker-faqs-item:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1550px) {
  .speaker-faqs-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .speaker-faqs-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .speaker-faqs-item:not(:last-child) {
    margin-bottom: 15px;
  }
}
.speaker-faqs-item-title {
  padding: 45px 140px 20px 140px;
  box-sizing: border-box;
  font-size: 32px;
  line-height: 1.3;
}
@media (max-width: 1550px) {
  .speaker-faqs-item-title {
    font-size: 24px;
    padding: 35px 100px 10px 50px;
  }
}
@media (max-width: 768px) {
  .speaker-faqs-item-title {
    padding: 20px 20px 30px 0;
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .speaker-faqs-item-title {
    font-size: 16px;
    line-height: 1.2;
    padding: 20px 20px 5px 0;
  }
}
.speaker-faqs-item-content {
  font-size: 18px;
  padding: 0 100px 50px 140px;
  box-sizing: border-box;
  display: none;
}
@media (max-width: 1550px) {
  .speaker-faqs-item-content {
    padding: 0 100px 30px 50px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .speaker-faqs-item-content {
    padding: 0 20px 20px 0;
  }
}
@media (max-width: 576px) {
  .speaker-faqs-item-content {
    font-size: 14px;
  }
}
.speaker-faqs-item-content *:last-child {
  margin-bottom: 0;
}
.speaker-faqs-item-footer {
  padding: 0 150px 40px 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1550px) {
  .speaker-faqs-item-footer {
    padding: 0 200px 30px 50px;
  }
}
@media (max-width: 768px) {
  .speaker-faqs-item-footer {
    padding: 0 80px 20px 0px;
  }
}
@media (max-width: 576px) {
  .speaker-faqs-item-footer {
    padding: 0 60px 20px 0px;
    z-index: 6 !important;
    pointer-events: none;
  }
}
.speaker-faqs-item-rating {
  opacity: 0;
  pointer-events: all !important;
  transition: opacity ease-in-out 0.2s;
}
.speaker-faqs-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-left: auto;
}
.speaker-faqs-item-tags span {
  font-size: 14px;
  color: var(--gray-deep);
  border: 1px solid var(--gray-deep);
  padding: 5px 10px;
  box-sizing: border-box;
  font-weight: 600;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .speaker-faqs-item-tags span {
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 6px;
  }
}
.speaker-form {
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  .speaker-form {
    margin-bottom: 40px;
  }
}
.speaker-form textarea,
.speaker-form input {
  font-size: 22px;
  min-height: 70px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1550px) {
  .speaker-form textarea,
  .speaker-form input {
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 60px;
  }
}
@media (max-width: 1200px) {
  .speaker-form textarea,
  .speaker-form input {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .speaker-form textarea,
  .speaker-form input {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .speaker-form textarea,
  .speaker-form input {
    min-height: 40px;
  }
}
.speaker-form textarea {
  min-height: 300px;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .speaker-form textarea {
    min-height: 185px;
  }
}
@media (max-width: 576px) {
  .speaker-form .button {
    font-size: 14px;
    min-height: 40px;
  }
}
@media (max-width: 576px) {
  .speaker-form .input-line:not(:last-child) {
    margin-bottom: 20px;
  }
}
.speaker-sources {
  font-size: 18px;
}
@media (max-width: 1550px) {
  .speaker-sources {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .speaker-sources {
    font-size: 14px;
  }
}

.decor-box {
  background-color: var(--pink);
  border-radius: 20px 21px 20px 20px;
}
.decor-box-content {
  position: relative;
  padding: 40px 30px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .decor-box-content {
    padding: 40px 30px 40px 0;
  }
}
.decor-box-content:before {
  content: "";
  width: calc(100% + 20px);
  height: 100%;
  right: 0;
  top: 0;
  border-radius: 20px;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  position: absolute;
  z-index: 1;
}
.decor-box-content > * {
  position: relative;
  z-index: 4;
}
.decor-box-footer {
  padding: 5px 30px;
  box-sizing: border-box;
  color: var(--white);
  position: relative;
  background-color: var(--pink);
  border-radius: 0 0 20px 20px;
  z-index: 3;
  text-align: right;
}
@media (max-width: 1550px) {
  .decor-box-footer {
    padding: 2px 30px;
  }
}
@media (max-width: 768px) {
  .decor-box-footer {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .decor-box-footer {
    padding: 10px;
  }
}
.decor-box-footer:after {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='335'%20height='83'%20viewBox='0%200%20335%2083'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9516_1279)'%3e%3crect%20width='335'%20height='83'%20fill='white'/%3e%3crect%20x='-1340'%20y='-261'%20width='1675'%20height='375'%20rx='15'%20fill='%23B90066'/%3e%3cg%20filter='url(%23filter0_d_9516_1279)'%3e%3cpath%20d='M320%20-268C328.284%20-268%20335%20-261.284%20335%20-253V1.12207C335%2012.1678%20326.046%2021.1221%20315%2021.1221H94.9248C71.0869%2021.1221%2049.0596%2033.7803%2037.1406%2054.3271L26.2881%2073.0352C22.7101%2079.2031%2016.1189%2082.9999%208.98828%2083H-1351.48C-1354.37%2083%20-1357.24%2083.0836%20-1360.09%2083.249C-1372.95%2083.9938%20-1385%2074.5225%20-1385%2061.644V-253C-1385%20-261.284%20-1378.28%20-268%20-1370%20-268H320Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_9516_1279'%20x='-1410'%20y='-288'%20width='1770'%20height='401.29'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_9516_1279'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_9516_1279'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_9516_1279'%3e%3crect%20width='335'%20height='83'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 103%;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 335px;
  height: 83px;
  z-index: 2;
}
@media (max-width: 1550px) {
  .decor-box-footer:after {
    width: 255px;
    height: 63px;
  }
}
@media (max-width: 768px) {
  .decor-box-footer:after {
    width: 190px;
    height: 33px;
  }
}
.decor-box-footer .button:not(.button-green) {
  background-color: transparent;
  color: var(--white);
  box-shadow: none;
  border-color: var(--white);
  top: -20px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .decor-box-footer .button:not(.button-green) {
    top: -20px;
    right: 16px;
    font-size: 12px;
    border-radius: 6px;
    padding-left: 12px;
    padding-right: 12px;
    position: absolute;
  }
}
.decor-box.green .decor-box-content {
  padding: 0;
}
.decor-box.green .decor-box-footer {
  background-color: var(--green-light);
  z-index: 5;
}
.decor-box.green .decor-box-footer:after {
  content: "";
  width: 141px;
  height: 81px;
  background-image: url("data:image/svg+xml,%3csvg%20width='141'%20height='81'%20viewBox='0%200%20141%2081'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9522_1291)'%3e%3crect%20width='141'%20height='81'%20fill='white'/%3e%3crect%20x='-1534'%20y='-84'%20width='1675'%20height='196'%20rx='15'%20fill='%23A3C916'/%3e%3cg%20filter='url(%23filter0_d_9522_1291)'%3e%3cpath%20d='M126%20-139C134.284%20-139%20141%20-132.284%20141%20-124V-0.876949C141%2010.1687%20132.046%2019.123%20121%2019.123H89.9004C66.0625%2019.1231%2044.0352%2031.7803%2032.1162%2052.3271L21.2637%2071.0352C17.6857%2077.2031%2011.0945%2081%203.96387%2081H-1559C-1570.05%2081%20-1579%2072.0457%20-1579%2061V-124C-1579%20-132.284%20-1572.28%20-139%20-1564%20-139H126Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_9522_1291'%20x='-1604'%20y='-159'%20width='1770'%20height='270'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_9522_1291'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_9522_1291'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_9522_1291'%3e%3crect%20width='141'%20height='81'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
@media (max-width: 768px) {
  .decor-box.green .decor-box-footer:after {
    width: 75px;
    height: 40px;
  }
}
.decor-box.green .decor-box-footer-arrow {
  width: 40px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg%20width='45'%20height='24'%20viewBox='0%200%2045%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.5%202.5L20.3787%2020.3787C21.5503%2021.5503%2023.4497%2021.5503%2024.6213%2020.3787L42.5%202.5'%20stroke='white'%20stroke-width='5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  position: absolute;
  bottom: 20px;
  right: 30px;
  z-index: 7;
  cursor: pointer;
  transition: transform ease-in-out 0.2s;
}
@media (max-width: 768px) {
  .decor-box.green .decor-box-footer-arrow {
    background-size: 70%;
    right: 10px;
    bottom: 15px;
  }
}
.decor-box.green.active .speaker-faqs-item-rating {
  opacity: 1;
}
.decor-box.green.active .decor-box-footer-arrow {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .decor-box {
    margin-left: 20px;
  }
}

.star-rating {
  direction: rtl;
  display: inline-block;
  cursor: default;
}
.star-rating input[type=radio] {
  display: none;
}
.star-rating label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .star-rating label svg {
    width: 20px;
    height: 20px;
  }
}
.star-rating path {
  transition: fill ease-in-out 0.2s;
}
.star-rating label:hover path,
.star-rating label:hover ~ label path,
.star-rating input[type=radio]:checked ~ label path {
  fill: var(--pink);
}

@media (max-width: 1200px) {
  @supports (font: -apple-system-body) {
    .faq-box-footer {
      min-height: 125px;
    }
  }
}
@media (max-width: 576px) {
  @supports (font: -apple-system-body) {
    .faq-box-footer {
      min-height: 95px;
    }
  }
}
.mask-img {
  position: relative;
  overflow: hidden;
}
.mask-img img {
  object-fit: cover;
  min-height: 240px;
}
@media (max-width: 1550px) {
  .mask-img img {
    min-height: 170px;
  }
}
@media (max-width: 576px) {
  .mask-img img {
    min-height: 80px;
    transform: scale(0.99);
  }
}
.mask-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/user-mask.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.login-links:not(:last-child), .login-return:not(:last-child) {
  margin-bottom: 35px;
}
.login-links {
  justify-content: center;
}
.login-links li {
  font-size: 32px;
  position: relative;
  line-height: 1.2;
  color: var(--pink);
}
@media (max-width: 1550px) {
  .login-links li {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .login-links li {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .login-links li {
    font-size: 14px;
  }
}
.login-links li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}
.login-links li:not(:last-child):after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  background-color: var(--gray-deep);
}
.login-links li a {
  color: var(--gray-deep);
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.login-links li a:hover {
  color: var(--pink);
}
.login-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 35px;
  box-sizing: border-box;
  border-radius: 24px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .login-box {
    padding: 25px;
  }
}
.login-box-header {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
.login-box-header:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 1550px) {
  .login-box-header:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .login-box-header:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 1550px) {
  .login-box-header {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .login-box-header {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .login-box-header {
    font-size: 18px;
  }
}
.login-box-inner {
  margin-top: auto;
}
.login-box-row {
  align-items: center;
  gap: 6px 16px;
}
@media (max-width: 768px) {
  .login-box-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.login-box-label {
  width: 150px;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-deep);
  opacity: 1;
  margin: 0;
}
@media (max-width: 1550px) {
  .login-box-label {
    font-size: 14px;
    width: 140px;
  }
}
@media (max-width: 768px) {
  .login-box-label {
    width: 100%;
    text-align: left;
  }
}
.login-box-input {
  flex: 1;
}
@media (max-width: 768px) {
  .login-box-input {
    width: 100%;
  }
}
.login-box-input .input-control {
  min-height: 45px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .login-box-input .input-control {
    min-height: 35px;
  }
}

.decor-angle {
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.decor-angle:before, .decor-angle:after {
  content: "";
  width: 17px;
  height: 100%;
  position: absolute;
  top: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='17'%20height='34'%20viewBox='0%200%2017%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9540_1684)'%3e%3cpath%20d='M1.63469%2022.9015C-0.544894%2019.2702%20-0.544896%2014.7298%201.63468%2011.0985L4.96544%205.54926C7.03217%202.10598%2010.7489%201.75633e-07%2014.759%200L149.206%200.000495911C153.217%200.000495735%20156.933%202.10647%20159%205.54975L162.331%2011.099C164.51%2014.7303%20164.51%2019.2707%20162.331%2022.902L159%2028.4512C156.933%2031.8945%20153.217%2034.0005%20149.206%2034.0005L14.759%2034C10.7489%2034%207.03218%2031.894%204.96545%2028.4507L1.63469%2022.9015Z'%20fill='%237A174D'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_9540_1684'%3e%3crect%20width='17'%20height='34'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.decor-angle:before {
  left: -5px;
}
.decor-angle:after {
  right: -5px;
  transform: scale(-1, 1);
}

.filter-item {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
}
.filter-item-header {
  display: flex;
  align-items: center;
  background-color: var(--white);
  color: var(--pink);
  border: 1px solid var(--pink);
  gap: 6px;
  cursor: pointer;
  padding: 3px 15px 3px 10px;
  box-sizing: border-box;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  transition: opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
@media (max-width: 991px) {
  .filter-item-header {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .filter-item-header {
    font-size: 14px;
    padding: 3px 8px 3px 8px;
    gap: 4px;
  }
}
@media screen and (max-width: 420px) {
  .filter-item-header {
    font-size: 12px;
    gap: 2px;
  }
}
.filter-item-header:before, .filter-item-header:after {
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='17'%20height='34'%20viewBox='0%200%2017%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9540_1684)'%3e%3cpath%20d='M1.63469%2022.9015C-0.544894%2019.2702%20-0.544896%2014.7298%201.63468%2011.0985L4.96544%205.54926C7.03217%202.10598%2010.7489%201.75633e-07%2014.759%200L149.206%200.000495911C153.217%200.000495735%20156.933%202.10647%20159%205.54975L162.331%2011.099C164.51%2014.7303%20164.51%2019.2707%20162.331%2022.902L159%2028.4512C156.933%2031.8945%20153.217%2034.0005%20149.206%2034.0005L14.759%2034C10.7489%2034%207.03218%2031.894%204.96545%2028.4507L1.63469%2022.9015Z'%20fill='%23888B8D'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_9540_1684'%3e%3crect%20width='17'%20height='34'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}
.filter-item-header-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid transparent;
}
.filter-item-header-icon img,
.filter-item-header-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .filter-item-header-icon {
    width: 14px;
    height: 14px;
    background-size: 10px;
  }
}
.filter-item-header-val {
  flex: 1;
}
.filter-item-header:hover {
  background-color: var(--pink-light);
}
.filter-item-items {
  min-width: 280px;
  position: absolute;
  background-color: var(--white);
  border-radius: 10px;
  top: 100%;
  right: 0;
  box-shadow: 0px 0px 13.9683px rgba(0, 0, 0, 0.2);
  width: 100%;
  z-index: 9;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s, top ease-in-out 0.2s;
}
.filter-item-items.active {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 5px);
}
.filter-item-items.align-top-left {
  right: inherit;
  left: 0;
}
@media screen and (min-width: 768px) {
  .filter-item-items.large {
    min-width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .filter-item-items.extra-large {
    min-width: 370px;
  }
}
.filter-item-items {
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .filter-item-items {
    padding: 15px;
  }
}
.filter-item-items-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.filter-item-items-title {
  font-size: 24px;
  flex: 1;
}
@media (max-width: 768px) {
  .filter-item-items-title {
    font-size: 20px;
  }
}
.filter-item-items-close {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity ease-in-out 0.2s;
}
.filter-item-items-close:hover {
  opacity: 0.8;
}
.filter-item-items-inner {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
  width: calc(100% + 10px);
  margin-left: -10px;
  padding: 10px;
  box-sizing: border-box;
}
.filter-item-items-inner::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.filter-item-items-inner::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: transparent;
  background-color: var(--pink-light);
}
.filter-item-items-inner::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
.filter-item-items-inner .input-checkbox input:checked + span {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  background-color: var(--pink-light);
  color: var(--pink);
}
.filter-item-items-inner .input-checkbox span {
  padding: 7px 12px 7px 42px;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color ease-in-out 0.2s, box-shadow ease-in-out 0.2s, color ease-in-out 0.2s;
}
.filter-item-items-inner .input-checkbox span:before {
  border-color: var(--pink);
}
.filter-item-items-inner .input-checkbox span:before, .filter-item-items-inner .input-checkbox span:after {
  left: 12px;
  top: 50%;
  transform: translate(0, -50%);
}
.filter-item-items-footer {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.filter-item-items-footer button {
  font-size: 14px;
  font-weight: 600;
  min-height: 42px;
  padding-left: 12px;
  padding-right: 12px;
}
.filter-item.active .filter-item-header {
  background-color: var(--pink-light);
}
.filter-item.active .filter-item-header .filter-item-header-icon {
  background-image: url("data:image/svg+xml,%3csvg%20width='14'%20height='11'%20viewBox='0%200%2014%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1.75%205.70833L4.91667%208.875L12.0417%201.75'%20stroke='%23B90066'%20stroke-width='2'%20stroke-linecap='round'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  border-color: var(--pink);
  background-color: var(--white);
}
.filter-item.active .filter-item-header .filter-item-header-icon img,
.filter-item.active .filter-item-header .filter-item-header-icon svg {
  opacity: 0;
}
@media (max-width: 1200px) {
  .filter-calendar .filter-item-items {
    left: inherit;
    right: 0;
  }
}
@media (max-width: 768px) {
  .filter-calendar {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.base-box {
  background-color: var(--white);
  border-radius: 7px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
}

.calendar-header {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .calendar-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.calendar-header .section-title {
  margin-right: 80px;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .calendar-header .section-title {
    margin-bottom: 15px !important;
  }
}
.calendar-header .filter {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  padding-bottom: 25px;
}
@media (max-width: 1200px) {
  .calendar-header .filter {
    padding-bottom: 0;
    justify-content: flex-end;
    flex: 1;
    width: 100%;
  }
}
.calendar-row {
  gap: 45px;
}
@media (max-width: 1200px) {
  .calendar-row {
    flex-direction: column;
    gap: 20px;
  }
}
.calendar-row-col:nth-child(1) {
  max-width: 480px;
  width: 100%;
}
@media (max-width: 1550px) {
  .calendar-row-col:nth-child(1) {
    max-width: 380px;
  }
}
@media screen and (max-width: 1400px) {
  .calendar-row-col:nth-child(1) {
    max-width: 320px;
  }
}
@media (max-width: 1200px) {
  .calendar-row-col:nth-child(1) {
    max-width: 100%;
  }
}
.calendar-row-col:nth-child(2) {
  flex: 1;
}
.calendar-inner {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-low);
}
@media (max-width: 1550px) {
  .calendar-inner {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .calendar-inner {
    padding-bottom: 10px;
  }
}
.calendar-inner .air-datepicker-nav {
  border-color: var(--gray-low);
}
.calendar-inner .air-datepicker-nav,
.calendar-inner .air-datepicker--content {
  padding: 20px 70px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .calendar-inner .air-datepicker-nav,
  .calendar-inner .air-datepicker--content {
    padding: 20px 50px;
  }
}
@media screen and (max-width: 1400px) {
  .calendar-inner .air-datepicker-nav,
  .calendar-inner .air-datepicker--content {
    padding: 20px 30px;
  }
}
.calendar-vals {
  padding: 30px 45px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .calendar-vals {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 1400px) {
  .calendar-vals {
    padding: 20px;
  }
}
.calendar-vals-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .calendar-vals-item {
    font-size: 14px;
  }
}
.calendar-vals-item:not(:last-child) {
  margin-bottom: 14px;
}
.calendar-vals-item span {
  display: block;
  min-width: 22px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  border: 2px solid;
  box-sizing: border-box;
}
.calendar-event {
  border-radius: 0 15px 15px 15px;
}
@media (max-width: 768px) {
  .calendar-event {
    border-radius: 15px;
  }
}
.calendar-event:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1550px) {
  .calendar-event:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .calendar-event:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .calendar-event:not(:last-child) {
    margin-bottom: 20px;
  }
}
.calendar-event-content {
  position: relative;
  padding: 20px 20px 20px 0;
}
@media (max-width: 768px) {
  .calendar-event-content {
    padding: 20px 20px 40px 20px;
  }
}
.calendar-event-content:before {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  border-radius: 15px 0 0 15px;
  background-color: var(--white);
  box-shadow: -20px 18px 25px rgba(0, 0, 0, 0.07);
}
@media (max-width: 768px) {
  .calendar-event-content:before {
    display: none;
  }
}
.calendar-event-header {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .calendar-event-header {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 12px;
  }
}
.calendar-event-tags {
  display: flex;
  flex-wrap: wrap;
  grid-area: 5px;
}
.calendar-event-tags span {
  color: var(--white);
  display: inline-block;
  padding: 6px 20px;
  box-sizing: border-box;
  background-color: var(--bardo);
  border-radius: 10px;
  margin: 0 5px;
}
.calendar-event-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 30px 0;
}
@media screen and (max-width: 1400px) {
  .calendar-event-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .calendar-event-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .calendar-event-title {
    font-size: 16px;
  }
}
.calendar-event-title a {
  text-decoration: none;
}
.calendar-event-footer {
  display: flex;
  flex: 1;
  width: 100%;
  align-items: flex-end;
  position: relative;
}
.calendar-event-point {
  background-color: var(--pink);
  color: var(--white);
  width: 45%;
  position: relative;
  border-radius: 0 0 0 15px;
  padding: 20px 20px 20px 30px;
  font-size: 14px;
}
@media screen and (max-width: 1400px) {
  .calendar-event-point {
    padding: 15px 40px 15px 20px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .calendar-event-point {
    padding: 5px 25px 5px 10px;
    font-size: 11px;
    width: 50%;
  }
}
.calendar-event-point:after {
  content: "";
  width: 75px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='75'%20height='71'%20viewBox='0%200%2075%2071'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9519_1681)'%3e%3crect%20width='75'%20height='71'%20fill='white'/%3e%3crect%20x='-517'%20y='-196'%20width='1057'%20height='267'%20rx='15'%20fill='%23B90066'/%3e%3cg%20filter='url(%23filter0_d_9519_1681)'%3e%3cpath%20d='M-524%20-230C-532.284%20-230%20-539%20-223.284%20-539%20-215V-8.38099C-539%20-3.5151%20-534.563%200.12207%20-529.697%200.12207H2.23535C20.5073%200.122088%2037.3912%209.86128%2046.5273%2025.6699L68.1436%2063.0752C72.4602%2070.5447%2079.6619%2076.6875%2088.2891%2076.6875H575C586.046%2076.6875%20595%2067.7332%20595%2056.6875V-215C595%20-223.284%20588.284%20-230%20580%20-230H-524Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_9519_1681'%20x='-564'%20y='-250'%20width='1184'%20height='356.688'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_9519_1681'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_9519_1681'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_9519_1681'%3e%3crect%20width='75'%20height='71'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 768px) {
  .calendar-event-point:after {
    width: 30px;
  }
}
.calendar-event-point span {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.calendar-event-actions {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px 16px 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .calendar-event-actions {
    gap: 10px;
    padding: 0 10px 10px 10px;
  }
}
@media (max-width: 991px) {
  .calendar-event-actions {
    position: absolute;
    right: 0;
    bottom: 0;
    flex-direction: column-reverse;
    align-items: flex-end;
  }
}
.calendar-event-actions .button {
  font-size: 15px;
  padding-left: 20px;
  padding-right: 20px;
  gap: 10px;
}
@media (max-width: 1550px) {
  .calendar-event-actions .button {
    font-size: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .calendar-event-actions .button {
    font-size: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.calendar-container {
  max-width: 1030px;
  margin: 0 auto;
}
.calendar-line {
  margin-bottom: 80px;
}
@media (max-width: 1550px) {
  .calendar-line {
    margin-bottom: 60px;
  }
}
.calendar-line-title {
  margin-bottom: 60px;
}
@media (max-width: 1550px) {
  .calendar-line-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .calendar-line-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .calendar-line-title {
    margin-bottom: 20px;
    text-align: center;
  }
}
.calendar-box-img img {
  min-width: calc(100% + 10px);
  margin-left: -10px;
  position: relative;
  z-index: -1;
  border-radius: 0 7px 7px 0;
}
@media (max-width: 991px) {
  .calendar-box-img img {
    border-radius: 7px 7px 0 0;
    min-width: 10%;
    margin-left: 0;
    margin-bottom: -10px;
  }
}
.calendar-item {
  display: flex;
  gap: 20px;
  border-radius: 20px;
}
.calendar-item a {
  text-decoration: none;
}
.calendar-item:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1550px) {
  .calendar-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .calendar-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .calendar-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.calendar-item-inner {
  flex: 1;
  padding: 20px 20px 40px 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .calendar-item-inner {
    padding: 20px;
  }
}
.calendar-item-form {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  padding: 40px 25px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .calendar-item-form {
    max-width: 300px;
  }
}
.calendar-item-header {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.calendar-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.calendar-item-meta-item {
  display: inline-flex;
  align-items: center;
  background-color: var(--bardo);
  color: var(--white);
  gap: 5px;
  border-radius: 30px;
  padding: 5px 10px;
  box-sizing: border-box;
}
.calendar-item-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-item .calendar-event-tags {
  font-weight: 500;
}
.calendar-item .calendar-event-tags .decor-angle {
  background-color: var(--pink-deep);
  padding-left: 10px;
  padding-right: 10px;
  z-index: 2;
}
.calendar-item .calendar-event-tags .decor-angle:before, .calendar-item .calendar-event-tags .decor-angle:after {
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='17'%20height='34'%20viewBox='0%200%2017%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9540_1684)'%3e%3cpath%20d='M1.63469%2022.9015C-0.544894%2019.2702%20-0.544896%2014.7298%201.63468%2011.0985L4.96544%205.54926C7.03217%202.10598%2010.7489%201.75633e-07%2014.759%200L149.206%200.000495911C153.217%200.000495735%20156.933%202.10647%20159%205.54975L162.331%2011.099C164.51%2014.7303%20164.51%2019.2707%20162.331%2022.902L159%2028.4512C156.933%2031.8945%20153.217%2034.0005%20149.206%2034.0005L14.759%2034C10.7489%2034%207.03218%2031.894%204.96545%2028.4507L1.63469%2022.9015Z'%20fill='%23E30780'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_9540_1684'%3e%3crect%20width='17'%20height='34'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  z-index: -1;
}
.calendar-item-content {
  text-align: center;
  margin: 70px 0 40px 0;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .calendar-item-content {
    padding: 0;
    margin: 30px 0;
  }
}
.calendar-item-title {
  font-size: 22px;
  font-weight: 600;
}
.calendar-item-title:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .calendar-item-title:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .calendar-item-title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .calendar-item-title {
    font-size: 18px;
  }
}
.calendar-item-desc {
  font-size: 16px;
}
@media (max-width: 576px) {
  .calendar-item-desc {
    font-size: 14px;
  }
}
.calendar-item-footer {
  text-align: right;
}
@media (max-width: 991px) {
  .calendar-item-footer {
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .has-decor-permanent:before {
    height: calc(100% - 93px);
  }
  .has-decor-permanent .section-title {
    position: relative;
    z-index: inherit;
  }
  .has-decor-permanent .section-title:before {
    content: "";
    width: 60%;
    height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: -1;
    background-image: none;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
    border-radius: 50px;
  }
  .has-decor-permanent .section-title span {
    background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='177'%20height='34'%20viewBox='0%200%20177%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9548_1686)'%3e%3cpath%20d='M162.447%208.10238L174.933%2030.1024C180.987%2040.7686%20173.282%2054%20161.018%2054L15.7142%2054C3.50856%2054%20-4.2023%2040.8828%201.73414%2030.2181L13.9803%208.21808C16.8041%203.14515%2022.1545%20-1.11402e-05%2027.9604%20-1.16834e-05L148.531%20-2.29638e-05C154.29%20-2.35026e-05%20159.604%203.09434%20162.447%208.10238Z'%20fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_9548_1686'%3e%3crect%20width='177'%20height='34'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
    background-size: 100% 100%;
    padding: 10px 35px 0 35px;
  }
}
@media (max-width: 768px) {
  .has-decor-permanent:before {
    height: calc(100% - 68px);
  }
}
@media (max-width: 576px) {
  .has-decor-permanent:before {
    height: calc(100% - 58px);
  }
  .has-decor-permanent .section-title {
    font-size: 16px;
  }
}

.event {
  overflow: inherit;
  font-size: 16px;
}
.event .button {
  font-size: 16px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 1550px) {
  .event .button {
    font-size: 14px;
  }
}
.event:before {
  height: 100%;
}
.event-title {
  padding-top: 10px;
  padding-bottom: 60px;
}
@media (max-width: 1550px) {
  .event-title {
    padding-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .event-title {
    padding-top: 30px;
  }
}
@media (max-width: 1200px) {
  .event-title {
    padding-bottom: 30px;
  }
}
.event-title-tags {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .event-title-tags {
    font-size: 14px;
  }
}
.event-title-tags .calendar-event-tags {
  gap: 5px;
}
.event-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 991px) {
  .event-inner {
    flex-direction: column;
  }
}
.event-meta {
  max-width: 256px;
  width: 100%;
}
@media (max-width: 1550px) {
  .event-meta {
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .event-meta {
    max-width: 100%;
  }
}
.event-meta-header {
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}
.event-meta-list {
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 1550px) {
  .event-meta-list {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .event-meta-list {
    justify-content: flex-end;
    width: 50%;
    margin-left: auto;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .event-meta-list {
    width: 75%;
  }
}
@media (max-width: 991px) {
  .event-meta-list li {
    line-height: 1.2;
  }
}
.event-meta-list li:not(:last-child) {
  margin-bottom: 13px;
}
@media (max-width: 991px) {
  .event-meta-list li:not(:last-child) {
    margin-bottom: 0;
    padding-right: 5px;
    margin-right: 5px;
    position: relative;
  }
  .event-meta-list li:not(:last-child):after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--gray-low);
  }
}
.event-content {
  flex: 1;
}
.event-content-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.event-content-inner *:last-child {
  margin-bottom: 0;
}
.event-content-inner, .event-content-title, .event-content-actions {
  margin-bottom: 45px;
}
@media (max-width: 1550px) {
  .event-content-inner, .event-content-title, .event-content-actions {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .event-content-inner, .event-content-title, .event-content-actions {
    margin-bottom: 20px;
  }
}
.event-content-title {
  max-width: 700px;
  font-size: 22px;
}
@media (max-width: 1550px) {
  .event-content-title {
    max-width: 600px;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .event-content-title {
    font-size: 18px;
  }
}
.event-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 768px) {
  .event-content-footer {
    text-align: center;
  }
}
.event-text {
  max-width: 700px;
}
.event-header {
  margin-bottom: 40px;
}
@media (max-width: 1550px) {
  .event-header {
    margin-bottom: 30px;
  }
}

.video {
  position: relative;
}
.video:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/video-play.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
}
@media (max-width: 1550px) {
  .video:after {
    background-size: 70px;
  }
}
@media (max-width: 768px) {
  .video:after {
    background-size: 55px;
  }
}

.lectures {
  min-height: 660px;
}
.lectures-title {
  padding: 40px 0 0 0;
}
.lectures-search {
  padding: 20px 40px;
  background-color: var(--bardo);
  color: var(--white);
  margin-bottom: 25px;
}
.lectures-search input {
  min-height: 40px;
  border-radius: 10px !important;
}
@media (max-width: 768px) {
  .lectures-search input {
    min-height: 30px;
  }
}
@media (max-width: 1200px) {
  .lectures-search {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .lectures-search {
    box-shadow: none;
    padding: 16px 16px 20px 16px;
    margin-bottom: 6px;
  }
}
.lectures-filter {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .lectures-filter {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .lectures-filter {
    gap: 3px;
  }
}
@media (max-width: 576px) {
  .lectures-filter .filter-item {
    flex: 1;
  }
}
.lectures-filter .filter-item .filter-item-header-val {
  white-space: nowrap;
}
@media (max-width: 576px) {
  .lectures-filter .filter-item .filter-item-header-val {
    font-weight: 600;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .lectures-filter .filter-item:nth-child(2) .filter-item-items {
    left: -93px;
  }
}
@media (max-width: 768px) {
  .lectures-filter .filter-item:nth-child(3) .filter-item-items {
    left: inherit;
    right: -19px;
  }
}
@media (max-width: 576px) {
  .lectures-filter .filter-item.active .filter-item-header-val {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 450px) {
  .lectures-filter .filter-item.active .filter-item-header-val {
    max-width: 71px;
  }
}
.lectures-header {
  margin-bottom: 60px;
}
@media (max-width: 1550px) {
  .lectures-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .lectures-header {
    margin-bottom: 20px;
  }
}
.lectures-row {
  --bs-gutter-y: 60px;
}
@media (max-width: 1550px) {
  .lectures-row {
    --bs-gutter-y: 40px;
  }
}
@media (max-width: 768px) {
  .lectures-row {
    --bs-gutter-y: 20px;
  }
}
.lectures-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
.lectures-box:hover {
  opacity: 0.8;
  top: -5px;
}
@media (max-width: 768px) {
  .lectures-box {
    border-radius: 13px;
  }
}
.lectures-box-img {
  position: relative;
  padding-top: 56%;
}
.lectures-box-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .lectures-box-img img {
    border-radius: 13px;
  }
}
.lectures-box-content {
  flex: 1;
  position: relative;
}
.lectures-box-content, .lectures-box-footer {
  padding: 30px 35px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .lectures-box-content, .lectures-box-footer {
    padding: 20px 25px;
  }
}
@media (max-width: 576px) {
  .lectures-box-content, .lectures-box-footer {
    padding: 16px;
  }
}
.lectures-box-footer {
  border-top: 1px solid var(--gray-low);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (max-width: 1550px) {
  .lectures-box-footer {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .lectures-box-footer {
    font-size: 12px;
  }
}
.lectures-box-meta {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: right;
  z-index: 2;
  font-size: 12px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1550px) {
  .lectures-box-meta {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .lectures-box-meta {
    border-radius: 13px 13px 0 0;
  }
}
.lectures-box-meta:before {
  content: "";
  width: 100%;
  height: 10px;
  background-color: var(--pink-deep);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.lectures-box-meta-items {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  background-color: var(--pink-deep);
  padding: 7px 12px 7px 0px;
  box-sizing: border-box;
  border-radius: 0 20px 0 0;
  position: relative;
}
@media (max-width: 1550px) {
  .lectures-box-meta-items {
    padding: 5px 8px 5px 0px;
  }
}
@media (max-width: 768px) {
  .lectures-box-meta-items {
    border-radius: 0 13px 0 0;
  }
}
.lectures-box-meta-items:before {
  content: "";
  width: 40px;
  height: 118%;
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='57'%20height='46'%20viewBox='0%200%2057%2046'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_9516_2502)'%3e%3cpath%20d='M254%200C262.284%202.0133e-08%20269%206.71573%20269%2015V45.9141H54.9902C47.8651%2045.9141%2041.2772%2042.1234%2037.6973%2035.9629L35.4912%2032.166C29.6778%2022.1626%2018.9335%2016%207.30664%2016H-281V15C-281%206.71573%20-274.284%200%20-266%200H254Z'%20fill='%23E30780'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_9516_2502'%3e%3crect%20width='57'%20height='46'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 100%;
}
.lectures-box-title {
  margin: 0;
  font-size: 20px;
}
@media (max-width: 1550px) {
  .lectures-box-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .lectures-box-title {
    font-size: 16px;
  }
}
.lectures-box-team:not(:last-child) {
  margin-bottom: 10px;
}
.lectures-box-team-name {
  font-size: 18px;
  margin-bottom: 10px;
}
@media (max-width: 1550px) {
  .lectures-box-team-name {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .lectures-box-team-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.lectures-box-label {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 7;
  background-color: var(--bardo);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 1px;
}
.lectures-box-label:before {
  left: -16px;
}
.lectures-box-label:after {
  right: -16px;
}
.lectures-box-label.bottom {
  bottom: 20px;
}
.lectures-box-label.top {
  top: 30%;
}
.lectures-box-tags {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .lectures-box-tags {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: calc(100% + 10px);
    padding: 0 10px;
    box-sizing: border-box;
  }
}
.lectures-box-tags.custom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: calc(100% + 10px);
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 !important;
}
.lectures-box-tags:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1550px) {
  .lectures-box-tags:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .lectures-box-tags:not(:last-child) {
    margin: 0;
  }
}
.lectures-box-tags span {
  display: block;
  background-color: var(--pink-low);
  color: var(--white);
  font-size: 12px;
  padding: 3px 7px;
  border-radius: 20px;
}
.lectures-slider {
  position: relative;
  overflow: inherit;
}
.lectures-slider .swiper-slide {
  transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
}
.lectures-slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0;
  visibility: hidden;
}
.lectures-slider .swiper-slide .row {
  --bs-gutter-y: 20px;
}

.lecture {
  margin-top: 60px;
  overflow: inherit;
}
@media (max-width: 1200px) {
  .lecture {
    margin-top: 30px;
  }
}
.lecture:before {
  height: 100%;
}
.lecture-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1550px) {
  .lecture-inner {
    max-width: 800px;
  }
}
.lecture-header {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}
@media (max-width: 991px) {
  .lecture-header {
    flex-direction: column;
    gap: 20px;
  }
}
.lecture-header-inner {
  display: flex;
  justify-content: space-between;
}
.lecture-header, .lecture-content {
  margin-bottom: 60px;
}
@media (max-width: 1550px) {
  .lecture-header, .lecture-content {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .lecture-header, .lecture-content {
    margin-bottom: 20px;
  }
}
.lecture-content {
  font-size: 20px;
}
@media (max-width: 1550px) {
  .lecture-content {
    font-size: 16px;
  }
}
.lecture-content p {
  margin: 0 0 15px 0;
}
.lecture-content *:last-child {
  margin-bottom: 0;
}
.lecture-title {
  flex: 1;
  margin: 0;
  font-size: 24px;
}
@media (max-width: 1550px) {
  .lecture-title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .lecture-title {
    text-align: center;
  }
}
.lecture-meta {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.lecture-video {
  margin-bottom: 15px;
}
@media screen and (min-width: 991px) {
  .lecture-video:after {
    background-size: 130px;
  }
}
@media (max-width: 991px) {
  .lecture-video {
    border-radius: 13px;
    overflow: hidden;
  }
}
.lecture-tags {
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .lecture-tags {
    position: relative;
    top: 0;
    justify-content: flex-end;
  }
}

.calendar-filter .air-datepicker-body--cells {
  gap: 2px;
}
.calendar-filter .air-datepicker-cell {
  height: 31px;
  border-radius: 100% !important;
}
.calendar-filter .air-datepicker-cell.-range-from-,
.calendar-filter .air-datepicker-cell.-range-to- {
  border-color: var(--pink);
  background-color: var(--pink-light);
}
.calendar-filter .air-datepicker-cell.-in-range- {
  background-color: var(--pink-light);
}
.calendar-filter .air-datepicker-cell.-selected- {
  border-color: var(--green-light);
  background-color: var(--green-light);
  color: var(--white);
}

.air-datepicker-nav--action {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  width: 30px;
  height: 30px;
  transition: opacity ease-in-out 0.2s;
}
.air-datepicker-nav--action[data-action=prev] {
  background-image: url("data:image/svg+xml,%3csvg%20width='37'%20height='34'%20viewBox='0%200%2037%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M35.9718%2020.5334C37.2287%2018.3469%2037.2287%2015.6531%2035.9718%2013.4666L30.2615%203.53338C29.0045%201.34691%2026.6816%20-2.33256e-06%2024.1677%20-2.11279e-06L12.747%20-1.11436e-06C10.2331%20-8.9459e-07%207.91022%201.34692%206.65328%203.53338L0.942931%2013.4666C-0.314009%2015.6531%20-0.314008%2018.3469%200.942932%2020.5334L6.65328%2030.4666C7.91022%2032.6531%2010.2331%2034%2012.747%2034L24.1677%2034C26.6816%2034%2029.0045%2032.6531%2030.2615%2030.4666L35.9718%2020.5334Z'%20fill='%2392BA00'/%3e%3cpath%20d='M20.0002%2023L14.7073%2017.7071C14.3168%2017.3166%2014.3168%2016.6834%2014.7073%2016.2929L20.0002%2011'%20stroke='white'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
}
.air-datepicker-nav--action[data-action=next] {
  background-image: url("data:image/svg+xml,%3csvg%20width='37'%20height='34'%20viewBox='0%200%2037%2034'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.942479%2013.4666C-0.314459%2015.6531%20-0.314459%2018.3469%200.94248%2020.5334L6.65283%2030.4666C7.90977%2032.6531%2010.2327%2034%2012.7466%2034L24.1673%2034C26.6812%2034%2029.0041%2032.6531%2030.261%2030.4666L35.9714%2020.5334C37.2283%2018.3469%2037.2283%2015.6531%2035.9714%2013.4666L30.261%203.53339C29.0041%201.34692%2026.6811%204.01138e-06%2024.1673%204.34151e-06L12.7466%205.8413e-06C10.2327%206.17143e-06%207.90977%201.34692%206.65283%203.53339L0.942479%2013.4666Z'%20fill='%2392BA00'/%3e%3cpath%20d='M17.5117%2011L22.8046%2016.2929C23.1951%2016.6834%2023.1951%2017.3166%2022.8046%2017.7071L17.5117%2023'%20stroke='white'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
}
.air-datepicker-nav--action svg {
  display: none;
}
.air-datepicker-nav--action:hover {
  background-color: transparent;
  opacity: 0.8 !important;
}

.air-datepicker-body--cells.-months- .air-datepicker-cell {
  border-radius: 10px !important;
}

.speaker {
  overflow: inherit;
}

.speaker-question {
  z-index: 1;
}
.speaker-question-inner {
  padding: 0 100px;
  box-sizing: border-box;
}
@media (max-width: 1550px) {
  .speaker-question-inner {
    padding: 0 60px;
  }
}
@media (max-width: 1200px) {
  .speaker-question-inner {
    padding: 0;
  }
}

.faq-speaker {
  position: relative;
  background-color: var(--white);
  border-radius: 0 15px 15px 15px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.07);
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  top: 0;
  transition: opacity ease-in-out 0.2s, top ease-in-out 0.2s;
}
@media (max-width: 991px) {
  .faq-speaker {
    margin-left: 20px;
  }
}
@media (max-width: 576px) {
  .faq-speaker {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .faq-speaker {
    font-size: 12px;
  }
}
.faq-speaker:hover {
  opacity: 0.8;
  top: -5px;
}
.faq-speaker-content {
  flex: 1;
  position: relative;
  padding: 50px 30px 105px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1550px) {
  .faq-speaker-content {
    padding: 50px 30px 80px 10px;
  }
}
@media (max-width: 576px) {
  .faq-speaker-content {
    padding: 20px 10px 50px 0;
  }
}
.faq-speaker-content:before {
  content: "";
  width: 20px;
  height: calc(100% - 60px);
  position: absolute;
  right: 100%;
  top: 0;
  border-radius: 15px 0 0 15px;
  background-color: var(--white);
  box-shadow: -20px 18px 25px rgba(0, 0, 0, 0.07);
}
@media (max-width: 1550px) {
  .faq-speaker-content:before {
    height: calc(100% - 40px);
  }
}
@media (max-width: 576px) {
  .faq-speaker-content:before {
    height: calc(100% - 30px);
  }
}
.faq-speaker-footer {
  position: relative;
  padding: 0 20px 20px 20px;
  box-sizing: border-box;
  background-color: var(--pink);
  color: var(--white);
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 576px) {
  .faq-speaker-footer {
    padding: 10px;
  }
}
.faq-speaker-footer-title {
  position: relative;
  top: -5px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1550px) {
  .faq-speaker-footer-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .faq-speaker-footer-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 420px) {
  .faq-speaker-footer-title {
    font-size: 12px;
  }
}
.faq-speaker-footer:before, .faq-speaker-footer:after {
  content: "";
  background-size: 102% 102%;
  background-repeat: no-repeat;
  position: absolute;
}
.faq-speaker-footer:before {
  width: 400px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='446'%20height='62'%20viewBox='0%200%20446%2062'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_10501_2926)'%3e%3crect%20y='-355'%20width='795'%20height='503'%20rx='15'%20fill='%23B90066'/%3e%3cg%20filter='url(%23filter0_d_10501_2926)'%3e%3cpath%20d='M-30%20-423C-38.2843%20-423%20-45%20-416.284%20-45%20-408V-19.8779C-45%20-8.83225%20-36.0457%200.12207%20-25%200.12207H355.078C378.916%200.122151%20400.943%2012.7803%20412.862%2033.3271L423.463%2051.6006C427.041%2057.7685%20433.632%2061.5654%20440.763%2061.5654H777.136C788.181%2061.5654%20797.136%2052.6111%20797.136%2041.5654V-408C797.136%20-416.284%20790.42%20-423%20782.136%20-423H-30Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_10501_2926'%20x='-70'%20y='-443'%20width='892.136'%20height='534.565'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_10501_2926'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_10501_2926'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_10501_2926'%3e%3crect%20width='446'%20height='62'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  bottom: 100%;
  left: 0;
}
@media (max-width: 1550px) {
  .faq-speaker-footer:before {
    width: 340px;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .faq-speaker-footer:before {
    width: 55%;
    height: 30px;
  }
}
.faq-speaker-footer:after {
  width: 20px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='20'%20height='12'%20viewBox='0%200%2020%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_10501_2926)'%3e%3crect%20x='-775'%20y='-405'%20width='795'%20height='503'%20rx='15'%20fill='%23B90066'/%3e%3cg%20filter='url(%23filter0_d_10501_2926)'%3e%3cpath%20d='M-805%20-473C-813.284%20-473%20-820%20-466.284%20-820%20-458V-69.8779C-820%20-58.8322%20-811.046%20-49.8779%20-800%20-49.8779H-419.922C-396.084%20-49.8778%20-374.057%20-37.2197%20-362.138%20-16.6729L-351.537%201.60059C-347.959%207.76855%20-341.368%2011.5654%20-334.237%2011.5654H2.13573C13.1814%2011.5654%2022.1357%202.61112%2022.1357%20-8.43457V-458C22.1357%20-466.284%2015.42%20-473%207.13574%20-473H-805Z'%20fill='white'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_d_10501_2926'%20x='-845'%20y='-493'%20width='892.136'%20height='534.565'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeColorMatrix%20in='SourceAlpha'%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%20127%200'%20result='hardAlpha'/%3e%3cfeOffset%20dy='5'/%3e%3cfeGaussianBlur%20stdDeviation='12.5'/%3e%3cfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.1%200'/%3e%3cfeBlend%20mode='normal'%20in2='BackgroundImageFix'%20result='effect1_dropShadow_10501_2926'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_dropShadow_10501_2926'%20result='shape'/%3e%3c/filter%3e%3cclipPath%20id='clip0_10501_2926'%3e%3crect%20width='20'%20height='12'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  bottom: 100%;
  right: 0;
  background-size: 107% 107%;
}
@media (max-width: 576px) {
  .faq-speaker-footer:after {
    width: 10px;
    height: 7px;
  }
}

.footer {
  padding: 80px 0 50px 0;
  box-sizing: border-box;
  border-bottom: 10px solid var(--pink);
  font-size: 12px;
  position: relative;
  z-index: 3;
}
.footer-single, .footer-faq {
  background-color: var(--white) !important;
}
.footer-single {
  box-shadow: -19px -20px 25px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1200px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.footer a:hover {
  color: var(--pink);
}
.footer-inner {
  margin-bottom: 30px;
}
.footer-row {
  --bs-gutter-y: 30px;
}
.footer-item.d-flex, .footer-item.d-lg-flex {
  gap: 16px 30px;
}
@media (max-width: 1200px) {
  .footer-item.d-flex, .footer-item.d-lg-flex {
    flex-direction: column;
  }
}
.footer-nav {
  column-count: 2;
}
.footer-nav li:not(:last-child) {
  margin-bottom: 16px;
}
.footer-nav li a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--pink);
}
.footer-nav.normal {
  column-count: 1;
}
@media (max-width: 1200px) {
  .footer-nav.normal {
    column-count: 2;
    column-gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer-nav.normal {
    column-gap: 10px;
  }
}
.footer-nav.custom {
  column-gap: 30px;
}
@media (max-width: 576px) {
  .footer-nav.custom {
    column-gap: 10px;
  }
}
.footer-meta {
  color: var(--gray-deep);
}