:root {
  --primary-first-color: #273883;
  --second-color: #ffcd00;
  --background-color: #f5f5f5;
  --text-color: #273883;
  --footer-bg-color: #000;
  --footer-text-color: #fff;
  --footer-icon-hover: rgba(0, 0, 0, 0.3);
}
@font-face {
  font-family: Gotham;
  src: url("../assets/fonts/GothamMedium.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #141616;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.section {
  min-width: 330px;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.percentage {
  font-size: 3rem;
  font-weight: bold;
}

.loading-text {
  margin-top: 10px;
  font-size: 1.2rem;
}

.progress-bar {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 5px;
  background-color: #fff;
}

/* Main Content styles */
body section,
.navbar-collapse,
header,
footer,
#main-content {
  opacity: 0;
  visibility: hidden;
   transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.hidden {
  visibility: hidden;
}
/* header */

.header {
  background-color: transparent;
}

/* hero section */
.banner {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: url("../assets/images/banner-background.png") no-repeat;
  background-size: 100% 100%;
  z-index: 0;
}

.banner-bg {
  width: 100%;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: drop-shadow(0px 4px 4px #00000040);
}

.bannerbg-img {
  width: 520px;
}

.banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  width: 220px;
}

.ball {
  position: absolute;
  height: auto;
  width: 15vw;
  border-radius: 50%;
  filter: blur(4px);
  will-change: filter;
  transform-style: preserve-3d;
  will-change: transform;
}
.ball img {
  will-change: transform;
  transform-style: preserve-3d;
  width: 100%;
  height: auto;
}
#ball2 {
  width: 18vw;
  mix-blend-mode: screen;
}
#ball3 {
  width: 11vw;
}

.blue-shadow {
  background: radial-gradient(circle, #273883 20%, #273883 80%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(50px);
}
.red-shadow {
  background: radial-gradient(circle, #d11624 20%, #d11624 80%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
}
.ring {
  width: 94%;
  position: absolute;
  left: 3%;
  top: 2.8%;
  opacity: 1;
}

.ring_arc {
  width: 94%;
  position: absolute;
  left: 2%;
  top: -10%;
  opacity: 1;
  /* filter: blur(1px); */
}
.arcShadow {
  width: 90%;
  position: absolute;
  left: 5%;
  top: 5%;
  opacity: 0.7;
  /* filter: blur(1px); */
  mix-blend-mode: screen;
}
.shadowsImg {
  width: 100%;
  position: absolute;
  left: -2%;
  top: -40%;
  opacity: 1;
  mix-blend-mode: screen;
}
.shadowsImg2 {
  width: 100%;
  position: absolute;
  left: 28%;
  top: -36%;
  opacity: 1;
  mix-blend-mode: screen;
}
#red-halo {
  position: absolute;
  top: 40%;
  width: 75%;
  left: 28%;
  transform: rotate(20deg);
  opacity: 0.6;
}
.redball_shadow {
  width: 50%;
  height: 50%;
  position: absolute;
  left: 55%;
  top: 40%;
  opacity: 1;
  /* background: radial-gradient(closest-side, #d8e3e9, #3691e5, #2b84d9); */
  background: radial-gradient(circle, #0d84da 70%, #000000 30%);
  filter: blur(50px) brightness(0.4);
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 992px) {
  .ball {
    height: auto;
  }

  .banner-logo {
    width: 180px;
  }
}

@media (max-width: 576px) {
  .radial-effect {
    width: 100vh;
    min-height: 100vh;
  }
}

/* About section */

.about_showreel {
  padding: 0rem 0rem 0rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about {
  width: 100%;
  padding-top: 4rem;
  position: relative;
  padding-bottom: 8rem;
  background: url("../assets/images/section2.png") no-repeat;
  background-size: 100% 100%;
}

.about .title {
  font-size: 4rem;
  font-weight: bold;
  /* line-height: 130px; */
  color: rgb(165, 198, 184);
  overflow: hidden;
}

.about .subtitle {
  font-size: 3rem;
  color: rgb(165, 198, 184);
}
.about .about-content {
  font-size: 1.25rem;
  color: #fff;
  padding: 1rem 0;
}
.about .left-content {
  padding: 0 1rem 0 0;
  width: 100%;
}
.about .right-content {
  padding: 0 0 0 1rem;
  width: 90%;
}
@media (min-width: 763px) {
  .subtitle {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .about .about-content {
    font-size: 1.1rem;
  }
}
@media (max-width: 992px) {
  .about .right-content {
    padding: 1rem 1rem 0 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about .title {
    font-size: 4rem;
    line-height: 105px;
  }
  .about .subtitle {
    font-size: 2.5rem;
  }
  .about .about-content {
    font-size: 1rem;
  }
}
/* showreel */

.showreel {
  width: 100%;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  /* background-image: linear-gradient(to bottom, transparent 95%, #000000 5%); */
  background: url("../assets/images/section3.png") no-repeat;
  background-size: 100% 100%;
}

.showreel-title {
  color: rgb(131, 179, 199);
  font-size: 4rem;
  padding-bottom: 2rem;
}
.video-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: rgba(255, 225, 229, 0.35); 
  border-radius: 2rem;
}
.video-container .video-poster {
  background-color: rgb(0, 0, 0);
  width: 100%;
  position: relative;
  margin: 0.8rem;
  border-radius: 2rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.whatText {
  text-align: center;
  position: absolute;
  top: 0%;
  left: 2%;
}
.whatText .space,
.whatTextReverse .space {
  height: 1.8vw;
  display: block;
}
.whatTextReverse {
  text-align: center;
  position: absolute;
  top: 0%;
  right: 2%;
}

.letter {
  display: block;
  font-size: 3vw;
  color: rgb(131, 179, 199);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 3.8vw;
  text-shadow: 3px 3px 0px #f4f4f4;
}
.video-container .video-poster img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 1rem;
  object-position: 10% 0;
}
.video-container .video-poster iframe {
  width: 76%;
  /* height: 580px; */
  border-radius: 1rem;
  aspect-ratio: 16/9;
}

/* .video-container img {
  width: 100%;
} */

.showreel-blue-ball,
.showreel-bg-ball,
.showreel-yellow-ball {
  position: absolute;
  z-index: 0;
  will-change: transform;
}

.showreel-blue-ball {
  top: 2%;
  left: -20%;
  width: 38%;
  opacity: 1;
  filter: blur(5px) brightness(0.7);
  z-index: 1;
}

.showreel-bg-ball {
  top: -58%;
  right: 0%;
  width: 42%;
  /* height: 100%; */
  opacity: 1;
  text-align: center;
}
.showreel-bg-ball img {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

.showreel-red-ball {
  width: 28%;
  position: absolute;
  top: -45%;
  right: 8%;
  will-change: transform;
}
.showreel-yellow-ball {
  top: 60%;
  right: -4.8vw;
  width: 12%;
  opacity: 1;
}
.showreel-effect {
  position: absolute;
  top: -16vw;
  left: 10%;
  width: 130vw;
  height: 800px;
  z-index: 0;
}
@media (max-width: 1440px) and (min-width: 1024px) {
  .video-container .video-poster img {
    width: 100%;
    /* height: 70vh; */
  }
}
@media (max-width: 1200px) {
  .about {
    padding-bottom: 4rem;
  }
  .showreel {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 1024px) {
  .video-container .video-poster img {
    width: 100%;
    /* height: 44vw; */
  }
}
@media (max-width: 768px) {
  .video-container {
    border-radius: 1rem;
  }
  .video-container .video-poster {
    width: 100%;
    margin: 0.4rem;
    border-radius: 1rem;
  }
  .video-container .video-poster iframe {
    width: 90%;
    border-radius: 0rem;
    aspect-ratio: 16/9;
  }
  
}
@media (max-width: 576px) {
  .about {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .showreel {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .showreel-title {
    font-size: 3rem;
  }
}
/* Brands */
.brands_whatwedo {
  padding: 2rem 0rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* background-color: #000; */
  background: url("../assets/images/section3.png") no-repeat;
  background-size: 100% 100%;
}

.brands {
  width: 100%;
  position: relative;
  display: flex;
  padding-top: 3rem;
  padding-bottom: 4rem;
  flex-direction: column;
  /* background: url("../assets/images/brands-section.png") no-repeat; */
  background-size: 100% 100%;
  background-color: #060014;
}
.brands-container {
  width: calc(200px * 21.4);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  overflow-x: hidden;
}

.normalAnimation {
  animation: brandsRotate 30s linear infinite alternate;
}
.reverseAnimation {
  animation: brandsRotateReverse 30s linear infinite alternate;
}
@keyframes brandsRotate {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 13));
  }
}
@keyframes brandsRotateReverse {
  0% {
    transform: translateX(calc(-200px * 13));
  }
  100% {
    transform: translateX(0);
  }
}
.brands .brand-logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brands .brands-eachImg {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brands .brands-eachImg > img {
  width: 65%;
  height: auto;
}

@media (max-width: 768px) {
 .brands{
  padding-top: 2rem;
  padding-bottom: 2rem;
 }
}
/* what we do */
.what-we-do {
  background: linear-gradient(to bottom, #e9f9f2 80%, #000 20%);
  position: relative;
  width: 100%;
  display: flex;
  padding-top: 4rem;
  /* min-height: 84.726vh; */
}
.what-we-do .what-title {
  width: 100%;
  position: relative;
  color: #4e667d;
  font-size: 4rem;
  font-weight: bold;
}
.circle > img {
  filter: blur(3px);
}
.what-we-do .hidden-circle {
  width: 550px;
  height: 550px;
  position: relative;
  opacity: 0;
}
.what-we-do .blue-circle {
  width: 550px;
  height: 550px;
  position: absolute;
  top: 15%;
  left: 5%;
}
.what-we-do .blue-circle .circle-container {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.what-we-do .blue-circle .circle-title {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

/* .what-we-do .blue-circle .circle-text {
  font-size: 1.25rem;
} */

.what-we-do .red-circle {
  width: 250px;
  position: absolute;
  top: 8%;
  left: 84%;
  text-align: center;
}
.what-we-do .red-circle .circle-container {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.what-we-do .red-circle .circle-title {
  font-weight: bold;
  margin-bottom: 0.2rem;
}
/* .what-we-do .red-circle .circle-text {
  font-size: 0.6rem;
} */
.what-we-do .yellow-circle {
  width: 180px;
  position: absolute;
  top: -22%;
  left: 46%;
  text-align: center;
}
.what-we-do .yellow-circle .circle-container {
  width: 66%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.what-we-do .yellow-circle .circle-title {
  font-weight: bold;
  margin-bottom: 0.2rem;
}
/* .what-we-do .yellow-circle .circle-text {
  font-size: 0.4rem;
} */
.what1[data-slide="1"] .blue-circle .circle-title,
.what1[data-slide="2"] .red-circle .circle-title,
.what1[data-slide="3"] .yellow-circle .circle-title {
  font-size: 2.188rem;
}
.what1[data-slide="1"] .yellow-circle .circle-title,
.what1[data-slide="2"] .blue-circle .circle-title,
.what1[data-slide="3"] .red-circle .circle-title {
  font-size: 0.6rem;
}
.what1[data-slide="1"] .red-circle .circle-title,
.what1[data-slide="2"] .yellow-circle .circle-title,
.what1[data-slide="3"] .blue-circle .circle-title {
  font-size: 0.8rem;
}
.what1[data-slide="1"] .blue-circle .circle-text,
.what1[data-slide="2"] .red-circle .circle-text,
.what1[data-slide="3"] .yellow-circle .circle-text {
  font-size: 1.25rem;
}
.what1[data-slide="1"] .yellow-circle .circle-text,
.what1[data-slide="2"] .blue-circle .circle-text,
.what1[data-slide="3"] .red-circle .circle-text {
  font-size: 0.4rem;
}
.what1[data-slide="1"] .red-circle .circle-text,
.what1[data-slide="2"] .yellow-circle .circle-text,
.what1[data-slide="3"] .blue-circle .circle-text {
  font-size: 0.6rem;
}
@media (max-width: 768px) {
  .what-we-do .blue-circle {
    width: 500px;
    height: 500px;
  }
  .what-we-do .hidden-circle {
    width: 480px;
    height: 480px;
  }

  /* .what-we-do .blue-circle .circle-title {
    font-size: 1.8rem;
  }
  .what-we-do .blue-circle .circle-text {
    font-size: 1.2rem;
  } */
  .what1[data-slide="1"] .blue-circle .circle-title,
  .what1[data-slide="2"] .red-circle .circle-title,
  .what1[data-slide="3"] .yellow-circle .circle-title {
    font-size: 1.8rem;
  }
  .what1[data-slide="1"] .blue-circle .circle-text,
  .what1[data-slide="2"] .red-circle .circle-text,
  .what1[data-slide="3"] .yellow-circle .circle-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .what-we-do .what-title {
    font-size: 3rem;
  }
  .what-we-do .blue-circle {
    width: 400px;
    height: 400px;
  }
  .what-we-do .hidden-circle {
    width: 400px;
    height: 400px;
  }

  .what-we-do .blue-circle .circle-title {
    font-size: 1.5rem;
  }

  .what-we-do .blue-circle .circle-text {
    font-size: 1rem;
  }
  .what-we-do .red-circle {
    width: 200px;
    top: 156px;
  }
  .what-we-do .red-circle .circle-title {
    font-size: 0.7rem;
  }
  .what-we-do .red-circle .circle-text {
    font-size: 0.3rem;
  }
}
@media (max-width: 320px) {
  .what-we-do .blue-circle {
    width: 310px;
    height: 310px;
  }
  .what-we-do .hidden-circle {
    width: 310px;
    height: 310px;
  }

  .what-we-do .blue-circle .circle-title {
    font-size: 1.2rem;
  }

  .what-we-do .blue-circle .circle-text {
    font-size: 0.7rem;
  }
}

/* rules engagement */

.rules-engagement {
  width: 100%;
  position: relative;
  display: flex;
  padding: 2rem 0vw 4rem;
  overflow: hidden;
  background-color: #f0fffa;
  /* background-color: #000; */
}

.rules-engagement .title {
  width: 100%;
  position: relative;
  /* color: #99d1b8; */
  color: #000000;
  /* color: rgba(78, 102, 35, 0.35); */
  font-size: 4rem;
  font-weight: bold;
}

.rules-engagement img {
  width: 10%;
  height: auto;
}
.rules-engagement .rules-cradle {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.rules-engagement .rules-cradle .three-circles {
  width: 12vw;
  height: auto;
  transition: all 0.3s linear;
  /* position: absolute; */
  transform-origin: 50% -300%;
  filter: blur(2px);
}
.rules-engagement .rules-cradle .three-circles img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rules-engagement .rules-cradle .three-circles-hidden {
  width: 15vw;
  height: 15vw;
  /* opacity: 0; */
  display: none;
}
#ban-ball1 {
  animation: banball1 0.9s alternate infinite ease-in;
  margin-right: -2vw;
}

#ban-ball3 {
  animation: banball3 0.9s alternate infinite ease-in;
  margin-left: -2vw;
}

@keyframes banball1 {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
@keyframes banball3 {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
.rules-engagement .rules-content {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 2rem 0;
  overflow: hidden;
}
.rules-engagement .rules-content .content {
  width: 33.33%;
  position: relative;
  /* color: #a5c6b8; */
  color: #000000;
  padding: 0 1rem 0 0;
  display: flex;
}
.rules-engagement .rules-content .content1 {
  padding: 0 1rem 0 0;
  justify-content: start;
}
.rules-engagement .rules-content .content2 {
  padding: 0 1rem;
  justify-content: center;
}
.rules-engagement .rules-content .content3 {
  padding: 0 0 0 1rem;
  justify-content: end;
}
.rules-engagement .rules-content .content .content-container {
  width: 90%;
  position: relative;
  text-align: center;
}
.rules-engagement .rules-content .content-container .content-title {
  font-size: 2rem;
  font-weight: bold;
}
.rules-engagement .rules-content .content-container .content-text {
  font-size: 1.1rem;
}

@media (min-width: 1600px) {
  .rules-engagement .rules-content .content-container .content-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 1400px) {
  .rules-engagement .rules-content .content-container .content-title {
    font-size: 1.6rem;
  }
  .rules-engagement .rules-content .content-container .content-text {
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .rules-engagement .rules-content .content .content-container {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .rules-engagement .rules-content {
    flex-wrap: wrap;
  }
  .rules-engagement .rules-content .content {
    width: 50%;
    padding: 1rem 2rem;
  }
}
@media (max-width: 768px) {
  .rules-engagement .title {
    font-size: 3rem;
  }
  .rules-engagement .rules-content {
    flex-direction: column;
  }
  .rules-engagement .rules-content .content1,
  .rules-engagement .rules-content .content2,
  .rules-engagement .rules-content .content3 {
    width: 100%;
    margin: 0;
    padding: 1rem 1rem;
  }
  .rules-engagement .rules-content .content .content-container {
    width: 100%;
  }
  .rules-engagement .rules-cradle .three-circles {
    width: 30%;
    height: auto;
  }
  #ban-ball1 {
    animation: banball1 0.9s alternate infinite ease-in;
    margin-right: -25px;
  }

  #ban-ball3 {
    animation: banball3 0.9s alternate infinite ease-in;
    margin-left: -25px;
  }
}
@media (max-width: 576px) {
  .rules-engagement .title {
    font-size: 3rem;
  }
  .rules-engagement .rules-content .content-container .content-title {
    font-size: 2rem;
  }
  .rules-engagement .rules-content .content-container .content-text {
    font-size: 1.1rem;
  }
  #ban-ball1 {
    margin-right: -22px;
  }

  #ban-ball3 {
    margin-left: -22px;
  }
}
/* extra media query */
@media (max-width: 481px) {
  #ban-ball1 {
    margin-right: -16px;
  }

  #ban-ball3 {
    margin-left: -16px;
  }
}
@media (max-width: 380px) {
  #ban-ball1 {
    margin-right: -14px;
  }

  #ban-ball3 {
    margin-left: -14px;
  }
}
@media (max-width: 320px) {
  .rules-engagement .title {
    font-size: 2.6rem;
  }
}
/* Recent Work */
.section-recent-work {
  position: relative;
  width: 100%;
  display: flex;
  padding: 2rem 0vw 4rem;
  overflow: hidden;
  background-color: #000;
}
.recent-work-halo {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 70%;
}
.recent-work-halo2 {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
}
.recent-work-halo img,
.recent-work-halo2 img {
  width: 100%;
  height: auto;
}
.recent-work-halo img {
  width: 100%;
  height: auto;
}
.section-recent-work .recent-title {
  width: 100%;
  position: relative;
  color: #a5c6b8;
  font-size: 4rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.section-recent-work .recent-work-content {
  width: 100%;
  position: relative;
  display: flex;
  padding: 1rem 0;
  overflow-x: hidden;
}
.section-recent-work .recent-work-content > div {
  width: 50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* .recent-work-content > div:nth-child(1) {
  justify-content: start;
}
.recent-work-content > div:nth-child(2) {
  justify-content: end;
} */

.section-recent-work .recent-work-content a {
  width: 70%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  position: relative;
  border-radius: 30px;
}
.section-recent-work .recent-work-content a > video {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.section-recent-work .recent-work-content img {
  width: 100%;
  height: auto;
}
.section-recent-work .recent-work-content .content-left,
.section-recent-work .recent-work-content .content-right {
  width: 100%;
  position: absolute;
  bottom: -56%;
  padding: 6% 6%;
  background-color: rgba(0, 0, 0, 0.5);
  /* border-radius: 0rem 0rem 2.6rem 2.6rem; */
  border-radius: 0 0 30px 30px;
  transition: bottom 0.5s ease;
}
.section-recent-work .recent-work-content a:hover .content-left,
.section-recent-work .recent-work-content a:hover .content-right {
  bottom: 0%;
}

.section-recent-work .recent-work-content .case-title {
  font-size: 2.188rem;
  font-weight: bold;
  width: 30%;
}
.section-recent-work .recent-work-content .case-text {
  font-size: 1.25rem;
}
.section-recent-work .explore-more {
  width: 100%;
  position: relative;
  color: #a5c6b8;
  font-size: 1.563rem;
  padding: 2rem 1rem 1rem;
  text-align: center;
}
.section-recent-work .explore-more > a {
  color: #a5c6b8;
  text-decoration: none;
  border-bottom: 1px solid #a5c6b8;
}
@media (max-width: 1200px) {
  .recent-work-halo {
    top: 25%;
  }
  .section-recent-work .recent-work-content a {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .section-recent-work .recent-work-content a {
    width: 85%;
  }
  .section-recent-work .recent-work-content .content-left,
  .section-recent-work .recent-work-content .content-right {
    bottom: -78%;
  }
  .section-recent-work .recent-work-content .case-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .recent-work-halo {
    top: 30%;
    width: 100%;
  }
  .section-recent-work .recent-title {
    font-size: 3rem;
  }
  .section-recent-work .recent-work-content .case-title {
    font-size: 1.9rem;
  }
  .section-recent-work .recent-work-content .case-text {
    font-size: 1.1rem;
  }
  .section-recent-work .explore-more {
    font-size: 1.3rem;
  }
  .section-recent-work .recent-work-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .section-recent-work .recent-work-content > div {
    width: 100%;
    padding: 1rem;
  }
  .recent-work-content > div:nth-child(1) {
    justify-content: center;
  }
  .recent-work-content > div:nth-child(2) {
    justify-content: center;
  }
  .section-recent-work .recent-work-content a {
    width: 100%;
  }
  .section-recent-work .recent-work-content .content-left,
  .section-recent-work .recent-work-content .content-right {
    bottom: -82%;
  }
  /* .section-recent-work .recent-work-content .content-right {
    order: 2;
    padding: 1rem 0 0rem;
  } */
}
/* Our Team */
.our-team {
  background-color: #f0fffa;
  position: relative;
  width: 100%;
  display: flex;
  padding: 4rem 0vw;
  overflow: hidden;
}

.our-team-title {
  width: 100%;
  position: relative;
  color: #4e667d;
  font-size: 4rem;
  font-weight: bold;
}

.our-team-member {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  overflow: hidden;
}
.team-slider {
  display: flex;
  width: 300%;
  transition: transform 1s ease-in-out;
}

.team-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .team-slide.active {
  display: block;
} */

.slider-buttons {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* .next-btn,
.prev-btn {
  position: absolute;
  width: 2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.next-btn {
  right: -85px;
}
.prev-btn {
  left: -85px;
} */
.prev-btn,
.next-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  width: 70px;
  opacity: 0.7;
  transition: opacity 0.3s ease-in-out;
}
.prev-btn:hover,
.next-btn:hover {
  opacity: 1;
}
.our-team .our-team-member .team-member-container {
  width: 100%;
  background-color: #000;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
}
.our-team .our-team-member .team-member-container .member-container {
  width: 100%;
  background-color: #000;
  border-radius: 100px;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}
.our-team .our-team-member .team-member-container .member-info {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.our-team .team-member-container .member-left-side {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 1;
}
.our-team .team-blue-ball {
  position: absolute;
  width: 315px;
  top: -2vw;
  left: 2vw;
  z-index: 2;
  filter: blur(3px);
}
.our-team .team-halo {
  position: absolute;
  width: 45%;
  bottom: 0%;
  right: 0%;
  z-index: 2;
  mix-blend-mode: screen;
  transform: translate(30%, 35%);
}
.our-team .team-member-container .member-left-side img {
  width: 80%;
  max-width: 400px;
  z-index: 2;
  position: relative;
}
.our-team .team-member-container .member-right-side {
  width: 60%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.our-team-member .m-info {
  font-size: 2.188rem;
  font-weight: bold;
  padding: 0.5rem 0;
  text-transform: capitalize;
}

.our-team-member .m-position {
  font-size: 1.875rem;
  padding: 0.5rem 0;
  text-transform: capitalize;
}

.our-team-member .separator {
  background-color: #ffffff;
  width: 100%;
  border: 1px solid #fff;
}
.our-team-member .m-text {
  font-size: 1.25rem;
  padding: 1rem 0;
}

.our-team-member .m-email {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 1400px) and (min-width: 1200px) {
  .our-team .member-left-side .team-blue-ball {
    width: 20vw;
    top: -2vw;
    left: 2vw;
  }
  .prev-btn,
  .next-btn {
    width: 55px;
  }
}
@media (max-width: 1200px) {
  .our-team-member .team-member-container {
    flex-direction: column;
    padding: 3rem;
  }

  .our-team .our-team-member .team-member-container .member-container {
    padding: 3rem;
  }

  .our-team .our-team-member .team-member-container .member-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .our-team .team-member-container .member-left-side,
  .our-team .team-member-container .member-right-side {
    width: 100%;
  }

  .our-team .team-member-container .member-left-side img {
    width: 70%;
  }

  .our-team-member .m-info {
    font-size: 2rem;
  }

  .our-team-member .m-position {
    font-size: 1.5rem;
  }

  .our-team-member .m-text {
    font-size: 1.1rem;
  }

  .our-team-member .m-email {
    font-size: 1.4rem;
  }
  .our-team .member-left-side .team-blue-ball {
    width: 20vw;
    top: -10%;
    left: 30%;
  }
  .slider-buttons {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .prev-btn,
  .next-btn {
    width: 50px;
  }
}
@media (max-width: 992px) {
  .our-team-member {
    padding: 2rem 1rem;
  }

  .our-team .member-left-side .team-blue-ball {
    width: 25vw;
    top: -10%;
    left: 20%;
  }
}
@media (max-width: 768px) {
  .our-team-title {
    font-size: 3rem;
  }

  .our-team-member .team-member-container .member-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .our-team .team-member-container .member-left-side,
  .our-team .team-member-container .member-right-side {
    width: 100%;
  }

  .our-team .team-member-container .member-left-side img {
    width: 65%;
  }

  .our-team-member .m-info {
    font-size: 1.8rem;
  }

  .our-team-member .m-position {
    font-size: 1.5rem;
  }

  .our-team-member .m-text {
    font-size: 1rem;
  }

  .our-team-member .m-email {
    font-size: 1.3rem;
  }
  .our-team .member-left-side .team-blue-ball {
    width: 30vw;
    top: -10%;
    left: 20%;
  }
  .prev-btn,
  .next-btn {
    width: 40px;
  }
}
@media (max-width: 576px) {
  .our-team-title {
    font-size: 3rem;
  }
  .our-team .our-team-member .team-member-container {
    padding: 1rem;
  }
  .our-team .our-team-member .team-member-container .member-container {
    padding: 1rem;
  }
  .prev-btn,
  .next-btn {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .our-team-member .team-member-container {
    flex-direction: column;
    padding: 1.5rem;
  }
  .slider-buttons {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .our-team .team-member-container .member-left-side img {
    width: 90%;
  }

  .our-team-member .m-info {
    font-size: 1.4rem;
  }

  .our-team-member .m-position {
    font-size: 1.2rem;
  }

  .our-team-member .m-text {
    font-size: 0.7rem;
  }

  .our-team-member .m-email {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .our-team-title {
    font-size: 2.5rem;
  }

  .our-team-member .team-member-container {
    padding: 1rem;
  }

  .our-team-member .m-info {
    font-size: 1.2rem;
  }

  .our-team-member .m-position {
    font-size: 1rem;
  }

  .our-team-member .m-text {
    font-size: 0.5rem;
  }

  .our-team-member .m-email {
    font-size: 0.8rem;
  }

  /* .our-team .our-team-member .next-btn,
  .our-team .our-team-member .prev-btn {
    width: 15%;
  } */
}
#ball1 img,
#ball2 img,
#ball3 img,
.showreel-blue-ball img {
  animation: ballAnimate 5s linear infinite;
}
@keyframes ballAnimate {
  0% {
    transform: rotate(0deg) translate(10px) rotate(0deg);
  }
  50% {
    transform: rotate(180deg) translate(10px) rotate(-180deg);
  }
  100% {
    transform: rotate(360deg) translate(10px) rotate(-360deg);
  }
}
.showreel-blue-ball img,
.showreel-red-ball img,
.showreel-yellow-ball img,
.showreel-bg-ball img {
  animation: teamBlueBallAnimation 4s linear infinite alternate;
}
@keyframes ballAnimate2 {
  0% {
    transform: rotate(0deg) translate(10px) rotate(0deg);
  }
  50% {
    transform: rotate(180deg) translate(10px) rotate(-180deg);
  }
  100% {
    transform: rotate(360deg) translate(10px) rotate(-360deg);
  }
}
@keyframes teamBlueBallAnimation {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1)
      scaleZ(1) translateX(0%) translateY(0%) translateZ(0);
  }
  100% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1.00418)
      scaleY(1.00418) scaleZ(1) translateX(-8%) translateY(8%) translateZ(0);
  }
}

.team-blue-ball {
  animation: teamBlueBallAnimation 5s linear infinite alternate;
}
/* for all section */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (min-width: 2000px) {
  .container-large {
    width: 100%;
    max-width: 100rem;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.container-fluid {
  position: relative;
}

@media (min-width: 993px) {
  .container-fluid {
    padding: 0 8vw;
  }
}
@media (min-width: 2000px) {
  .container-fluid {
    padding: 0 2vw;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 8vw;
  }
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 481px) {
  .container-fluid {
    padding: 0 8vw;
  }
}
