.hero {
  position: relative;
  margin-bottom: min(42px, 4vw);
}
.hero > img {
  opacity: 7%;
  width: 100%;
  min-height: 700px;
  max-height: 800px;
  object-fit: cover;
  object-position: center;
}
.hero .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.hero .wrapper h1 p {
  font-weight: 700;
  font-size: clamp(20px, 5vw, 80px);
  line-height: 1.025;
  letter-spacing: 0.4px;
  margin-bottom: min(63px, 4vw);
  color: var(--blue);
}
.hero .wrapper h1 p span {
  color: var(--light-blue);
}
.hero .wrapper .box {
  position: relative;
  width: min(1140px, 95%);
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  border-radius: 15px;
  padding-block: min(30px, 7vw) min(37px, 7vw);
  margin-bottom: min(96px, 6vw);
  margin-inline: auto;
}
.hero .wrapper .box::after {
  content: "";
  position: absolute;
  background-color: white;
  border-radius: 13px;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
}
.hero .wrapper .box p {
  position: relative;
  z-index: 1;
  font-family: Rubik;
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  margin-bottom: min(30px, 4vw);
  padding-inline: 20px;
}
.hero .wrapper .box .buttons {
  position: relative;
  z-index: 1;
  gap: min(56px, 4vw);
}
@media only screen and (max-width: 500px) {
  .hero .wrapper .box .buttons {
    flex-direction: column;
    align-items: center;
  }
}
.hero .wrapper .box .buttons a {
  position: relative;
  padding: min(19px, 2vw) min(23px, 2vw);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.5px;
  border-radius: 15px;
  border: 2px black solid;
  color: black;
}
@media only screen and (max-width: 500px) {
  .hero .wrapper .box .buttons a {
    width: min(270px, 95%);
  }
}
.hero .wrapper .box .buttons a:first-child:hover::after {
  transform: unset;
}
.hero .wrapper .box .buttons a:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--light-blue);
  border-radius: 12px;
  z-index: -1;
  transform: translate(25px, 13px);
  transition: all 0.4s ease;
}
.hero .wrapper .box .buttons a:last-child:hover::after {
  transform: unset;
}
.hero .wrapper .box .buttons a:last-child::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-color: var(--purple);
  z-index: -1;
  transform: translate(12px, 13px);
  transition: all 0.4s ease;
}
.hero .wrapper .box .deco-wrapper {
  position: absolute;
  right: -35px;
  bottom: -120px;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .hero .wrapper .box .deco-wrapper {
    width: 40vw;
    bottom: -170px;
    right: -10px;
  }
}

.about {
  background-color: rgb(244, 248, 255);
  margin-inline: min(32px, 4vw);
  padding-block: min(85px, 7vw);
  border-radius: 15px;
}
.about .container {
  width: min(1165px, 90%);
  column-gap: min(99px, 5vw);
}
@media only screen and (max-width: 768px) {
  .about .container {
    flex-direction: column-reverse;
    row-gap: 3vw;
  }
}
.about .container .text-wrapper {
  width: 47.29%;
}
@media only screen and (max-width: 768px) {
  .about .container .text-wrapper {
    width: 100%;
  }
}
.about .container .text-wrapper h2 {
  font-family: Helius;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 38px);
  line-height: 2.63;
  letter-spacing: 0.4px;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .container .text-wrapper > p {
  font-family: Rubik;
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  margin-bottom: min(34px, 4vw);
}
.about .container .text-wrapper .details {
  position: relative;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  border-radius: 15px;
  row-gap: min(22.5px, 4vw);
  padding: min(28px, 3vw) min(32px, 3vw);
}
.about .container .text-wrapper .details::after {
  content: "";
  position: absolute;
  background-color: rgb(244, 248, 255);
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  border-radius: 13px;
}
.about .container .text-wrapper .details .detail {
  position: relative;
  z-index: 1;
  font-family: Rubik;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
}
.about .container .text-wrapper .details .detail:last-child .icon-wrapper {
  margin-inline-end: 15px;
}
.about .container .text-wrapper .details .detail .icon-wrapper {
  margin-inline-end: 21px;
}
.about .container .text-wrapper .details .detail strong {
  margin-inline-end: 4px;
}
.about .container .image-wrapper {
  width: 47.21%;
}
@media only screen and (max-width: 768px) {
  .about .container .image-wrapper {
    width: 100%;
  }
}
.about .container .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.suitable {
  margin-block: min(92px, 7vw) min(165px, 12vw);
}
.suitable h2 {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 42px);
  letter-spacing: 0.4px;
  text-align: center;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: min(68px, 3vw);
}
.suitable .group-wrapper {
  gap: min(130px, 5vw);
}
@media only screen and (max-width: 660px) {
  .suitable .group-wrapper {
    flex-direction: column;
  }
}
.suitable .group-wrapper .group {
  width: min(510px, 40vw);
}
@media only screen and (max-width: 660px) {
  .suitable .group-wrapper .group {
    width: 90%;
    margin-inline: auto;
  }
}
.suitable .group-wrapper .group .image-wrapper {
  height: min(510px, 90vw);
}
.suitable .group-wrapper .group .image-wrapper img {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.22);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.suitable .group-wrapper .group h3 {
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 28px);
  letter-spacing: 0.4px;
  width: fit-content;
  color: white;
  border-radius: 15px;
  padding: 10px 10px;
  padding: 3px min(45px, 4vw);
  margin-inline: auto;
  transform: translateY(-50%);
}
.suitable .group-wrapper .group p {
  font-family: Rubik;
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  text-align: center;
}

.gallery {
  position: relative;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  padding-inline: min(32px, 4vw);
  padding-block: min(82px, 7vw) min(125px, 10vw);
}
.gallery h2 {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 42px);
  letter-spacing: 0.4px;
  text-align: center;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: min(38px, 3vw);
}
.gallery p {
  font-family: Rubik;
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  text-align: center;
  margin-bottom: min(64px, 5vw);
}
.gallery .swiper .swiper-wrapper .swiper-slide {
  width: 295px;
  height: 431px;
}
.gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-first, .gallery .swiper .swiper-wrapper .swiper-slide.swiper-slide-last {
  opacity: 0.3;
}
.gallery .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(7, 24, 56, 0) 58%, #071838 100%);
}
.gallery .swiper .swiper-pagination {
  position: relative;
  margin-top: min(52px, 4vw);
}
.gallery .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(4, 36, 96);
}
.gallery .swiper .swiper-button-next {
  scale: 0.4;
  left: 15.4%;
  color: black;
}
@media only screen and (max-width: 1400px) {
  .gallery .swiper .swiper-button-next {
    left: 18.4%;
  }
}
@media only screen and (max-width: 1200px) {
  .gallery .swiper .swiper-button-next {
    left: 23%;
  }
}
@media only screen and (max-width: 1000px) {
  .gallery .swiper .swiper-button-next {
    display: none;
  }
}
.gallery .swiper .swiper-button-prev {
  scale: 0.4;
  right: 15.4%;
  color: black;
}
@media only screen and (max-width: 1400px) {
  .gallery .swiper .swiper-button-prev {
    right: 18.4%;
  }
}
@media only screen and (max-width: 1200px) {
  .gallery .swiper .swiper-button-prev {
    right: 23%;
  }
}
@media only screen and (max-width: 1000px) {
  .gallery .swiper .swiper-button-prev {
    display: none;
  }
}
.gallery .deco-wrapper {
  position: absolute;
  top: -140px;
  right: 15%;
}
@media only screen and (max-width: 1000px) {
  .gallery .deco-wrapper {
    top: -80px;
    right: 0;
  }
}
@media only screen and (max-width: 900px) {
  .gallery .deco-wrapper {
    width: 25vw;
  }
}
@media only screen and (max-width: 500px) {
  .gallery .deco-wrapper {
    top: -60px;
  }
}
@media only screen and (max-width: 370px) {
  .gallery .deco-wrapper {
    top: -40px;
  }
}

.works {
  position: relative;
  padding-bottom: min(106px, 10vw);
  margin-inline: min(32px, 4vw);
}
.works h2 {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 42px);
  letter-spacing: 0.4px;
  text-align: center;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: min(66px, 5vw);
}
.works .works-wrapper {
  column-gap: min(69px, 3vw);
  margin-bottom: min(86px, 6vw);
  width: fit-content;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .works .works-wrapper {
    flex-wrap: wrap;
    row-gap: 4vw;
  }
}
.works .works-wrapper .work {
  max-width: 380px;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .works .works-wrapper .work {
    width: 48%;
  }
}
@media only screen and (max-width: 600px) {
  .works .works-wrapper .work {
    width: 100%;
    max-width: unset;
  }
}
.works .works-wrapper .work .image-wrapper {
  height: 213px;
}
.works .works-wrapper .work .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.works .works-wrapper .work .location {
  margin-block: min(49px, 4vw) min(20px, 3vw);
  background: rgba(217, 109, 245, 0.2);
  border-radius: 100px;
  width: fit-content;
  margin-inline: auto;
  font-family: Rubik;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.11;
  padding: 5px 15px;
}
.works .works-wrapper .work .name {
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 26px);
  line-height: 1.26;
  letter-spacing: 0.5px;
  margin-bottom: min(34px, 1vw);
}
.works .works-wrapper .work .desc {
  font-family: Rubik;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6875;
  padding-inline: min(62px, 2vw);
  margin-bottom: min(36px, 3vw);
}
.works .works-wrapper .work a {
  position: relative;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 18px);
  color: black;
  letter-spacing: 0.5px;
  border-radius: 15px;
  border: 3px solid black;
  padding: 11px min(24px, 3vw);
  margin-bottom: min(54px, 4vw);
}
.works .works-wrapper .work a:hover::after {
  transform: unset;
}
.works .works-wrapper .work a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-color: var(--purple);
  transform: translate(10px, 10px);
  transition: all 0.4s ease;
  z-index: -1;
}
.works .works-wrapper .work:nth-child(3) .location {
  background: rgba(75, 144, 160, 0.2);
}
.works .works-wrapper .work:nth-child(3) a::after {
  background-color: var(--light-blue);
}
.works .works-wrapper .deco-wrapper {
  position: absolute;
  width: 228px;
  top: 25px;
  left: 90px;
}
@media only screen and (max-width: 1000px) {
  .works .works-wrapper .deco-wrapper {
    left: -20px;
    top: -50px;
    width: 150px;
  }
}
@media only screen and (max-width: 500px) {
  .works .works-wrapper .deco-wrapper {
    width: 20vw;
    left: unset;
    right: 0;
    top: -40px;
  }
}
.works > a {
  position: relative;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.4px;
  margin-inline: auto;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 15px;
  border: 2px solid;
  width: fit-content;
  padding: 9.5px 34px;
}

.guider {
  margin-inline: min(32px, 4vw);
  background-color: rgb(244, 248, 255);
  border-radius: 15px;
  column-gap: min(110px, 6vw);
  padding-block: min(84px, 6vw);
  margin-bottom: min(50px, 4vw);
  padding-inline: 20px;
}
@media only screen and (max-width: 1050px) {
  .guider {
    gap: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .guider {
    flex-direction: column;
    padding-block: 0 min(84px, 6vw);
  }
}
.guider > .image-wrapper {
  width: min(550px, 100%);
  height: min(500px, 80vw);
}
@media only screen and (max-width: 1050px) {
  .guider > .image-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .guider > .image-wrapper {
    width: 100%;
  }
}
.guider > .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
@media only screen and (max-width: 1050px) {
  .guider .text-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .guider .text-wrapper {
    width: 100%;
  }
}
.guider .text-wrapper h2 {
  font-weight: 700;
  font-size: clamp(18px, 3vw, 42px);
  letter-spacing: 0.4px;
  line-height: 1;
  background: linear-gradient(90deg, #882e9f 0%, #4b90a0 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin-bottom: min(40px, 3vw);
}
@media only screen and (max-width: 768px) {
  .guider .text-wrapper h2 {
    margin-inline: auto;
  }
}
.guider .text-wrapper > p {
  font-family: Rubik;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  width: min(516px, 40vw);
  margin-bottom: min(40px, 3vw);
}
@media only screen and (max-width: 768px) {
  .guider .text-wrapper > p {
    width: 100%;
    text-align: center;
  }
}
.guider .text-wrapper .artists {
  gap: min(26px, 4vw);
}
@media only screen and (max-width: 768px) {
  .guider .text-wrapper .artists {
    flex-direction: column;
  }
}
.guider .text-wrapper .artists .image-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  .guider .text-wrapper .artists .image-wrapper {
    width: unset;
    height: unset;
  }
}
.guider .text-wrapper .artists .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}
.guider .text-wrapper .artists .image-wrapper p {
  position: absolute;
  background-color: white;
  border-radius: 100px;
  bottom: 4px;
  left: 12px;
  right: 12px;
  font-family: Rubik;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.11;
  text-align: center;
  padding-block: 5px;
}/*# sourceMappingURL=homepage.min.css.map */