@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
header .trans-bg {
  position: relative;
  padding: 16px 20px;
}
header .trans-bg::before {
  content: "";
  background: #fff;
  border-radius: 100px;
  opacity: 10%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header ul {
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
}

.home-hero {
  position: relative;
}
.home-hero .banner-img {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, li, a, * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.badge {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  background-color: #fff;
  padding: 6px 17px 6px 39px;
  color: #282828;
  border-top: 1px solid rgba(77, 77, 77, 0.1411764706);
  border-radius: 20px;
}
.badge::before {
  position: absolute;
  content: "";
  background: #F6F3FC;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(11px, -50%);
}
.badge::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(84deg, #333333 0%, #E33A24 100%);
  position: absolute;
  left: 15%;
  top: 41%;
  z-index: 1;
}

.meet-our-team {
  background: #040E0A;
}

.slider-left {
  position: relative;
  height: -webkit-fill-available;
  width: 260px;
  perspective: 1200px;
}

/* BASE SLIDE */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px; /* FIXED WIDTH */
  height: -webkit-fill-available;
  transform-origin: center left;
  transform: scale(0.75) translateX(0);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  cursor: pointer;
}

.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

/* ACTIVE (BIG) */
.slide.active {
  transform: translateX(75px) scale(0.75);
  opacity: 1;
  z-index: 3;
  width: 642px;
  height: 100%;
  top: 0px;
  z-index: -1;
}

/* PREVIOUS (SMALL) */
.slide.prev {
  transform: translateX(0) scale(0.7);
  opacity: 1;
  z-index: 2;
}

/* HIDE OTHERS */
.slide:not(.active):not(.prev) {
  opacity: 0;
  pointer-events: none;
}

.ourteam {
  background-color: #040E0A;
  overflow: hidden;
}
.ourteam .l-r-flex {
  display: flex;
  justify-content: space-between;
}
.ourteam .l-r-flex .lhs {
  width: 815px;
}
.ourteam .l-r-flex .rhs {
  width: 100%;
}
.ourteam .content {
  margin-bottom: 40px;
  width: fit-content;
}
.ourteam .content p {
  width: 450px;
  text-align: center;
}
.ourteam .desc {
  padding-bottom: 132px;
  padding-right: 98px;
}
.ourteam .desc p {
  margin-bottom: 20px;
}
.ourteam .desc p:nth-child(1), .ourteam .desc p:nth-last-child(1) {
  margin-bottom: 0;
}
.ourteam h3 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -1_86;
  font-weight: 400;
  margin-bottom: 9px;
  font-family: "Marcellus", serif;
}
.ourteam h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Marcellus", serif;
}
.ourteam h2 {
  font-weight: 400;
  font-size: 62px;
  leading-trim: NONE;
  line-height: 75px;
  letter-spacing: -1.86px;
  vertical-align: middle;
  background: linear-gradient(90deg, #FFFFFF 50%, #2E2E2E 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-family: "Marcellus", serif;
}
.ourteam .badge {
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 20px;
}
.ourteam .slider-right {
  padding: 83px 0px 0px 129px;
  color: #fff;
}

.content-slide {
  display: none;
  animation: fadeUp 0.5s ease;
}

.content-slide.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */