* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  color: #000000;
  font-size: 16px;
}

a {
  color: #000000;
  transition: color 0.3s ease;
}
a:hover {
  color: #FF9600;
}

p {
  margin-bottom: 15px;
}

.alert {
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert.hidden {
  display: none;
}
.alert--success {
  background: #E6FFED;
  border: 1px solid #C3E6CB;
  color: #155724;
}
.alert--error {
  background: #F8D7DA;
  border: 1px solid #F5C6CB;
  color: #721C24;
}

.title-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .title-main {
    margin-bottom: 20px;
  }
}
.title-main > h4 {
  padding: 15px 25px;
  border: 1px solid #DDDDDD;
  border-radius: 16px;
  position: relative;
  z-index: 9;
  background: #FFFFFF;
  font-size: 24px;
}
@media (max-width: 600px) {
  .title-main > h4 {
    font-size: 20px;
    padding: 10px 20px;
  }
}
.title-main::before {
  content: "";
  position: absolute;
  width: calc(100% + 40px);
  margin-left: -20px;
  height: 1px;
  background: #DDDDDD;
  top: 50%;
  left: 0px;
  z-index: -1;
}
@media (max-width: 600px) {
  .title-main::before {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}

.button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 50px;
  width: max-content;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
  border: none;
}
.button--main {
  background: #184E4E;
  color: #FFFFFF;
}
.button--main i {
  color: #82DFDF;
}
.button--main:hover {
  background: #144242;
  color: #FFFFFF;
  outline: 3px solid rgba(20, 66, 66, 0.1882352941);
}
.button--yellow {
  background: #FF9600;
  color: #392200;
  font-weight: 600;
}
.button--yellow:hover {
  background: #FFB84D;
  color: #392200;
  outline: 3px solid rgba(255, 184, 77, 0.1882352941);
}
.button--yellow:disabled {
  background: #FFB84D;
  color: #392200;
  cursor: not-allowed;
  opacity: 0.5;
}
.button--yellow:disabled i {
  color: #392200;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px 20px;
  position: relative;
  z-index: 99;
}
@media (max-width: 600px) {
  .header {
    padding: 10px;
  }
}
.header__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
}
.header__logo img {
  height: 90px;
}
@media (max-width: 600px) {
  .header__logo img {
    height: 70px;
  }
}
.header__nav {
  display: flex;
}
@media (max-width: 600px) {
  .header__nav {
    left: 10px;
    width: calc(100% - 20px);
    position: absolute;
    top: 90px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header__nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 600px) {
  .header__nav ul {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.header__nav ul li {
  display: flex;
}
@media (max-width: 600px) {
  .header__nav ul li {
    width: 100%;
  }
}
.header__nav ul li.faq {
  display: none;
}
@media (max-width: 600px) {
  .header__nav ul li.faq {
    display: flex;
  }
}
.header__nav ul a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-weight: 600;
  gap: 5px;
}
@media (max-width: 600px) {
  .header__nav ul a {
    width: 100%;
    color: #000000 !important;
    font-size: 18px;
  }
}
.header__nav ul a:hover i {
  color: #FF9600;
}
.header__nav ul a i {
  color: #82DFDF;
  transition: all 0.3s ease;
}
.header__nav ul a.contact {
  padding: 15px 20px;
  border-radius: 16px;
  background: #FF9600;
  color: #392200;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.header__nav ul a.contact:hover {
  background: #FFB84D;
  color: #392200;
  outline: 3px solid rgba(255, 184, 77, 0.1882352941);
}
.header__nav ul a.contact i {
  color: #392200;
}
.header__nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav-right a.faq {
  font-weight: 600;
}
@media (max-width: 600px) {
  .header__nav-right a.faq {
    display: none;
  }
}
.header__nav-right a.faq:hover {
  color: #FF9600;
}
.header__nav-right a.mobile-menu {
  display: none;
}
@media (max-width: 600px) {
  .header__nav-right a.mobile-menu {
    display: flex;
    font-size: 32px;
    width: 40px;
    height: 40px;
    background: #FF9600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #392200;
  }
}

.languages {
  display: flex;
  position: relative;
  text-transform: uppercase;
}
.languages__active {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px;
  background: rgba(201, 201, 201, 0.3019607843);
}
.languages__active:hover {
  background: rgba(201, 201, 201, 0.3764705882);
}
.languages__active i {
  color: #FF9600;
}
.languages:hover .languages__active {
  background: rgba(201, 201, 201, 0.3764705882);
}
.languages:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.languages .sub-menu {
  position: absolute;
  top: 39px;
  left: 50%;
  padding-top: 10px;
  width: 80px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
}
.languages .sub-menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.languages .sub-menu ul li {
  display: flex;
}
.languages .sub-menu ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  padding: 5px 0;
}
.languages .sub-menu ul li a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.hero {
  width: 100%;
  background: #006363;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -150px;
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 600px) {
  .hero {
    margin-top: -90px;
  }
}
.hero__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.hero__slider-wrapper {
  width: 100%;
  display: flex;
}
.hero__arrows {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
@media (max-width: 600px) {
  .hero__arrows {
    bottom: 30px;
  }
}
.hero__arrows-container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__arrows-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__arrows-wrapper i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #007B7B;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero__arrows-wrapper i:hover {
  background: #005555;
  border-color: #005555;
}
.hero__arrows-wrapper i.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hero__arrows > span {
  font-weight: 500;
}

.hero-item {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero-item {
    padding: 0 10px;
  }
}
.hero-item__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  min-height: 880px;
  position: relative;
}
@media (max-width: 600px) {
  .hero-item__container {
    padding: 120px 0 100px 0;
    height: auto;
    flex-direction: column;
  }
}
.hero-item__text {
  width: 575px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .hero-item__text {
    order: 2;
    width: 100%;
  }
}
.hero-item__text > h2 {
  font-size: 64px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero-item__text > h2 {
    font-size: 46px;
  }
}
.hero-item__text > h2 span {
  font-weight: 700;
}
.hero-item__tslider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}
.hero-item__tslider-wrapper {
  display: flex;
}
.hero-item__tslider-item {
  display: flex;
  font-size: 64px;
  font-weight: 600;
  flex-shrink: 0;
  width: auto;
  padding-right: 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 600px) {
  .hero-item__tslider-item {
    font-size: 46px;
  }
}
.hero-item__tslider-item.swiper-slide-active {
  color: #FF9600;
}
.hero-item__line {
  width: 100%;
  height: auto;
  max-width: 240px;
  aspect-ratio: 240/55;
  object-fit: cover;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .hero-item__line {
    max-width: 150px;
  }
}
.hero-item__description {
  line-height: 1.5;
  margin-bottom: 20px;
  color: #8FD0D0;
}
.hero-item__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 600px) {
  .hero-item__buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.hero-item__img {
  display: flex;
}
@media (max-width: 600px) {
  .hero-item__img {
    order: 1;
  }
}
@media (max-width: 600px) {
  .hero-item__img img {
    width: 100%;
    height: auto;
  }
}

.features {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
@media (max-width: 600px) {
  .features {
    padding: 40px 10px;
  }
}
.features .feature:nth-child(1) {
  background: #DAFAFA;
}
.features .feature:nth-child(2) {
  background: #E0FADA;
}
.features .feature:nth-child(3) {
  background: #FAEEDA;
}
.features .feature:nth-child(4) {
  background: #FADADA;
}
.features .feature:nth-child(5) {
  background: #FAFADA;
}
.features .feature:nth-child(6) {
  background: #DAFAED;
}
.features .feature:nth-child(7) {
  background: #DCDAFA;
}
.features .feature:nth-child(8) {
  background: #FADAFA;
}
.features__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.features__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .features__wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.features__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .features__footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
.features__footer > span {
  font-weight: 500;
  color: #616161;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  border-radius: 16px;
  background: #DDDDDD;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .feature {
    padding: 20px;
    flex-direction: row;
    text-align: left;
  }
}
.feature:hover {
  transform: translateY(-10px);
}
.feature:hover::before {
  transform: scale(2);
  visibility: visible;
  opacity: 1;
}
.feature::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  top: -100%;
  right: -100%;
  transform: scale(0);
  z-index: 1;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
}
.feature > img {
  width: 170px;
  height: 170px;
  margin-bottom: 20px;
  z-index: 2;
}
@media (max-width: 600px) {
  .feature > img {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
  }
}
.feature__text {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.feature__text > h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .feature__text > h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }
}
.feature__text > span {
  font-weight: 500;
  font-size: 18px;
  font-weight: 400;
}

.mini-info {
  width: 100%;
  height: 645px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: #184E4E;
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 600px) {
  .mini-info {
    height: auto;
    padding: 40px 10px 0 10px;
  }
}
.mini-info__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .mini-info__container {
    flex-direction: column;
    gap: 20px;
  }
}
.mini-info__text {
  display: flex;
  flex-direction: column;
  width: 600px;
}
@media (max-width: 600px) {
  .mini-info__text {
    width: 100%;
  }
}
.mini-info__text > h4 {
  font-size: 48px;
  font-weight: 600;
  max-width: 400px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .mini-info__text > h4 {
    font-size: 32px;
    max-width: 100%;
  }
}
.mini-info__text-description {
  line-height: 1.5;
  color: #8FD0D0;
  margin-bottom: 15px;
}
.mini-info__img {
  display: flex;
  margin-right: -360px;
}
@media (max-width: 600px) {
  .mini-info__img {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .mini-info__img img {
    width: 100%;
  }
}

.htu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 600px) {
  .htu {
    padding: 40px 10px;
  }
}
.htu__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 25px;
  position: relative;
}
@media (max-width: 600px) {
  .htu__container {
    flex-direction: column;
  }
}
.htu__ghost-box {
  width: 280px;
  height: 500px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 16px;
  pointer-events: none;
}
.htu__ghost-box--left {
  left: -300px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #CDF2F2 100%);
}
.htu__ghost-box--right {
  right: -300px;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #F2F2F2 100%);
}

.htu-item {
  width: 100%;
  height: auto;
  aspect-ratio: 385/560;
  background: #DDDDDD;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.htu-item:hover {
  transform: translateY(-10px);
}
.htu-item:hover::before {
  transform: scale(2);
  visibility: visible;
  opacity: 1;
}
.htu-item::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  top: -100%;
  left: -100%;
  transform: scale(0);
  z-index: 1;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
}
.htu-item--1 {
  background: #CDF2F2;
}
.htu-item--2 {
  background: #FFE8C8;
}
.htu-item--3 {
  background: #F2F2F2;
}
.htu-item__text {
  width: 280px;
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9;
}
.htu-item__text > h6 {
  padding: 5px 15px;
  background: #FFFFFF;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.htu-item__text > h5 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}
.htu-item__text > span {
  font-size: 18px;
  font-weight: 600;
}
.htu-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  pointer-events: none;
  z-index: 2;
}
.htu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get-offer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
@media (max-width: 600px) {
  .get-offer {
    padding: 0 10px;
  }
}
.get-offer__container {
  width: 100%;
  max-width: 1415px;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #CDF2F2;
  border-radius: 32px;
  position: relative;
}
@media (max-width: 600px) {
  .get-offer__container {
    padding: 50px 20px;
  }
}
.get-offer__container > h4 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .get-offer__container > h4 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.get-offer__container > h4 span {
  font-weight: 700;
}
.get-offer__students {
  width: max-content;
  background: #E6F9F9;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 40px;
  color: #184E4E;
  border-radius: 32px;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 600px) {
  .get-offer__students {
    flex-direction: column;
    font-size: 32px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    gap: 10px;
  }
}
.get-offer__numbers {
  display: flex;
  overflow: hidden;
  font-weight: 700;
  color: #FF9600;
  height: 144px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
@media (max-width: 600px) {
  .get-offer__numbers {
    height: 80px;
  }
}
.get-offer__numbers-wrapper {
  display: flex;
}
.get-offer__numbers-wrapper span {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.get-offer__numbers-wrapper span.swiper-slide-active {
  opacity: 1;
}
.get-offer__description {
  text-align: center;
  max-width: 1000px;
  font-size: 20px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .get-offer__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.get-offer__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .get-offer__buttons {
    flex-direction: column;
    align-items: center;
  }
}
.get-offer .emoji {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  animation: float var(--float-duration, 3s) ease-in-out infinite;
  pointer-events: none;
}
@media (max-width: 600px) {
  .get-offer .emoji {
    width: 25px;
    height: 25px;
  }
}
.get-offer .emoji--1 {
  top: 10%;
  left: 10%;
  --float-duration: 2.5s;
  --float-delay: 0s;
  --float-distance: -12px;
  animation-delay: var(--float-delay);
}
.get-offer .emoji--2 {
  top: 10%;
  right: 10%;
  --float-duration: 3.2s;
  --float-delay: 0.8s;
  --float-distance: -18px;
  animation-delay: var(--float-delay);
}
.get-offer .emoji--3 {
  top: 50%;
  right: 5%;
  --float-duration: 2.8s;
  --float-delay: 1.2s;
  --float-distance: -15px;
  animation-delay: var(--float-delay);
}
.get-offer .emoji--4 {
  bottom: 10%;
  right: 10%;
  --float-duration: 3.5s;
  --float-delay: 0.4s;
  --float-distance: -20px;
  animation-delay: var(--float-delay);
}
.get-offer .emoji--5 {
  bottom: 10%;
  left: 10%;
  --float-duration: 2.9s;
  --float-delay: 1.6s;
  --float-distance: -14px;
  animation-delay: var(--float-delay);
}
.get-offer .emoji--6 {
  bottom: 50%;
  left: 5%;
  --float-duration: 3.1s;
  --float-delay: 0.2s;
  --float-distance: -16px;
  animation-delay: var(--float-delay);
}
@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(var(--float-distance, -15px));
  }
}

.why {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .why {
    padding: 40px 10px;
  }
}
.why__container {
  width: 100%;
  max-width: 1030px;
  height: 680px;
  position: relative;
}
@media (max-width: 600px) {
  .why__container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.why__ghost-boxs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why__ghost-boxs--left {
  left: -300px;
}
.why__ghost-boxs--right {
  right: -300px;
}
.why__ghost-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  border-radius: 32px;
  background: #DDDDDD;
  pointer-events: none;
}
.why__ghost-box--1 {
  height: 280px;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #CDF2F2 100%);
}
.why__ghost-box--2 {
  height: 280px;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF6EA 100%);
}
.why__ghost-box--3 {
  height: 350px;
  border-radius: 32px;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #F4F4F4 100%);
}
.why__ghost-box--4 {
  height: 210px;
  border-radius: 32px;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #FFF6EA 100%);
}

.why-item {
  border-radius: 32px;
  background: #DDDDDD;
  position: absolute;
  display: flex;
  align-items: flex-end;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .why-item {
    padding: 20px;
    position: relative;
    gap: 10px;
    border-radius: 16px;
    width: 100% !important;
    height: auto !important;
    top: initial !important;
    left: initial !important;
    right: initial !important;
    bottom: initial !important;
    align-items: flex-start !important;
  }
}
.why-item:hover {
  transform: translateY(-10px);
}
.why-item i {
  display: none;
}
@media (max-width: 600px) {
  .why-item i {
    display: flex;
    font-size: 46px;
  }
}
.why-item__img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
@media (max-width: 600px) {
  .why-item__img {
    display: none;
  }
}
.why-item__img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-item__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 600px) {
  .why-item__text {
    padding: 0;
  }
}
.why-item__text > h5 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .why-item__text > h5 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
.why-item__text > span {
  line-height: 1.5;
}
.why-item--1 {
  top: 0;
  left: 0;
  width: 330px;
  height: 430px;
  background: radial-gradient(108.12% 151.89% at 81.02% 29.93%, #FFF6EA 0%, #FFE5BF 100%);
}
.why-item--2 {
  top: 0;
  left: 350px;
  width: 330px;
  height: 330px;
  background: radial-gradient(104.17% 104.17% at 75.75% 33.28%, #FFF 0%, #F4F4F4 100%);
}
.why-item--3 {
  top: 0;
  left: 700px;
  width: 330px;
  height: 330px;
  background: radial-gradient(104.17% 104.17% at 75.75% 33.28%, #FFF 0%, #F4F4F4 100%);
}
.why-item--4 {
  top: 450px;
  left: 0;
  width: 330px;
  height: 230px;
  background: radial-gradient(104.17% 104.17% at 75.75% 33.28%, #FFF 0%, #F4F4F4 100%);
}
.why-item--5 {
  top: 350px;
  left: 350px;
  width: 680px;
  height: 330px;
  align-items: center;
  background: radial-gradient(78.14% 101.94% at 69.35% 46.84%, #FBFFFF 0%, #D3EDED 100%);
}
.why-item--5 .why-item__text {
  max-width: 450px;
}
.why-item--5 .why-item__img-img {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  right: 20px;
}
@media (max-width: 600px) {
  .why-item--5 .why-item__img-img {
    display: none;
  }
}

.blog {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #FFF6EA;
}
@media (max-width: 600px) {
  .blog {
    padding: 40px 10px;
  }
}
.blog .title-main > h4 {
  border: 1px solid #D3BC9A;
  background: #FFF2DF;
}
.blog .title-main::before {
  background: #D3BC9A;
}
.blog__container {
  width: 100%;
  max-width: 1415px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .blog__container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.blog-item {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-item:hover .blog-item__arrow {
  background: #CDF2F2;
}
.blog-item:hover .blog-item__text {
  padding-top: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8941176471), rgba(0, 0, 0, 0.4941176471), transparent);
}
.blog-item__img {
  display: flex;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.blog-item__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  mask: url("data:image/svg+xml,%3Csvg width='456' height='456' viewBox='0 0 456 456' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M328 0C341.255 0 352 10.7452 352 24V80C352 93.2548 362.745 104 376 104H432C445.255 104 456 114.745 456 128V432C456 445.255 445.255 456 432 456H24C10.7452 456 0 445.255 0 432V24C0 10.7452 10.7452 0 24 0H328Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat center/cover;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='456' height='456' viewBox='0 0 456 456' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M328 0C341.255 0 352 10.7452 352 24V80C352 93.2548 362.745 104 376 104H432C445.255 104 456 114.745 456 128V432C456 445.255 445.255 456 432 456H24C10.7452 456 0 445.255 0 432V24C0 10.7452 10.7452 0 24 0H328Z' fill='%23000000'/%3E%3C/svg%3E") no-repeat center/cover;
  object-fit: cover;
}
.blog-item__arrow {
  width: 20%;
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  background: #FF9600;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.blog-item__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 40px;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  z-index: 2;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .blog-item__text {
    padding: 20px;
  }
}
.blog-item__text > span {
  width: max-content;
  padding: 5px 15px;
  border-radius: 20px;
  background: rgba(12, 12, 12, 0.5019607843);
  border: 1px solid rgba(255, 255, 255, 0.1254901961);
  margin-bottom: 10px;
}
.blog-item__text h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .blog-item__text h3 {
    font-size: 18px;
  }
}

.referances {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
@media (max-width: 600px) {
  .referances {
    padding: 40px 10px;
  }
}
.referances__container {
  width: 100%;
  max-width: 1415px;
}
.referances__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.referances__slider-wrapper {
  width: 100%;
  display: flex;
}

.referance-item {
  width: 100%;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #F2F2F2;
}
.referance-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background: #F0F0F0;
  border-top: 1px solid #E2E2E2;
}
@media (max-width: 600px) {
  .footer {
    padding: 50px 10px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media (max-width: 600px) {
  .footer__container {
    gap: 40px;
  }
}
.footer__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__info-description {
  width: 620px;
  font-size: 20px;
  text-align: right;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .footer__info-description {
    width: 100%;
    text-align: left;
    font-size: 16px;
  }
}
.footer__logo {
  display: flex;
}
.footer__logo img {
  height: 90px;
}
@media (max-width: 600px) {
  .footer__logo img {
    height: 60px;
  }
}
.footer__menus {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__menus {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.footer__menus > h4 {
  font-size: 40px;
  font-weight: 400;
  max-width: 600px;
}
@media (max-width: 600px) {
  .footer__menus > h4 {
    font-size: 24px;
  }
}
.footer__menus > h4 span {
  font-weight: 600;
}
.footer__menus-wrapper {
  display: flex;
  text-align: right;
}
@media (max-width: 600px) {
  .footer__menus-wrapper {
    text-align: left;
    width: 100%;
    justify-content: space-between;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid #DDDDDD;
}
@media (max-width: 600px) {
  .footer__menu {
    padding: 0;
    margin: 0;
    border-left: none;
  }
}
.footer__menu:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: none;
}
.footer__menu > h5 {
  font-size: 20px;
  font-weight: 600;
  color: #184E4E;
  margin-bottom: 15px;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.footer__contact-item > span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #A1A1A1;
}
.footer__contact-item a {
  font-weight: 600;
}
.footer__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 600px) {
  .footer__buttons {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.footer__buttons a.app-button {
  display: flex;
}

.about-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .about-page {
    padding: 40px 10px;
  }
}
.about-page__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  min-height: 800px;
}
@media (max-width: 600px) {
  .about-page__container {
    gap: 40px;
    min-height: auto;
  }
}
.about-page__img {
  width: 100%;
  max-width: 890px;
  position: absolute;
  z-index: -1;
  left: 690px;
  top: -100px;
}
@media (max-width: 600px) {
  .about-page__img {
    position: relative;
    top: initial;
    left: initial;
    width: 100%;
    height: auto;
    aspect-ratio: 890/1130;
  }
}
.about-page__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 890/1130;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.about-page__img-phone {
  z-index: 2;
  opacity: 0;
  transform: translateX(-50px);
  animation: phoneSlideIn 1s ease-out forwards;
}
.about-page__img-bg {
  z-index: 1;
  opacity: 0;
  transform: scale(0.5);
  animation: bgScaleUp 1.2s ease-out forwards;
}
@keyframes phoneSlideIn {
  0% {
    opacity: 1;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes bgScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.about-page__what {
  width: 100%;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-page__what-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}
.about-page__what-title > h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .about-page__what-title > h1 {
    font-size: 40px;
  }
}
.about-page__what-title > h1 span {
  font-weight: 700;
}
.about-page__what-title > div {
  font-size: 24px;
  font-weight: 500;
}
.about-page__what-title > div p:last-child {
  margin-bottom: 0;
}
.about-page__what-description {
  line-height: 1.5;
}
.about-page__what-description h2, .about-page__what-description h3, .about-page__what-description h4 {
  font-weight: 600;
  color: #184E4E;
  margin-bottom: 10px;
  margin-top: 40px;
}
.about-page__what-description h2 {
  font-size: 24px;
}
.about-page__what-description h3 {
  font-size: 20px;
}
.about-page__what-description h4 {
  font-size: 18px;
}
.about-page__how {
  width: 100%;
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-page__how > h2 {
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .about-page__how > h2 {
    font-size: 32px;
  }
}
.about-page__how-wrapper {
  display: flex;
}
@media (max-width: 600px) {
  .about-page__how-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.about-page__how-wrapper .about-page__how-item:first-child {
  padding-left: 0px;
}
.about-page__how-wrapper .about-page__how-item:last-child {
  padding-right: 0px;
  border-right: none;
}
.about-page__how-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 50px;
  border-right: 1px solid #E7E7E7;
}
@media (max-width: 600px) {
  .about-page__how-item {
    border-right: none;
    gap: 10px;
    padding: 20px !important;
    border: 1px solid #E7E7E7 !important;
    border-radius: 16px;
  }
}
.about-page__how-item > h5 {
  font-size: 26px;
  font-weight: 900;
  display: flex;
  color: #184E4E;
}
.about-page__how-item > h5 span:nth-child(2) {
  opacity: 0.5;
}
.about-page__how-item > h5 span:nth-child(3) {
  opacity: 0.3;
}
.about-page__how-item > h5 span:nth-child(4) {
  opacity: 0.1;
}

.features-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .features-page {
    padding: 40px 10px;
  }
}
.features-page__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}
@media (max-width: 600px) {
  .features-page__container {
    gap: 40px;
  }
}
.features-page__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .features-page__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.features-page__title h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .features-page__title h1 {
    font-size: 40px;
  }
}
.features-page__title h1 > span {
  font-weight: 700;
}
.features-page__title > div {
  width: 100%;
  max-width: 750px;
  font-size: 24px;
  font-weight: 500;
  color: #184E4E;
  line-height: 1.5;
}
.features-page__title > div p:last-child {
  margin-bottom: 0;
}
.features-page__items {
  width: 100%;
  min-height: 770px;
  position: relative;
  display: flex;
}
@media (max-width: 600px) {
  .features-page__items {
    flex-direction: column;
    min-height: auto;
    gap: 40px;
  }
}
.features-page__substances {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .features-page__substances {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.features-page__substances-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #E2E2E2;
  border-radius: 32px;
  padding: 20px;
  transition: all 0.3s ease;
}
.features-page__substances-item:hover {
  transform: translateY(-10px);
}
.features-page__substances-item > h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #184E4E;
}
.features-page__substances-item > h2 i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(130, 223, 223, 0.5019607843);
  font-size: 25px;
  flex-shrink: 0;
}
.features-page__substances-item > div {
  line-height: 1.5;
}
.features-page__substances-item > div p:last-child {
  margin-bottom: 0;
}
.features-page__download {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(90deg, #82DFDF -20%, #EFFFFF 100%);
  z-index: 9;
}
@media (max-width: 600px) {
  .features-page__download {
    position: relative;
    left: initial;
    bottom: initial;
    transform: none;
    padding: 20px;
    border-radius: 16px;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.features-page__download > h5 {
  font-size: 36px;
  font-weight: 400;
  white-space: nowrap;
}
.features-page__download > h5 span {
  font-weight: 700;
}

.feature-page-item {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  opacity: 0.3;
  transition: all 0.3s ease;
  border-radius: 32px;
}
@media (max-width: 600px) {
  .feature-page-item {
    width: 100%;
    opacity: 1;
  }
}
.feature-page-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(230, 230, 230, 0);
  border-radius: 100px;
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 600px) {
  .feature-page-item::before {
    border-radius: 16px !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    background: rgba(230, 230, 230, 0.3137254902) !important;
  }
}
.feature-page-item.active {
  opacity: 1;
  z-index: 1;
}
.feature-page-item.active::before {
  opacity: 1;
  transform: scale(1.05);
}
.feature-page-item.active img {
  width: 100%;
}
.feature-page-item__content {
  padding: 40px 40px 80px 40px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .feature-page-item__content {
    padding: 20px;
    max-width: 100%;
    padding: 20px;
    text-align: left !important;
    align-items: flex-start !important;
  }
}
.feature-page-item__content > h3 {
  font-size: 40px;
  font-weight: 500;
  max-width: 250px;
}
@media (max-width: 600px) {
  .feature-page-item__content > h3 {
    font-size: 32px;
  }
}
.feature-page-item__content > h3 span {
  font-weight: 700;
}
.feature-page-item__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-page-item__card > h4 {
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #FF9600;
  text-decoration-thickness: 1px;
}
.feature-page-item__card > div {
  color: #868686;
  line-height: 1.5;
}
.feature-page-item__card > div p:last-child {
  margin-bottom: 0;
}
.feature-page-item img {
  position: absolute;
  width: 60%;
  height: auto;
  max-width: 510px;
  aspect-ratio: 510/770;
  bottom: 0px;
  transition: all 0.5s ease;
  pointer-events: none;
}
@media (max-width: 600px) {
  .feature-page-item img {
    display: none;
  }
}
.feature-page-item--left::before {
  background: linear-gradient(90deg, rgba(230, 230, 230, 0) 0%, rgba(128, 128, 128, 0.1019607843) 100%);
}
.feature-page-item--left img {
  right: -30px;
}
.feature-page-item--left.active img {
  right: -180px;
}
.feature-page-item--right {
  text-align: right;
  justify-content: flex-end;
}
.feature-page-item--right::before {
  background: linear-gradient(-90deg, rgba(230, 230, 230, 0) 0%, rgba(128, 128, 128, 0.1019607843) 100%);
}
.feature-page-item--right img {
  left: -50px;
}
.feature-page-item--right.active img {
  left: -180px;
}
.feature-page-item--right .feature-page-item__content {
  align-items: flex-end;
}

.contact-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .contact-page {
    padding: 40px 20px;
  }
}
.contact-page__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 600px) {
  .contact-page__container {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-page__left {
  width: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-page__animation {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2;
  position: relative;
}
@media (max-width: 600px) {
  .contact-page__animation {
    display: none;
  }
}
.contact-page__animation .empty-box {
  position: absolute;
  width: 70px;
  height: 40px;
  border-radius: 10px;
  background: #E2E2E2;
}
.contact-page__animation .empty-box--1 {
  top: 30px;
  left: 0px;
  transform: rotate(10deg);
  animation: float-empty-box-1 3s ease-in-out infinite;
}
.contact-page__animation .empty-box--2 {
  top: 0px;
  left: 100px;
  transform: rotate(-10deg) scale(0.8);
  animation: float-empty-box-2 3.5s ease-in-out infinite 0.2s;
}
.contact-page__animation .empty-box--3 {
  top: 200px;
  left: 0px;
  transform: rotate(5deg) scale(0.9);
  background: #FFF5E6;
  animation: float-empty-box-3 2.8s ease-in-out infinite 0.4s;
}
.contact-page__animation .empty-box--4 {
  top: 90px;
  left: 470px;
  transform: rotate(15deg) scale(1);
  background: #FFE7E6;
  animation: float-empty-box-4 3.2s ease-in-out infinite 0.1s;
}
.contact-page__animation .empty-box--5 {
  top: 150px;
  left: 510px;
  transform: rotate(15deg) scale(0.6);
  background: #FFE7E6;
  animation: float-empty-box-5 3.8s ease-in-out infinite 0.5s;
}
.contact-page__animation .empty-box--6 {
  top: 325px;
  left: 370px;
  transform: rotate(-5deg) scale(0.7);
  background: #EFEFEF;
  animation: float-empty-box-6 2.5s ease-in-out infinite 0.3s;
}
.contact-page__animation .text-box {
  position: absolute;
  font-size: 36px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 25px 30px;
  border-radius: 25px;
  background: #E2E2E2;
  z-index: 9;
}
.contact-page__animation .text-box--1 {
  top: 40px;
  left: 30px;
  transform: rotate(-10deg) scale(0.6);
  animation: float-text-box-1 3.3s ease-in-out infinite;
}
.contact-page__animation .text-box--1 i {
  color: #989898;
}
.contact-page__animation .text-box--2 {
  top: 160px;
  left: 150px;
  transform: rotate(0deg) scale(0.8);
  background: rgba(255, 9, 0, 0.062745098);
  animation: float-text-box-2 2.7s ease-in-out infinite 0.25s;
}
.contact-page__animation .text-box--2 i {
  color: #FF0900;
}
.contact-page__animation .text-box--3 {
  top: 280px;
  left: 20px;
  transform: rotate(-5deg) scale(0.7);
  background: rgba(255, 150, 0, 0.1254901961);
  animation: float-text-box-3 3.6s ease-in-out infinite 0.15s;
}
.contact-page__animation .text-box--3 i {
  color: #FF9600;
}
@keyframes float-empty-box-1 {
  0%, 100% {
    transform: rotate(10deg) translateY(0px);
  }
  50% {
    transform: rotate(10deg) translateY(-8px);
  }
}
@keyframes float-empty-box-2 {
  0%, 100% {
    transform: rotate(-10deg) scale(0.8) translateY(0px);
  }
  50% {
    transform: rotate(-10deg) scale(0.8) translateY(-6px);
  }
}
@keyframes float-empty-box-3 {
  0%, 100% {
    transform: rotate(5deg) scale(0.9) translateY(0px);
  }
  50% {
    transform: rotate(5deg) scale(0.9) translateY(-10px);
  }
}
@keyframes float-empty-box-4 {
  0%, 100% {
    transform: rotate(15deg) scale(1) translateY(0px);
  }
  50% {
    transform: rotate(15deg) scale(1) translateY(-7px);
  }
}
@keyframes float-empty-box-5 {
  0%, 100% {
    transform: rotate(15deg) scale(0.6) translateY(0px);
  }
  50% {
    transform: rotate(15deg) scale(0.6) translateY(-5px);
  }
}
@keyframes float-empty-box-6 {
  0%, 100% {
    transform: rotate(-5deg) scale(0.7) translateY(0px);
  }
  50% {
    transform: rotate(-5deg) scale(0.7) translateY(-9px);
  }
}
@keyframes float-text-box-1 {
  0%, 100% {
    transform: rotate(-10deg) scale(0.6) translateY(0px);
  }
  50% {
    transform: rotate(-10deg) scale(0.6) translateY(-12px);
  }
}
@keyframes float-text-box-2 {
  0%, 100% {
    transform: rotate(0deg) scale(0.8) translateY(0px);
  }
  50% {
    transform: rotate(0deg) scale(0.8) translateY(-10px);
  }
}
@keyframes float-text-box-3 {
  0%, 100% {
    transform: rotate(-5deg) scale(0.7) translateY(0px);
  }
  50% {
    transform: rotate(-5deg) scale(0.7) translateY(-11px);
  }
}
.contact-page__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-page__text-title {
  font-size: 24px;
  font-weight: 500;
  color: #184E4E;
}
.contact-page__text-title p:last-child {
  margin-bottom: 0;
}
.contact-page__text-description {
  line-height: 1.5;
}
.contact-page__right {
  width: 350px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .contact-page__right {
    width: 100%;
  }
}
.contact-page__form {
  width: 100%;
}
.contact-page__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E2E2E2;
}
.contact-page__info-item {
  font-size: 20px;
  display: flex;
  gap: 10px;
}
.contact-page__info-item i {
  color: #A1A1A1;
  font-size: 24px;
  margin-top: 2px;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .form__row {
    flex-direction: column;
  }
}
.form__item {
  width: 100%;
  display: flex;
  position: relative;
}
.form__item > i {
  position: absolute;
  left: 15px;
  top: 13px;
  color: #A1A1A1;
  font-size: 24px;
}
.form__item input[type=text],
.form__item input[type=email],
.form__item textarea,
.form__item select {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #E8E8E8;
  background: #FBFBFB;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  outline: 3px solid transparent;
  transition: all 0.3s ease;
}
.form__item input[type=text]:focus,
.form__item input[type=email]:focus,
.form__item textarea:focus,
.form__item select:focus {
  outline: 3px solid rgba(255, 150, 0, 0.1254901961);
  border-color: #FF9600;
}
.form__item input[type=text]:disabled,
.form__item input[type=email]:disabled,
.form__item textarea:disabled,
.form__item select:disabled {
  background: #F0F0F0;
  cursor: not-allowed;
}
.form__item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 15px center/20px;
  background-color: #FBFBFB;
  padding-right: 45px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.form__item textarea {
  resize: none;
  height: 150px;
}
.form__item.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.form__item.checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #FF9600;
}
.form__item.checkbox label {
  font-size: 16px;
  color: #585858;
}
.form__item.checkbox label > a {
  font-weight: 600;
}

.guide-hero {
  width: 100%;
  padding: 0 20px;
  height: calc(100vh - 150px);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/guide-bg.png") center center no-repeat;
}
@media (max-width: 600px) {
  .guide-hero {
    padding: 40px 10px;
    height: auto;
  }
}
.guide-hero__container {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 600px) {
  .guide-hero__container {
    gap: 40px;
  }
}
.guide-hero__text {
  display: flex;
  flex-direction: column;
}
.guide-hero__text > h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 10px;
  background: #FFEDD4;
  width: max-content;
  border-radius: 8px;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .guide-hero__text > h3 {
    font-size: 18px;
    padding: 5px 8px;
    margin-bottom: 10px;
  }
}
.guide-hero__text h1 {
  font-size: 48px;
  font-weight: 600;
  max-width: 420px;
}
@media (max-width: 600px) {
  .guide-hero__text h1 {
    font-size: 32px;
  }
}
.guide-hero__text h2 {
  font-size: 48px;
  font-weight: 400;
  max-width: 450px;
}
@media (max-width: 600px) {
  .guide-hero__text h2 {
    font-size: 32px;
  }
}
.guide-hero__text h2 span {
  font-family: "Pacifico", cursive;
  color: #FF9600;
}
.guide-hero__table {
  position: absolute;
  right: 100px;
  width: 360px;
  padding: 30px;
  background: #F8F8F8;
  border: 1px solid #E2E2E2;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transform: rotate(-4deg) scale(0.9);
  transition: all 0.3s ease;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .guide-hero__table {
    width: 100%;
    position: relative;
    right: initial;
    transform: none;
    width: 100%;
  }
}
.guide-hero__table:hover {
  transform: rotate(0deg) scale(1);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.guide-hero__table::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 82px;
  background: url("../images/guide-tick.png") no-repeat center/cover;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.guide-hero__table > h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.guide-hero__table > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-hero__table > ul li {
  display: flex;
}
.guide-hero__table > ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}
.guide-hero__table > ul a span:first-child {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0F0F0;
  border: 1px solid #F0F0F0;
  transition: all 0.3s ease;
}
.guide-hero__table > ul a:hover span:first-child {
  background: #FFEACD;
  border-color: #FF9600;
}
.guide-hero__scroll-down {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 100px;
  color: #616161;
}
@media (max-width: 600px) {
  .guide-hero__scroll-down {
    margin: auto;
  }
}
.guide-hero__scroll-down svg {
  animation: scrollDown 1.5s infinite ease-in-out;
}
@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}

.guide-contents {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.guide-contents__container {
  width: 100%;
  max-width: 1150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.guide-contents__item {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
@media (max-width: 600px) {
  .guide-contents__item {
    padding: 50px 0;
  }
}
.guide-contents__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(to right, transparent, #E2E2E2, #E2E2E2, transparent);
}
.guide-contents__item-title {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  text-align: center;
}
@media (max-width: 600px) {
  .guide-contents__item-title {
    margin-bottom: 20px;
  }
}
.guide-contents__item-title > h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 5px 10px;
  background: #FFEDD4;
  width: max-content;
  border-radius: 8px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .guide-contents__item-title > h3 {
    font-size: 18px;
    padding: 5px 8px;
    margin-bottom: 5px;
  }
}
.guide-contents__item-title > h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .guide-contents__item-title > h2 {
    font-size: 32px;
  }
}
.guide-contents__item-title > span {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #616161;
}
@media (max-width: 600px) {
  .guide-contents__item-title > span {
    font-size: 18px;
  }
}
.guide-contents__item .guide-img {
  display: flex;
  position: relative;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-img {
    flex-direction: column;
  }
}
.guide-contents__item .guide-img > img {
  width: max-content;
  border: 1px solid #E2E2E2;
  border-radius: 24px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .guide-contents__item .guide-img > img {
    width: 100%;
    border-radius: 16px;
  }
}
.guide-contents__item .guide-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e51e25;
  box-shadow: 0 0 0 2px #e51e25;
  animation: dotPulse 1.5s infinite ease-in-out;
}
@keyframes dotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 2px #e51e25;
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(229, 30, 37, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px #e51e25;
  }
}
.guide-contents__item .guide-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.guide-contents__item .guide-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-list {
    max-width: 100%;
    font-size: 18px;
  }
}
.guide-contents__item .guide-list > ul {
  display: flex;
  flex-direction: column;
}
.guide-contents__item .guide-list > ul li {
  padding: 20px 0;
  position: relative;
  line-height: 1.5;
  position: relative;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-list > ul li {
    padding: 10px 0;
  }
}
.guide-contents__item .guide-list > ul li::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 1px;
  background: #FF9600;
}
.guide-contents__item .guide-list > ul li:last-child::before {
  display: none;
}
.guide-contents__item .guide-text {
  width: 100%;
  max-width: 940px;
  padding: 40px;
  border: 1px solid #E2E2E2;
  border-radius: 24px;
  display: flex;
  gap: 40px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-text {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    font-size: 18px;
    border-radius: 16px;
  }
}
.guide-contents__item .guide-text__left {
  display: flex;
  flex-direction: column;
}
.guide-contents__item .guide-text__left > h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.guide-contents__item .guide-text__left ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-contents__item .guide-text__right > h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FF9600;
}
.guide-contents__item .guide-text__right ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.guide-contents__item .guide-text__right ul li {
  position: relative;
}
.guide-contents__item .guide-text__right ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #FF9600;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .guide-contents__item .guide-text__right ul li::before {
    left: -10px;
  }
}
.guide-contents__item .guide-text__right > span {
  padding: 15px 20px;
  font-size: 18px;
  line-height: 1.2;
  border-radius: 8px;
  background: #FFEDD4;
  color: #744400;
  display: flex;
  width: 100%;
  font-weight: 600;
}
.guide-contents__item .guide-arrow {
  position: absolute;
}
.guide-contents__item .guide-arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  display: flex;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.7;
  }
}
.guide-contents__item .guide-arrow--left::before {
  background: url("../images/guide-arrow-left.svg") no-repeat center/contain;
}
.guide-contents__item .guide-arrow--right::before {
  background: url("../images/guide-arrow-right.svg") no-repeat center/contain;
}
.guide-contents__item .guide-arrow--down::before {
  background: url("../images/guide-arrow-down.svg") no-repeat center/contain;
}
.guide-contents__item--step-1 .guide-dot {
  top: 7%;
  left: 55%;
}
.guide-contents__item--step-1 .guide-arrow--left {
  top: -2%;
  left: 60%;
}
.guide-contents__item--step-2 .guide-dot {
  top: 2%;
  left: 22%;
}
.guide-contents__item--step-2 .guide-arrow--left {
  top: -5%;
  left: 26%;
}
.guide-contents__item--step-3 .guide-img {
  flex-direction: column;
}
.guide-contents__item--step-3 .guide-img-1 {
  margin-bottom: 30px;
}
.guide-contents__item--step-3 .guide-img-2 {
  border: 1px solid #F68A1E !important;
  border-radius: 8px !important;
  max-width: max-content !important;
}
.guide-contents__item--step-3 .guide-dot {
  top: 3%;
  left: 40%;
}
.guide-contents__item--step-3 .guide-arrow--left {
  top: -2%;
  left: 44%;
}
.guide-contents__item--step-3 .guide-arrow--down {
  bottom: -7%;
  left: 32%;
}
.guide-contents__item--step-4 .guide-arrow--left {
  top: 49%;
  left: 62%;
}
.guide-contents__item--step-5 .guide-img {
  gap: 20px;
}
@media (max-width: 600px) {
  .guide-contents__item--step-5 .guide-img-1 {
    display: none;
  }
}
.guide-contents__item--step-5 .guide-dot {
  top: 5%;
  right: 18%;
}
@media (max-width: 600px) {
  .guide-contents__item--step-5 .guide-dot {
    right: 26%;
  }
}
.guide-contents__item--step-5 .guide-arrow--left {
  top: -1%;
  right: 14%;
}
@media (max-width: 600px) {
  .guide-contents__item--step-5 .guide-arrow--left {
    right: 18%;
  }
}
.guide-contents__item--step-6 .guide-wrapper {
  flex-direction: column;
  gap: 40px;
}
.guide-contents__item--step-6 .guide-img {
  gap: 20px;
}
@media (max-width: 600px) {
  .guide-contents__item--step-6 .guide-img-1 {
    display: none;
  }
}
.guide-contents__item--step-6 .guide-arrow--right {
  top: 50%;
  transform: translateY(-50%);
  left: -5%;
}
@media (max-width: 600px) {
  .guide-contents__item--step-6 .guide-arrow--right {
    display: none;
  }
}
.guide-contents__footer {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 600px) {
  .guide-contents__footer {
    padding: 50px 0;
  }
}
.guide-contents__footer > h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .guide-contents__footer > h4 {
    font-size: 24px;
  }
}
.guide-contents__footer > span {
  font-size: 30px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .guide-contents__footer > span {
    font-size: 20px;
  }
}

.faq-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}
@media (max-width: 600px) {
  .faq-page {
    padding: 40px 10px;
  }
}
.faq-page__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}
@media (max-width: 600px) {
  .faq-page__container {
    gap: 20px;
    flex-direction: column;
  }
}
.faq-page__contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 750px;
}
@media (max-width: 600px) {
  .faq-page__contents {
    gap: 20px;
  }
}
.faq-page__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}
.faq-page__title > h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .faq-page__title > h1 {
    font-size: 40px;
  }
}
.faq-page__title > h1 span {
  font-weight: 700;
}
.faq-page__title > div {
  font-size: 24px;
  font-weight: 500;
}
.faq-page__title > div p:last-child {
  margin-bottom: 0;
}
.faq-page__img {
  top: 30px;
  display: flex;
  align-self: flex-start;
  position: sticky;
}
@media (max-width: 600px) {
  .faq-page__img img {
    width: 100%;
    height: auto;
  }
}

.faq-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #E2E2E2;
  border-radius: 24px;
}
@media (max-width: 600px) {
  .faq-item {
    border-radius: 16px;
  }
}
.faq-item.active .faq-item__title {
  color: #FF9600;
  border-bottom: 1px solid #E2E2E2;
}
.faq-item.active .faq-item__title svg {
  transform: rotate(45deg);
  opacity: 1;
}
.faq-item.active .faq-item__answer {
  padding: 20px;
  max-height: 500px;
  opacity: 1;
}
@media (max-width: 600px) {
  .faq-item.active .faq-item__answer {
    padding: 15px;
  }
}
.faq-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 20px;
  border-bottom: 1px solid transparent;
  gap: 15px;
}
@media (max-width: 600px) {
  .faq-item__title {
    padding: 15px;
    gap: 10px;
  }
}
.faq-item__title:hover svg {
  opacity: 1;
}
.faq-item__title > h2 {
  font-size: 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .faq-item__title > h2 {
    font-size: 22px;
  }
}
.faq-item__title > svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
  opacity: 0.5;
}
@media (max-width: 600px) {
  .faq-item__title > svg {
    width: 20px;
    height: 20px;
  }
}
.faq-item__answer {
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
@media (max-width: 600px) {
  .faq-item__answer {
    padding: 0 15px;
    font-size: 18px;
  }
}

.blog-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .blog-page {
    padding: 40px 10px;
  }
}
.blog-page__container {
  width: 100%;
  max-width: 1415px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
}
@media (max-width: 600px) {
  .blog-page__container {
    gap: 40px;
  }
}
.blog-page__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .blog-page__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.blog-page__title h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .blog-page__title h1 {
    font-size: 40px;
  }
}
.blog-page__title h1 > span {
  font-weight: 700;
}
.blog-page__title > div {
  width: 100%;
  max-width: 750px;
  font-size: 24px;
  font-weight: 500;
  color: #184E4E;
  line-height: 1.5;
}
.blog-page__title > div p:last-child {
  margin-bottom: 0;
}
.blog-page__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 600px) {
  .blog-page__wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.blog-detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
@media (max-width: 600px) {
  .blog-detail {
    padding: 40px 10px;
  }
}
.blog-detail__container {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 600px) {
  .blog-detail__container {
    gap: 10px;
  }
}
.blog-detail__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-detail__title > h1 {
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .blog-detail__title > h1 {
    font-size: 28px;
  }
}
.blog-detail__title-description {
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .blog-detail__title-description {
    font-size: 18px;
  }
}
.blog-detail__title-description p:last-child {
  margin-bottom: 0;
}
.blog-detail__img {
  height: auto;
  aspect-ratio: 16/9;
  width: 100vw;
  max-width: 1415px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .blog-detail__img {
    width: 100%;
    left: 0;
    transform: none;
    border-radius: 16px;
  }
}
.blog-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail__info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-detail__info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-detail__info-left > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF9600;
}
.blog-detail__info-left > span {
  opacity: 0.8;
}
.blog-detail__info-left > a {
  font-weight: 600;
}
.blog-detail__info-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-detail__info-right > span {
  opacity: 0.8;
}
.blog-detail__info-right ul {
  display: flex;
  gap: 10px;
}
.blog-detail__info-right ul li {
  display: flex;
}
.blog-detail__info-right ul a {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(201, 201, 201, 0.1882352941);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}
.blog-detail__info-right ul a:hover {
  background: rgba(130, 223, 223, 0.1254901961);
  color: #82DFDF;
}
.blog-detail__content {
  line-height: 1.5;
}
.blog-detail__content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .blog-detail__content h1 {
    font-size: 24px;
  }
}
.blog-detail__content h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .blog-detail__content h2 {
    font-size: 22px;
  }
}
.blog-detail__content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .blog-detail__content h3 {
    font-size: 20px;
  }
}
.blog-detail__content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .blog-detail__content h4 {
    font-size: 18px;
  }
}
.blog-detail__content h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .blog-detail__content h5 {
    font-size: 16px;
  }
}
.blog-detail__gallery {
  width: 100%;
  display: flex;
}
.blog-detail__gallery ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-detail__gallery ul li {
  width: 100%;
}
.blog-detail__gallery ul a {
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
.blog-detail__gallery ul a:hover img {
  transform: scale(1.05);
}
.blog-detail__gallery ul a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.go-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.go-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.go-popup__container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  height: auto;
  max-height: 90%;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
}
@media (max-width: 600px) {
  .go-popup__container {
    border-radius: 0;
    max-height: 100%;
    padding: 0;
  }
}
.go-popup__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
  gap: 40px;
  z-index: 2;
}
@media (max-width: 600px) {
  .go-popup__wrapper {
    padding: 15px;
    gap: 20px;
  }
}
.go-popup__wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  gap: 20px;
}
.go-popup__wrapper::-webkit-scrollbar-thumb {
  background: #C9C9C9;
  border-radius: 4px;
}
.go-popup__wrapper::-webkit-scrollbar-thumb:hover {
  background: #A0A0A0;
}
.go-popup__wrapper::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 4px;
}
.go-popup__title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}
.go-popup__title-logo {
  display: flex;
}
.go-popup__title-logo img {
  height: 90px;
}
@media (max-width: 600px) {
  .go-popup__title-logo img {
    height: 70px;
  }
}
.go-popup__title > h5 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .go-popup__title > h5 {
    font-size: 28px;
  }
}
.go-popup__title > h5 span {
  font-weight: 700;
}
.go-popup__form {
  max-width: 720px;
}
.go-popup__form .button {
  justify-content: center;
  margin: auto;
  padding: 15px 40px;
}
.go-popup__htu {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .go-popup__htu {
    display: none;
  }
}
.go-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #E2E2E2;
}
@media (max-width: 600px) {
  .go-popup__close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 6px;
  }
}
.go-popup__close:hover {
  background: #FFE8C8;
  border-color: #FFE8C8;
}
.go-popup__close:hover svg {
  fill: #FFFFFF;
}
.go-popup__close svg {
  width: 24px;
  height: 24px;
  fill: #A1A1A1;
  transition: all 0.3s ease;
}
.go-popup__close svg:hover {
  fill: #FF9600;
}
.go-popup__info {
  text-align: center;
}
.go-popup__bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  /*
  &::after {
      content: "";
      width: 50vw;
      height: 50vw;
      position: absolute;
      top: 0;
      left: -35vw;
      background: linear-gradient(135deg, #ffd79e, #fff);
      border-radius: 50%;
      z-index: 1;
  }

  &--right {
      &::before {
          top: -15vw;
          right: -15vw;
          background: linear-gradient(-165deg, #98fcfc, #fff);
      }

      &::after {
          top: 0vw;
          left: 60vw;
          background: linear-gradient(-165deg, #ffd79e, #fff);
      }
  }
  */
}
.go-popup__bg--top {
  top: -15vw;
}
.go-popup__bg--top::before {
  content: "";
  width: 30vw;
  height: 30vw;
  position: absolute;
  left: -15vw;
  background: linear-gradient(135deg, #c2ffff, #fff);
  border-radius: 50%;
}
.go-popup__bg--top::after {
  content: "";
  width: 30vw;
  height: 30vw;
  position: absolute;
  right: -15vw;
  background: linear-gradient(-135deg, #98fcfc, #fff);
  border-radius: 50%;
}
.go-popup__bg--bottom {
  z-index: 0;
  bottom: -25vw;
}
.go-popup__bg--bottom::before {
  left: -35vw;
  content: "";
  width: 50vw;
  height: 50vw;
  position: absolute;
  background: linear-gradient(-135deg, #ffe2ba, #fff);
  border-radius: 50%;
}
.go-popup__bg--bottom::after {
  right: -35vw;
  content: "";
  width: 50vw;
  height: 50vw;
  position: absolute;
  background: linear-gradient(-135deg, #ffd79e, #fff);
  border-radius: 50%;
}

.hero-item__text h2,
.hero-item__tslider,
.hero-item__line,
.hero-item__description,
.hero-item__buttons .button,
.hero-item__img {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

/*
.swiper-slide:not(.swiper-slide-active) .hero-item__text h2,
.swiper-slide:not(.swiper-slide-active) .hero-item__tslider,
.swiper-slide:not(.swiper-slide-active) .hero-item__line,
.swiper-slide:not(.swiper-slide-active) .hero-item__description,
.swiper-slide:not(.swiper-slide-active) .hero-item__buttons .button,
.swiper-slide:not(.swiper-slide-active) .hero-item__img {
    opacity: 0 !important;
    transform: translateY(30px) !important;
}
*/
.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu:hover .hamburger-line {
  background-color: #555;
}

.pswp__img {
  height: auto !important;
}

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