@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
main {
  overflow-x: hidden;
}

.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .home-banner {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner {
    padding: 100px 0 50px;
  }
}
.home-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0.22) 54%, rgb(0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home-banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.03);
}
.home-banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.home-banner .bg-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding-top: 54px;
}
@media only screen and (max-width: 1024px) {
  .home-banner .bg-wrapper {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .bg-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.home-banner .heading {
  flex: 1;
  max-width: 560px;
}
@media only screen and (max-width: 768px) {
  .home-banner .heading {
    max-width: 100%;
  }
}
.home-banner .heading p {
  font-family: "Circular";
  font-weight: 400;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .home-banner .heading p {
    font-size: 14px;
  }
}
.home-banner .heading p::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(200, 165, 90, 0.85);
  flex-shrink: 0;
}
.home-banner .heading h1 {
  text-transform: uppercase;
  margin: 12px 0 20px;
}
.home-banner .form-grid {
  width: 100%;
  max-width: 460px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(25px) saturate(63%);
  -webkit-backdrop-filter: blur(25px) saturate(63%);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset, 0 1px 0 rgba(255, 255, 255, 0.18) inset;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 1024px) {
  .home-banner .form-grid {
    max-width: 400px;
    padding: 36px 32px;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner .form-grid {
    max-width: 100%;
    padding: 32px 28px;
  }
}
.home-banner .form-grid .form-group {
  position: relative;
  margin-bottom: 20px;
}
.home-banner .form-grid .form-group:last-of-type {
  margin-bottom: 32px;
}
.home-banner .form-grid .form-group:nth-child(4) {
  display: flex;
  position: relative;
}
.home-banner .form-grid .form-group:nth-child(4) label {
  width: 300px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.3s ease;
}
.home-banner .form-grid .form-group:nth-child(4) .date-icon {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.home-banner .form-grid .form-group:nth-child(4) .date-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-banner .form-grid .form-group:nth-child(4) input[name=daterange] {
  color: var(--white);
}
.home-banner .form-grid .form-group:nth-child(4) input[name=daterange]:focus ~ label, .home-banner .form-grid .form-group:nth-child(4) input[name=daterange].has-value ~ label {
  top: -10px;
  transform: translateY(0);
  font-size: 12px;
  padding: 0 5px;
  color: var(--white);
}
@media only screen and (max-width: 540px) {
  .home-banner .form-grid .form-group:nth-child(4) input[name=daterange]:focus ~ label, .home-banner .form-grid .form-group:nth-child(4) input[name=daterange].has-value ~ label {
    top: -8px;
    font-size: 11px;
  }
}
.home-banner .form-grid .form-group:nth-child(4) input[type=date] {
  position: relative;
}
.home-banner .form-grid .form-group:nth-child(4) input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.home-banner .form-grid .form-group label {
  color: var(--white);
  font-family: "Circular";
}
.home-banner .form-grid .form-group::before {
  --borderbefore: var(--white);
}
.home-banner .form-grid .form-group input:not(.no-focus):focus ~ label,
.home-banner .form-grid .form-group input.valid ~ label {
  color: var(--white);
}
.home-banner .form-grid .form-group input, .home-banner .form-grid .form-group textarea {
  color: var(--white);
}
.home-banner .form-grid .btn-fill {
  margin: 0 auto;
}
.home-banner .form-grid .btn-fill input,
.home-banner .form-grid .btn-fill select,
.home-banner .form-grid .btn-fill textarea {
  font-family: "Circular";
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 0 10px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
}

.home-secA {
  padding: 90px 0 30px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    padding: 60px 0 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA {
    padding: 40px 0 20px;
  }
}
.home-secA::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  background-image: url("../../icon/art-left.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .home-secA::after {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA::after {
    width: 150px;
    height: 150px;
    display: none;
  }
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .home-secA .grid {
    gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.home-secA .item-img {
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .home-secA .item-img {
    order: 2;
  }
}
.home-secA .item-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.home-secA .item-img img:hover {
  transform: scale(1.05);
}
.home-secA .item-content {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .home-secA .item-content {
    order: 1;
    text-align: center;
  }
}
.home-secA .item-content h4 {
  margin-bottom: 15px;
  line-height: 1.3;
}
@media only screen and (max-width: 991px) {
  .home-secA .item-content h4 {
    font-size: 28px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content h4 {
    font-size: 24px;
  }
}
.home-secA .item-content p {
  line-height: 1.6;
  color: var(--text);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content p {
    font-size: 14px;
  }
}
.home-secA .item-content .numbers {
  margin: 30px 0 40px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .home-secA .item-content .numbers {
    gap: 40px;
    justify-content: center;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers {
    gap: 30px;
    margin: 20px 0 30px;
  }
}
.home-secA .item-content .numbers .border {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.49);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .border {
    height: 50px;
  }
}
.home-secA .item-content .numbers .num h6 {
  margin: 0;
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num h6 {
    font-size: 20px;
  }
}
.home-secA .item-content .numbers .num span {
  font-size: 24px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num span {
    font-size: 20px;
  }
}
.home-secA .item-content .numbers .num p {
  margin-top: 5px;
  font-size: 14px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .home-secA .item-content .numbers .num p {
    font-size: 12px;
  }
}

.home-secB {
  padding-bottom: 50px;
}
@media only screen and (max-width: 540px) {
  .home-secB {
    padding-bottom: 30px;
  }
}
.home-secB .heading {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  height: 138px;
  padding: 30px 0 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading {
    height: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secB .heading {
    flex-direction: column;
    height: auto;
    gap: 20px;
    padding: 20px 0;
  }
}
.home-secB .heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-10%);
  width: 340px;
  height: 340px;
  background-image: url("../../icon/art-bottom.svg");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading::after {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading::after {
    width: 150px;
    height: 150px;
    display: none;
  }
}
.home-secB .heading p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 5px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .home-secB .heading p {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .heading p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}
.home-secB .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .home-secB .swiper-buttons {
    display: none;
  }
}
.home-secB .swiper-buttons button {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.home-secB .swiper-buttons button:hover {
  opacity: 0.7;
}
.home-secB .swiper-buttons button svg {
  width: 30px;
  display: block;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .home-secB .swiper-buttons button svg {
    width: 24px;
  }
}
.home-secB .swiper-buttons button svg path {
  fill: var(--primary);
}
.home-secB .swiper-buttons button:first-child {
  transform: rotate(180deg);
}
.home-secB .swiper-buttons button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  min-height: 450px;
  isolation: isolate;
  transition: 0.5s ease;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card {
    min-height: 350px;
    border-radius: 18px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card:hover .card-img img {
  transform: scale(1.08);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card:hover .card-content {
  transform: translateY(0);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card:hover::after {
  opacity: 1;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.85) 80%);
  z-index: 1;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(201, 165, 92, 0.05) 0%, rgba(201, 165, 92, 0.35) 100%);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s ease;
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  z-index: 3;
  padding: 40px;
  transform: translateY(35px);
  transition: 0.5s ease;
}
@media only screen and (max-width: 991px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content {
    padding: 20px;
    transform: translateY(20px);
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content h5 {
  font-family: "Cinzel";
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  padding-top: 25px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 991px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content h5 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content h5 {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content span {
  color: var(--white);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content p {
    font-size: 13px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content .arrow-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}
@media only screen and (max-width: 540px) {
  .home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content .arrow-btn {
    width: 45px;
    height: 45px;
    margin-top: 20px;
  }
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content .arrow-btn svg {
  width: 18px;
  height: 18px;
  transition: 0.4s ease;
  fill: var(--white);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content .arrow-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.home-secB .commanSwiper .swiper-wrapper .swiper-slide .card .card-content .arrow-btn:hover svg {
  transform: rotate(-45deg);
}
.home-secB .btn-fill {
  display: block;
  margin: 0 auto;
}

.home-secC {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin: 90px 0 0;
}
@media only screen and (max-width: 991px) {
  .home-secC {
    height: 80vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC {
    height: 60vh;
  }
}
.home-secC::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}
.home-secC::after {
  position: absolute;
  content: "";
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
  pointer-events: none;
}
@media only screen and (max-width: 540px) {
  .home-secC::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}
.home-secC video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1.05);
}
.home-secC .content {
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 950px;
  text-align: center;
  z-index: 3;
  padding: 0 30px;
}
@media only screen and (max-width: 540px) {
  .home-secC .content {
    padding: 0 20px;
  }
}
.home-secC .content .img-deg {
  width: 90px;
  margin: 0 auto 30px;
  animation: rotate360 14s linear infinite;
}
@media only screen and (max-width: 540px) {
  .home-secC .content .img-deg {
    width: 65px;
    margin-bottom: 20px;
  }
}
.home-secC .content p {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 540px) {
  .home-secC .content p {
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
}
.home-secC .content h1 {
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .home-secC .content h1 {
    margin-bottom: 20px;
  }
}
.home-secC .content .btn-fill {
  margin: 0 auto;
}

.home-secD {
  padding: 70px 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secD {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD {
    padding: 3rem 0;
  }
}
.home-secD .circle-effect {
  top: 10%;
  left: 16%;
  width: 200px;
  height: 200px;
}
@media only screen and (max-width: 991px) {
  .home-secD .circle-effect {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .circle-effect {
    display: none;
  }
}
.home-secD .heading {
  text-align: center;
  padding-bottom: 60px;
  max-width: 445px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading {
    padding-bottom: 30px;
  }
}
.home-secD .heading h3 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h3 {
    font-size: 24px;
  }
}
.home-secD .heading h4 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  .home-secD .heading h4 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading p {
    font-size: 14px;
  }
}
.home-secD .swiper-wrap {
  position: relative;
}
.home-secD .swiper-wrap .swiper-group {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group {
    width: 70%;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .swiper-wrap .swiper-group {
    display: none;
  }
}
.home-secD .swiper-wrap .swiper-group button {
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.home-secD .swiper-wrap .swiper-group button svg {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 991px) {
  .home-secD .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.home-secD .swiper-wrap .swiper-group button svg path {
  fill: var(--black);
}
.home-secD .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.home-secD .swiper-wrap .swiper-group .media-next {
  transform: rotate(270deg);
}
.home-secD .swiper-wrap .swiper-group .media-prev {
  transform: rotate(90deg);
}
.home-secD .media-slider .swiper-slide .item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.home-secD .media-slider .swiper-slide .item::before {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
}
.home-secD .media-slider .swiper-slide .item .item-img {
  overflow: hidden;
  border-radius: 10px;
}
.home-secD .media-slider .swiper-slide .item .item-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.home-secD .media-slider .swiper-slide .item .item-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 1.5rem;
  width: 85%;
  border-radius: 10px 10px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1366px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    width: 90%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    padding: 1.5rem 1.2rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .media-slider .swiper-slide .item .item-content {
    padding: 1.5rem 1rem;
    width: 95%;
  }
}
.home-secD .media-slider .swiper-slide .item .item-content h5 {
  color: var(--white);
  margin-bottom: 0;
  font-weight: 400;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secD .media-slider .swiper-slide .item .item-content h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .media-slider .swiper-slide .item .item-content h5 {
    font-size: 16px;
  }
}
.home-secD .media-slider .swiper-slide.swiper-slide-active {
  z-index: 2;
}
.home-secD .media-slider .swiper-slide.swiper-slide-active .item .item-content {
  opacity: 1;
  visibility: visible;
}

.home-secE {
  padding: 110px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    padding: 3.5rem 0;
  }
}
.home-secE .heading {
  text-align: center;
  padding-bottom: 60px;
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .home-secE .heading {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading {
    padding-bottom: 30px;
  }
}
.home-secE .heading h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 52px;
  line-height: 1.1;
}
@media only screen and (max-width: 991px) {
  .home-secE .heading h3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .heading h3 {
    font-size: 28px;
  }
}
.home-secE .heading p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 540px) {
  .home-secE .heading p {
    font-size: 14px;
  }
}
.home-secE .choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
@media only screen and (max-width: 1199px) {
  .home-secE .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .home-secE .choose-grid {
    grid-template-columns: 1fr;
  }
}
.home-secE .choose-card {
  position: relative;
  padding: 50px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.45s ease;
  overflow: hidden;
  background: transparent;
}
@media only screen and (max-width: 540px) {
  .home-secE .choose-card {
    padding: 35px 24px;
  }
}
.home-secE .choose-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 146, 90, 0.12), transparent 60%);
  opacity: 1;
  transition: 0.45s ease;
}
.home-secE .choose-card .count {
  font-size: 64px;
  font-weight: 700;
  color: #b9925a;
  line-height: 1;
  margin-bottom: 28px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 540px) {
  .home-secE .choose-card .count {
    font-size: 48px;
    margin-bottom: 22px;
  }
}
.home-secE .choose-card .content {
  max-width: 100%;
}
.home-secE .choose-card .content h4 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 14px;
  transition: 0.4s ease;
}
@media only screen and (max-width: 540px) {
  .home-secE .choose-card .content h4 {
    font-size: 20px;
  }
}
.home-secE .choose-card .content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.3;
}
@media only screen and (max-width: 540px) {
  .home-secE .choose-card .content p {
    font-size: 13px;
  }
}
.home-secE .circle-effect {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 146, 90, 0.08) 0%, transparent 70%);
  bottom: -180px;
  right: -100px;
  pointer-events: none;
}

.home-secF {
  padding: 70px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1366px) {
  .home-secF {
    padding: 55px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secF {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secF {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF {
    padding: 30px 0;
  }
}
.home-secF .heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  .home-secF .heading {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .home-secF .heading {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .heading {
    margin-bottom: 1.5rem;
  }
}
.home-secF .heading h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.home-secF .heading p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}
.home-secF .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 1366px) {
  .home-secF .grid {
    gap: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secF .grid {
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .home-secF .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.home-secF .media {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}
.home-secF .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.home-secF .item-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content {
    gap: 18px;
  }
}
.home-secF .item-content::before {
  position: absolute;
  content: "";
  top: 8px;
  bottom: 90px;
  left: 33px;
  width: 1px;
  background: var(--primary-dark);
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content::before {
    left: 24px;
  }
}
.home-secF .item-content li {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content li {
    gap: 14px;
  }
}
.home-secF .item-content .icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 50%;
  border: 1px solid var(--primary-dark);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}
.home-secF .item-content .icon svg {
  width: 30px;
  height: 30px;
}
.home-secF .item-content .icon svg path {
  stroke: var(--primary-dark);
}
.home-secF .item-content .content {
  padding-top: 4px;
  transition: 0.4s ease;
}
.home-secF .item-content .content h6 {
  font-size: 22px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .home-secF .item-content .content h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content .content h6 {
    font-size: 16px;
  }
}
.home-secF .item-content .content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content .content p {
    font-size: 13px;
    line-height: 1.5;
  }
}
.home-secF .item-content .highlight-item {
  background: linear-gradient(135deg, #000000 0%, rgba(25, 25, 25, 0.368627451) 100%);
  border-radius: 20px;
  padding: 20px;
  margin-top: 12px;
  border: 1px solid var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.home-secF .item-content .highlight-item .content {
  padding: 0;
}
.home-secF .item-content .highlight-item h5 {
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .home-secF .item-content .highlight-item h5 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .item-content .highlight-item h5 {
    font-size: 18px;
  }
}
.home-secF .item-content .highlight-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}/*# sourceMappingURL=home.css.map */