.homeBanner {
  position: relative;
}
.homeBanner .bannerdiv {
  position: relative;
  max-height: calc(100vh - 95px);
  overflow: hidden;
}
.homeBanner .bgbanner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 95px);
  background-color: #1e1e1e;
  opacity: 0.9;
}
.homeBanner .bgbanner .banner1 {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 50.67%;
  height: auto;
}
.homeBanner .titlebanner {
  position: absolute;
  left: 66.67%;
  top: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  width: 33.33%;
  font-size: 50px;
  line-height: 55px;
  color: #F1F0EC;
  font-family: "Figtree", sans-serif;
  font-weight: 700;
}
.homeBanner .banner {
  display: flex;
}
.homeBanner .title {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.homeBanner .title h1 {
  font-size: 10vw;
  line-height: 11vw;
  color: #F1F0EC;
  font-family: "NeueHaasDisplay-Bold", sans-serif;
  font-weight: 700;
}
.homeBanner .rightside {
  position: relative;
  border-top-left-radius: 30px;
  background-color: #f2f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0%;
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  width: 33.33%;
  height: 50%;
}
.homeBanner .rightside .desc {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}
.homeBanner .rightside .desc .btn {
  margin-top: 20px;
}
.homeBanner .rightside .desc p {
  margin-bottom: 10px;
  text-align: right;
  font-size: 24px;
  line-height: 32px;
}
.homeBanner .rightside .leftcurve_border {
  position: absolute;
  left: -30px;
  bottom: 0;
  width: 30px;
  height: 30px;
}
.homeBanner .rightside .leftcurve_border2 {
  position: absolute;
  left: auto;
  right: 0;
  top: -30px;
  width: 30px;
  height: 30px;
}
@media (min-width: 768px) {
  .homeBanner .title h1 {
    font-size: 8vw;
    line-height: 10vw;
  }
}
@media (max-width: 767px) {
  .homeBanner .rightside {
    position: relative;
    width: 100%;
  }
  .homeBanner .rightside .desc {
    align-items: center;
    padding-top: 20px;
  }
  .homeBanner .rightside .desc .btn {
    margin-top: 10px;
  }
  .homeBanner .rightside .leftcurve_border, .homeBanner .rightside .leftcurve_border2 {
    display: none;
  }
  .homeBanner .titlebanner {
    height: 100%;
    font-size: 20px;
    line-height: 24px;
  }
}

.aboutUs {
  padding: 80px 0;
}
.aboutUs .content {
  background-color: #171613;
  border-radius: 30px;
  padding: 60px 50px;
  position: relative;
  min-height: 340px;
}
.aboutUs .content:after {
  content: "";
  border-bottom: 32px solid transparent;
  border-right: 32px solid #171613;
  position: absolute;
  left: auto;
  right: 140px;
  bottom: -32px;
  display: inline-block;
  width: 32px;
  height: 32px;
}
.aboutUs .content .tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}
.aboutUs .content .tab a {
  border: 1px solid #FF9FAD;
  padding: 6px 10px;
  margin-bottom: 10px;
  border-radius: 50px;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 23px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
.aboutUs .content .tab a:hover, .aboutUs .content .tab a.active {
  color: #FF9FAD;
  border-bottom: 4px solid #FF9FAD;
}
.aboutUs .content .tabcontent .desc {
  display: none;
}
.aboutUs .content .tabcontent .desc p {
  color: #fff;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .aboutUs {
    min-height: 365px;
  }
}
@media (min-width: 992px) {
  .aboutUs {
    min-height: 390px;
  }
}
@media (max-width: 992px) {
  .aboutUs .content .tab a {
    font-size: 15px;
    line-height: 18px;
    height: auto;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .aboutUs {
    padding: 60px 0;
  }
  .aboutUs .content {
    padding: 40px 30px;
  }
  .aboutUs .content .tab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
  }
  .aboutUs .content .tab a {
    font-size: 13px;
    line-height: 15px;
    height: 40px !important;
    margin: 0;
    border: 1px solid #FF9FAD;
    padding: 5px;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
  }
}

.services .boxes {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services .boxes .box {
  transition: width 0.3s linear;
  cursor: pointer;
  width: calc(20% - 10px);
  border: 2px solid #171613;
  border-radius: 24px;
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.services .boxes .box h6 {
  transition: all 0.3s linear;
  padding: 0 15px;
  position: absolute;
  left: 0;
  top: calc(100% - 33px);
  width: 100%;
  display: inline-flex;
  width: auto;
  align-items: center;
}
.services .boxes .box h6 span {
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #171613;
  font-weight: 700;
  margin-right: 10px;
}
.services .boxes .box h6 img {
  width: 16px;
  display: inline-block;
}
.services .boxes .box p {
  transition: all 0.3s linear;
  opacity: 0;
  display: none;
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
.services .boxes .box .typeic {
  transition: all 0.3s linear;
  width: 90px;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.services .boxes .box.active {
  transition: width 0.3s linear;
  width: calc(40% - 10px);
  background-color: #EA782F;
  border-color: #EA782F;
  border-radius: 0;
}
.services .boxes .box.active h6 {
  transition: all 0.3s linear;
  transform: scale(1.3);
  transform-origin: right;
  left: auto;
  right: 0;
  text-align: right;
  top: 15px;
}
.services .boxes .box.active h6 span {
  color: #fff;
}
.services .boxes .box.active h6 img {
  filter: brightness(0) invert(100%);
  transform: rotate(180deg);
}
.services .boxes .box.active p {
  transition: all 0.3s linear;
  opacity: 1;
  display: block;
  color: #fff;
}
.services .boxes .box.active .typeic {
  transition: all 0.3s linear;
  transform: scale(0.8);
  transform-origin: center;
  left: 0px;
  top: calc(100% - 90px);
  filter: brightness(0) invert(100%);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .services .boxes .box {
    height: 420px;
  }
  .services .boxes .box h6 {
    top: calc(100% - 62px);
    height: 52px;
    align-items: flex-end;
  }
  .services .boxes .box.active h6 {
    height: auto;
    align-items: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .services .boxes {
    flex-direction: column;
  }
  .services .boxes .box {
    transition: height 0.3s linear;
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
  }
  .services .boxes .box .typeic {
    width: 80px;
    left: calc(100% - 50px);
  }
  .services .boxes .box.active {
    width: 100%;
    transition: height 0.3s linear;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .services .boxes {
    flex-direction: column;
  }
  .services .boxes .box {
    transition: height 0.3s linear;
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
  }
  .services .boxes .box .typeic {
    width: 80px;
    left: calc(100% - 50px);
  }
  .services .boxes .box p {
    font-size: 16px;
  }
  .services .boxes .box.active {
    width: 100%;
    transition: height 0.3s linear;
    height: 300px;
  }
}

.sincelastseens {
  background-color: #171613;
  padding: 80px 0 0;
  margin: 80px 0;
  position: relative;
}
.sincelastseens h1 {
  position: relative;
  padding-right: 25%;
  margin-bottom: 60px;
  -webkit-text-stroke: 0.5px #fff;
  font-size: 4vw;
  line-height: 1;
  color: transparent;
  font-family: "NeueHaasDisplay-Bold", sans-serif;
  font-weight: 700;
}
.sincelastseens h1 .arrow-rt-bt {
  position: absolute;
  left: 78%;
  top: 0;
  width: 4vw;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sincelastseens .lastseens {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.sincelastseens .lastseens .counts {
  position: relative;
  padding-bottom: 120px;
}
.sincelastseens .lastseens .counts span {
  font-family: "Figtree", sans-serif;
  font-size: 6vw;
  line-height: 1;
  font-weight: 700;
  color: #B8DBDF;
}
.sincelastseens .lastseens .counts small {
  font-family: "Figtree", sans-serif;
  line-height: 1;
  font-weight: 700;
  color: #B8DBDF;
  font-size: 6vw;
}
.sincelastseens .lastseens .counts p {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
}
.sincelastseens .lastseens .counts .plain {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f2f0ed;
  border-top-left-radius: 25px;
}
.sincelastseens .lastseens .counts .plain .leftcurve_border {
  position: absolute;
  left: -25px;
  bottom: 0;
  top: auto;
}
.sincelastseens .counternumbers {
  position: relative;
}
.sincelastseens .plain {
  width: 25%;
  height: 100%;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  background-color: #f2f0ed;
  border-top-left-radius: 25px;
}
.sincelastseens .plain .leftcurve_border2 {
  position: absolute;
  left: auto;
  right: 0;
  top: -25px;
}
@media (max-width: 767px) {
  .sincelastseens {
    margin: 60px 0;
  }
  .sincelastseens h1 {
    font-size: 8vw;
  }
  .sincelastseens h1 .arrow-rt-bt {
    width: 6vw;
    top: 5px;
  }
  .sincelastseens .counternumbers .plain {
    display: none;
  }
  .sincelastseens .lastseens {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sincelastseens .lastseens .counts {
    padding-bottom: 50px;
  }
  .sincelastseens .lastseens .counts:last-child {
    display: none;
  }
  .sincelastseens .lastseens .counts p {
    font-size: 15px;
    line-height: 19px;
    font-weight: 600;
  }
  .sincelastseens .lastseens .counts span {
    font-size: 11vw;
    margin-bottom: 10px;
    display: inline-block;
  }
  .sincelastseens .lastseens .counts small {
    font-size: 12vw;
  }
}

.Testimonials .mainTitle {
  margin-top: 27px;
}
.Testimonials .bg {
  background-color: #B8DBDF;
  padding: 0 40px;
  border-radius: 30px;
}
.Testimonials .maindesc {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.Testimonials .maindesc h2 {
  font-family: "Figtree", sans-serif;
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 9px;
}
.Testimonials .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.Testimonials .grid .gridinside {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 9px;
}
.Testimonials .grid .gridinside .box {
  border: 1px solid #727FFF;
  padding: 15px;
  border-radius: 9px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.Testimonials .grid .gridinside .box p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.Testimonials .grid .gridinside .box p strong {
  display: inline-block;
  margin-top: 9px;
}
.Testimonials .grid .gridinside .box.desc {
  background-color: #727FFF;
}
.Testimonials .grid .gridinside2 {
  display: grid;
  grid-template-rows: 0.5fr 1fr 1fr 0.5fr;
  row-gap: 9px;
}
.Testimonials .grid .gridinside2 .box {
  border: 1px solid #727FFF;
  padding: 15px;
  border-radius: 9px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.Testimonials .grid .gridinside2 .box p {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.Testimonials .grid .gridinside2 .box p strong {
  display: inline-block;
  margin-top: 9px;
}
.Testimonials .grid .gridinside2 .box.desc {
  background-color: #727FFF;
}
.Testimonials .grid .box {
  transition: all 0.3s linear;
}
.Testimonials .grid .box p {
  transition: all 0.3s linear;
}
.Testimonials .grid .box.desc:hover {
  background-color: #fff;
  transition: all 0.3s linear;
}
.Testimonials .grid .box.desc:hover p {
  color: #727FFF;
  transition: all 0.3s linear;
}
.Testimonials .grid .border_radius_top_no {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.Testimonials .grid .border_radius_btm_no {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
@media (max-width: 768px) {
  .Testimonials .bg {
    padding: 15px 15px 25px;
  }
  .Testimonials .row {
    flex-direction: column;
  }
  .Testimonials .maindesc {
    position: relative;
    transform: none;
    top: 0;
    margin-bottom: 20px;
  }
  .Testimonials .maindesc h2 {
    font-size: 32px;
    line-height: 37px;
    margin: 20px 0 10px;
  }
  .Testimonials .grid {
    grid-template-columns: 1fr;
  }
  .Testimonials .grid .gridinside {
    grid-template-rows: 1fr;
    margin-bottom: 9px;
  }
  .Testimonials .grid .gridinside .box {
    display: none;
  }
  .Testimonials .grid .gridinside .desc {
    display: block;
  }
  .Testimonials .grid .gridinside2 {
    grid-template-rows: 1fr;
  }
  .Testimonials .grid .gridinside2 .box {
    display: none;
  }
  .Testimonials .grid .gridinside2 .desc {
    display: block;
  }
}

.projects {
  padding: 80px 0;
  overflow: hidden;
}
.projects .mainTitle {
  margin-bottom: 20px;
}
.projects .projectSwipermain {
  padding: 0 15%;
}
.projects .projectSwipermain .projectSwiper .owl-stage-outer {
  overflow: visible;
}
.projects .projectSwipermain .projectSwiper .swiper-slide {
  border: 0;
  box-shadow: none;
}
.projects .projectSwipermain .projectSwiper .swiper-slide img {
  transform: scale(0.85);
  border-radius: 15px;
}
.projects .projectSwipermain .projectSwiper .swiper-slide .desc {
  padding: 20px 20px;
  text-align: center;
}
.projects .projectSwipermain .projectSwiper .swiper-slide .desc h6 {
  font-family: "Figtree", sans-serif;
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  color: #171613;
  margin-bottom: 5px;
}
.projects .projectSwipermain .projectSwiper .center img {
  transform: scale(1);
}
@media (max-width: 768px) {
  .projects {
    padding: 60px 0 40px;
  }
  .projects .projectSwipermain .projectSwiper .swiper-slide img {
    border-radius: 6px;
  }
}/*# sourceMappingURL=home.css.map */