@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');

:root {
  --default-font: "Poppins", serif;
  ;
  --heading-font: "Lato", sans-serif;
}

:root {
  --background-color: #fff;
  /* Background color for the entire website, including individual sections */
  --default-color: #555555;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1681aa;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1681aa;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(0, 0, 0, 0.9);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #fff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #fff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fff;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #70b9b0;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f2f9f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #30ac9d;
  --default-color: #DEDEDE;
  --heading-color: #ffffff;
  --surface-color: #44cbbb;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

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

@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}


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

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

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

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

.header .logo img {
  max-height: 60px;
}

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

.scrolled .header {
  position: fixed;
  box-shadow: 0px 4px 25px rgba(56, 75, 255, 0.08);
}

.in_nav_1.dropdown-active {
  display: block;
}

.in_nav a {
    padding: 3px 0 3px 20px;
    margin-top: 5px;
    display: block;
    color: hsl(0deg 0% 0% / 75%);
    font-size: 14px;
    position: relative;
    font-weight: 500;
}
.in_nav h6 i {
    color: #1681aa;
    margin-right: 5px;
    background: hsl(197deg 77% 38% / 20%);
    width: 26px;
    height: 26px;
    display: inline-flex;
    border-radius: 7px;
    justify-content: center;
    align-items: center;
}

.in_nav a:hover {
  color: #1681aa;
}

.in_nav a:hover:after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  left: -3px;
  top: 0;
  background: #1681aa;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 991px) {
  .navmenu {
    padding: 0;
    display: flex;
  }

  .navmenu ul ul.in_nav_1 {
    padding: 10px;
  }

  .in_nav {
    border-left: 3px solid #cccccc3d;
  }

  .in_nav h6 {
    height: 25px;
    margin-left: 20px;
  }

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

  .navmenu li>a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li a.btn {
    padding: 10px 15px;
  }

  .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 ul ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    display: none
  }

  .navmenu ul ul.in_nav_1 {
    padding: 30px;        left: 16px;
        right: 16px;
  }

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

  .navmenu .dropdown ul a {
    padding: 8px 20px;
    font-size: 15px;
    text-transform: none;font-weight: 500;
  }

  .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: #1681aa;
  }

  .navmenu li:hover>ul {
    opacity: 1;
    top: 85%;
    display: block
  }

  .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: 991px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .in_nav a {
    font-weight: 400;
    padding: 3px 0;
  }

  .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);
    transition: 0.3s;
    overflow: auto;
    z-index: 9998;
  }

  .navmenu>ul ul {
    display: none;
    list-style: none;
    padding: 10px 0;
    transition: 0.3s;
  }

  .in_nav {
    padding: 0 20px;
  }

  .in_nav h6 {
    margin-top: 25px;
  }

  .navmenu li>a {
    color: #000;
    padding: 6px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li .btn {
    margin: 0 20px;
  }

  .navmenu li {
    position: relative;
  }

  .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: #0b435f
  }

  .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: 10px 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 .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: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #001d28;
  font-size: 14px;
  padding: 50px 0 0 0;
  position: relative;
}

.f_manu li {
  display: block;
  margin-bottom: 10px;
}

.contact_manu li {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.f_manu li a {
  color: #fff;
}

.contact_manu li i {
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: hsl(0deg 0% 100% / 10%);
}

.footer .icon {
  color: #fff;
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 20px; color: #fff;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-left: 50px;
  transition: 0.3s;
}

.footer .social-links a:first-child {
  margin-left: 0;
}

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

.footer .copyright {
  padding: 20px 15px;
  background: #000d12;
}

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

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
 @font-face {
    font-family: 'Good Times';
    src: url('GoodTimes-Regular.woff2') format('woff2'),
        url('GoodTimes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

  #preloader {
    position: fixed;
    flex-direction: row;
    height: 100%;
    display: flex;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    justify-content: center; text-transform: uppercase;
    align-items: center;
    background:#095c7c url(../img/load-bg.jpg) no-repeat center; background-size: cover;font-family: 'Good Times';
}
.loading__letter {
    font-size: 90px;
    letter-spacing: 4px;
    color: #fff;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    font-weight: 600;
}

.loading__letter:nth-child(2) {
  animation-delay: .1s;	
}
.loading__letter:nth-child(3) {
  animation-delay: .2s;
}
.loading__letter:nth-child(4) {
  animation-delay: .3s;	
}
.loading__letter:nth-child(5) {
  animation-delay: .4s;
}
.loading__letter:nth-child(6) {
  animation-delay: .5s;	
}
.loading__letter:nth-child(7) {
  animation-delay: .6s;
}
.loading__letter:nth-child(8) {
  animation-delay: .8s;
}
.loading__letter:nth-child(9) {
  animation-delay: 1s;
}
.loading__letter:nth-child(10) {
  animation-delay: 1.2s;
}
.loading__letter:nth-child(11) {
  animation-delay: 1.4s;
}
.loading__letter:nth-child(12) {
  animation-delay: 1.6s;
}
.loading__letter:nth-child(13) {
  animation-delay: 1.8s;
}
.loading__letter:nth-child(14) {
  animation-delay: 2s;
}
.technologis {
    position: absolute;
    right: 0;
    bottom: -30px;
       color: #bae5ff;
    font-size: 37px;
}

@keyframes bounce {
  0% {
    transform: translateY(0px)
  }
  40% {
    transform: translateY(-50px);
  }
  80%,
  100% {
    transform: translateY(0px);
  }
}


@media (max-width: 700px) {
  @keyframes bounce {
  0% {
    transform: translateY(0px)
  }
  40% {
    transform: translateY(-35px);
  }
  80%,
  100% {
    transform: translateY(0px);
  }
}
  .loading__letter {
    font-size: 23px;
  }
  .technologis { 
    bottom: -20px; 
    font-size: 12px;
}
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.section {
  padding: 80px 0;
  overflow: clip;
}

/* @media (max-width: 1199px && min-width: 525px) {
  #testimonials .swiper-slide{
    width: 500px !important;
  }
} */
@media screen and (min-width: 525px) and (max-width: 1199px) {
  #testimonials .swiper-slide {
    width: 500px !important;
  }
}

/* @media (max-width: 480px) {
  #testimonials .swiper-slide{
    width: 428px !important;
  }
} */

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 40px;
  position: relative;
}


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

.bg {
  background: url(../img/banner-bg-img.jpg) no-repeat center;
  background-size: cover;

}

.bg2 {
  background: url(../img/bg2.png) no-repeat center;
  background-size: cover;

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 140px 0 80px;
  background: url(../img/hero-bg.jpg) no-repeat center;
  background-size: cover;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  /* background: linear-gradient(270deg, rgba(5, 26, 108, 0) 14.74%, #001723 70.82%); */
  opacity: 0.85;
  background: #001723;
}

.carousel-indicators {

  z-index: 5;
}


/* .hero:before {
  content: '';
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 70px;
  font-weight: 600;
  line-height: 80px; color: #fff;
}

.hero h1 span {
  display: block;
  color: #329fd5;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 16px;
  line-height: 30px;
  color: var(--heading-color);
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
  padding: 8px 40px;
  border-radius: 8px;
  transition: 0.5s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.call_icon {
  background: #2D6A4F;
  width: 70px;
  height: 70px;
  position: absolute;
  color: #fff;
  text-align: center;
  line-height: 54px;
  font-size: 20px;
  border-radius: 100%;
  top: -20px;
  right: -20px;
  border: 10px solid #091918;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 40px;
    text-align: center;
  }

  .hero p {
    font-size: 18px;
    text-align: center;
  }

  .carousel-indicators {
    z-index: 5;
    bottom: -50px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

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

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

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

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

/*--------------------------------------------------------------
# Cards Section
--------------------------------------------------------------*/
.cards .card-item {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.cards .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.cards .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.cards .card-item h4 a {
  color: var(--heading-color);
}

.cards .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.cards .card-item:hover {
  background: var(--accent-color);
  padding: 30px 30px 70px 30px;
}

.cards .card-item:hover span,
.cards .card-item:hover h4 a,
.cards .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  background: #fff;
  padding: 40px;
  border: 1px solid #E9E9E9;
  border-radius: 30px;
  transition: 0.5s;
  text-align: left;
  height: 100%;
}

.services .service-item:hover {
  box-shadow: 0px 20px 40px 0px rgba(76.00000000000001, 111, 255, 0.15);
}

.services .service-item:hover .label {
  color: #ffffff;
  background: #1681aa;
}

/*demo purpose*/
.rt-container {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}



.services .service-item .title {
  margin: 25px 0px 15px;
  font-size: 22px;
  font-weight: 600;
  color: #141212;
}

.services .service-item p {
  opacity: 0.8
}

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



.services .service-item .description {
  font-size: 14px;
}

.services .service-item:hover .icon {}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/


.swiper-container2,
.swiper-container22,
.swiper-container3,
.swiper-container4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.d_icon {

  transition: 0.5s;
  display: block;
  text-align: center;
}

.d_icon img {
  height: 90px;
  margin: 0 auto 15px;
  display: block;
}

.call-to-action .react_bg img {
  max-width: 100%;
  margin: auto;
  max-height: 330px;
}

.call-to-action .react_bg {
  position: absolute;
  top: 0;
  display: flex;
  height: 100%;
  width: 90%;
  left: 5%;
  z-index: -1;
  opacity: 0.3;
}





/*--------------------------------------------------------------
# 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: calc(50%);
  font-size: 34px;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pricing .pricing-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

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

.pricing .pricing-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .pricing-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;

  font-weight: 600;
  transition: 0.3s;
}

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

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

.pricing .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.accordion-flush>.accordion-item {
  border-right: 0;
  border-left: 0;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
  border: 0;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  background-color: transparent;
  box-shadow: inherit;
}

.accordion-button {
  padding: 20px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.input_box {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
}

.input_box label {
  color: #000;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact .info-item a {
  color: #fff;
}

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


.input_box {}

.contact .php-email-form {
  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;
  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 .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

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



.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: #fff;
}

.form_box {
  background: #fff;
  border-radius: 1rem;
  padding: 40px 30px 30px;
  position: relative;
  color: #000;
}

.w100 {
  width: 100%;
}

.btn {
  background: #1681aa;
  border: 2px solid #1681aa;
  color: #fff; border-radius: 10px;
  padding: 10px 30px;
}

.btn:hover {
  background: #2b9cd3;
  color: #fff;
  ;
}

.form_input {
  margin-bottom: 20px;
}

.form_input label {
  margin-bottom: 2px;
}

.top_social_media {
  background: #fff;
  padding: 12px 20px 12px 12px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.top_social_media a {
  color: #103F2A;
  margin: 0 15px;
  display: inline-block;
  font-size: 18px;
}

.top_social_media::after {
  content: "";
  height: 0;
  width: 0;
  border-left: 0 solid transparent;
  border-right: 74px solid transparent;
  border-bottom: 51px solid #ffffff;
  position: absolute;
  right: -73px;
  bottom: 0;
  border-radius: 0 6px 0 0;
}

.hadding {
  color: #000000;
  font-size: 40px;
  font-weight: 600;
}

.ab2 {
  position: absolute;
  border: 10px solid #ffffff;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  right: 50px;
  bottom: -50px;
}

.ab3 {
  position: absolute;
  right: 50px;
  top: 0px;
  animation: cir36 10s linear infinite;
}

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

.color1 {
  color: #8CCBA9;
}

.z1 {
  z-index: 1;
}

.we_slider_box img {
  height: 50px;
}

.line {
  margin-top: -40px;
}

.fw300 {
  font-weight: 300;
}

.color000 {
  color: #000;
}


.sbg1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
}

.sbg2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px
}

.ttu {
  text-transform: uppercase;
}

#about .swiper-button-next,
#about .swiper-button-prev {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background-color: hsl(0deg 0% 100% / 24%);
  background-size: 30%;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

#about .swiper-button-next {
  right: -40px;
}

#about .swiper-button-prev {
  left: -40px;
}

.c {
  background: #DAFFEF;
}

.fw600 {
  font-weight: 600;
}

.color2 {
  color: #2D6A4F;
}

.our-work .swiper-button-next,
.our-work .swiper-button-prev {
  border-radius: 8px;
  width: 40px;
  height: 40px;
  top: -60px;
  background-color: hsl(196.62deg 77.08% 37.65%);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: #fff;
}

.our-work .swiper-button-prev {
  right: 50px;

  left: auto;
}

.our-work .swiper-button-next {
  right: 0;
  left: auto;
}

.bg_light {
  background: #E5FFF4;
}

.footer_logo {
  height: 30px;
}

#call-to-action .swiper-button-next {
  right: -25px;
}

#call-to-action .swiper-button-prev {
  left: -25px;
}

.swiper-button-next::after {
  content: "\f285";
  font-family: bootstrap-icons !important;
}

.swiper-button-prev::after {
  content: "\f284";
  font-family: bootstrap-icons !important;
}

.h_auto {
  height: auto !important;
}

@media (min-width: 992px) {
  .in_nav_1 .col-lg-3 {
    flex: 0 0 auto;
    width: 20%;
  }
}








.pie-wrapper .label {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: flex;
  font-size: 2em;
  line-height: 0.8em;
  justify-content: center;
  align-items: center;
  color: #1681aa;
  border: 1px solid hsl(196.62deg 77.08% 37.65% / 40%);
}

.hero_btn a {
  border-radius: 50em;
  border: 1px solid #ffffff8a;
  padding: 12px 30px;
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  margin: 20px 10px 0;
  transition: all .2s ease;
  background: linear-gradient(180deg, rgb(50 50 50 / 54%) 0, rgb(7 26 34) 100%);
}

.company-experience-list {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.company-experience-list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(237px, 1fr));
  gap: 24px; margin: 0; padding: 0;
}

 
.seperator {
  margin: auto;
  width: 38px;
  height: 4px;
  background: #1681aa;
  display: inline-block;
}

.company-experience-list ul li h2 {
  font-weight: 700;
  color: #000000;
}

.company-experience-list ul li {
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  border: solid 1px hsl(0deg 0% 0% / 11%);
  position: relative;
  overflow: hidden;
}



.kon_p {
  background-color: #ffffff;
  margin: 0px 0px 0px 0px;
  padding: 30px 30px 60px 30px;
  border-radius: 30px 30px 30px 0px;
}

.how-work-no {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.how-work-no-top {
  top: 0;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.kon_p h3 {
  font-size: 1.3rem;
  color: #0b435f;
  margin: 20px 0;
}

.kon_p img {
  height: 50px;
}

.how-work-no span {
  background-color: #1681aa;
  width: 40px;
  color: #fff;
  height: 40px;
  display: flex;
  border-width: 7px 7px 7px 7px;
  border: 4px solid #f3fdff;
  border-radius: 40px 40px 40px 40px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.op0 {
  opacity: 0;
}

.kon_p::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: 0;
  transform: translateY(20%);
  background: url('../img/how-work-box-arrow-1.svg') no-repeat;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  width: 137px;
  height: 137px;
}

.kon_p2 {
  margin-top: 130px;
}

.kon_p2::after {
  top: -65%;
  bottom: auto;
  background: url('../img/how-work-box-arrow-2.svg') no-repeat;

}

.kon_p4::after {
  display: none;

}

.kon_p li {
  position: relative;
  padding: 0 0 5px 20px;
  display: block;
}

.kon_p li::after {
  position: absolute;
  content: "\F26E";
  font-family: bootstrap-icons !important;
  left: -2px;
  font-size: 25px;
  top: -6px;
  color: #1681aa;
}

.work_box {
  background: #fff;
  padding: 25px;
  border-radius: 25px;
}

.work_box img {
  border-radius: 25px;
}

.work_box h4 {
  color: #000;
}

.testimonial-box-items .icon {
  position: absolute;
  top: 40px;
  right: 40px;
}

.testimonial-box-items .client-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}

.testimonial-box-items .client-items img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.testimonial-box-items .client-items .client-content h4 {
  margin-bottom: 5px;
  color: #1681aa;
}

.testimonial-box-items .client-items .client-content .star {
  margin-top: 5px;
  color: #1681aa;
}

.testimonial-box-items {
  position: relative;
  z-index: 9;
  margin-top: 30px;
  background-color: #fff;
  box-shadow: 0px 4px 25px rgba(56, 75, 255, 0.08);
  padding: 40px;
  margin-bottom: 20px;
}

ul.technology {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 90px;
}

ul.technology li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.technology-tabs li a {
  border: 1px solid #1681aa;
  background: #fff;
  color: #1681aa;
  min-width: 100px;
  border-radius: 25px;
  padding: 11px 20px;
  text-align: center;
  box-shadow: 8px 5px 15px 0px rgb(22 129 170 / 26%);
}

.technology-tabs li {
  margin: 5px 10px;
}

.technology-tabs li a.active {
  background: #1681aa;
  color: #fff;
}


.teimagined_itm {
  background-color: #f2f7ff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.teimagined_itm2 {
  background-color: #f1fdff;
}

.teimagined_itm h3 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
}

.teimagined_itm p {
  height: 90px;
}

.inner_banner {
    background: #001723;
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
}
.inner_banner_img {
    position: absolute;
    width: 100%;
    opacity: 0.3;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

@media (max-width: 991px) {
  .swiper-slide {
    width: 315px !important;
  }

  #portfolio .container,
  #testimonials .container {
    max-width: 900px !important;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero_btn a {
    padding: 12px;
    font-size: 10px;
    margin: 12px 2px 0;
  }

  .technology-tabs {
    overflow: auto;
    padding-bottom: 10px;
    justify-content: inherit !important;
    flex-wrap: inherit;
  }

  .technology-tabs li a {
    padding: 11px 15px;
    white-space: nowrap;
  }

  .technology-tabs li {
    margin: 0 4px;
  }

  .kon_p::after {
    display: none;
  }

  .how-work-no {
    top: 0;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .kon_p {
    margin-top: 45px;
  }

  .swiper-container3 {
    margin-top: 70px;
  }
}


@media (max-width: 767px) {
  .header .logo img {
    height: 40px;
  }

  .sbg2,
  .sbg1 {
    width: 230px;
  }

  .line {
    margin-top: -20px;
  }

  .hero .btn-get-started,
  .hero .btn {
    padding: 8px 20px;
  }

  .form_box {
    padding: 50px 20px 25px;
  }

  .top_social_media a {
    margin: 0 8px;
  }

  .po_re_mo {
    position: relative;
  }

  .about_bg_right {
    top: auto;
    width: 100%;
    bottom: 0;
  }

  #about .swiper-button-prev {
    left: -15px;
  }

  #about .swiper-button-next {
    right: -15px;
  }

  .footer .social-links a {
    margin-left: 30px;
  }

  .services_right {
    padding: 18px 20px;
  }

  .section {
    padding: 40px 0;
  }

  .d_icon img {
    height: 85px;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .company-experience-list ul li {
    padding: 15px 10px;
  }

  .company-experience-list ul p {
    margin-bottom: 0;
  }

  .hadding {
    font-size: 28px;
  }

  #about .hadding {
    margin-top: 110px;
  }

  .teimagined_itm {
    padding: 25px;
  }

  .ab3 {
    right: 0px;
    height: 50px;
  }

  .services .service-item {
    padding: 25px;
  }

  .ab2 {
    bottom: -100px;
  }
   .company-experience-list ul {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
/* Select2 dropdwon CSS */
.service-section .select2-container {
  line-height: 2.2 !important;
}
.service-section .select2-container .selection .select2-selection {
  border-color: #dddddd !important;
}
.service-section .select2-container--open .select2-selection[aria-expanded="true"] {
  border-color: var(--accent-color) !important;
}
#mobile{
  line-height: 1.8;
}
.iti--allow-dropdown{
  width: 100%;
}



/*==== about page===== */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 
    color:#000;
}
 

 
.about-banner {
    padding-top: 100px;
    position: relative;
    z-index: 5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(213.06deg 100% 9.61% / 72%);
    background-blend-mode: multiply;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.about-banner h1 {
    font-size: 3.5rem;
    font-weight: 700;color: #fff;
}
.about_list li{    display: inline-flex;
    width: 49%;
    margin: 0 0 15px;align-items: center;
    gap: 10px;    
    font-weight: 500;
    line-height: 1.7em;}

.about_list li i {
    color: #ffffff;
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #1681aa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.tab_in{ background: #fff; border-radius: 40px; padding: 70px;box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 6%);}
.tab_in .nav a{     padding: 12px 30px;   border: 1px solid #1681aa;    color: #1681aa; border-radius: 10px;}
.tab_in .nav a.active{   background: #1681aa;    color: #fff; }
.br30{ border-radius: 30px;}

.since_section{ background: #004f6d;    color: #fff; font-weight: 300; }
.big_since{     color: transparent;
    -webkit-text-stroke: 2px #fff;
    font-weight: 700;
    font-size: 220px;    line-height: 225px; }
.team_box {
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
}



 @media (max-width: 767px) {

.about-banner h1 {
           font-size: 1.7rem;
        line-height: 1.4;
}
.tab_in { 
    border-radius: 30px;
    padding: 20px;
}
.about_list li{   
    width: 49%;
    margin: 0 0 15px; 
    font-size: 13px;
    line-height: 1.2em;}
    .big_since { 
    -webkit-text-stroke: 1px #fff; 
    font-size: 80px;
    line-height: 85px;
}
 }


 /*==== software development====== */

 .services-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border: 1px solid #E9E9E9;
    border-radius: 30px;
    transition: 0.5s;
    text-align: left;
    height: 100%;
}
.service_icon {
    background: linear-gradient(295deg, #117398 0%, #2b9cd3 100%);
    min-width: 3.5rem;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: #fff;    transition-duration: .3s;
}
.services-box h3 {
    color: #0f172a;
    font-size: 1.4rem;
    font-weight: 600;
}
 .services-box:hover{    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgb(0 0 0 / 10%);}
 .services-box:hover .service_icon{ transform: scale(1.2)}
 .bg_dark{    background: #012e3f;    color: #fff;}
.ready-to-software {
    position: absolute;
    width: 100%;
    object-fit: cover;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}
.font50{font-size: 50px;}

.process-box {
    padding: 30px  ;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: relative;
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px; height: 100%;
}
.process-box .step {
    display: inline-block;
    background-color: #ddefff;
    color: #000000;
    padding: 7px 20px;
    font-size: 18px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    border-radius: 50px; 
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    position: absolute;
    right: 15px;
    top: 24px; font-weight: 600;
}
.process-box h3 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.process-box:hover .step {     background-color: #1681aa;    color: #fff; }
.process-box:hover {  border: 1px solid #1681aa;     }

.item_box1 {
    padding:2rem 1.5rem 1.5rem;
    border: 1px solid hsl(0deg 0% 100% / 25%);
    border-radius: 16px;margin-left: 15px;
}
.item_box1 h3{font-size: 1.125rem;        line-height: 1.75rem;}
.item_box1 p{opacity: 0.8; font-weight: 200;}
.item_box1_number {
    background: linear-gradient(295deg, #117398 0%, #2b9cd3 100%);
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    transition-duration: .3s;
    position: absolute;
    left: -15px;
    top: -26px;
    font-weight: 600;
}

.side-scroll-sec .sticky-box {
    position: sticky;
    top: 80px; 
    z-index: 1;  
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    border-radius: 20px;
}

.item_box2 {
    padding: 30px 30px 30px 100px; 
    position: relative;
    border: 1px solid #e0e0e0; 
    border-radius: 20px; transition: .3s;
}
.item_box2:hover { 
    border: 1px solid #1681aa;  
}
.item_box2 h3{ font-size: 1.25rem;        line-height: 1.75rem;}
.item_box2-icon {
    background: linear-gradient(295deg, #117398 0%, #2b9cd3 100%);
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    transition-duration: .3s;
    position: absolute;
    left: 28px;
    top: 30px;
    font-weight: 600;
}
.position-initial{position: initial!important;}


    .timeline {
      position: relative;
      max-width: 1100px;
      margin: 0  auto;
    }

    .timeline::after {
      content: '';
      position: absolute;
      width: 3px;
      background: #1681aa;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

.timeline-item {
    padding: 10px 60px;
    position: relative;
    width: 50%;
}

    .timeline-item.left {
      left: 0;text-align: right;
    }

    .timeline-item.right {
      left: 50%;
    }

    .timeline-box {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.timeline-number {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(295deg, #117398 0%, #2b9cd3 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;    font-size: 24px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0px 4px 16px hsl(196.62deg 77.08% 37.65% / 48%);
}

    .timeline-item.left .timeline-number {
      left: 100%;
    }

    .timeline-item.right .timeline-number {
      left: 0%;
    }
.timeline-box h3 {
        font-size: 1.5rem; margin-bottom: 15px;
    }
    /* Responsive */
 

.timeline-box .bi {
    background: hsl(197deg 77% 38% / 20%);
    height: 3rem;
    width: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #1681aa;
    transition-duration: .3s;
    font-weight: 600;
}
.nav_dark{ border-bottom: 1px solid #ffffff65; justify-content: center;} 
.nav_dark .nav-link{ border-bottom: 3px solid transparent!important; background: transparent; color: #fff;padding: 12px 20px;}
.nav_dark .nav-link.active {
   border: 0!important;
    border-bottom: 3px solid #28a1d0!important;
    background: transparent; 
    color: #28a1d0;
}
 .nav_dark .nav-link:hover{ border-color:transparent;}
.nav_dark_body li {
    display: inline-block;
    border: 1px solid hsl(0deg 0% 100% / 30%);
    padding: 7px 20px;
    border-radius: 8px;
    margin: 5px;
}
   @media (max-width: 768px) {
      .timeline::after {
        left: 20px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px; 
      }
.timeline-item.left {
  text-align: left;
}
      .timeline-item.right {
        left: 0;
      }

      .timeline-number {
        left: 20px !important;
      }
      .timeline-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.process-box h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-right: 55px;
}
.service_icon{ margin-bottom: 16px;}
.font50 {
    font-size: 30px;
}
    }

    .shopify_box {
    padding: 30px;  height: 100%;
    border: 1px solid #e0e0e0; 
    border-radius: 20px; background: #fff; }
.shopify_box h3{font-size: 20px;    margin-top: 20px;}
.shopify_box .bi {
    display: inline-flex;
    background-color: #ddefff;
    color: #1681aa; 
    font-size: 22px;  align-items: center; justify-content: center;
    border-radius: 10px;
    transition: .3s;  width: 60px; height: 60px;
}
.shopify_box:hover .bi { 
    background-color: #1681aa;
    color: #fff;   
}
.advantages_sec .item_box1 { padding: 2rem 2rem  2rem  6rem; }
.advantages_sec .item_box1_number {  left: 32px;    top: 32px; }

@media (max-width: 768px) {
.nav_dark { 
    overflow: auto;
    flex-wrap: initial;
}
.nav_dark { 
    overflow: auto;
    flex-wrap: initial;justify-content: left;
}
.nav_dark .nav-link {
    white-space: nowrap;
}
}