@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner {
  overflow: hidden;
}
.banner .bg .union {
  position: absolute;
  bottom: -215px;
  left: 50%;
  transform: translate(-50%);
  z-index: 5;
}
.banner .bg .union img {
  max-width: 1200px;
  width: 115%;
}
@media only screen and (max-width: 1366px) {
  .banner .bg .union img {
    width: 100%;
    max-width: 450px;
  }
}
.banner .bg .banner-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  top: 40% !important;
}
.banner .bg .banner-wrapper .content {
  width: 100%;
  max-width: 658px;
  margin: 0 auto;
}
.banner .bg .banner-wrapper .content h1 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}
.banner .bg .banner-wrapper .content p {
  margin: 20px 0 30px;
  color: var(--white);
}
.banner .bg .banner-wrapper .content a {
  color: var(--white);
}
.banner .bg .banner-wrapper .content a::before {
  background: var(--white);
}
.banner .bg .banner-wrapper .content a svg path {
  fill: var(--white);
}

.home-secA {
  background: var(--black);
  padding: 70px 0;
}
.home-secA .wrap {
  width: 100%;
  max-width: 60%;
  text-align: center;
  margin: 0 auto;
}
.home-secA .wrap h3 {
  color: var(--primary);
}
.home-secA .wrap p:not(.item p) {
  color: var(--light-gray);
  padding: 25px 0 35px;
  border-bottom: 1px solid #CACACA;
}
.home-secA .wrap .bnft {
  margin: 30px 0 0;
}
.home-secA .wrap .bnft .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
.home-secA .wrap .bnft .grid .item img {
  max-width: 100%;
}
.home-secA .wrap .bnft .grid .item p {
  text-transform: uppercase;
  margin-top: 25px;
  color: var(--light-gray);
}

.home-secB {
  position: relative;
  padding: 5rem 0;
  min-height: 100vh;
}
.home-secB .bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-secB .bg-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.home-secB .content {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 60%;
  text-align: center;
  padding: 30px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  background: rgba(255, 255, 255, 0.8);
}
.home-secB .content .item h3 {
  text-transform: uppercase;
}
.home-secB .content .item h4 {
  font-size: 40px;
  line-height: 1.2;
  font-family: "Ivy Mode";
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .home-secB .content .item h4 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .content .item h4 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .content .item h4 {
    font-size: 26px;
  }
}
.home-secB .content .item p {
  text-transform: uppercase;
}

.home-secC {
  background: var(--gray);
  padding: 70px 0;
}
.home-secC .heading {
  margin-bottom: 3rem;
}
.home-secC .heading h3 {
  color: var(--primary);
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-img {
  position: relative;
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-img img {
  width: 100%;
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-img .detail-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  padding: 12px;
  background: var(--primary);
  transition: all 0.2s ease-in;
  cursor: pointer;
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-img .detail-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  transform: rotate(135deg);
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-img .detail-btn:hover {
  background: var(--primaryDark);
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content {
  padding: 15px 0 0;
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content h5 {
  color: var(--white);
}
.home-secC .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content p {
  color: var(--white);
}
.home-secC .slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 0 0;
  flex-wrap: nowrap;
}
.home-secC .slider-nav .count {
  color: var(--white);
  font-family: "Ivy Mode";
}
.home-secC .slider-nav .btns {
  display: flex;
  gap: 10px;
}
.home-secC .slider-nav .btns button {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border: 1px solid #2A2A2A;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease-in;
}
.home-secC .slider-nav .btns button svg {
  width: 14px;
  height: 14px;
  fill: #2A2A2A;
  display: block;
}
.home-secC .slider-nav .btns button:hover {
  background: var(--primaryDark);
}
.home-secC .slider-nav .btns .prev {
  transform: rotate(90deg);
}
.home-secC .slider-nav .btns .next {
  transform: rotate(270deg);
}
.home-secC .slider-nav .progress {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 2px;
  background: #3a3a3a;
  overflow: hidden;
  box-sizing: border-box;
}
.home-secC .slider-nav .progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--white);
  opacity: 0.6;
  transition: width 0.3s ease;
}

.home-secD {
  background: var(--black);
  padding: 70px 0;
}
.home-secD .heading {
  margin-bottom: 5rem;
  text-align: center;
}
.home-secD .heading h3 {
  color: var(--primary);
}
.home-secD .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.home-secD .grid .item {
  display: grid;
  grid-template-columns: 1fr 225px;
  background: var(--white);
  border-radius: 28px;
  position: relative;
}
.home-secD .grid .item .item-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-secD .grid .item .item-content h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Ivy Mode";
}
.home-secD .grid .item .item-content p {
  color: var(--black);
  font-size: 12px;
  line-height: 1.5;
}
.home-secD .grid .item .item-img img {
  width: 100%;
  display: block;
}
.home-secD .grid .item .countLenght {
  position: absolute;
  top: -24px;
  left: 35px;
  background: var(--primary);
  padding: 10px 15px;
}
.home-secD .grid .item .countLenght span {
  font-size: 20px;
  color: rgba(31, 31, 31, 0.986);
  font-family: "Ivy Mode";
}

.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card {
  position: relative;
  overflow: hidden;
}
.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}
.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 100%;
  padding: 0 40px;
  z-index: 2;
}
.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content p {
  margin: 20px 0 30px;
}
.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content h5 {
  width: 100%;
  max-width: 245px;
  text-transform: uppercase;
}
.why-choose-us .swiper-wrap .swiper .swiper-wrapper .swiper-slide .card .card-content .btn {
  text-transform: capitalize;
}

.home-secG {
  background: var(--primary);
  padding: 70px 0;
}
@media only screen and (max-width: 540px) {
  .home-secG {
    padding: 30px 0 60px;
  }
}
.home-secG .heading {
  text-align: center;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 1366px) {
  .home-secG .heading {
    width: 38%;
  }
}
@media only screen and (max-width: 768px) {
  .home-secG .heading {
    width: 74%;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG .heading {
    width: 100%;
  }
}
.home-secG .heading h4 {
  margin-bottom: 15px;
  padding: 0 80px;
  font-family: "Ivy Mode";
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
}
@media only screen and (max-width: 1540px) {
  .home-secG .heading h4 {
    padding: 0;
  }
}
.home-secG .heading p {
  color: var(--text);
}
.home-secG .form-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 70px 0 0;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .home-secG .form-grid {
    width: 75%;
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secG .form-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.home-secG .form-grid .form-group:nth-last-of-type(1) {
  grid-column: span 2;
}
.home-secG .form-grid .form-group {
  position: relative;
}
.home-secG .form-grid .form-group:nth-child(1) {
  grid-column: span 2;
}
.home-secG .form-grid .form-group::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: var(--text);
}
.home-secG .form-grid .form-group::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--borderwidth);
  background: red;
  width: 0;
  transition: 0.5s ease;
}
.home-secG .form-grid .form-group input, .home-secG .form-grid .form-group textarea {
  color: var(--black);
  font-family: "Montserrat";
}
.home-secG .form-grid .form-group label {
  color: var(--black);
  font-family: "Montserrat";
  top: 0;
}
.home-secG .form-grid .form-group:focus, .home-secG .form-grid .form-group.valid {
  outline: none;
}
.home-secG .form-grid .form-group:focus ~ label, .home-secG .form-grid .form-group.valid ~ label {
  color: var(--black);
}
.home-secG .form-grid .btn-fill {
  grid-column: 1/span 2;
  justify-self: center;
  margin: 30px auto 0;
  cursor: pointer;
  position: relative;
  background: var(--black);
}
.home-secG .form-grid .btn-fill span {
  color: var(--white);
}
.home-secG .form-grid .btn-fill:hover span {
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .home-secG .form-grid .btn-fill {
    margin-top: 15px;
  }
}

.thankspage .bg .banner-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  top: 50%;
}
.thankspage .bg .banner-wrapper .content {
  width: 100%;
  max-width: 458px;
  margin: 0 auto;
  text-align: center;
}
.thankspage .bg .banner-wrapper .content h1 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
}
.thankspage .bg .banner-wrapper .content p {
  margin: 20px 0 30px;
  color: var(--white);
  text-align: center;
}
.thankspage .bg .banner-wrapper .content .btn-fill {
  color: var(--black);
  text-align: center;
}/*# sourceMappingURL=home.css.map */