@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

.banner {
  width: 100%;
  justify-content: flex-end;
  display: flex;
  position: relative;
  padding-top: 100px;
  overflow: visible;
}

@media (max-width: 1679px) {
  .banner {
    padding-top: 100px;
  }
}

@media (max-width: 1199px) {
  .banner {
    padding-top: 65px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .banner {
    padding-top: 0;
    margin-top: 90px;
    height: auto;
  }
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: 2;
}

.banner .bnr-cnt {
  position: absolute;
  width: 100%;
  z-index: 3;
  text-align: center;
}

@media (max-width: 991px) {
  .banner .bnr-cnt {
    padding: 50px 0;
  }
}

.label-box {
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  background-color: rgba(255, 255, 255, 0.0392156863);
  font-size: 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 2px;
  padding: 8px 20px;
  text-transform: uppercase;
  display: inline-flex;
}

.bnr-title {
  font-weight: 700;
  color: #fff;
  font-size: 52px;
  line-height: 80px;
  margin-bottom: 20px;
}

.inr-title {
  font-weight: 650;
  color: #fff;
  font-size: 50px;
  line-height: 30px;
}



@media (max-width: 1199px) {
  .bnr-title {

    font-size: 50px;
    line-height: 70px;
  }

  .inr-title {
    font-size: 45px;
    line-height: 50px;
  }

}

@media (max-width: 991px) {
  .bnr-title {
    font-size: 40px;
    line-height: 45px;
  }

  .inr-title {
    font-size: 35px;
    line-height: 40px;
  }

}

.bnr-title .gradient-txt,
.inr-title .gradient-txt {
  background: linear-gradient(90deg, #0A65B0 0%, #0CC7F6 40.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.gradient-txt1 {
  background: linear-gradient(90deg, #ddd 0%, #999 40.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.desc {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #bbb;
}

@media (max-width: 1679px) {
  .banner .desc {
    font-size: 16px;
    line-height: 26px;
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {


  .banner .bnr-cnt {
    padding: 30px 0;
  }

}

.insights {
  width: 100%;
  height: 650px;
  background: url("../img/insights/banner-group.png") no-repeat center center;
  object-fit: fit;
  background-size: cover;
  position: relative;
  top: 70px;
  bottom: 0px;
}

/* ===== casestudies ===== */

.casestudies {
  width: 100%;
  padding-top: 150px;
  text-align: center;
  min-height: 800px;


}

.casestudies {
  z-index: 10000px;
  position: relative;
  background-repeat: no-repeat;
  background: url('../img/Ellipsert.png') no-repeat right bottom;
  background-size: contain;
}

.casestudies::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/Ellipselt.png) no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
}


/* ===== case studies slideshow ===== */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
}

.carousel-track {
  position: relative;
  height: 420px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  position: absolute;
  width: 700px;
  height: 380px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  transition: .7s cubic-bezier(.25, .8, .25, 1);
  cursor: pointer;
}

@media(max-width:900px) {
  .card {
    width: 90%;
    height: 340px;
  }
}

@media(max-width:600px) {
  .card {
    width: 92%;
    height: 300px;
  }
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 20px;
}

.card-content h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.card {
  cursor: pointer;
}

.card img,
.card .card-content,
.card .card-content * {
  pointer-events: none;
}

.card .btn {
  pointer-events: auto;
}

.tags {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.tag {
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .6);
  font-size: 14px;
}

.btn {
  padding: 12px 28px;
  border-radius: 12px;
  background: #4f5bff;
  color: white;
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.center {
  transform: translateX(0) scale(1);
  z-index: 5;
}

.center:hover img {
  filter: blur(4px);
}

.left {
  transform: translateX(-260px) scale(.85);
  z-index: 3;
  opacity: .85;
}

.right {
  transform: translateX(260px) scale(.85);
  z-index: 3;
  opacity: .85;
}

.back-left {
  transform: translateX(-430px) scale(.7);
  z-index: 1;
  opacity: .25;
}

.back-right {
  transform: translateX(430px) scale(.7);
  z-index: 1;
  opacity: .25;
}

/* navigation */
.nav-area {
  position: absolute;
  bottom: -55px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.arrowcs {
  font-size: 26px;
  color: white;
  cursor: pointer;
  opacity: .7;
  transition: .3s;
  line-height: 1;
}

.arrowcs:hover {
  opacity: 1;
  color: #6a6bff;
  text-shadow: 0 0 10px #6a6bff;
}

.dots1 {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
}

.dot.active {
  background: #6a6bff;
  box-shadow: 0 0 10px #6a6bff;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 6px #6a6bff;
  }

  50% {
    box-shadow: 0 0 16px #6a6bff;
  }

  100% {
    box-shadow: 0 0 6px #6a6bff;
  }
}

/* ===== END case studies slideshow ===== */
/* ===== Tutorial slider ===== */


.tutorials {
  z-index: 10000px;
  position: relative;
  background-repeat: no-repeat;
  background: url('../img/Ellipsert.png') no-repeat right bottom;
  background-size: contain;
}

.tutorials::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/Ellipselt.png) no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
}

.tutorials {
  width: 100%;
  padding-top: 80px;
  text-align: center;
  width: 100%;
  height: 800px;
  background: url("../img/insights/looperg.png") no-repeat center center;
  object-fit: fit;
  background-size: cover;
  position: relative;
  z-index: -0;
  top: 0px;
  bottom: 0px;
}

.tutorials .inr-title {
  font-weight: 650;
  font-size: 50px;
  line-height: 30px;
  padding-bottom: 40px;
}

.slider-page {
  width: 800px;
  max-width: 95%;
  margin: 0 auto;
}

/* image box */
.slider-box {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 420px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(.22, .61, .36, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content */
.slider-content {
  margin-top: 18px;
  text-align: left;
}

.slider-content h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.tuttags {
  margin-top: 10px;
  font-size: 14px;
  font-weight: lighter;
}

/* nav */
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 16px;
}

.arrowt {
  font-size: 22px;
  cursor: pointer;
  opacity: .6;
  transition: .3s;
}

.arrowt:hover {
  opacity: 1;
}

.dotst {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
}

.dot.active {
  background: #7b5cff;
}

/* ===== blog ===== */
/* ===== Container ===== */

.blog-section {
  z-index: 10000px;
  position: relative;
  background-repeat: no-repeat;
  background: url('../img/Ellipsert.png') no-repeat right bottom;
  background-size: contain;
  padding-top: 80px;
}

.blog-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/Ellipselt.png) no-repeat left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
}

.blog-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.blog-container .inr-title {
  text-align: center;
  padding-bottom: 30px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.blog-card {
  position: relative;
  height: 450px;
  border-radius: 24px;
  border-bottom-right-radius: 0;
  overflow: hidden;
  background: #798a9d;
  cursor: pointer;
  transition: transform .45s ease, box-shadow .45s ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2));
}

/* Hover effect */
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 179, 255, 0.155);
}

/* Image */
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}



/* Content */
.blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  z-index: 2;
  transition: transform .75s ease;
}

.blog-card:hover .blog-content {
  transform: translateY(-36px);
}

.blog-content h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  margin-bottom: 14px;
}

/* Author */
.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.author-text .name {
  font-size: 13px;
  font-weight: 600;
}

.author-text .about {
  font-size: 12px;
  opacity: .7;
}

.author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}