@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Titillium Web bold';
  src: url('TitilliumWeb-Bold.woff2') format('woff2'),
      url('TitilliumWeb-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}




.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color:#000;
  font-family: 'Titillium Web';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color:#fff;
  font-family: 'Titillium Web';
}

/* PHP Email Form Messages
------------------------------*/
.form_box .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.form_box .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.form_box .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.form_box .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 35px 0;
  transition: all 0.5s;
  z-index: 997;
  position: absolute;
  width: 100%;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 72px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 12px 5px;
    background-image: linear-gradient(to right, #1a2122, #223439);
    border-radius: 100px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu li {
    position: relative;
    font-size: 16px;
    padding: 5px 12px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  /*.navmenu li:last-child a {
    padding-right: 0;
  }*/

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-image: linear-gradient(to right, #00A7D6, #0A767B);
    color: #fff!important;
    /* letter-spacing: 1px; */
    display: inline-block;
    padding: 5px 10px;
    border-radius: 51px;
    transition: 0.3s;
    font-size: 16px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 142px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 20px;
    font-size: 15px;
    text-transform: none;
    color: #000;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color:#fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    position: absolute;
    right:0;
    top:15px;
  }
   .swiper-slide .card {
    min-height: 200px!important;
 }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: 'Titillium Web';
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 5px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(8 8 8 / 92%);
    transition: 0.3s;
    color: #fff;
  }
  .home_banner_content {
    position: absolute;
    top: 11%;
  }
  .home_bg_img .delivering_text {
    color: #2FCADB;
    font-family: 'Signika';
    font-size: 26px;
}

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  box-shadow: 0px 0px 12px 0px rgb(255 255 255 / 41%);
  color: #fff;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  background: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 720px; */
  position: relative;
  padding: 0px 0 0px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 80px;
  font-weight: bold; 
  line-height: 56px;
  letter-spacing: 2px;
  font-family: 'Titillium Web bold';
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 5px 0 20px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero .btn-get-started {
  font-family: 'Titillium Web';
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background-image: linear-gradient(to right, #08bbec, #0c8a91);
  color: #fff;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .swiper-slide .card img {
    height: 48px;
    width: 48px;
    margin-right: 0;
    text-align: center;
    display: inline-block;
  }
  .swiper-slide .card-body {
    padding: 12px 20px 20px;
    height: auto!important;
   }

}

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.card-img{
  height: 160px;
  object-fit: cover;
}

.about_img_box .card{
  background: linear-gradient(96.79deg, #383737 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #4a4e4a 174.24%);
  color: #fff;
  border-radius: 16px;
}
.about_img_box .card-body{
  padding: 20px 28px;}
.about_img_box .card-body p {
  font-size: 16px;
  color: #fff;
}
.about_img_box .card-body p span{
  color: #2FCADB;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: 'Titillium Web';
  font-size: 14px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.services .service-item:hover:before,
.services .service-item:hover:after {
  background: var(--accent-color);
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: var(--contrast-color);
}

.services .service-item:hover i {
  background: var(--surface-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.alt-services .img img {
  transition: 0.6s;
}

.alt-services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.alt-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.alt-services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.alt-services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.alt-services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
  .home_top {
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    width: 261px;
  }
  .about_sec_text {
    text-align: center;
    padding: 0px 5px;
    font-size: 16px;
}
.service_sec .card-title {
  padding: 0px 0px 0px 10px;
  margin-top: 20px;
  margin-bottom: 0px;
  position: absolute;
  bottom: 0;
  top: 8px;
  left: 72px;
}


}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: 'Titillium Web';
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Titillium Web';
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
 
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}

.faq .faq-item p {
  font-size: 15px;
}

.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* .contact {
  background-image: url("../img/contact-bg.png");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
} */

/* @media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
} */

/* .contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .form_box {
  height: 100%;
}

/* .contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
} */

.contact .form_box input[type=text]:focus,
.contact .form_box input[type=email]:focus,
.contact .form_box textarea:focus {
  border-color: var(--accent-color);
}

.contact .form_box input[type=text]::placeholder,
.contact .form_box input[type=email]::placeholder,
.contact .form_box textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form_box button[type=submit] {
  background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);
  border: 0;
  padding: 10px 6px;
  transition: 0.4s;
  border-radius: 50px;
  float: left;
  color:#fff;
  width: 200px;
}
.form_box label{
  color: #12C4E3;
  font-size: 18px;
  font-family: 'Titillium Web';
} 
.contact_info_num ul li a{color:#fff;display:flex;gap:2px;} 
.contact_info_num ul{padding-left: 0px;}
.contact_info_num ul li .bi{    color: #12C4E3;
  background: linear-gradient(96.79deg, #727272 -62.94%, #717274 -62.92%, rgba(90, 90, 90, 0) 54.42%, #747474 174.24%);
  padding: 3px 7px;
  margin: 1px;
  border-radius: 4px;}

.form_box{
  background: linear-gradient(96.79deg, #414040 -62.94%, #383838 -62.92%, rgba(90, 90, 90, 0) 54.42%, #444343 174.24%);
  padding: 24px;
  border-radius: 10px;
  margin-left: 100px;
}
/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/****new style**/
body p{font-family: 'Poppins';}
.home_bnr_heading{
  padding-left:50px;
  padding-top:110px;
}
/* .home_bg_img{
    background: url(../img/banner/banner.webp) center / cover;
    background-repeat: no-repeat;
    position: relative;
    top:0px;
    height: auto;
} */


 .home_banner_content{
  position: absolute;
  top:24%;
  left: 5%;
  margin: 0;
  right: 0;
  /* margin: auto; */
  width:50%;
 }
.home_top{
  position: absolute;
  z-index: 9;
  left: 0;
  top: 0;
  width: 440px;
}
.home_top img{
  width:100%;
}
.mySwiper-banner .swiper-slide video {
  width: 100%;
}
.swiper.mySwiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  height:100%;
  max-width: 600px;
  margin:auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.mySwiper-banner .swiper-slide{height: 670px;padding-bottom: 0px;}
.mySwiper-banner .swiper-slide img{height: 100%; width: 100%;overflow: hidden;}
.swiper-button-prev{top:74%;left:46%;}
.swiper-button-next{top:74%;right:46%;}
.home_bg_img .delivering_text{color:#2FCADB; font-family: 'Signika';font-size: 27px;}
.home_bg_img p{color:#fff;font-family: 'Poppins';font-size: 16px; font-weight: 400;text-transform: capitalize;}
.hero .btn-get-started {
  background-image: linear-gradient(to right, #00A7D6, #0A767B);
  color: #fff;
}
.videos_width{
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.swiper-slide .card-body {
  padding: 12px 20px 20px;
  height: 174px;
}
.call_mail{height: 30px;line-height: 30px;}
.call_mail a{color: #fff !important;}
.partner_contact a{color: #fff!important;}
.partner_contact ul{display:flex;}
.partner_contact ul li{
  height: 35px;
  margin: 0px 10px;
  line-height: 32px;
  border: 1px solid #01A0C8;
  border-radius: 40px;
  padding: 0px 26px;
  font-size: 16px;
  margin-right: 0px;
}
.search-container{position: relative;}
.search-container button {
  float: right;
  margin-right: 16px;
  background: #ddd0;
  position: absolute;
  right: -32px;
  color: #fff;
  border: transparent;
}
.search-container input[type=text] {
  padding: 0px 4px;
  margin-top: 0px;
  font-size: 13px;
  border: none;
  background: #000;
  color: #fff;
}
.search-container input[type=text]::placeholder {
  color: #fff;
}
.search-container input[type=text]:focus-visible {
  outline: 0px solid rgba(255, 235, 205, 0); 
}
.about.section{
  /* background: url(../img/banner/mid_sec_banner.webp) center / cover; */
  background: url(../img/banner/the_problem_solve.png) center / cover;
  background-repeat: no-repeat;
  position: relative;
  top:0px;
  height: auto;
  background-attachment: fixed;
}
.about_us_text {font-size:22px;font-weight:600;text-transform: uppercase;}
.about_secbx p{color: #fff;font-size: 16px;margin-top: 40px;}
.about_secbx ul li{color: #fff;font-size: 27px; font-family: 'Signika';}
.about_secbx ul li span, .about_us_text, .solutions_text{font-size:21px;color: #2FCADB; font-weight: 600;}
.btn-get-started{
  background-image: linear-gradient(to right, #08bbec, #0c8a91);
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 36px;
  border-radius: 50px;
  transition: 0.3s;
}
.btn-get-started:hover {
  background-image: linear-gradient(to right, #08bbec, #0c8a91);
  color: #fff;
}
.about_heading, .solutions_heading{
  font-size: 67px;
  font-weight: 600;
}
.about_sec_text p{color:#Fff;font-size:16px;}
.about_sec_text{
  text-align: center;
  padding: 0px 140px;
  font-size: 16px;
}
.the_problems_txt{padding-left: 60px;}
.the_problems_img{padding-right: 50px;}
.the_problems_txt p{color:#fff;}
.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 30px;
  color: #fff;
}
.swiper-button-next, .swiper-button-prev{
  display: initial;
}
#particles-js{
  position: absolute;top: 0px;height: 100%;width: 100%;
}
.wht-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 68px;
  right: 15px;
  background-color: #0cb74c;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 999999;
}
.wht-floats {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 130px;
  right: 15px;
  background-color: #0077B5;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 26px;
  box-shadow: 2px 2px 3px #999;
  z-index: 999999;
}
.wht-my-float {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 999;
}
/***counter**/
#counter {
  background: rgba(0, 0, 0, .05);
  padding: 25px 0px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#counter li {
  flex: 1;
  /* text-align: center; */
  font-size: 50px;
  padding: 0px 50px;
  list-style: none;
}
#counter span.percent:after {
  content: "%";
  display: inline-block;
}
.count.percent{
  -webkit-text-stroke: 3px #12C4E3;
  font-size: 100px;
  font-weight: 700;
  font-family: 'Poppins';
}
#counter p{
  font-size: 16px;
  color: #fff;
}

/***counter**/
.solution_slider{padding-top:55px;}
.solutions_title_box p{color:#fff;font-size:16px;}
.swiper-slide .card{
  background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #171717 174.24%);
  color: #fff;
  margin:0px 22px;
}
.swiper-slide .card img{
 height:48px;
 width:48px;
 margin-right:20px;
}
.swiper-slide{padding-bottom: 40px;}
.swiper-slide .card-title, .service_sec .card-title {
  font-size:22px;color:#2FCADB;padding: 0px 40px 0px 0px;
  margin-bottom: 0px;
  font-weight: 500;
  word-break: break-word;
}
.swiper-slide .card-title{
  padding: 0px 0px 0px 10px;
  margin-bottom: 0px;
  bottom: 0;
  text-align: left;
  position: relative;
  top: 12px;
}
.midl_right_shape_solution{
  position: absolute;
  right: -330px;
  top: 40px;
  z-index: -111;
}
.midl_right_shape_solution img{width:100%}

.midl_right_shape_partner {
    position: absolute;
    left: -300px;
    /* width: 692px; */
    top: -435px;
    z-index: -9;
}
.midl_right_shape_partner img{
  width:100%;
}
.left_shape{
    position: absolute;
    top: -288px;
    left: -260px;
}
.left_shape img{
  width: 100%;
}

.left_shape_contact{
  position: absolute;
  top: -294px;
  left: -394px;
  z-index: -11111;
}
.left_shape_contact img{
  width: 100%;
}

.box_right{padding-right: 40px;}
.box_left{padding-left: 40px;}
.footer_right_shape{
  position: absolute;
  right: 0;
  /* width: 210px; */
  bottom: -88px;
}
.footer_right_shape img{
  width: 58%;
  float: right;
}

.recent_right_shape{
  position: absolute;
  right: -261px;
  bottom: -181px;
  z-index: -911;
}
.recent_right_shape img{width:100%;}

.service_sec .card-body .row {
  align-items: end;
  position: relative;
  margin-bottom: 20px;
}
.service_sec .card-title {
  margin-bottom: 0px;
}
.swiper-slide .card-text{font-size:16px;margin-top:10px;text-align:center;}
.swiper-slide .card-body {padding:12px 20px 20px;}
.swiper-pagination-bullet{background: #fff;opacity: 0.5;}
.swiper-pagination-bullet-active {background: #00cddd;opacity: 1;}
.swiper-slide .card-body .row{line-height: 53px;
  height: 50px;position: relative;margin-bottom: 20px;}
.service_sec{margin-bottom: 30px;}
.service_sec .card{
  background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #323335 174.24%);
    color: #fff;
    padding: 15px;
    border-radius: 16px;
}
.service_sec .card-body{padding: 15px 0px;}
.service_sec img{
  height:54px;
  width:54px;
 }

.service_sec .card-text{font-size: 16px;}
    
.clients_img{
  height: 100px;
  margin-top: 85px;
  position: relative;
}
.clients_img .marquee {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 165px;
  overflow-x: hidden;
}
.section.midshapes{
  padding: 0px;
}

.clients_img .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-70%); }
}

.clients_img .client_image{
    background: #fff;
    height: 66px;
    width: 165px;
    padding: 10px 15px;
    border-radius: 10px;
    border: 3px solid #30B0C7;
    /* border: 4px solid; */
    /* border-image-source: linear-gradient(90deg, #30B0C7 0%, #115865 100%); */
    margin: 0px 16px;
    display: inline-flex;
}

.clients_img .client_image img{
  width: 100%;
  object-fit: contain;
}
.contact_info_num ul li{list-style: none;}

/****news slider****/
/*.swiper-container-news{position: relative;}*/
.swiper-container-news {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 120px 0px 50px 0px;
}
/*.news_slider{margin-top: 75px;}*/
.recent_news .solutions_heading{padding: 0px 0px;}
.recent_news .swiper-container {
  position:relative;
  width: 100%;
  height: 300px;
}
.news_img{
  width:100%;
}
.recent_news .swiper-container > .swiper-slide__content {
position:absolute;
top:0;
}

.recent_news .swiper-slide {
/* height: 300px;
display:flex; */
background: linear-gradient(96.79deg, #181818 -62.94%, #000000 -62.92%, rgb(50 49 49 / 87%) 54.42%, #000000 174.24%);
align-items: center;
justify-content:center;
transition:all 200ms linear;
transform: scale(1);
padding: 25px;
border-radius: 14px;

}
.recent_news .swiper-slide img{
  border-radius: 15px;
  width: 100%;
  height:250px;
}
.recent_news .swiper-slide-active{
  /* transform: scale(1); */
  /* background: #fc0; */
  margin-top: -100px;
  border: 2px solid #3ED5DD;
}
.news_description p{
  color: #3ED5DD;
  font-size: 22px;
  line-height: 28px;
  /* margin-top: 30px; */
  padding: 45px 0px;
  margin-bottom: 0px;
  padding: 20px;
  min-height: 130px;
}
.news_readmore {
  background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);
  font-size: 18px;
  color: #fff;
  width: 100%;
  padding: 8px;
  font-weight: 700;
}

/****news slider**End**/

.recent_news .swiper-slide__content {
height: 300px;
}

#contact p, #contact h2, #contact h3{color:#fff;}

.form_box .form-control {
  color: #ffffff;
  -webkit-appearance: none;
  background: linear-gradient(96.79deg, #414040 -62.94%, #383838 -62.92%, rgba(90, 90, 90, 0) 54.42%, #444343 174.24%);
  -moz-appearance: none;
  appearance: none;
  background: #FFFFFF1F;
  border:0px;
}
.form_box input{padding: 10px 5px 10px 15px;border-radius: 14px;}
.form_box .form-control::placeholder{color:#8d8a8a!important;}
.service_box_sec{margin-top:3rem;}
.navbar-fixed-bottom{
  /* margin-top:150px; */
}
.form_box textarea{
  border-radius:14px; 
  resize: none;
  padding: 15px 20px;
}
.navbar-fixed-bottom p, .navbar-fixed-bottom ul li a{font-size:16px;color:#fff;font-family: 'Titillium Web';}
.footer_nav li{margin: 0px 13px;font-size:16px;color:#fff;font-family: 'Titillium Web';list-style: none;}
.footer_arrow{
border-top: 1px solid #fff;
background: linear-gradient(96.79deg, rgba(23, 23, 23, 0.52) -62.94%, rgba(50, 51, 53, 0.52) -62.92%, rgba(90, 90, 90, 0) 54.42%, rgba(23, 23, 23, 0.52) 174.24%);
padding: 12px 0px;
}
.footer_arrow:before, .footer_arrow:after {
  border-color: transparent transparent white transparent;
  border-style: solid;
  border-width: 40px;
  content: "";
  left: 50%;
  margin: 0 0 0 -40px;
  position: absolute;
  top: -80px;
}
.footer_arrow:after {
  border-color: transparent transparent black transparent;
  top: -78px;
}
.footer_nav {margin-bottom: 0px;}
.footer-social-links{
float: right;
margin-right:36px;
}
.contact_info_num{margin-top: 25px;}
.btn-submit{font-size: 22px;font-weight:600;}
.footer-social-links a{
background: #12C4E3;
padding: 1px 6px;
border-radius: 4px;
font-size: 20px;
margin: 5px;
list-style: none;
}
.service_content_foot{
  text-align: center;
  width: 100%;
  display: block;
  height: 118px;
  padding-top: 15px;
}
.delivery_tomorrow_text{color: #12C4E3 !important;font-size: 27px !important;}
.multiplr_service span{
  font-size: 18px;
  font-weight: 400;
  padding: 0px 10px;
}
.bdr_left{
  border-left: 1px solid #fff;
  height: 22px;
  line-height: 22px;
  display: inline-block;
}
/* .service_content_foot p{margin-bottom:0px;} */
.copyright{color:#fff;}
.click_icon_change{
height: 30px;
width: 30px;
color: #fff;
position: absolute;
left: 7px;
right: 0;
margin: auto;
top: -24px;
font-size:25px;
z-index: 99;
cursor: pointer;
}
.togglebox{display: none;}
.about_sec_box, .vision_sec_box, .mission_sec_box{
  /* background: linear-gradient(96.79deg, #646464 -62.94%, #5a5858 -62.92%, rgb(90 90 90 / 12%) 54.42%, #ffffff57 174.24%);
  */
  background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #171717 174.24%);
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #939090;
  border-radius: 10px;
}
.about_image{
  background-color: #607d8b36;
  border-radius: 10px;
}
.para_text p{color:#fff; text-align: justify;}

.vision_box img{
  width: 16%;
}
.mission_img_icon img{
  width: 12%;
}
.section-service .nav-pills .nav-link {
  background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #171717 174.24%);
  padding: 20px 0px 0px;width:200px;
  margin:10px;
}
.section-service .nav-pills .nav-link.active, .section-service .nav-pills .show>.nav-link {
  border:2px solid #fff;
}

.section-service .nav {display: -webkit-inline-box;}
.section-service .tabs_box p{
  color:#2FCADB; margin-top:15px;
}
.w20{width:20%;}
.tabs_box{width:200px;height:132px;}
.services_title{color:#2FCADB;}
.tab_body .tab-pane p{
  color:#fff;
}


.tab_body .swiper {
  width: 100%;
  height: 100%;
}

.tab_body .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ffffff00;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab_body .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab_body{margin-top:15px;}
.section-service .solutions_heading{
  text-transform: uppercase;
}
.about_image img{width: 100%;}
 .why_choose-us-sec {
    background: url(../img/banner/about_bg.jpg) center / cover;
    background-repeat: no-repeat;
    position: relative;
    top: 0px;
    height: auto;
    background-attachment: fixed;
}
.social_icon{display: flex;top: -10px;
  position: relative;}
.social_icon .bi{
  color: #000000;
  margin: 5px;
  background-color: #12C4E3;
  border-radius: 50%;
  border-radius: 50%;
  height:40px;
  width:40px;
  display: flex;
  align-items: center;
  justify-content: center;}
  
  .bg_about_mission::before {
    content: "";
    background: url(../img/white-accent-01.png) center / cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0px;
    height: 100%;
    opacity: 0.1;
    width: 100%;
    background-position: top center;
    z-index: -9;
}
  .why_choose_head{
    /* background-color: #1a3139eb; */
    background-color: #1a3139db;
    padding: 65px 25px;
    text-align: center;
    border-radius: 20px;
  }
  .why_choose_head .solutions_heading{
    margin-bottom: 60px;
    text-transform: uppercase;
  }
  .trusded_icon{margin-bottom: 20px;}
  .trusded_icon .bi{
    background: #1d2025a8;
    color: #ffff;
    border-radius: 50%;
    justify-content: center;
    font-size: 26px;
    align-items: center;
    height: 62px;
    width: 62px;
    display: inline-grid;
  }
  .chooseusbox p{
    color:#fff;
  }
  .foot-logo{padding-bottom:80px;}
  .logo-end-footer{text-align: end;}
  .btn-organised{
    background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);
    padding: 10px 22px;
    border: 5px solid #000000;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 30px;
    text-transform: uppercase;
    outline: 2px solid #19bee2;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-left:18px;
  }
  .bdr_btm{border-bottom: 1px solid #fff;}
    .export_team .solutions_heading {
      font-size: 67px;
      font-weight: 600;
      text-transform: uppercase;
      padding-bottom: 40px;
      letter-spacing: 2px;
  }
  .export_team{text-align:center;}
  .team_boxs{
    /* padding: 60px 20px 120px 21px; */
    /* background-color: #1a3139db; */
    border-radius: 14px;
    padding: 25px;
    border: 1px solid #cccccc6b;
    background: linear-gradient(96.79deg, #181818 -62.94%, #000000 -62.92%, rgb(50 49 49 / 87%) 54.42%, #000000 174.24%);
  }
  .team_boxs .card-body{
    /* background-color: transparent;
    background-image: linear-gradient(308deg, #1a3139 0%, #1d2025 100%);
    border: 5px solid #1a3139;
    padding: 15px;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    border-radius: 10px;
    margin: auto;
    width: 200px; */
    padding: 15px 0px 0px;
    color: #fff;
  }
  .team_boxs .card-body h4{color:#2FCADB}
  .pulse-effect{color:#fff;    display: inline-flex;}
  .watch_text{line-height: 55px;}
  .play-icon{
    display: flex;
    line-height: 48px;
    color: #fff;
  }
  .team_img_bx{
    height: 300px;
    overflow: hidden;
  }
  .video_icon_hm .thumb{
    border: 1px solid #fff;
    padding: 10px;
    height: 50px;
    width: 50px;
    line-height: 20px;
    border-radius: 50%;
    align-items: center;
    margin-right: 10px;
    position: relative;
  }
  .video_icon_hm .thumb:before {
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    animation-delay: .2s;
    background-color: #2FCADB;
  }
.pulse-effect .thumb img{
  height: 75%;
    width: 75%;
    position: relative;
    left: 5px;
    top: 2px;
}

  .btn-close_video{
    float: right;
    position: absolute;
    top: -3px;
    right: -3px;
    z-index: 9999;
    border-radius: 50%;
    width: 30px;
    height: 30px;
  }
  .circle1 {
    position: absolute;
    background-color: inherit;
    height: 12%;
    width: 7%;
    margin-top: 2px;
    border-radius: 100%;
    opacity: 0.5;
    animation: pulse 3s ease-out infinite;
    background: #00c6d55c;
    }
    .circle1:nth-of-type(1) {
    animation-delay: -0.5s;
    }
    .circle1:nth-of-type(2) {
    animation-delay: -1s;
    }
    .circle1:nth-of-type(3) {
    animation-delay: -1.5s;
    }
    @keyframes pulse {
    100% {
    transform: scale(2.75);
    opacity: 0;
    }
    }
    .close_button_compliance {
        top: -9px;
        right: -8px;
        height: 30px;
        width: 30px;
        border: 1px solid #2FCADB;
        color: #2FCADB;
        border-radius: 50%;
        position: absolute;
        z-index: 111;
    }
    .organized_img {
        /* position: absolute; */
        height: auto;
        width: 100%;
    }
    .btn-submit{
      background-image: linear-gradient(to right, #00A7D6, #0A767B)!important;
      color: #fff;border-radius:50px;
    }
    .organized_left_para, .number{color:#fff;text-align: center;}
    .vision_box .bi.bi-plus{
      font-size: 51px;
      color: #2FCADB;
      font-weight: 500;
      height: 42px;
      display: table-caption;
    }
    .vision_box p{
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;  
      overflow: hidden;
    }
    
    .vision_sec_box h2, .mission_sec_box h2 {color:#2FCADB;}
    .vision_sec_box p{
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;  
      overflow: hidden;
    }
    .mission_sec_box p{
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;  
      overflow: hidden;
    }
    .abouthome{
      height: 465px;
      padding-bottom: 0px;
    }
    .home_bg_img .swiper{
      width: 100%;
    }
    .home_bg_img.abouthome::before, .home_bg_img.servicehome::before{
      background: url(../img/banner/accent3-01.png) center / cover;
      background-repeat: no-repeat;
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      opacity: 0.25;
      height: 100%;
      width: 100%;
      background-position: 0px -280px;
      background-size: cover;
    } 

    .home_bg_img.solution_home::before{
      background: url(../img/banner/solution-bnr-bg.jpg) center / cover;
      background-repeat: no-repeat;
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      opacity: 0.25;
      height: 100%;
      width: 100%;
      background-position: 0px -85px;
      background-size: cover;
    }

    .img_details_bx{
      border: 4px solid #fff;
      border-radius: 6px;
    }
    .home_bnr_heading {
      /*text-transform: uppercase;*/
    }
   
    .cyber-icon .bi-circle-fill{
      outline: 6px solid #00a4cd;
      border-radius: 50%;
      height: 12px;
      width: 12px;
      display: inline-block;
    }
    .abouthome .home_banner_content {
      position: absolute;
      top: 24%;
      left: 0;
      margin: 0;
      right: 0;
      width: 100%;
      text-align: center;
    }
    .boder_protuction{
      border: 1px solid #ffffff45;
      padding: 10px 15px 1px 15px;
      display: inline-flex;
      line-height: 20px;
      border-radius: 45px;
      align-items: center;
      margin-bottom: 32px;
      background-color: #ffffff2b;
      width: fit-content;
      justify-content: center;
    }
    .cyber-icon-box-icon{
      padding-right:15px;
    }
    .choose_bdr_right{
      border-right: 1px solid #cccccc6b;
    }
    .choose_bdr_left{
      border-left: 1px solid #cccccc6b;
    }

   .btn_learn{
    border-style: solid;
    border-width: 7px 7px 7px 7px;
    border-color: #313439;
    margin-top: 25px;
    background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);
    border: 0;
    padding: 10px 6px;
    font-size: 22px;
    transition: 0.4s;
    border-radius: 50px;
    float: left;
    color: #fff;
    width: 200px;
    }
    .servicehome{
      height: 525px;
      padding-bottom: 0px;
    }
    .servicehome .home_bnr_heading h1{
      line-height: 100px;
    }
    .servicehome .home_banner_content {
      position: absolute;
      top: 24%;
      left: 0;
      margin: 0;
      right: 0;
      width: 100%;
      text-align: center;
  }


  .solution_home{
    height: 525px;
    padding-bottom: 0px;
  }
  .solution_home .home_bnr_heading h1{
    line-height: 80px;
  }
  .solution_home .home_banner_content {
    position: absolute;
    top: 24%;
    left: 0;
    margin: 0;
    right: 0;
    width: 100%;
    text-align: center;
}



.z-index-1{z-index:-1;}
.service_top_img {width:100%;}
  .service_sec_box{
    background: linear-gradient(96.79deg, #646464 -62.94%, #5a5858 -62.92%, rgb(90 90 90 / 12%) 54.42%, #ffffff57 174.24%);
    color: #fff;
    padding: 65px 20px 60px 20px;
    margin-bottom: 20px;
    border: 1px solid #939090;
    border-radius:20px;
    position: relative;
    margin: 25px 12px;
  }
  .service_sec_box:hover{
    background-color: #1f424e8c;
  }
  .learnmore .modal-content{
    background-color: #191d20;
    font-family: 'Titillium Web';
    color: #fff;
    box-shadow: 0px 0px 0px 5px #ccccccdb;
  }
.service_box{padding: 15px 0px;}
.service_sec_box p{color:#fff;}
.service_box h2{
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}
.service_sec_box.bg-icon1::before, .service_sec_box.bg-icon2::before, .service_sec_box.bg-icon3::before, .service_sec_box.bg-icon4::before, .service_sec_box.bg-icon5::before{
  background: url(../img/icon/chip-icon.png) center / cover;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  opacity: 0.1;
  height: 50%;
  width: 58%;
  object-position: bottom;
  z-index: -1;
  background-size: cover;
} 
.service_sec_box.bg-icon2::before{
  background: url(../img/icon/network-icon.png) center / cover !important;
}
.service_sec_box.bg-icon3::before{
  background: url(../img/icon/security-icon.png) center / cover !important;
} 
.service_sec_box.bg-icon4::before{
  background: url(../img/icon/security-icon.png) center / cover !important;
} 
.service_top_img{height:500px;}
.bg_color{
  background-color: #1f424e8c;
}
.our-customer-say{
  background: url(../img/banner/about_bg.jpg) center / cover;
  background-repeat: no-repeat;
  position: relative;
  top: 0px;
  height: auto;
  background-attachment: fixed;
}
.our-customer_head{
  background-color: #1a3139db;
  padding: 65px 32px;
  text-align: center;
  /* border-radius: 20px; */
}
.testmonial_client_slider {
  display: flex;
  align-items: center;
  height: 340px;
}
.testmo_name_sec{
  display: flex;
  gap: 20px;
  align-items: center;
}
.slider_content p{color:#fff;text-align: left;}
.name_clients h5{
  margin-bottom: 0px;
  font-size:20px;
  text-transform: uppercase;
}
.testmonial_client_slider .swiper-slide{padding-left: 60px;}
.name_clients p{
  font-size:14px;
  color:#fff;
  margin-bottom: 0px;
}
.testmo_name_sec img{
  border-radius: 50%;
  box-shadow: 0px 0px 0px 1px #0d303a;
  height: 80px;
  width: 80px;
}
.testmo_client_pic_sec{
  display: flex;
  justify-content: space-between;
}
.customer_say_leftside{text-align:left;color:#fff;}
.testmonial_icon .bi-quote{
  display: flex;
}
.testmonial_icon .bi-quote{
  font-size: 56px;color: #00a4cd;
  transform: rotate(180deg);
}

.testmonial_client_slider .swiper-slide {
  border-left: 5px solid #00a4cd;
  padding: 20px 0px 20px 60px;
}

.learnmore .btn-close{
  background-color: #ffffff;
  font-size: 11px;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  border: 1px solid #03A9F4;
  position: absolute;
  right: -11px;
  top: -13px;
  color: #000;
  opacity: 0.9;
}
.blog_date {
  /* background-image: linear-gradient(to right, #00A7D6, #0A767B); */
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  padding: 0px 10px;
  margin-top: 4px;
  border-radius: 5px;
}
.blog_date p{margin-bottom: 0px;}
.point_text ul{
  justify-content: space-around;
  color: #fff;
  display: flex;
}
.point_text ul li {
    list-style: none;
    border: 1px solid #ffffff45;
    padding: 15px 20px;
    display: inline-flex;
    line-height: 10px;
    border-radius: 45px;
    align-items: center;
    margin-bottom: -26px;
    background-color: #1a2c2f;
    width: fit-content;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0px 0px 0px 2px #c3c4c7;
}

.point_text{padding-top:65px;}
.point_text.security_sec{padding-top:35px;}
.solution_image_sec img{border-radius:6px;}
.solution_sec_box {
  background: linear-gradient(96.79deg, #646464 -62.94%, #5a5858 -62.92%, rgb(90 90 90 / 12%) 54.42%, #ffffff57 174.24%);
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #93909099;
  border-radius: 10px;
}
.section-solution .card{
  background: linear-gradient(96.79deg, #646464 -62.94%, #5a5858 -62.92%, rgb(90 90 90 / 12%) 54.42%, #ffffff57 174.24%);
  color: #fff;
}
.section-solution .card-body .btn.btn-primary{background: linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%); position:absolute;bottom: 15px;}
.section-solution .card-body .btn.btn-primary:hover {
  background: linear-gradient(298.54deg, #16a8afed -7.7%, #14add9f0 97.12%);
}
.solution_content_heading{margin-top: 45px;}
.security_solutuions{margin-top: 30px;}
.solution_content_heading p{color:#fff;}
.solution_content_heading ul li{color:#fff;}
.solution_list{text-align: center;}
.solution_list ul{ margin: 0px;padding: 0px;}
.solution_list li{
  list-style: none;
  font-size: 20px;
  background-image: linear-gradient(to right, #00A7D6, #0A767B);
  padding: 8px 10px;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.solution_list li:hover {
  background: #003a6a61;
}
.tab_body .tab-pane .middle_content p{
  text-align: left;
}
.left_sides_content ul li{
  color: #fff;
}
.bdr-lft{position: relative;}
.bdr-lft::before {
  content: ' ';
  position: absolute;
  width: 2px;
  height: 80px;
  background-color: #00A7D6;
  left: -14px;
  display: block;
  top: 34px;
}
.xdr_content, .edr_content_sec, .ndr_content_bx{color:#fff;}
.solution_home .home_bnr_heading {
  padding-top: 65px;
}
.solution_home .home_bnr_heading.cybersecurity {
  padding-top: 20px;
}


.solution_home .home_bnr_heading {
  padding-top: 65px;
}
/*****partners******/

.flip_flop_sec{margin-top: 25px;}

.flip_flop_sec .flip-card {
  background-color: transparent;
  height: 150px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flip_flop_sec .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip_flop_sec .flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip_flop_sec .flip-card-front, .flip_flop_sec .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
  border: 3px solid #30B0C7;
}
.flip_flop_sec .flip-card-front img{
  width:67%;
}
.flip_flop_sec .flip-card-front {
  background-color: #fff;
  color: black;
  align-items: center;
  display: flex;
  justify-content: center;
}

.flip_flop_sec .flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip_flop_sec .flip-card-back p{margin-bottom: 0px;}

/*****partners*******/
.recent_news_sec {
  background: linear-gradient(96.79deg, #646464 -62.94%, #5a5858 -62.92%, rgb(90 90 90 / 12%) 54.42%, #ffffff57 174.24%);
  color: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #93909099;
  border-radius: 10px;
}
.recent_news_list ul {margin:0px;padding:0px;}
.recent_news_list ul li {    list-style: none;
  list-style: none;
  list-style: none;
  margin: 19px 0px;
  /* background-image: linear-gradient(to right, #00A7D6, #0A767B); */
  text-align: left;
  padding: 8px 10px;
  border-radius: 0px;
  border-top: 1px solid #cccccca6;
}
.recent_news_list ul li p{margin-bottom:0px;}

.recent_news_list ul li a:hover {
  text-decoration: underline;
  cursor:pointer;
  color:#03A9F4;
}
.pagination_num{margin-top:20px;}
.pagination_num .page-item.disabled .page-link{background: linear-gradient(298.54deg, #313838 -7.7%, #3e4548 97.12%);color:#fff;}
.pagination_num .page-item .page-link{background:linear-gradient(298.54deg, #0A767B -7.7%, #00A7D6 97.12%);color:#fff;}
.pagination_num .page-item .page-link:hover{background:linear-gradient(298.54deg, #00A7D6 -7.7%, #00A7D6 97.12%);}

  .solution_slider .slick-dots li button {
    border: 0; width: 12px;height: 12px;
    background: #ffffff;border-radius: 50%;
}
.solution_slider .slick-dots li button:before {
  width: 12px;height: 12px;
}
.solution_slider .slick-dots li button:before {
  font-size: 0px;
}
.solution_slider .slick-dots {
  bottom: 0px;
}
.solution_slider .slick-prev, .solution_slider .slick-next {
  display: none !important;
}
.slider2 .slide-items {
  padding-bottom:60px;
}
.slider2{
width: 100%; 
}
.list_content li{
  color:#fff;
  font-family: "Poppins", sans-serif;
}

.particale_shape{
  position: absolute;
  right: 0;
  width: 500px;
  float: right;
  bottom: 0;
}
.img_sec_bx img, .right_sides_img img {width:100%;}
.bg_about_missiona .section-solution .card-text{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bg_about_missiona .section-solution .card-body{
  min-height: 270px;
  max-height: 400px;
  overflow: auto;
}
.bg_boxes p{ 

}

/****share****/

.share-wrapper .share {
  width: 40px;
  height: 40px;
  float: right;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  line-height: 2.1;
  background: #1b416d;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color .4s;
  box-shadow: 0 1px 5px rgba(0,0,0,.28);
}
.share-wrapper .share.active + .social li {
  transform: scale(1);
}

.share-wrapper ul.social li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  margin-left: 8px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 15px;
  box-shadow: 0.5px 0.87px 4px 0 rgba(0,0,0,.3);
  transition: all .4s;
  transform: scale(.4);
}
.share-wrapper ul.social {
  opacity: 0;
  visibility: hidden;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.share-wrapper .share.active:before {
  content: "x";
  font-size: 29px;
  top: -5px;
  position: relative;
  text-align: center;
}
.share-wrapper ul.social.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-15px);
  display: flex;
}
.share-wrapper ul.social img {
  max-width: 100%;
}
.database_security {height:385px;width:55%; object-fit:cover;}
.security_analytics {height:385px;width:60%; object-fit:cover;}
.security_analytics img, .database_security img, .unique_characteristics img, .database_security img, .security_analytics img {width:100%;}
.data_privacy_content p, .data_privacy_content p, #Malware_Analysis p li, #Security_Analytics li {color:#fff;}
.data_privacy_content p, .data_privacy_content li, .security_solutuions p, .security_solutuions li{color:#fff;}
.bg_boxes{
  background: linear-gradient(96.79deg, #171717 -62.94%, #323335 -62.92%, rgba(90, 90, 90, 0) 54.42%, #323335 174.24%);
  color: #fff;
  padding: 15px;
  border-radius: 16px;
  width: fit-content;
  text-align: center;
}
.swal2-styled.swal2-confirm{
	background-color: #00a5d2 !important;

}
.blog_details_text h4{color: #12C4E3}
.blog_details_text ul li, .list_content li{
  font-family: "Poppins", sans-serif;
}
.img-type {
    background: white;
    border-radius: 7px;
    padding: 8px;
    width: 10%;
    margin-right: 10px;
}
  .ght {
    margin-top: 15px;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
  background-image: none !important;
}
.section-solution .card{
  margin-top: 20px;}
  .mySwiper-clients .swiper-wrapper{    transition-timing-function: linear !important;}

  /*akash css*/
.solution-details-new-wrapper .accordion-body{
  background: #000000!important;
  border: 1px solid #FFFFFF!important;
}
.solution-details-new-wrapper .accordion-button{
   background: #000000!important;
   border: 1px solid #FFFFFF!important;
}
.solution-details-new-wrapper .accordion-item:first-of-type>.accordion-header .accordion-button{
  border-top-left-radius: 0px!important;
  border-top-right-radius: 0px!important;
}
.solution-details-new-wrapper .accordion{
  border:0px!important;
  --bs-accordion-border-width:0px!important;
}
.solution-details-new-wrapper .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
 border-bottom-left-radius: 0px!important;
  border-bottom-right-radius: 0px!important;
}

.solution-details-new-wrapper .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url('../img/new-img/arrow_white.png');
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../img/new-img/arrow_white.png');
    transform: var(--bs-accordion-btn-icon-transform);
}

.solution-details-new-wrapper h4{
  margin:0;
  font-size: 17px;
}

.checkbtn{
  display: flex;
  gap:1rem;
}

.checkbtn label{
    font-size: 14px;
    font-family: 'Titillium Web';
}

.checkbtn input[type="checkbox"] {
  accent-color: #00bfff;
  border: 1px solid #00bfff;
  border-radius: 5px;

}
.form-new-wrapper .mt-top{
  margin-top: 10px!important;
}
.blog_card img{
  height: 250px;
    width: 100%;
    object-fit: fill;
}

.blog_card h4{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog_card p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.testmonial_client_slider .swiper-button-prev::after,
.testmonial_client_slider .swiper-button-next::after {
  display: none !important;
}
.testmonial_client_slider .custom-prev{
    background: #00a4cd;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testmonial_client_slider .custom-next{
    background: #00a4cd;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testmonial_client_slider .swiper-button-next{
    top: 95%!important;
    right: 5%!important;
}
.testmonial_client_slider .swiper-button-prev{
     top: 95%!important;
    left: 80%!important;
}