/* Home */

/* Hero */
.home {
  overflow-x: hidden !important;
}

.home .hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.home .hero .overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
}

.home .hero h1 {
  font-size: 8vw;
  font-weight: 600;
  margin-bottom: 1rem;
  z-index: 2;
  margin-top: 130px;
}

.home .hero p {
  font-size: 1.5rem;
  font-weight: 400;
  z-index: 2;
  width: 30%;
  min-width: 350px;
  margin: 1rem auto;
}

.home .hero button {
  margin-top: 4rem;
  z-index: 2;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  outline: none;
  border: none;
  font-size: 1.4rem;
}

.home .hero button:hover {
  animation: pulse 0.5s forwards;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}

@media (max-width: 1024px) {
  .home .hero h1 {
    font-size: 10vw;
    margin-top: 0;
  }
  .home .hero p {
    width: 60%;
    min-width: 250px;
    font-size: 1.4em;
    margin: 0;
  }

  .home .hero button {
    margin-top: 3rem;
    font-size: 1.2em !important;
  }
}

@media (max-width: 768px) {
  .home .hero p {
    width: 80%;
    min-width: 200px;
    font-size: 1em;
  }
}
/* Hero */

/* About */
.home .about {
  background-color: var(--bgprimary);
  overflow: hidden;
}

.home .about .card {
  background-color: transparent;
  color: #fff;
  border: 2px solid white;
  border-radius: 14px;
  height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.5rem !important;
  max-width: 330px;
}

.home .about .card #cube1 {
  position: absolute;
  bottom: -4rem;
  left: -3rem;
  width: 90px;
  height: 110px;
  z-index: 1;
}

.home .about .card #cube2 {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  width: 60px;
  height: 70px;
  z-index: 1;
}

.home .about .card #cube3 {
  position: absolute;
  bottom: -2rem;
  right: -3rem;
  width: 70px;
  height: 80px;
  z-index: 1;
}

.home .about .about-text {
  width: 50%;
}

.home .about #card2 {
  width: 46%;
}

.home .about .card h1 {
  font-weight: 400;
}

.home .about .card p {
  font-size: 1.4rem;
}

.home .about .card button,
.home .about .grad-card button {
  font-size: 1.4rem;
  background-color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #000;
}

.home .about .grad-card button {
  background-color: transparent;
  color: #fff;
}

.home .about .card button:hover,
.home .about .grad-card button:hover {
  color: red;
}

.home .about .card button i,
.home .about .grad-card button i {
  margin-left: 0.5rem;
  transition: 0.3s ease;
}

.home .about .card button:hover i,
.home .about .grad-card button:hover i {
  color: red;
  margin-left: 1rem !important;
}

.home .about .grad-card {
  background: linear-gradient(90deg, #121522 0%, #ffffff4a 70%, #ffffff7c 100%);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  padding: 1.8rem 1.5rem !important;
  color: #fff;
  height: 250px;
  width: 100%;
  margin-left: 1.5rem;
}

.home .about .grad-card h2 {
  font-weight: 400;
  margin-top: 10%;
}

.home .about .grad-card .right {
  width: 50%;
}
.home .about .grad-card p {
  font-weight: 400;
  font-size: 1.2rem;
  margin-top: 5%;
}

.home .about .grad-card button {
  margin: 0;
  padding: 0;
}

.home .about .grad-card.gcard2 {
  background: linear-gradient(90deg, #ffffff33 0%, #ffffff31 30%, #181c2f 100%);
  width: 98%;
}

@media screen and (max-width: 1024px) {
  .home .about .card {
    width: 100% !important;
    max-width: none;
  }
  .home .about .card {
    height: auto !important;
  }
  .about .about-card {
    width: 90% !important;
  }
  .container-fluid.w-75 {
    width: 90% !important;
  }
  .home .about .about-text {
    width: 50%;
  }

  .home .about .card {
    width: 100% !important;
    max-width: none;
  }

  .home .about .grad-card {
    width: 100%;
  }
  .home .about .grad-card.gcard2 {
    width: 100%;
  }

  .home .about .neg-card {
    margin-top: 3rem !important;
  }

  .home .about .grad-card {
    flex-direction: column;
  }

  .home .about .grad-card h2 {
    margin-top: 0;
  }

  .home .about .grad-card .right {
    width: 100%;
  }

  .home .about .card button,
  .home .about .grad-card button {
    font-size: 1rem;
    margin: 0;
  }

  .home .about .card p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .about .about-card {
    width: 85% !important;
  }
  .container-fluid.w-75 {
    width: 90% !important;
  }

  .home .about .about-text {
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem !important;
  }

  .home .about .card {
    width: 100% !important;
    max-width: none;
  }

  .home .about .card {
    width: 100%;
  }

  .home .about .grad-card {
    width: 100%;
  }
  .home .about .grad-card.gcard2 {
    width: 100%;
  }

  .home .about .neg-card {
    margin-top: 3rem !important;
  }

  .home .about .grad-card {
    flex-direction: column;
  }

  .home .about .grad-card h2 {
    margin-top: 0;
  }

  .home .about .grad-card .right {
    width: 100%;
  }

  .home .about .card button,
  .home .about .grad-card button {
    font-size: 1rem;
  }

  .home .about .card p {
    font-size: 1.2rem;
  }

  .home .about .card img {
    transform: scale(0.7);
  }
}
/* About */

/* 0iners */
.home .partners {
  background-color: var(--bgsecondary);
  overflow: hidden !important;
}

.home .partners .partner-card {
  background-color: var(--bgprimary);
  border-radius: 40px;
  color: #fff;
  height: 100% !important;
  transition: all 0.3s ease;
  min-height: 350px;
}

.home .partners .partner-card .part-img {
  background-color: #fff;
  width: 100%;
  height: 100px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.home .partners .partner-card .part-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  min-width: 100px;
}

.partners .color-dots .dot {
  width: 20px;
  height: 20px;
  background-color: #6691fe;
  border-radius: 50%;
  display: inline-block;
  margin: 0 1rem;
}
.partners .color-dots .dot:nth-child(2) {
  background-color: #ff7777;
  margin: 0rem;
}

@media (max-width: 1024px) {
  .home .partners .partner-card {
    min-height: 470px;
  }
}
/* Partners */

/* Solutions */
.home .solutions {
  background-color: var(--bgprimary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home .solutions .title {
  color: #fff;
  text-align: center;
}

.home .solutions .title::after {
  content: "";
  display: block;
  width: 35%;
  height: 6px;
  background: #ff7777;
  margin: 0 auto;
  transition: width 0.3s;
  margin-top: 1rem;
  border-radius: 10px;
}

.home .solutions img {
  max-height: 130px;
}

.home .solutions .solution-card {
  background-color: var(--gray);
  border-radius: 60px;
  margin-top: 1rem;
  padding: 2.5rem;
  min-height: 26rem;
  overflow: auto;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.home .solutions .solution-card p {
  width: 80%;
  margin: 0 auto;
  color: #fff;
  font-size: 1.3rem;
}

.home .solutions .solution-card:hover {
  transform: scale(0.95);
  /* background-color: #fff; */
}

.home .solutions .solution-card:active,
.home .solutions .solution-card:focus-within {
  background-color: #fff;
}

.home .solutions .solution-card:active > h2,
.home .solutions .solution-card:focus-within > h2 {
  color: #a4161a;
}

.home .solutions .solution-card:hover p {
  color: #000;
}

@media (max-width: 1024px) {
  .home .solutions .solution-card {
    padding: 2rem;
  }
  .home .solutions .solution-card p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .home .solutions img {
    max-height: 80px;
  }

  .home .solutions .solution-card {
    border-radius: 40px;
  }
}

/* Solutions */

/* Review */

.home .review {
  background-color: var(--bgsecondary);
  overflow: hidden;
}

.home .title-p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 0.6cm;
}

.home .review .reviewbox {
  border: 2px solid #000;
  border-radius: 20px;
  width: 100%;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .review .reviewbox #dash-top {
  font-size: 5rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
  margin: 0;
  font-style: italic;
}

.home .review .reviewbox #dash-bottom {
  font-size: 5rem;
  position: absolute;
  bottom: 0rem;
  right: 2rem;
  margin: 0;
  font-style: italic;
}

.home .review .carousel-item p {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1rem;
  text-align: center;
  font-weight: 400;
}

.home .review .review-nav .nav-dot {
  background-color: #0f121e;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.5rem;
  cursor: pointer;
  padding-left: 0;
}

@keyframes borderAnimation {
  0% {
    border-left-color: #0f121e;
    border-right-color: #0f121e;
    border-top-color: #0f121e;
    border-bottom-color: #0f121e;
  }
  25% {
    border-left-color: #0f121e;
    border-right-color: #0f121e;
    border-top-color: #d90429;
    border-bottom-color: #0f121e;
  }
  50% {
    border-left-color: #0f121e;
    border-right-color: #d90429;
    border-top-color: #d90429;
    border-bottom-color: #0f121e;
  }
  75% {
    border-left-color: #0f121e;
    border-right-color: #d90429;
    border-top-color: #d90429;
    border-bottom-color: #d90429;
  }
  100% {
    border-left-color: #d90429;
    border-right-color: #d90429;
    border-top-color: #d90429;
    border-bottom-color: #d90429;
  }
}

.home .review .review-nav .nav-dot.active {
  background-color: #fff;
  border: 6px solid #0f121e;
  animation: borderAnimation 4s linear forwards;
}

@media (max-width: 1024px) {
  .home .review .carousel-item p {
    font-size: 1.7rem;
    padding: 2rem;
  }
}

@media (max-width: 608px) {
  .home .review .review-nav .nav-dot {
    width: 50px;
    height: 50px;
  }

  .home .review .review-nav .nav-dot.active {
    border: 4px solid #0f121e;
    background-size: 30px 10px !important;
  }

  .home .review .review-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .home .review .carousel-item p {
    font-size: 1rem;
    padding: 1rem;
  }
}

/* Review */

/* Insights */

.insights {
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insights .color-dots .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 1rem;
}

.insights .color-dots .dot:nth-child(1) {
  background-color: #8d99ae;
}

.insights .color-dots .dot:nth-child(2) {
  background-color: #edf2f4;
  margin: 0 !important;
}
.insights .color-dots .dot:nth-child(3) {
  background-color: #ff7777;
}

.insights .color-dots.og {
  margin-left: -30%;
}

.insights .color-dots.rev {
  transform: rotate(180deg);
  margin-left: 24%;
  margin-top: -0.5rem;
}

.insights .card-con {
  width: 80%;
  margin: 8% auto;
}

.in-card {
  perspective: 500px;
}
.in-card {
  perspective: 500px;
}

.in-card .content {
  width: 300px;
  height: 270px;
  aspect-ratio: 1;
  background-color: #d9d9d949;
  transition: transform 1s;
  transform-style: preserve-3d;
  border: 3px solid #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.in-card:hover .content {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}

.in-card .front,
.in-card .back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  backface-visibility: hidden;
  z-index: 1;
  overflow: hidden;
}

.in-card .back {
  transform: rotateY(180deg);
  color: white;
  font-weight: 500;
  padding: 1rem;
  border-radius: 30px;
}

.in-card .back p {
  font-size: 1.2rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.in-card .front i {
  font-size: 8rem;
}

@media screen and (max-width: 1024px) {
  .insights .card-con {
    width: 90%;
    margin: 8% auto;
  }
  .hero button {
    padding: 10px 20px !important;
    font-size: 3vw !important;
  }
}

@media screen and (max-width: 768px) {
  .insights .color-dots .dot {
    width: 15px;
    height: 15px;
  }
  .insights .color-dots.rev {
    margin-top: 0;
  }
}
/* Insights */

/* Products */
.home .products {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home .products .title {
  color: #fff;
  text-align: center;
}

.home .products .title::after {
  content: "";
  display: block;
  width: 35%;
  height: 6px;
  background: #ff7777;
  margin: 0 auto;
  transition: width 0.3s;
  margin-top: 1rem;
  border-radius: 10px;
}

.home .products .product-card {
  position: relative;
}

.home .products .product-card .front {
  background-color: transparent;
  background-image: url(../assets/Polygon1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  width: 310px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.home .products .product-card .front .circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #d3d3d3;
  border: 3px solid #fff;
}

.home .products .product-card .back {
  background-color: transparent;
  background-image: url(../assets/Polygon2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  width: 310px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3rem;
  margin-top: 20px;
  z-index: 1;
}

.home .products .product-card .back p {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 3rem;
  text-align: center;
}

.home .prod-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 3;
  transition: all 0.3s ease;
}

.home .products .product-card:hover .front {
  opacity: 0;
  transition: all 0.3s ease;
}

.home .products .product-card:hover .back {
  transform: translateY(-20px);
}

.home .products .product-card:hover .prod-title {
  color: #000;
  top: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Products */

/* Home */
