/*variable*/
/*10px*/
/*12px*/
/*14px*/
/*16px*/
/*18px*/
/*20px*/
/*24px*/
/*30px*/
/*35px*/
/*new color st*/
/*new color end*/

/*--------------------------------------------------------------
  # new section st
  --------------------------------------------------------------*/
  .performance-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    /* Stats Grid */
    /* Stat Card */
    /* Stat Icon */
    /* Stat Content */
  }
  .performance-stats .section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #325d73;
    position: relative;
    width: 80%;
    margin: 0 auto;
  }
  .performance-stats .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
  }
  .performance-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .performance-stats .stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
  }
  .performance-stats .stat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00556F, #00556F);
  }
  .performance-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
  }
  .performance-stats .stat-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #00556F;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  }
  .performance-stats .stat-icon svg {
    width: 32px;
    height: 32px;
  }
  .performance-stats .stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .performance-stats .stat-number {
    font-size: 30px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0rem;
    background: linear-gradient(135deg, #00556F, #00556F);
    -webkit-background-clip: text;
            background-clip: text;
  }
  .performance-stats .stat-description {
    font-size: 18px;
    color: #6b7280;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .performance-stats {
      padding: 60px 0;
    }
    .performance-stats .section-title {
      font-size: 2rem;
      text-align: center;
      margin-bottom: 2rem;
    }
    .performance-stats .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .performance-stats .stats-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .performance-stats .stat-card {
      padding: 1.5rem;
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .performance-stats .stat-number {
      font-size: 2rem;
    }
    .performance-stats .stat-description {
      font-size: 0.9rem;
    }
  }
  @media (max-width: 480px) {
    .performance-stats .container {
      padding: 0 15px;
    }
    .performance-stats .section-title {
      font-size: 25px;
      line-height: 35px;
      width: 100%;
    }
    .performance-stats .stat-card {
      padding: 1.25rem;
    }
    .performance-stats .stat-icon {
      width: 40px;
      height: 40px;
    }
    .performance-stats .stat-icon svg {
      width: 28px;
      height: 28px;
    }
    .performance-stats .stat-number {
      font-size: 25px;
    }
  }
  /* Tablet specific styles */
  @media (min-width: 769px) and (max-width: 1024px) {
    .performance-stats .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    .performance-stats .stat-card:last-child {
      grid-column: 1/-1;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  /* Animation for stats on scroll */
  @media (prefers-reduced-motion: no-preference) {
    .performance-stats .stat-card {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }
    .performance-stats .stat-card:nth-child(1) {
      animation-delay: 0.1s;
    }
    .performance-stats .stat-card:nth-child(2) {
      animation-delay: 0.3s;
    }
    .performance-stats .stat-card:nth-child(3) {
      animation-delay: 0.5s;
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Focus styles for accessibility */
  .performance-stats .stat-card:focus {
    outline: 2px solid #00556F;
    outline-offset: 2px;
  }
  
  /* Print styles */
  /* @media print {
    .performance-stats {
      background: none;
      padding: 40px 0;
    }
    .performance-stats .stat-card {
      box-shadow: none;
      border: 1px solid #ccc;
    }
    .performance-stats .stat-number {
      color: #333 !important;
      -webkit-text-fill-color: #333 !important;
    }
  } */
  /*--------------------------------------------------------------
    # new section end
    --------------------------------------------------------------*/
    .section-title-v1 h2{ 
      color: #ffffff !important;
    }

.sec-heading-l-b h2, .sec-heading-c-b h2 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 35px;
  color: #325d73;
}

.digitral-comp012 .content h3, .solutions .content label, .productservices .content h4, .contact .info .address h3, #about .content h4 {
  font-size: 16px;
  color: #325d73;
  line-height: 26px;
  text-transform: uppercase;
}

.digit-swiper-flex .m-card .m-card__header h4, .digit-swiper-flex h3, .digitral-comp012 .card-body h4, .team .member h4, .productservices .card-body h3 {
  font-size: 20px;
  color: #000000;
  line-height: 26px;
}

.digitral-comp010 .contsec01 .content p {
  font-family: "Montserrat-Regular", sans-serif;
}

.dflexcards .card .card-body h5, .success-stories label {
  font-family: "DIN-BOLD", sans-serif;
  font-weight: 500;
}

.digitral-comp010 .contsec01 .content h3, .digitral-comp010 .comp-secone p, .digitral-comp010 .comp-secone h2, .solutions h3, h2, h1,
h3,
h4,
h5,
h6, .digitral-comp012 .content h3, .solutions .content label, .productservices .content h4, .contact .info .address h3, #about .content h4, .digit-swiper-flex .m-card .m-card__header h4, .digit-swiper-flex h3, .digitral-comp012 .card-body h4, .team .member h4, .productservices .card-body h3 {
  font-family: "DIN-BOLD", sans-serif;
  font-weight: 600;
}

.digitral-comp012 .content p, .digitral-comp012 .content h2, .form-control + .error, .btn-link a {
  color: #325d73;
}

.btn-link a:hover {
  color: #24282F;
}

.sroll_top_fixed button, .ioh_footer_social_wrap .comp_info_grp p, .ioh_footer_social_wrap .ioh_h5 {
  color: #FFFFFF;
}

.digitral-comp012 .icon-boxes .icon-box, .productservices .icon-boxes .icon-box {
  background: #FFFFFF;
}

#about .content .digitral-abo-listsec h3 {
  white-space: nowrap;
  overflow: hidden;
}

.digitral-comp013 .flx-cards .flx-card p, .digitral-comp012 .card-body h4, .subbanner-slider .description, .productservices .content p, .homebanner-slider .description {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: none;
}

.productservices .card-body h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 80px;
}

.digitral-comp012 .content p, .digitral-comp009 p, #about .content ul li p, .section-title h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 145px;
}

.digit-comp001 .lf-sec-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 195px;
}

.success-stories p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: 127px;
}

.pt160px {
  padding-top: 160px;
}

.digit-comp001 .lf-sec-content h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 90px;
}

/* Assets Path */
.bg-bule-light {
  background-color: #F5FBFF;
}









@media screen and (max-width: 640px) {
  .digitral-comp012 .content p, .digitral-comp009 p, #about .content ul li p, .section-title h2 {
    max-height: 115px;
  }
}
/*mixin*/
/*global*/
@font-face {
  font-family: "DIN-Black";
  src: url("fonts/DIN-Black.woff") format("woff"), url("fonts/DIN-Black.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Bold";
  src: url("fonts/DIN-Bold.woff2") format("woff2"), url("fonts/DIN-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Medium";
  src: url("fonts/DIN-Medium.woff2") format("woff2"), url("fonts/DIN-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Light";
  src: url("fonts/DIN-Light.woff2") format("woff2"), url("fonts/DIN-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Regular";
  src: url("fonts/DIN-Regular.woff2") format("woff2"), url("fonts/DIN-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN-Light";
  src: url("fonts/DIN-Light.woff2") format("woff2"), url("fonts/DIN-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Restore-Book";
  src: url("fonts/DIN-Light.woff2") format("woff2"), url("fonts/Restore-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "RestoreW00-Book";
  src: url("fonts/RestoreW00-Book.woff2") format("woff2"), url("fonts/RestoreW00-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*new font family*/
@font-face {
  font-family: "Montserrat-Medium";
  src: url("fonts/montserrat/Montserrat-Medium.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("fonts/montserrat/Montserrat-Light.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("fonts/montserrat/Montserrat-Regular.woff2") format("woff2"), url("fonts/montserrat/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("fonts/montserrat/Montserrat-SemiBold.woff2") format("woff2"), url("fonts/montserrat/Montserrat-SemiBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*--------------------------------------------------------------
# colors
--------------------------------------------------------------*/
.steel-blue-bg {
  background: #325d73;
}

.lightsteel-blue-bg {
  background: #5E859C;
}

.powder-blue-bg {
  background: #809BAE;
}

.lightr-crimson-bg {
  background: #FF5929;
}

.white-color {
  color: #FFFFFF;
}

.ellipsis-3lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat-Regular", sans-serif;
  color: #24282F;
  font-size: 14px;
  background-color: transparent !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "kern";
}

h1,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h2 {
  font-family: "DIN-BOLD", sans-serif;
  font-weight: 700 !important;
}

.bi-x::before {
  color: #FFFFFF;
}

a {
  text-decoration: none;
  color: #0880e8;
}

a:hover {
  color: #2b99f8;
  text-decoration: none;
}

.sec-heding h2 {
  font-size: 36px;
  line-height: 35px;
}
.sec-heding h2 p {
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: normal;
  margin-top: 15px;
  line-height: 28px;
  font-size: 16px;
}

.sec-heading-c {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.sec-heading-c h2 {
  font-size: 35px;
  color: #FFFFFF;
}
.sec-heading-c p {
  color: #FFFFFF;
}

.sec-heading-c-b {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
.sec-heading-c-b h2 {
  color: #000000;
}
.sec-heading-c-b p {
  color: #000000;
}

.sec-heading-l-b {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.sec-heading-l-b h2 {
  color: #000000;
}
.sec-heading-l-b p {
  color: #000000;
}

.gradient-bg {
  background-image: linear-gradient(#F5FBFF, #FFFFFF);
}

.mr-2 {
  margin-right: 10px;
}

.text-left {
  text-align: left !important;
}

.form-control:focus {
  color: #24282F;
  background-color: #FFFFFF;
  border-color: #325d73;
  outline: 0;
  box-shadow: 0 0px 0px 0px #d5d5d5;
}

select {
  border-right: none;
  padding-right: 20px !important;
  background-image: url("../img/icons/down-arrow-icon.svg");
  background-position: right center, right center;
  background-size: 27px 11px;
  background-repeat: no-repeat;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.modal .modal-dialog {
  transform: translate3d(0, 100vh, 0);
}

.modal.in .modal-dialog {
  transform: translate3d(0, 0, 0);
}

.modal-content {
  border: 0px;
}

.modal.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
}

.video-iframe {
  width: 600px;
  height: 350px;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #325d73;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0 5px 5px -5px #d5d5d5;
  cursor: pointer;
}
.back-to-top img {
  width: 20px;
  height: 20px;
}

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

.back-to-top:hover {
  background: #325d73;
  color: #FFFFFF;
}

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

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #FFFFFF;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0880e8;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*tandc*/
.tandc-container ol li {
  list-style-type: none;
}
.tandc-container .tandc-title {
  color: #000000;
  font-weight: 600;
  margin: 10px 0px;
}

.btn-link {
  text-decoration: none;
}
.btn-link img {
  margin-left: 10px;
}
.btn-link a {
  text-decoration: none;
}
.btn-link-a {
  color: #FF5929 !important;
}

.background-blur {
  background: transparent;
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: right;
}
.background-blur img {
  width: 40px !important;
  height: 40px !important;
  margin-top: 15px;
  margin-right: 15px;
  background: transparent !important;
  opacity: 0;
  position: absolute;
  right: 0px;
  z-index: 99;
}
.background-blur:hover {
  background: rgba(12, 87, 111, 0.7);
}
.background-blur:hover img {
  opacity: 1;
  background: #000;
  border-radius: 50%;
}

.background-blur1 img {
  background: transparent !important;
}
.background-blur1:hover {
  background: transparent !important;
}

/*video section*/
video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.web-gif-icon {
  display: block;
  width: 50px;
  height: 50px;
}

.mob-svg-icon {
  display: none;
}

.subpage_banner .subheading {
  margin-top: 100px;
}
.subpage_banner img {
  width: 100%;
}

.header_subpage {
  background-color: #025872;
}

.header_subpage_white {
  background-color: #FFFFFF;
}

.end2end-container {
  position: relative;
  text-align: center;
  color: #FFFFFF;
}

.end2end-centered {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.end2end-centered h1 {
  font-size: 20px;
}
.end2end-centered p {
  font-size: 18px;
}

.techincal_collage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 0px solid red;
  height: 360px !important;
  margin-bottom: 1.5rem !important;
}
.techincal_collage img {
  position: absolute;
  border-radius: 10px;
}
.techincal_collage img:nth-child(1) {
  z-index: 1;
  width: 40%;
  left: 0px;
  box-shadow: 0 3px 4px 1px rgba(64, 60, 67, 0.16);
}
.techincal_collage img:nth-child(2) {
  z-index: 2;
  width: 45%;
  left: 15%;
  box-shadow: 0 3px 4px 1px rgba(64, 60, 67, 0.16);
}
.techincal_collage img:nth-child(3) {
  z-index: 4;
  width: auto;
}
.techincal_collage img:nth-child(4) {
  z-index: 3;
  width: auto;
}
.techincal_collage img:nth-child(5) {
  z-index: 2;
  width: 45%;
  right: 15%;
  box-shadow: 0 3px 4px 1px rgba(64, 60, 67, 0.16);
}
.techincal_collage img:nth-child(6) {
  z-index: 1;
  right: 0px;
  width: 40%;
  box-shadow: 0 3px 4px 1px rgba(64, 60, 67, 0.16);
}
.techincal_collage .center_img {
  z-index: 3;
  width: 50%;
  position: absolute;
}
.techincal_collage .center_img .center_img_overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 80%;
  height: 100%;
  z-index: 9;
  display: flex;
  justify-items: center;
  align-items: center;
  left: 10%;
  border-radius: 12px;
}
.techincal_collage .center_img .center_img_overlay img {
  width: auto;
}

.button-animate {
  border: 0px solid red;
}

.arrow-animate::after {
  display: inline-block;
  padding-left: 8px;
  transition: transform 0.3s ease-out;
}
.arrow-animate:hover::after {
  transform: translateX(4px);
}

.dig_div_hidden {
  display: none;
}

.dig_div_default:hover .dig_div_hidden {
  display: block;
  cursor: pointer;
}

.dig_div_default:hover .dig_div_default_show {
  display: none;
}

.opacity3 {
  opacity: 0.3;
}

.position_relative {
  position: relative;
}

.position_absolute {
  position: absolute;
}

.transform-custom1 {
  transform: translate(-50%, -190%) !important;
}

.transform-custom2 {
  transform: translate(-190%, -50%) !important;
}

.transform-custom3 {
  transform: translate(-50%, 136%) !important;
}

.transform-custom4 {
  transform: translate(38%, -50%) !important;
}

.d-comp-text {
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
}

.mt-60 {
  margin-top: 60px;
}

.cont_overlay {
  opacity: 0.3;
  cursor: pointer;
}
.cont_overlay:hover {
  opacity: 1;
}

.abt_link_profile {
  height: 100%;
  display: flex;
  align-items: end;
}
.abt_link_profile img {
  width: 26px;
  height: 26px;
  border-radius: 25%;
  /* border: 1px solid #EEEEEE; */
  padding: 2px;
}

.dig_brochure_comp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dig_brochure_comp .dflex-comp {
  flex: 0 0 50%;
}
.dig_brochure_comp .dflex-comp img {
  width: 70%;
  box-shadow: 0 2px 5px 1px rgba(64, 60, 67, 0.16);
}

.dig_grey_bg {
  background: #E5E5E5;
}

.mt-12 {
  margin-top: 12px;
}

.ellipsis-10lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
}

.text-lg-left {
  text-align: left !important;
}

.cursor-pointer {
  cursor: pointer;
}

.box-shadow-none {
  box-shadow: none !important;
}

#error_msg1 {
  font-weight: 14px;
  color: #FF5929;
  line-height: 20px;
}

.subbanner-back-bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.subbanner-back-bg::before .banner-text-web {
  z-index: 999;
}

.banner-dim-logo {
  width: 100%;
  margin: 0 auto;
}

.hero-banner-bg {
  background: #125172;
}
.hero-banner-bg .banner-text-web img {
  opacity: 0.5;
}
.hero-banner-bg .banner-dim-logo {
  padding: 0px 15px;
}
.hero-banner-bg .banner-dim-logo img {
  width: 65%;
}

.hero-banner-img-bg {
  background: rgba(0, 0, 0, 0.3);
}

.hero-banner-bg-white {
  padding: 60px 0px 0px 0px;
}
.hero-banner-bg-white .main-hero-banner-container {
  margin-top: 70px !important;
}
.hero-banner-bg-white .end2end-centered {
  z-index: 99;
}
.hero-banner-bg-white .sub-swiper-banner h2 {
  color: #125172 !important;
  line-height: normal;
  margin-bottom: 10px;
}
.hero-banner-bg-white p {
  color: #000 !important;
  width: 70%;
}
.hero-banner-bg-white .banner-text-web img {
  opacity: 0;
}
.hero-banner-bg-white .banner-text-mob img {
  opacity: 0;
}
.hero-banner-bg-white .banner-dim-logo {
  padding: 0px 15px;
}
.hero-banner-bg-white .banner-dim-logo img {
  width: 400px;
}
.hero-banner-bg-white .banner-bottom-img {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 300px;
  background-repeat: repeat-x;
}
.hero-banner-bg-white .banner-bimg-web {
  display: block;
}
.hero-banner-bg-white .banner-bimg-mob {
  display: none;
}
.hero-banner-bg-white .translate-middle {
  transform: translate(0%, -50%) !important;
}

.digit-ellipsis-10line {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
}

.mwc-logo {
  margin: 0px 0px 20px 0px;
}
.mwc-logo img {
  width: 400px;
}

.mobile-menu-new svg {
  width: 38px;
  height: 38px;
  fill: #FFFFFF;
}

.demo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to top, #dad4ec 0%, #dad4ec 1%, #f3e7e9 100%);
}
.demo .menu-icon {
  transform: scale(1.5);
}

:root {
  --bar-bg: #212529;
}

.menu-icon {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.menu-icon .menu-icon__cheeckbox {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  z-index: 2;
  -webkit-touch-callout: none;
  position: absolute;
  opacity: 0;
}
.menu-icon div {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 12px;
}
.menu-icon span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--bar-bg, #000);
  border-radius: 1px;
  transition: all 0.2s cubic-bezier(0.1, 0.82, 0.76, 0.965);
}
.menu-icon span:first-of-type {
  top: 0;
}
.menu-icon span:last-of-type {
  bottom: 0;
}
.menu-icon.active span:first-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:first-of-type {
  transform: rotate(45deg);
  top: 5px;
}
.menu-icon.active span:last-of-type,
.menu-icon .menu-icon__cheeckbox:checked + div span:last-of-type {
  transform: rotate(-45deg);
  bottom: 5px;
}
.menu-icon.active:hover span:first-of-type, .menu-icon.active:hover span:last-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:first-of-type, .menu-icon:hover .menu-icon__cheeckbox:checked + div span:last-of-type {
  width: 22px;
}
@media (min-width: 1024px) {
  .menu-icon:hover span:first-of-type {
    width: 26px;
  }
  .menu-icon:hover span:last-of-type {
    width: 12px;
  }
}

/*from st*/
.was-validated .form-control:invalid {
  background-color: rgba(240, 85, 85, 0.1);
}

.was-validated .form-control:invalid:focus {
  box-shadow: 0 0 0 0rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0rem rgba(25, 135, 84, 0.25);
}

/*22-09-23 st*/
.main-banner-sec-new {
  background: #E9EFF0;
  position: relative;
}
.main-banner-sec-new .end2end-centered-new {
  display: grid;
  align-items: center;
  justify-content: center;
  margin: -2% 0% 9% 0%;
}
.main-banner-sec-new .end2end-centered-new h1 {
  font-size: 20px;
}
.main-banner-sec-new .end2end-centered-new p {
  font-size: 18px;
}

/*ka-25-09-23*/
.min-wm-auto {
  min-height: 600px;
}

/*28-09-23 st*/
.line-animation-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  justify-content: space-evenly;
}
.line-animation-wrap .line-anim {
  height: 100%;
  border-left: 1px solid #D8E3E5;
  width: 1px;
  position: relative;
}
.line-animation-wrap .line-anim::before {
  content: "";
  position: absolute;
  top: 2%;
  left: 0px;
  height: 60px;
  width: 1px;
}
.line-animation-wrap .line-anim.up-line-anim::before {
  animation: up-line ease-in-out infinite;
  background: rgb(0, 85, 111);
  background: linear-gradient(0deg, rgb(0, 85, 111) 0%, rgba(0, 85, 111, 0) 100%);
}
.line-animation-wrap .line-anim.down-line-anim::before {
  top: initial;
  bottom: 2%;
  animation: down-line ease-in-out infinite;
  background: rgb(0, 85, 111);
  background: linear-gradient(0deg, rgba(0, 85, 111, 0) 0%, rgb(0, 85, 111) 100%);
}
.line-animation-wrap .line-anim:nth-child(1)::before {
  animation-duration: 3.5s;
}
.line-animation-wrap .line-anim:nth-child(2)::before {
  animation-duration: 2.8s;
}
.line-animation-wrap .line-anim:nth-child(3)::before {
  animation-duration: 3.2s;
}
.line-animation-wrap .line-anim:nth-child(4)::before {
  animation-duration: 3s;
}
.line-animation-wrap .line-anim:nth-child(5)::before {
  animation-duration: 2.6s;
}
.line-animation-wrap .line-anim:nth-child(6)::before {
  animation-duration: 3.6s;
}
.line-animation-wrap .line-anim:nth-child(7)::before {
  animation-duration: 2.7s;
}

@keyframes up-line {
  100% {
    top: 90%;
  }
}
@keyframes down-line {
  100% {
    bottom: 90%;
  }
}
/*ai banner st*/
.dbtn-link {
  background: transparent !important;
  position: relative;
  overflow: hidden;
  border-radius: 0px 50px 50px 0px;
  display: block;
  color: #ffffff !important;
}

.main-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ai-banner-cont {
  text-align: left;
}
.ai-banner-cont h2 {
  text-align: left !important;
}

.banner-content {
  flex: 1;
  max-width: 100%;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 50px;
}

.banner-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.banner-buttons button {
  padding: 8px;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.banner-buttons button.active {
  background: transparent;
  color: white;
}

.banner-buttons a {
  color: #fff !important;
}

.tab-content {
  display: none;
  padding: 10px;
  background: #e9ecef;
  border-radius: 5px;
  margin-top: 10px;
}

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

.banner-image {
  flex: 1;
  max-width: 50%;
}

.banner-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .main-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-content,
  .banner-image {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .banner-image {
    display: none;
  }
  .banner-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .ai-banner-cont {
    text-align: center;
  }
  .ai-banner-cont h2 {
    text-align: center !important;
  }
}
/*ai banner end*/
@media screen and (max-width: 1024px) {
  .transform-custom1 {
    transform: translate(-50%, -191%) !important;
  }
  .transform-custom2 {
    transform: translate(-122%, 109%) !important;
  }
  .transform-custom3 {
    transform: translate(-50%, 140%) !important;
  }
  .transform-custom4 {
    transform: translate(0%, 87%) !important;
  }
  .transform-custom5 {
    transform: translate(-80%, -92%) !important;
  }
  .mdigbanner-res {
    height: 400px !important;
  }
}
.d-comp-text {
  font-size: 16px;
}

@media screen and (max-width: 992px) {
  .text-md-center {
    text-align: center !important;
  }
  .mt-60 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  body {
    font-family: "Montserrat-Regular", sans-serif;
    color: #24282F;
    font-size: 14px;
    background-color: transparent !important;
  }
  .transform-custom1 {
    transform: translate(-50%, -190%) !important;
  }
  .transform-custom2 {
    transform: translate(-123%, 109%) !important;
  }
  .transform-custom3 {
    transform: translate(-50%, 135%) !important;
  }
  .transform-custom4 {
    transform: translate(-13%, 100%) !important;
  }
  .transform-custom5 {
    transform: translate(-80%, -92%) !important;
  }
  .hero-banner-bg-white .main-hero-banner-container {
    height: 340px;
  }
  .hero-banner-bg-white .sub-swiper-banner h2 {
    font-size: 25px;
    width: 350px;
  }
  .hero-banner-bg-white .banner-dim-logo img {
    width: 300px;
  }
  .mwc-logo {
    margin: 10px 0px 20px 0px;
  }
  .mwc-logo img {
    width: 300px;
  }
  /*ka-25-09-23*/
  .min-wm-auto {
    min-height: 350px;
  }
  .line-animation-wrap {
    justify-content: space-around;
  }
  .line-animation-wrap .line-anim:nth-child(2) {
    display: none;
  }
  .line-animation-wrap .line-anim:nth-child(3) {
    display: none;
  }
  .line-animation-wrap .line-anim:nth-child(7) {
    display: none;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
  min-height: 150px;
}

.section-title {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title h2 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 39px;
  padding-bottom: 0;
  color: #24282F;
  margin: 0px;
}

.section-title p {
  margin-bottom: 0;
  margin-top: 0px;
}

.section-small-title h3 {
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  line-height: 26px;
  margin-bottom: 10px;
  font-size: 18px;
}

.form-control.error {
  border-color: #325d73;
}
.form-control.valid {
  border-color: #198754;
}
.form-control + .error {
  width: 100%;
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875em;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  display: inline-block;
  vertical-align: text-top;
  width: 30px;
  height: 20px;
  border: 1px solid #24282F;
  margin: 6px 10px 20px 4px;
  border-radius: 4px;
}
.styled-checkbox:checked + label:before {
  background: #325d73;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

/* Animation */
.checkmark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4bb71b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb71b;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
  top: 5px;
  right: 5px;
  margin: 0 auto;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4bb71b;
  fill: #FFFFFF;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #4bb71b;
  }
}
.mouse {
  cursor: pointer;
  transition: 0.1s ease-in-out;
  width: 2rem;
  height: 3.5rem;
  border-radius: 1.1rem;
  border: 2px solid white;
  position: absolute;
  text-align: center;
  left: 49%;
  right: 50%;
  top: 86%;
  bottom: 13%;
  z-index: 99;
}

.mouse:hover {
  filter: opacity(0.75);
}

.slider {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.75) 100%);
  position: absolute;
  left: 38%;
  animation: slider 2s ease-in-out infinite;
}

@keyframes slider {
  0% {
    filter: opacity(1);
    height: 0.5rem;
    top: 0.5rem;
  }
  25% {
    filter: opacity(0.8);
    height: 1rem;
    top: 0.5rem;
  }
  70% {
    filter: opacity(0.8);
    height: 1rem;
    top: 2rem;
  }
  85% {
    filter: opacity(0);
    height: 1rem;
    top: 2rem;
  }
  90% {
    filter: opacity(0);
    height: 0.5rem;
    top: 0.5rem;
  }
  100% {
    filter: opacity(1);
    height: 0.5rem;
    top: 0.5rem;
  }
}
.flex_grp_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination-bullet {
  padding: 4px 10px;
  border-radius: 0;
  width: auto;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: transparent;
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: transparent;
}

.mh-100 {
  min-height: 100px;
}

@media (max-width: 1440px) {
  .techincal_collage {
    height: 350px !important;
  }
}
@media (max-width: 1024px) {
  .section-title {
    padding-bottom: 0px;
  }
  .contact .swiper-button-next {
    right: 28%;
  }
  .contact .swiper-button-prev {
    left: 30%;
  }
  .techincal_collage {
    height: 280px !important;
  }
}
@media (max-width: 768px) {
  .mouse {
    display: none;
  }
  .sec-heading-c {
    width: 90%;
  }
  .sec-heading-c-b {
    width: 90%;
  }
  .techincal_collage {
    height: 210px !important;
  }
}
@media (max-width: 640px) {
  section {
    padding: 40px 0;
    min-height: auto;
  }
  .section-title {
    padding-bottom: 0px;
    text-align: center !important;
  }
  .section-title h2 {
    font-size: 25px;
    text-align: center;
    max-height: 150px;
    margin-bottom: 20px;
    line-height: 32px;
  }
  .styled-checkbox + label:before {
    width: 60px;
    height: 22px;
  }
  .btn-overlay {
    margin: 0 auto;
    width: 50px;
    height: 50px;
  }
  .sec-heading-c {
    width: 100%;
  }
  .sec-heading-c-b {
    width: 100%;
  }
  .web-gif-icon {
    display: none;
  }
  .mob-svg-icon {
    display: block;
    width: 50px;
    height: 50px;
  }
  .mres_b_30 {
    padding-bottom: 5px;
  }
  .dig_brochure_comp {
    display: block;
  }
  .dig_brochure_comp .dflex-comp {
    flex: 0 0 100%;
  }
  .dig_brochure_comp .dflex-comp img {
    width: 100%;
  }
  .techincal_collage {
    height: 170px !important;
  }
  .techincal_collage img:nth-child(1) {
    z-index: 1;
    width: 40%;
    left: 0px;
    display: none;
  }
  .techincal_collage img:nth-child(2) {
    z-index: 2;
    width: 45%;
    left: 15%;
    display: none;
  }
  .techincal_collage img:nth-child(3) {
    z-index: 4;
    width: auto;
  }
  .techincal_collage img:nth-child(4) {
    z-index: 3;
    width: auto;
    display: none;
  }
  .techincal_collage img:nth-child(5) {
    z-index: 2;
    width: 45%;
    right: 15%;
    display: none;
  }
  .techincal_collage img:nth-child(6) {
    z-index: 1;
    right: 0px;
    width: 40%;
    display: none;
  }
  .techincal_collage .center_img {
    width: 100%;
  }
  .techincal_collage .center_img .center_img_overlay img {
    border: 0px solid red;
  }
  .hero-banner-bg-white .main-hero-banner-container {
    height: 100%;
  }
  .hero-banner-bg-white .banner-bimg-web {
    display: none;
  }
  .hero-banner-bg-white .banner-bimg-mob {
    display: block;
  }
  .end2end-centered {
    top: 35%;
  }
}
.btn-overlay, .btn-secondarybtn, .btn-bounce {
  font-family: "Montserrat-Medium", sans-serif;
  border: none;
  display: block;
  width: auto;
  padding: 0px 5px 0px 30px;
  color: #f5f5f5;
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 0.27em;
  height: 60px;
  font-size: 20px;
  letter-spacing: 1px;
}
.btn-overlay:focus, .btn-secondarybtn:focus, .btn-bounce:focus {
  outline: none;
}

.btn-bounce {
  background: #f5f5f5;
  color: #222;
}
.btn-bounce:hover {
  animation: bounce 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn .sec-heading-c {
  text-align: center;
}
.btn .sec-heading-c h2 {
  font-size: 35px;
}
.btn-secondarybtn {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-radius: 0px 50px 50px 0px;
  display: block;
}
.btn-secondarybtn::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 200px;
  background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(255, 89, 41) 40%);
  transform: translateY(-45%) skew(25deg) scale(0);
  left: -5%;
  transition: 200ms ease-in-out;
  opacity: 0.2;
  z-index: 0;
}
.btn-secondarybtn:hover:after {
  transform: translateY(-45%) skew(25deg) scale(1);
}
.btn-secondarybtn span {
  color: #325d73 !important;
  position: relative;
  z-index: 1;
  display: flex;
  line-height: 35px;
  min-width: 160px;
  justify-content: space-between;
  align-items: center;
}
.btn-secondarybtn span img {
  height: 50px;
  margin-left: 20px;
}
.btn-overlay {
  background: #325d73;
  position: relative;
  overflow: hidden;
  border-radius: 0px 50px 50px 0px;
  display: block;
}
.btn-overlay::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 200px;
  background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(255, 89, 41) 40%);
  transform: translateY(-45%) skew(25deg) scale(0);
  left: -5%;
  transition: 200ms ease-in-out;
  z-index: 0;
}
.btn-overlay:hover:after {
  transform: translateY(-45%) skew(25deg) scale(1);
}
.btn-overlay span {
  color: #FFFFFF !important;
  position: relative;
  z-index: 1;
  display: flex;
  line-height: 35px;
  min-width: 160px;
  justify-content: space-between;
  align-items: center;
}
.btn-overlay span img {
  height: 50px;
  width: 50px;
  margin-left: 20px;
}

/*button overlay*/
@keyframes glowIn {
  from {
    background-position: -1000px;
  }
  to {
    background-position: 1000px;
  }
}
@keyframes bounce {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes shake {
  from {
    transform: rotate(5deg);
  }
  to {
    transform: rotate(0);
  }
}
.modal-dialog {
  max-width: 800px;
  margin: 0 auto;
}

.getstart-popup .modal-content {
  background: transparent;
  border: 0px;
}

.getstart-popup .modal-body {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
}

.getstart-popup .modal-header {
  border: 0px solid #ddd;
  padding: 0px 10px 10px 10px !important;
}

.btn-close {
  opacity: 1 !important;
  margin: 10px 0px !important;
  background: transparent;
}

.videodemo-popup .modal-content {
  background: transparent;
  border-radius: 8px;
}

.videodemo-popup .modal-body {
  background: #FFFFFF;
  padding: 4px;
  border-radius: 4px;
}

.videodemo-popup .modal-header {
  border: 0px solid #ddd;
  padding: 0px 10px 10px 10px !important;
}

.demo-popupleft-img {
  background: url(../img/demo-popup-img.webp);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: left 5% bottom -25%;
  background-size: 250px 250px;
}

.mobilemenu-bg {
  background: transparent;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: left 5% bottom -25%;
  background-size: 0px 0px;
}

.digi-mob-logo img {
  width: 180px;
  display: none;
}

.mobile-callusbtn {
  margin-right: 60px;
  display: none;
}

.menu_shown .menu__icon span {
  background: transparent;
}

.menu_shown .menu__icon:before {
  top: 50%;
  transform: rotate(45deg);
}

.menu_shown .menu__icon:after {
  bottom: 50%;
  transform: rotate(-45deg);
}

.mobile.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  text-align: center;
  padding-top: 112px;
  background: #7eb4e2;
  z-index: 10;
  transition: all 0.4s ease-in-out;
  transform: translateX(-100%);
}

.menu_shown .mobile.menu {
  transform: translateX(0);
}

@media (max-width: 691px) {
  .container {
    max-width: 100% !important;
  }
}
@media (max-width: 640px) {
  .res-mt15 {
    margin-top: 25px;
  }
  .demo-popupleft-img {
    background: #FFFFFF;
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: left 5% bottom -25%;
    background-size: 0px 0px;
  }
  .modal-dialog {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
  }
  .mobilemenu-bg {
    background: url(../img/background-bg.svg);
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: left 5% bottom 25%;
    background-size: 250px 250px;
  }
  .styled-checkbox:checked + label:after {
    left: 9px;
    top: 16px;
  }
  .video-iframe {
    width: 450px;
    height: 250px;
  }
  /*mobile button sec*/
  .btn-secondarybtn {
    font-size: 18px;
    background-position: -100px;
    background-image: linear-gradient(60deg, rgba(225, 255, 225, 0.5) 0%, rgba(223, 223, 255, 0.5) 50%, rgba(225, 225, 225, 0.5) 100%);
    animation: glowIn 15s ease infinite;
  }
  .btn-overlay {
    font-size: 18px;
    background-position: -100px;
    background-image: linear-gradient(60deg, rgba(0, 85, 111, 0.5) 0%, rgba(0, 151, 162, 0.5) 50%, rgba(0, 85, 111, 0.5) 100%);
    animation: glowIn 15s ease infinite;
  }
  .mobile-callusbtn {
    margin-right: 60px;
    display: block;
    float: right;
  }
  .mobile-callusbtn a {
    color: #fff;
  }
  #header.header-scrolled .navbar.active {
    border-bottom: 1px solid #000 !important;
  }
  a:hover {
    border-bottom: 1px solid #000;
  }
  a.active {
    border-bottom: 1px solid #000;
  }
  .mobile-nav-toggle .mobile-callusbtn {
    margin-right: 60px;
    display: block;
    float: right;
  }
  .mobile-nav-toggle .mobile-callusbtn a {
    color: #000;
  }
  .mobile-nav-toggle .mobile-callusbtn a:hover {
    border-bottom: 1px solid #000;
  }
  .mobile-nav-toggle .mobile-callusbtn a.active {
    border-bottom: 1px solid #000;
  }
  .mt4-mob {
    margin-top: 1.5rem !important;
  }
  .digi-mob-logo img {
    /* width: 60px; */
    width: 120px;
    display: block;
    /* margin-left: 20px; */
    margin: 10px 0px 10px 20px;
  }
}
.subheading_banner001 {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .lf-sec-content {
    text-align: center;
  }
  .sec-heading-c h2 {
    margin-bottom: 20px;
  }
  .video-playbtn {
    width: 60px;
  }
  .subheading_banner001 {
    width: 85%;
    margin: 0 auto;
  }
  .hero-banner-bg-white .sub-swiper-banner h2 {
    width: 300px;
  }
  .min-bannermob-height {
    height: 350px;
  }
  .hero-banner-bg-white .main-hero-banner-container {
    margin-top: 90px !important;
  }
  .main-banner-sec-new .end2end-centered-new {
    padding: 0px !important;
    margin: -2% 0% 40% 0%;
  }
  .digi-mob-logo img {
    width: 70px;
  }
}
@media (max-width: 426px) {
  .video-iframe {
    width: 100% !important;
    height: 250px;
  }
}
@media (max-width: 320px) {
  .section-title h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 30px;
  }
  .styled-checkbox + label:before {
    width: 65px;
    height: 20px;
  }
  .styled-checkbox:checked + label:after {
    left: 8px;
    top: 16px;
  }
}
@media screen and (max-width: 320px) {
  .hero-banner-bg-white .banner-dim-logo img {
    width: 250px;
    margin-top: 20px;
  }
  .mwc-logo {
    margin: 0px 0px 20px 0px;
  }
  .mwc-logo img {
    width: 280px;
  }
  .hero-banner-bg-white .sub-swiper-banner h2 {
    width: 280px;
  }
}
/*global*/
/*right side*/
.bg-icon-lt-r {
  background: url(../img/background-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: left 5% top 0%;
}

.bg-icon-lb-r {
  background: url(../img/background-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: left 5% bottom 0%;
}

.bg-icon-rt-r {
  background: url(../img/background-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: right 5% top 0%;
}

.bg-icon-rb-r {
  background: url(../img/background-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: right 5% bottom 0%;
}

/*left side*/
.bg-icon-lt-l {
  background: url(../img/products-services-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: left 5% top 0%;
}

.bg-icon-lb-l {
  background: url(../img/products-services-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: left 5% bottom 0%;
}

.bg-icon-rt-l {
  background: url(../img/products-services-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: right 5% top 0%;
}

.bg-icon-rb-l {
  background: url(../img/products-services-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: 150px 150px;
  background-position: right 5% bottom 0%;
}

.bg-skblu {
  background-color: #0097A6;
}

.bg-skblu-light {
  background-color: #F5FBFF;
}

.bg-grey-gradient {
  background: linear-gradient(to bottom right, #C8C8CA, #F5F5F5);
}

/*digi-header*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 0px;
}

#header.header-scrolled {
  top: 0;
  height: 60px;
  background: rgba(225, 225, 225, 0.3);
  transition: opacity 0.15s linear;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
}

#header.header-scrolled .mobile-nav-toggle {
  color: #325d73;
}
#header.header-scrolled .mobile-nav-toggle svg {
  fill: #325d73;
}

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

#header .logo a {
  color: #FFFFFF;
}
#header .logo img {
  max-height: 50px;
  /*width: 80px;*/
  /* width: 220px; */
  height: 60px;
}

#header.header-scrolled a {
  color: #24282F !important;
}

#header .header-scrolled a:hover, #header.header-scrolled .active {
  border-bottom: 2px solid #24282F !important;
}

/*logos*/
.weblogoimg {
  display: block;
}

.scroll-logoimg {
  display: none;
}

#header.header-scrolled .scroll-logoimg {
  display: block;
  padding-right: 10px;
  width: 70px;
  height: 60px;
}

#header.header-scrolled .weblogoimg {
  display: none;
}

@media (max-width: 768px) {
  #header .logo {
    padding: 7px 0px;
  }
}
@media (max-width: 640px) {
  #header .logo img {
    /* width: 220px !important; */
    width: auto;
    height: auto;
    max-height: 40px;
  }
  #header.header-scrolled .scroll-logoimg {
    width: auto;
    height: auto;
  }
}
/*digi-navigation*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-link {
  color: #FFFFFF;
}

.navbar {
  padding: 0;
  display: block;
  float: right;
}

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a, .navbar a:focus {
  font-family: "Montserrat-Medium", sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar1 a, .navbar a:focus {
  color: #24282F;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.5s ease 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
}

.navbar1 a:hover, .navbar1 .active, .navbar1 .active:focus, .navbar1 li:hover > a {
  color: #24282F !important;
  border-bottom: 2px solid #24282F;
}

.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: #FFFFFF;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

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

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

.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;
}

.digitral-navbar {
  width: 100%;
  position: relative;
}

.menu-officeadd {
  display: none;
}

/*new mobile menu st*/
.fullscreen-header .box {
  position: relative;
  padding: 3px 0px;
}

.fullscreen-header .btn {
  position: relative;
  width: 45px;
  cursor: pointer;
  padding-right: 0px;
}

.fullscreen-header span {
  display: block;
  width: 100%;
  border-radius: 3px;
  height: 3px;
  background: #fff;
  transition: all 0.3s;
  position: relative;
}

.fullscreen-header span + span {
  margin-top: 6px;
}

.fullscreen-header .active span:nth-child(1) {
  animation: ease 0.7s top forwards;
}

.fullscreen-header .not-active span:nth-child(1) {
  animation: ease 0.7s top-2 forwards;
}

.fullscreen-header .active span:nth-child(2) {
  animation: ease 0.7s scaled forwards;
}

.fullscreen-header .not-active span:nth-child(2) {
  animation: ease 0.7s scaled-2 forwards;
}

.fullscreen-header .active span:nth-child(3) {
  animation: ease 0.7s bottom forwards;
}

.fullscreen-header .not-active span:nth-child(3) {
  animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 22px;
    transform: rotate(0);
  }
  100% {
    top: 22px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 22px;
    transform: rotate(45deg);
  }
  50% {
    top: 22px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 22px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 22px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 22px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
#header.header-scrolled .box .active {
  border-bottom: 0px solid #24282F !important;
}
#header.header-scrolled .box .active span {
  background: #fff !important;
}
#header.header-scrolled span {
  background: #325d73 !important;
}

.bi-x .box .active {
  border-bottom: 0px solid #24282F !important;
}
.bi-x .box .active span {
  background: #fff !important;
}
.bi-x .box span {
  background: #325d73 !important;
}
.bi-x span + span {
  margin-top: 19px !important;
}

/*new mobile menu end*/
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
@media (max-width: 640px) {
  .menu-officeadd {
    display: block;
  }
}
/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #325d73;
  font-size: 38px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: absolute;
  z-index: 999;
  right: 0px;
  top: -20px;
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .navbar {
    position: fixed;
    transform: translateX(-360px);
    transition: transform 360ms ease-in-out;
    transition: 0.3s;
  }
  .navbar.navbar-mobile {
    transform: translateX(0%);
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
}

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

.navbar-mobile ul::before {
  left: -333px !important;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 15px;
  bottom: 0px;
  left: 0px;
  padding: 7px 0;
  border-radius: 0px;
  background-color: #FFFFFF;
  overflow-y: auto;
  transition: all 0.5s;
  -webkit-transition: all 0.25s;
  width: 85%;
  background: #ffffff url(../img/background-bg.svg);
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: left 5% bottom 0%;
  background-size: 100px 100px;
}
.navbar-mobile ul .digi-mob-logo {
  padding-bottom: 7px !important;
  box-shadow: 0 5px 5px -5px #d5d5d5;
}
.navbar-mobile ul a:focus {
  color: #000;
}
.navbar-mobile ul .navbar .active:focus {
  color: #000 !important;
}

.mobilemenu-bg .navbar a, .mobilemenu-bg .navbar a:focus {
  color: #000;
}
.mobilemenu-bg .navbar .active, .mobilemenu-bg .navbar .active:focus {
  color: #000 !important;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a {
  padding: 15px 20px;
  color: #24282F;
  border-bottom: 1px solid #ccc;
}

.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #325d73;
  border-bottom: 1px solid #032e54 !important;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #FFFFFF;
  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: 16px;
}

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

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

/*digi-abotus*/
/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
#about .about-img {
  overflow: hidden;
}
#about .about-img img {
  max-width: 91%;
  width: 497px;
  height: 524px;
}
#about .content span {
  color: #325d73;
}
#about .content ul {
  list-style: none;
  padding: 0;
}
#about .content ul li {
  padding-bottom: 10px;
}
#about .content .digitral-abo-listsec {
  display: flex;
}
#about .content .digitral-abo-listsec h3 {
  font-family: "DIN-BOLD", sans-serif;
  color: #24282F;
  font-size: 20px;
  padding-left: 2px;
}
#about .content .digitral-abo-listsec .digitral-abo-img {
  margin-right: 15px;
}
#about .abo-web-btn {
  display: block;
}
#about .abo-mob-btn {
  display: none;
}

@media (max-width: 768px) {
  .about-img {
    height: auto;
    text-align: center;
  }
  .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
  .about button {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  #about {
    text-align: center;
  }
  #about .about-img img {
    max-width: 100%;
    margin: 0px;
    width: 100%;
    height: 100%;
  }
  #about .content ul li {
    padding-bottom: 5px;
  }
  #about .content ul p {
    text-align: left;
  }
  #about .content .digitral-abo-listsec {
    display: block;
  }
  #about .content .digitral-abo-listsec h4 {
    text-align: center;
  }
  #about .content .digitral-abo-listsec p {
    text-align: center;
    margin: 0px;
    line-height: 20px;
  }
  #about .content .digitral-abo-listsec .digitral-abo-img {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  #about .content .digitral-abo-listsec h3 {
    font-size: 18px;
  }
  #about .abo-web-btn {
    display: none;
  }
  #about .abo-mob-btn {
    display: block;
  }
}
/*digi-partners*/
/*--------------------------------------------------------------
# swiper-banner Section
--------------------------------------------------------------*/
.swiper-banner .home-banner-web {
  width: 100%;
}

.swiper-banner .home-banner-mob {
  width: 100%;
  display: none;
}

.hear-banner-cont {
  height: 210px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.swiper-banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 99;
  transition: 0.3s;
  cursor: pointer;
}

.swiper-banner:before {
  content: "";
  background: rgba(6, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.swiper-banner .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgba(6, 0, 0, 0.6);
  min-height: 400px;
}

.swiper-banner h2 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 60px;
  width: 90%;
  margin: 0 auto;
  line-height: 60px;
  padding-bottom: 20px;
}

.swiper-banner p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #FFFFFF;
}

.swiper-banner .carousel-control-prev, .swiper-banner .carousel-control-next {
  width: 10%;
}

.swiper-banner .carousel-control-next-icon, .swiper-banner .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

/*arrows*/
.swiper-banner .bx-chevron-right:before {
  transition: 0.5s ease-in-out;
}

.swiper-banner .bx-chevron-left:before {
  transition: 0.5s ease-in-out;
}

.homebanner-slider .swiper-button-prev {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-next {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-prev:hover {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-next:hover {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .description {
  font-size: 18px;
}

@keyframes bx-chevron-right {
  from {
    top: 0;
    left: 0;
  }
  to {
    top: 100px;
    left: 100px;
  }
}
.banner-text-web {
  display: block;
}

.banner-text-mob {
  display: none;
}

@media (max-width: 1024px) {
  .swiper-banner {
    width: 100%;
    height: 80vh;
  }
  .swiper-banner h2 {
    width: 95%;
  }
  .swiper-banner p {
    width: 80%;
  }
  .swiper-banner .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px) {
  .swiper-banner {
    height: 100%;
    padding: 0px 0px 0px 0px;
  }
  .swiper-banner h2 {
    font-size: 37px;
    padding: 0px 10px;
    line-height: 40px;
  }
  .swiper-banner .carousel-container {
    min-height: 350px;
  }
  .hear-banner-cont {
    width: 90%;
    height: 200px;
  }
  .contact .info p {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .swiper-banner .home-banner-web {
    width: 100%;
    display: none;
  }
  .swiper-banner .home-banner-mob {
    width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .banner-text-web {
    display: none;
  }
  .banner-text-mob {
    display: block;
  }
  .end2end-centered {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .swiper-banner .carousel-container {
    min-height: 400px;
  }
  .swiper-banner h2 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 0px !important;
  }
  .hear-banner-cont {
    width: 90%;
    height: 200px;
  }
}
@media (max-width: 425px) {
  .hear-banner-cont {
    height: 190px;
  }
}
@media (max-width: 320px) {
  .swiper-banner .carousel-container {
    min-height: 360px;
  }
  .swiper-banner h2 {
    font-size: 25px;
    line-height: 30px;
    padding-bottom: 0px !important;
  }
  .hear-banner-cont {
    height: 170px;
  }
}
/*digi-contact*/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  position: relative;
}
.contact .section-title {
  text-align: center;
}
.contact .section-title p {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}
.contact label {
  margin-bottom: 5px;
}
.contact .contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.contact .container {
  position: relative;
}
.contact .info {
  background-image: url("../img/background-bg2.svg");
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: left bottom;
  background-color: #325d73;
  width: 100%;
  padding: 80px 70px 30px 70px;
  border-radius: 0px;
  text-align: center;
}
.contact .info .dsocialicons {
  width: 80%;
  padding: 50px 0px 95px 45px;
  margin: 0 auto;
}
.contact .info .dsocialicons img {
  width: 20px;
  height: 20px;
}
.contact .info h2 {
  font-size: 30px;
  margin-bottom: 5px;
  color: #FFFFFF;
  font-weight: 700;
}
.contact .info h4 {
  margin-bottom: 5px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
}
.contact .info .address {
  vertical-align: top;
}
.contact .info .address p {
  min-height: 85px;
  font-size: 16px;
}
.contact .info .address h3 {
  margin-bottom: 5px;
  color: #FFFFFF;
  font-size: 18px;
}
.contact .info p {
  margin-bottom: 0px;
  color: #C0C0C8;
}
.contact .cont-icons {
  width: 18px;
  margin-right: 5px;
}
.contact .email p {
  font-size: 14px;
  text-align: left;
}
.contact .email p a {
  color: #C0C0C8;
}
.contact .email p a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.contact .phone p {
  text-align: left;
}
.contact .phone p a {
  color: #C0C0C8;
}
.contact .phone p a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

#contact_form {
  width: 95%;
  margin: 20px auto 27px;
}

#contact_form span {
  color: #ed1c24;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*swiper slider*/
.contact .swiper-button-next {
  background: #f2f2f2;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: 5%;
  top: inherit;
  right: 32%;
  left: auto;
  position: inherit;
  float: right;
  margin: 30px 0px;
}

.contact .swiper-button-next:hover {
  background-color: #325d73;
}

.contact .swiper-button-next:hover:after, .swiper-button-prev:after {
  content: url("../img/icons/right-arrow-white-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
  height: 20px;
  width: 20px;
}

.contact .swiper-button-prev {
  background: #FFFFFF;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: -15%;
  top: inherit;
  left: 32%;
  right: auto;
  position: relative;
  margin: 30px 0px;
}

.contact .swiper-button-prev:hover {
  background: #325d73;
}

.contact .swiper-button-next:after, .swiper-button-prev:after {
  content: url("../img/icons/right-blue-arrow-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
}

.contact .swiper-button-prev:after, .swiper-button-next:after {
  content: url("../img/icons/left-blue-arrow-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
}

.contact .swiper-button-prev:hover:after, .swiper-button-next:after {
  content: url("../img/icons/left-arrow-white-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
}

.fb-icon a {
  border-radius: 30px;
  padding: 6px 8px 10px 8px;
}
.fb-icon a:hover {
  background: #0097A6;
  border-radius: 30px;
}

.tw-icon a {
  border-radius: 30px;
  padding: 8px 8px 10px 8px;
}
.tw-icon a:hover {
  background: #0097A6;
  border-radius: 30px;
}

.linkedin-icon a {
  border-radius: 30px;
  padding: 6px 8px 10px 8px;
}
.linkedin-icon a:hover {
  background: #0097A6;
  border-radius: 30px;
}

.youtube-icon a {
  border-radius: 30px;
  padding: 8px 8px 10px 8px;
}
.youtube-icon a:hover {
  background: #0097A6;
  border-radius: 30px;
}

/*swiper slider products*/
.contactprod .swiper-button-next {
  background: #005671;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: 4%;
  top: inherit;
  right: 40%;
  left: auto;
  position: relative;
  float: right;
  margin: 27px 0px 0px 0px;
}

.contactprod .swiper-button-next:hover {
  background-color: #FFFFFF;
}

.contactprod .swiper-button-next:hover:after, .swiper-button-prev:after {
  content: url("../img/icons/right-blue-arrow-icon.svg");
  font-size: 25px;
  color: #325d73;
}

.contactprod .swiper-button-prev {
  background: #005671;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: 4%;
  top: inherit;
  left: 40%;
  right: auto;
  position: absolute;
  margin: -14px 0px;
}

.contactprod .swiper-button-prev:hover {
  background: #FFFFFF;
}

.contactprod .swiper-button-next:after, .swiper-button-prev:after {
  content: url("../img/icons/right-arrow-white-icon.svg");
  font-size: 25px;
  color: #325d73;
}

.contactprod .swiper-button-prev:after, .swiper-button-next:after {
  content: url("../img/icons/left-arrow-white-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
}

.contactprod .swiper-button-prev:hover:after, .swiper-button-next:after {
  content: url("../img/icons/left-blue-arrow-icon.svg");
  font-size: 25px;
  color: #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .contact .swiper-button-prev {
    left: 22%;
  }
  .contact .swiper-button-next {
    right: 22%;
  }
}
@media screen and (max-width: 992px) {
  .contactprod .swiper-button-next {
    right: 30%;
  }
  .contact .swiper-button-prev {
    left: 39%;
  }
  .contact .swiper-button-next {
    right: 39%;
  }
}
@media screen and (max-width: 769px) {
  .contact .swiper-button-prev {
    left: 40%;
  }
  .contact .swiper-button-next {
    right: 40%;
  }
  .contact button {
    margin: 0 auto;
  }
  .contactprod .swiper-button-prev {
    display: none;
  }
  .contactprod .swiper-button-next {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .contact .swiper-button-prev {
    left: 35%;
  }
  .contact .swiper-button-next {
    right: 35%;
  }
  .contact .info .dsocialicons {
    width: 80%;
    padding: 50px 0px 95px 0px;
  }
}
/*  @media */
@media screen and (max-width: 426px) {
  #contact_form {
    margin: 0px auto 20px;
  }
  #contact_form .cont-btnrow {
    text-align: center;
  }
  .contact .section-title p {
    width: 100%;
  }
  .contact .info {
    padding: 40px 20px 40px 20px;
    margin-top: 40px;
  }
  .contact .info p {
    width: 85% !important;
  }
  .contact .swiper-button-prev {
    left: 34%;
  }
  .contact .swiper-button-next {
    right: 34%;
  }
}
@media screen and (max-width: 360px) {
  .contact .swiper-button-prev {
    left: 33%;
  }
  .contact .swiper-button-next {
    right: 33%;
  }
}
@media screen and (max-width: 320px) {
  .contact .swiper-button-prev {
    left: 30%;
  }
  .contact .swiper-button-next {
    right: 30%;
  }
}
/*digi-footer*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #24282F;
  padding: 0 0 30px 0;
  color: #FFFFFF;
}
#footer .footersec {
  display: flex;
  justify-content: space-between;
}
#footer .footersec .copyright {
  text-align: left;
  padding-top: 30px;
}
#footer .footersec .copyright a {
  color: #FFFFFF;
}
#footer .footersec .copyright a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
#footer .footersec span {
  margin: 0px 15px;
}

@media screen and (max-width: 640px) {
  #footer {
    margin-top: 10px;
    padding: 5px 0 20px 0;
  }
  #footer .footersec {
    display: block;
    justify-content: space-between;
  }
  #footer .footersec .copyright {
    text-align: center !important;
    width: 100%;
    padding-top: 10px;
    font-size: 12px !important;
  }
}
/*digi-success*/
/*--------------------------------------------------------------
# Our Success Stories
--------------------------------------------------------------*/
.success-stories {
  background: url("../img/sucess-stores-bg.png") top right;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: right bottom;
  background-size: 915px;
}
.success-stories label {
  color: #24282F;
}

.success-stories .swiper-button-next {
  background: #325d73;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: -10%;
  top: inherit;
  right: 0px;
  left: 58px;
  position: inherit;
  margin: 30px 0px;
  float: left;
}

.success-stories .swiper-button-next:hover {
  background: #325d73;
}

.success-stories .swiper-button-prev {
  background: #325d73;
  padding: 5px 22px;
  border-radius: 50%;
  bottom: -10%;
  top: inherit;
  left: -43px;
  right: auto;
  position: inherit;
  margin: 30px 0px;
  float: left;
}

.success-stories .swiper-button-prev:hover {
  background: #325d73;
}

.success-stories .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: url("../img/icons/right-arrow-white-icon.svg");
  font-size: 20px;
  color: #FFFFFF;
}

.success-stories .swiper-button-next:hover:after, .swiper-container-rtl .swiper-button-prev:after {
  content: url("../img/icons/right-blue-arrow-icon.svg");
  font-size: 20px;
  color: #FFFFFF;
}

.success-stories .swiper-button-prev:after, .swiper-button-next:after {
  content: url("../img/icons/left-arrow-white-icon.svg");
  font-size: 20px;
  color: #FFFFFF;
}

.success-stories .swiper-button-prev:hover:after, .swiper-button-next:after {
  content: url("../img/icons/left-blue-arrow-icon.svg");
}

.well-left {
  margin-top: 31px;
}

.well-right img {
  width: 72%;
  padding-top: 0%;
  margin-left: 10%;
}

.our-success-stories .well-left img {
  width: 60px;
}

@media screen and (max-width: 640px) {
  .single-well h2 {
    text-align: center;
  }
  .well-right {
    text-align: center;
  }
  .well-right img {
    display: none;
  }
  .well-left {
    margin-top: 0px;
    text-align: center;
  }
  .success-stories {
    background-size: 650px;
  }
  .success-stories .swiper-button-next {
    left: 54%;
  }
  .success-stories .swiper-button-prev {
    left: 26%;
  }
}
@media screen and (max-width: 320px) {
  .success-stories .swiper-button-next {
    left: 57%;
  }
  .success-stories .swiper-button-prev {
    left: 23%;
  }
}
/*digi-partners*/
/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/
.partners {
  /*h2{
    font-family: $din-MontserratMe;font-size:30px;text-align:center;line-height:30px;
  color: #325d73;
  }*/
}
.partners .section-title {
  color: #24282F;
  margin-bottom: 25px;
}
.partners .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.partners .swiper-slide:hover img {
  opacity: 1;
}
.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.partners .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  opacity: 1;
  border: 1px solid #17A2C4;
}
.partners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}

@media screen and (max-width: 320px) {
  .partners h2 {
    line-height: 25px;
  }
}
/******* New *******/
.partners_slider .splide__track {
  position: relative;
}
.partners_slider .splide__track .spide_gradient {
  position: absolute;
  top: 0px;
  z-index: 5;
  width: 60px;
  height: 100%;
}
.partners_slider .splide__track .spide_gradient--left {
  left: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.partners_slider .splide__track .spide_gradient--right {
  right: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.partners_slider .splide__list .splide__slide {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: inline-block;
  /*&:hover{
    img{
      filter: none;
    }
  }*/
}
.partners_slider .splide__list .splide__slide img {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  height: 120px;
  width: 140px;
  filter: none;
}
.partners_slider .splide__list .splide__slide img:hover {
  filter: none;
}
.partners_slider .splide__list .splide__slide img:hover {
  filter: none;
}

/*digi-services*/
/*--------------------------------------------------------------
# productservices
--------------------------------------------------------------*/
.productservices {
  background-repeat: no-repeat;
  background-origin: content-box;
  background-position: right bottom;
  background-color: #00556F;
}
.productservices .card-body {
  flex: 1 1 auto;
  padding: 0px;
}
.productservices .card-body h3 {
  flex: 1 1 auto;
  margin: 5px 0px 10px 0px;
  color: #FF5929;
}
.productservices #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.productservices .products-cards {
  height: 295px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  /*.icon{
  img{width:70px;height:70px;}
  }*/
}
.productservices .content h2 {
  color: #FFFFFF;
  font-weight: 700;
}
.productservices .content h4 {
  color: #FFFFFF;
  text-transform: capitalize;
  font-family: "Montserrat-Medium", sans-serif;
}
.productservices .content p {
  color: #FFFFFF;
}
.productservices .icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
  text-align: center;
}
.productservices .icon-boxes .icon-box {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  flex: 0 0 100%;
  -webkit-box-flex: 0;
}
.productservices .icon-boxes .icon {
  margin: 0 auto 10px auto;
  display: inline-block;
  text-align: center;
  /*height:70px;width:70px;*/
}
.productservices .icon-boxes .description {
  margin-bottom: 0px;
  color: #24282F;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  max-height: 85px;
}
.productservices .swiper-wrapper {
  padding: 10px;
}
.productservices .swiper-slide {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

@media (max-width: 640px) {
  .productservices {
    background: #325d73;
    padding-right: 0px;
  }
  .productservices .content {
    padding: 0px 0px 15px 0px;
  }
  .productservices .content p {
    text-align: center;
  }
  .productservices .content h3 {
    text-align: center;
  }
  .productservices .products-cards {
    /*.icon{
      width:60px;height:60px;
    img{width:60px;height:60px;}
    }*/
  }
  .productservices .swiper-wrapper {
    padding: 0px;
  }
}
@media (max-width: 320px) {
  .productservices .products-cards {
    min-height: 270px;
  }
}
.products-slider .swiper-slide {
  height: auto;
}

/*digi-solutions*/
/*--------------------------------------------------------------
# solutions
--------------------------------------------------------------*/
.solutions {
  background-origin: content-box;
  background-position: left 5% bottom -10%;
}
.solutions .section-title {
  width: 97%;
}
.solutions .container {
  position: relative;
  z-index: 10;
}
.solutions .container .flexible {
  flex-grow: 1;
}
.solutions .container .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
}
.solutions .container .card__wrap--outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.solutions .container .card__wrap--inner {
  display: flex;
  flex-direction: row;
  width: 50%;
}
.solutions h3 {
  color: #24282F;
  font-size: 20px;
  font-weight: 700;
}
.solutions .iconsize {
  width: 60px;
  height: 60px;
}
.solutions .content p {
  margin-bottom: 30px;
}
.solutions .icon-boxes .icon-box {
  margin-top: 30px;
}

.solution-webbtn {
  display: block;
}

.solution-mobbtn {
  display: none;
}

@media (max-width: 1200px) {
  .solutions .content {
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  .solutions {
    text-align: center;
  }
  .solutions button {
    margin: 0 auto;
  }
  .about button {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .solutions {
    text-align: center;
  }
  .solutions button {
    margin: 0 auto;
  }
  .solution-webbtn {
    display: none;
  }
  .solution-mobbtn {
    display: block;
  }
}
@media (max-width: 640px) {
  .solutions {
    width: 100%;
  }
  .solutions .content {
    padding: 0px 5px 10px 5px;
  }
}
@media (max-width: 425px) {
  .solutions .section-title p {
    width: 100%;
  }
}
/*digi-team*/
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  display: flex;
  flex: 0 0 auto;
}
.team .member {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background: #FFFFFF;
  margin: 0px 5px 10px 5px;
  display: flex;
  flex-direction: column;
}
.team .member:hover img {
  transform: scale(1.1);
}
.team .member .pic {
  overflow: hidden;
  width: 100%;
  border-radius: 0%;
  height: 233px;
  background: #F5F3F3;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
  width: 100%;
}
.team .member h4 {
  margin: 0px 0px 2px 0px;
}
.team .member span {
  display: block;
  padding-bottom: 3px;
  color: #325d73;
}
.team .member .member-info {
  padding: 20px 15px;
}
.team .member .member-info p {
  margin: 0px;
  font-family: "DIN-BOLD", sans-serif;
}
.team .profile-linkedin {
  width: 100%;
  display: flex;
  margin-top: 5px;
  justify-content: space-between;
  align-items: center;
}
.team .profile-linkedin .profilelink-text {
  width: 90%;
  justify-content: left;
}
.team .profile-linkedin .linkedin-div {
  cursor: pointer;
  width: 10%;
  text-align: right;
  line-height: normal;
}
.team .profile-linkedin .linkedin-div img {
  width: 26px;
  height: 26px;
  border-radius: 25%;
  border: 1px solid #EEEEEE;
  padding: 2px;
}

@media screen and (max-width: 768px) {
  .team .member {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .team .member {
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
  }
}
/*digi-solutions*/
/*--------------------------------------------------------------
# partners
--------------------------------------------------------------*/
.partners {
  /*h2{
    font-family: $din-MontserratMe;font-size:30px;text-align:center;line-height:30px;
  color: #325d73;
  }*/
}
.partners .section-title {
  color: #24282F;
  margin-bottom: 25px;
}
.partners .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}
.partners .swiper-slide:hover img {
  opacity: 1;
}
.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.partners .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
  opacity: 1;
  border: 1px solid #17A2C4;
}
.partners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}

@media screen and (max-width: 320px) {
  .partners h2 {
    line-height: 25px;
  }
}
/******* New *******/
.partners_slider .splide__track {
  position: relative;
}
.partners_slider .splide__track .spide_gradient {
  position: absolute;
  top: 0px;
  z-index: 5;
  width: 60px;
  height: 100%;
}
.partners_slider .splide__track .spide_gradient--left {
  left: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.partners_slider .splide__track .spide_gradient--right {
  right: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.partners_slider .splide__list .splide__slide {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: inline-block;
  /*&:hover{
    img{
      filter: none;
    }
  }*/
}
.partners_slider .splide__list .splide__slide img {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  height: 120px;
  width: 140px;
  filter: none;
}
.partners_slider .splide__list .splide__slide img:hover {
  filter: none;
}
.partners_slider .splide__list .splide__slide img:hover {
  filter: none;
}

/*digi-sub-banner*/
/*--------------------------------------------------------------
# sub-swiper-banner Section
--------------------------------------------------------------*/
.hear-banner-cont {
  height: 210px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.sub-swiper-banner-lg {
  height: 100%;
}

.sub-swiper-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 99;
  transition: 0.3s;
  justify-content: center;
  cursor: pointer;
}
.sub-swiper-banner .home-banner-web {
  width: 100%;
}
.sub-swiper-banner .home-banner-mob {
  width: 100%;
  display: none;
}

.sub-swiper-banner:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.sub-swiper-banner .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: rgba(6, 0, 0, 0.6);
  min-height: 200px;
}

.sub-swiper-banner h2 {
  font-family: "Montserrat-SemiBold", sans-serif;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 40px;
  width: 70%;
  margin: 0 auto;
  line-height: 50px;
  padding-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sub-swiper-banner p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #FFFFFF;
}

.sub-swiper-banner .carousel-control-prev, .sub-swiper-banner .carousel-control-next {
  width: 10%;
}

.sub-swiper-banner .carousel-control-next-icon, .sub-swiper-banner .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

/*arrows*/
.sub-swiper-banner .bx-chevron-right:before {
  transition: 0.5s ease-in-out;
}

.sub-swiper-banner .bx-chevron-left:before {
  transition: 0.5s ease-in-out;
}

.homebanner-slider .swiper-button-prev {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-next {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-prev:hover {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.homebanner-slider .swiper-button-next:hover {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

@keyframes bx-chevron-right {
  from {
    top: 0;
    left: 0;
  }
  to {
    top: 100px;
    left: 100px;
  }
}
@media (max-width: 1024px) {
  .sub-swiper-banner h2 {
    width: 100%;
  }
  .sub-swiper-banner p {
    width: 90%;
    margin: 0 auto;
  }
  .sub-swiper-banner .carousel-control-prev, .sub-swiper-banner #hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px) {
  .sub-swiper-banner {
    padding: 0px 0px 0px 0px;
  }
  .sub-swiper-banner h2 {
    font-size: 30px;
    padding: 0px;
    line-height: 40px;
  }
  .sub-swiper-banner .carousel-container {
    min-height: 100%;
  }
  .hear-banner-cont {
    width: 90%;
    height: 200px;
  }
  .contact .info p {
    width: 60%;
    margin: 0 auto;
  }
  .end2end-centered {
    font-size: 14px;
    width: 90%;
  }
}
@media (max-width: 640px) {
  .sub-swiper-banner .home-banner-web {
    width: 100%;
    display: none;
  }
  .sub-swiper-banner .home-banner-mob {
    width: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 480px) {
  .sub-swiper-banner .carousel-container h2 {
    font-size: 22px;
    line-height: 40px;
    padding-bottom: 0px !important;
  }
  .sub-swiper-banner .hear-banner-cont {
    width: 90%;
    height: 200px;
  }
  .hear-banner-cont {
    height: 170px;
  }
}
@media (max-width: 425px) {
  .hear-banner-cont {
    height: 190px;
  }
}
@media (max-width: 320px) {
  .sub-swiper-banner h2 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 0px !important;
  }
}
/*digi-sub-banner*/
.cliens img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1);
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1750px);
  }
}
.logo-slider {
  margin: auto;
  overflow: hidden;
  position: relative;
}

.logo-slider::before, .logo-slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 250px;
  z-index: 2;
}

.logo-slider::after {
  right: 0px;
  top: 0px;
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0px;
  top: 0px;
}

.logo-slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: 3500px;
}

.logo-slider .slide {
  height: auto;
  width: 185px;
  margin: 0px 20px;
  text-align: right;
}

/*client logos*/
.airtel-logo svg {
  fill: #4169E1;
}

.airtel-logo:hover {
  fill: #000;
}

.bsnl-logo {
  height: 60px;
  width: 60px;
}

.airtel-logo {
  height: 60px;
  width: 60px;
}

.mtn-logo {
  height: 70px;
  width: 70px;
}

.ooredoo-logo {
  height: 60px;
  width: 60px;
}

.ncell-logo {
  height: 70px;
  width: 70px;
}

.im3-ooredoo-logo {
  height: 70px;
  width: 70px;
}

.tigo-log {
  height: 60px;
  width: 80px;
}

.orange-logo {
  height: 60px;
  width: 60px;
}

.dtac-logo {
  height: 60px;
  width: 110px;
}

.cetin-group-logo {
  height: 80px;
  width: auto;
}

.slt_mobitel_logo {
  height: 60px;
  width: 140px;
}

.grameenphone {
  height: 60px;
  width: 110px;
}

@media screen and (max-width: 640px) {
  .logo-slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: 1960px;
  }
  .logo-slider::before, .logo-slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 100px;
    z-index: 2;
  }
  .bsnl-logo {
    height: 50px;
    width: 50px;
  }
  .airtel-logo {
    height: 50px;
    width: 50px;
  }
  .mtn-logo {
    height: 60px;
    width: 60px;
  }
  .ooredoo-logo {
    height: 50px;
    width: 50px;
  }
  .ncell-logo {
    height: 60px;
    width: 60px;
  }
  .im3-ooredoo-logo {
    height: 60px;
    width: 60px;
  }
  .tigo-log {
    height: 50px;
    width: 70px;
  }
  .orange-logo {
    height: 50px;
    width: 50px;
  }
  .dtac-logo {
    height: 50px;
    width: 100px;
  }
  .cetin-group-logo {
    height: 80px;
    width: auto;
  }
  .slt_mobitel_logo {
    height: 50px;
    width: 130px;
  }
  .grameenphone {
    height: 50px;
    width: 100px;
  }
}
/*****ALL COMP*****/
.subbanner-slider .swiper-button-prev {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.subbanner-slider .swiper-button-next {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

.subbanner-slider .swiper-button-prev:hover {
  content: url("../img/icons/banner-left-arrow-icon.svg");
  width: 50px;
  display: block;
}

.subbanner-slider .swiper-button-next:hover {
  content: url("../img/icons/banner-right-icon.svg");
  width: 50px;
  display: block;
}

.subbanner-slider .description {
  font-size: 18px;
}

.dflexcards {
  height: 100%;
  padding: 8px 5px;
}
.dflexcards .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0px;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.0015);
  height: 100%;
}
.dflexcards .card .card-body {
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-flow: column wrap;
  flex: 1 1 auto;
}
.dflexcards .card .card-body .contentimg {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.dflexcards .card .card-body .contentimg img {
  height: 50px;
  width: 50px;
  margin: 0px auto;
}

.digit-comp001 .lf-sec-content {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.digit-comp001 .lf-sec-content h2 {
  line-height: 44px;
  margin-bottom: 24px;
}
.digit-comp001 .lf-sec-content p {
  height: 100px;
  line-height: 25px;
  margin-bottom: 60px;
}
.digit-comp001 .lf-sec-content .le-button {
  margin-top: 40px;
}
.digit-comp001 .ri-sec-content img {
  width: 475px;
}

.digit-comp002 .lf-sec-content img {
  width: 400px;
}
.digit-comp002 .ri-sec-content {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.digit-comp002 .ri-sec-content .ri-cont h4 {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
}
.digit-comp002 .ri-sec-content .ri-cont p {
  font-family: "Montserrat-Regular", sans-serif;
}
.digit-comp002 .ri-sec-content .ri-icon {
  width: 50px;
}
.digit-comp002 .ri-sec-content .ri-icon img {
  width: 35px;
  height: 35px;
  margin-right: 30px;
}

.digit-comp003 .ri-sec-content {
  text-align: center;
}
.digit-comp003 .ri-sec-content img {
  width: 400px;
}
.digit-comp003 .lf-sec-content .ri-cont h4 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 16px;
}
.digit-comp003 .lf-sec-content .ri-cont p {
  font-family: "Montserrat-Regular", sans-serif;
}
.digit-comp003 .lf-sec-content .ri-icon {
  width: 50px;
}
.digit-comp003 .lf-sec-content .ri-icon img {
  width: 35px;
  height: 35px;
  margin-right: 30px;
}

.digit-comp004 {
  display: flex;
  vertical-align: middle;
  justify-self: center;
}
.digit-comp004 .ri-sec-content {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.digit-comp004 .ri-sec-content img {
  width: 400px;
}
.digit-comp004 .lf-sec-content .ri-cont h4 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 16px;
}
.digit-comp004 .lf-sec-content .ri-cont p {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0px;
}
.digit-comp004 .lf-sec-content .ri-icon {
  width: 30px;
}
.digit-comp004 .lf-sec-content .ri-icon img {
  width: 20px;
  height: 20px;
  margin-right: 0px;
}

.digit-comp005 {
  color: #FFFFFF;
}
.digit-comp005 .lf-sec-content {
  text-align: center;
  display: flex;
}
.digit-comp005 .lf-sec-content .card-cont {
  width: 33.3%;
}
.digit-comp005 .lf-sec-content .card-cont .card-img {
  background: #ccc;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.digit-comp005 .lf-sec-content .card-cont h5 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.digit-comp005 .lf-sec-content .card-cont p {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0px;
  width: 80%;
  margin: 0 auto;
}

.digitral-comp006 .content-sec {
  margin-top: 15px;
}
.digitral-comp006 .content-sec .swiper-slide {
  height: auto;
}
.digitral-comp006 .content-sec .flex-row {
  height: 100%;
}
.digitral-comp006 .content-sec .content h5 {
  margin-bottom: 15px;
}
.digitral-comp006 .content-sec .content p {
  margin: 0px;
}
.digitral-comp006 .content-sec .owl-nav,
.digitral-comp006 .content-sec .owl-prev,
.digitral-comp006 .content-sec .owl-next {
  display: none;
}

.digitral-comp007 .lf-sec-content {
  margin-top: 9px;
}
.digitral-comp007 .lf-sec-content img {
  width: 90%;
}
.digitral-comp007 .ri-sec-content {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.digitral-comp007 .ri-sec-content .ri-cont h4 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 16px;
}
.digitral-comp007 .ri-sec-content .ri-cont p {
  font-family: "Montserrat-Regular", sans-serif;
}
.digitral-comp007 .ri-sec-content .ri-icon {
  width: 50px;
}
.digitral-comp007 .ri-sec-content .ri-icon img {
  width: 35px;
  height: 35px;
  margin-right: 30px;
}

.digitral-comp008 .lf-sec-content {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.0028);
  border-radius: 10px;
  margin: 0 auto;
  padding: 55px;
}
.digitral-comp008 .lf-sec-content h2 {
  font-size: 30px;
  width: 90%;
  margin: 0 auto;
  line-height: 40px;
}
.digitral-comp008 .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -16px;
  left: 0;
  width: 100%;
  position: relative;
  height: auto;
}
.digitral-comp008 .swiper-pagination-bullet {
  background-color: #E2F0F5;
  height: 18px;
}
.digitral-comp008 .swiper-pagination {
  text-align: center;
  margin-top: 15px;
  width: 100%;
}
.digitral-comp008 .swiper-pagination-bullet {
  margin: 0 5px;
  width: 40px;
}
.digitral-comp008 .swiper-pagination-bullet-active {
  background-color: #325d73;
}

.digitral-comp009 {
  color: #FFFFFF;
}
.digitral-comp009 .section-title {
  margin: 40px 0px;
}
.digitral-comp009 .section-title h2 {
  color: #FFFFFF;
}
.digitral-comp009 .section-title p {
  width: 100%;
  color: #FFFFFF;
}
.digitral-comp009 .container {
  position: relative;
  z-index: 10;
}
.digitral-comp009 .container .flexible {
  flex-grow: 1;
}
.digitral-comp009 .container .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: transparent;
}
.digitral-comp009 .container .card__wrap--outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.digitral-comp009 .container .card__wrap--inner {
  display: flex;
  flex-direction: row;
  width: 50%;
}
.digitral-comp009 h3 {
  color: #FFFFFF;
}
.digitral-comp009 .sec-cont2 .name-div {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
}
.digitral-comp009 .sec-cont2 p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 12px;
}

.digitral-comp010 .comp-secone {
  margin-top: 40px;
  margin-left: 15px;
}
.digitral-comp010 .comp-secone h2 {
  font-size: 40px;
  color: #325d73;
}
.digitral-comp010 .comp-secone p {
  font-size: 16px;
  width: 85%;
  margin: 0 auto;
  text-align: center;
}
.digitral-comp010 .contsec01 {
  margin-top: 60px;
}
.digitral-comp010 .contsec01 .row-flex {
  display: flex;
  flex-wrap: wrap;
}
.digitral-comp010 .contsec01 [class*=col-] {
  margin-bottom: 30px;
}
.digitral-comp010 .contsec01 .content {
  height: 100%;
  padding: 20px 0px 10px 0px;
  color: #000;
}
.digitral-comp010 .contsec01 .content h3 {
  font-size: 16px;
}
.digitral-comp010 .contsec01 .content p {
  margin: 0px;
}
.digitral-comp010 .contsec01 .comp0010-icon img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.digitral-comp010 .swiper-pagination-bullets {
  bottom: -16px;
  left: 0;
  width: 100%;
  position: relative;
  height: auto;
}
.digitral-comp010 .swiper-pagination-bullet {
  background-color: #E2F0F5;
  height: 18px;
}
.digitral-comp010 .swiper-pagination {
  text-align: center;
  margin-top: 15px;
  width: 100%;
}
.digitral-comp010 .swiper-pagination-bullet {
  margin: 0 5px;
  width: 40px;
}
.digitral-comp010 .swiper-pagination-bullet-active {
  background-color: #325d73;
}

.digitral-comp012 .card-divider {
  margin: 30px 0px 50px 0px;
}
.digitral-comp012 .card-body {
  flex: 1 1 auto;
  padding: 0px;
}
.digitral-comp012 .card-body h4 {
  flex: 1 1 auto;
  margin: 5px 0px 10px 0px;
  color: #24282F;
}
.digitral-comp012 #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.digitral-comp012 .products-cards {
  height: 270px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.digitral-comp012 .content h2 {
  font-weight: 700;
}
.digitral-comp012 .content h3 {
  color: #325d73;
}
.digitral-comp012 .icon-boxes {
  padding-top: 0;
  position: relative;
  z-index: 100;
  text-align: center;
}
.digitral-comp012 .icon-boxes .icon-box {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 10px 29px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  flex: 0 0 100%;
  -webkit-box-flex: 0;
}
.digitral-comp012 .icon-boxes .icon {
  margin: 0 auto 10px auto;
  display: inline-block;
  text-align: center;
}
.digitral-comp012 .icon-boxes .description {
  margin-bottom: 0px;
  color: #24282F;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 65px;
}

.digitral-comp013 .flx-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.digitral-comp013 .flx-cards .flx-card {
  margin: 10px 0px;
  padding: 10px;
  border: 0px;
  background-color: transparent;
}
.digitral-comp013 .flx-cards .flx-card img {
  margin-bottom: 23px;
}
.digitral-comp013 .flx-cards .flx-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.digitral-comp013 .flx-cards .flx-card p {
  font-size: 14px;
  line-height: 24px;
}

.digitral-comp014 .lf-sec-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #bbb;
}
.digitral-comp014 .lf-sec-content .card {
  width: 259px;
  margin: 10px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.digitral-comp014 .lf-sec-content .card h2 {
  font-size: xx-large;
}

.swiper-pagination-comp .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -16px;
  left: 0;
  width: 100%;
  position: relative;
  height: auto;
}
.swiper-pagination-comp .swiper-pagination-bullet {
  background-color: #A9A9AA;
  height: 18px;
}
.swiper-pagination-comp .swiper-pagination {
  text-align: center;
  margin-top: 15px;
  width: 100%;
}
.swiper-pagination-comp .swiper-pagination-bullet {
  margin: 0 5px;
  width: 40px;
}
.swiper-pagination-comp .swiper-pagination-bullet-active {
  background-color: #325d73;
}

.swiper-pagination-videob .swiper-container-horizontal > .swiper-pagination-bullets {
  left: 0;
  width: 100%;
  height: auto;
}
.swiper-pagination-videob .swiper-pagination-bullet {
  background-color: #A9A9AA;
  height: 5px;
  border-radius: 20px;
}
.swiper-pagination-videob .swiper-pagination {
  text-align: center;
  margin-top: 15px;
  width: 100%;
}
.swiper-pagination-videob .swiper-pagination-bullet {
  margin: 0 5px;
  width: 30px;
}
.swiper-pagination-videob .swiper-pagination-bullet-active {
  background-color: #FFFFFF;
}

.mdplaybtn {
  background: #ccc;
}

@media (max-width: 768px) {
  .digit-comp001 .lf-sec-content {
    width: 100%;
  }
  .digit-comp001 .lf-sec-content h2 {
    margin-bottom: 15px;
  }
  .digit-comp001 .lf-sec-content p {
    height: 100px;
    margin-bottom: 30px;
  }
  .digit-comp001 .ri-sec-content img {
    width: 100%;
  }
  .digit-comp002 .lf-sec-content img {
    width: 100%;
  }
  .digit-comp003 .ri-sec-content img {
    width: 100%;
  }
  .digit-comp004 .ri-sec-content img {
    width: 100%;
  }
  .digit-comp005 {
    color: #FFFFFF;
  }
  .digit-comp005 .lf-sec-content {
    text-align: center;
    display: flex;
  }
  .digit-comp005 .lf-sec-content .card-cont {
    width: 33.3%;
    padding: 15px;
  }
  .digit-comp005 .lf-sec-content .card-cont .card-img {
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .digit-comp005 .lf-sec-content .card-cont h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .digit-comp005 .lf-sec-content .card-cont p {
    margin: 0px;
    width: 100%;
    margin: 0 auto;
  }
  .digitral-comp007 .lf-sec-content img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .sub-banner h2 {
    width: 100%;
  }
  .sub-banner img {
    width: 100%;
  }
  .sub-banner .home-banner-mob {
    display: block;
  }
  .digitral-comp012 .lf-sec-content .content p {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .swiper-pagination-videob .swiper-pagination-bullet {
    height: 3px;
  }
  .swiper-pagination-videob .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 20px;
  }
  .lf-button {
    margin: 0 auto;
  }
  .sub-banner .carousel-container {
    min-height: 300px;
  }
  .sub-banner img {
    width: 100%;
  }
  .sub-banner .home-banner-mob {
    display: block;
  }
  .digit-comp004 .lf-sec-content .ri-cont p {
    text-align: left;
    margin-left: 10px;
  }
  .digit-comp005 {
    color: #FFFFFF;
  }
  .digit-comp005 .lf-sec-content {
    text-align: center;
    display: inline-block;
  }
  .digit-comp005 .lf-sec-content .card-cont {
    width: 100%;
    margin-bottom: 20px;
  }
  .digit-comp005 .lf-sec-content .card-cont .card-img {
    background: #ccc;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .digit-comp005 .lf-sec-content .card-cont h5 {
    font-family: "DIN-BOLD", sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .digit-comp005 .lf-sec-content .card-cont p {
    font-family: "Montserrat-Regular", sans-serif;
    margin: 0px;
    width: 100%;
    margin: 0 auto;
  }
  .digitral-comp009 .section-small-title {
    text-align: center;
  }
  .digitral-comp009 .section-title p {
    text-align: center;
  }
  .digitral-comp009 .sec-cont2 {
    text-align: center;
  }
  .digitral-comp009 .r-seccont img {
    width: 100%;
  }
  .digitral-comp008 .lf-sec-content {
    padding: 35px;
  }
  .digitral-comp008 .lf-sec-content h2 {
    font-size: 20px;
    width: 100%;
    line-height: 30px;
  }
  .digitral-comp010 .contsec01 {
    margin-top: 20px;
  }
  .digitral-comp010 .contsec01 [class*=col-] {
    margin-bottom: 0px;
  }
  .digitral-comp010 .comp-secone h2 {
    margin-bottom: 20px;
  }
  .digitral-comp010 .comp-secone p {
    width: 95%;
    margin-top: 15px;
  }
  .digitral-comp013 .sec-heading-l-b {
    text-align: center !important;
  }
  .digitral-comp013 .flx-cards .flx-card {
    text-align: center;
  }
  .dig-video-bg {
    width: 40%;
    height: 89%;
    z-index: 9;
    margin: 0 auto;
    left: 12%;
    right: 12%;
    top: 5%;
  }
  .digi-dplaybtn {
    width: 75% !important;
  }
  .dig-dvideo-comp .video-playbtn {
    width: 40px !important;
    top: 35% !important;
  }
  .swiper-pagination-videob .swiper-button-next {
    display: none !important;
  }
  .swiper-pagination-videob .swiper-button-prev {
    display: none !important;
  }
  .sub-swiper-banner h2 {
    font-size: 24px !important;
  }
}
/******video banner*****/
.video-header {
  height: 60px !important;
  background: #FFFFFF !important;
}
.video-header .navbar a {
  color: #325d73;
}
.video-header .navbar a:hover, .video-header .navbar .active {
  color: #325d73;
  border: 2px solid #325d73;
}
.video-header .header-scrolled {
  background: #FFFFFF;
}
.video-header .header-scrolled a:hover, .video-header .header-scrolled .active {
  border: 2px solid white;
}

.video-banner .video-playbtn {
  width: 90px;
  height: 90px;
}

video[poster] {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-container {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 590px;
}
.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}
.play-button-wrapper #circle-play-b svg {
  width: 100px;
  height: 100px;
  fill: #FFFFFF;
  stroke: #FFFFFF;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0.9;
}

.fullscreen-header .mobile-nav-toggle {
  color: #FFFFFF;
}

.fullscreen-header1 .mobile-nav-toggle {
  color: #24282F !important;
}

.video-swiper-banner {
  width: 100%;
  height: 100% !important;
  padding: 0px !important;
  overflow: inherit !important;
}
.video-swiper-banner .video-playbtn {
  width: 85px;
  position: absolute;
  top: 43%;
  left: 47%;
}
.video-swiper-banner .main-video-banner {
  margin: 0 auto;
  width: 100%;
}
.video-swiper-banner .swiper-pagination-bullet {
  position: relative;
  bottom: 0px !important;
}

.clickToPlay {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  min-width: var(--clickToPlay-size);
  min-height: var(--clickToPlay-size);
  border-radius: 50%;
  background-image: url(chrome://global/skin/media/play-fill.svg);
  background-repeat: no-repeat;
  background-position: 0% 0% !important;
  background-size: 0% 0% !important;
  background-color: transparent !important;
  -moz-context-properties: fill;
  fill: currentColor;
  color: inherit;
  opacity: 0.8;
  position: relative;
  top: 20px;
  width: 0% !important;
  height: 0% !important;
  display: none;
}

.clickTopause {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  min-width: var(--clickToPlay-size);
  min-height: var(--clickToPlay-size);
  border-radius: 50%;
  background-image: transparent !important;
  background-repeat: no-repeat;
  background-position: 0% 0% !important;
  background-size: 0% 0% !important;
  background-color: transparent !important;
  -moz-context-properties: fill;
  fill: currentColor;
  color: inherit;
  opacity: 0.8;
  position: relative;
  top: 20px;
  width: 0% !important;
  height: 0% !important;
}

video::-webkit-media-controls {
  display: none !important;
}

video::-webkit-media-controls-enclosure {
  display: none !important;
}

@media (max-width: 480px) {
  .video-banner {
    padding: 60px 0px 0px 0px !important;
    min-height: auto !important;
  }
  .video-banner .video-playbtn {
    width: 60px;
    height: 60px;
  }
  .video-swiper-banner {
    height: 100% !important;
  }
  .video-swiper-banner .video-playbtn {
    width: 60px;
  }
}
@media (max-width: 640px) {
  .video-container {
    height: 270px !important;
  }
}
@media (max-width: 992px) {
  .video-container {
    height: auto;
  }
  .video-swiper-banner .video-playbtn {
    top: 40%;
    left: 41%;
  }
}
@media (min-width: 1024px) {
  .video-container {
    height: 675px;
  }
  .video-container video {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}
@media (min-width: 1366px) {
  .video-container {
    height: 660px;
  }
}
@media (min-width: 1400px) {
  .video-container {
    height: 720px;
  }
}
@media (min-width: 1600px) {
  .video-container {
    height: 900px;
  }
}
@media (min-width: 1900px) {
  .video-container {
    height: 900px;
  }
}
@media (min-width: 2100px) {
  .video-container {
    height: 1100px;
  }
}
/******video banner*****/
.digit-swiper-flex .swiper-container {
  -webkit-tap-highlight-color: transparent;
}
.digit-swiper-flex span {
  display: block;
  color: #005671;
  font-size: 14px;
}
.digit-swiper-flex h3 {
  margin: 0px 0px 2px 0px;
}
.digit-swiper-flex .swiper-slide {
  height: auto;
}
.digit-swiper-flex .leadership {
  padding: 10px;
}
.digit-swiper-flex .leadership .m-slider__item {
  display: flex;
  flex: 0 0 auto;
  width: 100%;
}
.digit-swiper-flex .m-card {
  display: flex;
  flex-direction: column;
  padding: 0px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transition-duration: 0.3s;
  transition-property: box-shadow;
}
.digit-swiper-flex .m-card .m-card__header {
  height: auto;
  background-position: center;
  background-size: cover;
}
.digit-swiper-flex .m-card .m-card__header:hover img {
  transform: scale(1.1);
}
.digit-swiper-flex .m-card .m-card__header .pic {
  overflow: hidden;
  width: 100%;
  border-radius: 0%;
  height: auto;
  background: #F5F3F3;
}
.digit-swiper-flex .m-card .m-card__header .pic img {
  transition: ease-in-out 0.3s;
}
.digit-swiper-flex .m-card .m-card__header h4 {
  margin: 0px 0px 2px 0px;
}
.digit-swiper-flex .m-card .m-card__header span {
  display: block;
  padding-bottom: 3px;
  color: #325d73;
}
.digit-swiper-flex img {
  transition: ease-in-out 0.3s;
  width: 263px;
  height: 263px;
}
.digit-swiper-flex .m-card .m-card__body .member-info {
  padding: 20px 15px;
}
.digit-swiper-flex .m-card .m-card__body .member-info p {
  margin: 0px;
  font-size: 12px;
  font-family: "DIN-BOLD", sans-serif;
}
.digit-swiper-flex .m-card:active {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.digit-swiper-flex .slider {
  margin: 0 -30px;
}
.digit-swiper-flex .cards {
  margin-top: 30px;
}
.digit-swiper-flex .cards .cards__note {
  margin-top: 30px;
}
.digit-swiper-flex .cards .cards__body {
  margin-top: 30px;
}

.digit-comp004 {
  display: flex;
  vertical-align: middle;
  justify-self: center;
}
.digit-comp004 .ri-sec-content {
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.digit-comp004 .ri-sec-content img {
  width: 90%;
}
.digit-comp004 .lf-sec-content .ri-cont h4 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 16px;
}
.digit-comp004 .lf-sec-content .ri-cont p {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0px;
}
.digit-comp004 .lf-sec-content .ri-icon {
  width: 30px;
}
.digit-comp004 .lf-sec-content .ri-icon img {
  width: 18px;
  height: 18px;
  margin-right: 0px;
}

@media (max-width: 5955px) {
  .digit-swiper-flex img {
    transition: ease-in-out 0.3s;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .digit-swiper-flex .cards .cards__body {
    display: flex;
  }
}
.cards .cards__item {
  display: flex;
  flex: 0 1 auto;
  margin-top: 30px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .digit-swiper-flex .cards .cards__item {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .digit-swiper-flex .cards .cards__item:not(:last-of-type) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 640px) {
  .digit-comp004 .ri-sec-content img {
    width: 100%;
  }
}
.digidiv-height {
  height: 340px;
  width: 100%;
}

.card-text:last-child {
  margin-bottom: 1px !important;
}

.digi-w-480 {
  max-width: 460px;
  margin: 0 auto;
}

.digi-w-600 {
  max-width: 800px;
  margin: 0 auto;
}

.dig-left-img img {
  height: auto;
}

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

.dig-heding-comp {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dig-heding-comp .dig-subhed {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 18px;
  color: #FF5929;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dig-heding-comp h2 {
  font-size: 36px;
  color: #325d73;
  margin: 0px;
  max-width: 100%;
  display: -webkit-box;
  line-height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dig-heding-comp p {
  font-size: 16px;
  max-width: 100%;
  display: -webkit-box;
  margin-top: 6px;
  margin-bottom: 4px;
  line-height: 25px;
}

.margin-auto {
  width: 100%;
  text-align: center;
}

.p10 {
  padding: 10px;
}

.main-hero-banner-container {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.main-hero-banner-container .main-hero-banner {
  background-image: url("../img/dign-imgs/dot-bg.png");
  background-repeat: repeat;
}
.main-hero-banner-container .main-hero-banner .web-hero-banner-img {
  text-align: center;
}
.main-hero-banner-container .main-hero-banner .web-hero-banner-img img {
  width: auto;
  max-width: 1020px;
  margin: 0 auto;
  overflow: hidden;
}
.main-hero-banner-container .main-hero-banner .mob-hero-banner-img {
  display: none;
}
.main-hero-banner-container .main-hero-banner .mob-hero-banner-img img {
  width: 100%;
  height: 100%;
}

.dig-2cloum .digi-2col-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dig-2cloum .digi-2col-cards .digi-2col-card {
  border: 1px solid #E5E5E5;
  flex: 0 0 49%;
  text-align: center;
  height: 180px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 22px;
}
.dig-2cloum .digi-2col-cards .digi-2col-card a {
  color: #24282F;
}
.dig-2cloum .digi-2col-cards .digi-2col-card .digi-innerdiv {
  background: #E5E5E5;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.dig-2cloum .digi-2col-cards .digi-2col-card .digi-innerdiv h6 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 18px;
  color: #325d73;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dig-2cloum .digi-2col-cards .digi-2col-card .digi-innerdiv p {
  font-family: "Montserrat-Regular", sans-serif;
  width: 100%;
  margin: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.dig-2cloumsub .digi-2colsub-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dig-2cloumsub .digi-2colsub-cards .digi-2colsub-card {
  border: 1px solid #E5E5E5;
  flex: 0 0 49%;
  text-align: center;
  height: 110px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 20px;
}
.dig-2cloumsub .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv {
  background: #E5E5E5;
  width: 100%;
  height: 100%;
  padding: 15px;
}
.dig-2cloumsub .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv h6 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 18px;
  color: #FF5929;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dig-2cloumsub .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv p {
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 25px;
  width: 100%;
  margin: 0px;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.dig-3cloum .cards-comp {
  text-align: center;
}
.dig-3cloum .cards-comp .card {
  border: 0px;
}
.dig-3cloum .cards-comp .card a {
  color: #000;
}
.dig-3cloum .cards-comp .card .divimg {
  padding: 10px;
  border: 1px solid #E5E5E5;
  min-height: auto;
  overflow: hidden;
}
.dig-3cloum .cards-comp .card .divimg .imgcompsec {
  background: #E5E5E5;
  min-height: 215px;
  transition: 0.6s ease;
  position: relative;
}
.dig-3cloum .cards-comp .card .divimg .imgcompsec img {
  background: #E5E5E5;
}
.dig-3cloum .cards-comp .card .divimg .imgcompsec:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.dig-3cloum .cards-comp .card h5 {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #FF5929;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.dig-3cloum .cards-comp .card p {
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.dig-3cloum .cards-comp .card .img-over-title {
  position: relative;
}
.dig-3cloum .cards-comp .card .img-over-title .img-text-over {
  position: absolute;
}

.dig-3cloum2row img {
  width: 250px;
}
.dig-3cloum2row .dig-3cloum2row-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dig-3cloum2row .dig-3cloum2row-cards .dig-3cloum2row-card {
  border: 1px solid #E5E5E5;
  flex: 0 0 32%;
  text-align: center;
  height: 275px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 6px;
}
.dig-3cloum2row .dig-3cloum2row-cards .dig-3cloum2row-card .digi-innerdiv {
  background: #E5E5E5;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.dig-3cloum2row .dig-3cloum2row-cards .dig-3cloum2row-card .digi-innerdiv h6 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 18px;
  color: #005871;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dig-3cloum2row .dig-3cloum2row-cards .dig-3cloum2row-card .digi-innerdiv p {
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 25px;
  width: 100%;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.dig-4cloum .digi-4col-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dig-4cloum .digi-4col-cards .digi-4col-card {
  border: 1px solid #E5E5E5;
  flex: 0 0 24%;
  text-align: center;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dig-4cloum .digi-4col-cards .digi-4col-card h6 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 20px !important;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.dig-4cloum .digi-4col-cards .digi-4col-card p {
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.dig-4cloum .digi-4col-cards .digi-4col-card .col4-innerdiv {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  flex-direction: column;
  padding-top: 110px;
}

.dig-2rowcolumn img {
  width: 250px;
}
.dig-2rowcolumn .digi-2colsub-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.dig-2rowcolumn .digi-2colsub-cards .digi-2colsub-card {
  border: 1px solid #E5E5E5;
  flex: 0 0 100%;
  text-align: center;
  height: 200px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 15px;
}
.dig-2rowcolumn .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv {
  background: #E5E5E5;
  width: 100%;
  height: 100%;
  padding: 10px;
}
.dig-2rowcolumn .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv h6 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 18px;
  color: #325d73;
  width: 100%;
  margin-bottom: 5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dig-2rowcolumn .digi-2colsub-cards .digi-2colsub-card .digi-innerdiv p {
  font-family: "Montserrat-Regular", sans-serif;
  line-height: 25px;
  width: 100%;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.digi-location-map img {
  width: 100%;
}

.digi-carosel-comp img {
  width: 100%;
}

.digi-subbanner {
  position: relative;
  min-height: 350px;
}
.digi-subbanner .digi-subbanner-carosel {
  width: 100%;
  background: rgb(50, 93, 115);
  background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(201, 89, 77) 40%);
  position: absolute;
  z-index: 9;
  left: 0px;
  display: flex;
  justify-content: right;
  align-items: center;
  color: #FFFFFF;
  height: 407px;
}
.digi-subbanner .digi-subbanner-carosel .digi-text-cont {
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: end;
}
.digi-subbanner .digi-subbanner-carosel .digi-text-cont p {
  font-family: "Montserrat-Regular", sans-serif;
  margin: 0px;
}
.digi-subbanner .digi-subbanner-carosel .digi-text-cont h4 {
  font-size: 25px;
  font-family: "Montserrat-Medium", sans-serif;
  width: 80%;
}
.digi-subbanner .subbanner-bgimg {
  position: relative;
  top: 0px;
  left: 0px;
}
.digi-subbanner .digi-subbanner-carosel-001 {
  height: 350px;
  width: 100%;
  background: rgb(50, 93, 115);
  background: linear-gradient(90deg, rgb(50, 93, 115) 34%, rgb(255, 89, 41) 100%);
  position: absolute;
  z-index: 9;
  left: 0px;
  color: #FFFFFF;
}
.digi-subbanner .digi-subbanner-carosel-001 .digi-text-cont {
  text-align: right;
}

.digi-subbanner001 .digi-subbanner-carosel {
  background: rgb(50, 93, 115);
  background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(201, 89, 77) 40%);
  padding: 25px 0px;
}
.digi-subbanner001 .digi-subbanner-carosel .div-browc {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  gap: 100px;
}
.digi-subbanner001 .digi-subbanner-carosel .div-browc .subbanner-bgimg {
  height: 250px;
  width: 300px;
  border-radius: 8px;
}
.digi-subbanner001 .digi-subbanner-carosel .digi-text-cont {
  display: flex;
  flex-direction: column;
  text-align: right;
  align-items: end;
}
.digi-subbanner001 .digi-subbanner-carosel .digi-text-cont h4 {
  font-size: 25px;
  width: 100%;
}
.digi-subbanner001 .digi-subbanner-carosel .subbanner-bgimg img {
  width: 300px;
  border-radius: 8px;
}

.digi-footer-sec {
  background: #5A93A6;
  padding: 30px 0px 30px 0;
  color: #FFFFFF;
}
.digi-footer-sec .digifooterrow {
  display: flex;
  justify-content: space-between;
}
.digi-footer-sec .digifooterrow .footer-logo img {
  width: 60px;
}
.digi-footer-sec .digifooterrow .copyright {
  font-size: 14px;
  text-align: left;
  padding-top: 10px;
}
.digi-footer-sec .digifooterrow .copyright a {
  color: #FFFFFF;
}
.digi-footer-sec .digifooterrow .copyright a:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.digi-footer-sec .digifooterrow span {
  margin: 0px 15px;
}
.digi-footer-sec .digifooterrow label {
  font-family: "Montserrat-Medium", sans-serif;
}
.digi-footer-sec .digifooterrow ul {
  margin: 0px;
  padding: 0px;
}
.digi-footer-sec .digifooterrow ul li {
  list-style: none;
}
.digi-footer-sec .digifooterrow ul li a {
  color: #FFFFFF;
}
.digi-footer-sec .digifooterrow ul li a:hover {
  color: #FFFFFF;
}

.img-507x430 {
  max-width: 670px;
  max-height: 670px;
  width: 100%;
  height: auto;
  display: block;
}

.image-sharp-cont {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.mr-md-auto,
.mx-md-auto {
  margin-right: auto !important;
}

.ml-md-auto,
.mx-md-auto {
  margin-left: auto !important;
}

.col-compdiv {
  flex: 0 0 50%;
  max-width: 50%;
}

.digit-ellipsis-10line p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 550px;
}

.d-subbanner-comp .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 450px;
}

/*18-02-2023 st*/
.posation-rel {
  position: relative;
}

.m20 {
  margin-right: -20px;
}

.ml-20 {
  margin-left: -20px;
}

.w-80 {
  width: 74%;
  margin: 0 auto;
}

.w-85 {
  width: 85%;
  margin: 0 auto;
}

.w-90 {
  width: 90%;
  margin: 0 auto;
}

.dcominer-img {
  width: 85%;
  border: 0px !important;
}

.swap-on-hover_topm {
  margin-top: -10px !important;
}

.swap-on-hover img {
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  margin-left: 0px;
  margin-top: -11px;
}

.swap-on-hover .swap-on-hover__front-image {
  z-index: 9999;
  transition: opacity 0.5s linear;
  cursor: pointer;
  margin-left: 0px;
  margin-top: 6px;
  position: absolute;
}

.swap-on-hover .swap_bottom {
  margin-left: 0px !important;
  margin-top: 7px !important;
}

.swap-on-hover:hover > .swap-on-hover__front-image {
  opacity: 0;
}

.d-compline-text {
  text-align: center;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  top: -20px;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.d_ltext_rig {
  margin-left: 80px;
  margin-top: 40px;
  position: absolute;
}

.d_ltext_lef {
  margin-left: -45px;
}

.d_ricon_top {
  margin-top: 7px !important;
}

.d-compline-text-bottom {
  top: 0px !important;
  bottom: -20px !important;
}

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

.swap_left_bottom {
  top: 6px !important;
}

/*18-02-2023 end*/
.key_components img {
  max-width: 70%;
}

.dig-video-bg {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 40%;
  height: 97%;
  z-index: 9;
  margin: 0 auto;
  left: 12%;
  right: 12%;
  top: 12%;
  border-radius: 20px;
}

.dig-dvideo-comp .video-playbtn {
  width: 80px;
  position: absolute;
  top: 35%;
  cursor: pointer;
  margin: 0 auto;
}

.digi-dplaybtn {
  width: 90%;
  text-align: center;
}

@media screen and (min-width: 1600px) and (orientation: landscape) {
  .dig-heding-comp p {
    max-width: 100%;
    display: -webkit-box;
    margin-bottom: 0px;
    margin-top: 0px;
    margin: 0 auto;
  }
  .dig-heding-comp12 p {
    max-width: 100%;
    display: -webkit-box;
    margin-bottom: 0px;
  }
  .digi-w-480 {
    max-width: 430px;
    margin: 0 auto;
  }
  .digi-wr-480 {
    max-width: 430px;
    margin: 0 auto;
    margin-right: 50px !important;
  }
}
@media (max-width: 1200px) {
  .dig-3cloum .cards-comp .card .divimg {
    min-height: 100%;
  }
  .dig-3cloum .cards-comp .card .divimg .imgcompsec {
    min-height: 100%;
  }
  .dig-3cloum .cards-comp .card .divimg .imgcompsec img {
    width: 100%;
    height: 100%;
  }
  .dig-3cloum2row img {
    width: 220px;
  }
  .dig-3cloum2row .dig-3cloum2row-cards .dig-3cloum2row-card {
    flex: 0 0 48%;
    height: 220px;
    margin-bottom: 15px;
  }
  .dig-2cloumsub .digi-2colsub-cards .digi-2colsub-card {
    height: 100%;
  }
  .dig-4cloum .digi-4col-cards .digi-4col-card {
    flex: 0 0 32%;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .dig-heding-comp h2 {
    font-size: 25px;
    line-height: normal;
  }
  .dig-heding-comp p {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .web-gif-icon {
    margin: 0 auto;
  }
  .digi-w-480 {
    max-width: 100%;
    margin: 0 auto;
  }
  .digi-w-600 {
    max-width: 100%;
    margin: 0 auto;
  }
  .col-compdiv {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .main-hero-banner-container .main-hero-banner .web-hero-banner-img {
    display: none;
  }
  .main-hero-banner-container .main-hero-banner .mob-hero-banner-img {
    display: block;
  }
  .res-menu-icon {
    display: block;
  }
  .mobilemenu-bg a {
    justify-content: start !important;
  }
  .mobilemenu-bg .res-menu-icon {
    margin-right: 10px !important;
    width: 18px;
  }
  .digi-subbanner .digi-subbanner-carosel {
    background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(201, 89, 77) 90%);
  }
  .digi-subbanner {
    /*18-02-2023 st*/
    /*18-02-2023 end*/
  }
  .digi-subbanner .digi-subbanner-carosel .digi-text-cont h4 {
    font-size: 20px;
  }
  .digi-subbanner .w-80 {
    width: 75%;
    margin: 0 auto;
  }
  .dig-4cloum .digi-4col-cards .digi-4col-card {
    flex: 0 0 48%;
  }
  .dig-2rowcolumn img {
    width: 170px;
  }
  .w-80 {
    width: 60%;
  }
  .d-subbanner-comp .img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 260px;
  }
  .digi-subbanner001 .digi-subbanner-carosel .div-browc {
    text-align: center !important;
  }
  .digi-subbanner001 .digi-subbanner-carosel .div-browc .subbanner-bgimg {
    width: auto;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .dig-2rowcolumn img {
    width: 150px;
    margin: 20px 0px;
  }
  .dig-heding-comp {
    text-align: center;
  }
  .dig-heding-comp .dig-subhed {
    font-size: 16px;
  }
  .dig-heding-comp h2 {
    font-size: 25px;
  }
  .dig-heding-comp p {
    margin-top: 10px;
  }
  .dig-4cloum .digi-4col-cards {
    display: block;
  }
  .digi-sec004 .row {
    display: block;
  }
  .digi-sec004 .digi-4col-cards .digi-4col-card {
    margin-bottom: 10px;
  }
  .digi-sec007 .row {
    display: block;
  }
  .digi-sec008 .row {
    display: block;
  }
  .digi-sec009 .row {
    display: block;
  }
  .dig-2cloumsub .digi-2colsub-cards {
    display: block;
  }
  .dig-2rowcolumn .digi-2colsub-cards .digi-2colsub-card {
    height: 150px;
  }
  .dig-3cloum2row .dig-3cloum2row-cards {
    display: block;
  }
  .digi-footer-sec .digifooterrow {
    display: block;
  }
  .digi-footer-sec .digifooterrow .footer-logo img {
    width: 70px;
  }
  .digi-footer-sec .digifooter-row {
    margin: 15px 0px;
  }
  .dig-2cloum .digi-2col-cards .digi-2col-card {
    margin-bottom: 14px;
    flex: 0 0 100%;
  }
  .dig-4cloum .digi-4col-cards .digi-4col-card .col4-innerdiv {
    padding: 90px 20px;
  }
  .digidiv-height {
    height: 290px;
    width: 100%;
  }
  .dig-4cloum .digi-4col-cards .digi-4col-card {
    margin-bottom: 15px;
  }
  .dig-left-img img {
    height: 100%;
  }
  /*18-02-2023 st*/
  .dcominer-img {
    width: 85%;
  }
  .w-80 {
    width: 60%;
    margin: 0 auto;
  }
  /*18-02-2023 end*/
  .digi-subbanner001 .digi-subbanner-carosel {
    background: rgb(50, 93, 115);
    background: linear-gradient(90deg, rgba(50, 93, 115, 0.6) 0%, rgb(201, 89, 77) 40%);
    padding: 25px 0px;
  }
  .digi-subbanner001 .digi-subbanner-carosel .div-browc {
    display: block;
    justify-content: space-between;
    align-items: center;
    text-align: center !important;
    color: #fff;
  }
  .digi-subbanner001 .digi-subbanner-carosel .digi-text-cont {
    text-align: center !important;
    margin-top: 30px;
  }
  .digi-subbanner001 .digi-subbanner-carosel .digi-text-cont p {
    width: 100%;
  }
  .digi-subbanner001 .digi-subbanner-carosel .digi-text-cont h4 {
    width: 100%;
  }
  .key_components img {
    max-width: 100%;
  }
  .dig-video-bg {
    min-width: 40%;
    min-height: 49%;
    left: 12%;
    right: 12%;
    top: 25%;
  }
  .digi-subbanner .digi-subbanner-carosel .digi-text-cont {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .section-title h2 {
    font-size: 24px;
    line-height: normal;
  }
  .productservices .card-body h3 {
    font-size: 18px;
  }
  .digi-sec004 {
    width: 90%;
    margin: 0 auto;
  }
}
.ioh_footer {
  background: #5A93A6;
  margin-top: 40px;
}
.ioh_footer .ioh_footer_top {
  border-bottom: 1px solid #E0E0E0;
}
.ioh_footer .ioh_footer_desc {
  margin-right: 100px;
}
.ioh_footer .ioh_footer_desc .ioh_footer_logo img {
  width: 60px;
}
.ioh_footer .ioh_footer_desc .ioh_footer_logo .tw-icon a:hover {
  background: #325d73;
}
.ioh_footer .ioh_footer_desc .ioh_footer_logo .linkedin-icon a:hover {
  background: #325d73;
}
.ioh_footer .ioh_footer_desc .ioh_footer_logo .youtube-icon a:hover {
  background: #325d73;
}
.ioh_footer .ioh_footer_desc .dsocialicons img {
  width: 20px;
  height: 20px;
}
.ioh_footer .ioh_footer_desc .description {
  margin-bottom: 30px;
}
.ioh_footer .ioh_footer_desc .address {
  font-size: 12px;
  margin-bottom: 30px;
}
.ioh_footer .footer_menu_head {
  position: relative;
  font-size: 18px;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.ioh_footer .footer_menu_head img {
  display: none;
}
.ioh_footer .footer_menus {
  padding: 0px;
}
.ioh_footer .footer_menus li {
  list-style: none;
  margin-bottom: 10px;
}
.ioh_footer .footer_menus li a {
  padding: 0px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  display: inline-block;
  color: #FFFFFF;
}
.ioh_footer .footer_menus li a:hover {
  color: #325d73;
}
.ioh_footer .footer_menus li a.active {
  text-decoration: underline;
}
.ioh_footer .footer_menus li:hover {
  color: #325d73 !important;
}
.ioh_footer .social_list {
  display: flex;
  align-items: center;
}
.ioh_footer .social_list li {
  margin-right: 12px;
}
.ioh_footer .social_list li a {
  cursor: pointer;
}
.ioh_footer .social_list li a img {
  width: 44px;
  height: 44px;
}
.ioh_footer .social_list li:last-child {
  margin-right: 0px;
}

.ioh_footer_social_wrap {
  padding: 40px 0px;
  background: #325d73;
}
.ioh_footer_social_wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ioh_footer_social_wrap .ioh_h5 {
  max-width: 400px;
  margin-bottom: 0px;
}
.ioh_footer_social_wrap .comp_info_grp {
  display: flex;
  align-items: center;
}
.ioh_footer_social_wrap .comp_info_grp p {
  font-size: 16px;
  margin-right: 24px;
  margin-bottom: 0px;
}
.ioh_footer_social_wrap .comp_info_grp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  width: 32px;
  height: 32px;
  background: #343434;
  border-radius: 50px;
}
.ioh_footer_social_wrap .comp_info_grp a img {
  width: 16px;
}
.ioh_footer_social_wrap .comp_info_grp a:last-child {
  margin-right: 0px;
}

.ioh_footer_all_rights {
  background: #3E3E40;
  padding: 25px 0px;
}
.ioh_footer_all_rights p {
  font-size: 14px;
  color: #24282F;
  margin-bottom: 0px;
  text-align: center;
}

.sroll_top_fixed {
  position: fixed;
  bottom: 60px;
  right: 80px;
  cursor: pointer;
  z-index: 500;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}
.sroll_top_fixed.show {
  opacity: 1;
  visibility: visible;
}
.sroll_top_fixed button {
  width: 55px;
  height: 55px;
  border: 2px solid red;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.sroll_top_fixed button img {
  width: 40px;
  height: 40px;
}

.py_75 {
  padding: 60px 0px;
}

.copyright {
  font-size: 12px;
  text-align: left;
  padding-top: 10px;
  color: #FFFFFF;
}
.copyright a {
  color: #FFFFFF;
}
.copyright a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .ioh_footer .ioh_footer_desc {
    margin-right: 0px;
  }
  .ioh_footer_social_wrap .comp_info_grp {
    flex-direction: column;
    align-items: center;
  }
  .ioh_footer_social_wrap .comp_info_grp p {
    margin-bottom: 16px;
    margin-right: 0px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .ioh_footer .container {
    padding: 0px 24px;
  }
  .ioh_footer .footer_menu_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 15px 0px;
    margin-bottom: 0px;
    cursor: pointer;
    border-bottom: 1px solid #6b9eaf;
  }
  .ioh_footer .footer_menu_head img {
    transition: all 0.3s ease-out;
    transform: rotate(0deg);
    width: 14px;
    display: inline-block;
  }
  .ioh_footer .footer_menu_head.active img {
    transition: all 0.3s ease-out;
    transform: rotate(180deg);
  }
  .ioh_footer .footer_menus {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #6b9eaf;
  }
  .ioh_footer .footer_menus li {
    padding: 6px 10px;
  }
  .ioh_footer .footer_menus li a {
    display: block;
  }
  .ioh_footer .footer_menus li a:hover {
    color: #325d73;
  }
  .ioh_footer .ioh_footer_desc .description {
    margin-bottom: 25px;
  }
  .ioh_footer .ioh_footer_desc .address {
    margin-bottom: 25px;
  }
  .ioh_footer_social_wrap .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .ioh_footer_social_wrap .container .ioh_h5 {
    text-align: left;
    margin-bottom: 20px;
  }
  .ioh_footer_social_wrap .container .comp_info_grp {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    margin-bottom: 20px;
  }
  .ioh_footer_social_wrap .container .comp_info_grp p {
    margin-bottom: 0px;
  }
  .ioh_footer_social_wrap .container .comp_info_grp:last-child {
    margin-bottom: 0px;
  }
  .social_list {
    margin-bottom: 50px;
  }
  .py_75 {
    padding: 40px 0px;
  }
  .copyright {
    text-align: center !important;
    width: 100%;
    padding-top: 20px;
    font-size: 12px !important;
  }
}
@media (max-width: 575.98px) {
  .sroll_top_fixed {
    bottom: 20px;
    right: 40px;
  }
  .sroll_top_fixed button {
    width: 44px;
    height: 44px;
  }
  .py_75 {
    padding: 40px 0px;
  }
}
@media (max-width: 424.98px) {
  .ioh_footer_social_wrap {
    padding: 25px 0px;
  }
  .ioh_footer_all_rights {
    padding: 16px 0px;
  }
  .ioh_footer_all_rights p {
    font-size: 12px;
  }
}
@media (max-width: 374.98px) {
  .ioh_footer .ioh_footer_bottom_row .social_list li a img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 360px) {
  .ioh_footer .container {
    padding: 0px 16px;
  }
  .ioh_footer .social_list li {
    margin-right: 8px;
    list-style: none;
  }
  .ioh_footer .social_list li a img {
    width: 40px;
    height: 40px;
  }
}
.dcomp-main-comp {
  display: flex;
  justify-content: space-between;
  min-height: 400px;
}
.dcomp-main-comp .dcomp-lef-comp {
  border: 1px solid #8795A1;
  padding: 13px 20px;
  border-radius: 0px 190px 190px 0px;
  width: 40%;
  position: relative;
  height: 400px;
  background: #fff;
  z-index: 99;
}
.dcomp-main-comp .dcomp-lef-comp label {
  font-size: 16px;
  color: #FFFFFF;
}
.dcomp-main-comp .dcomp-lef-comp .dcom-active label {
  font-family: "DIN-Black", sans-serif;
  font-size: 36px;
  color: #325d73;
  margin: 0px;
  max-width: 100%;
  min-width: 100px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dcomp-main-comp .dcomp-lef-comp .dcom-active img {
  display: none;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn {
  cursor: pointer;
  display: flex;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn label {
  cursor: pointer;
  min-width: 84px;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp0 {
  background: #E54F31;
  margin-bottom: 10px;
  border-radius: 0px 90px 90px 0px;
  min-height: 210px;
  position: absolute;
  width: 260px;
  margin-top: 0px;
  padding-left: 15px;
  color: #FFFFFF;
  padding-top: 0px;
  z-index: 1;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp {
  background: #E54F31;
  margin-bottom: 10px;
  border-radius: 0px 80px 80px 0px;
  min-height: 325px;
  position: absolute;
  width: 90%;
  margin-top: 0px;
  padding-left: 15px;
  color: #FFFFFF;
  padding-top: 10px;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp1 {
  background: #E54F31;
  margin-bottom: 10px;
  border-radius: 0px 90px 90px 0px;
  min-height: 210px;
  position: absolute;
  width: 260px;
  margin-top: 140px;
  padding-left: 15px;
  color: #FFFFFF;
  padding-top: 10px;
  z-index: 1;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp1 p {
  display: none;
  padding-right: 15px;
}
.dcomp-main-comp .dcomp-lef-comp .translate.active {
  background: #fff;
  color: #000;
}
.dcomp-main-comp .dcomp-lef-comp .translate.active label {
  font-family: "DIN-Black", sans-serif;
  font-size: 36px;
  color: #325d73;
  margin: 0px;
  max-width: 100%;
  min-width: 100px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.dcomp-main-comp .dcomp-lef-comp .translate.active p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-right: 15px;
}
.dcomp-main-comp .dcomp-lef-comp .translate.active .dcomp-btn-comp0 {
  z-index: 2;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp2 {
  background: #8795A1;
  margin-bottom: 10px;
  border-radius: 0px 70px 70px 0px;
  min-height: 170px;
  position: absolute;
  width: 230px;
  margin-top: 180px;
  padding-left: 15px;
  color: #FFFFFF;
  padding-top: 10px;
  z-index: 2;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp2 p {
  display: none;
  padding-right: 15px;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp3 {
  background: #254663;
  margin-bottom: 10px;
  border-radius: 0px 45px 45px 0px;
  min-height: 130px;
  position: absolute;
  width: 200px;
  margin-top: 220px;
  padding-left: 15px;
  color: #FFFFFF;
  padding-top: 10px;
  z-index: 3;
}
.dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp3 p {
  display: none;
  padding-right: 15px;
}
.dcomp-main-comp .dcomp-rig-comp {
  padding: 0px 15px;
  border-radius: 0px 100px 100px 0px;
  width: 60%;
}
.dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont {
  display: flex;
  justify-content: space-between;
}
.dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 {
  border-right: 1px solid #8795A1;
  height: 400px;
  width: 220px;
  border-bottom-right-radius: 220px;
  border-top-right-radius: 220px;
  border-left: 0px;
}
.dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 .dcompcont {
  width: 80%;
  margin: 50% auto;
  text-align: center;
}
.dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 .dcompcont h4 {
  font-size: 18px;
  font-family: "Montserrat-Regular", sans-serif;
  color: #E54F31;
}
.dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 .dcompcont p {
  font-size: 16px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

/*Animation*/
.panel {
  /* for chrome and safari*/
  -webkit-animation-duration: 3s;
  -webkit-animation-name: slidein;
  animation-direction: alternate;
  /*for firefox*/
  -moz-animation-duration: 3s;
  -moz-animation-name: slidein;
  animation-direction: alternate;
  /* for opera*/
  -o-animation-duration: 3s;
  -o-animation-name: slidein;
  animation-direction: alternate;
  /* Standard syntax*/
  animation-duration: 3s;
  animation-name: slidein;
  animation-direction: alternate;
}

/*
@-webkit-keyframes slidein {
    0% {
       transform: translateX(-200px);
     }
     100% {
       transform: translateX(0px);
     }
}

@-moz-keyframes slidein {
   0% {
       transform: translateX(-200px);
     }
     100% {
       transform: translateX(0px);
     }
}

@-o-keyframes slidein {
   0% {
       transform: translateX(-200px);
     }
     100% {
       transform: translateX(0px);
     }
}*/
@keyframes slidein {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(0px);
  }
}
/*tabs*/
.toggle .tabs .tab {
  cursor: pointer;
}

.toggle .panels .panel {
  display: none;
}

.toggle .panels .panel:first-child {
  display: block;
}

/*Animation end*/
/**************COMP-001****************/
/*dleft-comp01*/
.dleft-comp01 {
  position: relative;
  margin-left: 26px;
}
.dleft-comp01 .dleftcomp1 {
  position: absolute;
  height: 100%;
  width: 100%;
}
.dleft-comp01 .dleftcomp1 .d-iconwh-comp {
  position: absolute;
  width: auto;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
  line-height: 0;
}
.dleft-comp01 .dleftcomp1 .d-iconwh-comp img {
  width: 70px;
  height: 70px;
}
.dleft-comp01 .dleftcomp1 .dl-c01 {
  top: 0%;
  left: 20%;
}
.dleft-comp01 .dleftcomp1 .dl-c01 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Colloborate1.svg);
  height: 66px;
  width: 66px;
}
.dleft-comp01 .dleftcomp1 .dl-c01 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Colloborate2.svg);
  height: 66px;
  width: 66px;
}
.dleft-comp01 .dleftcomp1 .dl-c02 {
  top: 37.5%;
  right: 33%;
  display: flex;
  align-items: center;
}
.dleft-comp01 .dleftcomp1 .dl-c02 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Care1.svg);
  background-position: bottom;
  height: 66px;
  width: 66px;
}
.dleft-comp01 .dleftcomp1 .dl-c02 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Care2.svg);
  background-position: bottom;
  height: 66px;
  width: 66px;
}
.dleft-comp01 .dleftcomp1 .dl-c03 {
  bottom: 0%;
  left: 20%;
}
.dleft-comp01 .dleftcomp1 .dl-c03 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Play1.svg);
  height: 77px;
  width: 77px;
}
.dleft-comp01 .dleftcomp1 .dl-c03 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Play2.svg);
  height: 77px;
  width: 77px;
}
.dleft-comp01 .dlef-inner-img {
  position: absolute;
  top: 12px;
  left: 10px;
}
.dleft-comp01 .dlef-inner-img img {
  margin-top: 27%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-left: -15%;
  width: 300px;
  height: 100%;
}

/*dright-comp01*/
.dright-comp01-right {
  position: relative;
  margin-right: 26px;
}
.dright-comp01-right .dleftcomp1 {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.dright-comp01-right .dleftcomp1 .d-iconwh-comp {
  position: absolute;
  width: auto;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
  line-height: 0;
}
.dright-comp01-right .dleftcomp1 .d-iconwh-comp img {
  width: 100%;
  height: 100%;
}
.dright-comp01-right .dleftcomp1 .dl-c01 {
  top: 0%;
  right: 20%;
}
.dright-comp01-right .dleftcomp1 .dl-c01 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Launch1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c01 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Launch2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c01 .active {
  background: url(../img/dign-imgs/d-icons/Launch2.svg) !important;
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c02 {
  top: 37.5%;
  left: 12%;
  display: flex;
  align-items: center;
}
.dright-comp01-right .dleftcomp1 .dl-c02 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Run1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c02 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Run2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c02 .active {
  background: url(../img/dign-imgs/d-icons/Run2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01-right .dleftcomp1 .dl-c03 {
  bottom: -2%;
  right: 20%;
}
.dright-comp01-right .dleftcomp1 .dl-c03 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Assure1.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp01-right .dleftcomp1 .dl-c03 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Assure2.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp01-right .dlef-inner-img {
  position: absolute;
  top: 10px;
  right: -15px;
}
.dright-comp01-right .dlef-inner-img img {
  margin-top: 27%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-right: 0%;
  width: 300px;
  height: 100%;
}

/*dright-comp01*/
.dright-comp01 {
  position: relative;
  margin-right: 26px;
}
.dright-comp01 .dleftcomp1 {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.dright-comp01 .dleftcomp1 .d-iconwh-comp {
  position: absolute;
  width: auto;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
  line-height: 0;
}
.dright-comp01 .dleftcomp1 .d-iconwh-comp img {
  width: 100%;
  height: 100%;
}
.dright-comp01 .dleftcomp1 .dl-c01 {
  top: 0%;
  right: 20%;
}
.dright-comp01 .dleftcomp1 .dl-c01 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Bundle1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01 .dleftcomp1 .dl-c01 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Bundle2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01 .dleftcomp1 .dl-c02 {
  top: 37.5%;
  left: 12%;
  display: flex;
  align-items: center;
}
.dright-comp01 .dleftcomp1 .dl-c02 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Bundle1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01 .dleftcomp1 .dl-c02 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Bundle2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp01 .dleftcomp1 .dl-c03 {
  bottom: -2%;
  right: 20%;
}
.dright-comp01 .dleftcomp1 .dl-c03 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Bundle1.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp01 .dleftcomp1 .dl-c03 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Bundle2.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp01 .dlef-inner-img {
  position: absolute;
  top: 10px;
  right: -15px;
}
.dright-comp01 .dlef-inner-img img {
  margin-top: 27%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-right: 0%;
  width: 300px;
  height: 100%;
}

/**************COMP-002****************/
/*dright-comp02*/
.dleft-comp02 {
  position: relative;
  margin-left: 26px;
}
.dleft-comp02 .dleftcomp1 {
  position: absolute;
  height: 100%;
  width: 100%;
}
.dleft-comp02 .dleftcomp1 .d-iconwh-comp {
  position: absolute;
  width: auto;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
  line-height: 0;
}
.dleft-comp02 .dleftcomp1 .d-iconwh-comp img {
  width: 70px;
  height: 70px;
}
.dleft-comp02 .dleftcomp1 .dl-c01 {
  top: 0%;
  left: 20%;
}
.dleft-comp02 .dleftcomp1 .dl-c01 .dl-icon {
  background: url(../img/dign-imgs/d-icons/third_party1.svg);
  height: 66px;
  width: 66px;
}
.dleft-comp02 .dleftcomp1 .dl-c01 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/third_party2.svg);
  height: 66px;
  width: 66px;
}
.dleft-comp02 .dleftcomp1 .dl-c02 {
  top: 37.5%;
  right: 33%;
  display: flex;
  align-items: center;
}
.dleft-comp02 .dleftcomp1 .dl-c02 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Network_integrations1.svg);
  background-position: bottom;
  height: 66px;
  width: 66px;
}
.dleft-comp02 .dleftcomp1 .dl-c02 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Network_integrations2.svg);
  background-position: bottom;
  height: 66px;
  width: 66px;
}
.dleft-comp02 .dleftcomp1 .dl-c03 {
  bottom: 0%;
  left: 20%;
}
.dleft-comp02 .dleftcomp1 .dl-c03 .dl-icon {
  background: url(../img/dign-imgs/d-icons/DevOps1.svg);
  height: 77px;
  width: 77px;
}
.dleft-comp02 .dleftcomp1 .dl-c03 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/DevOps2.svg);
  height: 77px;
  width: 77px;
}
.dleft-comp02 .dlef-inner-img {
  position: absolute;
  top: 12px;
  left: 10px;
}
.dleft-comp02 .dlef-inner-img img {
  margin-top: 27%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-left: -15%;
  width: 300px;
  height: 100%;
}

/*dright-comp02*/
.dright-comp02 {
  position: relative;
  margin-right: 26px;
}
.dright-comp02 .dleftcomp1 {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 9;
}
.dright-comp02 .dleftcomp1 .d-iconwh-comp {
  position: absolute;
  width: auto;
  height: 77px;
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  font-family: "Montserrat-Medium", sans-serif;
  color: #FF5929;
  font-size: 18px;
  line-height: 0;
}
.dright-comp02 .dleftcomp1 .d-iconwh-comp img {
  width: 100%;
  height: 100%;
}
.dright-comp02 .dleftcomp1 .dl-c01 {
  top: -12%;
  right: 20%;
}
.dright-comp02 .dleftcomp1 .dl-c01 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Track1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp02 .dleftcomp1 .dl-c01 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Track2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp02 .dleftcomp1 .dl-c02 {
  top: 37.5%;
  left: 1%;
  display: flex;
  align-items: center;
}
.dright-comp02 .dleftcomp1 .dl-c02 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Reward1.svg);
  height: 66px;
  width: 66px;
}
.dright-comp02 .dleftcomp1 .dl-c02 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Reward2.svg);
  height: 66px;
  width: 66px;
}
.dright-comp02 .dleftcomp1 .dl-c03 {
  bottom: -1%;
  right: 20%;
}
.dright-comp02 .dleftcomp1 .dl-c03 .dl-icon {
  background: url(../img/dign-imgs/d-icons/Bundle1.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp02 .dleftcomp1 .dl-c03 .dl-icon:hover {
  background: url(../img/dign-imgs/d-icons/Bundle2.svg);
  height: 66px;
  width: 66px;
  background-position: bottom;
}
.dright-comp02 .dlef-inner-img {
  position: absolute;
  top: 10px;
  right: -15px;
}
.dright-comp02 .dlef-inner-img img {
  margin-top: 27%;
  border: 1px solid #ccc;
  padding: 5px;
  margin-right: 0%;
  width: 300px;
  height: 100%;
}

.leftcolmbg-dig img {
  width: 440px;
  height: 380px;
  display: block;
  margin-right: auto;
}

.rightcolmbg-dig img {
  width: 440px;
  height: 380px;
  display: block;
  margin-left: auto !important;
}

.dcomp_div_width {
  width: 440px;
  border: 1px solid #ccc;
}

.d_tab_com {
  animation: fadeInAnimation 2s infinite;
  animation-iteration-count: 5;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  from {
    transform: translate(0, 100px);
    opacity: 1;
  }
  to {
    transform: translate(0, 0px);
    opacity: 0.5;
  }
}
/*
.dcomp-btn-comp0{
    animation: dcomp-btn-comp0 ease 2s;
    animation-iteration-count: 5;
    animation-fill-mode: forwards;

}

@keyframes dcomp-btn-comp0 {
    from { transform:translate(0,100px); opacity: 0; } 
  to { transform:translate(10,30px); opacity: 1; }
  }
*/
@media screen and (min-width: 1600px) and (orientation: landscape) {
  /**************COMP-001****************/
  .dleft-comp01 .dleftcomp1 {
    width: 86%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: 0%;
    left: 23%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 34%;
    right: 40%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    left: 23%;
  }
  .dright-comp01 .dleftcomp1 {
    width: 100%;
  }
  .dright-comp01 .dleftcomp1 .dl-c01 {
    top: 0%;
    right: 23%;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 {
    top: 34%;
    left: 25%;
  }
  .dright-comp01 .dleftcomp1 .dl-c03 {
    bottom: -3%;
    right: 23%;
  }
  /**************COMP-right****************/
  .dright-comp01-right .dleftcomp1 {
    width: 100%;
  }
  .dright-comp01-right .dleftcomp1 .dl-c01 {
    top: 0%;
    right: 23%;
  }
  .dright-comp01-right .dleftcomp1 .dl-c02 {
    top: 34%;
    left: 25%;
  }
  .dright-comp01-right .dleftcomp1 .dl-c03 {
    bottom: -3%;
    right: 23%;
  }
  /**************COMP-002****************/
  .dleft-comp02 .dleftcomp1 {
    width: 86%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c01 {
    top: -11%;
    left: 23%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c01 label {
    line-height: normal;
  }
  .dleft-comp02 .dleftcomp1 .dl-c02 {
    top: 34%;
    right: 29%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c02 label {
    line-height: normal;
  }
  .dleft-comp02 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    left: 23%;
  }
  .dright-comp02 .dleftcomp1 {
    width: 100%;
  }
  .dright-comp02 .dleftcomp1 .dl-c01 {
    top: 0%;
    right: 23%;
  }
  .dright-comp02 .dleftcomp1 .dl-c02 {
    top: 34%;
    left: 20%;
  }
  .dright-comp02 .dleftcomp1 .dl-c03 {
    bottom: -2%;
    right: 23%;
  }
}
@media (max-width: 1024px) {
  /**************COMP-002****************/
  .dleft-comp01 .dleftcomp1 {
    width: 86%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: 0%;
    left: 23%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    right: -2%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    left: 23%;
  }
  .dright-comp01 .dleftcomp1 {
    width: 86%;
  }
  .dright-comp01 .dleftcomp1 .dl-c01 {
    top: 0%;
    right: 23%;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    left: -2%;
  }
  .dright-comp01 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    right: 23%;
  }
  /**************COMP-002****************/
  .dleft-comp02 .dleftcomp1 {
    width: 86%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c01 {
    top: 0%;
    left: 23%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    right: -2%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    left: 23%;
  }
  .dright-comp02 .dleftcomp1 {
    width: 86%;
  }
  .dright-comp02 .dleftcomp1 .dl-c01 {
    top: 0%;
    right: 23%;
  }
  .dright-comp02 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    left: -2%;
  }
  .dright-comp02 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    right: 23%;
  }
}
@media (max-width: 768px) {
  .dcomp-main-comp {
    display: block;
    min-height: 400px;
  }
  .dcomp-main-comp .dcomp-lef-comp {
    width: 70%;
    height: 400px;
    margin-bottom: 40px !important;
    margin: 0 auto;
  }
  .dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp1 {
    margin-bottom: 10px;
    min-height: 187px;
    width: 245px;
  }
  .dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp2 {
    margin-bottom: 10px;
    min-height: 148px;
    width: 210px;
    margin-top: 180px;
  }
  .dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp3 {
    min-height: 110px;
    width: 165px;
  }
  .dcomp-main-comp .dcomp-rig-comp {
    width: 100%;
  }
  .dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 {
    height: 450px;
    width: 220px;
  }
  .dcomp-btn {
    cursor: pointer;
  }
  .dcomp-btn label {
    cursor: pointer;
    min-width: 130px;
  }
  .dcomp-btn img {
    transform: rotate(90deg);
  }
  .dleft-comp01 {
    position: relative;
    margin-left: 26px;
  }
  .dleft-comp01 .dleftcomp1 {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .dleft-comp01 .dleftcomp1 .d-iconwh-comp {
    position: absolute;
    width: auto;
    height: 77px;
    border-radius: 50%;
    text-align: center;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: -3%;
    left: 26%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    right: -1%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    left: 26%;
  }
  .dleft-comp01 .dlef-inner-img {
    position: absolute;
    top: 12px;
    left: 10px;
  }
  .dleft-comp01 .dlef-inner-img img {
    margin-top: 20%;
    border: 1px solid #ccc;
    padding: 5px;
    margin-left: -15%;
    width: 250px;
    height: 100%;
  }
  .dright-comp01 .dleftcomp1 {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .dright-comp01 .dleftcomp1 .d-iconwh-comp {
    position: absolute;
    width: auto;
    height: 77px;
    border-radius: 50%;
    text-align: center;
  }
  .dright-comp01 .dleftcomp1 .d-iconwh-comp img {
    width: 100%;
    height: 100%;
  }
  .dright-comp01 .dleftcomp1 .dl-c01 {
    top: -3%;
    right: 26%;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 {
    top: 34.5%;
    left: -1%;
  }
  .dright-comp01 .dleftcomp1 .dl-c03 {
    bottom: 0%;
    right: 26%;
  }
  .leftcolmbg-dig img {
    width: 380px;
    height: 300px;
  }
  .dcomp-main-comp .dcomp-lef-comp .translate.active label {
    font-size: 28px !important;
  }
}
@media (max-width: 640px) {
  /**************COMP-001****************/
  .dleft-comp01 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: 1%;
    left: 38.5%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 40.5%;
    right: 76.5%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 12%;
    left: 38.5%;
  }
  .dleft-comp01 .dlef-inner-img img {
    margin-top: 29%;
    margin-left: -15%;
    width: 250px;
    height: 100%;
  }
  .dleft-comp01 label {
    font-size: 16px;
  }
  .dright-comp01 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dright-comp01 .dleftcomp1 .dl-c01 {
    top: 1%;
    right: 38.5%;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 {
    top: 40.5%;
    left: 76.5%;
  }
  .dright-comp01 .dleftcomp1 .dl-c03 {
    bottom: 12%;
    right: 38.5%;
  }
  .dright-comp01 .dlef-inner-img img {
    margin-top: 29%;
    margin-left: -15%;
    width: 250px;
    height: 100%;
  }
  /**************COMP-002****************/
  .dleft-comp02 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp02 .dleftcomp1 .dl-c01 {
    top: 1%;
    left: 38.5%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c02 {
    top: 40.5%;
    right: 76.5%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c03 {
    bottom: 12%;
    left: 38.5%;
  }
  .dleft-comp02 .dlef-inner-img img {
    margin-top: 29%;
    margin-left: -15%;
    width: 250px;
    height: 100%;
  }
  .dleft-comp02 label {
    font-size: 16px;
  }
  .dright-comp02 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dright-comp02 .dleftcomp1 .dl-c01 {
    top: 1%;
    right: 38.5%;
  }
  .dright-comp02 .dleftcomp1 .dl-c02 {
    top: 40.5%;
    left: 76.5%;
  }
  .dright-comp02 .dleftcomp1 .dl-c03 {
    bottom: 12%;
    right: 38.5%;
  }
  .dright-comp02 .dlef-inner-img img {
    margin-top: 29%;
    margin-left: -15%;
    width: 250px;
    height: 100%;
  }
  .leftcolmbg-dig {
    /*background: url(../img/dign-imgs/Grad_D_Right.png);*/
  }
  .leftcolmbg-dig img {
    width: 100%;
    height: 100%;
  }
  .dcomp-main-comp .dcomp-lef-comp {
    width: 100%;
    height: 380px;
    margin-bottom: 25px;
  }
  .dcomp-main-comp .dcomp-lef-comp .dcomp-btn-comp2 {
    margin-bottom: 10px;
    min-height: 148px;
    width: 210px;
    margin-top: 180px;
  }
  .dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont {
    display: block;
  }
  .dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 {
    height: auto;
    width: 90%;
    border: 0px solid;
  }
  .dcomp-main-comp .dcomp-rig-comp .dcomp-tabs-cont .dcomp-tabs-inner-cont .digtab-col1 .dcompcont {
    margin: 15px auto !important;
    width: 100%;
  }
  .panel {
    /* for chrome and safari*/
    -webkit-animation-duration: 0s;
    -webkit-animation-name: slidein;
    animation-direction: alternate;
  }
}
.d_comp_infoicon_sec {
  border: 0px solid #8795A1;
  border-left: 0px;
  border-bottom: 0px;
  height: 74px;
  width: 64px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #fff;
  z-index: 9;
}
.d_comp_infoicon_sec .d_comp_infoicon {
  border: 1px solid #8795A1;
  border-left: 0px;
  border-bottom: 0px;
  height: 70px;
  width: 60px;
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: #fff;
  z-index: 9;
}
.d_comp_infoicon_sec .d_comp_infoicon .d_comp_cont21 {
  height: 50px;
  width: 50px;
  background: #254663;
  margin: 10px 0px;
  cursor: pointer;
}
.d_comp_infoicon_sec .d_comp_infoicon .d_comp_cont21 .d_inner_bg {
  border-radius: 50%;
  color: #fff;
  font-size: 25px;
  padding: 0px 6px;
}

@media (max-width: 480px) {
  /**************COMP-001****************/
  .dleft-comp01 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: -2%;
    left: 24.5%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 36%;
    right: 5%;
    display: block !important;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 label {
    margin-left: 40px;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 5%;
    left: 24.5%;
  }
  .dleft-comp01 label {
    font-size: 14px;
  }
  .dright-comp01 label {
    font-size: 14px;
  }
  .dright-comp01 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: auto;
  }
  .dright-comp01 .dleftcomp1 .dl-c01 {
    top: -2%;
    right: 24.5%;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 {
    top: 36%;
    left: 4%;
    display: block;
  }
  .dright-comp01 .dleftcomp1 .dl-c02 label {
    margin-right: 35px;
  }
  .dright-comp01 .dleftcomp1 .dl-c03 {
    bottom: -2%;
    right: 24.5%;
  }
  /**************COMP-002****************/
  .dleft-comp012 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp012 .dleftcomp1 .dl-c01 {
    top: -2%;
    left: 24.5%;
  }
  .dleft-comp012 .dleftcomp1 .dl-c02 {
    top: 36%;
    right: 5%;
    display: block !important;
  }
  .dleft-comp012 .dleftcomp1 .dl-c02 label {
    margin-left: 40px;
  }
  .dleft-comp012 .dleftcomp1 .dl-c03 {
    bottom: 5%;
    left: 24.5%;
  }
  .dleft-comp012 label {
    font-size: 14px;
  }
  .dright-comp02 label {
    font-size: 14px;
    height: 20px;
  }
  .dright-comp02 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: auto;
  }
  .dright-comp02 .dleftcomp1 .dl-c01 {
    top: -10%;
    right: 14.5%;
  }
  .dright-comp02 .dleftcomp1 .dl-c02 {
    top: 36%;
    left: 4%;
    display: block;
  }
  .dright-comp02 .dleftcomp1 .dl-c02 label {
    margin-right: 35px;
  }
  .dright-comp02 .dleftcomp1 .dl-c03 {
    bottom: -2%;
    right: 24.5%;
  }
  .leftcolmbg-dig img {
    width: 100%;
    height: 320px;
  }
  .rightcolmbg-dig img {
    width: 100%;
    height: 320px;
  }
}
@media (max-width: 360px) {
  /**************COMP-001****************/
  .dleft-comp01 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp01 .dleftcomp1 .dl-c01 {
    top: -2%;
    left: 28.5%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c02 {
    top: 36.5%;
    right: 6.5%;
  }
  .dleft-comp01 .dleftcomp1 .dl-c03 {
    bottom: 5%;
    left: 28.5%;
  }
  .dleft-comp01 .dlef-inner-img img {
    margin-top: 32%;
    margin-left: -15%;
    width: 180px;
  }
  /**************COMP-002****************/
  .dleft-comp02 .dleftcomp1 .d-iconwh-comp {
    width: auto;
    height: 57px;
  }
  .dleft-comp02 .dleftcomp1 .dl-c01 {
    top: -2%;
    left: 28.5%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c02 {
    top: 36.5%;
    right: 6.5%;
  }
  .dleft-comp02 .dleftcomp1 .dl-c03 {
    bottom: 5%;
    left: 28.5%;
  }
  .dleft-comp02 .dlef-inner-img img {
    margin-top: 32%;
    margin-left: -15%;
    width: 180px;
  }
  .leftcolmbg-dig img {
    width: 100%;
    height: 270px;
  }
}
.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: scrolling 15s linear infinite;
  align-items: center;
}

.marquee-item {
  flex: 0 0 12vw;
  margin: 0 2vw;
  /* flex: 0 0 20vw;
  margin: 0 2vw; */
}

.marquee-item img {
  display: block;
  width: 100%;
  padding: 0 20px;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-110vw);
  }
}
@media screen and (max-width: 1024px) {
  .marquee-content {
    display: flex;
    animation: scrolling 10s linear infinite;
  }
  .marquee-item {
    flex: 0 0 18vw;
    margin: 10px 0.5vw;
    /* flex: 0 0 20vw;
    margin: 0 2vw; */
  }
}
@media screen and (max-width: 768px) {
  .marquee-content {
    display: flex;
    animation: scrolling 10s linear infinite;
  }
  .marquee-item {
    flex: 0 0 20vw;
    margin: 10px 0.5vw;
    /*   flex: 0 0 20vw; */
    /*   margin: 0 2vw; */
  }
}
@media screen and (max-width: 640px) {
  .marquee-item {
    flex: 0 0 20vw;
    margin: 10px 0.5vw;
    /* flex: 0 0 20vw; */
    /* margin: 0 2vw; */
  }
  .marquee-item img {
    display: block;
    width: 100%;
    padding: 0 0px;
  }
  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translatex(-164vw);
    }
  }
}
@media screen and (max-width: 425px) {
  .marquee-content {
    display: flex;
    animation: scrolling 8s linear infinite;
  }
  .marquee-item {
    flex: 0 0 20vw;
    margin: 10px 1vw;
  }
  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translatex(-175vw);
    }
  }
}
/******digi-mwc-2024*****/
/*--------------------------------------------------------------
# MWC Event 2024
--------------------------------------------------------------*/
.address_logos_box img {
  width: 50px;
  z-index: 9;
}

.card-text a {
  color: #ed1c24;
}

.mwc_header {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  background: #ffffff;
  height: 54px;
  width: 100%;
  padding: 8px 0px;
  display: flex;
  align-items: center;
  z-index: 9;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.mwc_header .container {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mwc_header h4 {
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #24282F;
  text-align: center;
  margin-bottom: 0px;
}

.mwc_back_link {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mwc_back_link img {
  width: 24px;
}
.mwc_back_link:hover {
  text-decoration: none;
}

.mwc_container {
  padding-left: 16px;
  padding-right: 16px;
}

.mwc_main_wrapper {
  padding-top: 54px;
}

.mwc_hero_banner {
  position: relative;
}
.mwc_hero_banner .mwc_hero_banner_image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mwc_hero_banner .mwc_hero_banner_image img {
  width: auto;
  height: 450px;
}
.mwc_hero_banner .mwc_hero_banner_content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  background: rgba(0, 85, 111, 0.96);
}
.mwc_hero_banner .mwc_hero_banner_content .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mwc_event_address {
  padding: 50px 0px 40px 0px;
  flex: 1;
}
.mwc_event_address .address_logos_section .address_logos_box {
  margin-right: 26px;
  padding-right: 26px;
  border-right: 1px dashed #ffffff;
}
.mwc_event_address .address_logos_section .address_logos_box img {
  width: auto;
  height: 74px;
}
.mwc_event_address .address_logos_section .address_logos_box:last-child {
  margin-right: 0px;
  padding-right: 0px;
  border-right: none;
}
.mwc_event_address .mwc_event_address_heading {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 36px;
  line-height: 46px;
  color: #ffffff;
}
.mwc_event_address .mwc_event_address_list {
  display: flex;
  align-items: center;
  padding: 0px;
  margin: 0px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 8px;
}
.mwc_event_address .mwc_event_address_list li {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
.mwc_event_address .mwc_event_address_list li::after {
  content: "";
  width: 1px;
  height: 24px;
  background: #ffffff;
  border-radius: 10px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.mwc_event_address .mwc_event_address_list li:last-child {
  margin-right: 0px;
  padding-right: 0px;
}
.mwc_event_address .mwc_event_address_list li:last-child::after {
  content: none;
}

.mwc_hero_banner_heading {
  padding: 12px 50px 40px 50px;
  background: rgba(4, 83, 109, 0.7);
  display: flex;
  max-width: 510px;
  width: 100%;
  position: relative;
  align-self: stretch;
}
.mwc_hero_banner_heading::before {
  content: "";
  width: 100%;
  height: 48px;
  position: absolute;
  top: -47px;
  left: 0px;
  right: 0px;
  background: rgba(4, 83, 109, 0.7);
}

.mwc_heading_text {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 50px;
  line-height: 70px;
  color: #ffffff;
}
.mwc_heading_text span {
  font-family: "Montserrat-SemiBold", sans-serif;
}

.schecule_meet_section {
  padding: 60px 0px 24px 0px;
}

.mwc_section_heading {
  margin-bottom: 30px;
}
.mwc_section_heading h3 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 8px;
  text-align: center;
  color: #24282F;
}
.mwc_section_heading p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #24282F;
  text-align: center;
}

.mwc_form_section {
  background: #EEF6FC;
}

.mwc_form_info_sec {
  padding: 60px 50px;
  background: #00556F;
  color: #ffffff;
}
.mwc_form_info_sec h4 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
}
.mwc_form_info_sec h5 {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}
.mwc_form_info_sec p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.mbb-30 {
  margin-bottom: 30px;
}

.mbb-20 {
  margin-bottom: 20px;
}

.mwc_form_box {
  padding: 60px 30px;
  align-self: center;
}

.mwc_control_label {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #24282F;
}

.mwc_form_control {
  height: 48px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e1e4e8;
  padding: 12px 16px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #24282F;
}

.mwc_brochure_sec p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
}

.mwc_brochure_download {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px 8px 16px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 6px;
  height: 40px;
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
}
.mwc_brochure_download:hover {
  text-decoration: none;
  color: #ffffff;
}
.mwc_brochure_download > div {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px dashed #ffffff;
}

.mwc_promo_header {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  background: #ffffff;
  height: 60px;
  width: 100%;
  padding: 8px 0px;
  display: flex;
  align-items: center;
  z-index: 997;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
}
.mwc_promo_header .container {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mwc_promo_header.topbar-scrolled {
  display: none;
}

#header.header-scrolled {
  top: 0px !important;
}

.hero-banner-bg-white {
  padding: 120px 0px 0px 0px;
}

.subpage_banner .subheading {
  margin-top: 160px;
}

.mwc_promo_header_text {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #24282F;
  margin-right: 20px;
}

.schedule_action {
  display: inline-flex;
  align-items: center;
  padding: 8px 24px;
  background: transparent;
  border: 1px solid #00556F;
  border-radius: 6px;
  height: 36px;
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #00556F;
  text-decoration: none;
  white-space: nowrap;
}
.schedule_action:hover {
  text-decoration: none;
  color: #00556F;
}

.mwc_modal .modal-dialog {
  width: 100%;
  max-width: 400px;
}
.mwc_modal .modal-dialog .close {
  background: transparent;
  border: 0px;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  color: #A9A9AA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  z-index: 1;
}
.mwc_modal .modal-dialog .modal-body {
  padding: 30px;
  text-align: center;
}
.mwc_modal .modal-dialog .modal-body > img {
  width: 80px;
}
.mwc_modal .modal-dialog .modal-body p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #24282F;
  margin-bottom: 0px;
  text-align: center;
}
.mwc_modal .modal-dialog .modal-title {
  font-family: "Montserrat-SemiBold", sans-serif;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #24282F;
}

.mwc_event_address_list span {
  font-size: 14px;
  padding-bottom: 10px;
  padding-left: 4px;
  padding-right: 6px;
}

@media (max-width: 1199px) {
  .mwc_heading_text {
    font-size: 40px;
    line-height: 60px;
  }
  .mwc_hero_banner_heading {
    max-width: 420px;
  }
  .mwc_form_box {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .mwc_event_address .address_logos_section .address_logos_box img {
    height: 60px;
  }
  .mwc_event_address .mwc_event_address_heading {
    font-size: 28px;
    line-height: 38px;
  }
  .mwc_event_address .mwc_event_address_list li {
    font-size: 14px;
    line-height: 20px;
  }
  .mwc_heading_text {
    font-size: 30px;
    line-height: 46px;
  }
  .mwc_hero_banner_heading {
    max-width: 300px;
    padding: 12px 30px 30px 30px;
  }
  .mwc_hero_banner .mwc_hero_banner_image img {
    height: 480px;
  }
  .mwc_form_info_sec {
    padding: 30px 24px;
  }
  .mwc_form_box {
    padding: 30px 0px 30px 24px;
  }
}
@media (max-width: 767px) {
  .mwc_section_heading h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .mwc_form_section .container > .row {
    flex-direction: column-reverse;
  }
  .mwc_form_box {
    padding: 50px 0px;
  }
  .mwc_form_info_sec {
    padding: 40px 30px;
  }
  .mwc_hero_banner .mwc_hero_banner_content .container {
    flex-direction: column-reverse;
  }
  .mwc_event_address {
    padding: 16px 0px 30px 0px;
  }
  .mwc_event_address .address_logos_section .address_logos_box img {
    height: 50px;
  }
  .mwc_event_address .mwc_event_address_heading {
    font-size: 26px;
    line-height: 36px;
  }
  .mwc_hero_banner_heading {
    padding: 20px 0px;
    max-width: 100%;
    background: transparent;
  }
  .mwc_hero_banner_heading::before {
    width: 60%;
  }
  .mwc_hero_banner_heading br:last-child {
    display: none;
  }
}
@media (max-width: 575px) {
  .mwc_hero_banner .mwc_hero_banner_content {
    background: rgba(0, 85, 111, 0.7);
  }
  .mwc_hero_banner .mwc_hero_banner_image img {
    height: auto;
    width: 100%;
  }
  .mwc_hero_banner_heading::before {
    top: -28px;
    height: 28px;
  }
  .mwc_heading_text {
    font-size: 36px;
    line-height: 50px;
  }
  .mwc_form_box {
    padding: 40px 0px;
  }
  .schecule_meet_section {
    padding: 60px 0px 20px 0px;
  }
  .schedule_action {
    font-size: 12px;
    line-height: 18px;
    padding: 8px 10px;
  }
  .mwc_promo_header_text {
    font-size: 12px;
    line-height: 18px;
    margin-right: 10px;
  }
}
@media (max-width: 424px) {
  .mwc_modal .modal-dialog {
    max-width: 92%;
    width: 100%;
  }
  .mwc_heading_text {
    font-size: 30px;
    line-height: 40px;
  }
  .mwc_event_address {
    padding: 10px 0px 30px 0px;
  }
  .mwc_event_address .address_logos_section .address_logos_box {
    margin-right: 20px;
    padding-right: 20px;
  }
  .mwc_event_address .address_logos_section .address_logos_box img {
    height: 40px;
  }
  .mwc_event_address .mwc_event_address_heading {
    font-size: 22px;
    line-height: 30px;
  }
  .mwc_event_address .mwc_event_address_list li {
    font-size: 12px;
    margin-right: 8px;
    padding-right: 8px;
  }
  .mwc_event_address .mwc_event_address_list li::after {
    height: 18px;
  }
  .mwc_hero_banner_heading {
    padding: 10px 0px 20px 0px;
  }
  .schecule_meet_section {
    padding: 40px 0px 20px 0px;
  }
  .mwc_section_heading h3 {
    font-size: 24px;
    line-height: 30px;
  }
  .mwc_form_box {
    padding: 30px 0px;
  }
  .mwc_form_info_sec {
    padding: 24px 16px;
  }
}
/******digi-feb-2024*****/
.feb24-w-80 {
  width: 60%;
  margin: 0 auto;
}

.dig-heding-comp {
  margin-bottom: 30px !important;
  width: 85%;
  margin: 0 auto;
}

.feb24-main-banner {
  justify-content: center !important;
  background: #000;
}
.feb24-main-banner .start-50 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 25px;
}
.feb24-main-banner .feb14-banner-logo img {
  padding: 0px 5px;
  border-radius: 0px;
  width: 240px;
}
.feb24-main-banner .feb14-banner-logo1 img {
  padding: 0px 5px;
  border-radius: 0px;
  width: 300px;
}

.min-banner-overlay {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
}

.digi-w-900 {
  max-width: 900px;
  margin: 0 auto;
}

.feb24-digitral-comp006 .dflexcards .card {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border: 0px;
  padding: 40px 0px;
  border-radius: 8px;
}
.feb24-digitral-comp006 .dig-heding-comp {
  width: 90%;
  margin: 0 auto;
}
.feb24-digitral-comp006 .dig-heding-comp h2 {
  -webkit-line-clamp: 6;
}

/*feb24-4cloum*/
.feb24-4cloum .dig-heding-comp {
  padding-bottom: 20px;
}
.feb24-4cloum .feb24-cards-comp {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0px;
}
.feb24-4cloum .feb24-cards-comp .card {
  border: 0px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  flex: 0 0 23.5%;
  padding: 50px 0px;
}
.feb24-4cloum .feb24-cards-comp .card a {
  color: #000;
}
.feb24-4cloum .feb24-cards-comp .card .divimg {
  padding: 10px;
  min-height: auto;
  overflow: hidden;
}
.feb24-4cloum .feb24-cards-comp .card .divimg img {
  width: 70px;
  height: 70px;
}
.feb24-4cloum .feb24-cards-comp .card .divimg .imgcompsec {
  background: #E5E5E5;
  min-height: 215px;
  transition: 0.6s ease;
  position: relative;
}
.feb24-4cloum .feb24-cards-comp .card .divimg .imgcompsec img {
  background: #E5E5E5;
}
.feb24-4cloum .feb24-cards-comp .card .divimg .imgcompsec:hover {
  transform: scale(1.1);
  cursor: pointer;
}
.feb24-4cloum .feb24-cards-comp .card h5 {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  color: #000000;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.feb24-4cloum .feb24-cards-comp .card p {
  font-family: "Montserrat-Regular", sans-serif;
  margin-bottom: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.feb24-4cloum .feb24-cards-comp .card .img-over-title {
  position: relative;
}
.feb24-4cloum .feb24-cards-comp .card .img-over-title .img-text-over {
  position: absolute;
}

/*feb24-2cloum*/
.feb24-2cloum img {
  height: 50px;
}
.feb24-2cloum .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}
.feb24-2cloum .feb24-2cloum-cards {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0px;
  width: 65%;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card {
  flex: 0 0 50%;
  display: flex;
  gap: 10px;
  padding: 50px 25px;
  flex-direction: column;
  text-align: center;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card .feb14content-sec {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card .feb14content-sec h5 {
  margin: 0px;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card .feb14-2cloum-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  list-style: none;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(1n) {
  border-right: 1px dotted #000;
  border-bottom: 1px dotted #000;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(2n) {
  border-right: 0px dotted #000;
  border-bottom: 1px dotted #000;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(3n) {
  border-right: 1px dotted #000;
  border-bottom: 0px dotted #000;
}
.feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(4n) {
  border-right: 0px dotted #000;
  border-bottom: 0px dotted #000;
}

/*feb24-3cloum*/
.feb24-3cloum-component .dig-heding-comp {
  padding-bottom: 20px;
  width: 80%;
  margin: 0 auto;
}
.feb24-3cloum-component .feb14-3cloum-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  width: 80%;
  margin: 0 auto;
}
.feb24-3cloum-component .feb14-3cloum-content .feb14-cards-content {
  display: flex;
  align-items: center !important;
  gap: 25px;
  flex: 0 0 31%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  flex-direction: column;
  padding: 45px 10px;
}
.feb24-3cloum-component .feb14-3cloum-content .feb14-cards-content h5 {
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  margin: 0px auto;
}
.feb24-3cloum-component .feb14-3cloum-content .feb14-cards-content img {
  width: 50px;
}
.feb24-3cloum-component .feb14-3cloum-content .feb14-cards-content ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
}

/*feb24-4cloum*/
.feb24-4cloum-component .dig-heding-comp {
  padding-bottom: 20px;
  width: 80%;
  margin: 0 auto;
}
.feb24-4cloum-component .feb14-4cloum-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.feb24-4cloum-component .feb14-4cloum-content .feb14-cards-content {
  display: flex;
  align-items: center !important;
  justify-content: center;
  gap: 20px;
  flex: 1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
  padding: 45px 10px;
}
.feb24-4cloum-component .feb14-4cloum-content .feb14-cards-content .feb24-conts-sec {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.feb24-4cloum-component .feb14-4cloum-content .feb14-cards-content .feb24-conts-sec label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb24-4cloum-component .feb14-4cloum-content .feb14-cards-content .feb24-conts-sec h5 {
  font-size: 30px !important;
  color: #0097A6 !important;
  margin: 0px !important;
}
.feb24-4cloum-component .feb14-4cloum-content .feb14-cards-content .feb24-conts-sec p {
  font-size: 14px;
  margin: 0px;
  color: #616175 !important;
}

/*feb4-col4-comp001 st*/
.feb4-col4-comp001 .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feb4-col4-comp001 .container .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
}
.feb4-col4-comp001 .container .col-container {
  display: flex;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
}
.feb4-col4-comp001 .container .col {
  flex: 1;
  padding: 40px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E5E5;
  gap: 10px;
  border-radius: 8px;
}
.feb4-col4-comp001 .container .col label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb4-col4-comp001 .container .col h2 {
  font-size: 30px !important;
  color: #0097A6 !important;
  margin: 0px !important;
}
.feb4-col4-comp001 .container .col p {
  font-size: 14px;
  margin: 0px;
  color: #616175 !important;
}

/*feb4-col3-comp001 st*/
.feb4-col3-comp001 .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feb4-col3-comp001 .container .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
}
.feb4-col3-comp001 .container .col-container {
  display: flex;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
}
.feb4-col3-comp001 .container .col {
  flex: 1;
  padding: 40px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E5E5E5;
  gap: 10px;
  border-radius: 8px;
}
.feb4-col3-comp001 .container .col label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb4-col3-comp001 .container .col h2 {
  font-size: 30px !important;
  color: #0097A6 !important;
  margin: 0px !important;
}
.feb4-col3-comp001 .container .col p {
  font-size: 14px;
  margin: 0px;
  color: #616175 !important;
}

/*feb4-col3-compN02 st*/
.feb4-col3-compN02 .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feb4-col3-compN02 .container .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
}
.feb4-col3-compN02 .container .col-container {
  display: flex;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.feb4-col3-compN02 .container .col-container .col {
  flex: 1;
  padding: 40px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  gap: 15px;
  border-radius: 8px;
  flex: 0 0 31%;
}
.feb4-col3-compN02 .container .col-container .col .feb24col3-img img {
  height: 50px;
}
.feb4-col3-compN02 .container .col-container .col label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb4-col3-compN02 .container .col-container .col h2 {
  font-size: 20px;
  width: 100%;
  margin: 0px auto;
}
.feb4-col3-compN02 .container .col-container .col .feb24col3-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feb4-col3-compN02 .container .col-container .col .feb24col3-cont p {
  margin: 0px;
}

/*feb4-col3-comp002 st*/
.feb4-col3-comp002 .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feb4-col3-comp002 .container .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
}
.feb4-col3-comp002 .container .col-container {
  display: flex;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
}
.feb4-col3-comp002 .container .col-container .col {
  flex: 1;
  padding: 40px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  gap: 15px;
  border-radius: 8px;
}
.feb4-col3-comp002 .container .col-container .col .feb24col3-img img {
  height: 50px;
}
.feb4-col3-comp002 .container .col-container .col label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb4-col3-comp002 .container .col-container .col h2 {
  font-size: 20px;
  width: 100%;
  margin: 0px auto;
}
.feb4-col3-comp002 .container .col-container .col .feb24col3-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feb4-col3-comp002 .container .col-container .col .feb24col3-cont p {
  margin: 0px;
}

/*feb4-col3-comp003-2rows st*/
.feb4-col3-comp003-2rows .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feb4-col3-comp003-2rows .container .dig-heding-comp {
  width: 80%;
  margin: 0 auto;
}
.feb4-col3-comp003-2rows .container .col-container {
  display: flex;
  width: 80%;
  gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.feb4-col3-comp003-2rows .container .col-container .col {
  flex: 0 0 31.8%;
  padding: 40px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  gap: 15px;
  border-radius: 8px;
}
.feb4-col3-comp003-2rows .container .col-container .col .feb24col3-img img {
  width: 50px;
}
.feb4-col3-comp003-2rows .container .col-container .col label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
  margin: 0px;
}
.feb4-col3-comp003-2rows .container .col-container .col h2 {
  font-size: 20px;
  width: 100%;
  margin: 0px auto;
}
.feb4-col3-comp003-2rows .container .col-container .col .feb24col3-cont {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feb4-col3-comp003-2rows .container .col-container .col .feb24col3-cont p {
  margin: 0px;
}

.feb24-ncomp005 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.feb24-ncomp005 li {
  flex: 0 0 50%;
}
.feb24-ncomp005 h3 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 30px !important;
  color: #0097A6 !important;
  margin: 0px !important;
}
.feb24-ncomp005 label {
  font-family: "DIN-BOLD", sans-serif;
  margin: 0px;
  color: #000 !important;
}
.feb24-ncomp005 p {
  color: #616175 !important;
}

/*feb24-solutions*/
.feb24-solutions {
  background: transparent !important;
}
.feb24-solutions .mob-svg-icon {
  display: block;
  width: 50px;
  margin: 0px !important;
  justify-content: flex-start;
}
.feb24-solutions .mob-svg-icon img {
  width: 30px;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card {
  color: #fff;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card h3 {
  font-family: "DIN-BOLD", sans-serif;
  color: #fff;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card:nth-child(1n) {
  padding: 35px 20px;
  background: #00556F !important;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card:nth-child(2n) {
  padding: 35px 20px;
  background: #1A6C8A !important;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card:nth-child(3n) {
  padding: 35px 20px;
  background: #1A6C8A !important;
}
.feb24-solutions .feb24-2cloum-cards .feb24-2cloum-card:nth-child(4n) {
  padding: 35px 20px;
  background: #00556F !important;
}

/*feb24-aboutus*/
.feb24-aboutus .mob-svg-icon {
  display: block;
  width: 30px;
  margin: 0px !important;
  justify-content: flex-start;
  padding-top: 5px;
}
.feb24-aboutus .mob-svg-icon img {
  width: 30px;
}
.feb24-aboutus .about-img img {
  height: auto !important;
  max-width: 96% !important;
  width: 100% !important;
  padding-top: 11px;
}
.feb24-aboutus .section-title {
  gap: 20px;
}
.feb24-aboutus .section-title h2 {
  margin: 0px !important;
}

.feb24-digitral-qapiolt .feb24-app-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  margin: 0 auto;
  padding-top: 50px;
  gap: 20px;
}
.feb24-digitral-qapiolt .feb24-app-icons .imgdiv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 60px;
  border: 1px solid #ccc;
  align-items: center;
  padding: 8px;
}
.feb24-digitral-qapiolt .feb24-app-icons .imgdiv img {
  width: 30px;
}
.feb24-digitral-qapiolt .dflexcards .card {
  padding: 20px 0px;
}
.feb24-digitral-qapiolt .content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feb24-efficient-qa-comp .feb14-3cloum-content {
  width: 80%;
  margin: 0 auto;
}
.feb24-efficient-qa-comp .feb14-3cloum-content .feb24-conts-sec {
  text-align: center;
  flex: 0 0 20% !important;
}
.feb24-efficient-qa-comp .feb14-cards-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feb24-efficient-qa-comp .feb14-cards-content .feb24-conts-sec h5 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 35px !important;
  line-height: 50px !important;
  color: #0097A6;
}
.feb24-efficient-qa-comp .feb14-cards-content .feb24-conts-sec p {
  margin: 0px;
}

.feb24-two-col-bg .feb24-2cloum-cards {
  color: #fff;
  gap: 0px !important;
}
.feb24-two-col-bg .feb24-2cloum-cards .feb24-2cloum-card {
  flex-direction: column;
  padding: 45px 35px;
  flex: 1 0 50%;
}
.feb24-two-col-bg .feb24-2cloum-cards .feb24-2cloum-card:nth-child(1n) {
  background: #5D686D;
}
.feb24-two-col-bg .feb24-2cloum-cards .feb24-2cloum-card:nth-child(2n) {
  background: #9BA2A5;
}
.feb24-two-col-bg .feb24-2cloum-cards .feb24-2cloum-card:nth-child(3n) {
  background: #9BA2A5;
}
.feb24-two-col-bg .feb24-2cloum-cards .feb24-2cloum-card:nth-child(4n) {
  background: #5D686D;
}

.feb24-3cloum-sec1 .conte-v1 {
  gap: 15px;
  display: flex;
  flex-direction: column;
}
.feb24-3cloum-sec1 ul {
  margin: 0px;
  padding: 0px 0px 0px 10px;
}

.feb24_n2col_comp .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.feb24_n2col_comp .feb24_2crads_col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.feb24_n2col_comp .feb24_2crads_col .section-title h2 {
  max-height: 100%;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol_img img {
  height: 400px;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol {
  flex: 0 0 48%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-direction: column;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol h3 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 20px;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol p {
  margin: 0px;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol img {
  width: 100%;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol .digitral-abo-listsec {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol .digitral-abo-img img {
  width: 36px;
}
.feb24_n2col_comp .dig-heding-comp {
  margin-bottom: 30px;
  width: 80%;
  margin: 0 auto;
}
.feb24_n2col_comp .feb24-chat-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0097A6;
  border-radius: 8px;
  padding: 5px 15px;
  width: 60%;
  margin-top: 30px;
  gap: 30px;
}
.feb24_n2col_comp .feb24-chat-progress .chat-text-col {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 20px;
  color: #fff;
  width: 80px;
  text-align: center;
}

.feb24-unlock-comp .feb24-2cloum-cards .feb24-2cloum-card {
  align-items: flex-start !important;
  text-align: left !important;
}
.feb24-unlock-comp .feb24-2cloum-card {
  flex-direction: column;
  padding: 45px 35px;
  flex: 1 0 50%;
}
.feb24-unlock-comp .feb24-2cloum-card:nth-child(1n) {
  background: #00556F !important;
}
.feb24-unlock-comp .feb24-2cloum-card:nth-child(2n) {
  background: #0097A6 !important;
}
.feb24-unlock-comp .feb24-2cloum-card:nth-child(3n) {
  background: #0097A6 !important;
}
.feb24-unlock-comp .feb24-2cloum-card:nth-child(4n) {
  background: #00556F !important;
}

.dimensions-video-comp {
  text-align: right;
}

.dimensions-demo-video {
  border: 0px solid #0097A6;
  border-radius: 8px;
}

.feb14-demo-video-btn {
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.feb14-demo-video-btn img {
  width: 24px;
  height: 24px;
}

.feb24-productservices .feb24product-right {
  width: 85%;
  display: flex;
  gap: 10px;
}

.fade {
  transition: opacity 0.15s linear;
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
}

.btn-overlay {
  font-size: 18px;
  font-family: "DIN-BOLD", sans-serif !important;
}

.date_format {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 16px;
  color: #FF5929;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.selfcare-logo-cont img {
  height: 90px !important;
}

.feb24-aboutus-ptag {
  display: block;
  align-items: center;
  gap: 10px;
}

.qapilot_helps .feb24-2cloum-card {
  align-items: start !important;
  text-align: left !important;
}

.stem-app-section .icon-boxes img {
  width: 44px;
}

.main-hero-banner-height {
  height: 520px;
}

.dropdown-menu {
  font-size: 14px !important;
}
.dropdown-menu label {
  font-family: "DIN-BOLD", sans-serif !important;
  font-size: 16px !important;
  margin-left: 10px !important;
}

.qapilot-banner-logo .feb14-banner-logo img {
  width: 280px;
}

.dropdown-item:active {
  background: transparent !important;
}

.videoplay-btn {
  width: auto;
}

.feb24-mobile-header {
  display: none;
}

.navbar-mobile .active:focus {
  color: #00556F;
}

.mob-section-bottom {
  margin-top: 0px;
  margin-bottom: 15px;
}

.dropdown-item.active {
  background-color: #e9ecef;
}

.video-theme-bg {
  width: 100%;
  position: relative;
}

.new-comp-sec .section-title h2 {
  color: #fff !important;
}
.new-comp-sec .section-title p {
  color: #fff !important;
}

@media (max-width: 1440px) {
  .feb24-2cloum .feb24-2cloum-cards {
    width: 65%;
  }
}
@media (max-width: 1024px) {
  .feb24-aboutus .container {
    width: 100%;
    margin: 0 auto;
  }
  .feb24-aboutus .section-title {
    text-align: center;
    margin: 15px 0px;
  }
  .dig-heding-comp h2 {
    line-height: 35px;
  }
  .feb4-col3-comp003-2rows .container .col-container .col {
    flex: 0 0 30.8%;
  }
  .main-hero-banner-height {
    height: 450px;
  }
}
@media (max-width: 992px) {
  .feb24-4cloum .feb24-cards-comp {
    display: flex;
    flex-wrap: wrap;
  }
  .feb24-4cloum .feb24-cards-comp .card {
    flex: 0 0 48%;
    width: 100%;
  }
  .feb24-2cloum .feb24-2cloum-cards {
    width: 100%;
  }
  .feb4-col3-comp002 .container .col-container {
    width: 100%;
  }
  .feb4-col3-comp003-2rows .container .col-container .col {
    flex: 0 0 48%;
  }
  .feb4-col4-comp001 .container .col-container {
    flex-wrap: wrap;
  }
  .feb4-col4-comp001 .container .col-container .col {
    flex: 0 0 48%;
  }
  .feb4-col3-comp003-2rows .container .dig-heding-comp {
    width: 100%;
  }
}
@media (max-width: 768px) {
  /*feb24-2cloum*/
  .feb24-2cloum .feb24-2cloum-cards {
    width: 100%;
  }
  .feb24-aboutus .mob-svg-icon {
    margin: 0 auto !important;
  }
  .feb24-aboutus .content .digitral-abo-listsec .digitral-abo-img {
    margin-bottom: 10px !important;
    margin-top: 20px !important;
  }
  .feb24-solutions .mob-svg-icon {
    margin: 0 auto !important;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card {
    gap: 10px;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card {
    flex: 0 0 50%;
    display: flex;
    gap: 20px;
    padding: 50px 25px;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(1n) {
    border-right: 1px dotted #000;
    border-bottom: 1px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(2n) {
    border-right: 0px dotted #000;
    border-bottom: 1px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(3n) {
    border-right: 1px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(4n) {
    border-right: 0px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24_n2col_comp .feb24_2crads_col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }
  .feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol {
    flex: 0 0 100%;
  }
  .feb24_n2col_comp .feb24_2crads_col .digitral-abo-cont {
    text-align: center;
    flex-direction: column;
  }
  .btn-overlay {
    font-size: 16px;
  }
  .feb24flex-center {
    display: flex;
    justify-content: center;
  }
  .mob-section-bottom {
    margin-bottom: 50px !important;
  }
  /*feb4-col3-compN02 st*/
  .feb4-col3-compN02 .container .col-container .col {
    flex: 0 0 48%;
  }
}
@media (max-width: 680px) {
  .feb24-aboutus {
    text-align: center;
  }
  .feb24-aboutus .section-title {
    text-align: center !important;
  }
  .feb24-aboutus .content .digitral-abo-listsec {
    flex-direction: column;
    justify-content: center;
  }
  .feb24-2cloum .feb24-2cloum-cards {
    width: 100%;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card {
    gap: 10px;
    padding: 25px;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(1n) {
    border-right: 0px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(2n) {
    border-right: 0px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(3n) {
    border-right: 0px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card:nth-child(4n) {
    border-right: 0px dotted #000;
    border-bottom: 0px dotted #000;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card p {
    margin: 0px;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card ul {
    margin: 0px;
  }
  .feb24-w-80 {
    width: 100%;
  }
  .feb24-digitral-comp006 .dig-heding-comp {
    width: 100%;
  }
  .feb24-unlock-comp .feb24-2cloum-cards .feb24-2cloum-card {
    align-items: center !important;
    text-align: center !important;
  }
  .feb24-main-banner {
    background: #ffffff;
  }
  .dimensions-video-comp {
    text-align: center;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol_img img {
    height: auto;
  }
  .feb24_n2col_comp .feb24_2crads_col .feb24_2cradcol .digitral-abo-listsec {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
  }
  .dig-heding-comp {
    width: 100%;
  }
  .qapilot_helps .feb24-2cloum-card {
    align-items: center !important;
    text-align: center !important;
  }
  .feb24-mobile-header {
    display: block;
  }
  .mob-section-bottom {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mobsection-bottom {
    margin-top: 0px;
    margin-bottom: 45px;
  }
}
@media (max-width: 480px) {
  /*feb24-4cloum*/
  .feb24-4cloum .feb24-cards-comp {
    display: flex;
    flex-direction: column;
  }
  .feb24-4cloum .feb24-cards-comp .card {
    flex: 0 0 100%;
    width: 100%;
  }
  /*feb24-3cloum*/
  .feb24-3cloum-component .feb14-3cloum-content .feb14-cards-content {
    flex: 0 0 100%;
    align-items: center;
  }
  .feb24-3cloum-component .dig-heding-comp {
    padding-bottom: 20px;
    width: 100%;
    margin: 0 auto;
  }
  /*feb24-2cloum*/
  .feb24-2cloum .dig-heding-comp {
    width: 100%;
    padding-bottom: 20px;
  }
  .feb24-2cloum .feb24-2cloum-cards {
    width: 90%;
  }
  .feb24-2cloum .feb24-2cloum-cards .feb24-2cloum-card {
    flex: 0 0 100%;
  }
  /*feb24-aboutus*/
  .feb24-aboutus .mob-svg-icon {
    margin: 0px auto !important;
  }
  .feb24-solutions .mob-svg-icon {
    margin: 0 auto !important;
  }
  .feb24-main-banner h2 {
    margin-bottom: 15px !important;
  }
  .feb24-digitral-qapiolt .feb24-app-icons {
    width: 100%;
  }
  .feb24-digitral-qapiolt .feb24-app-icons {
    gap: 12px;
  }
  .feb24-digitral-qapiolt .feb24-app-icons .imgdiv {
    width: 30px;
    height: 30px;
  }
  .feb24-3cloum-component .feb14-3cloum-content {
    gap: 20px;
    flex-wrap: wrap;
  }
  .feb24_n2col_comp .feb24-chat-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .feb24_n2col_comp .dig-heding-comp {
    width: 100%;
  }
  .feb24-aboutus .about-img img {
    height: auto !important;
    max-width: 96% !important;
    width: 100% !important;
    padding-top: 11px;
  }
  /*feb4-col4-comp001 st*/
  .feb4-col4-comp001 .container .dig-heding-comp {
    width: 100%;
  }
  .feb4-col4-comp001 .container .col-container {
    width: 80%;
    flex-direction: column;
  }
  .feb4-col4-comp001 .container .col-container .col {
    flex: 0 0 100%;
  }
  .feb24-solutions .feb24solutions-count {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
  }
  /*feb4-col3-comp002 st*/
  .feb4-col3-comp002 .container .dig-heding-comp {
    width: 80%;
  }
  .feb4-col3-comp002 .container .col-container {
    width: 80%;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .feb4-col3-comp002 .container .col-container .col {
    flex: 0 0 100%;
  }
  /*feb4-col3-compN02 st*/
  .feb4-col3-compN02 .container .col-container .col {
    flex: 0 0 100%;
  }
  .feb14-demo-video-btn {
    bottom: -15px;
    right: 15px;
  }
  /*feb4-col3-comp003-2rows*/
  .feb4-col3-comp003-2rows .container .dig-heding-comp {
    width: 100%;
  }
  .feb4-col3-comp003-2rows .container .col-container {
    width: 80%;
  }
  .feb4-col3-comp003-2rows .container .col-container .col {
    flex: 0 0 100%;
  }
  .feb4-col3-comp001 .container .col-container {
    flex-direction: column;
  }
  .feb4-col3-comp001 .container .dig-heding-comp {
    width: 100%;
  }
  .selfcare-logo-cont img {
    height: 70px !important;
  }
  .dropdown-menu {
    font-size: 14px !important;
    background: transparent;
  }
  .dropdown {
    border-bottom: 1px solid #ccc;
  }
  .dropdown a {
    border: 0px solid transparent;
  }
  .dropdown ul {
    font-size: 12px !important;
    background: transparent;
    box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25) !important;
    border: 0px solid transparent !important;
    padding: 0px 0px !important;
    border-radius: 0px !important;
    margin-top: 0px !important;
  }
  .dropdown ul li {
    border-bottom: 1px solid #ccc;
  }
  .dropdown ul li a {
    padding: 10px 5px !important;
  }
  .dropdown ul li:nth-child(4) {
    border-bottom: 0px solid #ed1c24;
  }
  .dropdown .dropdown-item:focus {
    background-color: transparent;
    border: 0px solid #000;
  }
  .dropdown .dropdown-item:hover {
    background-color: transparent;
    border: 0px solid #000;
  }
  .dropdown .dropdown-item:active {
    background: transparent !important;
  }
  .dropdown:focus-visible {
    background: transparent !important;
    border: 10x solid transparent !important;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    border-bottom: 0px solid #000 !important;
  }
  .navbar-mobile .dropdown ul {
    padding-left: 24px !important;
  }
}
@media (max-width: 479px) {
  .feb24-2cloum .feb24-2cloum-cards {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }
  .feb4-col3-comp002 .container .dig-heding-comp {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.primary-hero-wrapper {
  padding-top: 0px;
  padding-bottom: 0px;
  background: transparent;
}

.primary-hero-swiper .swiper-pagination-bullet {
  width: 12px !important;
  height: 8px !important;
  border-radius: 20px;
  background: #FFFFFF;
  display: inline-block;
  opacity: 0.5;
}
.primary-hero-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.primary-hero-slide {
  position: relative;
}
.primary-hero-slide .primary-hero-slide-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-hero-slide .primary-hero-slide-image img {
  width: auto;
  height: 450px;
}
.primary-hero-slide .primary-hero-slide-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  top: 0px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-hero-slide .primary-hero-slide-content::before {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #FFFFFF;
  opacity: 0.2;
  display: none;
}
.primary-hero-slide .primary-hero-slide-content::after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 80px;
  left: 80px;
  background: #FFFFFF;
  opacity: 0.2;
  display: none;
}
.primary-hero-slide .primary-hero-slide-content .btn-overlay {
  display: inline-flex;
}
.primary-hero-slide .primary-hero-slide-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.primary-hero-slide .primary-hero-slide-content .mwc_event_address {
  max-width: 768px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.centered-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
  max-width: 768px;
}
.centered-content > * {
  width: 100%;
}
.centered-content .btn-overlay {
  width: auto;
}
.centered-content .logo-img img {
  height: 60px;
}
.centered-content h2 {
  font-family: "DIN-BOLD", sans-serif;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0px;
  text-align: center;
  color: #FFFFFF;
}
.centered-content p {
  font-family: "Montserrat-Regular", sans-serif;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0px;
  color: #FFFFFF;
}

@media (max-width: 575px) {
  .primary-hero-slide .primary-hero-slide-image {
    height: 450px;
  }
  .primary-hero-slide .primary-hero-slide-image img {
    width: 100%;
    height: auto;
  }
  .centered-content h2 {
    font-size: 22px;
  }
  .centered-content p {
    font-size: 16px;
  }
  .primary-hero-slide .primary-hero-slide-content::before {
    content: "";
    width: 40px;
    height: 40px;
  }
  .primary-hero-slide .primary-hero-slide-content::after {
    width: 40px;
    height: 40px;
    bottom: 40px;
    left: 40px;
  }
}
.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: #001f2b;
}

.hero-section {
  padding: 40px 0 40px;
  min-height: auto;
  display: flex;
  align-items: center;
  background: rgba(0, 31, 43, 0.95);
}
.hero-section .hero-content .subtitle {
  color: #FF5929;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.hero-section .hero-content .title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}
.hero-section .hero-content .title .highlight {
  color: #FF5929;
}
@media (max-width: 576px) {
  .hero-section .hero-content .title {
    font-size: 2.5rem;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section .hero-content .title {
    font-size: 3rem;
  }
}
.hero-section .hero-content .description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  color: #fff;
  width: 90%;
}
.hero-section .hero-content .btn-demo {
  background-color: #FF5929;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}
.hero-section .hero-content .btn-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 89, 41, 0.2);
}
.hero-section .hero-image {
  position: relative;
}
.hero-section .hero-image .code-window {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-section .hero-image .load-time {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: white;
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-image .load-time .load-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .hero-image .load-time .load-indicator .time {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.hero-section .hero-image .load-time .load-indicator .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }
  .hero-section .hero-image {
    margin-top: 40px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    padding: 110px 0 70px;
  }
  .hero-section .hero-image {
    margin-top: 30px;
  }
}
.features-section {
  padding: 80px 0;
  background: #003145;
}

.footer {
  padding: 60px 0;
  background: #000d12;
}

:root {
  --primary-color: #008DA9;
  --text-color: #ffffff;
  --background-color: #008DA9;
  --accent-color: #FF4C29;
}

@font-face {
  font-family: "RestoreW00-Book";
  src: url("assets/css/fonts/RestoreW00-Book.woff2") format("woff2"), url("assets/css/fonts/RestoreW00-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  /* background: linear-gradient(135deg, #008DA9 0%, #006B80 100%); */
  /* color: #ffffff;
  min-height: auto;
  position: relative; */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.hero-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #008DA9 0%, #006B80 100%);
  color: #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-image: url('assets/img/circles-pattern.png'); */
  /* background-image: url('assets/img/pattern-bg.png'); */
  background-image: url("../img/ai-home-page-banner-bg.png");
  background-repeat: no-repeat;
  background-size: 600px;
  /* opacity: 0.05; */
  opacity: 1;
  pointer-events: none;
  background-size: auto;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background-image: url("assets/img/ai-home-page-banner-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.hero-section h1 {
  margin: 0px;
}

.container {
  position: relative;
  z-index: 2;
}

.badge {
  font-size: 18px;
  font-family: "DIN-Light";
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge img {
  width: 28px;
  height: 28px;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.dimensions-text {
  font-family: "RestoreW00-Book";
  color: #FF4C29;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-demo {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  color: #fff;
  border: 1px solid #fff;
  font-size: 18px;
}
.btn-demo svg path {
  fill: #ffffff;
}

.btn-demo:hover {
  border: 1px solid #325d73;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #325d73;
}
.btn-demo:hover svg path {
  fill: #325d73;
}

.dashboard-preview {
  position: relative;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 0px;
  padding: 0px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.dashboard-preview img {
  width: 100%;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.play-button svg {
  fill: #ffffff;
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0px;
    text-align: center;
  }
  .title {
    font-size: 2.5rem;
  }
  .dimensions-text {
    font-size: 2rem;
  }
  .dashboard-preview {
    margin-bottom: 40px;
  }
}
@font-face {
  font-family: "RestoreW00-Book";
  src: url("assets/css/fonts/RestoreW00-Book.woff2") format("woff2"), url("assets/css/fonts/RestoreW00-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #008DA9;
  --secondary-color: #006B80;
  --accent-color: #FF4C29;
  --text-color: #ffffff;
  --text-colorp: #00556F;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
  color: var(--text-color);
}

.hero-section h1 {
  margin-bottom: 20px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/ai-home-banner-bg001.png");
  background-size: cover;
  background-position: center;
  /* opacity: 0.1; */
}

.introducing-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}

.introducing-text {
  font-size: 32px;
  font-weight: 500;
}

.introducing-icon {
  width: 32px;
  height: 32px;
}

.hero-title {
  /* font-size: 60px; */
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-title label {
  font-family: "DIN-Light";
}

.hero-title .highlight {
  color: var(--accent-color);
}

.pack-sec {
  position: relative;
}

.pack-img {
  position: absolute;
  bottom: -60px;
  right: -60px;
}

.dimensions-text {
  font-family: "RestoreW00-Book";
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
  background: rgb(255, 76, 41);
  padding: 4px 25px;
  border-radius: 8px;
}

.subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.subtitle-ai-icon {
  position: relative;
}
.subtitle-ai-icon svg {
  position: absolute;
  top: -22px;
  margin-left: -10px;
}

.ai-banner-logo img {
  /* width: 280px; */
  width: 250px;
  margin-bottom: 20px;
}

.cta-button {
  /* font-size: 24px; */
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  /* background: var(--text-color); */
  background: transparent;
  color: #FFFFFF;
  padding: 8px 14px 8px 10px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  cursor: pointer;
}
.cta-button svg {
  width: 30px;
  height: 30px;
}
.cta-button svg circle {
  stroke: #ffffff;
}
.cta-button svg path {
  stroke: #ffffff;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}

.dashboard-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.dashboard-preview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.play-button svg {
  width: 130px;
  height: 130px;
  fill: var(--text-color);
}

/* Extra Large Devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .dimensions-text {
    font-size: 52px;
  }
  .subtitle {
    font-size: 22px;
  }
  .pack-img {
    bottom: -80px;
    right: -30px;
  }
  .pack-img img {
    max-width: 420px;
  }
}
/* Large Devices (desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 56px;
  }
  .pack-img {
    bottom: -60px;
    right: -60px;
  }
  .pack-img img {
    max-width: 380px;
  }
}
/* Medium Devices (tablets, 768px to 991px) */
@media (max-width: 991px) {
  .introducing-wrapper {
    justify-content: center;
  }
  .hero-section {
    padding: 80px 0 80px;
    min-height: auto;
  }
  .hero-title {
    font-size: 42px;
  }
  .dimensions-text {
    font-size: 34px;
    padding: 4px 20px;
  }
  .subtitle {
    font-size: 18px;
    max-width: 100%;
  }
  .dashboard-preview {
    margin-top: 40px;
  }
  .introducing-text {
    font-size: 26px;
  }
  .pack-img {
    bottom: -50px;
    right: -10px;
  }
  .pack-img img {
    max-width: 150px;
  }
  .play-button {
    width: 70px;
    height: 70px;
  }
  .play-button svg {
    width: 110px;
    height: 110px;
  }
  .hero-section .cat-sec {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .cta-button {
    font-size: 20px;
  }
  .cta-button svg {
    height: 35px;
    width: 35px;
  }
}
/* Small Devices (landscape phones, 576px to 767px) */
@media (max-width: 767px) {
  .hero-section {
    padding: 80px 0 80px;
    text-align: center;
  }
  .hero-title {
    font-size: 34px;
    text-align: center;
  }
  .hero-title br {
    display: none;
  }
  .dimensions-text {
    font-size: 28px;
    padding: 4px 15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  .subtitle {
    font-size: 16px;
    margin: 0 auto 30px;
    text-align: center;
  }
  .introducing-wrapper {
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .introducing-text {
    font-size: 22px;
    text-align: center;
  }
  .cta-button {
    padding: 6px 16px;
    font-size: 15px;
    margin: 0 auto;
    justify-content: center;
  }
  .navbar-collapse {
    text-align: center;
    background: rgba(0, 141, 169, 0.95);
    padding: 15px;
    border-radius: 8px;
  }
  .navbar-nav {
    text-align: center;
  }
  .nav-item {
    text-align: center;
  }
  .nav-link {
    display: inline-block;
    text-align: center;
  }
  .hero-section h1 {
    margin-bottom: 20px;
  }
  .subtitle-ai-icon {
    position: relative;
  }
  .subtitle-ai-icon svg {
    position: absolute;
    top: -25px;
    margin-left: -5px;
    width: 35px;
  }
  .ai-banner-logo img {
    /* width: 250px; */
    width: 200px;
  }
}
/* Landscape Mode Fixes */
@media (max-width: 600px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0 50px;
    text-align: center;
  }
  .introducing-wrapper {
    justify-content: center;
  }
  .introducing-wrapper svg {
    width: 35px;
    height: 35px;
  }
  .dashboard-preview {
    margin-top: 30px;
  }
  .pack-img {
    right: -10px;
  }
  .pack-img img {
    max-width: 150px;
  }
}
/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  .dimensions-text {
    font-size: 24px;
    padding: 4px 12px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
  .subtitle {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .introducing-wrapper {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .introducing-text {
    font-size: 20px;
    text-align: center;
  }
  .cta-button {
    margin: 0 auto;
    justify-content: center;
    display: inline-flex;
  }
  .cta-button svg {
    height: 30px;
    width: 30px;
  }
  .navbar-brand {
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-toggler {
    margin: 0 auto;
  }
  .navbar-collapse {
    text-align: center;
  }
  .nav-item {
    text-align: center;
  }
  .play-button {
    width: 50px;
    height: 50px;
  }
  .play-button svg {
    width: 70px;
    height: 70px;
  }
  .pack-img {
    bottom: -10px;
    right: 10px;
  }
  .pack-img img {
    max-width: 100px;
  }
  .dashboard-preview {
    margin-top: 30px;
  }
  .navbar-brand img {
    height: 35px;
  }
}/*# sourceMappingURL=custom.css.map */