@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.banner .bg .banner-wrapper {
  bottom: 10% !important;
}
.banner .bg .banner-wrapper .banner-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .banner .bg .banner-wrapper .banner-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
}
@media only screen and (max-width: 540px) {
  .banner .bg .banner-wrapper .banner-content {
    gap: 20px;
  }
}
.banner .bg .banner-wrapper .banner-content .content {
  width: 100%;
  max-width: 440px;
}
@media only screen and (max-width: 991px) {
  .banner .bg .banner-wrapper .banner-content .content {
    margin: 0 auto;
    text-align: center;
  }
}
.banner .bg .banner-wrapper .banner-content .content h1 {
  color: var(--white);
  text-transform: capitalize;
}
.banner .bg .banner-wrapper .banner-content .content p {
  margin: 20px 0 30px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .banner .bg .banner-wrapper .banner-content .content p {
    margin: 10px 0 15px;
  }
}
.banner .bg .banner-wrapper .banner-content .content p::before {
  background: var(--white);
}
.banner .bg .banner-wrapper .banner-content .content p svg path {
  fill: var(--white);
}
.banner .bg .banner-wrapper .banner-content .scollTo img {
  width: 50px;
  animation: scrollBounce 1.3s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-secA {
  background: var(--black);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA {
    padding: 3rem 0;
  }
}
.home-secA::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 675px;
  height: 100%;
  background-image: url("../../icon/building-skaleton.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  opacity: 0.3;
}
@media only screen and (max-width: 991px) {
  .home-secA::before {
    max-width: 450px;
    opacity: 0.2;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA::before {
    max-width: 300px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.home-secA .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: center;
  padding-left: 6rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid {
    grid-template-columns: 1fr 1fr 370px;
    padding-left: 4rem;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid {
    grid-template-columns: 1fr 1fr 200px;
    padding-left: 3rem;
    gap: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.home-secA .grid .logo-img {
  position: relative;
  animation: logoUpDown 6s ease-in-out infinite alternate;
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .logo-img {
    order: 1;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .logo-img {
    padding: 0 1rem;
  }
}
.home-secA .grid .logo-img img {
  width: 100%;
  max-width: 350px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .logo-img img {
    max-width: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .logo-img img {
    margin: 0 auto;
    max-width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .logo-img img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .logo-img img {
    max-width: 180px;
  }
}
.home-secA .grid .content {
  max-width: 450px;
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .content {
    max-width: 380px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .content {
    margin: 0 auto;
    max-width: 550px;
    padding: 60px 0 0;
    text-align: center;
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .content {
    max-width: 450px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .content {
    max-width: 100%;
    padding: 30px 0;
  }
}
.home-secA .grid .content h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .content h2 {
    font-size: 24px;
  }
}
.home-secA .grid .content p {
  color: var(--white);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .content p {
    font-size: 15px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home-secA .grid .content p::before {
  background: var(--primary);
}
.home-secA .grid .content p svg path {
  fill: var(--primary);
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .content .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .content .btn {
    font-size: 13px;
    padding: 8px 18px;
  }
}
.home-secA .grid .circle-effect {
  position: relative;
  width: 450px;
  height: 450px;
  margin: auto;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect {
    width: 380px;
    height: 380px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect {
    width: 220px;
    height: 220px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect {
    width: 320px;
    height: 320px;
    order: 3;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect {
    width: 200px;
    height: 200px;
  }
}
.home-secA .grid .circle-effect .rotator {
  width: 100%;
  height: 100%;
  position: absolute;
  right: -70%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: rotateParent 25s linear infinite;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .rotator {
    right: -50%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .rotator {
    right: -10%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .rotator {
    right: auto;
    left: 50%;
    margin-left: -160px;
    bottom: -50%;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .rotator {
    margin-left: -130px;
    bottom: -40%;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .rotator {
    margin-left: -100px;
    bottom: -62%;
  }
}
.home-secA .grid .circle-effect .circle-item {
  position: absolute;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  top: 50%;
  left: 50%;
  margin-left: -57.5px;
  margin-top: -57.5px;
  animation: counterRotate 25s linear infinite;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item {
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    padding: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item {
    width: 70px;
    height: 70px;
    margin-left: -35px;
    margin-top: -35px;
    padding: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item {
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item {
    width: 75px;
    height: 75px;
    margin-left: -37.5px;
    margin-top: -37.5px;
    padding: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    padding: 6px;
  }
}
.home-secA .grid .circle-effect .circle-item:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:hover {
    transform: scale(1.1);
  }
}
.home-secA .grid .circle-effect .circle-item:hover h6, .home-secA .grid .circle-effect .circle-item:hover p {
  color: var(--primary);
}
.home-secA .grid .circle-effect .circle-item h6 {
  font-size: 22px;
  font-family: "Orpheus Pro";
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item h6 {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item h6 {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item h6 {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item h6 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item h6 {
    font-size: 13px;
    margin-bottom: 2px;
  }
}
.home-secA .grid .circle-effect .circle-item p {
  font-size: 11px;
  line-height: 1.3;
  opacity: 0.9;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item p {
    font-size: 7px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item p {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item p {
    font-size: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item p {
    font-size: 7px;
    line-height: 1.1;
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(1) {
  left: calc(50% + 220px);
  top: calc(50% + 0px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(1) {
    left: calc(50% + 185px);
    top: calc(50% + 0px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(1) {
    left: calc(50% + 100px);
    top: calc(50% + 0px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(1) {
    left: calc(50% + 150px);
    top: calc(50% + 0px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(1) {
    left: calc(50% + 120px);
    top: calc(50% + 0px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(1) {
    left: calc(50% + 90px);
    top: calc(50% + 0px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(2) {
  left: calc(50% + 137.1677564089px);
  top: calc(50% + 172.002926143px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(2) {
    left: calc(50% + 115.3456133439px);
    top: calc(50% + 144.6388242566px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(2) {
    left: calc(50% + 62.3489801859px);
    top: calc(50% + 78.1831482468px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(2) {
    left: calc(50% + 93.5234702788px);
    top: calc(50% + 117.2747223702px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(2) {
    left: calc(50% + 74.818776223px);
    top: calc(50% + 93.8197778962px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(2) {
    left: calc(50% + 56.1140821673px);
    top: calc(50% + 70.3648334221px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(3) {
  left: calc(50% + -48.9546054704px);
  top: calc(50% + 214.48414068px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(3) {
    left: calc(50% + -41.1663727819px);
    top: calc(50% + 180.3616637536px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(3) {
    left: calc(50% + -22.2520933956px);
    top: calc(50% + 97.4927912182px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(3) {
    left: calc(50% + -33.3781400934px);
    top: calc(50% + 146.2391868273px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(3) {
    left: calc(50% + -26.7025120748px);
    top: calc(50% + 116.9913494618px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(3) {
    left: calc(50% + -20.0268840561px);
    top: calc(50% + 87.7435120964px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(4) {
  left: calc(50% + -198.2131509385px);
  top: calc(50% + 95.4544226059px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(4) {
    left: calc(50% + -166.6792405619px);
    top: calc(50% + 80.2684917367px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(4) {
    left: calc(50% + -90.0968867902px);
    top: calc(50% + 43.3883739118px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(4) {
    left: calc(50% + -135.1453301854px);
    top: calc(50% + 65.0825608676px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(4) {
    left: calc(50% + -108.1162641483px);
    top: calc(50% + 52.0660486941px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(4) {
    left: calc(50% + -81.0871981112px);
    top: calc(50% + 39.0495365206px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(5) {
  left: calc(50% + -198.2131509385px);
  top: calc(50% + -95.4544226059px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(5) {
    left: calc(50% + -166.6792405619px);
    top: calc(50% + -80.2684917367px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(5) {
    left: calc(50% + -90.0968867902px);
    top: calc(50% + -43.3883739118px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(5) {
    left: calc(50% + -135.1453301854px);
    top: calc(50% + -65.0825608676px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(5) {
    left: calc(50% + -108.1162641483px);
    top: calc(50% + -52.0660486941px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(5) {
    left: calc(50% + -81.0871981112px);
    top: calc(50% + -39.0495365206px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(6) {
  left: calc(50% + -48.9546054704px);
  top: calc(50% + -214.48414068px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(6) {
    left: calc(50% + -41.1663727819px);
    top: calc(50% + -180.3616637536px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(6) {
    left: calc(50% + -22.2520933956px);
    top: calc(50% + -97.4927912182px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(6) {
    left: calc(50% + -33.3781400934px);
    top: calc(50% + -146.2391868273px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(6) {
    left: calc(50% + -26.7025120748px);
    top: calc(50% + -116.9913494618px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(6) {
    left: calc(50% + -20.0268840561px);
    top: calc(50% + -87.7435120964px);
  }
}
.home-secA .grid .circle-effect .circle-item:nth-child(7) {
  left: calc(50% + 137.1677564089px);
  top: calc(50% + -172.002926143px);
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(7) {
    left: calc(50% + 115.3456133439px);
    top: calc(50% + -144.6388242566px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(7) {
    left: calc(50% + 62.3489801859px);
    top: calc(50% + -78.1831482468px);
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(7) {
    left: calc(50% + 93.5234702788px);
    top: calc(50% + -117.2747223702px);
  }
}
@media only screen and (max-width: 767px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(7) {
    left: calc(50% + 74.818776223px);
    top: calc(50% + -93.8197778962px);
  }
}
@media only screen and (max-width: 575px) {
  .home-secA .grid .circle-effect .circle-item:nth-child(7) {
    left: calc(50% + 56.1140821673px);
    top: calc(50% + -70.3648334221px);
  }
}

@keyframes rotateParent {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes counterRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes logoUpDown {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(-40px);
  }
}
@media only screen and (max-width: 768px) {
  @keyframes logoUpDown {
    0% {
      transform: translateY(20px);
    }
    100% {
      transform: translateY(-20px);
    }
  }
}
@media only screen and (max-width: 540px) {
  @keyframes logoUpDown {
    0% {
      transform: translateY(15px);
    }
    100% {
      transform: translateY(-15px);
    }
  }
}
.home-secB {
  padding: 4rem 0;
}
@media only screen and (max-width: 540px) {
  .home-secB {
    padding: 2rem 0 3rem;
  }
}
.home-secB .heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 540px) {
  .home-secB .heading {
    margin-bottom: 1.5rem;
  }
}
.home-secB .heading img {
  width: 65px;
}
.home-secB .heading h2 {
  margin: 20px 0 10px;
}
.home-secB .heading p {
  color: var(--text);
}
.home-secB .grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 991px) {
  .home-secB .grid {
    gap: 12px;
  }
}
.home-secB .card-wrap {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: block;
}
@media only screen and (max-width: 991px) {
  .home-secB .card-wrap {
    position: relative;
    height: 100%;
    z-index: 0;
  }
}
.home-secB .card-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secB .card-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 80%);
  pointer-events: none;
  z-index: 1;
}
.home-secB .card-wrap .card-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  color: var(--white);
  padding-bottom: 4rem;
}
@media only screen and (max-width: 540px) {
  .home-secB .card-wrap .card-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    height: inherit;
  }
}
.home-secB .card-wrap .card-content div h2 {
  margin-bottom: 5px;
  text-transform: capitalize;
  color: var(--white);
}
.home-secB .card-wrap .card-content div p {
  margin: 0;
  color: var(--white);
}
.home-secB .card-wrap .card-content div::before {
  background: var(--white);
}
.home-secB .card-wrap .card-content div svg path {
  fill: var(--white);
}
.home-secB .btn-center {
  text-align: center;
  padding-top: 3rem;
}
@media only screen and (max-width: 540px) {
  .home-secB .btn-center {
    padding-top: 2rem;
  }
}

.home-secC {
  padding: 70px 0;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .home-secC {
    padding: 70px 0 0;
  }
}
@media only screen and (max-width: 1366px) {
  .home-secC {
    padding: 45px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC {
    padding: 40px 0 40px 40px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC {
    padding: 40px 0 0px 10px;
  }
}
.home-secC::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background-image: url("../../images/home/texture.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.home-secC::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: rgba(215, 204, 160, 0.3019607843);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.home-secC .heading {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1366px) {
  .home-secC .heading {
    margin-bottom: 0;
  }
}
.home-secC .heading h2 {
  text-transform: capitalize;
  text-align: center;
}
.home-secC .swiper-wrap {
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap {
    margin: 0 12px 0 12px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .swiper-wrap {
    margin: 0 0 0 12px;
  }
}
.home-secC .swiper-wrap .swiper-group {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  max-width: 700px;
}
@media only screen and (max-width: 1366px) {
  .home-secC .swiper-wrap .swiper-group {
    width: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-secC .swiper-wrap .swiper-group {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-group {
    display: none;
  }
}
.home-secC .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-secC .swiper-wrap .swiper-group button svg {
  width: 20px;
  height: 20px;
}
.home-secC .swiper-wrap .swiper-group button svg path {
  fill: var(--black);
}
.home-secC .swiper-wrap .swiper-group button:hover {
  background: var(--primary);
}
.home-secC .swiper-wrap .swiper-group button:hover svg path {
  fill: var(--white);
}
.home-secC .swiper-wrap .swiper-group .btn-next {
  transform: rotate(180deg);
}
.home-secC .swiper-wrap .swiper-wrapper {
  padding: 80px 0;
}
@media only screen and (max-width: 1024px) {
  .home-secC .swiper-wrap .swiper-wrapper {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-wrapper {
    padding: 35px 0;
  }
}
.home-secC .swiper-wrap .swiper-slide {
  transition: all 1s ease-in-out;
}
.home-secC .swiper-wrap .swiper-slide .card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.home-secC .swiper-wrap .swiper-slide .card .card-img {
  padding: 10px;
}
@media only screen and (max-width: 540px) {
  .home-secC .swiper-wrap .swiper-slide .card .card-img {
    padding-bottom: 0;
  }
}
.home-secC .swiper-wrap .swiper-slide .card .card-img img {
  width: 100%;
  display: block;
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-slide .card .card-content {
    padding: 10px 20px 20px 20px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 540px) {
  .home-secC .swiper-wrap .swiper-slide .card .card-content {
    padding: 10px;
  }
}
.home-secC .swiper-wrap .swiper-slide .card .card-content p {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-slide .card .card-content p {
    display: block;
    opacity: 1;
  }
}
.home-secC .swiper-wrap .swiper-slide-active {
  transform: rotate(354deg) scale(1.1);
}
@media only screen and (max-width: 1650px) {
  .home-secC .swiper-wrap .swiper-slide-active {
    transform: rotate(354deg) scale(1.1);
  }
}
@media only screen and (max-width: 1366px) {
  .home-secC .swiper-wrap .swiper-slide-active {
    transform: rotate(354deg) scale(0.9);
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-slide-active {
    transform: rotate(0) scale(1);
  }
}
.home-secC .swiper-wrap .swiper-slide-next + .swiper-slide {
  transform: rotate(-354deg) scale(1.2);
}
@media only screen and (max-width: 1650px) {
  .home-secC .swiper-wrap .swiper-slide-next + .swiper-slide {
    transform: rotate(-354deg) scale(1.1);
  }
}
@media only screen and (max-width: 1650px) {
  .home-secC .swiper-wrap .swiper-slide-next + .swiper-slide {
    transform: rotate(-354deg) scale(0.9);
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-slide-next + .swiper-slide {
    transform: rotate(0) scale(1);
  }
}
.home-secC .swiper-wrap .swiper-slide-next {
  transform: scale(1.5);
}
@media only screen and (max-width: 1650px) {
  .home-secC .swiper-wrap .swiper-slide-next {
    transform: scale(1.3);
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .swiper-wrap .swiper-slide-next {
    transform: scale(1);
  }
}
.home-secC .swiper-wrap .swiper-slide-next .card .card-content {
  padding: 10px 20px 20px 20px;
}
@media only screen and (max-width: 1366px) {
  .home-secC .swiper-wrap .swiper-slide-next .card .card-content {
    padding: 10px 20px 20px 20px;
  }
}
.home-secC .swiper-wrap .swiper-slide-next .card .card-content p {
  display: block;
  opacity: 1;
  font-size: 12px;
  line-height: 1.3;
}
.home-secC .btn-center {
  padding: 50px 0 0px;
  text-align: center;
  z-index: 99;
}
@media only screen and (max-width: 1366px) {
  .home-secC .btn-center {
    padding: 50px 0 90px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .btn-center {
    padding: 20px 0 50px;
  }
}
.home-secC .btn-center .btn {
  background: var(--white);
  border: 1px solid #ACACAC;
}
.home-secC .btn-center .btn::before {
  background: var(--black);
}
.home-secC .btn-center .btn:hover {
  color: var(--white);
}
.home-secC .btn-center .btn:hover svg path {
  fill: var(--white);
}

.home-secD {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
@media only screen and (max-width: 991px) {
  .home-secD {
    min-height: 65vh;
    padding: 0;
  }
}
.home-secD .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.home-secD .swiper-wrap {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .home-secD .swiper-wrap {
    align-items: center;
  }
}
.home-secD .swiper-wrap h2 {
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 1.4rem;
}
.home-secD .swiper-wrap .testimonial-slider {
  width: 100%;
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card {
  background: #fff;
  padding: 40px;
  height: 285px;
  border-radius: 10px;
  max-width: 500px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 540px) {
  .home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card {
    padding: 25px;
  }
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card p {
  color: var(--text);
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card h4 {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin: 15px 0 3px;
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card span {
  font-size: 14px;
  color: #141414;
  font-weight: 600;
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card .quote {
  position: absolute;
  right: 0;
  bottom: 0;
}
.home-secD .swiper-wrap .testimonial-slider .swiper-wrapper .swiper-slide .testimonial-card .quote img {
  display: block;
}
.home-secD .swiper-wrap .swiper-group {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  position: absolute;
  bottom: 25px;
  left: 45px;
  z-index: 10;
  background: #fff;
}
.home-secD .swiper-wrap .swiper-group button svg {
  width: 30px;
  height: 30px;
  display: block;
}
.home-secD .swiper-wrap .swiper-group button:first-child {
  transform: rotate(180deg);
}/*# sourceMappingURL=home.css.map */