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

.home-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .home-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 768px) {
  .home-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 540px) {
  .home-banner {
    height: 65vh;
  }
}
.home-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0) 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0) 60%);
}
.home-banner video, .home-banner img:not(.btn > img) {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}
.home-banner .bg-content {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  z-index: 2;
  gap: 8px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .home-banner .bg-content {
    bottom: 8%;
    gap: 6px;
  }
}
.home-banner .bg-content .item-content {
  width: 100%;
  max-width: 415px;
}
.home-banner .bg-content .item-content h5 {
  color: var(--primary);
}
.home-banner .bg-content .item-content h1 {
  margin: 12px 0 25px;
  text-transform: capitalize;
}
.home-banner .bg-content .item-content p:not(.dics) {
  color: var(--white);
  opacity: 0.9;
  width: 100%;
  max-width: 480px;
}
.home-banner .bg-content .form-grid {
  background: rgba(255, 255, 255, 0.71);
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  --gaptb: 20px;
  backdrop-filter: blur(30px) brightness(145%);
}
.home-banner .bg-content .form-grid::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-b);
  content: "";
}
.home-banner .bg-content .form-grid .form-group input, .home-banner .bg-content .form-grid .form-group textarea, .home-banner .bg-content .form-grid .form-group label {
  font-family: "Poppins";
}
.home-banner .bg-content .form-grid .btn {
  width: 100%;
}
.home-banner .bg-content .form-grid .dics {
  font-size: 12px;
  color: var(--black);
  font-weight: 400;
}
.home-banner .bg-content .form-grid .dics a {
  font-size: inherit;
  font-weight: inherit;
  color: var(--primary);
  font-weight: 500;
}

.home-secA {
  padding: 70px 0;
}
.home-secA .heading {
  text-align: center;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.home-secA .heading h3 {
  margin-bottom: 14px;
}
.home-secA .heading p {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.home-secA .grid .card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.home-secA .grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.92) 87.64%);
  z-index: 1;
}
.home-secA .grid .card:hover .item-img img {
  transform: scale(1.05);
}
.home-secA .grid .card:hover .item-content {
  transform: translateX(-50%) translateY(-8px);
}
.home-secA .grid .card:hover .item-content .btn-group {
  opacity: 1;
  max-height: 100px;
  transform: translateY(0);
  pointer-events: all;
}
.home-secA .grid .card .item-img {
  width: 100%;
  height: 100%;
}
.home-secA .grid .card .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-secA .grid .card .item-content {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  padding: 30px;
  transform: translateX(-50%) translateY(0);
  transition: transform 0.4s ease;
  z-index: 3;
}
.home-secA .grid .card .item-content h4 {
  color: var(--white);
}
.home-secA .grid .card .item-content p {
  color: var(--white);
  font-weight: 300;
  margin: 10px 0 20px;
}
.home-secA .grid .card .item-content .btn-group {
  display: flex;
  gap: 15px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
  pointer-events: none;
}
.home-secA .grid .card .item-content .btn-group .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}
.home-secA .grid .card .item-content .btn-group .btn-secondary:hover {
  border-color: var(--white);
  color: var(--black);
}
.home-secA .grid .card .item-content .btn-group .btn-secondary:hover::before {
  background: var(--white);
}

.home-secB {
  margin: 70px 0 0;
  overflow: hidden;
}
.home-secB .heading {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}
.home-secB .heading h3 {
  margin-bottom: 10px;
}
.home-secB .swiper-wrap {
  margin-top: 3rem;
  position: relative;
}
.home-secB .swiper-wrap .solutionSlider {
  margin: 0 20px;
}
.home-secB .swiper-wrap .solutionSlider .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}
.home-secB .swiper-wrap .solutionSlider .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secB .swiper-wrap .btns-group {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 0 10px;
}
.home-secB .swiper-wrap .btns-group button {
  width: 40px;
  height: 40px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  pointer-events: all;
}
.home-secB .swiper-wrap .btns-group button:hover {
  background: var(--primary);
}
.home-secB .swiper-wrap .btns-group button:hover svg path {
  stroke: var(--white);
}
.home-secB .swiper-wrap .btns-group button svg {
  width: 35px;
  height: 35px;
  display: block;
}
.home-secB .swiper-wrap .btns-group button svg path {
  stroke: var(--primary);
}
.home-secB .swiper-wrap .btns-group button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.home-secB .swiper-wrap .btns-group button.solutionSlider-prev {
  transform: rotate(270deg);
}
.home-secB .swiper-wrap .btns-group button.solutionSlider-next {
  transform: rotate(90deg);
}

.home-secC {
  padding: 70px 0;
  background: var(--gray);
}
.home-secC .heading {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.home-secC .heading .content {
  text-align: center;
  max-width: 450px;
  margin: 0 auto;
}
.home-secC .heading .content h3 {
  margin-bottom: 10px;
}
.home-secC .heading .tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}
.home-secC .heading .tab-nav li {
  padding: 10px 20px;
  background: var(--white);
  font-size: 14px;
  transition: all 0.3s ease-in;
  border-radius: 5px;
}
.home-secC .heading .tab-nav li:hover {
  background: var(--primary);
  color: var(--white);
}
.home-secC .heading .tab-nav li.active {
  background: var(--primary);
  color: var(--white);
}
.home-secC .tab-nav-content {
  margin-top: 4rem;
}
.home-secC .tab-nav-content .tabs .swiper-wrap {
  position: relative;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group {
  display: flex;
  justify-content: space-between;
  pointer-events: all;
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  left: 50%;
  z-index: 1;
  width: 100%;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button {
  width: 40px;
  height: 40px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button:hover {
  background: var(--primary);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button:hover svg path {
  stroke: var(--white);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button svg {
  width: 35px;
  height: 35px;
  display: block;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button svg path {
  stroke: var(--primary);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button.swiper-button-disabled:hover {
  background: transparent;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button.swiper-button-disabled:hover svg path {
  fill: var(--white);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button.thirdSilder-prev {
  transform: rotate(270deg);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .btns-group button.thirdSilder-next {
  transform: rotate(90deg);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder {
  margin: 0 15px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img {
  position: relative;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img img {
  width: 100%;
  display: block;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.21) 100%);
  width: 100%;
  height: 100%;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .location {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .location p {
  color: var(--white);
  font-size: 14px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .location svg {
  width: 20px;
  height: 20px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .location svg path {
  stroke: var(--white);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .points {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .points li {
  font-size: 14px;
  line-height: 1.2;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .points li:first-child {
  background: var(--primary);
  padding: 5px 10px;
  color: var(--white);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-img .points li:last-child {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 5px 10px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content {
  padding: 18px;
  border: 1px solid var(--gray);
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content p {
  font-size: 14px;
  margin: 5px 0 12px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 26px 0;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item {
    margin: 20px 0;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item {
    margin: 15px 0;
    gap: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item {
    margin: 12px 0;
    gap: 12px;
  }
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li {
  display: flex;
  gap: 12px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li img {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li img {
    width: 25px;
    height: 25px;
  }
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li .feature span {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
@media only screen and (max-width: 768px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li .feature span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li .feature span {
    font-size: 13px;
  }
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li .feature p {
  color: var(--black);
  margin-top: 3px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .feature-item li .feature p {
    font-size: 14px;
    margin-top: 2px;
  }
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .btn-group {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.home-secC .tab-nav-content .tabs .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .item-content .btn-group .btn {
  width: 100%;
}

.home-secD {
  padding: 70px 0;
}
.home-secD .heading {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.home-secD .heading h3 {
  margin-bottom: 10px;
}
.home-secD .heading p {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.home-secD .timeline-wrapper {
  position: relative;
  padding: 0 0 7rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-wrapper {
    gap: 2rem;
    padding: 0 0 4rem;
  }
}
.home-secD .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #292929;
  transform: translateX(-50%);
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-line {
    left: 0;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-line {
    display: none;
  }
}
.home-secD .timeline-item {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-item {
    width: 100%;
  }
}
.home-secD .timeline-item .timeline-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-item .timeline-content {
    margin-left: 4rem;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item .timeline-content {
    grid-template-columns: 1fr;
  }
}
.home-secD .timeline-item .timeline-content .image-box {
  overflow: hidden;
  border-radius: 10px;
}
.home-secD .timeline-item .timeline-content .image-box img {
  width: 100%;
  height: 210px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.home-secD .timeline-item .timeline-content .image-box img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.home-secD .timeline-item .timeline-content .content-box {
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .home-secD .timeline-item .timeline-content .content-box {
    padding: 10px 0 10px 20px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item .timeline-content .content-box {
    padding: 15px;
    text-align: center;
  }
}
.home-secD .timeline-item .timeline-content .content-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--black);
}
.home-secD .timeline-item .timeline-content .content-box p {
  font-size: 16px;
  color: var(--text);
}
@media only screen and (max-width: 1366px) {
  .home-secD .timeline-item .timeline-content .content-box p {
    font-size: 14px;
  }
}
.home-secD .timeline-item .timeline-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(33, 33, 33);
  border: 1px solid rgb(80, 80, 80);
  z-index: 2;
  border-radius: 10px;
  font-size: 20px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-item .timeline-circle {
    left: -15px;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item .timeline-circle {
    display: none;
  }
}
.home-secD .timeline-item:nth-child(odd) {
  left: 0;
  justify-content: flex-end;
}
.home-secD .timeline-item:nth-child(odd) .timeline-content {
  margin-right: 4rem;
}
@media only screen and (max-width: 1366px) {
  .home-secD .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item:nth-child(odd) .timeline-content {
    margin: 0;
  }
}
.home-secD .timeline-item:nth-child(odd) .timeline-circle {
  right: -22px;
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item:nth-child(odd) .timeline-circle {
    display: none;
  }
}
.home-secD .timeline-item:nth-child(even) {
  left: 50%;
}
@media only screen and (max-width: 991px) {
  .home-secD .timeline-item:nth-child(even) {
    left: 0;
  }
}
.home-secD .timeline-item:nth-child(even) .timeline-content {
  margin-left: 4rem;
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
  }
}
.home-secD .timeline-item:nth-child(even) .timeline-circle {
  left: -22px;
}
@media only screen and (max-width: 675px) {
  .home-secD .timeline-item:nth-child(even) .timeline-circle {
    display: none;
  }
}

.home-secG {
  padding: 70px 0;
  background: var(--gray);
}
.home-secG .heading {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.home-secG .heading h3 {
  margin-bottom: 10px;
}
.home-secG .heading p {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.home-secG .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-secG .cards-grid .card-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  padding: 25px;
  background: var(--white);
}
.home-secG .cards-grid .card-item .card-num {
  position: absolute;
  right: 20px;
  top: 20px;
  font-weight: 600;
  color: var(--text);
  z-index: 4;
  font-size: 65px;
  opacity: 0.1;
}
.home-secG .cards-grid .card-item .hover-content {
  padding: 20px;
  transition: all 0.5s ease-in-out;
  z-index: 2;
  width: 100%;
  max-width: 288px;
  height: 100%;
}
.home-secG .cards-grid .card-item .hover-content h5 {
  color: var(--black);
}
.home-secG .cards-grid .card-item .hover-content p {
  font-size: 14px;
  margin-top: 20px;
  color: var(--text);
}

.home-secE {
  padding: 70px 0;
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secE {
    padding: 30px 0;
  }
}
.home-secE .heading {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .home-secE .heading {
    max-width: 324px;
  }
}
.home-secE .swiper-wrap {
  margin-top: 2rem;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-secE .swiper-wrap {
    margin-top: 2rem;
  }
}
.home-secE .swiper-wrap .btns-group {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  padding: 0 10px;
}
.home-secE .swiper-wrap .btns-group button {
  width: 40px;
  height: 40px;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  pointer-events: all;
}
.home-secE .swiper-wrap .btns-group button:hover {
  background: var(--primary);
}
.home-secE .swiper-wrap .btns-group button:hover svg path {
  stroke: var(--white);
}
.home-secE .swiper-wrap .btns-group button svg {
  width: 35px;
  height: 35px;
  display: block;
}
.home-secE .swiper-wrap .btns-group button svg path {
  stroke: var(--primary);
}
.home-secE .swiper-wrap .btns-group button.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.home-secE .swiper-wrap .btns-group button.thirdSilder-prev {
  transform: rotate(270deg);
}
.home-secE .swiper-wrap .btns-group button.thirdSilder-next {
  transform: rotate(90deg);
}
.home-secE .swiper-wrap .thirdSilder {
  margin: 0 20px;
  overflow: hidden;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper {
  padding: 20px 4px;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media only screen and (max-width: 540px) {
  .home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card {
    height: 400px;
  }
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-img {
  width: 100%;
  height: 330px;
  position: relative;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-img .play-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-content {
  padding: 20px;
  width: 100%;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-content .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-content .header .stars {
  display: flex;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-content .header h6 {
  color: var(--black);
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .swiper-slide .card .card-content .header p {
  color: var(--text);
  font-size: 14px;
}
.home-secE .btn-wrap {
  text-align: center;
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .home-secE .btn-wrap {
    margin-top: 2rem;
  }
}

.home-secF {
  padding: 40px 0 70px;
  position: relative;
}
.home-secF::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 675px;
  height: 100%;
  background-image: url(../../icon/building-skaleton.png);
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  background-position: center bottom;
  background-size: contain;
  opacity: 0.3;
}
.home-secF .content-wrapper {
  background: var(--gradient-a);
  border-radius: 10px;
  overflow: hidden;
}
.home-secF .content-wrapper .content {
  padding: 60px;
  width: 100%;
  max-width: 650px;
}
.home-secF .content-wrapper .content h3 {
  color: var(--white);
}
.home-secF .content-wrapper .content p {
  color: var(--white);
  opacity: 0.7;
  margin: 12px 0 45px;
}
.home-secF .content-wrapper .content .btn-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.home-secF .content-wrapper .content .btn-primary::before {
  background: var(--gray);
}
.home-secF .content-wrapper .content .btn-primary:hover::before {
  background: var(--gray);
}

.home-secH {
  padding: 70px 0 0;
}
.home-secH .heading {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.home-secH .heading h3 {
  margin-bottom: 10px;
}
.home-secH .heading p {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.home-secH .content-wrapper {
  height: 650px;
  overflow: hidden;
  border-radius: 10px;
}

.home-secI {
  padding: 70px 0;
  background: var(--gray);
}
@media only screen and (max-width: 991px) {
  .home-secI {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secI {
    padding: 30px 0;
  }
}
.home-secI .heading {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
  text-align: center;
}
.home-secI .heading h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .home-secI .heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .home-secI .heading h3 {
    font-size: 20px;
  }
}
.home-secI .heading h3 span {
  display: block;
  color: var(--purple);
  font-size: 32px;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .home-secI .heading h3 span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .home-secI .heading h3 span {
    font-size: 20px;
  }
}
.home-secI .accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.home-secI .accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}
.home-secI .accordion-item:last-child {
  margin-bottom: 0;
}
.home-secI .accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.home-secI .accordion-item.active .accordion-header h4 {
  color: var(--dark);
}
.home-secI .accordion-item.active .accordion-icon {
  color: var(--purple);
}
.home-secI .accordion-item.active .accordion-icon svg {
  transform: rotate(180deg);
}
.home-secI .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.home-secI .accordion-header:hover {
  background: #fafafa;
}
.home-secI .accordion-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 375px) {
  .home-secI .accordion-header h4 {
    font-size: 14px;
  }
}
.home-secI .accordion-icon {
  color: #666;
  transition: color 0.3s ease, transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-secI .accordion-icon svg {
  transition: transform 0.3s ease;
  display: block;
}
.home-secI .accordion-content {
  display: none;
  padding: 0 25px 20px;
  padding-right: 3rem;
  background: var(--white);
}
.home-secI .accordion-content p {
  margin: 0;
  padding: 10px 0 0;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 375px) {
  .home-secI .accordion-content p {
    font-size: 12px;
  }
}
.home-secI .accordion-content ul {
  margin: 10px 0 0 20px;
}
.home-secI .accordion-content ul li {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
  list-style-type: disc;
}
@media only screen and (max-width: 375px) {
  .home-secI .accordion-content ul li {
    font-size: 12px;
  }
}/*# sourceMappingURL=home.css.map */