  @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
  :root{
    --shark-color: #20252b;
    --dark-shark-color: #1c2127;
    --grey-color: #9e9e9e4d;
    --theme-color: rgba(32, 80, 123, 1);
    --white-color: #fff;
}
  
body, .body {
      background-color: #212121;
        box-sizing: border-box;
        margin: 0;
      padding: 0;
      overflow-x: hidden;
      color: white;
      font-family:  "Poppins", sans-serif;
    }
  /* p, a{
    font-family:  "Poppins", sans-serif;
   }*/
      .paddinglf{
        padding-left: 15px;
        padding-right: 15px;
      }
      .mt-6{
        margin-top:6rem !important;
      }
      .mt-70{
        margin-top:100px;
      }
      .title{
        font-size: 100px;
        font-weight: 900;
        line-height: 1;
      }
      .sub-title{
        font-size: 3.5rem;
      }
      h2 .title2{
        color: white;
        font-family: "Poppins", sans-serif;
      }
      .gradient-section {
          position: relative;
          width: 108vw;
          height: 108vw;
          display: flex;
          align-items: center;
          justify-content: center;
          transform: translateY(-56%);
          overflow: hidden;
          right:5vw;
        }
      .gradient-container {
        position: absolute;
        width: 105vw;
        height: 105vw;
        background-image: linear-gradient(
          rgba(0, 0, 0, 0.2),
          rgba(0, 0, 0, 0.2)
        ), url('images/gradient_ball.png'); /* Replace with the path to your image */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
        transition: transform 2.2s ease; /* Add a smooth transition effect */
        overflow-x: hidden;
/*        box-shadow: 10px 10px 10px grey;*/
      }
      .gradient-section:hover .gradient-container {
        transform: rotate(180deg); /* Rotate the background container on hover */
      }

/* Other styles for content inside the gradient-section */
      .gradient-content {
        margin-top: 200px;
        width: 100vw;
        color: white; /* Set text color to white for better visibility */
        z-index: 0;
      }

    .text-center{
      text-align: center;
    }

    /* Custom styles for the navigation */
    .navbar {
      background-color: transparent;
    }

    .navbar-dark .navbar-nav .nav-link {
      color: white;
    }

    .navbar-dark .navbar-toggler-icon {
      background-color: white;
    }
     .parallax-section {
      position: relative;
      display: flex;
      justify-content: space-around;
      height: 100vh;
      padding: 50px 0;
      top: -470px;
    }

    .parallax-left, .parallax-right {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      height: 100px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: -1;
    }

    .parallax-left {
      left: 0;
      bottom:50px;
      background-image: url('images/gradient_ball.png'); /* Replace with the path to your left image */
    }

    .parallax-right {
      right: 0;
      top: 50px;
      background-image: url('images/gradient_ball.png'); /* Replace with the path to your right image */
    }

    .container {
      position: relative;
/*      z-index: 1;*/
    }

    .icon-section {
      display: flex;
      justify-content: space-around;
      z-index: 2; /* Ensure content is above parallax background */
    }

    .icon {
      font-size: 3em;
      margin-bottom: 20px;
    }
    
    .contain-background{
      background-image:linear-gradient(
          rgba(0, 0, 0, 0.5), 
          rgba(0, 0, 0, 0.5)
        ), url('images/background_image.png'); /* Replace with the path to your image */
      background-size: cover;
      width: 100%;
      background-repeat: no-repeat;
      background-position: center;
      margin-bottom: 5px;
    }
    
    .pl-7{
      padding-left: 7rem;
    }
    .banner-btn{
      border-radius: 20px;
      padding: 8px 45px;
      font-family: "Poppins", sans-serif;
      color: rgba(32, 80, 123, 1);
      font-size: 20px;
    }
    .talk-btn{
      font-size: 26px;
    }
    /*.bg-elements{
      background-image: url('images/gradient_ball.png');
      background-repeat: no-repeat;  
      background-size: auto 70%; 
      background-position: bottom left; 
      display: flex;
      justify-content: flex-end;

      }*/
 .overlay {
    position: absolute;
  }

.overlay_0 {
  left: -100px;
  top: 0;
  padding: .5rem;
  margin: 4px;
  opacity: 0.3;
}

.overlay_1 {
  right: 0px;
  bottom: 0;
  padding: .5rem;
  margin: 4px;
  opacity: 0.3;
}

.elements .overlay_0 img {
  display: block;
  object-fit: cover;
  background-position: top left;
  width: 30%;
  height: auto;
}

.elements .overlay_1 img {
  display: block;
  object-fit: cover;
  background-position: bottom right;
  width: 30%;
  height: auto;
}


@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* display 3 */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-right.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(33.333%);
    }
    
    .carousel-inner .carousel-item-left.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-33.333%);
    }
}

.carousel-inner .carousel-item-right,
.carousel-inner .carousel-item-left{ 
  transform: translateX(0);
}
.carousel-control-next-icon, .carousel-control-prev-icon{
  width: 20px !important;
  height: 20px !important;
  position: relative;
}
.carousel-control-next-icon {
  left:60px;
}
.carousel-control-prev-icon{
  right: 60px;
}
.w-85{
  width: 85%;
}
div.services-carousel .card{
  background-color: #000 !important;
    border: 0;
    border-radius: 20px;
    text-align: left;
    min-height: 369px;
}
div.services-carousel .card:hover{
    cursor: pointer;
    transition-duration: 0.5s;
    transform: scale(1.1);
  }
div.services-carousel .card h2.title2{
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
}
div.services-carousel .card p{
  font-size: small;
}
.contact-card, .case-card {
    border: none;
    border-radius: 30px;
    background-color: #191919;
    padding: 20px;
    font-family: "Poppins", sans-serif;
  }
  .case-card{
    min-height: 284px;
  }
  .services-card {
    border: none;
    border-radius: 30px;
    background-color: #191919;
    padding: 0;
    font-family: "Poppins", sans-serif;
  }
  .services-card .list-group-item {
    background-color: #191919;
    border: 0;
    border-left: 1px solid #343a40;
    padding: 0.5rem 1.25rem;
    margin-bottom: 10px;
    color:#7f82859e;
  }
  .services-card .list-group-item:hover {
    background-color: #191919;
    border: 0;
    border-left: 1px solid #fff;
    padding: 0.5rem 1.25rem;
    margin-bottom: 10px;
  }
  .services-card .list-group-item a {
    color:#7f82859e;
  }
  .services-card .list-group-item a:hover {
    color:#fff;
    text-decoration: none;
  }
  .br-10{
    border-radius: 10px;
  }
  .careers-card {
    border: none;
    margin-top: 10px;
    border-radius: 30px;
    background-color: #191922;
    padding: 0px;
  }
  div.contact-card .form-control {
      background-color: #212121; /* Set dark grey background color for input fields */
      color: #ffffff; /* Set text color to white */
      border:none;
      box-shadow:6px 6px 6px 0px rgba(1,1,1,0.4);
  }
  div.contact-card .form-control::placeholder {
      color: #ced4da; /* Set placeholder text color */
  }
  div.contact-card .btn-light {
      background-color: #2b65cb; /* Set button background color to a blue shade */
      color: #ffffff; /* Set button text color to white */
  }
  div.contact-card .btn-light:hover {
      background-color: #0056b3; /* Change button background color on hover */
  }
div.footer{
  padding-top: 50px;
  padding-bottom: 50px;
}        
div.footer ul li{
  padding-top: 5px;
  padding-bottom: 5px;
  
}
div.footer ul li a{
  color: white;
}
div.footer .socials a, .nav-icons a{
  color: white;
}
.border-left-radius{
  border-radius: 6px 6px 0px 0px;
}
div.footer p{
  font-size: 14px;
}
hr{
  border-color:#47484e;
}

.black-card{
  background-color: black;
  border-image-slice: 1 !important;
    z-index: 11;
    transition-duration: 0.5s;
    transform: scale(1.1);
    border: 2px solid transparent;
    border-radius: 15px !important;
    border-image: linear-gradient(45deg, #07DBC1, #2F79E1 , #9917E9);
}
.style-none{
  list-style-type: none;
}
.pricing-card1 {
    padding: 0px 5px 0px 0px;
}
.pricing-card1 li{
  font-family: "Figtree", Sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding-bottom: calc(10px/2);
}
.pricing-card1 button{
  font-family: "Figtree", Sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 100px 9px 100px;
}
.pricing-card1 i{
  color: #07DBC1;
}
.pricing-card2 li{
  font-family: "Figtree", Sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding-bottom: calc(10px/2);
}
.pricing-card2 button{
  font-family: "Figtree", Sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 9px 100px 9px 100px;
}
.pricing-card2 i{
  color: #07DBC1;
}
.pricing-background{
   background-image: url('images/gradient-left.png'), url('images/gradient-right.png'); /* Replace with your image URLs */
            background-repeat: no-repeat, no-repeat;
            background-position: right top, left bottom; /* Adjust the margin-top (50px in this example) */
            background-size: 275px, 275px;
            min-height: 100vh;
}
.careers-background{
   background-image: url('images/gradient-left.png'), url('images/gradient-right.png'); /* Replace with your image URLs */
            background-repeat: no-repeat, no-repeat;
            background-position: right top, left bottom; /* Adjust the margin-top (50px in this example) */
            background-size: 275px, 275px;
            height: auto;
}
.p-100{
  padding: 100px;
}

div.page-header-section h1.title{
  text-align: center;
    font-size: 6rem;
}
div.page-header-section p{
  text-align: center;
}
/*tabs Styles*/

.badge {
  background-color: #777;
}

.tabs-left { margin-top: 3rem; }

.nav-tabs {
  float: left;
  border-bottom: 0;
  

  li {
    float: none;
    margin: 0;
    
    a {
      margin-right: 0;
      border: 0;
            border-radius: 0;
      background-color: #333;
      
      &:hover {
        background-color: #444;
      }
    }
  }
  
  .glyphicon {
    color: #fff;
  }
  
  .active .glyphicon {
    color: #333;
  }
}

.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
  border:0;
}

.tab-content {
  margin-left: 45px;
  
  .tab-pane {
    display: none;
    background-color: #fff;
    padding: 1.6rem;
    overflow-y: auto;
  }
  
  .active { display: block; }
}

.list-group {
  width: 100%;
  
  .list-group-item {
    height: 50px;
    
    h4, span {
      line-height: 11px;
    }
  }
}
/*end tabs styles*/

div.values-container .card{
  min-height: 370px;
  margin-bottom: 20px;
}
div.card-hover:hover{
  transition-duration: 0.5s;
  background-color: #e1d9d9;
  cursor: pointer;
  color: #000 !important;
}
div.case-study-carousel img{
   width: auto;
  height : auto;
  max-height: 100%;
  max-width: 100%;
  border-radius: 20px;
}
 @media (min-width: 768px){
  div.case-study-carousel div.col-md-3 {
      padding: 8px;
  }
}

/*team page styles starts*/
.team_img{
  border-radius: 100%;
   width: auto;
  height : auto;
  max-height: 100%;
  max-width: 100%;
}
.team_heading1{
    font-size: 24px;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
}
.team_heading2{
    font-family: 'poppins';
    font-size: 16px;
    font-style: normal;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    color: rgba(255, 255, 255, 1);
}

/*team page styles ends*/
.sticky {
  position: sticky;
  top: 0;
  height: 100vh; /* Adjust the height as needed */
  overflow-y: auto; /* Enable vertical scrolling */
}

button{
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}
button:hover{
    opacity: 0.9;
}
.nav-brand{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
}

.nav-menu{
    /*background-color: var(--shark-color);
    box-shadow: 0px 10px 7px 0px rgba(56, 56, 56, 0.3);*/
}
.nav-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--shark-color);
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

/* show overlay js */
.show-overlay{
    opacity: 1;
    visibility: visible;
}

.nav-overlay-container{
/*    background-color: var(--dark-shark-color);*/
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
/*    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);*/
    position: relative;
}
#menu-show-btn:hover, #menu-show-btn:active, #menu-show-btn:focus, #menu-show-btn:target{
  border:0;
}
#menu-hide-btn{
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    line-height: 25px;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--dark-shark-color);
}
.nav-links li{
    margin: 16px 0;
    position: relative;
}
.nav-links li::before, .nav-links li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--theme-color);
    opacity: 0;
    transition: all 300ms ease-in-out;
}
.nav-links li::before{
    top: 0;
    left: 0;
}
.nav-links li::after{
    bottom: 0;
    right: 0;
}
.nav-links li:hover::before, .nav-links li:hover::after{
    width: 75%;
    opacity: 1;
}
.nav-links li a{
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 6px;
    font-weight: 700;
    transition: all 300ms ease-in-out;
    text-decoration: none;
        color: white;
}
.nav-links li:hover a{
    color: var(--theme-color);
}
.nav-icons{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.nav-links, .nav-icons {
  list-style-type: none;
}
.nav-icons li{
    border: 1px solid var(--grey-color);
    width: 35px;
    height: 35px;
    margin: 0 5px;
    line-height: 35px;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}
.nav-icons li:hover{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

@media(max-width: 600px){
    .nav-links li a{
        font-size: 22px;
    }
    .nav-overlay{
        padding: 30px;
    }
}

.case-study-content h3{
  font-family: "Poppins", sans-serif;
}
.case-study-content .title{
  font-size: 3.5rem;
}
 
h3.lines {
    position: relative;
    font-size: 30px;
    z-index: 1;
    overflow: hidden;
    text-align: center;
}
h3.lines:before, h3.lines:after {
    position: absolute;
    top: 51%;
    overflow: hidden;
    width: 50%;
    height: 1px;
    content: '\a0';
    background-color: white;
}

h3.lines:before {
    margin-left: -50%;
    text-align: right;
}
.pl-100{
  padding-left: 100px;
}
.text-left{
  text-align: left;
}
a:hover {
    opacity: 0.8;
    color:#fff;
    text-decoration: none;
}
.mt-10{
  margin-top: 10rem;
}
@media (min-width: 768px) {
    .banner-row{
      margin-top: 70px;
    }
    .banner-row .banner-inner-div {
      margin-top: 10rem;
    }
    .banner-row button {
      margin-top: 3rem;
    }
    .btn-ml{
      margin-left: 3rem;
    }
    .screen-height, .section-screen-height{
      height: 100vh;
    }
    .carousel-width{
      width: 85%;
    }
    .my-axis{
      margin-top: 3rem;
      margin-bottom: 3rem;
    }
    #MiCarousel .div-r p{
      padding-right:15px;
      }
      .banner-img-width{
        width: 75%;
        float: right;
        padding-right: 85px;
        padding-top: 45px;
      }
      .banner-heading-padding{
        padding: 100px;
      }
      .pricing-section{
        width: 55%;
      }
      .case-study-content {
          margin-left: 3rem;
          margin-right: 3rem;
        }
        #MiCarousel .carousel-title{
            font-size: 35px;
            margin-left: 20px;
            margin-top: 20px;
            background-color: #000000bd;
            border-radius: 20px;
          padding: 15px;
          width: fit-content;
        }
        #MiCarousel{
          height: 70vh;
        }
        #MiCarousel .carousel-item{
            height: 75vh;
          }

}
@media (max-width: 767px) {
    .banner-row{
      margin-top: 20px;
    }
    .banner-row h1.title{
      font-size: 20px;
      margin-bottom: 10px;
    }
    .banner-row .banner-inner-div {
      margin-top: 4rem;
    }
    .banner-row button {
      margin-top: 1rem;
      font-size: 12px;
      padding: 8px 18px;
    }
    .btn-ml{
      margin-left: 1rem;
    }
    .screen-height{
      height: 35vh;
    }
    .carousel-width{
      width: 75%;
    }
    #MiCarousel .div-r {
      margin-top:55px;
      }
    #MiCarousel .div-r h3, #MiCarousel .div-r hr {
    display: none;
    }
    .section-screen-height{
      height: 100vh;
    }
    .section-screen-height h2.title{
      font-size: 32px;
      text-align: start;
      padding: 0 10px;
    }
    .section-screen-height p{
      text-align: start;
      padding: 0 10px;
    }
    .gradient-section{
      right: 9.9vw;
      width: 116vw;
      height: 116vw;
    }
    .gradient-container{
      width: 116vw;
      height: 116vw;
    }
    #recipeCarousel .icon img{
      width:50px;
      height: 50px;
    }
    .my-axis{
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
    .carousel-img{
      background-image: none !important;
    }
    .mob-mt2{
      margin-top: 40px;
    }
    .banner-img-width{
      width: 100%;
        padding: 20px 100px;
    }
    .banner-heading-padding{
      padding: 100px 100px 0px 100px;
    }
    .sub-title{
      font-size: 2rem;
    }
    .card{
      margin-bottom: 10px;
    }
    .pricing-section{
        width: 75%;
      }
    .case-study-content .title{
        font-size: 2rem;
      }
    .case-study-content {
      margin: 0;
    }
    .image-black-bg, .image-colored-bg{
      transform: translate3d(0%, 0, 0) scale3d(1, 1, 0) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0) !important;
    }
    #MiCarousel .carousel-title {
        font-size: 30px;
        /* margin-left: 20px; */
        margin-top: 20px;
        border-radius: 20px;
        padding: 15px;
        width: 88%;
    }
    #MiCarousel .carousel-item, #MiCarousel{
      height: auto;
    }
    .services-p{
      padding:0;
    }
}

@media (max-width: 560px) {
    .gradient-section {
        right: 0vw;
        width: 100vw;
        height: 160vw;
      }
    .gradient-container {
        width: 160vw;
        height: 160vw;
    }
    .carousel-control-prev-icon{
      right: 35px;
    }
    .carousel-control-next-icon{
      left: 35px;
    }
    .testimonials-slider{
      opacity: 1 !important;
    }
    .banner-heading-padding {
        padding: 25px 100px 0px 42px;
    }
    .mob-none{
      display: none;
    }
}