@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* fallback */
@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v251/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format("woff2");
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  font-family: "Poppins", sans-serif;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: inherit;
}

a {
  font-family: inherit;
  text-decoration: inherit;
  color: inherit;
  line-height: inherit;
  padding: inherit;
  margin: inherit;
  border: inherit;
  background-color: inherit;
  cursor: pointer;
  font-size: inherit;
}

button {
  font-family: inherit;
  text-decoration: inherit;
  color: inherit;
  line-height: inherit;
  padding: 0;
  margin: 0;
  border: inherit;
  background-color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  padding: 20px 0;
  height: 80px;
  z-index: 10000;
  position: fixed;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
.header__container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .header__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .header__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .header__container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .header__container {
    max-width: 1140px;
  }
}
.header__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: calc(100% - 45px);
  max-width: 400px;
  z-index: 1;
}
@media (min-width: 1200px) {
  .header__logo {
    width: 450px;
  }
}
.header__logo img {
  width: 100%;
  display: block;
}
.header__logo a {
  display: block;
}
.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    width: calc(100% - 300px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }
}
.header__nav-items {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  color: #06152b;
  padding: 5px 15px;
  transition: 0.3s ease all;
}
.header__nav-link--active {
  background-color: #ed8757;
  color: #fff;
}
.header__nav-link:hover {
  background-color: #ed8757;
  color: #fff;
}
.header__mobile-nav {
  width: 100%;
  height: 100vh;
  background-color: rgba(240, 240, 240, 0.95);
  backdrop-filter: blur(20px);
  right: -101%;
  top: 0;
  position: fixed;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 100px;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .header__mobile-nav {
    display: none;
  }
}
.header__mobile-nav-items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
}
.header__mobile-nav-item {
  width: 100%;
  display: block;
}
.header__mobile-nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  color: #06152b;
  padding: 5px 15px;
  transition: 0.3s ease all;
  width: 100%;
  display: block;
}
.header__mobile-nav-link--active {
  background-color: #ff9600;
  color: #fff;
}
.header__mobile-nav--active {
  right: 0;
}
.header__mobile-opener {
  width: 35px;
  height: 35px;
  background-color: #2b4a6b;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.header__mobile-opener:after {
  content: "menu";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.header__mobile-opener--active:after {
  content: "close";
}
@media (min-width: 1200px) {
  .header__mobile-opener {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 100px;
  }
}

.footer {
  width: 100%;
  background-color: #fff;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
}
@media (min-width: 1200px) {
  .footer__inner {
    padding: 50px 0;
  }
}
.footer__logo {
  width: 150px;
  height: auto;
}
.footer__logo img {
  width: 100%;
  display: block;
}
@media (min-width: 1200px) {
  .footer__logo {
    width: 220px;
  }
}

.treatments-component {
  width: 100%;
  background-color: white;
  padding: 60px 0;
}
.treatments-component__main-title {
  font-size: 30px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #2b4a6b;
  width: 100%;
  z-index: 1;
  position: relative;
}
@media (min-width: 1200px) {
  .treatments-component__main-title {
    font-size: 36px;
  }
}
.treatments-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #f6f6f6;
  font-size: 40px;
  opacity: 0.5;
  z-index: -1;
}
@media (min-width: 1200px) {
  .treatments-component__main-title-reflection {
    font-size: 72px;
    opacity: 1;
  }
}
.treatments-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .treatments-component__inner {
    flex-direction: row;
    gap: 60px 20px;
  }
}
@media (min-width: 1200px) {
  .treatments-component__inner {
    gap: 60px 20px;
  }
}
.treatments-component__box {
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .treatments-component__box {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  .treatments-component__box {
    flex: 0 0 calc(33.33% - 14px);
    height: 310px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.treatments-component__box-banner {
  width: 60px;
  height: 60px;
  transition: 0.3s ease-in-out all;
}
.treatments-component__box-banner img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.treatments-component__box-title {
  font-size: 18px;
  line-height: 135%;
  font-weight: 600;
  color: #5b9de3;
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 20px;
}
.treatments-component__box-desc {
  font-size: 16px;
  line-height: 135%;
  color: #737373;
  font-weight: 400;
  width: 100%;
  display: block;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .treatments-component__box-desc {
    font-size: 16px;
  }
}
.treatments-component__box-cta {
  width: auto;
  height: 35px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #ed8757;
  border: 1px solid transparent;
  padding: 0 15px 0 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out all;
  margin-top: 20px;
}
.treatments-component__box-cta::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icons/chevron-right.svg") center no-repeat;
  background-size: 100%;
  position: relative;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .treatments-component__box-cta {
    margin-top: auto;
  }
}
.treatments-component__box:hover .treatments-component__box-cta::after {
  transform: translateX(5px);
}
.treatments-component__box:hover .treatments-component__box-banner {
  transform: translateY(5px);
}
.treatments-component__more {
  width: 200px;
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #292929;
  background-color: #e6e6e6;
  border: 1px solid transparent;
  padding: 0 15px 0 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out all;
  margin: 50px auto 0 auto;
}
.treatments-component__more::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icons/keyboard-arrow-down.svg") center no-repeat;
  background-size: 100%;
  position: relative;
  transition: 0.3s ease-in-out all;
}
.treatments-component__more:hover {
  background-color: #cecece;
}
.treatments-component__more:hover:after {
  transform: translateX(5px);
}
@media (min-width: 1200px) {
  .treatments-component {
    padding: 120px 0;
  }
}

.our-team-component {
  width: 100%;
  background-color: white;
  padding: 60px 0;
}
.our-team-component__main-title {
  font-size: 30px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #5b9de3;
  width: 100%;
}
@media (min-width: 1200px) {
  .our-team-component__main-title {
    font-size: 36px;
  }
}
.our-team-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #f6f6f6;
  font-size: 32px;
}
@media (min-width: 1200px) {
  .our-team-component__main-title-reflection {
    font-size: 72px;
  }
}
.our-team-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .our-team-component__inner {
    flex-direction: row;
  }
}
.our-team-component__hero-banner {
  width: 100%;
  overflow: hidden;
  background: #5088C1;
  mix-blend-mode: multiply;
  position: relative;
}
.our-team-component__hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.9;
  pointer-events: none;
}
.our-team-component__hero-banner:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  z-index: 1;
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(43, 74, 107, 0) 100%);
}
.our-team-component__items {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) {
  .our-team-component__items {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: -100px;
  }
}
.our-team-component__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
@media (min-width: 1200px) {
  .our-team-component__item {
    width: calc(33.333% - 14px);
  }
}
.our-team-component__item-banner {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  z-index: 0;
  position: relative;
  overflow: hidden;
  background: #5088C1;
  background: radial-gradient(circle, rgb(80, 136, 193) 0%, rgb(43, 74, 107) 100%);
}
.our-team-component__item-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .our-team-component__item-banner {
    height: 380px;
  }
}
.our-team-component__item-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5px;
}
.our-team-component__item-content-sub-title {
  font-size: 15px;
  line-height: 125%;
  color: #2b4a6b;
  font-weight: 500;
  width: 100%;
  display: block;
  text-align: center;
}
.our-team-component__item-content-title {
  width: 100%;
  font-size: 20px;
  line-height: 125%;
  font-weight: 600;
  color: #2b4a6b;
  text-align: center;
}
.our-team-component__item-search {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
  top: calc(50% - 37.5px);
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
.our-team-component__item-search span {
  color: #fff;
  font-size: 30px;
}
.our-team-component__item:hover .our-team-component__item-search {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
@media (min-width: 1200px) {
  .our-team-component {
    padding: 120px 0;
  }
}

.technologies-component {
  width: 100%;
  background-color: #fafafa;
  padding: 60px 0;
}
.technologies-component__main-title {
  font-size: 28px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #5b9de3;
  width: 100%;
}
@media (min-width: 1200px) {
  .technologies-component__main-title {
    font-size: 36px;
  }
}
.technologies-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #f6f6f6;
  font-size: 32px;
}
@media (min-width: 1200px) {
  .technologies-component__main-title-reflection {
    font-size: 72px;
  }
}
.technologies-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .technologies-component__inner {
    flex-direction: row;
    gap: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .technologies-component__inner {
    gap: 40px 20px;
  }
}
.technologies-component__content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) {
  .technologies-component__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.technologies-component__content-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .technologies-component__content-left {
    width: 48%;
  }
}
.technologies-component__content-right {
  width: 100%;
}
@media (min-width: 1200px) {
  .technologies-component__content-right {
    width: 48%;
  }
}
.technologies-component__content p {
  font-size: 16px;
  line-height: 135%;
  color: #2b4a6b;
  font-weight: 400;
  width: 100%;
  display: block;
}
@media (min-width: 1200px) {
  .technologies-component__content p {
    font-size: 16px;
  }
}
.technologies-component__carousel {
  width: 100%;
  margin-top: 40px;
  position: relative;
}
.technologies-component__carousel-box {
  position: relative;
  overflow: hidden;
  background-color: #4d85c0;
  display: block;
  border-radius: 5px;
}
.technologies-component__carousel-box-banner {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out all;
}
.technologies-component__carousel-box-banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.technologies-component__carousel-box-search {
  width: 75px;
  height: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out all;
}
.technologies-component__carousel-box-search span {
  color: #fff;
  font-size: 30px;
}
.technologies-component__carousel-box-content {
  position: absolute;
  z-index: 1;
  padding: 20px 20px;
  bottom: 0;
}
@media (min-width: 1200px) {
  .technologies-component__carousel-box-content {
    padding: 100px 30px 30px 30px;
  }
}
.technologies-component__carousel-box-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(24, 61, 100) 50%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  z-index: 0;
}
.technologies-component__carousel-box-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(237, 135, 87) 0%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  z-index: 0;
}
.technologies-component__carousel-box-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  width: 100%;
  display: block;
  z-index: 1;
  position: relative;
}
.technologies-component__carousel-box-desc {
  font-size: 15px;
  line-height: 135%;
  color: #fff;
  font-weight: 400;
  width: 100%;
  display: block;
  margin-top: 10px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.technologies-component__carousel-box:hover .technologies-component__carousel-box-content::after {
  opacity: 0;
}
.technologies-component__carousel-box:hover .technologies-component__carousel-box-content::before {
  opacity: 1;
}
.technologies-component__carousel-box:hover .technologies-component__carousel-box-search {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.technologies-component__carousel-nav {
  position: relative;
  height: 40px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-left: auto;
  margin-top: 40px;
}
.technologies-component__carousel-shadow-l, .technologies-component__carousel-shadow-r {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 10;
  transition: 0.3s ease-in-out all;
}
@media (max-width: 1200px) {
  .technologies-component__carousel-shadow-l, .technologies-component__carousel-shadow-r {
    display: none;
  }
}
.technologies-component__carousel-shadow-l {
  left: 0;
  background: #fafafa;
  background: linear-gradient(90deg, #fafafa 0%, rgba(255, 255, 255, 0) 100%);
}
.technologies-component__carousel-shadow-r {
  right: 0;
  background: #fff;
  background: linear-gradient(-90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 1200px) {
  .technologies-component__carousel .swiper-wrapper {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .technologies-component {
    padding: 120px 0;
  }
}

.faq-component {
  width: 100%;
  background-color: white;
  padding: 60px 0;
}
.faq-component__main-title {
  font-size: 28px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #608fbf;
  width: 100%;
}
@media (min-width: 1200px) {
  .faq-component__main-title {
    font-size: 36px;
  }
}
.faq-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #608fbf;
  opacity: 0.05;
  font-size: 40px;
  line-height: 100%;
  text-align: right;
}
@media (min-width: 1200px) {
  .faq-component__main-title-reflection {
    font-size: 72px;
    opacity: 0.15;
  }
}
.faq-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}
@media (min-width: 992px) {
  .faq-component__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .faq-component__inner {
    margin-top: 80px;
  }
}
.faq-component__box {
  width: 100%;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #b5c8db;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .faq-component__box {
    padding: 20px 30px;
  }
}
.faq-component__box-question {
  font-size: 18px;
  line-height: 135%;
  font-weight: 600;
  color: #608fbf;
  line-height: -0.5px;
  padding: 10px 0;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .faq-component__box-question {
    font-size: 18px;
  }
}
.faq-component__box-answer {
  font-size: 15px;
  font-weight: 400;
  color: #6e6e6e;
  line-height: 135%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  will-change: max-height, opacity;
}
.faq-component__box-answer--active {
  opacity: 1;
  max-height: 500px;
}
@media (min-width: 1200px) {
  .faq-component__box-answer {
    font-size: 16px;
  }
}
.faq-component__box-inner {
  width: calc(100% - 25px);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  padding-left: 15px;
}
.faq-component__box:before {
  content: "add";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 1;
  color: #1bc1ff;
  transition: transform 0.3s ease;
  background-color: white;
  border-radius: 100px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-component__box--active:before {
  content: "remove";
}
.faq-component__box:hover {
  background-color: rgba(91, 157, 227, 0.1);
}
@media (min-width: 1200px) {
  .faq-component {
    padding: 120px 0;
  }
}

.information-box-component {
  width: calc(100% + 30px);
  margin-left: -15px;
  background-color: #2b4a6b;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.information-box-component h1 {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 125%;
}
@media (min-width: 1200px) {
  .information-box-component h1 {
    font-size: 32px;
  }
}
.information-box-component h3 {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 125%;
}
@media (min-width: 1200px) {
  .information-box-component h3 {
    font-size: 20px;
  }
}
.information-box-component p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 135%;
}
@media (min-width: 1200px) {
  .information-box-component p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .information-box-component {
    padding: 75px 100px;
    width: 100%;
    margin-left: inherit;
    gap: 30px;
    border-radius: 5px;
    background-color: rgba(43, 74, 107, 0.8);
    backdrop-filter: blur(5px);
  }
}

.hero-video-component {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: calc(50vh - 80px);
}
@media (min-width: 1200px) {
  .hero-video-component {
    height: calc(100vh - 80px);
  }
}
.hero-video-component__inner {
  width: 100%;
  height: 100%;
}
.hero-video-component__poster {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.hero-video-component__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-component__poster:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b9de3;
  background: linear-gradient(20deg, rgb(91, 157, 227) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-video-component__poster--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero-video-component__poster--desktop {
    display: block;
  }
}
.hero-video-component__poster--mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero-video-component__poster--mobile {
    display: none;
  }
}
.hero-video-component__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 10;
  background-color: rgba(43, 74, 107, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero-video-component__play span {
  font-size: 80px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .hero-video-component__play span {
    font-size: 150px;
  }
}
.hero-video-component__play--relative {
  position: relative;
  transform: translate(0, 0);
  top: inherit;
  left: inherit;
  width: 60px;
  height: 60px;
}
.hero-video-component__play--relative span {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .hero-video-component__play {
    width: 150px;
    height: 150px;
  }
}
.hero-video-component__content {
  position: absolute;
  max-width: 600px;
  width: 100%;
  z-index: 1;
  bottom: 0;
  padding: 25px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1200px) {
  .hero-video-component__content {
    padding: 100px 0;
  }
}
.hero-video-component__content-title {
  position: relative;
  color: #fff;
  font-size: 20px;
  line-height: 125%;
  font-weight: 600;
  width: 100%;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1200px) {
  .hero-video-component__content-title {
    font-size: 36px;
  }
}
.hero-video-component__content-description {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 125%;
  font-weight: 400;
  width: 100%;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1200px) {
  .hero-video-component__content-description {
    font-size: 18px;
  }
}

.hero-video-form-component {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .hero-video-form-component {
    height: calc(100vh - 80px);
    max-height: 700px;
  }
}
.hero-video-form-component__inner {
  width: 100%;
  height: 100%;
}
.hero-video-form-component__poster {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.hero-video-form-component__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-form-component__poster:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b9de3;
  background: linear-gradient(20deg, rgb(91, 157, 227) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-video-form-component__poster--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero-video-form-component__poster--desktop {
    display: block;
  }
}
.hero-video-form-component__poster--mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero-video-form-component__poster--mobile {
    display: none;
  }
}
.hero-video-form-component__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 10;
  background-color: rgba(43, 74, 107, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hero-video-form-component__play span {
  font-size: 80px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .hero-video-form-component__play span {
    font-size: 150px;
  }
}
.hero-video-form-component__play--relative {
  position: relative;
  transform: translate(0, 0);
  top: inherit;
  left: inherit;
  width: 60px;
  height: 60px;
}
.hero-video-form-component__play--relative span {
  font-size: 50px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .hero-video-form-component__play {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 100px));
  }
}
.hero-video-form-component__content {
  position: relative;
  width: calc(100% + 30px);
  margin-left: -15px;
  z-index: 1;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #5a9adb;
}
@media (min-width: 1200px) {
  .hero-video-form-component__content {
    padding: 0 0 100px 0;
    position: absolute;
    bottom: 0;
    background-color: transparent;
    max-width: 600px;
    width: 100%;
  }
}
.hero-video-form-component__content-title {
  position: relative;
  color: #fff;
  font-size: 20px;
  line-height: 125%;
  font-weight: 600;
  width: 100%;
}
@media (min-width: 1200px) {
  .hero-video-form-component__content-title {
    font-size: 36px;
  }
}
.hero-video-form-component__content-description {
  position: relative;
  color: #fff;
  font-size: 14px;
  line-height: 125%;
  font-weight: 400;
  width: 100%;
}
@media (min-width: 1200px) {
  .hero-video-form-component__content-description {
    font-size: 18px;
  }
}
.hero-video-form-component__form {
  position: relative;
  z-index: 1;
  width: calc(100% + 30px);
  margin-left: -15px;
}
@media (min-width: 1200px) {
  .hero-video-form-component__form {
    position: absolute;
    max-width: 400px;
    top: 50%;
    transform: translateY(-50%);
    right: calc((100% - 1140px) / 2);
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-video-autoplay-component {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: calc(50vh - 80px);
}
@media (min-width: 1200px) {
  .hero-video-autoplay-component {
    height: calc(100vh - 80px);
  }
}
.hero-video-autoplay-component__poster {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.hero-video-autoplay-component__poster video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-autoplay-component__poster:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b9de3;
  background: linear-gradient(20deg, rgb(91, 157, 227) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-video-autoplay-component__inner {
  width: 100%;
  height: 100%;
}

.about-us-component {
  width: 100%;
  background-color: #5b9de3;
  padding: 40px 0;
}
.about-us-component__main-title {
  font-size: 28px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #fff;
  width: 100%;
}
@media (min-width: 1200px) {
  .about-us-component__main-title {
    font-size: 36px;
  }
}
.about-us-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #fff;
  opacity: 0.08;
  font-size: 32px;
}
@media (min-width: 1200px) {
  .about-us-component__main-title-reflection {
    font-size: 72px;
    opacity: 0.25;
  }
}
.about-us-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (min-width: 992px) {
  .about-us-component__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .about-us-component__inner {
    margin-top: 80px;
  }
}
.about-us-component__banner {
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about-us-component__banner {
    width: 45%;
  }
}
.about-us-component__banner img {
  display: block;
  width: 100%;
}
.about-us-component__banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b9de3;
  background: linear-gradient(0deg, #5b9de3 1%, rgba(255, 255, 255, 0) 100%);
}
.about-us-component__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .about-us-component__content {
    width: 45%;
    gap: 30px;
  }
}
.about-us-component__content h5 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 135%;
}
@media (min-width: 1200px) {
  .about-us-component__content h5 {
    font-size: 27px;
  }
}
.about-us-component__content p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 135%;
}
@media (min-width: 1200px) {
  .about-us-component__content p {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .about-us-component {
    padding: 80px 0;
  }
}

.full-video-component {
  width: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .full-video-component {
    height: calc(100vh - 80px);
  }
}
.full-video-component__inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .full-video-component__inner {
    justify-content: flex-end;
  }
}
.full-video-component__poster {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.full-video-component__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.full-video-component__poster:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #5b9de3;
  background: linear-gradient(0deg, rgb(91, 157, 227) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1200px) {
  .full-video-component__poster {
    display: none;
  }
}
@media (min-width: 1200px) {
  .full-video-component__poster {
    position: absolute;
  }
}
.full-video-component__poster--desktop {
  display: none;
}
@media (min-width: 768px) {
  .full-video-component__poster--desktop {
    display: block;
  }
}
.full-video-component__poster--mobile {
  display: block;
}
@media (min-width: 768px) {
  .full-video-component__poster--mobile {
    display: none;
  }
}
.full-video-component__play {
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  width: 80px;
  height: 80px;
  z-index: 10;
  background-color: rgba(43, 74, 107, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.full-video-component__play span {
  font-size: 80px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .full-video-component__play span {
    font-size: 150px;
  }
}
@media (min-width: 1200px) {
  .full-video-component__play {
    width: 150px;
    height: 150px;
    position: absolute;
  }
}
.full-video-component__banner img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .full-video-component__banner {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .full-video-component__banner {
    display: none;
  }
}
.full-video-component__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background-color: #5b9de3;
  border-radius: 5px;
  padding: 15px;
}
@media (min-width: 1200px) {
  .full-video-component__content {
    max-width: 500px;
    background-color: transparent;
    padding: 0;
    padding-bottom: 10%;
  }
}
.full-video-component__title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
}
@media (min-width: 992px) {
  .full-video-component__title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .full-video-component__title {
    font-size: 32px;
  }
}
.full-video-component__desc {
  color: #fff;
  font-size: 16px;
  line-height: 135%;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .full-video-component__desc {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .full-video-component__desc {
    font-size: 18px;
  }
}

.list-video-component {
  width: 100%;
  background-color: #284566;
  padding: 40px 0;
}
.list-video-component__main-title {
  font-size: 24px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #fff;
  width: 100%;
  display: block;
  z-index: 1;
}
@media (min-width: 1200px) {
  .list-video-component__main-title {
    font-size: 34px;
  }
}
.list-video-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #41658b;
  font-size: 28px;
  line-height: 115%;
  opacity: 0.3;
  z-index: -1;
}
@media (min-width: 1200px) {
  .list-video-component__main-title-reflection {
    font-size: 70px;
    opacity: 1;
  }
}
.list-video-component__inner {
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) {
  .list-video-component__inner {
    flex-direction: row;
    gap: 0;
    margin-top: 100px;
  }
}
.list-video-component__poster {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: red;
  border-radius: 5px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 0 50px 0 #001d55;
}
@media (min-width: 1200px) {
  .list-video-component__poster {
    width: 48%;
  }
}
.list-video-component__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.list-video-component__poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 10;
  background-color: rgba(43, 74, 107, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list-video-component__poster-play span {
  font-size: 60px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .list-video-component__poster-play span {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .list-video-component__poster-play {
    width: 70px;
    height: 70px;
  }
}
.list-video-component__items {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .list-video-component__items {
    width: 48%;
    padding: 20px;
    border-radius: 10px;
  }
}
.list-video-component__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #2b4a6b;
  border: 1px solid #5b9de3;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
  cursor: pointer;
  padding: 5px 0;
}
@media (min-width: 1200px) {
  .list-video-component__item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0;
  }
}
.list-video-component__item-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out all;
}
.list-video-component__item-icon span {
  font-size: 30px;
  color: #fff;
  transition: 0.3s ease-in-out all;
}
@media (min-width: 1200px) {
  .list-video-component__item-icon {
    width: 70px;
    height: 50px;
  }
}
.list-video-component__item-title {
  width: calc(100% - 50px);
  line-height: 135%;
  text-align: left;
  transition: 0.3s ease-in-out all;
  padding-right: 5px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) {
  .list-video-component__item-title {
    width: calc(100% - 70px);
    line-height: 125%;
  }
}
.list-video-component__item-title strong {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: block;
}
@media (min-width: 1200px) {
  .list-video-component__item-title strong {
    font-size: 16px;
    padding-right: 10px;
  }
}
.list-video-component__item-title p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  opacity: 0.85;
}
.list-video-component__item:hover {
  background-color: #5b9de3;
}
.list-video-component__item:hover .list-video-component__item-title {
  color: #fff;
}
.list-video-component__item:hover .list-video-component__item-icon span {
  transform: translateX(5px);
}
.list-video-component__item--active {
  background-color: #5b9de3;
}
.list-video-component__item--active .list-video-component__item-title {
  color: #fff;
}
@media (min-width: 1200px) {
  .list-video-component {
    padding: 80px 0;
  }
}

.list-video-carousel-component {
  width: 100%;
  background-color: #284566;
  padding: 40px 0;
}
.list-video-carousel-component__main-title {
  font-size: 24px;
  line-height: 125%;
  position: relative;
  text-align: left;
  font-weight: 600;
  color: #fff;
  width: 100%;
  display: block;
  z-index: 1;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__main-title {
    font-size: 34px;
  }
}
.list-video-carousel-component__main-title-reflection {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 600;
  color: #41658b;
  font-size: 28px;
  line-height: 115%;
  opacity: 0.3;
  z-index: -1;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__main-title-reflection {
    font-size: 70px;
    opacity: 1;
  }
}
.list-video-carousel-component__inner {
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__inner {
    flex-direction: row;
    gap: 0;
    margin-top: 100px;
  }
}
.list-video-carousel-component__carousel {
  width: calc(100% + 0px);
  overflow-x: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .list-video-carousel-component__carousel {
    width: 100%;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .list-video-carousel-component__carousel {
    width: 100%;
    margin-left: 0;
  }
}
.list-video-carousel-component__carousel-nav {
  position: relative;
  height: 40px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  margin-left: auto;
  margin-top: 20px;
}
.list-video-carousel-component__box {
  width: 100%;
  position: relative;
  border-radius: 5px;
}
.list-video-carousel-component__banner {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.list-video-carousel-component__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.list-video-carousel-component__banner-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  z-index: 10;
  background-color: rgba(43, 74, 107, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.9);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.list-video-carousel-component__banner-icon span {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__banner-icon span {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .list-video-carousel-component__banner-icon {
    width: 70px;
    height: 70px;
  }
}
.list-video-carousel-component__content {
  margin-top: -10px;
  z-index: 1;
  background-color: rgba(91, 157, 227, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 0px 2.5px;
  text-align: center;
  position: relative;
  min-height: 80px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list-video-carousel-component__content strong {
  font-weight: 500;
  font-size: 15px;
  line-height: 135%;
  color: #fff;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__content strong {
    font-size: 16px;
    padding: 0 10px;
  }
}
.list-video-carousel-component__content p {
  font-size: 14px;
  line-height: 135%;
  color: #fff;
}
@media (min-width: 1200px) {
  .list-video-carousel-component__content p {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (min-width: 1200px) {
  .list-video-carousel-component {
    padding: 80px 0;
  }
}

.contact-informations-component {
  width: 100%;
  background-size: cover;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  background-color: #fff;
}
.contact-informations-component:before {
  background: url("../img/taksim-hastanesi-map.jpg") left no-repeat;
  background-size: cover;
  background-position: calc(50% + 450px);
  width: 100%;
  height: 400px;
  top: 0;
  left: 0;
  content: "";
  position: relative;
  pointer-events: none;
}
@media (min-width: 992px) {
  .contact-informations-component:before {
    background-position: calc(50% + 0px);
    height: 500px;
  }
}
@media (min-width: 992px) {
  .contact-informations-component:after {
    width: 50%;
    height: 100%;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
  }
}
.contact-informations-component__wrapper {
  width: 100%;
  max-width: 1200px;
  padding: 0 0px;
  z-index: 5;
  position: relative;
}
@media (min-width: 992px) {
  .contact-informations-component__wrapper {
    width: 460px;
    margin-left: auto;
  }
}
.contact-informations-component__items {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 25px 0px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .contact-informations-component__items {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
}
.contact-informations-component__item {
  text-decoration: none;
  width: 50%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.contact-informations-component__item-icon {
  height: 50px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .contact-informations-component__item-icon {
    height: 50px;
    width: 50px;
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.contact-informations-component__item-icon span {
  font-size: 24px;
  font-weight: 300;
  color: #284566;
}
.contact-informations-component__item-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  padding-top: 10px;
  color: #284566;
}
@media (min-width: 992px) {
  .contact-informations-component__item-text {
    font-size: 14px;
  }
}
.contact-informations-component__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  background-color: rgba(117, 148, 189, 0);
  backdrop-filter: blur(20px);
  padding: 30px 30px;
  border-radius: 10px;
  margin-top: 10px;
  border: 1px solid #eceaef;
}
.contact-informations-component__content-item {
  width: 100%;
  text-align: left;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-informations-component__content-item-title {
  width: 100%;
  text-align: left;
  color: #003d7e;
  font-weight: 600;
  font-size: 15px;
}
.contact-informations-component__content-item-title:after {
  width: 20px;
  height: 2px;
  background-color: #42ccff;
  content: "";
  display: block;
  margin: 10px 0;
  position: relative;
}
@media (min-width: 992px) {
  .contact-informations-component__content-item-title {
    font-size: 16px;
  }
}
.contact-informations-component__content-item-text {
  width: 100%;
  text-align: left;
  color: #888589;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
@media (min-width: 992px) {
  .contact-informations-component__content-item {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .contact-informations-component__content {
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 0;
    box-shadow: 0 20px 50px 0px rgba(0, 0, 0, 0.15);
  }
}
.contact-informations-component .container {
  margin-top: -50px;
}
@media (min-width: 992px) {
  .contact-informations-component .container {
    position: absolute;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .contact-informations-component {
    height: 500px;
  }
}

.contact-form-component {
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: #5b9de3;
  position: relative;
}
.contact-form-component * {
  box-sizing: border-box;
}
.contact-form-component .container {
  padding: 0;
}
.contact-form-component__inner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 1200px) {
  .contact-form-component__inner-container {
    flex-direction: row;
    align-items: center;
    height: 650px;
  }
}
.contact-form-component__banner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 576px) {
  .contact-form-component__banner {
    border-radius: 5px;
  }
}
.contact-form-component__left {
  width: 100%;
}
@media (min-width: 1200px) {
  .contact-form-component__left {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
  }
}
.contact-form-component__right {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media (min-width: 1200px) {
  .contact-form-component__right {
    width: 50%;
    position: relative;
    left: 50%;
    padding: 0 40px;
  }
}
.contact-form-component__main-title {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  position: relative;
  line-height: 125%;
}
@media (min-width: 992px) {
  .contact-form-component__main-title {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  .contact-form-component__main-title {
    font-size: 28px;
  }
}
.contact-form-component__main-title-reflection {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-weight: 600;
  opacity: 0.5;
  font-size: 28px;
}
@media (min-width: 992px) {
  .contact-form-component__main-title-reflection {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .contact-form-component__main-title-reflection {
    font-size: 48px;
  }
}
.contact-form-component__main-description {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  position: relative;
  line-height: 135%;
}
@media (min-width: 992px) {
  .contact-form-component__main-description {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .contact-form-component__main-description {
    font-size: 15px;
  }
}
.contact-form-component__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-form-component__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-form-component__form-row--last {
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .contact-form-component__form-row--last {
    flex-direction: row;
  }
}
.contact-form-component__form-label {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.contact-form-component__form-element {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-form-component__form-element input,
.contact-form-component__form-element textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 125%;
  outline: 0;
}
.contact-form-component__form-element input {
  height: 40px;
  padding: 0 15px;
}
.contact-form-component__form-element textarea {
  height: 60px;
  padding: 15px;
}
.contact-form-component__form-element input + .just-validate-error-label {
  display: none;
}
.contact-form-component__form-element input.just-validate-error-field {
  border: 2px solid #c74242;
}
.contact-form-component__form-cb {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.contact-form-component__form-cb input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
  border-radius: 2.5px;
  transform: translateY(3px);
  -webkit-appearance: auto;
  appearance: auto;
}
.contact-form-component__form-cb label {
  width: calc(100% - 15px);
  padding-left: 5px;
  font-size: 12px;
  color: #fff;
  line-height: 125%;
}
@media (min-width: 768px) {
  .contact-form-component__form-cb label {
    font-size: 12px;
  }
}
.contact-form-component__form-cb label button {
  text-decoration: underline;
}
.contact-form-component__form-cb input + label + .just-validate-error-label {
  display: none;
}
.contact-form-component__form-cb input.just-validate-error-field {
  border: 2px solid #c74242;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-component__form-description {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 125%;
}
.contact-form-component__form-description a,
.contact-form-component__form-description button {
  text-decoration: underline;
  cursor: pointer;
}
.contact-form-component__captcha {
  width: 100%;
  position: relative;
}
.contact-form-component__captcha img {
  width: 100px;
  max-width: 100px;
  height: 32px;
  max-height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  border-radius: 5px;
}
.contact-form-component__captcha input {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 5px;
  outline: 0;
  padding: 0 15px 0 115px;
  font-size: 14px;
  font-family: inherit;
  line-height: 125%;
}
.contact-form-component__captcha input::placeholder {
  font-size: 13px;
}
.contact-form-component__captcha input + .just-validate-error-label {
  display: none;
}
.contact-form-component__captcha input.just-validate-error-field {
  border: 2px solid #c74242;
}
@media (min-width: 768px) {
  .contact-form-component__captcha {
    width: calc(100% - 160px);
  }
}
.contact-form-component__submit {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ed8757;
  background-color: #ed8757;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact-form-component__submit span.material-symbols-outlined {
  font-size: 18px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .contact-form-component__submit {
    width: 150px;
  }
}
.contact-form-component .iti {
  width: 100%;
  font-family: inherit;
}
.contact-form-component .iti__selected-country {
  background-color: transparent;
  border-radius: 5px;
  background-color: #f0f0f0;
  height: 34px;
  margin-top: 2px;
  margin-left: 2px;
}
.contact-form-component .iti__selected-dial-code {
  font-weight: 600;
  font-size: 12px;
  color: #444;
  padding-right: 5px;
}
.vertical-contact-form-component {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f0f7ff;
  padding: 25px 25px;
  border-radius: 5px;
}
.vertical-contact-form-component__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.vertical-contact-form-component__main-title {
  font-size: 21px;
  line-height: 125%;
  color: #2b4a6b;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .vertical-contact-form-component__main-title {
    font-size: 24px;
  }
}
.vertical-contact-form-component__main-description {
  font-size: 14px;
  line-height: 135%;
  color: #2b4a6b;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .vertical-contact-form-component__main-description {
    font-size: 16px;
  }
}
.vertical-contact-form-component__main-description strong {
  font-weight: 600;
}
.vertical-contact-form-component__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 0px;
}
.vertical-contact-form-component__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vertical-contact-form-component__label {
  font-size: 13px;
  line-height: 125%;
  color: #2b4a6b;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .vertical-contact-form-component__label {
    font-size: 16px;
  }
}
.vertical-contact-form-component__element input[type=text] {
  width: 100%;
  height: 40px;
  border: 1px solid #e7eef5;
  background-color: #fff;
  color: #2b4a6b;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 125%;
  outline: 0;
  transition: 0.3s ease-in-out all;
}
.vertical-contact-form-component__element input[type=text]::placeholder {
  color: #2b4a6b;
  font-size: 14px;
}
.vertical-contact-form-component__element input[type=tel] {
  width: 100%;
  height: 40px;
  border: 1px solid #e7eef5;
  background-color: #fff;
  border-radius: 5px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 125%;
  outline: 0;
  color: #2b4a6b;
  transition: 0.3s ease-in-out all;
}
.vertical-contact-form-component__element input[type=tel]::placeholder {
  color: #2b4a6b;
  font-size: 14px;
}
.vertical-contact-form-component__element .iti {
  width: 100%;
  font-family: inherit;
}
.vertical-contact-form-component__element .iti__selected-country {
  background-color: transparent;
  border-radius: 5px;
  background-color: #f0f0f0;
  height: 34px;
  margin-top: 2px;
  margin-left: 2px;
}
.vertical-contact-form-component__element .iti__selected-dial-code {
  font-weight: 600;
  font-size: 12px;
  color: #444;
  padding-right: 5px;
}
.vertical-contact-form-component__element input + .just-validate-error-label {
  display: none;
}
.vertical-contact-form-component__element input.just-validate-error-field {
  border: 2px solid #c74242;
}
.vertical-contact-form-component__description {
  font-size: 12px;
  font-weight: 400;
  color: #2b4a6b;
  line-height: 125%;
}
.vertical-contact-form-component__description a,
.vertical-contact-form-component__description button {
  text-decoration: underline;
  cursor: pointer;
}
.vertical-contact-form-component__cb {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.vertical-contact-form-component__cb input[type=checkbox] {
  width: 12.5px;
  height: 12.5px;
  margin: 0;
  padding: 0;
  border-radius: 2.5px;
  transform: translateY(3px);
  -webkit-appearance: auto;
  appearance: auto;
}
.vertical-contact-form-component__cb label {
  width: calc(100% - 12.5px);
  padding-left: 5px;
  font-size: 12px;
  color: #2b4a6b;
  line-height: 125%;
}
@media (min-width: 768px) {
  .vertical-contact-form-component__cb label {
    font-size: 12px;
  }
}
.vertical-contact-form-component__cb label button {
  text-decoration: underline;
}
.vertical-contact-form-component__cb input + label + .just-validate-error-label {
  display: none;
}
.vertical-contact-form-component__cb input.just-validate-error-field {
  border: 2px solid #c74242;
  -webkit-appearance: none;
  appearance: none;
}
.vertical-contact-form-component__footer {
  margin-top: 30px;
  width: 100%;
}
.vertical-contact-form-component__captcha {
  width: 100%;
  position: relative;
}
.vertical-contact-form-component__captcha img {
  width: 100px;
  max-width: 100px;
  height: 32px;
  max-height: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  border-radius: 5px;
}
.vertical-contact-form-component__captcha input {
  width: 100%;
  height: 40px;
  border: 1px solid #e7eef5;
  background-color: #fff;
  color: #2b4a6b;
  border-radius: 5px;
  padding: 0 15px 0 115px;
  font-size: 14px;
  font-family: inherit;
  line-height: 125%;
  outline: 0;
}
.vertical-contact-form-component__captcha input::placeholder {
  font-size: 13px;
}
.vertical-contact-form-component__captcha input + .just-validate-error-label {
  display: none;
}
.vertical-contact-form-component__captcha input.just-validate-error-field {
  border: 2px solid #c74242;
}
@media (min-width: 768px) {
  .vertical-contact-form-component__captcha {
    width: calc(100% - 0px);
  }
}
.vertical-contact-form-component__submit {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ed8757;
  background-color: #ed8757;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.vertical-contact-form-component__submit span.material-symbols-outlined {
  font-size: 18px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .vertical-contact-form-component__submit {
    width: 100%;
  }
}

.breadcrumb-component {
  background-color: #2b4a6b;
  display: flex;
  align-items: center;
}
.breadcrumb-component__inner {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .breadcrumb-component__inner {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .breadcrumb-component__inner {
    padding: 20px 0;
  }
}
.breadcrumb-component__seperator span {
  color: #b1d5fb;
  font-size: 16px;
}
.breadcrumb-component__link {
  color: #b1d5fb;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
  opacity: 0.8;
  font-size: 14px;
}
.breadcrumb-component__link:hover {
  color: #fff;
}
.breadcrumb-component__item {
  display: flex;
  align-items: center;
}
.breadcrumb-component__item:last-child .breadcrumb-component__link {
  color: #fff;
}

.article-component {
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 1200px) {
  .article-component {
    padding: 100px 0;
  }
}
.article-component__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.article-component h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 125%;
  color: #5b9de3;
}
@media (min-width: 1200px) {
  .article-component h2 {
    font-size: 30px;
  }
}
.article-component h3 {
  font-size: 19px;
  line-height: 125%;
  font-weight: 500;
  color: #06152b;
}
@media (min-width: 1200px) {
  .article-component h3 {
    font-size: 24px;
  }
}
.article-component p {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #06152b;
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .article-component p {
    font-size: 16px;
  }
}
.article-component ul {
  padding-left: 20px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.article-component li {
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
  color: #06152b;
  opacity: 0.8;
}
@media (min-width: 1200px) {
  .article-component li {
    font-size: 16px;
  }
}
.article-component strong {
  font-weight: 500;
}

.modal-legal {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  margin-top: auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
}
@media (min-width: 992px) {
  .modal-legal {
    max-width: 768px;
    height: auto;
    max-height: 500px;
    border-radius: 20px;
    margin-top: inherit;
  }
}
@media (min-width: 1200px) {
  .modal-legal {
    max-width: 1140px;
    max-height: 570px;
    padding: 40px;
  }
}
.modal-legal__inner {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal-legal__inner::-webkit-scrollbar {
  width: 5px;
}
.modal-legal__inner::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.07);
}
.modal-legal__inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.modal-legal__inner::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 255, 255);
}
.modal-legal__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.modal-legal__header-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #040404;
}
@media (min-width: 992px) {
  .modal-legal__header-title {
    font-size: 30px;
  }
}
.modal-legal__header-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-legal__header-icon span {
  font-size: 30px;
  font-weight: 600;
  color: #040404;
}
.modal-legal__content {
  width: 100%;
  padding: 20px;
  overflow: hidden;
}
.modal-legal__content p, .modal-legal__content li {
  color: #222;
  font-size: 14px;
  line-height: 125%;
}
@media (min-width: 992px) {
  .modal-legal__content p, .modal-legal__content li {
    font-size: 16px;
  }
}
.modal-legal__content ul {
  padding-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  list-style-type: disc;
}
.modal-legal__content strong {
  font-weight: 600;
}
@media (max-width: 992px) {
  .modal-legal:after {
    display: none;
  }
}

.modal-notification {
  width: 90%;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}
@media (min-width: 992px) {
  .modal-notification {
    padding: 40px;
    max-width: 500px;
    height: 100%;
    height: auto;
  }
}
.modal-notification__inner {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal-notification__inner::-webkit-scrollbar {
  width: 5px;
}
.modal-notification__inner::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.07);
}
.modal-notification__inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.modal-notification__inner::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 255, 255);
}
.modal-notification__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.modal-notification__header-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #040404;
}
@media (min-width: 992px) {
  .modal-notification__header-title {
    font-size: 30px;
  }
}
.modal-notification__header-icon {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-notification__header-icon span {
  font-size: 30px;
  font-weight: 600;
  color: #040404;
}
.modal-notification__content {
  width: 100%;
  padding: 0px 0 5px 60px;
}
.modal-notification__content p {
  color: #222;
  font-size: 14px;
  line-height: 135%;
}
@media (min-width: 992px) {
  .modal-notification__content p {
    font-size: 16px;
  }
}
.modal-notification__content strong {
  font-weight: 600;
}
.modal-notification--success .modal-notification__header-icon {
  background-color: rgba(52, 199, 89, 0.5);
}
.modal-notification--success .modal-notification__header-icon span {
  color: #040404;
}
.modal-notification--success .modal-notification__header-title {
  color: #040404;
}
.modal-notification--error .modal-notification__header-icon {
  background-color: rgba(255, 56, 60, 0.5);
}
.modal-notification--error .modal-notification__header-icon span {
  color: #040404;
}
.modal-notification--error .modal-notification__header-title {
  color: #040404;
}
@media (min-width: 1200px) {
  .page-home .information-box-component {
    margin-top: -225px;
    z-index: 1;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .page-home .hero-video-component__play {
    margin-top: -100px;
  }
}
.page-home .contact-informations-component {
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .page-home .contact-informations-component {
    margin-bottom: 0px;
  }
}
.page-treatments-detail .technologies-component {
  background-color: #284566;
  padding: 60px 0;
}
.page-treatments-detail .technologies-component__main-title {
  color: #fff;
}
.page-treatments-detail .technologies-component__carousel-shadow-l {
  background: linear-gradient(90deg, #284566 0%, rgba(255, 255, 255, 0) 100%);
}
.page-treatments-detail .technologies-component__carousel-shadow-r {
  background: linear-gradient(-90deg, #284566 0%, rgba(255, 255, 255, 0) 100%);
}

.main {
  padding-top: 80px;
}
@media (min-width: 1200px) {
  .main {
    padding-top: 100px;
  }
}

.fancybox__container {
  z-index: 110000;
}
.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.fancybox__slide {
  padding: 0;
}
.fancybox__content {
  border-radius: 20px;
}
.fancybox__content .is-close-btn {
  background-color: #ff383c;
  backdrop-filter: blur(10px);
  border: 0 !important;
  border-radius: 15px !important;
  width: 30px;
  height: 30px;
  opacity: 1 !important;
  top: 5px !important;
  position: fixed;
  right: 5px !important;
}
.fancybox__content .is-close-btn svg {
  width: 15px;
  filter: brightness(100%) saturate(100%);
  opacity: 1;
}
.fancybox__content .is-close-btn:hover {
  opacity: 1;
  background-color: #e9152d;
}
.fancybox__iframe {
  overflow: hidden;
  border-radius: 20px;
}

.swiper-navigation {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.swiper-button-next {
  background-size: 100%;
  width: 40px;
  height: 40px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  transform: translateY(0%);
  z-index: 1;
  opacity: 1;
  transition: 0.3s ease-in-out all;
  background-color: transparent;
  border: 1px solid #809fb8;
  color: #809fb8;
  border-radius: 5px;
}
.swiper-button-next:after {
  font-size: 14px;
}
.swiper-button-prev {
  background-size: 100%;
  width: 40px;
  height: 40px;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  transform: translateY(0%);
  z-index: 1;
  opacity: 1;
  transition: 0.3s ease-in-out all;
  background-color: transparent;
  border: 1px solid #809fb8;
  color: #809fb8;
  border-radius: 5px;
}
.swiper-button-prev:after {
  font-size: 14px;
}
.swiper-pagination {
  position: absolute;
  width: auto !important;
  top: 50% !important;
  left: 5% !important;
  bottom: inherit !important;
  right: inherit !important;
  margin: 0 auto !important;
  transform: translate(0%, -50%) !important;
}
.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #4e87c4;
}
@media (min-width: 1200px) {
  .swiper-pagination {
    left: 50% !important;
  }
}

.only-after-sm {
  display: none;
}
@media (min-width: 576px) {
  .only-after-sm {
    display: block;
  }
}
.only-after-md {
  display: none;
}
@media (min-width: 768px) {
  .only-after-md {
    display: block;
  }
}
.only-after-lg {
  display: none;
}
@media (min-width: 992px) {
  .only-after-lg {
    display: block;
  }
}
.only-after-xl {
  display: none;
}
@media (min-width: 1200px) {
  .only-after-xl {
    display: block;
  }
}
.only-before-sm {
  display: block;
}
@media (min-width: 576px) {
  .only-before-sm {
    display: none;
  }
}
.only-before-md {
  display: block;
}
@media (min-width: 768px) {
  .only-before-md {
    display: none;
  }
}
.only-before-lg {
  display: block;
}
@media (min-width: 992px) {
  .only-before-lg {
    display: none;
  }
}
.only-before-xl {
  display: block;
}
@media (min-width: 1200px) {
  .only-before-xl {
    display: none;
  }
}

.w-100 {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
