/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Inter", sans-serif;
  color: #444444;
  background-color: #21144d !important;
  position: relative;
}

body.modal-open .bg-blur {
  filter: blur(5px);
  -webkit-filter: blur(5px);
}

li {
  list-style-type: none;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.new-container-header {
  padding: 0px 72px;
}
.new-container {
  padding: 0px 72px;
}

@media (max-width: 768px) {
  .new-container {
    padding: 0px 20px;
  }
  .new-container-header {
    padding: 0px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
#myModal .modal-content {
  background-color: #cbf44f;
  padding: 40px 35px 35px 35px;
  border-radius: 16px;
  position: relative;
}

#myModal .modal-content #close-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

#myModal .modal-dialog {
  max-width: 1043px;
}

#myModal .white-block {
  color: #0084ff;
  font-size: 45px;
  font-family: Bebas Neue;
  padding: 28px 26px;
  background-color: #fff;
  border-radius: 20px;
}

#myModal .scam-img {
  width: 333px;
  height: 154px;
  margin: auto 0;
}

#myModal .scam-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#myModal ul {
  margin-top: 24px;
  padding: 0;
}

#myModal ul h3,
.text-bold {
  color: #000;
  font-size: 18px;
  font-family: Inter;
  font-weight: 700;
}

#myModal ul li {
  list-style: none;
  position: relative;
  padding-left: 15px;
  color: #000;
  font-size: 18px;
  font-family: Inter;
  padding-bottom: 8px;
}
#myModal h2 {
  color: #0084ff;
  font-size: 45px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
}
#myModal p {
  color: #000;
  font-size: 18px;
  font-family: Inter;
  padding-bottom: 8px;
}

#myModal ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0em;
  width: 0.4em;
  height: 0.4em;
  background-color: #000;
  border-radius: 50%;
}

#myModal .figure-box {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 26px;
}

#myModal .figure-box h2 {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 80px;
  font-family: Bebas Neue;
  margin: 0;
  padding: 0;
}

#myModal .figure-box p {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 25px;
  font-family: Inter;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  #myModal .modal-content {
    padding: 40px 12px 12px 12px;
  }
  #myModal .scam-img {
    width: 189px;
    height: 88px;
    margin: auto;
  }

  #myModal .white-block {
    font-size: 24px;
    padding: 20px 26px;
    text-align: center;
  }

  #myModal .figure-box {
    border-radius: 10px;
  }

  #myModal .figure-box h2 {
    font-size: 34px;
  }

  #myModal .figure-box p {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 44px 0px;
  position: relative;
  top: 1px;
  background-color: #21144d;
  right: 0;
  left: 0;
}

#header .container {
  /* padding: 0px; */
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  /* width: 134px; */
  height: 100px;
}

.mobile-menu-icon {
  display: none;
}

@media (max-width: 768px) {
  #header {
    padding-top: 20px;
    padding-left: 8px;
    padding-right: 8px;
  }

  #header .logo {
    margin: auto;
  }

  #header .logo img {
    width: 44px;
    height: 54px;
  }

  #header .logo svg {
    width: 86px;
    height: 42px;
  }

  #navbar {
    position: absolute;
  }

  .mobile-menu-icon {
    display: block;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;

  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 109.6%;
  /* identical to box height, or 20px */

  color: #ffffff;
  white-space: nowrap;
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 14px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Mobile Sidebar
--------------------------------------------------------------*/
.mobile-sidebar {
  background: linear-gradient(164.82deg, #27164f 0%, #5e3257 100%);
  overflow-y: scroll;
  width: 100% !important;
}

.menu-item {
}
.menu-item a {
  color: #f8efff !important;
  leading-trim: both;
  text-edge: cap;
  font-size: 24px;
  font-family: Inter;
  font-weight: 700;
  line-height: 169.5%;
  text-transform: capitalize;
  cursor: pointer;
}

.mobile-sidebar .find-us h4 {
  font-size: 18px;
}

.mobile-sidebar .contact-center {
  padding: 0;
  color: #fff;
}

.mobile-sidebar .footer-bottom {
  color: #fff;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
}
.mobile-sidebar .footer-bottom a {
  color: #fff;
}

.mobile-sidebar .copyright,
.mobile-sidebar .credits {
  text-align: center;
  float: none;
  font-size: 14px;
}

.mobile-sidebar .social-links a {
  padding-right: 8px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #21144d;
  padding-top: 0px !important;
  position: relative;
  padding-bottom: 170px !important;
}

#hero .container {
  padding-top: 72px;
  /* padding-left: 0px; */
}

#hero .hero-container {
  background-image: url(../img/hero-img.webp);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  /* padding-left: 120px; */
  z-index: 3;
  position: relative;
}

#hero::after {
  background-image: url(../img/hero-line.svg);
  content: "";
  position: absolute;
  bottom: -138px;
  left: 12%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 685px;
  height: 310px;
  z-index: 1;
}

#hero h1 {
  margin: 0 0 10px 0;
  color: #fff;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 102.6%;
  /* position: absolute; */
  z-index: 9;
}

#hero .hero-img img {
  height: 86vh;
  width: auto;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    text-align: center;
    padding-bottom: 30px !important;
    padding-top: 40px;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }

  #hero::after {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 40px;
    line-height: 40px;
    text-align: start;
    top: 0;
    left: 30px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }

  #hero .hero-container {
    background-position: center;
    padding-left: 0px;
    position: relative;
    height: 300px;
    align-items: start;
  }

  #hero .container {
    padding: 0px 20px 0px 20px;
  }

  .hero-line {
    display: none;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Counter Nutshell
--------------------------------------------------------------*/
.counter {
  /* background: linear-gradient(257.67deg, #185BFE 35.47%, #01216C 60.82%); */
  /* background: linear-gradient(180deg, #01206c 0%, #00172d 100%); */
  background-color: #e9045c;
  padding: 0px;
  padding: 120px 0;
  z-index: 9;
  position: relative;
}

.counter h1 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 112px;
  padding-bottom: 8px;
  color: #ffffff;
  position: relative;
}

.counter h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45%;
  border-bottom: 3px solid #fff;
}

.counter h1 .emotion {
  position: relative;
}

/* .counter .emotion::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100vw;
  width: auto; 
  display: block;
}

.counter .emotion::after svg {
  position: absolute;
  top: 50%;
} */

.title-container {
  display: flex;
}

.counter .right-line {
  position: absolute;
  top: 50px;
  left: calc(100% - 5px);
}

.counter .right-line svg {
  width: 250px;
}

.counter .right-text p {
  font-style: normal;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  color: #ffffff;
  opacity: 0.8;
  padding-top: 8px;
}

.right-text-description {
  display: none;
}

.counter .left-image > svg {
  width: 100%;
  height: auto;
}

.counter .col-lg-6 {
  padding: 0px 28px;
}

.counter .numbers {
  margin-top: 80px;
  /* padding: 0px 20px; */
  /* display: grid; */
  /* grid-template-columns: repeat(4, 1fr); */
  /* gap: 14px; */
}

.numbers-block {
  padding: 0;
}

.counter .numbers h2 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 90px;
  line-height: 100px;
  text-align: center;
  -webkit-text-stroke: 3px #fff;
  /* text-shadow:
  -2px -2px 0 #fff,  
   2px -2px 0 #fff,
   -2px 2px 0 #fff,
    2px 2px 0 #fff; */
  /* padding-top: 18px; */
  margin-bottom: 0;
}

.counter .numbers h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.counter .numbers .num {
  padding: 32px 20px;
  height: 100%;
}

.num-1 {
  background: #fff;
  color: #757575;
  backdrop-filter: blur(27.5px);
  border-radius: 20px;
}

.num-1 h2 {
  color: #e9045c;
}

.num-2 {
  background: #fff;
  color: #757575;
  backdrop-filter: blur(27.5px);
  border-radius: 20px;
}

.num-2 h2 {
  color: #e9045c;
}

.num-3 {
  background: #fff;
  color: #757575;
  backdrop-filter: blur(27.5px);
  border-radius: 20px;
}

.num-3 h2 {
  color: #e9045c;
}

.num-4 {
  background: #fff;
  color: #757575;
  backdrop-filter: blur(27.5px);
  border-radius: 20px;
}

.num-4 h2 {
  color: #e9045c;
}

@media (max-width: 768px) {
  .counter {
    padding: 38px 0;
  }

  .counter h1 {
    font-size: 40px;
    line-height: 37.4px;
    margin: 0;
    padding: 0;
  }

  .counter h1:after {
    display: none;
  }

  .counter .right-text p {
    display: none;
  }

  .right-text-description {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 30px;
    color: #ffffff;
    opacity: 0.8;
    padding-top: 8px;
  }

  .counter .left-image {
    text-align: center;
    padding: 0;
    width: 50%;
  }

  .counter .left-image > svg {
    height: 125px;
    width: 144px;
  }

  .counter .right-text {
    width: 50%;
    padding: 0;
  }

  .counter-header:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    width: 100px;
    border-bottom: 3px solid #ff4c38;
  }

  .counter-header + p {
    display: block;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-top: 24px;
  }

  .counter .right-line {
    display: none;
  }

  .counter .numbers h2 {
    font-size: 54px;
    line-height: 64px;
    -webkit-text-stroke: 2px #fff;
  }

  .counter .numbers h4 {
    font-size: 14px;
    line-height: 14px;
  }

  .counter .numbers {
    margin-top: 24px;
    padding: 0px 20px;
    /* display: grid; */
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 14px;
  }

  .counter .numbers .num {
    padding: 18px 25px 14px 25px;
    border-radius: 10px;
  }
}

/*--------------------------------------------------------------
# Sections Nutshell
--------------------------------------------------------------*/
#main section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 120px;
  line-height: 144px;
  color: #000000;
  position: relative;
}

/* .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
} */

.section-title p {
  margin-bottom: 0;
}
/* 
@media (max-width: 768px) {
  #main section {
    padding: 20px 0 !important;
  }
} */

/*--------------------------------------------------------------
# Nutshell
--------------------------------------------------------------*/
.nutshell {
  position: relative;
  background: linear-gradient(180deg, #2b2a77 -2.95%, #363676 100%);
  padding: 130px 120px 120px 120px;
}

.nutshell .section-title h2 {
  margin-top: 0px;
  color: #fff;
}

.nutshell .section-title h2 > svg {
  position: relative;
  top: -44px;
}

.nutshell .section-title h2 .ellipse {
  color: #f4025b;
  position: relative;
  z-index: 2;
}

.nutshell .section-title .ellipse .front {
  position: relative;
  z-index: 4;
  border-radius: 50%;
}

.nutshell .section-title .ellipse .back {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.nutshell .section-title h2 .ellipse:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 44%;
  left: 50%;
  width: 110%;
  height: 126%;
  border: 6px solid #f4025b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.nutshell .section-title h2 .ellipse:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 44%;
  right: 50%;
  width: 110%;
  height: 126%;
  border: 6px solid #f4025b;
  border-radius: 50%;
  transform: translate(50%, -50%);
  box-sizing: border-box;
}

.nutshell .icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  z-index: 19;
}

.nutshell .circle {
  background: #fff;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin-bottom: -56px;
  overflow: hidden;
}

.nutshell .nut-block {
  margin-top: 32px;
}

.nutshell .nut-card {
  padding: 90px 60px 30px 60px;
  position: relative;
  z-index: 5;
  background-image: url("../img/subtract.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 16px;
}

.nutshell .nut-card h4 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  text-align: center;
  margin-bottom: 0px;
}

.nutshell .nut-card p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  text-align: center;

  color: #757575;
}

.nutshell .el-1 {
  background: #f4025b;
  opacity: 0.6;
  filter: blur(297px);
  width: 480px;
  height: 480px;
  position: absolute;
  left: -80px;
  top: 75px;
}

.nutshell .el-3 {
  background: #f4025b;
  opacity: 0.6;
  filter: blur(297px);
  width: 480px;
  height: 480px;
  position: absolute;
  right: -80px;
  bottom: 100px;
}

/* .nutshell .nut-card {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.nutshell .nut-card .icon {

  
}

.nutshell .nut-card .pic img {
  transition: ease-in-out 0.3s;
}

.nutshell .nut-card:hover {
  transform: translateY(-10px);
}

.nutshell .nut-card .nut-card-info {
  padding-left: 30px;
}

.nutshell .nut-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.nutshell .nut-card span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.nutshell .nut-card span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.nutshell .nut-card p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.nutshell .nut-card .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nutshell .nut-card .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.nutshell .nut-card .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.nutshell .nut-card .social a:hover {
  background: #47b2e4;
}

.nutshell .nut-card .social a:hover i {
  color: #fff;
}

.nutshell .nut-card .social a+a {
  margin-left: 8px;
} */

@media (max-width: 768px) {
  .nutshell {
    padding: 50px 0px;
    background-image: url(/assets/img/nutshell-bg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
  }

  .nutshell .container {
    padding: 0px 20px;
  }

  .nutshell .section-title h2 {
    font-size: 44px;
    line-height: 52px;
  }

  .nutshell .section-title h2 > svg {
    width: 30px;
    height: 24px;
    top: -16px;
  }

  .nutshell .section-title h2 .ellipse:before {
    border: 2px solid #8948f1;
  }

  .nutshell .section-title h2 .ellipse:after {
    border: 2px solid #8948f1;
  }

  .nutshell .circle {
    width: 60px;
    height: 60px;
    margin-bottom: -34px;
  }

  .nutshell .circle svg {
    width: 40px;
    height: 40px;
  }

  .nutshell .nut-block {
    margin-top: 0px;
  }

  .nutshell .nut-card {
    padding: 50px 40px 24px 40px;
  }

  .nutshell .nut-card h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .nutshell .nut-card p {
    font-size: 18px;
    line-height: 22px;
  }

  .nutshell .el-1 {
    display: none;
  }

  .nutshell .el-2 {
    display: none;
  }

  .nutshell .el-3 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about {
  background-color: #21144d;
  padding-top: 120px;
  position: relative;
}

.about .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.about .section-title.our-story h2:after {
  content: "";
  position: absolute;
  left: calc(50% - 140px);
  /* 50% is half of the parent width, and 140px is half of 280px */
  bottom: 8px;
  width: 280px;
  /* specify the width directly */
  border-bottom: 3px solid #fff;
}

.about .section-title h2,
.about .section-title h4 {
  padding: 0px 0px;
  color: #fff;
  margin: 0;
}

.about .section-title h4 {
  padding: 8px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.8;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  width: 842px;
  margin: auto;
}

.about .about-card {
  border-radius: 40px;
  text-align: center;
  padding: 40px 100px 60px;
  height: 100%;
}

.about .about-card svg {
  height: 230px;
  width: 100%;
}

.about .about-card h2 {
  padding-top: 20px;
  padding-bottom: 10px;
  margin: 0;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 60px;
  text-align: center;
  color: #180830;
}

.about .about-card h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  color: #000000;
}

.about .about-card.mission {
  background: #f4025b;
}

.about .about-card.vision {
  background: #eedce8;
}

.about .what-we-do {
  margin-top: 120px;
  padding-bottom: 40px;
}

.about .el-1 {
  width: 482px;
  height: 482px;
  background: #ff56a5;
  opacity: 0.4;
  filter: blur(297px);
  position: absolute;
  right: -100px;
  top: 15%;
}

.about .el-2 {
  width: 592px;
  height: 592px;
  background: #ff56a5;
  opacity: 0.4;
  filter: blur(297px);
  position: absolute;
  top: 30%;
  left: -200px;
}

.about .el-3 {
  width: 400px;
  height: 400px;
  background: #cbf44f;
  opacity: 0.6;
  filter: blur(297px);
  position: absolute;
  bottom: 0;
  left: 10%;
}

.about .el-4 {
  width: 400px;
  height: 400px;
  background: #185bfe;
  opacity: 0.2;
  filter: blur(297px);
  position: absolute;
  bottom: 50%;
  left: 50%;
}

.about .el-5 {
  width: 400px;
  height: 400px;
  background: #185bfe;
  opacity: 0.6;
  filter: blur(297px);
  position: absolute;
  bottom: 100px;
  right: 0;
}

.crown {
  position: relative;
}

.crown > svg {
  position: absolute;
  top: -30px;
  left: -14px;
  height: auto;
  width: 70px;
}

.about .whatwedo-row .col {
  padding: 10px;
  /* padding: 0; */
}

.about .whatwedo-card {
  border-radius: 20px;
  padding: 44px 30px 40px 30px;
  height: 100%;
}

.about .whatwedo-card h2 {
  font-family: "Bebas Neue";
  padding-top: 30px;
  width: 280px;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 103.5%;
  color: #fff;
  text-align: center;
}

.about .whatwedo-card p {
  padding-top: 5px;
  font-style: normal;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}

.about .whatwedo-card.card-1 {
  /* background: rgba(255, 86, 165, 0.1); */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

.about .whatwedo-card.card-2 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

.about .whatwedo-card.card-3 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

.about .whatwedo-card.card-4 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

.about .whatwedo-card.card-5 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

.about .whatwedo-card.card-6 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(27.5px);
}

@media (max-width: 768px) {
  .about {
    padding: 50px 0px;
  }

  .about .container {
    padding: 0px 20px;
  }

  .about .about-card {
    padding: 36px 46px 50px 46px;
    border-radius: 20px;
  }

  .about .about-card svg {
    width: 146px;
    height: 136px;
    margin: auto;
  }

  .about .about-card h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .about .about-card h4 {
    font-size: 18px;
    line-height: 22px;
  }

  .crown > svg {
    top: -8px;
    left: -3px;
    height: 16px;
    width: 23px;
  }

  .about .section-title {
    padding-bottom: 30px;
  }

  .about .section-title h2 {
    font-size: 44px;
    line-height: 42px;
    z-index: 1;
    padding-bottom: 8px;
  }

  .about .section-title h4 {
    font-size: 14px;
    line-height: 15px;
    width: 100%;
  }

  .about .what-we-do {
    margin-top: 25px;
    padding-bottom: 15px;
  }

  .about .el-1 {
    display: none;
  }

  .about .el-2 {
    display: none;
  }

  .about .el-3 {
    display: none;
  }

  .about .el-4 {
    display: none;
  }

  .about .el-5 {
    display: none;
  }

  .about .section-title.our-story h2:after {
    left: 50%;
    bottom: 0px;
    width: 180px;
    border-bottom: 1px solid #fff;
    transform: translate(-50%);
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.workclient {
  /* background: linear-gradient(180deg, #371e45 45.45%, #21144d 95.18%); */
  background: linear-gradient(180deg, #2b2a77 -2.95%, #363676 100%);
  position: relative;
}

.workclient .section-title h2 {
  color: #fff;
}

.workclient .work-card {
  height: 100%;
  border-radius: 30px;
  border: 5px solid #fff;
  overflow: hidden;
  cursor: pointer;
}

.workclient .col-lg-12 {
  margin-bottom: 30px;
}

.workclient .work-card .left {
  height: 100%;
  border-right: 5px solid #fff;
}

.workclient .work-card .right {
  height: 100%;
}

.workclient .image-wrapper {
  width: 65%;
}

.workclient .text-wrapper {
  width: 36%;
  padding: 50px;
  background: rgba(43, 29, 90, 0.1);
}

.workclient .work-card img {
  width: 100%;
  object-fit: cover;
}

.workclient .work-card h3 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 5px;
}

.workclient .work-card p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}

#load-more-work {
  width: 200px;
  padding: 18px 80px 16px 80px;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  color: #ff4c38;
  cursor: pointer;
  border: 2px solid #ff4c38;
  border-radius: 30px;
}

#view-details-btn {
  padding: 12px 40px 12px 40px;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #ff56a5;
  cursor: pointer;
  border: 2px solid #ff56a5;
  border-radius: 15px;
}

.workclient .our-clients {
  margin-top: 130px;
}

.our-work-cards {
  display: none;
}
/* .work-logos {
  
} */

.work-logos > div {
  height: 180px;
  width: 180px;
  margin: 20px;
}

.work-logos img {
  height: 100%;
  width: 100%;
}

#view-all-client {
  width: 287px;
  padding: 18px 80px 16px 80px;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  cursor: pointer;
  color: #0084ff;
  border: 2px solid #0084ff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  margin: auto;
}

#view-all-client span {
  margin-right: 8px;
}

#view-all-agencies {
  width: 287px;
  padding: 18px 80px 16px 80px;
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  cursor: pointer;
  color: #0084ff;
  border: 2px solid #0084ff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  margin: auto;
}

#view-all-agencies span {
  margin-right: 8px;
}

.our-client-more {
  display: none;
}

.our-agencies-more {
  display: none;
}

@media (max-width: 1200px) {
  .work-logos > div {
    height: 146px;
    width: 146px;
    margin: 10px;
  }
}
@media (max-width: 991px) {
  .work-logos > div {
    height: 118px;
    width: 118px;
    margin: 8px;
  }
}

@media (max-width: 768px) {
  .workclient {
    padding: 50px 0px;
  }

  .work-logos > div {
    height: 110px;
    width: 110px;
    margin: 8px;
  }

  .workclient .section-title h2 {
    font-size: 44px;
    line-height: 53px;
  }

  .workclient .our-clients {
    margin-top: 50px;
  }

  .workclient .image-wrapper {
    width: 100%;
  }

  .workclient .text-wrapper {
    width: 100%;
    padding: 20px 16px;
  }

  .workclient .text-wrapper h3 {
    font-size: 24px;
    line-height: 25px;
  }

  .workclient .text-wrapper p {
    font-size: 16px;
    line-height: 20px;
  }

  .workclient .work-card .left {
    border: none;
    border-bottom: 2px solid #cbf44f;
  }

  .workclient .work-card {
    border-radius: 20px;
    border: 2px solid #cbf44f;
  }

  #load-more-work {
    font-size: 24px;
    line-height: 25px;
    border-radius: 10px;
    padding: 12px 62px;
  }

  #view-all-client {
    font-size: 24px;
    line-height: 25px;
    border-radius: 10px;
    padding: 12px 52px;
    justify-content: center;
    width: 207px;
  }

  #view-all-agencies {
    font-size: 24px;
    line-height: 25px;
    border-radius: 10px;
    padding: 12px 52px;
    justify-content: center;
    width: 207px;
  }
}
@media (max-width: 420px) {
  .work-logos > div {
    height: 95px;
    width: 95px;
    margin: 8px;
  }
}

/*--------------------------------------------------------------
# Our Strength
--------------------------------------------------------------*/
.strength {
  position: relative;
  background: #333276;
}

.strength .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  margin: auto;
}

.strength .section-title h2:after {
  content: "";
  position: absolute;
  left: calc(50% - 140px);
  /* 50% is half of the parent width, and 140px is half of 280px */
  bottom: 0px;
  width: 280px;
  /* specify the width directly */
  border-bottom: 3px solid #fff;
}

.strength .section-title h2,
.strength .section-title h4 {
  padding: 15px 0;
  color: #fff;
}

.strength .section-title h4 {
  padding: 8px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.8;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  width: 640px;
  margin: auto;
}

.strength .left-hand {
  position: absolute;
  left: 0px;
  top: 80px;
}

.strength .right-hand {
  position: absolute;
  right: 0px;
  top: 80px;
}

.strength .left-hand > img,
.strength .right-hand > img {
  width: 300px;
}

.strength .numbers {
  color: #ffffff;
  text-align: center;
}

.strength .numbers > div {
  margin-top: 80px;
}

.strength .numbers h2 {
  font-family: "Bebas Neue";
  font-style: normal;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 100px;
  line-height: 110px;
}

.strength .numbers h4 {
  font-weight: 500;
  font-size: 32px;
  width: 420px;
  line-height: 38px;
  margin: auto;

  color: #ffffff;
}

@media (max-width: 768px) {
  .strength {
    padding-top: 77px;
    padding-bottom: 50px;
  }

  .strength .section-title h2 {
    font-size: 44px;
    line-height: 42px;
  }

  .strength .left-hand,
  .strength .right-hand {
    width: 80px;
    height: auto;
  }

  .strength .right-hand {
    top: 38px;
  }

  .strength .left-hand {
    top: 38px;
  }

  .strength .section-title {
    padding-bottom: 0px;
  }

  .strength .section-title h2:after {
    left: 50%;
    width: 88px;
    transform: translate(-50%);
  }

  .strength .section-title h4 {
    font-size: 14px;
    line-height: 17px;
    width: 100%;
  }

  .strength .number-block h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .strength .number-block h4 {
    font-size: 14px;
    line-height: 14px;
    width: 100%;
  }

  .strength .number-block h2 > img {
    width: 28px;
    height: 28px;
  }

  .strength .crown > svg {
    top: -14px;
    left: -7px;
    height: 20px;
    width: 30px;
  }

  .strength .numbers > div {
    margin-top: 30px;
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Meet Our TEAM
--------------------------------------------------------------*/
.meet-our-team {
  background-color: #333276;
}

/*--------------------------------------------------------------
# Career Page
--------------------------------------------------------------*/
.banner {
  position: relative;
  padding: 150px 0px 241px 0px;
  overflow: hidden;
  background-color: #333276;
}

@media (max-width: 1199px) {
  .banner {
    padding: 120px 0px 141px 0px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding: 43px 0px 43px 0px;
  }
}
.banner::after {
  content: "";
  position: absolute;
  border-radius: 517px;
  opacity: 0.5;
  background: rgb(253, 197, 0);
  filter: blur(250px);
  width: 517px;
  height: 517px;
  right: 0;
  top: -117px;
  z-index: -1;
}
@media (max-width: 767px) {
  .banner::after {
    width: 283px;
    height: 283px;
    border-radius: 283px;
    top: 0;
  }
}
.banner h2 {
  font-family: "Bebas Neue";
  font-size: 110px;
  font-weight: 400;
  line-height: normal;
  color: #000;
  text-align: left;
  margin-bottom: 20px;
}
.banner h2 span {
  color: #2f26ac;
}
@media (max-width: 991px) {
  .banner h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .banner h2 {
    font-size: 34px;
    line-height: 38.93px;
    margin-bottom: 14px;
    text-align: center;
  }
}
.banner p {
  color: #414141;
  line-height: normal;
  max-width: 553px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .banner p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner p {
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .banner p {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
  }
}
.banner .btn {
  padding: 12px 22px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .banner .btn {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 12 42px;
  }
}
.banner .banner-block {
  position: relative;
  align-items: center;
}
.banner .banner-content {
  width: 51.4%;
}
@media (max-width: 767px) {
  .banner .banner-content {
    width: 100%;
    margin-bottom: 44px;
  }
}
@media (max-width: 767px) {
  .banner .banner-content .btn-wrapper {
    display: flex;
    justify-content: center;
  }
}
.banner .img-wrapper {
  width: 48%;
  position: absolute;
  right: -120px;
  top: -46px;
}
@media (max-width: 1400px) {
  .banner .img-wrapper {
    right: -18px;
  }
}
@media (max-width: 1199px) {
  .banner .img-wrapper {
    width: 40%;
  }
}
@media (max-width: 991px) {
  .banner .img-wrapper {
    position: unset;
  }
}
@media (max-width: 767px) {
  .banner .img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* ---------------------------------------------------------
# Tabs Career Page 
-----------------------------------------------------------*/
.tabs {
  background-color: #333276;
}
.tabs h2 {
  color: #fff;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 575px) {
  .tabs h2 {
    font-size: 34px;
  }
}
.tabs .tabs-block {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.tabs .tabs-block ul {
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 991px) {
  .tabs .tabs-block ul li {
    width: 28%;
    max-width: 900px;
    /* margin: 0 auto;
      */
    margin-bottom: 34px;
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li {
    width: auto;
    /* margin-bottom: 16px;
      */
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li:nth-child(4) {
    margin-left: 49px;
  }
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li:nth-child(5) {
    margin-right: 30px;
  }
}
.tabs .tabs-block ul li a {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  background: #474784;
  border-radius: 25px;
  padding: 16px 44px;
}
@media (max-width: 575px) {
  .tabs .tabs-block ul li a {
    font-size: 12px;
    padding: 11px 23px;
  }
}
.tabs .tabs-block ul li a.active {
  background: #fff;
  color: #000;
}
.tabs {
  position: relative;
}
/* .tabs::after {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.5;
  background: #474784;
  filter: blur(250px);
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .tabs::after {
    width: 298px;
    height: 298px;
    border-radius: 298px;
  }
}
.tabs::before {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  background: rgb(251, 35, 35);
  filter: blur(250px);
  top: 0;
  opacity: 0.2;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .tabs::before {
    content: unset;
  }
} */
.tabs-main-block {
  position: relative;
  overflow: hidden;
}
.tabs-main-block::after {
  content: "";
  position: absolute;
  background-image: url("/assets/img/mbl.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: -10px;
  left: 0px;
  width: 110.259px;
  height: 192.36px;
}
@media (max-width: 1500px) {
  .tabs-main-block::after {
    height: 166.36px;
  }
}
@media (max-width: 1199px) {
  .tabs-main-block::after {
    content: unset;
  }
}
.tabs-main-block::before {
  content: "";
  position: absolute;
  background-image: url(/assets/img/cameranew.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 0px;
  width: 150px;
  height: 140px;
}
@media (max-width: 1500px) {
  .tabs-main-block::before {
    width: 125px;
  }
}
@media (max-width: 1199px) {
  .tabs-main-block::before {
    content: unset;
  }
}
.tabber-block {
  position: relative;
}
/* .tabber-block::before {
  content: "";
  position: absolute;
  width: 488px;
  height: 488px;
  border-radius: 488px;
  opacity: 0.2;
  background: rgb(253, 197, 0);
  filter: blur(250px);
  bottom: 0px;
  left: -135px;
  z-index: 1;
}*/
.tabs-main-block .container::after {
  content: "";
  position: absolute;
  width: 233px;
  height: 234px;
  background-image: url("/assets/img/computer.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: 240px;
  right: -150px;
}
@media (max-width: 1500px) {
  .tabber-block::after {
    right: -240px;
  }
}
@media (max-width: 1199px) {
  .tabber-block::after {
    content: unset;
  }
  .tabber-block::before {
    content: unset;
  }
}
.tabs__inner-block {
  margin-top: 64px;
  margin-bottom: 120px;
}
.tabs__inner-block .img-wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}
.tabs__inner-block .img-wrapper h3 {
  color: #2f26ac;
  text-align: center;
  font-family: "Inter";
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 991px) {
  .tabs__inner-block {
    margin-top: 0px;
    margin-bottom: 72px;
  }
}
@media (max-width: 767px) {
  .tabs__inner-block .img-wrapper h3 {
    font-size: 18px;
  }
}
.tabber-bottom,
.tabs__content {
  background-color: #474784;
  border-radius: 30px;
  box-shadow: 0px 0px 64px 0px rgba(0, 0, 0, 0.08);
  padding: 40px 40px 40px 40px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .tabber-bottom,
  .tabs__content {
    padding: 20px 20px;
  }
}
.tabber {
  align-items: center;
  /* padding-bottom: 31px;
  */
}
@media (max-width: 767px) {
  .tabber {
    /* justify-content: center; */
  }
}
.tabber .heading {
  width: 50%;
}
@media (max-width: 1199px) {
  .tabber .heading {
    width: 55%;
  }
}
@media (max-width: 575px) {
  .tabber .heading {
    width: 100%;
  }
}
.tabber .heading h3 {
  font-family: "Inter";
  font-size: 35px;
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 14px;
  color: #fff;
}
@media (max-width: 1199px) {
  .tabber .heading h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .tabber .heading h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .tabber .heading h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.tabber .heading ul {
  padding-left: 0;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .tabber .heading ul {
    margin-bottom: 0px;
    justify-content: flex-start;
    width: 100%;
    max-width: initial;
    margin: unset;
    gap: 5px;
  }
}
.tabber .heading ul li {
  font-family: "Inter";
  font-size: 25px;
  font-weight: 500;
  line-height: 1.16;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .tabber .heading ul li {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .tabber .heading ul li {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .tabber .heading ul li {
    font-size: 12px;
    padding: 0px 5px;
  }
}
.tabber .heading ul li:first-child {
  padding-left: 0px;
}
@media (max-width: 575px) {
  .tabber .heading ul li:first-child {
    padding: 0;
    /* width: 30%; */
  }
}
.tabber .heading ul li:nth-child(even) {
  border-left: 2px solid #fff;
  /* border-right: 1px solid #000; */
  padding: 0px 10px;
}
@media (max-width: 575px) {
  .tabber .heading ul li:nth-child(even) {
    /* width: 37%; */
    padding: 0px 5px;
  }
}
.tabber .apply-block {
  align-items: center;
}
@media (max-width: 575px) {
  .tabber .apply-block {
    margin-top: 24px;
  }
}
.tabber .apply-block .btn {
  padding: 16px 44px 16px 44px;
  border-radius: 25px;
  background-color: #eedce8;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .tabber .apply-block .btn {
    font-size: 14px;
    padding: 8px 36px;
  }
}
.tabber .apply-block .Minimize {
  margin-left: 21px;
  font-family: "Inter";
  font-size: 25px;
  font-weight: 500;
  line-height: 29px;
  color: #eedce8;
  border-radius: 25px;
  padding: 12px 20px 12px 20px;
}
.tabber .apply-block .Minimize:hover {
  /* background-color: #2f26ac;
  */
  color: #eedce8;
}
@media (max-width: 575px) {
  .tabber .apply-block .Minimize:hover {
    padding: 8px 36px;
  }
}
@media (max-width: 575px) {
  .tabber .apply-block .Minimize {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
}
.tabber-inner-content {
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid rgb(216, 216, 216);
}
.tabber-inner-content h3 {
  font-family: "Inter";
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: #eedce8;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .tabber-inner-content h3 {
    font-size: 16px;
  }
}
.tabber-inner-content ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
.tabber-inner-content ul li {
  list-style-type: disc;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #eedce8;
}
@media (max-width: 575px) {
  .tabber-inner-content ul li {
    font-size: 16px;
  }
}
.tabber-inner-content p {
  margin-bottom: 10px;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #eedce8;
}
@media (max-width: 575px) {
  .tabber-inner-content p {
    font-size: 16px;
  }
}
.tabber-bottom {
  border-bottom: 0px;
}

/*-------------------------------------------------------------
# IPS PAGE
------------------------------------------------------------- */
.banner h3 {
  text-align: center;
  color: #fff;
}
.digital-holdings .container > h2 {
  font-family: "Bebas Neue";
  font-size: 80px;
  color: #fff;
}
.holding-card {
  background: #474784;
  max-width: 387px;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  padding: 52px 40px 40px 40px;
}
.holding-card > img {
  width: 142px;
  height: 142px;
  /* margin-bottom: 20px; */
  border-radius: 10px;
  object-fit: contain;
}
.holding-card h2 {
  color: #fff;
  text-align: center;
  font-family: "Bebas Neue";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.holding-card .social-media {
  margin-top: 20px;
}
.holding-card .social-media a img {
  cursor: pointer;
}
.web-icon {
  display: flex;
  width: 67px;
  height: 67px;
  align-items: center;
  justify-content: center;
}
.our-network {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
@media (max-width: 768px) {
  .our-network {
    flex-direction: column;
  }
  .ip-banner {
    padding-top: 20px !important;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  position: relative;
  background: #333276;
  padding-bottom: 0 !important;
}

.contact .section-title h2,
.contact h3 {
  color: #fff;
}

.contact h3 {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-size: 68px;
  line-height: 85px;
}

.contact img {
  margin-top: 25px;
  height: auto;
  width: 476px;
}

.contact .email-form .form-group {
  margin-bottom: 30px;
}

.contact .email-form label {
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 10px;
  line-height: 30px;
  display: flex;
  align-items: center;

  color: #ffffff;
}

/* .contact .email-form{
  width: 80%;
} */
.left-title {
  width: 80%;
}

.contact .email-form input {
  background: #ffffff10;
  border-radius: 10px;
  height: 74px;
  border: none;
  padding: 0 20px;
  color: #fff;
}

.contact .email-form input::placeholder {
  color: #fff;
  opacity: 0.5;
}

.contact .email-form button {
  background: #ffffff;
  border-radius: 30px;
  padding: 16px;
  width: 320px;
  float: left;
  box-shadow: none;
  border: none;
  z-index: 99;
  font-weight: 700;
}

.contact .container {
  position: relative;
  z-index: 99;
}

.contact .el-1 {
  position: absolute;
  bottom: 0px;
  left: -80px;
  background: #cbf44f;
  opacity: 0.4;
  filter: blur(297px);
  width: 600px;
  height: 600px;
}

.contact .el-2 {
  position: absolute;
  bottom: 0px;
  right: -80px;
  background: #0084ff;
  opacity: 0.4;
  width: 600px;
  height: 600px;
  filter: blur(297px);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .contact {
    padding-top: 50px;
  }

  .contact .section-title {
    padding-left: 25px;
    padding-right: 25px;
  }

  .contact .section-title h2 {
    font-size: 44px;
    line-height: 42px;
  }

  .contact-image {
    margin-top: 0px !important;
  }

  .contact-image-block {
    flex-direction: row !important;
    align-items: center !important;
    padding: 0px 30px;
  }

  .contact-image-block h3 {
    font-size: 24px;
    line-height: 28px;
  }

  .contact-image-block img {
    width: 110px;
    margin-top: 0;
  }

  .contact .email-form label {
    font-size: 14px;
    line-height: 16px;
  }

  .contact .email-form input {
    height: 40px;
    font-size: 14px;
    line-height: 16px;
    padding: 0 10px;
  }

  .contact .email-form button {
    width: 100%;
    float: unset;
    height: 50px;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }

  .contact .container {
    max-width: 375px;
    text-align: left;
    padding: 0px 20px;
  }

  .contact-center {
    margin-top: 38px;
  }

  .contact .el-1 {
    display: none;
  }

  .contact .el-2 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  margin-top: 80px;
  /* background-image: url('data:image/svg+xml;utf8,<svg width="1440" height="435" viewBox="0 0 1440 435" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 124.192C465.719 -41.3972 974.281 -41.3972 1440 124.192V435H0L0 124.192Z" fill="%23180C41"/></svg>'); */
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 999;
  padding-top: 70px;

  /* margin-left: -14%;
  margin-right: -8%; */
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  /* background-color: #180C41; */
}

#footer::after {
  background-color: #343174;
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform: scale(1.3);
}

.footer .bottom-logo {
  width: 135px;
  height: auto;
}

.footer .contact-center h4 {
  font-size: 20px;
  font-weight: 700;
}

.footer .contact-center p {
  font-size: 16px;
}

.footer .find-us h4 {
  font-weight: 400;
  font-size: 28;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}

/* 
#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: radial-gradient(circle at center top, transparent 70px, #180C41 71px); 
} */

/* .top-div {
  content: '';
  left: 0;
  width: 100%;
  height: 100px;
  border-radius: 50% 50% 0 0 / 100px 100px 0 0;
  background-color: #180C41;
} */

.footer .social-links a {
  padding: 10px;
  height: 100%;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #47b2e4;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.0033em;
  opacity: 0.6;
  color: #ffffff;
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
  opacity: 0.6;
  font-weight: 500;
  font-size: 16px;
  text-align: right;
  letter-spacing: 0.0033em;
}

#footer .credits a {
  padding: 0 20px;
  color: #ffffff;
}

.contact-center {
  padding-left: 30px;
}

@media (max-width: 768px) {
  #footer {
    margin-left: -45%;
    margin-right: -45%;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    background-color: #180c41;
    padding-top: 30px;
  }

  .footer .social-links a {
    padding: 4px;
  }

  .contact-center {
    padding-left: 10px;
  }

  #footer .container {
    padding: 0px 20px;
  }

  .footer .bottom-logo {
    width: 125px;
  }

  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
    font-size: 12px;
  }

  .find-us h4 {
    font-size: 16px;
  }

  #footer .credits {
    padding-top: 4px;
  }

  .contact-center h4 {
    font-size: 16px !important;
  }

  .contact-center p {
    font-size: 14px !important;
  }

  .social-links svg {
    /* width: 24px;
    height: 24px; */
  }

  #footer .credits a {
    padding: 0 10px;
  }
}

/*--------------------------------------------------------------
# Detail Page
--------------------------------------------------------------*/
.banner-image {
  height: 465px;
}
.campaign-detail {
  /* background: linear-gradient(179deg, #1b0e45 0%, #07001f 100%); */
  background: #333276;
}

.campaign-detail .section-title {
  padding: 0px 40px;
}

.campaign-detail .numbers {
  /* grid-template-columns: repeat(3, 1fr); */
}

.campaign-detail .numbers .num-1 {
  background: #474784;
}

.campaign-detail .numbers .num-2 {
  background: #474784;
}

.campaign-detail .numbers .num-3 {
  background: #474784;
}

.campaign-detail .numbers .num-1 h2 {
  color: #e9045c;
}

.campaign-detail .numbers .num-2 h2 {
  color: #e9045c;
}

.campaign-detail .numbers .num-3 h2 {
  color: #e9045c;
}

.campaign-detail .detail-card-container {
  margin-top: 86px;
}

.campaign-detail .detail-card {
  padding: 34px 36px 34px 31px;
  border-radius: 20px;
  background: rgba(230, 188, 45, 0.1);
  backdrop-filter: blur(27.5px);
  margin-bottom: 30px;
}

.campaign-detail .detail-card h4 {
  color: #ff4c38;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.campaign-detail .detail-card ul {
  padding-left: 0;
}
.campaign-detail .detail-card ul li::before {
  content: "\2022";
  margin-right: 16px;
}

.campaign-detail .detail-card p,
.campaign-detail .detail-card li {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.campaign-detail .detail-card li {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .banner-image {
    height: 121px;
  }

  .campaign-detail .section-title h2 {
    font-size: 44px;
    line-height: normal;
  }

  .campaign-detail .detail-card {
    padding: 24px 36px 24px 24px;
    border-radius: 10px;
  }

  .campaign-detail .detail-card h4 {
    font-size: 18px;
  }

  .campaign-detail .detail-card p {
    font-size: 14px;
  }
}
