* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 40px 0;
}

.main-section {
  background-color: #403e3e;
  height: 100% !important;
  width: 100%;
  overflow-x: hidden;

}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}

.header.scrolled {
  background-color: #232323;
}

.menu-icon {
  width: 70%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
  /* Added border color */
}

.header-btn {
  width: 40%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}




.menu {
  color: #fff;
  padding: 0 75px;


}

.my-menu {
  border: 1px solid #fff;
  width: 50px;
  padding: 10px;
}

.my-menu:hover {
  border: 1px solid #F54319;
  width: 50px;
  padding: 10px;
  color: #fff;
  background-color: #F54319;
}



.header-btn {

  position: relative;
  z-index: 2;
}

.logo {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.logo img {
  /* height: 80px; */
  width: 280px;
}

.header-btn button {
  width: 120px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  /* margin-left: 10px; */
  transition: background-color 0.3s, color 0.3s;
  padding: 7px;
  font-weight: 600;

}

.header-btn button a {
  list-style: none;
  color: #fff;
  text-decoration: none;
}

.header-btn button:hover {
  background-color: #F54319;
  color: white;
  font-weight: 600;
  border-color: #F54319;
}

.blog-btn {
  margin-right: 20px;
}

.overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  display: flex;
  height: 100%;
}

.left-content {

  width: 55%;
}


.right-content {
  width: 45%;
}

.right-content h1 {
  color: #fff;
  text-align: right;
}

.left-content ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 0;
  right: 20%;
}

.left-content li {
  padding: 0px;
}

.left-content a {
  text-decoration: none;
  font-size: 40px;
  color: #fff;
  display: block;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;

}

.left-content li a:hover {
  text-decoration: none;
  font-size: 40px;
  color: #F54319;
  display: block;
  transition: 0.3s;
  font-weight: bold;
}

.left-content a:hover,
.left-content a:focus {
  color: #f1f1f1;
}

.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #181818;
  color: white;
  position: relative;
  z-index: 2;
}

.right-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #27282d;
  color: white;
  position: relative;
  top: 0;
  z-index: 2;
  height: 100%;
  overflow-y: auto;
}

.right-content::-webkit-scrollbar {
  width: 0px;
}

.right-content {
  scrollbar-width: none;
}


.overlay .right-content h1 {
  position: absolute;
  left: 5%;
  top: 15%;
}

.right-content hr {
  width: 90%;
  height: 2px;
  background-color: white;
  border: none;
  position: absolute;
  left: 5%;
  top: 20%;

}

.right-content .latest-img {
  width: 270px;
  height: auto;
  position: relative;
  top: 100%;
  left: 9%;
  margin-top: 40px;

}

.right-content .latest-img img {
  height: 100%;
  width: 100%;

}

.right-content .latest-news {
  position: relative;
  top: 100%;
}

.right-content .latest-news h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  word-wrap: break-word;
  width: 96%;
  margin-top: 40px;

}

.overlay .closebtn {
  position: fixed;
  top: 0 !important;
  left: 83px !important;
  font-size: 60px;
  color: white;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
}

html::-webkit-scrollbar {
  width: 0px;
}

html {
  scrollbar-width: none;
}

.slider {
  width: 100%;
  height: 100%;


}

.slider-three {
  padding-bottom: 50px;


}

/* Mobile specific styles */

.mobile-li-btn {
  display: none;

}

@media (max-width: 768px) {
  .mobile-li-btn {
    display: block;
    position: relative;
    z-index: 0;

  }
}



.email-icon {
  display: none;

}

@media (max-width: 768px) {
  .email-icon {
    display: block;
    position: relative;
    z-index: 2;
  }
}


@media (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

  }

  .overlay .overlay-content {
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
    height: 100%;
  }

  .menu-icon {
    order: 1;
    padding: 0;
    margin: 0;
    margin-top: -5px;

  }


  .menu {

    margin: 0;
    padding: 0;
  }

  .my-menu {
    border: 1px solid #fff;
    width: 33px;
    padding: 2px
  }

  .my-menu:hover {
    border: 1px solid #F54319;
    width: 36px;
    padding: 4px;
    color: #fff;
    background-color: #F54319;
  }


  .overlay .closebtn {
    display: none;
    position: absolute;
    position: absolute;
    top: -28px !important;
    left: 15px !important;
  }



  .logo {
    text-align: center;
  }

  .logo img {
    height: 100%;
    width: 200px;
    margin-left: 35px;
  }


  .header-btn {
    display: none;
  }

  .email-icon {
    order: 3;
    color: #fff;
    position: absolute;
    right: 10px;
  }

  .overlay-content {
    flex-direction: column;
  }

  .overlay .left-content {
    width: 100%;
    background-color: #27282d;
    height: 100%;
    padding-bottom: 142px;
    overflow-y: scroll;
  }


  .overlay .left-content ul {
    list-style: none;
    padding: 0;
    width: 100%;
    padding: 15px;
    color: #fff;
    position: absolute;
    left: 10px;
    top: 50px;
  }

  .overlay .left-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 25px;
    font-weight: 600;
    line-height: .9em;
    text-transform: uppercase;
  }

  .left-content ul {
    padding: 0;
    margin: 0;
  }

  .left-content li {
    padding: 5px;
  }

  .overlay .right-content {
    width: 100%;
    background-color: #323338;
    height: 100%;
  }


  .overlay .right-content h1 {
    font-family: telegraf-regular;
    color: hsla(0, 0%, 100%, .6);
    display: block;
    font-size: calc(18px + 2 * ((100vw - 420px) / 820));
    font-size: calc(1.125rem + 2 * ((100vw - 26.25rem) / 820));
    line-height: 1em;
    margin-bottom: 1em;
    padding: 5PX;
  }

  hr {
    border: 1px solid gray;
    width: 100%;
    margin-top: 20px;

  }

  .right-content .latest-img img {
    width: 100%;
    text-align: center;
    margin-top: -48px;


  }

  .overlay .latest-news h3 {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    padding: 16px;
    text-align: center;
    margin-top: 18px;
  }
}






/* // setion-one-banner-two */


.section-one-banner-two {
  position: relative;
  height: 100vh;
}


.title {
  position: absolute;
  top: 50% !important;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  /* font-size: 11rem; */
  color: transparent;
  text-shadow: none;
  line-height: 0.8775em;
  display: inline-block;
  margin: auto;
  text-transform: uppercase;
  width: 100%;

}

.ignite-title {
  margin-top: -3rem;
}


.title h1 {
  padding: 10px;
}

h1 span.word {
  opacity: 1;
  transform: translateY(0);
  display: inline-block;
  transition: all 1.2s cubic-bezier(.77, 0, .175, 1);
}

.title span.word1 {
  padding: 5px;
  -webkit-text-stroke-width: 1.2px;
  display: inline;
  text-shadow: none !important;
  line-height: .8775em;
  font-size: 120px;
  width: 100%;
  font-weight: bold;
  opacity: 1;
  -webkit-text-stroke-color: #fff;

}

.title span.word3 {
  padding: 5px;
  -webkit-text-stroke-width: 1.2px;
  display: inline;
  text-shadow: none !important;
  line-height: .8775em;
  font-size: 120px;
  width: 100%;
  font-weight: bold;
  opacity: 1;
  -webkit-text-stroke-color: #fff;

}


.typewriter-banner {
  position: relative; 
  top: 4rem; 
}

.title .word2 {
  padding: 5px;
  color: #F54319;
  display: inline;
  font-size: 83px;
  margin-top: 30px;
  font-weight: 500;
  font-weight: bold;
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 2;
}

.banner-icon{
  margin-top: -6.5rem;
}

@media (max-width: 1024px) {
  .title .word2 {
    padding: 5px;
    color: #F54319;
    display: inline;
    font-size: 66px !important;
    margin-top: 30px;
    font-weight: 500;
    font-weight: bold;
  }
}

@media (max-width: 768px) {

  .section-one-banner-two {
    position: relative;
    height: 100vh;
  }


  .title {
    position: absolute;
    top: 70% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    font-size: 11rem;
    color: transparent;
    text-shadow: none;
    line-height: 0.8775em;
    display: inline-block;
    margin: auto;
    text-transform: uppercase;
    width: 100%;
  }



  .title h1 {
    padding: 10px;
  }

  h1 span.word {
    opacity: 1;
    transform: translateY(0);
    display: inline-block;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1);
  }

  .title span.word1 {
    padding: 5px;
    -webkit-text-stroke-width: 1.2px;
    display: inline;
    text-shadow: none !important;
    line-height: .8775em;
    font-size: 2rem;
    width: 100%;
    font-weight: bold;
    opacity: 1;
    -webkit-text-stroke-color: #fff;


  }

  .title span.word3 {
    padding: 5px;
    -webkit-text-stroke-width: 1.2px;
    display: inline;
    text-shadow: none !important;
    line-height: .8775em;
    font-size: 2rem;
    width: 100%;
    font-weight: bold;
    opacity: 1;
    -webkit-text-stroke-color: #fff;

  }


  .title .word2 {
    padding: 5px;
    color: #F54319;
    display: inline;
    font-size: 21px !important;
    position: relative;
    top: -3rem;
  }

  .typewriter-banner {
    position: relative !important;
    top: -6rem !important;
  }

  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 2;
  }

}






/* // section-two */
.section-two {

  text-align: center;

}

.section-two h1 {
  font-size: 7.5em;
  font-weight: bold;
  color: #0693e3;
  margin-top: 110px;

}

.section-two .main-div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  width: 100px;
  height: 100px;
  margin: 0;
  position: absolute;
  top: 34%;
  left: 44%;

}

.section-two .dot {
  background-color: white;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin: auto;
}

.section-two .lottie-one img {

  height: 30px;
  width: 30px;
  margin: 0;
  position: absolute;
  top: 47%;
  right: 30%;
  z-index: 1;
  width: 100%;

}

.section-two .typewriter {
  height: 30px;
  width: 30px;
  margin: 0;
  position: absolute;
  top: 47%;
  left: 0;
  z-index: 1;
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
}

.section-two h2 {
  margin: 0;
  position: absolute;
  top: 65%;
  left: 21%;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  word-wrap: break-word;
  width: 50%;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10rem;

}

.section-two p {
  text-align: start;
  padding: 0px 450px;
  z-index: 1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 20rem;


}

.section-two .name {
  margin: 0;
  position: absolute;
  top: 63%;
  left: 29%;
  z-index: 1;
  color: #fff;
  font-size: 1.5rem;
  bottom: 20px;
  font-weight: bold;
}

.section-two .company {
  color: gray;
  font-weight: bold;
  font-size: 1.5rem;
}



.section-two .data-icon {
  margin: 0;
  position: absolute;
  top: 67%;
  left: 26%;
  z-index: 1;
  color: white;
  font-size: 2rem;


}



.section-two .behind-text {
  margin: 0;
  position: absolute;

  left: 30% !important;
  z-index: 1;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.section-two .daversa-img {
  position: absolute;
  top: 28%;
  z-index: 1;
  right: 0;
  height: 530px;
  width: auto;
}

.section-two .daversa-img img {

  width: 100%;
  height: 100%;

}



/* // section-four */

.section-four {

  position: relative;


}

.section-four .title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  color: #a1aaff;
  position: absolute;
  top: 0%;
  left: 0;

}

.section-four .heading {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: 20px;

}

.section-four p {
  font-size: 20px;
  text-align: justify;
  word-wrap: break-word;
  width: 95%;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}


.section-four .rounded-img {
  border-radius: 10px;
  border: 2px solid white;
  width: 100%;
  max-height: 350px;
  margin-top: 70px;

}

.section-four .rounded-img img {
  height: 100%;
  width: 100%;

}


.section.five {
  text-align: center;
  padding: 20px;
  height: 100%;
  overflow-y: auto;

}

.section.five h1 {
  font-size: 3.25rem;
  font-weight: 600;

}

.section.five h1:before,
.section.five h1:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #F54319;
  display: inline-block;
}

.section.five h1:before {
  margin: 0 15px 16px 0;
}

.section.five h1:after {
  margin: 0 0 16px 15px;
}

.section.five::-webkit-scrollbar {
  width: 0px;
}

.section.five {
  scrollbar-width: none;
}

.client-header {
  color: white;
  text-align: center;
  margin-top: 20px;
}

.client-heading h1 {
  color: white;
  text-align: center;
}

.image-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.image-row img {
  height: 100px;
  width: 220px ;
  margin: 10px;
  /* object-fit: scale-down; */
}


.snowflake-logo{
  width: 277px !important;
    height: 74px !important;
    margin-top: 30px !important;
}

.promethium-logo{
  width: 250px !important;
  height: 75px !important;
  margin-top: 24px !important;
}

.client-vantra-logo{
  width: auto !important;
  height: auto !important
 
}


.client-lightup{
  height: 60px !important; 
  margin-top: 35px !important;
}



.client-anomalo{
  height: 40px !important; 
  margin-top: 50px !important;
}
.client-nexla{
  height: 30px !important;
  margin-top: 48px !important;

}

.client-databrciks-logo{
  height: 100px !important;
  margin-top: -7px !important;
  margin-left: 18px !important;
  width: auto !important;
}


.client-databrciks-logo-new{
  height: 100px !important;
   margin-top: -3px !important; 
  margin-left: 18px !important;
  width: 200px !important;
}
.ibm-img{
  height: 114px !important;
  width: auto !important;
}

.jfrog-img{
  height: 111px !important;
  width: auto !important;
  margin-left: -20px !important;
 
}

.hp-logo{
  height: 80px !important;
  margin-top: 33px !important;
  width: auto !important;
   margin-left: -20px !important;
}

.opsms-logo{
  height: 60px !important;
  margin-top: 40px !important;
  margin-left: 36px !important;
  width: auto !important;
}

.fourth-client-logo{
  text-align: center;
  margin: 10px;
  
}

.open-ai-logo{
  height: 50px !important;
  width: auto !important;
  margin-top: 40px !important;
 
}

.gartner-logo{
  height: 30px !important;
  width: auto !important;
  margin-top: 56px !important;
}


@media (max-width:768px) {

  .section.five {
    text-align: center;
    padding: 20px;
    height: 100%;
    overflow-y: auto;
    
    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section.five h1 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .section.five h1:before,
  .section.five h1:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #F54319;
    display: inline-block;
    position: relative;
    top: 10px;
  }

  .section.five h1:before {
    margin: 0 15px 16px 0;
  }

  .section.five h1:after {
    margin: 0 0 16px 15px;
  }

  .section.five::-webkit-scrollbar {
    width: 0px;
  }

  .section.five {
    scrollbar-width: none;
  }

  .client-header {
    color: white;
    text-align: center;

  }

  .client-heading h1 {
    color: white;
    text-align: center;
    font-size: 15px !important;
  }

  .testimonial-header {
    font-size: 20px !important;
  }

  .image-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .image-row img {
    height: 100px ;
    width: 230px !important;
    margin: 10px;
    object-fit: contain;
  }

  .snowflake-logo{
    width: 200px !important;
    height: 50px !important;

  }

  .client-nexla{
    height: 28px !important;
 
  
  }
  
  .client-databrciks-logo{
    height: 81px !important;
    margin-top: 29px !important;
  }
  

  .opsms-logo{
    height: 50px !important;

  }

 

  .section.five .jfrog-img {
    order: 1; 
    width: 100% !important;
  }

  .section.five .hp-logo {
    order: 2; 
    width: 100%; 
    margin-top: 10px; 
  }

  .open-ai-logo{
    height: 44px !important;
    width: 200px !important;
    margin-top: 30px !important;
   
   
  }
  
  .gartner-logo{
    height: 35px !important;
    width: 230px !important;
    margin-top: 10px;
  }
  

}


/* footer */

.footer-section {

  background-color: #353535;

}

@media (max-width: 600px) {
  .footer-section {
    padding: 15px;
  }

  .footer-section ul li a {
    color: #bababa;
    text-decoration: none;
    margin-left: -27px;
    font-size: 16px !important;
  }



}

.footer-section .first-footer img {
  width: 250px;
}

@media (min-width: 992px) {
  .footer-section .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 29px;
  }
}

.footer-section .first-footer p {
  color: #bababa;
  font-size: 1.15rem;
  padding-top: 10px;

}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.social-icons a img {
  height: 30px;
  color: #fff;
  max-width: 30px;
}

.social-icons a:last-child {
  margin-right: 0;
}

.footer-section h4 {
  color: #bababa;
  font-size: 1.25rem !important;
  font-weight: 600;
  line-height: 1.5;
}

.footer-section h4 span {
  border-bottom: 1px solid #bababa;
}

.footer-section ul {
  color: #bababa;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-section ul li {
  list-style: none;
}

.footer-section ul li a {
  color: #bababa;
  text-decoration: none;
  margin-left: -27px;
  font-size: 1.1rem;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section p {
  color: #bababa;
}

.footer-section .address p {
  font-size: 1.15rem;
}

/***** Who are we *****/

@media (min-width: 1025px) {

  section.hero-standard .inner-hero,
  section.hero-standard aside.content {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  section.hero-standard aside.content {
    background: hsla(0, 0%, 100%, .94);
    margin: auto 0;
    max-width: 620px;
    position: absolute;
  }
}

.inner-hero {
  position: relative;
}

section.hero-standard aside.content,
section.hero-standard figure.image {
  opacity: 1;
  transform: none;
}

section.hero-standard aside.content,
section.hero-standard figure.image {
  /* opacity: 0; */
  transition: all .8s cubic-bezier(.77, 0, .175, 1) .4s;
}

section.hero-standard aside.content {
  display: block;
  padding: 0 4.5vw 50px;
  position: relative;
  width: 100%;
  z-index: 1;
}

section.hero-standard aside.content .heading {
  font-size: calc(60px + 30*((100vw - 420px) / 820));
  font-size: calc(3.75rem + 30*((100vw - 26.25rem) / 820));
  line-height: 1.02em;
  display: block;
  margin-bottom: 10px;
  padding-top: 12px;
  position: relative;
  text-transform: uppercase;
  color: #000;
}

section.hero-standard aside.content .heading:before {
  background: #F54319;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 220px;
  height: 1px;
}

section.hero-standard aside.content .description {
  font-size: calc(16px + 4*((100vw - 420px) / 820));
  font-size: calc(1rem + 4*((100vw - 26.25rem) / 820));
  line-height: 1.55em;
  display: block;
}

section.hero-standard figure.image {
  opacity: 1;
  transform: none;
}

section.hero-standard figure.image {
  transform: translateX(60px);
}

section.hero-standard figure.image {
  /* opacity: 0; */
  transition: all .8s cubic-bezier(.77, 0, .175, 1) .4s;
}

section.hero-standard figure.image {
  background: #2d2e34;
  position: relative;
  width: 100%;
  height: auto;
  z-index: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

section.hero-standard figure.image img.src {
  display: block;
  max-width: 100%;
  width: 100%;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}


@media (min-width: 1231px) {
  section.hero-standard figure.image {
    margin-left: calc(0% - 240px);
    overflow: hidden;
    padding-bottom: 0;
    width: 960px;
    height: 710px;
  }

  section.hero-standard figure.image img.src {
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media screen and (min-width: 1240px) {
  section.hero-standard aside.content .heading {
    font-size: 90px;
    font-size: 3.25rem;
    font-weight: 600;
  }

  section.hero-standard aside.content .description,
  section.hero-standard aside.content .email_label {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1231px) {
  section.hero-standard aside.content {
    min-height: 560px;
    padding: 90px 100px 80px;
    /* top: 70px; */
    left: calc(50% - 650px);
  }
}



/***** mobile-screens *****/
@media (max-width: 768px) {

  section.hero-standard .inner-hero,
  section.hero-standard aside.content {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: column;
  }

  section.hero-standard aside.content {
    background: hsla(0, 0%, 100%, .94);
    margin: auto 0;
    width: 100%;

  }


  .inner-hero {
    /* position: relative; */
  }

  section.hero-standard aside.content,
  section.hero-standard figure.image {
    opacity: 1;
    transform: none;
  }

  section.hero-standard aside.content,
  section.hero-standard figure.image {
    /* opacity: 0; */
    transition: all .8s cubic-bezier(.77, 0, .175, 1) .4s;
  }

  section.hero-standard aside.content {
    display: block;
    padding: 0 4.5vw 50px;
    /* position: relative;
    width: 100%;
    z-index: 1; */
    margin-bottom: -25px;
    width: 90%;
  }

  section.hero-standard aside.content .heading {
    font-size: 18px;
    line-height: 1.02em;
    display: block;
    margin-bottom: 10px;
    padding-top: 12px;
    position: relative;
    text-transform: uppercase;
    color: #000;
  }

  section.hero-standard aside.content .heading:before {
    background: #F54319;
    content: "";
    display: block;
    top: 35px;
    left: 0;
    position: absolute;
    width: 104px;
    height: 1px;
  }

  section.hero-standard aside.content .description {
    font-size: calc(16px + 4*((100vw - 420px) / 820));
    font-size: calc(1rem + 4*((100vw - 26.25rem) / 820));
    line-height: 1.55em;
    display: block;
  }

}





.section-new-dbt-lab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.section-new-dbt-lab h1 {
  font-size: 15em;
  font-weight: bold;
  color: #0693e3;
  padding: 80px 10px;
  opacity: 0.4 !important;
  margin: 0;
  text-transform: uppercase;
 white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-text-stroke-width: 8px;

}


.content-new-dbt-lab {
  position: relative;
  z-index: 2;
  margin-top: -270px !important;
  text-align: center;
}

.banner-quote{
  color: #fff !important;
  font-size: 60px !important;
}


.content-new-dbt-lab h2 {
  font-size: 1.4em;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  text-align: center;
  /* padding: 0 40px; */
  padding-bottom: 20px;
}

.section-new-dbt-lab .content-new-dbt-lab h5 {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
 

}

.content-new-dbt-lab p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
}

.content-new-dbt-lab .company-span {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
}


.dbt-data-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.newdbt-lab-logo img {
  width: 150px;
  height: auto;

}

.content-new-dtb-lab-img {
  position: relative;
  z-index: 2;
  margin-top: -300px;
  text-align: left;
}

.content-new-dtb-lab-img img {
  /* width: 80%;
  height: 375px !important; */

  
  width: 70%; 
  height: auto;
  filter: grayscale(100%);
}


@media (max-width: 600px) {

  .section-new-dbt-lab {
    padding: 10px;
    text-align: center;
    height: 100%;
  }

  .section-new-dbt-lab h1 {
    font-size: 3.2em;
    opacity: 0.5;
    -webkit-text-stroke-width: 2px;
  }

  .content-new-dbt-lab {
    margin-top: -69px !important;
    text-align: center;
  }

  .banner-quote{
    color: #fff !important;
    font-size: 40px !important;
  }

  .content-new-dbt-lab h2 {

    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    width: calc(100% - 10px);
    /* Full width with 5px gap on both sides */
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
    z-index: 1;
    position: relative;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 20px;
  }

  .section-new-dbt-lab .content-new-dbt-lab h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }

  .content-new-dbt-lab p {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }

  .content-new-dbt-lab .company-span {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }


  .newdbt-lab-logo img {
    width: 130px;
    height: auto;

  }



  .content-new-dtb-lab-img {
    margin-top: 0;
    text-align: center;
    margin-top: 24px;

  }

  .content-new-dtb-lab-img img {
    height: 200px !important;
    width: 200px;
  }
}




/* // dbt labs */

.section-dbt-lab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.section-dbt-lab h1 {
  font-size: 15em;
  font-weight: bold;
  color: #0693e3;
  padding: 80px 10px;
  opacity: 0.4 !important;
  margin: 0;
  text-transform: uppercase;
  transition: opacity 2s cubic-bezier(.895, .03, .685, .22);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-text-stroke-width: 8px;
}



.content-dbt-lab {
  position: relative;
  z-index: 2;
  margin-top: -270px !important;
  text-align: center;
}

.content-dbt-lab h2 {
  font-size: 1.4em;
  color: #fff;
  padding-bottom: 30px;
  line-height: 1.2;
  width: 70%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
}

.section-dbt-lab .content-dbt-lab h5 {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;

}

.content-dbt-lab p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
}

.content-dbt-lab .company-span {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
}


.data-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;

}

.dbt-lab-img img {
  width: 150px;
  height: auto;

}

.nvidia-logo {
  filter: brightness(0) invert(1);
  width: 150px;
  height: auto;
}

.vantra-logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}


.content-img {
  position: relative;
  z-index: 2;
  margin-top: -330px;
}

.content-img img {
  width: 500px;
  height: 600px;
}

.dbt-lab-img {
  width: 100%;
  height: auto;
}

.nvidia-logo {
  filter: brightness(0) invert(1);
}

.alation-logo {
  margin-top: 10px !important;

}



@media (max-width: 600px) {

  .section-dbt-lab {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 100%;

  }

  .section-dbt-lab h1 {
    font-size: 2.2em;
    opacity: 0.5;
  }

  .content-dbt-lab {
    margin-top: -69px !important;
    text-align: center;
  }

  .content-dbt-lab h2 {
    font-size: 16px;
    color: #fff;
    padding: 10px 11px;
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
    word-break: break-word;
  }


  .section-dbt-lab .content-dbt-lab h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;

  }

  .content-dbt-lab p {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }

  .content-dbt-lab .company-span {
    font-size: 15px;
    color: white;
    margin-left: 0;
    display: inline;
    font-weight: 400;
  }


  .data-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }

  .dbt-lab-img img {
    width: 130px;
    height: auto;
  }

  .vantra-logo img {
    width: 146px;
    height: auto;
  }

  .alation-logo {
    margin-top: 10px !important;

  }

}




/* // databrciks */

.section-databricks {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.section-databricks h1 {
  font-size: 15em;
  font-weight: bold;
  color: #0693e3;
  padding: 80px 10px;
  opacity: 0.4 !important;
  margin: 0;
  text-transform: uppercase;
  transition: opacity 2s cubic-bezier(.895, .03, .685, .22);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-text-stroke-width: 8px;
}

.content-databricks {
  position: relative;
  z-index: 2;
  margin-top: -270px !important;
  text-align: center;
}

.content-databricks h2 {
  font-size: 1.4em;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  text-align: center;
  /* padding: 0 40px; */
  padding-bottom: 20px;
}

.section-databricks .content-databricks h5 {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;

}

.content-databricks p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
}

.content-databricks .company-span {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
}


.data-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 10px;  */
}

.databricks-img img {
  width: 70px;
  height: auto;
  margin-left: 10px;
  margin-top: -20px;
}

.databrick-text {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  margin-top: -20px;
  margin-left: -7px;
}

.content-img {
  position: relative;
  z-index: 2;
  margin-top: -300px;
  text-align: left;
}

.content-img img {
  /* width: 85%;
  height: 400px; */
  border-radius: 30% !important;
  width: 70%;
  height: auto;
  filter: grayscale(100%);
}


@media (max-width: 600px) {

  .section-databricks {
    padding: 10px;
    text-align: center;
    height: 100%;
  }

  .section-databricks h1 {
    font-size: 3.2em;
    opacity: 0.5;
    -webkit-text-stroke-width: 2px;
  }

  .content-databricks {
    margin-top: -69px !important;
    text-align: center;
  }

  .content-databricks h2 {
    font-size: 16px;
    color: #fff;
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    word-wrap: break-word;

  }



  .section-databricks .content-databricks h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }

  .content-databricks p {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }

  .content-databricks .company-span {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }


  .databricks-img img {
    width: 55px;
    height: auto;
    margin-top: -15px;
    margin-left: 0px;
  }

  .databrick-text {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    margin-top: -15px;
  }



  .content-img {
    margin-top: 0;
    text-align: center;
    margin-right: 0;
    /* Reset margin-right */
  }

  .content-img img {
    height: 200px !important;
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


/* // coactive ai */

.section-coactive {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.section-coactive h1 {
  font-size: 15em;
  font-weight: bold;
  color: #0693e3;
  padding: 70px 10px;
  opacity: 0.4 !important;
  margin: 0;
  text-transform: uppercase;
  transition: opacity 2s cubic-bezier(.895, .03, .685, .22);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-text-stroke-width: 8px;
}

.content-coactive {
  position: relative;
  z-index: 2;
  margin-top: -260px !important;
  text-align: center;
}

.content-coactive h2 {
  font-size: 1.4em;
  color: #fff;
  line-height: 1.2;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  text-align: center;
  /* padding: 12px 40px; */
  padding-bottom: 20px;
  margin-left: -15px;
}

.section-coactive .content-coactive h5 {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;

}

.content-coactive p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
}

.content-coactive .company-span {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
}


.data-icon {
  display: flex;
  align-items: center;
  justify-content: center;

}

.coactive-logo img {
  width: 150px;
  height: auto;
  margin-left: 10px;

}



.prophecy-logo img {
  width: 150px;
  height: auto;

}

.content-coactive-img {
  position: relative;
  z-index: 2;
  margin-top: -250px;
  text-align: left;
}

.content-coactive-img img {
  /* width: 80%;
  height: 375px; */
  /* border-radius: 30% !important; */

  width: 70%; 
  height: auto;
  filter: grayscale(100%)
}

.banner-nvidia-logo{
  filter: brightness(0) invert(1);
}




@media (max-width: 600px) {

  .section-coactive {
    padding: 10px;
    text-align: center;
    height: 100%;
  }

  .section-coactive h1 {
    font-size: 2.2em;
    opacity: 0.5;
    -webkit-text-stroke-width: 2px;
  }

  .content-coactive {
    margin-top: -69px !important;
    text-align: center;
  }

  .content-coactive h2 {
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
  }

  .section-coactive .content-coactive h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
  }

  .content-coactive p {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }

  .content-coactive .company-span {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }


  .coactive-logo img {
    width: 130px;
    height: auto;
    margin-left: 10px;

  }

  .prophecy-logo img {
    width: 130px;
    height: auto;
    margin-left: 10px;

  }

  .content-coactive-img {
    margin-top: 25px !important;
    text-align: center;
    margin-right: 0;
    /* Reset margin-right */
  }

  .content-coactive-img img {
    height: 200px !important;
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


 .section-vantra {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100vh;
}

.section-vantra h1 {
  font-size: 13em;
  font-weight: bold;
  color: #0693e3;
  padding: 80px 10px;
  opacity: 0.4 !important;
  margin: 0;
  text-transform: uppercase;
  transition: opacity 2s cubic-bezier(.895, .03, .685, .22);
  white-space: normal;
  line-height: 0.9em;
  position: relative;
  z-index: 2;
  -webkit-text-stroke-width: 8px;
}

.content-vantra {
  position: relative;
  z-index: 2;
  margin-top: -380px !important;
  text-align: center;
}

.content-vantra h2 {
  font-size: 1.4em;
  color: #fff;
  
  line-height: 1.2;
  width: 100%;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  z-index: 1;
  position: relative;
  /* padding: 0px 40px; */
}

.section-vantra .content-vantra h5 {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 30px;

}

.content-vantra p {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
  display: inline;
}

.content-vantra .company-span {
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.content-coactive-img{
  position: relative;
  z-index: 2;
  margin-top: -300px;
}

.content-coactive-img img{
 border-radius: 30%;
}

.data-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;

}

.vantra-logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.content-vantra-img {
  position: relative;
  z-index: 2;
  margin-top: -400px;
  text-align: left;
}

.content-vantra-img img {
  /* width: 80%;
  height: 375px; */
  border-radius: 30%;

  width: 70%;
  height: auto;
  filter: grayscale(100%);

}

@media (max-width: 600px) {

  .section-vantra {
    padding-bottom: 0;
    margin-bottom: 0;
    height: 100%;
  }

  .section-vantra h1 {
    font-size: 2.2em;
    opacity: 0.5;
    white-space: nowrap;
    line-height: normal;
    -webkit-text-stroke-width: 2px;
  }

  .content-vantra {
    margin-top: -69px !important;
    text-align: center;
  }

  .content-vantra h2 {
    font-size: 16px;
    color: #fff;
    padding: 10px 11px;
    margin: 0;
    width: 100%;
    margin-bottom: 20px;
    word-break: break-word;
  }


  .content-vantra .content-vantra h5 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;

  }

  .content-vantra p {
    font-size: 15px;
    font-weight: 400;
    display: inline;
    padding-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
  }

  .content-vantra .company-span {
    font-size: 15px;
    color: white;
    margin-left: 0;
    display: inline;
    font-weight: 400;
  }


  .data-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }


  .vantra-logo img {
    width: 146px;
    height: auto;
  }

 
  .content-vantra-img {
    margin-top: 25px !important;
    text-align: center;
    margin-right: 0;
    /* Reset margin-right */
  }

  .content-vantra-img img {
    height: 200px !important;
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }


} 

/*--------------------------------------------------------------
# testimonial
--------------------------------------------------------------*/

.testimonial-section {
  text-align: center;
  padding: 20px;
}

.testimonial-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid black;
  margin-left: auto;

}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  margin-top: 60px;
  text-align: left;
}

.testimonial-text h3 {
  font-weight: 700;
  margin: 0;
  color: #fff;
  font-size: 24px;
}

.testimonial-text p {
  margin: 0;
  color: #fff;
  font-size: 24px;

}

.testimonial-paragraph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 220px;
  padding-right: 200px;

  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  display: block;
}

.testimonial-paragraph p {
  font-size: 23px;
}

.fa-quote-left {
  color: #F54319;
  font-size: 1.7em;

}

.fa-quote-right {
  font-size: 1.7em;
  color: #F54319;
}

.databrick-testimonial-logo {
  display: inline;
  margin-top: -10px;
  width: 60px;
  height: auto;
}

.databrick-testimonial-text {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin-left: -7px;
  margin-top: -10px;
}



.testimonial-logo {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: auto;
}

.testimonial-logo1 {
  display: block;
  margin: 0 auto;
  width: 150px;
  height: auto;
}

.nvidia-testimonial-logo {
  filter: brightness(0) invert(1) !important;
}

.testimonial-alation-logo {
  margin-top: -10px;
}

.testimonial-vantra-logo {
  filter: brightness(0) invert(1) !important;
  display: block;
  margin: 0 auto;
  width: 170px;
  height: auto;
}


/* mobile screens */
@media (max-width: 600px) {
  .testimonial-section {
    text-align: center;
  }

  .testimonial-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid black;
    margin-left: auto;
  }

  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial-text {
    margin-top: 50px;

  }

  .testimonial-text h3 {
    margin: 0;
    color: #fff;
    font-size: 15px;
  }

  .testimonial-text p {
    color: #fff;
    font-size: 13px;
  }

  .testimonial-paragraph {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    /* font-size: 15px; */
    font-weight: 500;
    color: #fff;
    text-align: center;
    font-style: italic;
  }

  .testimonial-paragraph p {
    font-size: 16px;
  }

  .fa-quote-left {
    color: #F54319;
    font-size: 1.3em;

  }

  .fa-quote-right {
    color: #F54319;
    font-size: 1.3em;
  }


  .testimonial-logo {
    display: block;
    margin: 0 auto;
    width: 150px;
    height: auto;
  }

  .testimonial-logo1 {
    display: block;
        margin: 0 auto;
        width: 150px;
        height: auto;
    }
  

  .testimonial-alation-logo {
    margin-top: -10px;
  }


  .testimonial-vantra-logo {
    filter: brightness(0) invert(1) !important;

    margin: 0 auto;
    width: 160px;
    height: auto;
  }

}



/* section-owl */
.section-owl {
  position: relative;
}

.section-owl h1 {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
}

.section-owl .awesome-img img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.promethium {}

.section-owl .open-ai {
  width: 220px !important;
  height: 220px !important;
  position: absolute;
  top: 32px;
  left: 50px;

}

.section-owl .anomalo {
  width: 220px !important;
  height: 220px !important;
  margin-top: 35px !important;
  position: absolute;
  left: 0;
}

.section-owl .gartner {
  width: 200px !important;
  height: 160px !important;
  margin-top: 60px !important;
  position: absolute;
  left: -45px;
}

.section-owl .databrick {
  height: 200px !important;
  width: 200px !important;
  margin-top: 15px !important;
  position: absolute;
  left: -90px;
}


.section-owl .ibm {
  width: 200px !important;
  height: 144px !important;
  margin-top: 68px !important;
  position: absolute;
  left: -179px;
}

.section-owl .jfrog {
  width: 200px !important;
  height: 144px !important;
  margin-top: 68px !important;
  position: absolute;
  left: -316px;
}


.section-owl .hp {
  width: auto !important;
  height: 100px !important;
  margin-top: 100px !important;
  position: absolute;
  left: -448px;
}

.opsmx {
  position: absolute;
  left: -38rem !important;
}

.nexla {
  position: absolute;
  left: -38rem !important;
}

.lightup {
  position: absolute;
  left: -38rem !important;
}

button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: white !important;
  border: none;
  margin-left: 22px !important;
  position: relative;
  top: -66px;
  font-size: 30px !important;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: white !important;
  border: none;
  position: relative;
  top: -66px;
  font-size: 30px !important;
  margin-right: 22px !important;
}

@media (max-width: 1024px) {
  .section-owl {
    position: relative;
  }

  .section-owl h1 {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
  }

  .section-owl .awesome-img img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .promethium {}

  .section-owl .open-ai {
    width: 220px !important;
    height: 220px !important;
    position: absolute;
    top: 32px;
    left: 12px;

  }

  .section-owl .anomalo {
    width: 220px !important;
    height: 220px !important;
    margin-top: 35px !important;
    position: absolute;
    left: 0;
  }

  .section-owl .gartner {
    width: 200px !important;
    height: 160px !important;
    margin-top: 60px !important;
    position: absolute;
    left: 0rem !important;
  }

  .section-owl .databrick {
    height: 200px !important;
    width: 200px !important;
    margin-top: 15px !important;

    position: absolute;
    left: -2rem !important;
  }


  .section-owl .ibm {
    width: 200px !important;
    height: 144px !important;
    margin-top: 68px !important;
    position: absolute;
    left: -5rem !important;
  }

  .section-owl .jfrog {
    width: 200px !important;
    height: 144px !important;
    margin-top: 68px !important;
    position: absolute;
    left: -11rem !important;
  }


  .section-owl .hp {
    width: auto !important;
    height: 100px !important;
    margin-top: 100px !important;
    position: absolute;
    left: -15rem !important;
  }

  .opsmx {
    position: absolute;
    left: -21rem !important;
  }

  .nexla {
    position: absolute;
    left: -20rem !important;
  }

  .lightup {
    position: absolute;
    left: -18rem !important;
  }

}

@media (max-width: 767px) {
  .section-owl .awesome-img {
    margin-top: -35px;
  }

  .section-owl .open-ai {
    width: 220px !important;
    height: 220px !important;
    position: absolute;
    top: 0px;
    left: 15px;

  }

  .owl-carousel .owl-stage-outer {
    overflow-x: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    height: 202px;
    width: 100% !important;
  }

  button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: white !important;
    border: none;
    margin-left: 22px !important;
     margin-top: 66px !important;               
    font-size: 30px !important;
  }
  
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: white !important;
    border: none;
    margin-top: 66px !important; 
    font-size: 30px !important;
    margin-right: 22px !important;
  }
}


/***** dean css Start *****/

.dean-page-menu {
  margin-top: 90px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.dean-page h1{
  font-size: 3.25rem;
  font-weight: 600;
  color: #fff;
 /* margin-top: 90px;  */

}
.dean-page .email{
  margin-bottom: 90px;
}
.dean-page .email_label{
  color: #f2452f;
  margin-top: 40px;
}
.dean-page .email_address{
  margin-top: 10px;
}
.dean-page .email_address a{
  color: #b4bcff;
  text-decoration: none;
}
.dean-page .contact-form{
  background-color: #fff;
  padding: 50px;
  transform: translateY(-70px);
  height: 270px !important;
}
.dean-page .dean-form input[type=text], .dean-page .dean-form input[type=email], .dean-page .dean-form select{
  background-color: #f3f3f3;
  height: 50px;
}
.dean-page .dean-form textarea{
  background-color: #f3f3f3;
}


.my-menu {
  border: 1px solid #fff !important;
  width: 50px;
  padding: 10px;
}
.my-menu:hover {
  border: 1px solid #f2452f;
  width: 50px;
  padding: 10px;
  color: #fff;
  background-color: #f2452f;
}

.dean-list-paragraph{
  text-align: center;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 80px;
}

.dean-us-dean-list{
  padding-left: 10px;
  color: #f2452f;
}


/* mobile screens contact */

@media (max-width: 600px) {

 
  .dean-page h1{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
  
  }

  .dean-page .get-touch-heading{
    margin-top: 20px !important;
  }
   
  .dean-page .email{
    margin-bottom: 110px;
  }
  .dean-page .email_label{
    color: #F54319;
    margin-top: 40px;
  }
  .dean-page .email_address{
    margin-top: 10px;
  }
  .dean-page .email_address a{
    color: #b4bcff;
    text-decoration: none;
  }
  .dean-page .contact-form{
    background-color: #fff;
    padding: 25px;
   
    height: 200px !important;
  }
  .dean-page .dean-form input[type=text], .dean-page .dean-form input[type=email], .dean-page .dean-form select{
    background-color: #f3f3f3;
    height: 50px;
   
  
 
  }
  .dean-page .dean-form textarea{
    background-color: #f3f3f3;
    
   
  }


  .form-check-label{
    font-size: 17px;
  }
  .btn-submit{
    width: 150px;
    border: 1px solid #f2452f;
    background-color: transparent;
    color: #f2452f;
    margin-left: 10px;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px;
    text-align: center;
    font-weight: 600;
  }
  .btn-submit:hover{
    background-color: #f2452f;
    color: white;
  }
  .my-menu {
    border: 1px solid #fff;
    width: 50px;
    padding: 10px;
  }
  .my-menu:hover {
    border: 1px solid #f2452f;
    width: 50px;
    padding: 10px;
    color: #fff;
    background-color: #f2452f;
  }
  
  .dean-list-paragraph{
    text-align: center;
    color: #000;
    font-size:17px;
    font-weight: 500;
    padding-bottom: 80px;
  }
  
  .dean-us-dean-list{
    padding-left: 10px;
    color: #f2452f;
  }

}





/* dean-list-video */



.dean-list-heading{
  font-size: 3.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}
.video-card {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.heading-text h2{
  text-align: center;
  font-size: 37px;

  font-weight: 600;
  text-transform: uppercase; 
  color:#fff;
}

.heading-text span{
  text-align: center;
  font-size: 37px;
  font-weight: 600;
  text-transform: uppercase; 
  color:#f2452f;
  display: inline;
}

.heading-text h3{
  text-align: center;
  font-weight: 600;
  text-transform: uppercase; 
  color: #b4bcff;
  text-decoration: none;
  padding-bottom: 60px;
}

.heading-text h3 a{
  text-decoration: none;
  font-size: 1.75rem;
}
.video-data {
  display: flex;
  /* justify-content: space-between; */
  margin-top: 10px;
}

.views, .time {
  font-size: 14px;
  color: #fff;
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin-bottom: 15px;
  border-radius: 20px;
  overflow: hidden; /* Ensures border radius is applied to the iframe */
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

h5 {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}


.profile img {
  width: 170px; 
  height: auto; 
}
.profile-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.profile-name {
  font-weight: bold;
  vertical-align: middle;
  color: #fff;
  padding-left: 20px;
}
.video-data {
  display: flex;
  align-items: center;
}
.video-data .views {
  margin-right: 10px; 
}
.video-description {
  margin-top: 10px;
  font-weight: 500;
  color:#fff;
}

@media (max-width: 767px) {

  .dean-list{
    margin-top: 90px;
  }
  .video-card {
    margin-bottom: 20px;
  }
  
  .heading-text {
    text-align: center;
    font-size: 18px;
    padding-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase; 
    color:#fff;
  
  }
  
  .video-data {
    display: flex;
    /* justify-content: space-between; */
    margin-top: 10px;
  }
  
  .views, .time {
    font-size: 14px;
    color: #fff;
  }
  
  .iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden; /* Ensures border radius is applied to the iframe */
  }
  
  .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  
  h5 {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
  }
  
  
  .profile img {
    width: 100px; 
    height: auto; 
  }
  .profile-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .profile-name {
    font-weight: bold;
    vertical-align: middle;
    color: #fff;
    padding-left: 20px;
  }
  .video-data {
    display: flex;
    align-items: center;
  }
  .video-data .views {
    margin-right: 10px; 
  }
  .video-description {
    margin-top: 10px;
    font-weight: 500;
    color:#fff;
    font-size: 16px;
  }
  
}


