/*-----------------------------------------------------------------------------------

    Template Name: Sample - Corporate Business Bootstrap4 HTML5 Template
    Template URI: site.com
    Description: Sample - Corporate Business Bootstrap4 HTML5 Template
    Author: MD THAHERIL ISLAM
    Author URI: site.com
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. Header
    03. Hero
	04. Footer

-----------------------------------------------------------------------------------*/
/*===========================
    1. COMMON css 
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Catamaran", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #3D3D3D;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a {
  text-decoration: none;
  transition: all linear 0.3s;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Catamaran", sans-serif;
  font-weight: 700;
  color: #3D3D3D;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 21px;
  font-weight: 500;
  line-height: 30px;
  color: #3D3D3D;
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.slick-slide {
  outline: 0;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/*===== All Button Style =====*/
/* =========================================================
   COMMON BUTTON
========================================================= */

.main-btn,
.main-btn-outline,
.main-btn-2,
.main-btn-border,
.blob-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 46px;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;

  border: 0;
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer;

  overflow: hidden;
  isolation: isolate;

  transition:
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================================================
   PRIMARY BUTTON
   White background + animated gradient border
========================================================= */

.main-btn {
  color: #ffffff;
  background: #2aa4c9;
}


/* Animated border */
.main-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 2px;
  border-radius: 12px;

  background:
    linear-gradient(120deg,
      #2aa4c9 0%,
      #61C0AB 25%,
      #ffffff 45%,
      #61C0AB 65%,
      #2aa4c9 100%);

  background-size: 300% 300%;
  background-position: 0% 50%;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: buttonBorderScroll 3s linear infinite;

  pointer-events: none;
  z-index: 2;
}


/* Primary button hover */

.main-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);

  background: #3D3D3D;

}


/* =========================================================
   SECONDARY BUTTON
   TRANSPARENT + ANIMATED BORDER
========================================================= */

.main-btn-outline,
.main-btn-2,
.main-btn-border {
  color: #2aa4c9 !important;
  background: transparent;
}

.infetech-banner-content .main-btn-outline,
.infetech-banner-content .main-btn-2,
.breadcrumb-btns .main-btn-outline,
.breadcrumb-area .main-btn-outline,
.einv-hero-actions .main-btn-outline,
.einv-final-cta .main-btn-outline,
.main-btn-outline.text-white {
  color: #ffffff !important;
}


/* Animated border */

.main-btn-outline::before,
.main-btn-2::before,
.main-btn-border::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 2px;
  border-radius: 12px;

  /*
      Cyan → Green → Highlight → Cyan
    */
  background:
    linear-gradient(120deg,
      #2aa4c9 0%,
      #61C0AB 25%,
      #2aa4c9 40%,
      #61C0AB 55%,
      #2aa4c9 75%,
      #61C0AB 100%);

  /*
      Oversized gradient creates
      the scrolling effect
    */
  background-size: 300% 300%;

  animation: outlineBorderScroll 3s linear infinite;

  /*
      Show ONLY the border
    */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 2;
}


/* =========================================================
   SECONDARY BUTTON HOVER
========================================================= */

.main-btn-outline:hover,
.main-btn-2:hover,
.main-btn-border:hover {
  color: #ffffff;

  /*
      Still transparent
    */
  background: transparent;

  transform: translateY(-2px);

  box-shadow:
    0 8px 22px rgba(42, 164, 201, 0.16);
}


/* Make border brighter on hover */

.main-btn-outline:hover::before,
.main-btn-2:hover::before,
.main-btn-border:hover::before {
  animation-duration: 1.8s;
}


/* =========================================================
   BORDER SCROLL ANIMATION
========================================================= */

@keyframes outlineBorderScroll {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


@keyframes buttonBorderScroll {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* =========================================================
   WHITE HEADER BUTTON
========================================================= */

.main-btn-white {
  color: #2aa4c9 !important;
  background: #ffffff !important;
}

.main-btn-white::before {
  content: "";
  position: absolute;
  inset: 0;

  padding: 2px;
  border-radius: 12px;

  background:
    linear-gradient(120deg,
      #2aa4c9,
      #61C0AB,
      #2aa4c9);

  background-size: 300% 300%;

  animation: buttonBorderScroll 3s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 2;
}

.main-btn-white:hover {
  color: #ffffff !important;

  background:
    linear-gradient(135deg,
      #2aa4c9,
      #61C0AB) !important;

  transform: translateY(-2px);
}


/* =========================================================
   DARK BANNER BUTTON
========================================================= */

.main-btn.text-white {
  color: #ffffff !important;
  background: transparent !important;
}

.main-btn.text-white::before {
  background:
    linear-gradient(120deg,
      #2aa4c9,
      #61C0AB,
      #ffffff,
      #61C0AB,
      #2aa4c9);

  background-size: 300% 300%;

  animation: outlineBorderScroll 3s linear infinite;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.main-btn.text-white:hover {
  color: #ffffff !important;
  background: transparent !important;
}


/* =========================================================
   FOCUS
========================================================= */

.main-btn:focus-visible,
.main-btn-outline:focus-visible,
.blob-btn:focus-visible {
  outline: 3px solid rgba(42, 164, 201, 0.35);
  outline-offset: 4px;
}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .main-btn::before,
  .main-btn-outline::before,
  .main-btn-white::before {
    animation: none;
  }

  .main-btn,
  .main-btn-outline,
  .blob-btn {
    transition: none;
  }
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content a.main-btn-white {
  color: #2aa4c9 !important;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content a.main-btn-white:hover {
  color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    padding-left: 0;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  .section-title {
    padding-left: 0;
    padding-top: 20px;
  }
}

.section-title span {
  color: #61C0AB !important;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 18px;
}

.section-title span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  background: #61C0AB;
  height: 21px;
}

.section-title .title {
  font-size: 42px;
  color: #3D3D3D;
  margin-top: 8px;
  line-height: 56px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title .title {
    font-size: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title .title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
  }
}

.section-title p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.section-title.section-title-2 .title {
  color: #fff;
}

/*===========================
    2.HEADER css 
===========================*/
.infetech-header-area {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 99;
}

.infetech-header-area .templates-logo {
  background: #3D3D3D;
  padding: 42px 80px;
  height: 100%;
}

@media (max-width: 767px) {
  .infetech-header-area .templates-logo {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
  }
}

.infetech-header-area .templates-logo img {
  max-width: 160px;
}

.infetech-header-area .header-wrapper {
  display: flex;
  column-gap: 50px;
}

@media (max-width: 767px) {
  .infetech-header-area .header-wrapper {
    display: block;
  }
}

.infetech-header-area .header-box {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area .header-box {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .infetech-header-area .header-box {
    display: flex;
    align-items: center;
  }
}

.infetech-header-area .header-box .header-topbar {
  border-bottom: 1px solid #e4e0ee;
}

@media only screen and (min-width: 10px) and (max-width: 992px) {
  .infetech-header-area .header-box .header-topbar {
    display: none;
  }
}

.infetech-header-area .header-box .header-topbar .header-topbar-text p {
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .infetech-header-area .header-box .header-topbar .header-topbar-text p {
    font-size: 13px;
  }
}

.infetech-header-area.infetech-header-area-5 {
  top: 30px;
}

.infetech-header-area.infetech-header-area-5 .header-wrapper {
  background: #fff;
  margin-left: -60px;
  margin-right: -60px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper {
    margin-left: -0px;
    margin-right: -0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper {
    margin-left: -0px;
    margin-right: -0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper {
    margin-left: -0px;
    margin-right: -0px;
  }
}

@media (max-width: 767px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper {
    margin-left: -0px;
    margin-right: -0px;
  }
}

.infetech-header-area.infetech-header-area-5 .header-wrapper .templates-logo {
  padding: 28px 60px;
}

@media (max-width: 767px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper .templates-logo {
    padding: 10px 0;
  }
}

@media (max-width: 767px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper .header-box {
    padding: 10px 0;
  }
}

.infetech-header-area.infetech-header-area-5 .header-wrapper .header-box .header-main-nav {
  height: auto;
}

.infetech-header-area.infetech-header-area-5 .header-wrapper .header-box .header-main-nav .header-main-nav-box>ul>li {
  padding: 36px 0;
  margin-right: 45px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-header-area.infetech-header-area-5 .header-wrapper .header-box .header-main-nav .header-main-nav-box>ul>li {
    margin-right: 20px;
  }
}

.infetech-header-area.infetech-header-area-5 .header-wrapper .header-box .header-main-nav .header-main-info .header-mini-btn::before {
  right: inherit;
  left: -30px;
}

.infetech-header-area.infetech-header-area-5.header-sticky.sticky {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.infetech-header-area.infetech-header-area-5.header-sticky.sticky .header-wrapper {
  box-shadow: none;
}

.header-topbar-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-topbar-info-wrapper .header-topbar-info {
  margin-right: 38px;
}

@media only screen and (min-width: 1600px) and (max-width: 1845px) {
  .header-topbar-info-wrapper .header-topbar-info {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .header-topbar-info-wrapper .header-topbar-info {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header-topbar-info-wrapper .header-topbar-info {
    margin-right: 15px;
  }
}

.header-topbar-info-wrapper .header-topbar-info ul {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.header-topbar-info-wrapper .header-topbar-info ul li {
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
}

@media only screen and (min-width: 1600px) and (max-width: 1845px) {
  .header-topbar-info-wrapper .header-topbar-info ul li {
    font-size: 13px;
  }
}

.header-topbar-info-wrapper .header-topbar-info ul li i {
  color: #2aa4c9;
  padding-right: 10px;
}

.header-topbar-info-wrapper .header-topbar-social {
  background: #f4f2f9;
  padding: 9px 80px;
}

@media only screen and (min-width: 1600px) and (max-width: 1845px) {
  .header-topbar-info-wrapper .header-topbar-social {
    padding: 9px 30px;
  }
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .header-topbar-info-wrapper .header-topbar-social {
    padding: 9px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header-topbar-info-wrapper .header-topbar-social {
    padding: 9px 15px;
  }
}

.header-topbar-info-wrapper .header-topbar-social ul {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.header-topbar-info-wrapper .header-topbar-social ul li a {
  font-size: 14px;
  color: #fff;
}

.header-main-nav {
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-nav {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .header-main-nav {
    width: 100%;
    justify-content: flex-end;
    height: 62px;
    justify-content: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-nav-box {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-main-nav-box {
    display: none;
  }
}

.header-main-nav-box ul li {
  display: inline-block;
  margin-right: 45px;
  position: relative;
  padding: 27px 0;
}

@media only screen and (min-width: 10px) and (max-width: 1450px) {
  .header-main-nav-box ul li {
    margin-right: 20px;
  }
}

.header-main-nav-box ul li a {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  position: relative;
}

@media only screen and (min-width: 10px) and (max-width: 1300px) {
  .header-main-nav-box ul li a {
    font-size: 14px;
  }
}

.header-main-nav-box ul li a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0px;
  background: #0ca4c7;
  transition: all linear 0.3s;
}

.header-main-nav-box ul li a:hover {
  color: #3D3D3D;
}

.header-main-nav-box ul li a:hover::before {
  width: 16px;
}

.header-main-nav-box ul li .sub-menu {
  position: absolute;
  left: 0px;
  top: 110%;
  width: 200px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  border-top: 0;
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-nav-box ul li .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -ms-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    border-top: 0;
  }
}

@media (max-width: 767px) {
  .header-main-nav-box ul li .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -ms-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-align: left;
    border-top: 0;
  }
}

.header-main-nav-box ul li .sub-menu>li {
  position: relative;
  display: block;
  margin-right: 0;
  padding: 0;
}

.header-main-nav-box ul li .sub-menu>li a {
  display: block;
  padding: 10px 24px;
  margin: 0;
  position: relative;
  color: #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  line-height: 30px;
  border-top: 1px solid #e4e0ee;
}

.header-main-nav-box ul li .sub-menu>li a::before {
  display: none;
}

.header-main-nav-box ul li .sub-menu>li a i {
  float: right;
  font-size: 14px;
  margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-nav-box ul li .sub-menu>li a i {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-main-nav-box ul li .sub-menu>li a i {
    display: none;
  }
}

.header-main-nav-box ul li .sub-menu>li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-nav-box ul li .sub-menu>li .sub-menu {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .header-main-nav-box ul li .sub-menu>li .sub-menu {
    padding-left: 30px;
  }
}

.header-main-nav-box ul li .sub-menu>li .sub-menu li:hover .sub-menu {
  top: 0 !important;
}

.header-main-nav-box ul li .sub-menu>li:hover .sub-menu {
  top: 0%;
  opacity: 1;
  visibility: visible;
}

.header-main-nav-box ul li .sub-menu>li:hover>a {
  background-color: #404040;
  color: #fff !important;
}

.header-main-nav-box ul li:hover>a {
  color: #404040;
  font-weight: 500;
}

.header-main-nav-box ul li:hover>a::before {
  opacity: 1;
}

.header-main-nav-box ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 64px;
}

.header-main-info {
  display: flex;
  align-items: center;
}

.header-main-info .header-main-info-contact {
  position: relative;
  padding-left: 68px;
  margin-right: 80px;
}

@media only screen and (min-width: 10px) and (max-width: 1450px) {
  .header-main-info .header-main-info-contact {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 10px) and (max-width: 1200px) {
  /* .header-main-info .header-main-info-contact {
        display: none; } */
}

.header-main-info .header-main-info-contact .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background: #0ca4c7;
  border-radius: 50%;
}

.header-main-info .header-main-info-contact .content {
  display: flex;
  flex-direction: column;
}

.header-main-info .header-main-info-contact .content span {
  font-size: 13px;
  font-weight: 500;
  color: #3D3D3D;
}

.header-main-info .header-main-info-contact .content a {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
}

.header-main-info .header-mini-btn {
  margin-right: 30px;
  position: relative;
}

@media only screen and (min-width: 10px) and (max-width: 1200px) {
  .header-main-info .header-mini-btn {
    margin-right: 0;
  }
}

.header-main-info .header-mini-btn::before {
  position: absolute;
  content: '';
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #e4e0ee;
}

@media only screen and (min-width: 10px) and (max-width: 1200px) {
  .header-main-info .header-mini-btn::before {
    display: none;
  }
}

.header-main-info .header-mini-btn ul {
  display: flex;
  align-items: center;
}

.header-main-info .header-mini-btn ul li a {
  font-size: 20px;
  color: #3D3D3D;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .header-main-info .header-mini-btn ul li a {
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .header-main-info .header-mini-btn ul li:last-child a {
    margin-right: 0;
  }
}

.header-main-info .header-mini-btn .toggle-bar {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-main-info .header-mini-btn .toggle-bar {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .header-main-info .header-mini-btn .toggle-bar {
    display: inline-block;
  }
}

/*** 

====================================================================
    Search Popup
====================================================================

***/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

/* .search-popup:before {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 560px;
  background-image: url(../images/waves-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: 0px;
  content: ""; } */

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: #2aa4c9;
  width: 70px;
  cursor: pointer;
  font-family: "flaticon";
  border-bottom: 0;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search span {
  position: relative;
  display: block;
  height: 70px;
  width: 70px;
  font-size: 30px;
  line-height: 70px;
  color: #fff;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: #3D3D3D;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: var(--margin-zero);
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #3D3D3D;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #3D3D3D;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 0;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  color: #3D3D3D;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: #3D3D3D;
}

.search-popup .close-search.style-two {
  position: absolute;
  right: 25px;
  left: auto;
  color: #fff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  background: none !important;
  box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
  font-size: 20px;
  color: #fff;
}

.main-header .sticky-header .search-box-btn {
  float: left;
  cursor: pointer;
  padding: 27px 0px;
  font-size: 18px;
  color: #3D3D3D;
  margin-left: 25px;
}

.main-header .mobile-menu .menu-box .mCSB_scrollTools {
  width: 3px;
}

.off_canvars_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  cursor: crosshair;
  background: #232323;
  top: 0;
}

.off_canvars_overlay.active {
  opacity: .5;
  visibility: visible;
}

.offcanvas_menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas_menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .offcanvas_menu {
    display: block;
  }
}

.offcanvas_menu_wrapper {
  width: 290px;
  position: fixed;
  background: #fff;
  z-index: 9999;
  top: 0;
  height: 100vh;
  transition: .5s;
  left: 0;
  margin-left: -300px;
  padding: 50px 15px 30px;
  overflow-y: auto;
}

.offcanvas_menu_wrapper.active {
  margin-left: 0;
}

.offcanvas_menu_wrapper .slinky-theme-default {
  background: inherit;
  min-height: 300px;
  overflow-y: auto;
}

.offcanvas_menu_wrapper .header-btn {
  margin-bottom: 30px;
}

.offcanvas_menu_wrapper .header-btn a {
  color: #3D3D3D;
}

.offcanvas_menu_wrapper .header-btn a:hover {
  color: #3D3D3D;
}

.offcanvas_main_menu li {
  position: relative;
}

.offcanvas_main_menu li:last-child {
  margin: 0;
}

.offcanvas_main_menu li span.menu-expand {
  position: absolute;
  right: 0;
}

.offcanvas_main_menu li a {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ededed;
  color: #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_main_menu li a:hover {
  color: #2aa4c9;
}

.offcanvas_main_menu li ul.sub-menu {
  padding-left: 20px;
}

.offcanvas_footer {
  margin-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.offcanvas_footer span a {
  font-size: 14px;
  color: #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas_footer span a:hover {
  color: #2aa4c9;
}

.canvas_close {
  position: absolute;
  top: 10px;
  right: 13px;
}

.canvas_close a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  width: 32px;
  height: 32px;
  display: block;
  text-align: center;
  line-height: 30px;
  border: 1px solid #ededed;
  border-radius: 50%;
  color: #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.canvas_close a:hover {
  background: #2aa4c9;
  border-color: #2aa4c9;
  color: #fff;
}

.canvas_open a {
  font-size: 26px;
  width: 50px;
  height: 42px;
  display: block;
  line-height: 39px;
  text-align: center;
  border: 1px solid #232323;
  color: #3D3D3D;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.canvas_open a:hover {
  color: #2aa4c9;
  border-color: #2aa4c9;
}

.offcanvas-social {
  margin-bottom: 40px;
}

.offcanvas-social ul li {
  display: inline-block;
}

.offcanvas-social ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  color: #2aa4c9;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas-social ul li a:hover {
  background: #2aa4c9;
  border-color: #2aa4c9;
  color: #fff;
}

.infetech-header-area-2 .header-topbar-layout-2 {
  background: #3D3D3D;
  position: relative;
  z-index: 20;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area-2 .header-topbar-layout-2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-header-area-2 .header-topbar-layout-2 {
    display: none;
  }
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text {
  padding-left: 60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text {
    padding-left: 15px;
  }
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-text p {
  color: #a2bbc1;
  font-weight: 500;
  font-size: 14px;
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-info-wrapper .header-topbar-info {
  display: block;
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-info-wrapper .header-topbar-info ul li {
  color: #a2bbc1;
  font-size: 14px;
  font-weight: 500;
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-info-wrapper .header-topbar-social {
  background: #15101e;
}

.infetech-header-area-2 .header-topbar-layout-2 .header-topbar-info-wrapper .header-topbar-social ul li a {
  font-size: 18px;
  color: #fff;
}

.infetech-header-area-2 .header-main-nav-layout-2 {
  position: absolute;
  left: 0;
  top: 38px;
  right: 0;
  z-index: 30;
  padding: 30px 60px;
  border-bottom: 1px solid #ffffff2e;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-header-area-2 .header-main-nav-layout-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area-2 .header-main-nav-layout-2 {
    top: 0;
  }
}

@media (max-width: 767px) {
  .infetech-header-area-2 .header-main-nav-layout-2 {
    top: 0;
    padding: 10px 60px;
  }
}

.infetech-header-area-2 .header-main-nav-layout-2 .logo-white img {
  width: 160px;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-nav-box ul li {
  padding: 0;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-nav-box ul li a {
  color: #fff;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-nav-box ul li a::before {
  background: #fff;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-nav-box ul li .sub-menu li a {
  color: #3D3D3D;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info {
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .infetech-header-area-2 .header-main-nav-layout-2 .header-main-info {
    justify-content: center;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-mini-btn {
    margin-right: 15px;
  }
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-mini-btn ul li a {
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-mini-btn ul li a {
    margin-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-mini-btn ul li:nth-child(2) a {
    margin-right: 0;
  }
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-mini-btn::before {
  background: #ffffff2e;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact {
  margin-right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact {
    padding-left: 60px;
  }
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content a {
  white-space: nowrap;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content a:not(.main-btn):not(.main-btn-white) {
  color: #fff;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content span {
  color: #fff;
  opacity: 0.5;
}

.infetech-header-area-2 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .icon {
  background: #fff;
}

.infetech-header-area-2.infetech-header-area-3 .top-line {
  height: 5px;
  width: 100%;
  background: #61C0AB;
  position: absolute;
  z-index: 199;
  left: 0;
  top: 0;
}

.infetech-header-area-2.infetech-header-area-3 .top-line::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 5px;
  width: 50%;
  background: #0BA4C7;
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 {
  /* top: 5px; */
  background: #fff;
  padding: 25px 60px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2.header-main-nav-layout-4 {
  top: 45px;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #e4e0ee;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2.header-main-nav-layout-4 {
    top: 0;
  }
}

@media (max-width: 767px) {
  .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2.header-main-nav-layout-4 {
    top: 0;
  }
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .logo-white {
  text-align: left;
}

@media (max-width: 767px) {
  .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .logo-white {
    text-align: center;
  }
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-nav-box ul li a {
  color: #000000;
}

/* .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-nav-box ul li a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0px;
  background: #0ca4c7;
  transition: all linear 0.3s;
} */

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-nav-box ul li a:hover {
  color: #3D3D3D;
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-nav-box ul li a:hover::before {
  width: 16px;
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-info .header-mini-btn ul li a {
  color: #3D3D3D;
}

/* .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-info .header-mini-btn::before {
    background: #e4e0ee; } */
.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .icon {
  background: #0ca4c7;
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content span {
  color: #3D3D3D;
}

.infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2 .header-main-info .header-main-info-contact .content a {
  color: #0BA4C7;
}

@media (min-width: 768px) {
  .header-sticky.sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    animation: sticky 1s;
  }

  @-webkit-keyframes sticky {
    0% {
      top: -200px;
    }

    100% {
      top: 0;
    }
  }

  @keyframes sticky {
    0% {
      top: -200px;
    }

    100% {
      top: 0;
    }
  }

  .header-main-nav-layout-2.header-sticky.sticky {
    background: #3D3D3D;
  }

  .infetech-header-area-2.infetech-header-area-3 .header-main-nav-layout-2.header-sticky.sticky {
    top: 0;
    background: #fff;
  }
}

/*Loader Css*/
.preloader {
  background-color: #fff;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999;
}

.lds-ellipsis span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0ca4c7;
  -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
  animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
  -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
  -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 0.6s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes bubbleMover2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    transform: translateY(10px) translateX(20px) rotate(5deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    transform: translateY(20px) translateX(40px) rotate(20deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    transform: translateY(30px) translateX(40px) rotate(5deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes pusher {
  33% {
    transform: scale(0.7);
  }

  66% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.7);
  }
}

/*===========================
    3.BANNER css 
===========================*/
.infetech-banner-area {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin-bottom: 120px;
  margin-top: -2px;
  margin-top: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area {
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area {
    margin-bottom: 80px;
  }
}

.infetech-banner-area.infetech-banner-layoyt-2 {
  margin-top: -2px;
  border: 0;
}

.infetech-banner-area .infetech-banner-slide-active {
  position: relative;
  z-index: 10;
}

.infetech-banner-area .infetech-banner-slide-active::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 434px;
  background-image: url(../images/banner-shape-1.png);
  z-index: -1;
}

.infetech-banner-area .infetech-banner-slide-active::after {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  width: 395px;
  background-image: url(../images/banner-shape-2.png);
  z-index: -1;
}

.infetech-banner-area .infetech-banner-slide-active.item-1 {
  background-image: url(../images/banner-thumb-1.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.infetech-banner-area .infetech-banner-slide-active.item-2 {
  background-image: url(../images/banner-thumb-2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.infetech-banner-area .infetech-banner-slide-active.item-3 {
  background-image: url(../images/banner-thumb-3.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.infetech-banner-area .infetech-banner-content {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 794px;
  justify-content: center;
  position: relative;
}

@media (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content {
    height: 500px;
  }
}

.infetech-banner-area .infetech-banner-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 0.6;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content h4 {
    font-size: 14px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content h4 {
    font-size: 18px;
  }
}

.infetech-banner-area .infetech-banner-content h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #a4a2a9;
}

.infetech-banner-area .infetech-banner-content h1 {
  font-size: 100px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-area .infetech-banner-content h1 {
    font-size: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area .infetech-banner-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content h1 {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content h1 {
    font-size: 50px;
  }
}

.infetech-banner-area .infetech-banner-content .banner-arrow {
  position: absolute;
  left: 63%;
  top: 58%;
}

.infetech-banner-area .infetech-banner-content img {
  display: inline-block;
}

@media (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content img {
    width: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-banner-area .infetech-banner-content img {
    width: 40px;
  }
}

.infetech-banner-area.infetech-banner-slide .slick-arrow {
  position: absolute;
  right: 17%;
  height: 0;
  z-index: 10;
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all linear 0.3s;
  opacity: 0.3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-banner-area.infetech-banner-slide .slick-arrow {
    right: 10%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-area.infetech-banner-slide .slick-arrow {
    right: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area.infetech-banner-slide .slick-arrow {
    right: 30px;
  }
}

.infetech-banner-area.infetech-banner-slide .slick-arrow.prev {
  top: 46%;
}

.infetech-banner-area.infetech-banner-slide .slick-arrow.next {
  top: 54%;
}

.infetech-banner-area.infetech-banner-slide .slick-arrow:hover {
  opacity: 1;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item {
  background: url(../images/banner-thumb-4.jpg);
  padding-top: 250px;
  padding-bottom: 130px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 10;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item.item-2 {
  background: url(../images/banner-thumb-5.jpg);
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item.item-3 {
  background: url(../images/banner-thumb-6.jpg);
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/banner-shape-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .play-btn a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background: #2aa4c9;
  position: relative;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .play-btn a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: play-popup 1.5s infinite;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-text .title {
  font-size: 90px;
  color: #fff;
  padding-top: 39px;
  padding-bottom: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-text .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-text .title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-text .title {
    font-size: 40px;
  }
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-text p {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
  opacity: 0.7;
  padding-right: 50px;
  margin-bottom: 42px;
}

.infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow {
  position: absolute;
  right: 17%;
  height: 0;
  z-index: 10;
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  transition: all linear 0.3s;
  opacity: 0.3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow {
    right: 10%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow {
    right: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow {
    right: 30px;
  }
}

.infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow.prev {
  top: 46%;
}

.infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow.next {
  top: 54%;
}

.infetech-banner-area-layout-2.infetech-banner-slide .slick-arrow:hover {
  opacity: 1;
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 {
  margin-top: 103px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 {
    margin-top: 96px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 {
    margin-top: 92px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 {
    margin-top: 92px;
  }
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item {
  background-image: url(../images/new-tadeed-einvoice/home-page/hero-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-breadcrumbbook{
    background-image: url(../images/new-tadeed-einvoice/resource/blog/blog-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item::before {
  display: none;
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item.item-2 {
  background-image: url(../images/new-tadeed-einvoice/home-page/hero-2.webp);
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item.item-3 {
  background-image: url(../images/new-tadeed-einvoice/home-page/hero-3.webp);
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content span {
  font-weight: 500;
  color: #5fc2ac;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title {
  color: #3D3D3D;
  font-size: 64px;
  padding-top: 0;
  line-height: 76px;
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .titlee {
  color: #ffffff;
  font-size: 64px;
  padding-top: 0;
  line-height: 76px;
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .titlee span {
  text-transform: capitalize;
  color: #ffffff;
  letter-spacing: inherit;
  position: relative;
  z-index: 10;
}

.infetech-banner-area-layout-2 .infetech-banner-slide-item .infetech-banner-content .info-textt p {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.7;
  padding-right: 50px;
  margin-bottom: 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title {
    font-size: 28px;
    line-height: 28px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title {
    font-size: 56px;
    line-height: 56px;
  }
}

.infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title span {
  text-transform: capitalize;
  color: #3D3D3D;
  letter-spacing: inherit;
  position: relative;
  z-index: 10;
}

/* .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title span::before {
          position: absolute;
          content: '';
          width: 100%;
          height: 25px;
          bottom: 15px;
          left: 0;
          background-image: url(../images/banner-line.png);
          z-index: -1; } */
@media (max-width: 767px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title span::before {
    display: none;
  }
}

.header-main-nav-layout-2 .logo-white {
  text-align: left;
}

@media (max-width: 767px) {
  .header-main-nav-layout-2 .logo-white {
    text-align: center;
  }
}

.infetech-banner-main-area {
  position: relative;
}

.infetech-banner-main-area .banner-social {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-banner-main-area .banner-social {
    left: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-banner-main-area .banner-social {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-main-area .banner-social {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-banner-main-area .banner-social {
    display: none;
  }
}

.infetech-banner-main-area .banner-social ul li {
  margin: 40px 0;
}

.infetech-banner-main-area .banner-social ul li a {
  color: #3D3D3D;
}

.infetech-banner-main-area .banner-play-icon {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-main-area .banner-play-icon {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-main-area .banner-play-icon {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

.infetech-banner-main-area .banner-play-icon .icon a {
  display: inline-block;
  height: 86px;
  width: 86px;
  text-align: center;
  line-height: 86px;
  background: rgba(95, 45, 238, 0.5);
  border-radius: 50%;
  color: #fff;
  position: relative;
}

.infetech-banner-main-area .banner-play-icon .icon a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #0ca4c7;
  border-radius: 50%;
  animation: play-popup 2s infinite;
}

.infetech-banner-main-area .banner-play-icon .title {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  margin-left: 50px;
}

.infetech-banner-main-area .infetech-banner-area-layout-2 .infetech-banner-slide-item {
  padding-top: 76px;
  padding-bottom: 90px;
}

@keyframes play-popup-2 {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

.infetech-banner-area-4 {
  padding-top: 120px;
  padding-bottom: 77px;
  position: relative;
  z-index: 10;
}

.infetech-banner-area-4::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 845px;
  background-image: url(../images/einvocing/test.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media (max-width: 767px) {
  .infetech-banner-area-4::before {
    display: none;
  }
}

.infetech-banner-area-4 .banner-content-box {
  text-align: center;
}

.infetech-banner-area-4 .banner-content-box .title {
  font-size: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-4 .banner-content-box .title {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-4 .banner-content-box .title {
    font-size: 36px;
  }
}

.infetech-banner-area-4 .banner-content-box span {
  font-size: 24px;
  font-weight: 500;
  color: #3D3D3D;
  margin-top: 18px;
  ;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-4 .banner-content-box span {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-4 .banner-content-box span {
    font-size: 18px;
  }
}

.infetech-banner-area-4 .banner-content-box .thumb {
  position: relative;
}

.infetech-banner-area-4 .banner-content-box .thumb .icon {
  background: #2aa4c9;
  display: inline-block;
  height: 102px;
  width: 102px;
  background: #0ca4c7;
  border-radius: 50%;
  text-align: center;
  line-height: 98px;
  position: relative;
  position: absolute;
  left: -10px;
  top: 45px;
}

@media (max-width: 767px) {
  .infetech-banner-area-4 .banner-content-box .thumb .icon {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-banner-area-4 .banner-content-box .thumb .icon {
    display: block;
  }
}

.infetech-banner-area-4 .banner-content-box .thumb .icon::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 140px;
  width: 140px;
  border: 20px solid #0ca4c7;
  border-radius: 50%;
  opacity: 0.05;
}

.infetech-banner-area-4 .banner-content-box .thumb .icon.icon-2 {
  left: auto;
  right: 0;
  top: 170px;
}

.infetech-banner-area-5 {
  background: #f5f3f9;
  padding: 295px 0 170px;
  background-image: url(../images/footer-line.png);
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
  position: relative;
}

.infetech-banner-area-5::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 49%;
  background-image: url(../images/banner-thumb-10.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-banner-area-5::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-banner-area-5::before {
    display: none;
  }
}

.banner-content-5 {
  padding-left: 92px;
  margin-right: -60px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner-content-5 {
    margin-right: 0;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner-content-5 {
    margin-right: 0;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content-5 {
    margin-right: 0;
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .banner-content-5 {
    margin-right: 0;
    padding-left: 0px;
  }
}

.banner-content-5 span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3D3D3D;
  display: block;
  padding-top: 13px;
  padding-bottom: 14px;
}

.banner-content-5 .title {
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 26px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner-content-5 .title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .banner-content-5 .title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content-5 .title {
    font-size: 55px;
    line-height: 65px;
  }
}

@media (max-width: 767px) {
  .banner-content-5 .title {
    font-size: 36px;
    line-height: 46px;
  }
}

.banner-content-5 p {
  font-size: 18px;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 36px;
  margin-bottom: 37px;
}

.banner-content-5 a {
  border: 1px solid #0ca4c7;
}

.page-tag {
  font-weight: 500;
  color: #60c2ab;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.breadcrumb-area {
  background-image: url(../images/breadcrumb-bg.png);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 102px;
  padding: 50px 0 50px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-area {
    padding: 101px 0 85px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-area {
    padding: 101px 0 85px;
  }
}

/* .breadcrumb-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/breadcrumb-bg-shape.png);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
} */

.breadcrumb-item {
  text-align: start;
}

.breadcrumb-item .title {
  color: #fff;
  font-size: 60px;
  lg: linear-gradient();
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .breadcrumb-item .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.breadcrumb-item nav {
  display: inline-block;
}

.breadcrumb-item nav ol li a,
.breadcrumb-item nav ol li.active {
  color: #fff;
  opacity: 0.6;
  font-weight: 600;
  text-transform: uppercase;
}

.breadcrumb-item nav ol li+.breadcrumb-item::before {
  color: #fff;
}

/*===========================
    4.ABOUT css 
===========================*/
.infetech-about-area {
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
  overflow: hidden;
  margin-bottom: -70px;
}

.infetech-about-area .infetech-about-thumb {
  position: relative;
}

.infetech-about-area .infetech-about-thumb .thumb {
  position: relative;
  top: -195px;
  left: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-area .infetech-about-thumb .thumb {
    left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-area .infetech-about-thumb .thumb {
    position: absolute;
    top: 200px;
    left: 280px;
  }
}

@media (max-width: 767px) {
  .infetech-about-area .infetech-about-thumb .thumb {
    display: none;
  }
}

.infetech-about-area .infetech-about-thumb .about-logo {
  position: absolute;
  top: 0;
  right: -63px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-area .infetech-about-thumb .about-logo {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-area .infetech-about-thumb .about-logo {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-about-area .infetech-about-thumb .about-logo {
    display: none;
  }
}

.infetech-about-area .infetech-about-thumb .about-box {
  position: absolute;
  top: 240px;
  left: 340px;
  background: #2aa4c9;
  padding: 24px 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-area .infetech-about-thumb .about-box {
    left: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-area .infetech-about-thumb .about-box {
    top: 140px;
  }
}

@media (max-width: 767px) {
  .infetech-about-area .infetech-about-thumb .about-box {
    position: static;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-about-area .infetech-about-thumb .about-box {
    position: absolute;
  }
}

.infetech-about-area .infetech-about-thumb .about-box .title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

.infetech-about-area .infetech-about-thumb .about-box span {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.infetech-about-area.infetech-about-service-area {
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-area.infetech-about-service-area {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-about-area.infetech-about-service-area {
    padding-top: 70px;
  }
}

.infetech-about-area.infetech-about-service-area .infetech-about-content p {
  font-size: 24px;
  font-weight: 400;
  color: #3D3D3D;
  line-height: 40px;
}

.infetech-about-area.infetech-about-service-area .infetech-about-content .icon {
  height: 125px;
  width: 125px;
  text-align: center;
  line-height: 125px;
  background: #000;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -webkit-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -ms-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-bottom: 33px;
}

.infetech-about-area.infetech-about-service-area .infetech-about-content .icon::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  z-index: -1;
  height: 105px;
  width: 105px;
}

.infetech-about-area.infetech-about-service-area .infetech-about-content ul li img {
  margin-right: 8px;
}

.infetech-about-area.infetech-about-service-area .infetech-about-thumb {
  position: relative;
  z-index: 10;
  margin-right: -100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-area.infetech-about-service-area .infetech-about-thumb {
    margin-right: -50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-area.infetech-about-service-area .infetech-about-thumb {
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  .infetech-about-area.infetech-about-service-area .infetech-about-thumb {
    margin-right: 0px;
  }
}

.infetech-about-area.infetech-about-service-area .infetech-about-thumb img.main-thumb {
  margin-left: -60px;
}

@media (max-width: 767px) {
  .infetech-about-area.infetech-about-service-area .infetech-about-thumb img.main-thumb {
    margin-left: 0;
  }
}

.infetech-about-area.infetech-about-service-area .infetech-about-thumb .item-1 {
  position: absolute;
  left: -60px;
  top: 0;
  z-index: -1;
}

.infetech-about-area.infetech-about-service-area .infetech-about-thumb .item-2 {
  position: absolute;
  right: 0px;
  bottom: -50px;
  z-index: -1;
}

/* .infetech-about-content {
  padding-left: 70px;
} */

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-content {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .infetech-about-content {
    padding-left: 0;
    margin-top: 20px;
  }
}

.infetech-about-content span {
  font-size: 16px;
  color: #0BA4C7;
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.infetech-about-content span::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 8px;
  height: 2px;
  width: 16px;
  background: #0BA4C7;
}

.infetech-about-content>.title {
  font-size: 45px;
  font-weight: 800;
  line-height: 55px;
}

@media (max-width: 767px) {
  .infetech-about-content>.title {
    font-size: 26px;
    line-height: 36px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-about-content>.title {
    font-size: 45px;
    line-height: 55px;
  }
}

.infetech-about-content p {
  line-height: 30px;
  font-weight: 500;
  margin-top: 26px;
  margin-bottom: 40px;
}

.infetech-about-content .about-card {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  .infetech-about-content .about-card {
    margin-bottom: 30px;
  }
}

.infetech-about-content .about-card .icon {
  padding-left: 20px;
  padding-top: 10px;
  position: relative;
  z-index: 10;
  min-width: 85px;
}

.infetech-about-content .about-card .icon::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 54px;
  width: 54px;
  background: #f8f2ff;
  border-radius: 50%;
  z-index: -1;
}

.infetech-about-content .about-card .content .title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  line-height: 26px;
  margin-top: 16px;
}

.infetech-about-content ul {
  margin-top: 38px;
  margin-bottom: 38px;
}

.infetech-about-content ul li {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 38px;
}

.infetech-about-content ul li i {
  color: #0BA4C7;
  padding-right: 9px;
}

.infetech-about-content>a {
  border: 1px solid #0BA4C7;
}


.infetech-about-3-area {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/einvocing/zatcabg.png") no-repeat center center;
  background-size: cover;
  background-position: center;
}
.infetech-about-3-areser {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/service/service-solution.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}
.infetech-promo-banner-areacser{
    padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/service/simplify-service.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-3-area {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .infetech-about-3-area {
    padding-bottom: 90px;
  }
}

.infetech-about-3-area .section-title p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
  margin-top: 30px;
}

.infetech-about-3-area .about-3-thumb {
  position: relative;
  z-index: 10;
}

.infetech-about-3-area .about-3-thumb .about-ring {
  margin-top: 60px;
  margin-left: -235px;
  z-index: -5;
  position: relative;
}

.infetech-about-3-area .about-3-thumb .about-thumb-3 {
  position: absolute;
  left: 40px;
  top: 0;
  z-index: 1;
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-3 {
    left: 0;
  }
}

.infetech-about-3-area .about-3-thumb .about-thumb-1 {
  position: absolute;
  left: -190px;
  top: 310px;
  z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-1 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-1 {
    display: none;
  }
}

.infetech-about-3-area .about-3-thumb .about-thumb-2 {
  position: absolute;
  left: 250px;
  top: 390px;
  z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-thumb .about-thumb-2 {
    display: none;
  }
}

/* .infetech-about-3-area .about-3-content {
    padding-left: 70px; } */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-about-3-area .about-3-content {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-3-area .about-3-content {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-content {
    padding-left: 0px;
  }
}

.infetech-about-3-area .about-3-content .about-sub-service {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #0ba4c6;
  padding-bottom: 10px;
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-content .about-sub-service {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-about-3-area .about-3-content .about-sub-service {
    display: flex;
  }
}

.infetech-about-3-area .about-3-content .about-sub-service .icon {
  text-align: center;
  min-height: 11px;
  min-width: 79px;
  line-height: 76px;
  background: #13a6c43d;
  border-radius: 10%;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.05);
  /* border-bottom: 5px solid #00A3C5; */
  display: inline-block;
}

.infetech-about-3-area .about-3-content .about-sub-service i {
  font-size: 30px;
  color: #00A3C5;
}

@media (max-width: 767px) {
  .infetech-about-3-area .about-3-content .about-sub-service .icon {
    margin-bottom: 20px;
  }
}

.infetech-about-3-area .about-3-content .about-sub-service .content .title {
  font-size: 21px;
  text-transform: capitalize;
  font-weight: 500;
}

.infetech-about-3-area .about-3-content .about-sub-service .content p {
  line-height: 30px;
  color: #3D3D3D;
  font-weight: 500;
  padding-top: 12px;
}

.infetech-about-3-area .about-3-content .main-btn {
  margin-top: 20px;
  border: 1px solid #00A3C5;
}

.infetech-about-4-area {
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-about-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-about-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.about-thumb-4 {
  margin-left: -50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about-thumb-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

.about-thumb-content .about-sub-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 767px) {
  .about-thumb-content .about-sub-item {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-thumb-content .about-sub-item {
    display: flex;
  }
}

@media (max-width: 767px) {
  .about-thumb-content .about-sub-item .number {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-thumb-content .about-sub-item .number {
    margin-bottom: 0px;
  }
}

.about-thumb-content .about-sub-item .number span {
  display: inline-block;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background: #000;
  background-image: -moz-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -webkit-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -ms-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  color: #0ca4c7;
  position: relative;
  z-index: 10;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
}

.about-thumb-content .about-sub-item .number span::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 54px;
  width: 54px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

.about-thumb-content .about-sub-item .content p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.about-thumb-content a {
  border: 1px solid #0ca4c7;
}

/*===========================
    5.SERVICE css 
===========================*/
.infetech-service-area {
  position: relative;
  z-index: 25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-service-area {
    padding-bottom: 60px;
  }
}

.infetech-service-area.infetech-service-page-area {
  margin-bottom: 0;
  padding-top: 120px;
  padding-bottom: 185px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-service-area.infetech-service-page-area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-service-area.infetech-service-page-area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.infetech-service-area.infetech-service-page-area .single-infetech-serice-item .content {
  /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15); */
  border: 1px solid #80808033;
  border-radius: 10px;
}

.single-infetech-serice-item {
  margin-bottom: -86px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-infetech-serice-item {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .single-infetech-serice-item {
    margin-bottom: 30px;
  }
}

.single-infetech-serice-item .thumb {
  overflow: hidden;
}

.single-infetech-serice-item .thumb img {
  transition: all linear 0.3s;
  width: 100%;
}

.single-infetech-serice-item:hover .thumb img {
  transform: scale(1.1);
}

.single-infetech-serice-item .content {
  /* margin-left: 20px;
  margin-right: 20px;
  top: -20px; */
  position: relative;
  z-index: 10;
  background: #fff;
  text-align: center;
  padding: 21px 30px;
}

.single-infetech-serice-item .content .title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 800;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-infetech-serice-item .content .title {
    font-size: 18px;
  }
}

.single-infetech-serice-item .content .title a {
  color: #404040;
}

.single-infetech-serice-item .content .title a:hover {
  color: #0ca4c7;
}

.single-infetech-serice-item .content .icon {
  background: #0ca4c7;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  position: absolute;
  right: 0;
  bottom: 100%;
}

.infetech-service-3-area {
  padding-bottom: 120px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-service-3-area {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .infetech-service-3-area {
    padding-bottom: 60px;
  }
}

.single-service-3-item {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  padding: 45px 67px 25px 40px !important;
  margin: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-service-3-item {
    padding: 40px 70px 40px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-3-item {
    padding: 40px 70px 40px 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .single-service-3-item {
    padding: 40px 70px 40px 40px;
    margin-bottom: 10px;
  }
}

.single-service-3-item .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: -1;
  transition: all linear 0.3s;
  border: 1px solid #dedede;
  border-radius: 10px;
}

.single-service-3-item::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 0px;
  height: 3px;
  background: linear-gradient(90deg, #08a4c8, #61c0ab);
  transition: 0.35s;
}

.single-service-3-item:hover::before {
  width: 100%;
}

.single-service-3-item::after {
  position: absolute;
  content: '01';
  bottom: 14px;
  right: 30px;
  font-weight: 300;
  font-size: 60px;
  color: #e4e0ee;
  transition: all linear 0.3s;
}

.single-service-3-item .title {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 13px;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-service-3-item .title {
    font-size: 20px;
  }
}

.single-service-3-item p {
  font-weight: 500;
  line-height: 30px;
  color: #3D3D3D;
  transition: all linear 0.3s;
}

.single-service-3-item.item-2::after {
  content: '02';
}

.single-service-3-item.item-3::after {
  content: '03';
}

.single-service-3-item:hover {
  transform: translateY(-6px);
  border-color: #00B5D6;
}

.single-service-3-item:hover .bg {
  opacity: 0;
}

.single-service-3-item:hover .title {
  color: #000000;
}

.single-service-3-item:hover p {
  color: #000000;
}

.single-service-3-item:hover::after {
  color: #7547f8;
}

.infetech-service-slide-3-area {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media (max-width: 767px) {
  .infetech-service-slide-3-area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.infetech-service-slide-3-area .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 767px) {
  .infetech-service-slide-3-area .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.infetech-service-slide-3-area .single-service-3-item {
  margin-left: 100px;
  background-image: url(../images/service-line.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  transform: translate(0);
  padding: 50px 50px 50px 140px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .infetech-service-slide-3-area .single-service-3-item {
    padding: 30px;
    margin-left: 0;
  }
}

.infetech-service-slide-3-area .single-service-3-item .bg {
  display: none;
}

.infetech-service-slide-3-area .single-service-3-item .thumb {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .infetech-service-slide-3-area .single-service-3-item .thumb {
    position: static;
    left: 0;
    transform: translateY(0px);
    display: inline-block;
    margin-top: 20px;
  }
}

.infetech-service-slide-3-area .single-service-3-item .thumb span {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 96px;
  width: 96px;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  background: #0ca4c7;
  border: 10px solid #fff;
  border-radius: 50%;
}

.infetech-service-slide-3-area .single-service-3-item::after {
  display: none;
}

.infetech-service-slide-3-area .single-service-3-item .title {
  color: #3D3D3D;
}

.infetech-service-slide-3-area .single-service-3-item p {
  color: #3D3D3D;
}

.infetech-sponser-slide-3 .col-lg-4 {
  margin-left: 15px;
  margin-right: 15px;
}

.single-service-5-item {
  position: relative;
  margin: 0px 2px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-5-item {
    margin-bottom: 4px;
  }
}

@media (max-width: 767px) {
  .single-service-5-item {
    margin-bottom: 4px;
  }
}

.single-service-5-item img {
  width: 100%;
  transition: all linear 0.3s;
}

.single-service-5-item:hover img {
  transform: scale(1.1);
}

.single-service-5-item .single-service-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}

.single-service-5-item .single-service-overlay span {
  display: inline-block;
  height: 90px;
  width: 90px;
  text-align: center;
  line-height: 90px;
  background: #000;
  background-image: -moz-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -webkit-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -ms-linear-gradient(0deg, #0ca4c7 0%, #2aa4c9 100%);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  color: #3D3D3D;
  position: relative;
  z-index: 10;
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .single-service-5-item .single-service-overlay span {
    height: 70px;
    width: 70px;
    line-height: 70px;
  }
}

.single-service-5-item .single-service-overlay span::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 75px;
  width: 75px;
  background: #fff;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 767px) {
  .single-service-5-item .single-service-overlay span::before {
    height: 60px;
    width: 60px;
  }
}

.single-service-5-item .single-service-overlay span::after {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 110px;
  width: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.1;
}

@media (max-width: 767px) {
  .single-service-5-item .single-service-overlay span::after {
    height: 75px;
    width: 75px;
  }
}

.single-service-5-item .single-service-overlay .title {
  color: #fff;
  font-size: 24px;
  margin-top: 45px;
  margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-service-5-item .single-service-overlay .title {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-5-item .single-service-overlay .title {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .single-service-5-item .single-service-overlay .title {
    margin-top: 15px;
  }
}

.single-service-5-item .single-service-overlay p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  opacity: 0.7;
  line-height: 30px;
}

/*===========================
    6.FEATURE css 
===========================*/
.infetech-feature-area {
  background: #3D3D3D;
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-feature-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-feature-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.infetech-feature-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/dot-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.single-infetech-feature-item {
  background: #15101e;
  text-align: center;
  margin-top: 90px;
  transition: all linear 0.3s;
}

.single-infetech-feature-item .icon {
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 120px;
  display: inline-block;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  background: #15101e;
  border-radius: 50%;
  transition: all linear 0.3s;
}

.single-infetech-feature-item .icon svg path {
  transition: all linear 0.3s;
}

.single-infetech-feature-item .content {
  padding: 0 20px 35px;
}

.single-infetech-feature-item .content .title {
  color: #fff;
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 15px;
}

.single-infetech-feature-item .content .title a {
  color: #fff;
  transition: all linear 0.3s;
}

.single-infetech-feature-item .content p {
  color: #a2bbc1;
  font-size: 15px;
  transition: all linear 0.3s;
}

.single-infetech-feature-item:hover {
  background: #fff;
  transform: translateY(-10px);
}

.single-infetech-feature-item:hover .icon {
  background: #0ca4c7;
}

.single-infetech-feature-item:hover .icon svg path {
  fill: #fff;
}

.single-infetech-feature-item:hover .content .title a {
  color: #3D3D3D;
}

.single-infetech-feature-item:hover .content p {
  color: #3D3D3D;
}

.infetech-feature-slide .col-lg-2 {
  margin-left: 15px;
  margin-right: 15px;
}

/*===========================
    7.CTA css 
===========================*/
.infetech-cta-box {
  background-image: url(../images/cta-bg.jpg);
  position: relative;
  z-index: 10;
  padding: 80px 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-cta-box {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .infetech-cta-box {
    padding: 30px;
  }
}

.infetech-cta-box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: -moz-linear-gradient(180deg, #2aa4c9 0%, #0ca4c7 100%);
  background-image: -webkit-linear-gradient(180deg, #2aa4c9 0%, #0ca4c7 100%);
  background-image: -ms-linear-gradient(180deg, #2aa4c9 0%, #0ca4c7 100%);
  opacity: 0.85;
  z-index: -1;
}

.infetech-cta-box .cta-content .title {
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-cta-box .cta-content .title {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .infetech-cta-box .cta-content .title {
    margin-top: 30px;
    font-size: 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-cta-box .cta-content .title {
    font-size: 40px;
  }
}

.infetech-cta-box .cta-content ul li {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 36px;
}

.infetech-cta-box .cta-content ul li i {
  padding-right: 9px;
}

.infetech-cta-box .cta-content .main-btn {
  color: #2aa4c9;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(120deg, #2aa4c9 0%, #67c3af 50%) border-box;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-cta-box .cta-content .main-btn {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .infetech-cta-box .cta-content .main-btn {
    margin-left: 0;
    margin-top: 15px;
  }
}

.infetech-cta-box .cta-content .main-btn:hover {
  color: #fff;
  background:
    linear-gradient(135deg, #2aa4c9 0%, #67c3af 55%) padding-box,
    linear-gradient(300deg, #67c3af 0%, #2aa4c9 100%) border-box;
}

.infetech-cta-2-area {
  background-image: url(../images/einvocing/call.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-cta-2-area {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .infetech-cta-2-area {
    padding: 80px 0;
  }
}

.infetech-cta-2-area .cta-btn {
  text-align: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-cta-2-area .cta-btn {
    text-align: left;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .infetech-cta-2-area .cta-btn {
    text-align: left;
    margin-top: 15px;
  }
}

.infetech-cta-2-area .cta-btn a {
  background: #fff;
  color: #3D3D3D;
}

.infetech-cta-2-area .cta-btn a:hover {
  background: #050505;
  color: #fff;
}

@media (max-width: 767px) {
  .infetech-cta-2-area .cta-content {
    text-align: center;
  }
}

.infetech-cta-2-area .cta-content p {
  color: #fff;
  font-size: 20px;
  padding-top: 20px;
}

.infetech-cta-2-area .cta-content .title {
  color: #fff;
  font-size: 36px;
  margin-top: 17px;
}

@media (max-width: 767px) {
  .infetech-cta-2-area .cta-btn {
    text-align: center;
  }
}

.infetect-cta-area-home-2 {
  position: relative;
  z-index: 10;
  margin-bottom: -100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetect-cta-area-home-2 {
    margin-bottom: -50px;
  }
}

.cta-home-box {
  background-image: url(../images/cta-bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 75px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cta-home-box {
    padding: 60px 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-home-box {
    padding: 60px 50px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .cta-home-box {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-home-box {
    padding: 60px 50px;
  }
}

.cta-home-box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #2aa4c9;
}

.cta-home-box span {
  font-size: 16px;
  font-weight: 600;
  color: #2aa4c9;
}

.cta-home-box .title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .cta-home-box .title {
    font-size: 28px;
  }
}

.infetech-map {
  margin-bottom: -8px;
}

.infetech-map iframe {
  height: 490px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-map iframe {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .infetech-map iframe {
    height: 300px;
  }
}

/*===========================
    8.PROJECT css 
===========================*/
.infetech-project-area {
  border-bottom: 1px solid #e4e0ee;
  padding-bottom: 160px;
  margin-bottom: 80px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-project-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-project-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.infetech-project-area .section-title p {
  color: #3D3D3D;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-project-area .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-project-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-project-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .infetech-project-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}

.infetech-project-area.infetech-project-area-5 {
  margin-bottom: 0;
  border-bottom: 0;
}

.single-project-item {
  position: relative;
  overflow: hidden;
}

.single-project-item img {
  width: 100%;
  transition: all linear 0.3s;
}

.single-project-item .single-project-overlay {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 40px;
  padding-bottom: 32px;
  z-index: 10;
}

.single-project-item .single-project-overlay::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: -moz-linear-gradient(90deg, #2aa4c9 0%, rgba(184, 130, 252, 0) 65%);
  background-image: -webkit-linear-gradient(90deg, #2aa4c9 0%, rgba(184, 130, 252, 0) 65%);
  background-image: -ms-linear-gradient(90deg, #2aa4c9 0%, rgba(184, 130, 252, 0) 65%);
  z-index: -1;
  opacity: 0;
  transition: all linear 0.3s;
}

.single-project-item .single-project-overlay .title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 7px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single-project-item .single-project-overlay .title {
    font-size: 20px;
  }
}

.single-project-item .single-project-overlay span {
  color: #000;
  font-weight: 800;
  font-size: 14px;
  color: #2aa4c9;
  text-transform: uppercase;
  transition: all linear 0.3s;
}

.single-project-item .single-project-overlay a {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: 40px;
  z-index: 20;
  opacity: 0;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .single-project-item .single-project-overlay a {
    position: static;
    opacity: 1;
    margin-top: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-project-item .single-project-overlay a {
    position: static;
    opacity: 1;
    margin-top: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-project-item .single-project-overlay a {
    position: static;
    opacity: 1;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .single-project-item .single-project-overlay a {
    position: static;
    opacity: 1;
    margin-top: 15px;
  }
}

.single-project-item .single-project-overlay a:hover {
  background: #fff;
  color: #2aa4c9;
}

.single-project-item:hover .single-project-overlay::before {
  opacity: 1;
}

.single-project-item:hover .single-project-overlay span {
  color: #fff;
}

.single-project-item:hover .single-project-overlay a {
  opacity: 1;
  right: 40px;
}

.single-project-item:hover img {
  transform: scale(1.1);
}

.infetech-project-slide-2 .col-lg-3,
.infetech-project-slide .col-lg-3 {
  padding-left: 15px;
  padding-right: 15px;
}

.infetech-project-slide-2 .slick-dots,
.infetech-project-slide .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  width: auto;
}

.infetech-project-slide-2 .slick-dots li,
.infetech-project-slide .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.infetech-project-slide-2 .slick-dots li button,
.infetech-project-slide .slick-dots li button {
  border: 0;
  background: #bbb9be;
  height: 4px;
  width: 16px;
  font-size: 0;
}

.infetech-project-slide-2 .slick-dots li.slick-active button,
.infetech-project-slide .slick-dots li.slick-active button {
  background: #0ca4c7;
}

.infetech-sponser-area {
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-sponser-area.infetech-sponser-area-3 {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .infetech-sponser-area.infetech-sponser-area-3 {
    padding-bottom: 40px;
  }
}

.infetech-sponser-area.infetech-sponser-services-area {
  border-top: 1px solid #e4e0ee;
  padding-top: 80px;
}

.infetech-sponser-area .infetech-sponser-item {
  text-align: center;
  padding: 15px 0;
  border: 1px solid #0BA4C7;
  border-radius: 10px;
  margin: 0px 10px;

}

.infetech-sponser-area .infetech-sponser-item img {
  display: inline-block;
  /* opacity: 0.6; */
}

.infetech-sponser-area .infetech-sponser-item:hover {
  background: #2aa4c917;
}

.infetech-sponser-area .infetech-sponser-item:hover img {
  opacity: 1;
}

.infetech-sponser-area.infetech-sponser-area-2 {
  border-top: 1px solid #e4e0ee;
  padding-top: 90px;
  margin-top: 120px;
}

.infetech-sponser-area.infetech-sponser-area-4 {
  border-bottom: 1px solid #e4e0ee;
}

.infetech-sponser-area.infetech-sponser-area-5 {
  background-image: url(../images/sponser-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.infetech-sponser-area.infetech-sponser-area-5 .infetech-sponser-item {
  transition: all linear 0.3s;
}

.infetech-sponser-area.infetech-sponser-area-5 .infetech-sponser-item:hover {
  background: #7545fc;
}

.infetech-sponser-area.infetech-sponser-area-5 .infetech-sponser-item:hover img {
  opacity: 1;
}

.infetech-sponser-area.infetech-sponser-area-5 .infetech-sponser-item img {
  opacity: 0.6;
  transition: all linear 0.3s;
}

.infetech-sponser-area.infetech-sponser-about-area {
  padding-top: 90px;
  padding-bottom: 90px;
  border-bottom: 1px solid #e4e0ee;
}

.infetech-project-offer-area-2 .single-project-item-2 {
  position: relative;
  padding-right: 70px;
  z-index: 10;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .infetech-project-offer-area-2 .single-project-item-2 {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

.infetech-project-offer-area-2 .single-project-item-2 .thumb {
  overflow: hidden;
}

.infetech-project-offer-area-2 .single-project-item-2 .thumb img {
  width: 100%;
  transition: all linear 0.3s;
}

.infetech-project-offer-area-2 .single-project-item-2:hover .thumb img {
  transform: scale(1.1);
}

.infetech-project-offer-area-2 .single-project-item-2 .project-content {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 370px;
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 35px 40px 35px 50px;
}

@media (max-width: 767px) {
  .infetech-project-offer-area-2 .single-project-item-2 .project-content {
    position: static;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-project-offer-area-2 .single-project-item-2 .project-content {
    position: static;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
  }
}

.infetech-project-offer-area-2 .single-project-item-2 .project-content .text a {
  font-size: 20px;
  font-weight: 800;
  color: #3D3D3D;
  line-height: 26px;
}

.infetech-project-offer-area-2 .single-project-item-2 .project-content .icon {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .infetech-project-offer-area-2 .single-project-item-2 .project-content .icon {
    margin-left: 0;
    margin-top: 20px;
  }
}

.infetech-project-offer-area-2 .single-project-item-2 .project-content .icon a {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 52px;
  border-radius: 50%;
  color: #fff;
  background: #2aa4c9;
}

.infetech-project-slider-area-2 {
  padding-top: 120px;
  padding-bottom: 160px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.infetech-project-slider-area-2::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 450px;
  width: 100%;
  background: #f4f2f9;
  z-index: -1;
}

.infetech-project-slider-area-2 .single-project-slider-item {
  margin-left: 15px;
  margin-right: 15px;
}

.infetech-project-slider-area-2 .single-project-slider-item .thumb {
  overflow: hidden;
}

.infetech-project-slider-area-2 .single-project-slider-item .thumb img {
  transition: all linear 0.3s;
  width: 100%;
}

.infetech-project-slider-area-2 .single-project-slider-item .content {
  padding-top: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e0ee;
  position: relative;
}

.infetech-project-slider-area-2 .single-project-slider-item .content .title a {
  font-size: 24px;
  color: #3D3D3D;
}

.infetech-project-slider-area-2 .single-project-slider-item .content span {
  color: #2aa4c9;
  font-weight: 800;
  margin-top: 2px;
}

.infetech-project-slider-area-2 .single-project-slider-item .content .link {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 50px;
  text-align: center;
  line-height: 48px;
  background: #e4e0ee;
  font-size: 14px;
  color: #3D3D3D;
}

.infetech-project-slider-area-2 .single-project-slider-item:hover .thumb img {
  transform: scale(1.1);
}

.infetech-project-slider-area-2 .single-project-slider-item:hover .content .link {
  background: #0ca4c7;
  color: #fff;
}

.project-slider-active .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -47px;
  transform: translateX(-50%);
  text-align: center;
}

.project-slider-active .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.project-slider-active .slick-dots li button {
  border: 0;
  background: #bbb9be;
  height: 4px;
  width: 16px;
  font-size: 0;
}

.project-slider-active .slick-dots li.slick-active button {
  background: #0ca4c7;
}

.infetech-project-3-area {
  padding-top: 112px;
  padding-bottom: 155px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .infetech-project-3-area {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.infetech-project-3-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 425px;
  background: #3D3D3D;
  z-index: -1;
}

.infetech-project-3-area .section-title {
  text-align: center;
  margin-bottom: 44px;
}

.infetech-project-3-area .section-title .title {
  color: #fff;
}

.infetech-project-3-area.services::before {
  display: none;
}

.infetech-project-3-area.services .section-title .title {
  color: #3D3D3D;
}

.infetech-project-4-area {
  overflow: hidden;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-project-4-area {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .infetech-project-4-area {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}

.infetech-project-4-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 410px;
  width: 100%;
  background: #0ca4c7;
  z-index: -1;
}

.infetech-project-4-area .section-title {
  text-align: center;
}

.infetech-project-4-area .section-title span {
  color: #fff;
}

.infetech-project-4-area .section-title span::before {
  background: #fff;
}

.infetech-project-4-area .section-title .title {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-projects-grid-area {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.infetech-projects-grid-area .single-project-item {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-projects-details-area {
    padding: 70px 0 50px;
  }
}

@media (max-width: 767px) {
  .infetech-projects-details-area {
    padding: 70px 0 50px;
  }
}

.projects-details-list-box {
  background: #f4f2f9;
  padding: 50px 50px 88px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .projects-details-list-box {
    padding: 20px 20px 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-list-box {
    padding: 20px 20px 30px;
  }
}

@media (max-width: 767px) {
  .projects-details-list-box {
    padding: 20px 20px 30px;
  }
}

.projects-details-list-box .projects-list-item {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  padding-top: 10px;
}

.projects-details-list-box .projects-list-item span {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
}

.projects-details-list-box .projects-list-item .title {
  font-size: 16px;
  font-weight: 700;
  color: #0ca4c7;
  text-transform: capitalize;
  padding-top: 6px;
}

.projects-details-list-box .social ul li {
  display: inline-block;
}

.projects-details-list-box .social ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
  color: #3D3D3D;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
}

.projects-details-list-box .social ul li a:hover {
  background: #0ca4c7;
  color: #fff;
}

.projects-details-content {
  padding-top: 40px;
}

.projects-details-content .text .title {
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .projects-details-content .text .title {
    font-size: 30px;
  }
}

.projects-details-content .text p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.projects-details-content .small-text {
  margin-top: 40px;
}

.projects-details-content .small-text .title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.projects-details-content .small-text p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.projects-details-content .small-text ul {
  margin-top: 25px;
}

.projects-details-content .small-text ul li {
  font-size: 18px;
  font-weight: 600;
  color: #3D3D3D;
  line-height: 38px;
}

.projects-details-content .small-text ul li img {
  padding-right: 8px;
}

.projects-details-content .projects-details-page-changer {
  border-top: 1px solid #e4e0ee;
  border-bottom: 1px solid #e4e0ee;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-content .projects-details-page-changer {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .projects-details-content .projects-details-page-changer {
    margin-top: 50px;
  }
}

.projects-details-content .projects-details-page-changer ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.projects-details-content .projects-details-page-changer ul li {
  display: inline-block;
}

.projects-details-content .projects-details-page-changer ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-details-content .projects-details-page-changer ul li .icon i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  background: #f4f2f9;
  border-radius: 50%;
  color: #3D3D3D;
  transition: all linear 0.3s;
}

.projects-details-content .projects-details-page-changer ul li:hover .icon i {
  background: #0ca4c7;
  color: #fff;
}

.projects-details-thumb img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-project-details-list-area {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .infetech-project-details-list-area {
    padding-bottom: 40px;
  }
}

.infetech-project-details-list-area .single-project-item {
  margin-bottom: 30px;
}

/*===========================
    9.TESTIMONIAL css 
===========================*/
/* .infetech-testimonial-area {
  background-image: url(../images/einvocing/test.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 115px;
  padding-bottom: 133px;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-testimonial-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-testimonial-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.infetech-testimonial-area .single-testimonial-box {
  padding-left: 15px;
  padding-bottom: 15px;
  /* margin-left: 60px; */
  margin-bottom: 30px;
  /* background-image: url(../images/testimonial-line.png); */
  background-position: bottom left;
  background-size: auto;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box {
    margin-left: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box {
    margin-left: 30px;
  }

  .reviews-section .single-testimonial-box,
  .reviews-section .review-card {
    margin-left: 0 !important;
  }
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user {
  /* margin-bottom: -85px;
  margin-left: -75px; */
  position: relative;
  z-index: 20;
}

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user {
    margin-bottom: -85px;
    margin-left: -60px;
  }

  .reviews-section .single-testimonial-box .single-testimonial-user {
    margin-bottom: 16px !important;
    margin-left: 0 !important;
  }
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb {
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  padding: 22px;
  height: 150px;
  width: 150px;
  position: relative;
}

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb {
    height: 100px;
    width: 100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb {
    height: 150px;
    width: 150px;
  }
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 130px;
  width: 130px;
  border: 6px solid #0ca4c7;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb::before {
    height: 80px;
    width: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb::before {
    height: 130px;
    width: 130px;
  }
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .thumb img {
  width: 100%;
  border-radius: 50%;
}

/* .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content {
  background: #fff;
  border-radius: 60px;
  padding: 15px 85px 15px 177px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
} */

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content {
    padding: 15px 30px 15px 110px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content {
    padding: 15px 85px 15px 177px;
  }
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content .title {
  font-size: 20px;
  color: #3D3D3D;
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content span {
  font-weight: 600;
  font-size: 14px;
  color: #0ca4c7;
}

.infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content img {
  position: absolute;
  right: 55px;
  top: 100%;
}

@media (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content img {
    right: 39px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-testimonial-area .single-testimonial-box .single-testimonial-user .user-content img {
    right: 55px;
  }
}

.single-testimonial-item {
  background: #fff;
  padding: 22px 42px 22px 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-testimonial-item {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .single-testimonial-item {
    padding: 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-testimonial-item {
    padding: 40px;
  }
}

.single-testimonial-item ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 27px;
}

.single-testimonial-item ul li {
  display: inline-block;
  margin-left: 4px;
}

.single-testimonial-item ul li i {
  color: #ffc600;
}

.single-testimonial-item p {
  font-size: 21px;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 34px;
}

.infetech-testimonial-slide .col-lg-6 {
  padding-left: 15px;
  padding-right: 15px;
}

.infetech-testimonial-slide .slick-dots {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: auto;
}

.infetech-testimonial-slide .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.infetech-testimonial-slide .slick-dots li button {
  border: 0;
  background: #bbb9be;
  height: 4px;
  width: 16px;
  font-size: 0;
}

.infetech-testimonial-4-areaa .testimonial-content-4 {
  padding-left: 30px;
}

@media (max-width: 1199.98px) {
  .infetech-testimonial-4-areaa .testimonial-content-4 {
    padding-left: 0;
  }
}

.infetech-testimonial-slide .slick-dots li.slick-active button {
  background: #0ca4c7;
}

.infetech-offer-areaa .offer-list ul li {
  color: #0c0b0b;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
}

.infetech-testimonial-4-area .container {
  background-image: url(../images/testimonial-bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 20px;
}

.infetech-testimonial-4-areaa .container {
  background-image: url(../images/einvocing/test.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 20px;
}

/* .infetech-testimonial-4-area {
  background-image: url(../images/testimonial-bg-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-testimonial-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-testimonial-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-testimonial-4-area .testimonial-4-box .testimonial-small-thumb .testimonial-thumb-list {
    width: 350px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-testimonial-4-area .testimonial-4-box .testimonial-small-thumb .testimonial-thumb-list {
    width: 300px;
    margin-bottom: 20px;
  }
}

.infetech-testimonial-4-area .testimonial-4-box .testimonial-small-thumb .testimonial-thumb-list li {
  margin: 5px 0;
}

.infetech-testimonial-4-area .testimonial-thumb-4 {
  position: relative;
}

.infetech-testimonial-4-area .testimonial-thumb-4 .quote-icon {
  height: 115px;
  width: 115px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  line-height: 160px;
  color: #fff;
  font-size: 80px;
  font-weight: 700;
  border-radius: 50%;
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-testimonial-4-area .testimonial-thumb-4 .quote-icon {
    left: 350px;
    right: inherit;
  }
}

@media (max-width: 767px) {
  .infetech-testimonial-4-area .testimonial-thumb-4 .quote-icon {
    left: 350px;
    right: inherit;
  }
}

.infetech-testimonial-4-area .testimonial-thumb-4 .quote-icon::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 75px;
  width: 75px;
  border-radius: 50%;
  background: #2aa4c9;
  z-index: -1;
}

/* .infetech-testimonial-4-area .testimonial-content-4 {
  padding-left: 50px;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-testimonial-4-area .testimonial-content-4 {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-testimonial-4-area .testimonial-content-4 {
    padding-left: 0;
    margin-top: 20px;
  }
}

.infetech-testimonial-4-area .testimonial-content-4 .section-title span {
  color: #00B5D6;
}

.infetech-testimonial-4-area .testimonial-content-4 .section-title span::before {
  background: #00B5D6;
}

.infetech-testimonial-4-area .testimonial-content-4 .section-title .title {
  color: #fff;
}

.infetech-testimonial-4-area .testimonial-content-4 .section-title p {
  font-weight: 500;
  line-height: 40px;
  color: #ffffff;
  font-size: 21px;
  margin-top: 20px;
}

.infetech-testimonial-4-area .clients-info {
  margin-top: 40px;
}

.infetech-testimonial-4-area .clients-info .title {
  color: #fff;
  font-size: 20px;
}

.infetech-testimonial-4-area .clients-info .title span {
  color: #2aa4c9;
  font-size: 14px;
  font-weight: 500;
  padding-left: 14px;
  margin-left: 14px;
  position: relative;
}

.infetech-testimonial-4-area .clients-info .title span::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 2px;
  background: #fff;
}

.infetech-testimonial-4-area .testimonial-slider-active-4 .slick-arrow {
  position: absolute;
  bottom: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  color: #423c4c;
  border: 2px solid #423c4c;
  border-radius: 50%;
  font-size: 20px;
  z-index: 20;
  cursor: pointer;
  transition: all linear 0.3s;
}

.infetech-testimonial-4-area .testimonial-slider-active-4 .slick-arrow.prev {
  right: 70px;
}

.infetech-testimonial-4-area .testimonial-slider-active-4 .slick-arrow.next {
  right: 0px;
}

.infetech-testimonial-4-area .testimonial-slider-active-4 .slick-arrow:hover {
  border-color: #fff;
  color: #fff;
}

.testimonial-area-5 {
  padding-top: 0px;
  padding-bottom: 222px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-5 {
    padding-bottom: 260px;
  }
}

.testimonial-area-5 .testimonial-thumb-5 {
  margin-right: -135px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-5 .testimonial-thumb-5 {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .testimonial-area-5 .testimonial-thumb-5 {
    display: none;
  }
}

.testimonial-area-5 .testimonial-thumb-5 .item-1 {
  position: absolute;
  left: 45px;
  top: 80px;
  z-index: 6;
}

.testimonial-area-5 .testimonial-thumb-5 .item-2 {
  position: absolute;
  right: 155px;
  bottom: -65px;
  z-index: 5;
}

.testimonial-area-5 .testimonial-thumb-5 .item-3 {
  position: absolute;
  bottom: -115px;
  left: 60px;
  z-index: 4;
}

.testimonial-area-5 .testimonial-thumb-5 .item-4 {
  position: absolute;
  left: 260px;
  top: 85px;
  z-index: 3;
}

.testimonial-area-5.testimonial-area-about {
  background: #f4f2f9;
  padding-top: 114px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-area-5.testimonial-area-about {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .testimonial-area-5.testimonial-area-about {
    padding-top: 60px;
  }
}

.testimonial-slide-active-5 .testimonial-slide-item .box {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .testimonial-slide-active-5 .testimonial-slide-item .box {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-slide-active-5 .testimonial-slide-item .box {
    display: flex;
  }
}

.testimonial-slide-active-5 .testimonial-slide-item .box .thumb {
  padding: 6px;
  position: relative;
  z-index: 10;
  display: inline-block;
}

.testimonial-slide-active-5 .testimonial-slide-item .box .thumb::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: -moz-linear-gradient(87deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -webkit-linear-gradient(87deg, #0ca4c7 0%, #2aa4c9 100%);
  background-image: -ms-linear-gradient(87deg, #0ca4c7 0%, #2aa4c9 100%);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
}

.testimonial-slide-active-5 .testimonial-slide-item .box .content .title {
  font-size: 26px;
  color: #3D3D3D;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .testimonial-slide-active-5 .testimonial-slide-item .box .content .title {
    font-size: 20px;
  }
}

.testimonial-slide-active-5 .testimonial-slide-item .box .content span {
  font-size: 16px;
  font-weight: 600;
  color: #0ca4c7;
  padding-bottom: 6px;
}

.testimonial-slide-active-5 .testimonial-slide-item .box .content ul li {
  display: inline-block;
  color: #ffc600;
}

.testimonial-slide-active-5 .testimonial-slide-item .text {
  padding-top: 38px;
  padding-right: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-slide-active-5 .testimonial-slide-item .text {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slide-active-5 .testimonial-slide-item .text {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-slide-active-5 .testimonial-slide-item .text {
    padding-right: 0;
  }
}

.testimonial-slide-active-5 .testimonial-slide-item .text p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 36px;
  font-size: 20px;
}

.testimonial-slide-active-5 .slick-dots {
  position: absolute;
  left: 0;
  bottom: -56px;
  width: auto;
}

.testimonial-slide-active-5 .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.testimonial-slide-active-5 .slick-dots li button {
  border: 0;
  background: #bbb9be;
  height: 4px;
  width: 16px;
  font-size: 0;
}

.testimonial-slide-active-5 .slick-dots li.slick-active button {
  background: #0ca4c7;
}

/*===========================
    10.TESTIMONIAL css 
===========================*/
.infetech-team-area {
  padding-bottom: 120px;
  padding-top: 115px;
  position: relative;
  z-index: 20;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-team-area {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-team-area {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.infetech-team-area::before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  background-image: url(../images/team-pattern.png);
  height: 470px;
  width: 370px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-team-area .row {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .infetech-team-area .row {
    margin-bottom: 0;
  }
}

.infetech-team-area .section-title p {
  color: #3D3D3D;
  line-height: 30px;
}

.infetech-team-area.infetech-team-area-page {
  padding-top: 120px;
  padding-bottom: 56px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-team-area.infetech-team-area-page {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-team-area.infetech-team-area-page {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.infetech-team-area.infetech-team-area-page::before {
  display: none;
}

.infetech-team-area.infetech-team-area-page .single-tema-item {
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-team-area.infetech-team-area-page .single-tema-item {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .infetech-team-area.infetech-team-area-page .single-tema-item {
    margin-bottom: 0;
  }
}

.single-tema-item {
  margin-left: 25px;
  margin-right: 25px;
  padding-top: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-tema-item {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .single-tema-item {
    margin: 30px 0 0 0;
  }
}

.single-tema-item .top-line {
  position: absolute;
  right: 0;
  top: 0;
  width: 125px;
  height: 140px;
  border-top: 1px solid #e4e0ee;
  border-right: 1px solid #e4e0ee;
  z-index: -1;
}

.single-tema-item .top-line::before {
  position: absolute;
  content: '';
  left: 20px;
  top: -4px;
  height: 8px;
  width: 8px;
  background: #2aa4c9;
}

.single-tema-item .top-line::after {
  position: absolute;
  content: '';
  right: -4px;
  bottom: 80px;
  height: 8px;
  width: 8px;
  background: #0ca4c7;
}

.single-tema-item .thumb {
  overflow: hidden;
}

.single-tema-item .thumb img {
  transition: all linear 0.3s;
  width: 100%;
}

.single-tema-item .content {
  padding-top: 18px;
  position: relative;
}

.single-tema-item .content .title {
  font-size: 24px;
}

.single-tema-item .content span {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
}

.single-tema-item .content .share-icon {
  position: absolute;
  right: 0;
  top: 18px;
  background: #0ca4c7;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
}

.single-tema-item .content .share-icon ul {
  position: absolute;
  bottom: 100%;
  right: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 10px 58.8px 1.2px rgba(0, 0, 0, 0.07);
  padding: 12px 0 22px 0;
  transform: rotateY(91deg);
  transition: all linear 0.3s;
  opacity: 0;
}

.single-tema-item .content .share-icon ul li {
  display: inline-block;
}

.single-tema-item .content .share-icon ul li a {
  height: 38px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  display: block;
  color: #3D3D3D;
}

.single-tema-item .content .share-icon ul li a:hover {
  color: #0ca4c7;
}

.single-tema-item .content .share-icon:hover ul {
  transform: rotateY(0deg);
  opacity: 1;
}

.single-tema-item:hover .thumb img {
  transform: scale(1.1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-area {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .team-details-area {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.team-details-area .team-details-thumb {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
  padding-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-area .team-details-thumb {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .team-details-area .team-details-thumb {
    margin-right: 0;
  }
}

.team-details-area .team-details-thumb img {
  width: 100%;
}

.team-details-area .team-details-thumb .top-line {
  position: absolute;
  right: 0;
  top: 0;
  width: 125px;
  height: 140px;
  border-top: 1px solid #e4e0ee;
  border-right: 1px solid #e4e0ee;
  z-index: -1;
}

.team-details-area .team-details-thumb .top-line::before {
  position: absolute;
  content: '';
  left: 20px;
  top: -4px;
  height: 8px;
  width: 8px;
  background: #2aa4c9;
}

.team-details-area .team-details-thumb .top-line::after {
  position: absolute;
  content: '';
  right: -4px;
  bottom: 80px;
  height: 8px;
  width: 8px;
  background: #0ca4c7;
}

.team-details-area .team-details-content {
  padding-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-area .team-details-content {
    padding-left: 0;
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .team-details-area .team-details-content {
    padding-left: 0;
    padding-top: 30px;
  }
}

.team-details-area .team-details-content .title {
  font-size: 40px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .team-details-area .team-details-content .title {
    font-size: 30px;
  }
}

.team-details-area .team-details-content span {
  font-size: 18px;
  font-weight: 600;
  color: #0ca4c7;
  margin-bottom: 18px;
  padding-top: 5px;
}

.team-details-area .team-details-content ul li {
  display: inline-block;
}

.team-details-area .team-details-content ul li a {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 44px;
  background: #f4f2f9;
  margin-right: 6px;
  border-radius: 50%;
  color: #3D3D3D;
  font-size: 14px;
}

.team-details-area .team-details-content ul li a:hover {
  background: #0ca4c7;
  color: #fff;
}

.team-details-area .team-details-content h2 {
  font-size: 30px;
  font-weight: 500;
  color: #0ca4c7;
  line-height: 36px;
}

@media (max-width: 767px) {
  .team-details-area .team-details-content h2 {
    font-size: 20px;
    line-height: 36px;
  }
}

.team-details-area .team-details-content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 34px;
  color: #3D3D3D;
}

.team-progress-area {
  padding-bottom: 112px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-progress-area {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .team-progress-area {
    padding-top: 0px;
    padding-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-progress-area .border-top {
    padding-top: 80px;
  }
}

@media (max-width: 767px) {
  .team-progress-area .border-top {
    padding-top: 80px;
  }
}

.team-progress-area .circle {
  text-align: center;
  position: relative;
  height: 145px;
}

.team-progress-area .circle strong {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 400;
  color: #3D3D3D;
}

.team-progress-area .team-progress-box {
  position: relative;
  z-index: 10;
  display: inline-block;
}

.team-progress-area .team-progress-box::before {
  position: absolute;
  content: '';
  border: 2px solid #0ca4c7;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 90%;
  width: 90%;
  border-radius: 50%;
  background: #f9f9f9;
}

.team-progress-area .content {
  margin-top: 13px;
}

@media (max-width: 767px) {
  .team-progress-area .content {
    margin-bottom: 50px;
  }
}

.team-progress-area .content span {
  font-weight: 500;
  font-size: 18px;
  color: #3D3D3D;
}

.team-form-area {
  background-image: url(../images/team-form-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 114px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .team-form-area {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.team-form-area .section-title {
  padding: 0;
}

.team-form-box .input-box {
  margin-bottom: 20px;
}

.team-form-box .input-box input {
  width: 100%;
  height: 60px;
  padding-left: 40px;
  border: 0;
  color: #3D3D3D;
  font-size: 14px;
}

.team-form-box .input-box input::placeholder {
  opacity: 1;
  color: #3D3D3D;
}

.team-form-box .input-box textarea {
  width: 100%;
  height: 180px;
  padding-left: 40px;
  padding-top: 15px;
  border: 0;
  color: #3D3D3D;
  font-size: 14px;
  resize: none;
}

.team-form-box .input-box textarea::placeholder {
  opacity: 1;
  color: #3D3D3D;
}

/*===========================
    11.VIDEO css 
===========================*/
.infetech-video-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url(../images/video-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.infetech-video-area .video-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.infetech-video-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #3D3D3D;
  opacity: 0.7;
  z-index: -2;
}

.infetech-video-area .video-content .play-btn a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background: #2aa4c9;
  position: relative;
}

.infetech-video-area .video-content .play-btn a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: play-popup 1.5s infinite;
}

.infetech-video-area .video-content span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  padding-top: 43px;
  padding-bottom: 16px;
}

.infetech-video-area .video-content .title {
  color: #fff;
  font-size: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-video-area .video-content .title {
    font-size: 46px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-video-area .video-content .title {
    font-size: 46px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-video-area .video-content .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-video-area .video-content .title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}

@keyframes play-popup {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

.video-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  row-gap: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-content-wrapper {
    flex-direction: row;
    column-gap: 30px;
  }
}

@media (max-width: 767px) {
  .video-content-wrapper {
    flex-direction: column;
    column-gap: 30px;
    align-items: flex-start;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video-content-wrapper {
    flex-direction: row;
    column-gap: 30px;
  }
}

.video-content-wrapper .video-content-box {
  background: #2aa4c9;
  display: inline-block;
  padding: 50px;
}

.video-content-wrapper .video-content-box .title {
  color: #fff;
  font-size: 40px;
  margin-bottom: 4px;
}

.video-content-wrapper .video-content-box span {
  font-size: 18px;
  color: #fff;
}

.video-content-wrapper .video-content-box.item-2 {
  background: #0ca4c7;
}

/*===========================
    12.BLOG css 
===========================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .infetech-blog-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.infetech-blog-area.infetech-blog-area-3 {
  position: relative;
  border-bottom: 1px solid #e4e0ee;
  z-index: 10;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .infetech-blog-area.infetech-blog-area-3 {
    padding-top: 50px;
    padding-bottom: 60px;
    margin-bottom: 40px;
  }
}

.infetech-blog-area.infetech-blog-area-3::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 592px;
  background: #f4f2f9;
  z-index: -1;
}

.single-blog-item {
  border: 1px solid #00b6d656;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .single-blog-item {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-blog-item {
    margin-bottom: 0px;
  }
}

.single-blog-item .thumb {
  overflow: hidden;
  position: relative;
}

.single-blog-item .thumb a {
  display: block;
}

.single-blog-item .thumb a img {
  width: 100%;
  transition: all linear 0.3s;
}

.single-blog-item .thumb span {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0da5c7;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 20px;
  text-transform: uppercase;
}

.single-blog-item .content {
  background: #fff;
  /* margin-top: -30px;
  margin-left: 20px;
  margin-right: 20px; */
  border-radius: 10px;
  position: relative;
  z-index: 10;
  padding: 20px;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-blog-item .content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .single-blog-item .content {
    padding: 20px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-blog-item .content {
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.single-blog-item .content .blog-meta ul li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
}

.single-blog-item .content .blog-meta ul li::before {
  position: absolute;
  content: '/';
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: #3D3D3D;
  font-weight: 500;
}

.single-blog-item .content .blog-meta ul li:last-child {
  margin-right: 0;
}

.single-blog-item .content .blog-meta ul li:last-child::before {
  display: none;
}

.single-blog-item .content .blog-meta ul li i {
  color: #0da5c7;
}

.single-blog-item .content .blog-meta .title a {
  font-size: 24px;
  color: #3D3D3D;
  margin-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-blog-item .content .blog-meta .title a {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .single-blog-item .content .blog-meta .title a {
    font-size: 18px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-blog-item .content .blog-meta .title a {
    font-size: 24px;
  }
}

.single-blog-item .content .blog-meta>a {
  background: #f6fcfe;
  color: #3D3D3D;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0px 15px;
  margin-top: 22px;
  letter-spacing: 1;
}

.single-blog-item:hover .thumb img {
  transform: scale(1.1);
}

.single-blog-item:hover .content {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.single-blog-item:hover .content .blog-meta>a {
  color: #0ba4c7;
  background: #0ca4c7;
}

.single-blog-item:hover .content .blog-meta .title a {
  color: #0ba4c6;
}

.infetech-blog-area-2 {
  padding-top: 120px;
  padding-bottom: 70px;
  overflow: hidden;
}

.infetech-blog-area-2 .section-title {
  padding-right: 40px;
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .infetech-blog-area-2 .section-title {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-area-2 .section-title {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-blog-area-2 .section-title {
    padding-bottom: 20px;
  }
}

.infetech-blog-area-2 .section-title p {
  color: #3D3D3D;
  margin-top: 29px;
  padding-right: 70px;
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .infetech-blog-area-2 .section-title p {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-area-2 .section-title p {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .infetech-blog-area-2 .section-title p {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1600px) {
  .infetech-blog-area-2 .section-title .title {
    font-size: 30px;
  }
}

.infetech-blog-area-2 .full-right {
  position: relative;
  left: calc((100% - 1020px) / 3);
}

@media only screen and (min-width: 992px) and (max-width: 1600px) {
  .infetech-blog-area-2 .full-right {
    left: calc((100% - 1020px) / 4);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-blog-area-2 .full-right {
    left: calc((100% - 940px) / 4);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-area-2 .full-right {
    left: 0;
  }
}

@media (max-width: 767px) {
  .infetech-blog-area-2 .full-right {
    left: 0;
  }
}

.infetech-blog-area-2 .single-blog-item {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
}

.infetech-blog-slide-active {
  margin-right: 275px;
}

@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .infetech-blog-slide-active {
    margin-right: 180px;
  }
}

@media only screen and (min-width: 10px) and (max-width: 1600px) {
  .infetech-blog-slide-active {
    margin-right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-page-area {
    padding: 70px 0 40px;
  }
}

@media (max-width: 767px) {
  .infetech-blog-page-area {
    padding: 70px 0 40px;
  }
}

.infetech-blog-page-area .single-blog-item {
  margin-bottom: 30px;
}

.blog-sidebar .input-box {
  position: relative;
}

.blog-sidebar .input-box input {
  width: 100%;
  background: #2aa4c9;
  height: 84px;
  padding-left: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border: 0;
}

@media (max-width: 767px) {
  .blog-sidebar .input-box input {
    padding-left: 20px;
  }
}

.blog-sidebar .input-box input::placeholder {
  opacity: 1;
  color: #fff;
}

.blog-sidebar .input-box button {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #fff;
  border: 0;
  background: transparent;
}

@media (max-width: 767px) {
  .blog-sidebar .input-box button {
    right: 20px;
  }
}

.blog-sidebar .blog-widgets {
  background: #eff5f7;
  padding: 46px 30px 30px;
}

.blog-sidebar .blog-widgets .blog-title {
  margin-bottom: 15px;
  padding-left: 20px;
}

.blog-sidebar .blog-widgets .blog-title .title {
  font-size: 22px;
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  margin-bottom: 10px;
  transition: all linear 0.3s;
}

@media (max-width: 767px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item {
    display: flex;
  }
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .thumb {
  min-width: 70px;
}

@media (max-width: 767px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .thumb {
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .thumb {
    margin-bottom: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content {
    display: flex;
    flex-direction: column;
  }
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content span {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  margin-bottom: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content span {
    font-size: 14px;
  }
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content span i {
  color: #0ca4c7;
  padding-right: 4px;
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content .title {
  font-size: 18px;
  font-weight: 700;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content .title {
    font-size: 14px;
  }
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item .content .title:hover {
  color: #0ca4c7;
}

.blog-sidebar .blog-widgets.blog-sidebar-list .blog-item:hover {
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.05);
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li {
  margin-bottom: 10px;
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 42px;
  transition: all linear 0.4s;
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li a i {
  transition: all linear 0.4s;
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li a:hover {
  background: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li a:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}

.blog-sidebar .blog-widgets.blog-category-sidebar ul li a:hover i {
  color: #0ca4c7;
}

.blog-sidebar .blog-widgets.blog-tags ul {
  padding-left: 20px;
}

.blog-sidebar .blog-widgets.blog-tags ul li {
  display: inline-block;
}

.blog-sidebar .blog-widgets.blog-tags ul li a {
  background: #fff;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  color: #3D3D3D;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-right: 6px;
}

.blog-sidebar .blog-widgets.blog-tags ul li a:hover {
  background: #0ca4c7;
  color: #fff;
}

.blog-details-box .top-content .thumb img {
  width: 100%;
}

.blog-details-box .top-content ul {
  margin-top: 23px;
}

.blog-details-box .top-content ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  position: relative;
  padding-right: 14px;
  margin-right: 7px;
}

.blog-details-box .top-content ul li:first-child::before {
  position: absolute;
  content: '/';
  right: 0;
  top: 0;
}

.blog-details-box .top-content ul li img {
  padding-right: 5px;
}

.blog-details-box .top-content .title {
  font-size: 30px;
  text-transform: capitalize;
  margin-top: 8px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .blog-details-box .top-content .title {
    font-size: 24px;
  }
}

.blog-details-box .top-content p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.blog-social-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid #e4e0ee;
}

@media (max-width: 767px) {
  .blog-social-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.blog-social-box .blgo-tags-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-social-box .blgo-tags-details span {
  font-size: 18px;
  font-weight: 800;
  color: #3D3D3D;
}

.blog-social-box .blgo-tags-details ul li {
  display: inline-block;
  margin-right: 6px;
}

.blog-social-box .blgo-tags-details ul li a {
  background: #0ca4c7;
  color: #fff;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .blog-social-box .blgo-tags-details ul li a {
    padding: 9px 15px;
  }
}

.blog-social-box .blog-social-details ul li {
  display: inline-block;
}

.blog-social-box .blog-social-details ul li a {
  font-size: 20px;
  color: #3D3D3D;
  margin-left: 26px;
}

@media (max-width: 767px) {
  .blog-social-box .blog-social-details ul li a {
    margin-left: 0;
    margin-right: 15px;
  }
}

.blog-social-box .blog-social-details ul li a:hover {
  color: #0ca4c7;
}

.blog-post-prev-next {
  background: #f4f2f9;
  padding: 60px 60px 60px 60px;
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-post-prev-next {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-post-prev-next {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .blog-post-prev-next {
    padding: 30px;
    margin-bottom: 20px;
  }
}

.blog-post-prev-next .title {
  font-size: 24px;
  font-weight: 800;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-post-prev-next .title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .blog-post-prev-next .title {
    font-size: 18px;
  }
}

.blog-post-prev-next .title a {
  color: #3D3D3D;
}

.blog-post-prev-next:hover {
  background: #0ca4c7;
}

.blog-post-prev-next:hover .title a {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-blog-details-area {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-blog-details-area {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

.blog-comments-box {
  padding-top: 53px;
}

.blog-comments-box .comments-title {
  padding-bottom: 48px;
}

.blog-comments-box .comments-title .title {
  font-size: 36px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-comments-box .comments-title .title {
    font-size: 30px;
  }
}

.blog-comments-box .blog-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4e0ee;
}

@media (max-width: 767px) {
  .blog-comments-box .blog-item {
    display: block;
  }
}

.blog-comments-box .blog-item .thumb {
  min-width: 165px;
  margin-right: 45px;
}

@media (max-width: 767px) {
  .blog-comments-box .blog-item .thumb {
    margin-bottom: 20px;
  }
}

.blog-comments-box .blog-item .content {
  position: relative;
}

.blog-comments-box .blog-item .content .title {
  font-size: 20px;
  margin-bottom: 22px;
}

.blog-comments-box .blog-item .content p {
  font-weight: 500;
  line-height: 30px;
}

.blog-comments-box .blog-item .content a {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #0ca4c7;
  line-height: 34px;
  padding: 0 20px;
}

.blog-form-box .blog-title {
  padding-bottom: 48px;
}

.blog-form-box .blog-title .title {
  font-size: 36px;
}

@media (max-width: 767px) {
  .blog-form-box .blog-title .title {
    font-size: 30px;
  }
}

.blog-form-box .input-box input {
  width: 100%;
  background: #f4f2f9;
  border: 0;
  height: 60px;
  padding-left: 30px;
  color: #3D3D3D;
  font-size: 16px;
  font-weight: 500;
}

.blog-form-box .input-box input::placeholder {
  opacity: 1;
}

.blog-form-box .input-box textarea {
  width: 100%;
  background: #f4f2f9;
  border: 0;
  height: 170px;
  padding-left: 30px;
  padding-top: 15px;
  resize: none;
  color: #3D3D3D;
  font-size: 16px;
  font-weight: 500;
}

.blog-form-box .input-box textarea::placeholder {
  opacity: 1;
}

.blog-form-box .input-box button {
  margin-top: 20px;
  border: 1px solid #0ca4c7;
}

/*===========================
    13.FOOTER css 
===========================*/
.infetech-footer-area {
  padding-top: 50px;
  padding-bottom: 0px;
  background: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tadeed-footer-section {
  border-bottom: 1px dashed #ffffff2e;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-footer-area {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .infetech-footer-area {
    padding: 80px 0;
  }
}

.infetech-footer-area .title {
  color: #fff;
  font-size: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 20px;
  padding-top: 45px;
  border-bottom: 1px solid #eeeeee30;
}

.infetech-footer-area .title::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
  width: 17px;
  background: #0ca4c7;
}

@media (max-width: 767px) {
  .infetech-footer-area .title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .footer-about {
    text-align: center;
  }
}

.footer-about>a {
  max-width: 165px;
}

.footer-about p {
  color: #fcfcfc;
  line-height: 30px;
  margin-top: 18px;
}

.footer-about ul {
  margin-top: 20px;
  display: flex;
  gap: 10px;


}

@media (max-width: 767px) {
  .footer-about ul {
    justify-content: center;
  }
}

.footer-about ul li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 48px;
  /* background: #15101e; */
  border-radius: 50%;
  color: #fdfdfd;
  font-size: 18px;
  border: 1px solid #dfdfdf;
}

.footer-about ul li a:hover {
  background: #0ca4c7;
}

@media (max-width: 767px) {
  .footer-nav {
    margin-top: 30px;
    text-align: center;
  }
}

.footer-nav ul li a {
  color: #a2bbc1;
  font-size: 16px;
  line-height: 34px;
}

.footer-nav ul li a:hover {
  color: #0ca4c7;
}

.footer-newsletter {
  margin-right: 90px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-newsletter {
    margin-top: 30px;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .footer-newsletter {
    margin-top: 30px;
    text-align: center;
    margin-right: 0;
  }
}

.footer-newsletter p {
  color: #a2bbc1;
  line-height: 30px;
  margin-bottom: 21px;
}

.footer-newsletter .input-box {
  position: relative;
}

.footer-newsletter .input-box input {
  width: 100%;
  background: #fff;
  height: 50px;
  padding-left: 20px;
  color: #3D3D3D;
  display: block;
  border: 0;
  font-size: 14px;
  font-weight: 500;
}

.footer-newsletter .input-box input::placeholder {
  color: #3D3D3D;
  opacity: 1;
}

.footer-newsletter .input-box button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border: 0;
  color: #fff;
  font-size: 18px;
  background: #0ca4c7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-info {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .footer-info {
    margin-top: 30px;
    text-align: center;
  }
}

.footer-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #a2bbc1;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .footer-info ul li {
    justify-content: center;
  }
}

.footer-info ul li i {
  color: #000;
  font-size: 18px;
  color: #0ca4c7;
}

.footer-copyright {
  background: #15101e;
  border-top: 1px solid #322d3d;
  padding: 30px 0;
}

.footer-copyright p {
  color: #a2bbc1;
}

.footer-copyright p a {
  color: #0ca4c7;
}

/*===== Go Top =====*/
.go-top-area {
  position: relative;
  z-index: 999;
}

.go-top-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 24px;
  color: #ffffff;
  background-color: #2aa4c9;
  z-index: 9999;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  -ms-transition: all 0.9s ease-out 0s;
  -o-transition: all 0.9s ease-out 0s;
  transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}

.go-top-area .go-top i {
  position: absolute;
  top: 50%;
  left: -4px;
  right: 0;
  margin: 0 auto;
  font-size: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.go-top-area .go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}

.go-top-area .go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0ba4c7;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 10px;
}

.go-top-area .go-top:focus,
.go-top-area .go-top:hover {
  color: #fff;
}

.go-top-area .go-top:focus::before,
.go-top-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}

.go-top-area .go-top:focus i:first-child,
.go-top-area .go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}

.go-top-area .go-top:focus i:last-child,
.go-top-area .go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.go-top-area .go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  -ms-transform: translateY(-98%);
  -o-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
  right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .go-top-area .go-top.active {
    top: 93%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .go-top-area .go-top.active {
    top: 93%;
  }
}

.go-top-wrap {
  position: relative;
}

.go-top-wrap .go-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #5fc2ab;
  border-radius: 10px;
}

.go-top-wrap .go-top-btn i {
  font-size: 20px;
  font-weight: 700;
  padding-left: 4px;
  color: #fff;
}

.go-top-wrap .go-top-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  -o-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite;
  opacity: 0;
  background: #0ba4c7;
  border-radius: 10px;
}

.go-top-wrap .go-top-btn:hover {
  background-color: #3D3D3D;
  color: #fff;
}

@keyframes ripple {

  0%,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}

@-webkit-keyframes ripple {

  0%,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}

.sing-area {
  z-index: 11;
  position: relative;
}

.sing-area .footer-sing-up {
  margin-top: 0;
  margin-bottom: -60px;
}

@-webkit-keyframes footer-shape {
  0% {
    right: 100px;
  }

  50% {
    right: 0;
  }

  100% {
    right: 100px;
  }
}

@keyframes footer-shape {
  0% {
    right: 100px;
  }

  50% {
    right: 0;
  }

  100% {
    right: 100px;
  }
}

.infetech-footer-4-area {
  background-image: url(../images/footer-line.png);
  background-position: top right;
  background-size: auto;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-footer-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-footer-4-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-about-4 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-about-4 {
    text-align: center;
  }
}

.footer-about-4 .logo {
  width: 165px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-about-4 .logo {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .footer-about-4 .logo {
    display: inline-block;
  }
}

.footer-about-4 ul li a {
  font-size: 24px;
  font-weight: 700;
  color: #0ca4c7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-list-4 {
    text-align: center;
    margin: 30px 0;
  }
}

@media (max-width: 767px) {
  .footer-list-4 {
    text-align: center;
    margin: 30px 0;
  }
}

.footer-list-4 ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 32px;
}

.footer-list-4 ul li a:hover {
  color: #0ca4c7;
}

.footer-address {
  padding-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-address {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer-address {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 0;
  }
}

.footer-address p {
  font-size: 18px;
  line-height: 36px;
  color: #3D3D3D;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-social {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-social {
    display: flex;
    justify-content: center;
  }
}

.footer-social ul li {
  display: inline-block;
  margin-right: 6px;
}

.footer-social ul li a {
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  color: #fff;
  background: #0ca4c7;
}

.infetech-footer-4-area.footer-copyright {
  text-align: center;
  background: #fff;
  border-top-color: #e4e0ee;
}

.infetech-footer-4-area.footer-copyright p {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
}

/*===========================
    14.CLIENTS css 
===========================*/
.infetech-clients-area {
  padding-top: 115px;
  background-image: url(../images/client-bg-line.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.clients-tabs-item ul.nav {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  flex-wrap: nowrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-tabs-item ul.nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .clients-tabs-item ul.nav {
    flex-wrap: wrap;
  }
}

.clients-tabs-item ul.nav li button {
  background: #fff;
  padding: 50px 0 45px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  text-align: center;
  width: 210px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .clients-tabs-item ul.nav li button {
    width: 170px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-tabs-item ul.nav li button {
    margin-top: 0 !important;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .clients-tabs-item ul.nav li button {
    margin-top: 0 !important;
    margin-bottom: 30px;
  }
}

.clients-tabs-item ul.nav li button span {
  display: block;
  font-weight: 800;
  color: #3D3D3D;
  font-size: 20px;
  margin-top: 5px;
}

.clients-tabs-item ul.nav li button.active {
  background: #3D3D3D;
  background-image: url(../images/client-item-line.png);
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
  position: relative;
}

.clients-tabs-item ul.nav li button.active::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #3D3D3D;
}

.clients-tabs-item ul.nav li button.active::after {
  position: absolute;
  content: '\f078';
  font-weight: 300;
  left: 50%;
  top: 96%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  font-family: "Font Awesome 5 Pro";
}

.clients-tabs-item ul.nav li button.active span {
  color: #fff;
}

.clients-tabs-item ul.nav li button.active svg {
  fill: #2aa4c9;
}

.clients-content-box .title {
  font-size: 30px;
  color: #3D3D3D;
  margin-bottom: 22px;
}

.clients-content-box p {
  font-size: 16px;
  color: #3D3D3D;
  line-height: 30px;
  margin-bottom: 32px;
}

.clients-content-box a {
  border: 1px solid #0ca4c7;
}

.infetech-clients-3-area {
  padding-top: 60px;
  padding-bottom: 60px;
  /* background: #f5fbfd; */
}

@media (max-width: 767px) {
  .infetech-clients-3-area {
    padding-top: 60px;
    padding-bottom: 150px;
  }
}

/*==================================================
Business Feature cards — flat teal hover + icon left of title
==================================================*/

.infetech-clients-3-area .feature-cards-row {
  padding-top: 0;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
  border: 0;
  border-radius: 8px;
  padding: 28px 24px 30px;
  margin: 0;
  text-align: left;
  box-shadow: none;
  min-height: 160px;
  height: 100%;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 1;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item .bg {
  display: none;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item::before {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: 110px;
  height: 110px;
  opacity: 0;

  background-image: url("../images/einvocing/sideicon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item::after {
  display: none;
}

.infetech-clients-3-area .feature-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item .icon {
  position: static;
  transform: none;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.35s ease, background 0.35s ease;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item .icon i {
  font-size: 30px;
  color: #0ba4c7;
  transition: color 0.35s ease;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item .title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.35s ease;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item p {
  margin: 0;
  min-height: 0;
  position: relative;
  z-index: 1;
  color: #6b7280;
  transition: color 0.35s ease;
}

.infetech-clients-3-area .feature-card-btn {
  display: none;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item:hover {
  background: #0ba4c7;
  border-color: transparent;
  transform: none;
  box-shadow: 0 12px 28px rgba(11, 164, 199, 0.22);
}

.infetech-clients-3-area .single-service-3-item.clients-3-item:hover::before {
  opacity: 0.22;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item:hover .icon {
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item:hover .icon i {
  color: #ffffff;
}

.infetech-clients-3-area .single-service-3-item.clients-3-item:hover .title,
.infetech-clients-3-area .single-service-3-item.clients-3-item:hover p {
  color: #ffffff;
}

@media (max-width: 991px) {
  .infetech-clients-3-area .single-service-3-item.clients-3-item {
    padding: 24px 20px;
    min-height: auto;
  }

  .infetech-clients-3-area .single-service-3-item.clients-3-item .icon {
    position: static;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .infetech-clients-3-area .feature-cards-row {
    padding-top: 0;
  }

  .infetech-clients-3-area .single-service-3-item.clients-3-item .icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .infetech-clients-3-area .single-service-3-item.clients-3-item .icon i {
    font-size: 20px;
  }
}

/*==================================================
Service Card (other pages)
==================================================*/

.single-service-3-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 45px 39px 45px 29px !important;
  transition: all .45s ease;
  z-index: 1;
}

/*==================================================
Top Border Animation
==================================================*/

.single-service-3-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  transition: .45s ease;
}

.single-service-3-item:hover::after {
  width: 100%;
}

/*==================================================
Card Hover
==================================================*/
.single-service-3-item:hover {
  transform: translateY(-10px);
  border-color: #0BA4C7;
}

.single-service-3-item .title {
  transition: .35s ease;
}

.single-service-3-item:hover .title {
  color: #0BA4C7;
}

.single-service-3-item p {
  transition: .35s ease;
}

.single-service-3-item:hover p {
  color: #555;
}

.single-service-3-item .icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #ECFAFD;
  border: 1px solid #E5E7EB;
  transition: .45s ease;
}

.single-service-3-item .icon i {
  font-size: 30px;
  color: #0BA4C7;
  transition: .45s ease;
}

.single-service-3-item:hover .icon {
  transform: rotate(-8deg) scale(1.08);
  border-color: #0BA4C7;
  background: #0ca4c70f;
}

.single-service-3-item:hover .icon i {
  color: #0BA4C7;
  transform: rotate(8deg);
}

@media(max-width:991px) {
  .single-service-3-item {
    padding: 35px;
  }

  .single-service-3-item .icon {
    position: static;
    margin-top: 25px;
  }
}

@media(max-width:767px) {
  .single-service-3-item {
    padding: 30px;
  }

  .single-service-3-item .icon {
    width: 60px;
    height: 60px;
  }

  .single-service-3-item .icon i {
    font-size: 24px;
  }
}

.faq-box-area {
  position: relative;
  z-index: 10;
  margin-top: -60px;
}

@media (max-width: 767px) {
  .faq-box-area {
    background: #f2f0f7;
  }
}

.faq-box-area .faq-box-item {
  padding: 30px 30px 30px 60px;
  background: #2aa4c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-box-area .faq-box-item {
    padding: 30px;
    display: block;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .faq-box-area .faq-box-item {
    padding: 30px;
    display: block;
    text-align: center;
  }
}

.faq-box-area .faq-box-item .title {
  font-size: 18px;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-box-area .faq-box-item .title {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .faq-box-area .faq-box-item .title {
    margin-bottom: 25px;
  }
}

.faq-box-area .faq-box-item a {
  background: #fff;
  color: #3D3D3D;
  line-height: 60px;
}

.faq-box-area .faq-box-item a:hover {
  background: #0ca4c7;
  color: #fff;
}

.infetech-clients-4-area {
  padding-top: 114px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-clients-4-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .infetech-clients-4-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.clients-4-item {
  background-image: url(../images/clients-item-bg.png);
  padding: 40px 45px 40px 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 10;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  transition: all linear 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .clients-4-item {
    padding: 30px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .clients-4-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .clients-4-item {
    margin-bottom: 30px;
  }
}

.clients-4-item::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: -1;
  transition: all linear 0.3s;
}

.clients-4-item .title {
  font-size: 20px;
  transition: all linear 0.3s;
}

.clients-4-item p {
  color: #3D3D3D;
  font-weight: 500;
  line-height: 30px;
  margin: 14px 0 20px;
  transition: all linear 0.3s;
}

.clients-4-item .icon {
  background: #0ca4c7;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  transition: all linear 0.3s;
}

.clients-4-item .icon svg {
  transition: all linear 0.3s;
}

.clients-4-item:hover {
  box-shadow: none;
}

.clients-4-item:hover::before {
  opacity: 0;
}

.clients-4-item:hover .title {
  color: #fff;
}

.clients-4-item:hover p {
  color: #fff;
}

.clients-4-item:hover .icon {
  background: #fff;
}

.clients-4-item:hover .icon svg {
  fill: #0ca4c7;
}

/*===========================
    15.TESTIMONIAL css 
===========================*/
.infetech-information-area {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.infetech-information-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/information-bg-dot.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-information-area .information-thumb {
    margin-bottom: 30px;
  }
}

.infetech-information-area .information-thumb .thumb {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.infetech-information-area .information-thumb .thumb .information-logo {
  padding-left: 60px;
  padding-top: 85px;
}

.infetech-information-area .information-thumb .thumb::before {
  position: absolute;
  content: 'missions';
  left: -185px;
  top: 135px;
  font-size: 30px;
  font-weight: 400;
  color: #3D3D3D;
  opacity: 0.2;
  text-transform: uppercase;
  letter-spacing: 21px;
  transform: rotate(-90deg);
}

.infetech-information-area .information-thumb .thumb.thumb-2 {
  margin-top: -85px;
}

.infetech-information-area .information-thumb .thumb.thumb-2 .information-logo {
  padding-left: 0;
  padding-right: 60px;
  margin-top: 85px;
}

.infetech-information-area .information-thumb .thumb.thumb-2::before {
  content: 'visions';
  left: auto;
  right: -70px;
  transform: rotate(90deg);
}

.information-content {
  position: relative;
  margin-top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .information-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .information-content {
    padding-left: 0;
  }
}

.information-content span {
  font-size: 24px;
  font-weight: 700;
  color: #2aa4c9;
  margin-top: 30px;
  margin-bottom: 13px;
}

.information-content p {
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
  line-height: 30px;
}

.information-content .quote-text {
  background: #fff;
  padding: 20px 10px 20px 40px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 50px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.information-content .quote-text::before {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 80px;
  border-radius: 10px;
  background: #2aa4c9;
}

.information-content .quote-text p {
  font-size: 18px;
  color: #3D3D3D;
  font-weight: 600;
  line-height: 32px;
}

.information-content .information-btns {
  display: flex;
}

@media (max-width: 767px) {
  .information-content .information-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

.information-content .information-btns .play-btn {
  margin-left: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .information-content .information-btns .play-btn {
    margin-left: 0;
    margin-top: 20px;
  }
}

.information-content .information-btns .play-btn a {
  height: 60px;
  width: 60px;
  background: #2aa4c9;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: #fff;
}

.information-content .information-btns .play-btn span {
  font-size: 16px;
  font-weight: 700;
  color: #3D3D3D;
  margin: 0 0 0 18px;
}

/*===========================
    16.OFFER css 
===========================*/
.infetech-offer-area {
  padding-top: 120px;
  padding-bottom: 120px;
  /* background-image: url(../images/offer-bg.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-offer-area {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .infetech-offer-area {
    padding: 70px 0;
  }
}

.infetech-offer-area .section-title {
  margin-bottom: 30px;
  padding-right: 70px;
}

.infetech-offer-area .section-title span {
  color: #fff;
}

.infetech-offer-area .section-title span::before {
  background: #fff;
}

.infetech-offer-area .section-title .title {
  color: #fff;
}

.infetech-offer-area .offer-text {
  padding-right: 30px;
}

.infetech-offer-area .offer-text p {
  font-size: 16px;
  font-weight: 500;
  color: #e1d6ff;
  margin-bottom: 26px;
}

.infetech-offer-area .offer-list ul li {
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 15px;
}

.infetech-offer-area .offer-list ul li img {
  padding-right: 5px;
}

.infetech-offer-thumb {
  position: relative;
  padding-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-offer-thumb {
    text-align: left !important;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-offer-thumb {
    text-align: left !important;
    margin-top: 20px;
  }
}

.infetech-offer-thumb .offer-icon {
  height: 130px;
  width: 130px;
  text-align: center;
  line-height: 130px;
  background-image: -moz-linear-gradient(0deg, #2aa4c9 0%, #0ca4c7 100%);
  background-image: -webkit-linear-gradient(0deg, #2aa4c9 0%, #0ca4c7 100%);
  background-image: -ms-linear-gradient(0deg, #2aa4c9 0%, #0ca4c7 100%);
  position: absolute;
  left: 0;
  bottom: 20px;
}

.base {
  position: absolute;
  left: 1085px;
  top: 3287px;
  width: 130px;
  height: 128px;
  z-index: 324;
}

.infetech-offer-category-area {
  padding-top: 118px;
  padding-bottom: 110px;
  background-image: url(../images/offer-category-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.infetech-offer-category-area .section-title span {
  color: #2aa4c9;
}

.infetech-offer-category-area .section-title span::before {
  background: #2aa4c9;
}

.infetech-offer-category-area .section-title .title {
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-offer-category-area .offer-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .infetech-offer-category-area .offer-content {
    margin-bottom: 30px;
  }
}

.infetech-offer-category-area .offer-content p {
  font-size: 16px;
  font-weight: 500;
  color: #a2bbc1;
  line-height: 30px;
  margin: 28px 30px 48px 0;
}

.offer-category-item .box {
  margin-bottom: 30px;
}

.offer-category-item .box a {
  display: flex;
  align-items: center;
  border: 1px solid #55515f;
  padding-left: 40px;
  padding-top: 28px;
  padding-bottom: 28px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-transform: capitalize;
  transition: all linear 0.3s;
}

.offer-category-item .box a i {
  font-size: 30px;
  color: #2aa4c9;
  margin-right: 20px;
  transition: all linear 0.3s;
}

.offer-category-item .box:hover a {
  background: #0ca4c7;
  border-color: #0ca4c7;
}

.offer-category-item .box:hover a i {
  color: #fff;
}

/*===========================
    16.FUN FACTS css 
===========================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-fun-facts-area {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .infetech-fun-facts-area {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-fun-facts-area.infetech-fun-facts-about-area {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .infetech-fun-facts-area.infetech-fun-facts-about-area {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-fun-facts-area.infetech-fun-facts-service-area {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-fun-facts-area.infetech-fun-facts-service-area {
    padding-top: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fun-facts-item {
    margin-bottom: 40px;
  }
}

.fun-facts-item .title {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .fun-facts-item .title {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 30px;
  }
}

.fun-facts-item .title span {
  font-size: 60px;
}

.fun-facts-item .title sup {
  font-size: 60px;
}

@media (max-width: 767px) {
  .fun-facts-item .content-box {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

.fun-facts-item .content-box span {
  border: 1px solid #e4e0ee;
  font-weight: 800;
  text-transform: uppercase;
  color: #0ca4c7;
  padding: 8px 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .fun-facts-item .content-box span {
    font-size: 14px;
  }
}

/*===========================
    17.COMPANY css 
===========================*/
.infetech-company-area {
  padding: 120px 0px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-company-area {
    padding: 90px 0px;
  }
}

@media (max-width: 767px) {
  .infetech-company-area {
    padding: 90px 0px;
  }
}

/* .infetech-company-area::before {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  width: 730px;
  background-image: url(../images/company-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: -1;
} */

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-company-area::before {
    width: 500px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .infetech-company-area::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-company-area::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-company-area::before {
    display: none;
  }
}

.infetech-company-area .section-title p {
  font-weight: 500;
  line-height: 30px;
  color: #3D3D3D;
  margin-top: 30px;
  font-size: 21px;
}

.infetech-company-area .company-thumb img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-company-area .col-lg-6 {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .infetech-company-area .col-lg-6 {
    padding-left: 15px;
  }
}

.company-service-item {
  display: flex;
  align-items: center;
}

.company-service-item .icon {
  min-height: 13px;
  min-width: 25px;
  border-radius: 50%;
  text-align: center;
  line-height: 31px;
  color: #fff;
  background: #2aa4c9;
  margin-right: 30px;
  font-size: 13px;
}

.company-service-item .content .title {
  font-size: 18px;
  font-weight: 700;
}

.company-service-item .content p {
  font-size: 18px;
  line-height: 30px;
  color: #3D3D3D;
  font-weight: 500;
  padding-top: 9px;
}

.infetech-company-about-area {
  /* padding-top: 120px; */
  padding-bottom: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-company-about-area {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .infetech-company-about-area {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

.infetech-company-about-area .company-about-thumb {
  position: relative;
  z-index: 20;
}

.infetech-company-about-area .company-about-thumb .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

@media (max-width: 767px) {
  .infetech-company-about-area .company-about-thumb .icon {
    display: none;
  }
}

/* .infetech-company-about-area .infetech-about-content {
  padding-left: 70px;
} */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-company-about-area .infetech-about-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .infetech-company-about-area .infetech-about-content {
    padding-left: 0;
  }
}

.infetech-company-about-area .infetech-about-content p {
  margin-bottom: 27px;
}

.infetech-company-about-area .infetech-about-content ul {
  display: block;
  justify-content: flex-start;
  gap: 80px;
  margin: 0;
}

@media (max-width: 767px) {
  .infetech-company-about-area .infetech-about-content ul {
    display: block;
  }
}

.infetech-company-about-area .infetech-about-content ul li {
  font-size: 18px;
  font-weight: 700;
}

.infetech-company-about-area .infetech-about-content ul li i {
  font-size: 20px;
}

.infetech-company-about-area .infetech-about-content a {
  margin-top: 35px;
}

/*===========================
    18.PROMO BANNER css 
===========================*/
.infetech-promo-banner-area {
  background-image: url(../images/new-tadeed-einvoice/home-page/trusted-zatca.webp);
  padding: 69px 0 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 60px 0px 0px;
}

@media (max-width: 767px) {
  .infetech-promo-banner-area {
    padding: 115px 0 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-promo-banner-area {
    padding: 115px 0 60px;
  }
}

.infetech-promo-banner-area.infetech-promo-banner-about {
  padding-top: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-promo-banner-area.infetech-promo-banner-about {
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .infetech-promo-banner-area.infetech-promo-banner-about {
    padding-top: 50px;
  }
}

.promo-banner-item .title {
  color: #fff;
  font-size: 60px;
  padding-bottom: 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .promo-banner-item .title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promo-banner-item .title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .promo-banner-item .title {
    font-size: 36px;
  }
}

.promo-banner-item a {
  background: #fff;
  color: #3D3D3D;
}

.promo-banner-item a:hover {
  color: #fff;
  background: #0ca4c7;
}

/*===========================
    19.TECHNOLOGY css 
===========================*/
.infetech-technology-area {
  position: relative;
  z-index: 10;
}

.infetech-technology-area::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: #f4f2f9;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-technology-area.infetech-technology-service-area {
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-technology-area.infetech-technology-service-area {
    padding-bottom: 70px;
  }
}

.infetech-technology-area.infetech-technology-service-area::before {
  bottom: auto;
  top: 0;
}

.technology-box {
  background-image: url(../images/technology-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 98px;
  padding-bottom: 95px;
}

@media (max-width: 767px) {
  .technology-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.technology-box .section-title {
  padding-left: 70px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .technology-box .section-title {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technology-box .section-title {
    padding-left: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .technology-box .section-title {
    padding-left: 0px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .technology-box .section-title {
    padding-left: 30px;
  }
}

.technology-box .section-title span {
  color: #fff;
}

.technology-box .section-title span::before {
  background: #fff;
}

.technology-box .section-title .title {
  color: #fff;
  font-size: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .technology-box .section-title .title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .technology-box .section-title .title {
    font-size: 30px;
  }
}

.technology-box .col-lg-4:last-child .technology-service::before {
  display: none;
}

.technology-box .technology-service {
  position: relative;
}

@media (max-width: 767px) {
  .technology-box .technology-service {
    text-align: center;
    margin-bottom: 20px;
  }
}

.technology-box .technology-service::before {
  position: absolute;
  content: '';
  right: 25px;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .technology-box .technology-service::before {
    right: -3px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technology-box .technology-service::before {
    right: 15px;
  }
}

@media (max-width: 767px) {
  .technology-box .technology-service::before {
    display: none;
  }
}

.technology-box .technology-service .icon {
  border: 2px solid #fff;
  height: 64px;
  width: 64px;
  text-align: center;
  line-height: 62px;
  border-radius: 50%;
  display: inline-block;
}

.technology-box .technology-service .content {
  margin-top: 27px;
}

.technology-box .technology-service .content .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.technology-box .technology-service .content p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technology-box .col-lg-8 {
    padding-left: 40px;
  }
}

@media (max-width: 767px) {
  .technology-box .col-lg-8 {
    padding-left: 0px;
  }
}

/*===========================
    19.CONTACT css 
===========================*/
@media (max-width: 767px) {
  .infetech-home-contact {
    padding-bottom: 70px;
  }
}

.home-contact-leftbar .contact-content-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 767px) {
  .home-contact-leftbar .contact-content-item {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .home-contact-leftbar .contact-content-item {
    display: flex;
  }
}

.home-contact-leftbar .contact-content-item .icon {
  min-height: 60px;
  min-width: 60px;
  text-align: center;
  line-height: 60px;
  background: #2aa4c9;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .home-contact-leftbar .contact-content-item .icon {
    display: inline-block;
    margin-bottom: 10px;
  }
}

.home-contact-leftbar .contact-content-item .content {
  padding-right: 40px;
}

@media (max-width: 767px) {
  .home-contact-leftbar .contact-content-item .content {
    padding-right: 0;
  }
}

.home-contact-leftbar .contact-content-item .content .title {
  font-size: 20px;
  margin-bottom: 10px;
}

.home-contact-leftbar .contact-content-item .content p {
  font-weight: 500;
  color: #3D3D3D;
  line-height: 18pt;
}

.home-contact-box form {
  background: #f4f2f9;
  padding: 60px 80px 50px;
  background-image: url(../images/contact-shape.png);
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .home-contact-box form {
    padding: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .home-contact-box form {
    padding: 30px;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .home-contact-box form {
    padding: 30px;
    margin-top: 30px;
  }
}

.home-contact-box form .section-title .title {
  font-size: 35px;
}

.home-contact-box form .input-box {
  margin-bottom: 10px;
}

.home-contact-box form .input-box input {
  width: 100%;
  height: 60px;
  padding-left: 40px;
  background: #fff;
  border: 0;
  font-size: 14px;
  font-weight: 400;
  color: #3D3D3D;
}

.home-contact-box form .input-box input::placeholder {
  color: #3D3D3D;
  opacity: 1;
}

.home-contact-box form .input-box textarea {
  width: 100%;
  height: 180px;
  padding-left: 40px;
  padding-top: 15px;
  background: #fff;
  border: 0;
  resize: none;
  font-size: 14px;
  color: #3D3D3D;
}

.home-contact-box form .input-box textarea::placeholder {
  opacity: 1;
  color: #3D3D3D;
}

.home-contact-box form .input-box button {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 1px solid #0ca4c7;
}

.infetech-subscribe-area {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #0ca4c7;
  background-image: url(../images/subscribe-shape.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .infetech-subscribe-area {
    background-size: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-subscribe-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .infetech-subscribe-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.infetech-subscribe-area .subscribe-text {
  padding-right: 50px;
}

.infetech-subscribe-area .subscribe-text .title {
  color: #fff;
  font-size: 45px;
}

@media (max-width: 767px) {
  .infetech-subscribe-area .subscribe-text .title {
    font-size: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .infetech-subscribe-area .subscribe-text .title {
    font-size: 30px;
  }
}

.infetech-subscribe-area .subscribe-form {
  padding-left: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-subscribe-area .subscribe-form {
    padding-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .infetech-subscribe-area .subscribe-form {
    padding-left: 0;
    margin-top: 20px;
  }
}

.infetech-subscribe-area .subscribe-form .input-box {
  position: relative;
}

.infetech-subscribe-area .subscribe-form .input-box .icon {
  position: absolute;
  right: 0;
  top: 5px;
}

.infetech-subscribe-area .subscribe-form .input-box .icon button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
}

.infetech-subscribe-area .subscribe-form .input-box input[type="email"] {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid #6f42f0;
  font-weight: 500;
  color: #fff;
}

.infetech-subscribe-area .subscribe-form .input-box input[type="email"]::placeholder {
  opacity: 1;
  color: #fff;
}

.checkbox_common {
  margin-top: 25px;
}

.checkbox_common input[type="checkbox"] {
  display: none;
}

.checkbox_common input[type="checkbox"]+label span {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: -1px 15px 0 0;
  vertical-align: middle;
  cursor: pointer;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  position: relative;
}

.checkbox_common input[type="checkbox"]+label span:before {
  color: #0ca4c7;
  content: "\f00c";
  font-family: 'Font Awesome 5 Pro';
  font-size: 9px;
  position: absolute;
  text-align: center;
  left: 1px;
  top: -1px;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.checkbox_common input[type="checkbox"]:checked+label span {
  background: #fff;
  border-color: #fff;
}

.checkbox_common input[type="checkbox"]:checked+label span:before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.checkbox_common input[type="checkbox"]+label span,
.checkbox_common input[type="checkbox"]:checked+label span {
  -webkit-transition: background-color 0.2s linear;
  -o-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

/*---------------checkbox style-2---------------*/
.checkbox_style2 input[type="checkbox"]+label span {
  border-radius: 3px;
}

.checkbox_common label {
  color: #fff;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-contact-page-area {
    padding: 40px 0 70px;
  }
}

@media (max-width: 767px) {
  .infetech-contact-page-area {
    padding: 40px 0 70px;
  }
}

.infetech-contact-page-area .conatct-info .item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.infetech-contact-page-area .conatct-info .item .icon {
  height: 90px;
  width: 90px;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, #0ca4c7 0%, #5fc2ac 100%);
  background-image: -webkit-linear-gradient(0deg, #0ca4c7 0%, #5fc2ac 100%);
  background-image: -ms-linear-gradient(0deg, #0ca4c7 0%, #5fc2ac 100%);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  min-width: 90px;
}

.infetech-contact-page-area .conatct-info .item .icon::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  height: 75px;
  width: 75px;
  z-index: -1;
}

.infetech-contact-page-area .conatct-info .item .content span {
    font-size: 21px;
    font-weight: 800;
  color: #3D3D3D;
  margin-bottom: 2px;
}

.infetech-contact-page-area .conatct-info .item .content .title {
  font-size: 21px;
  font-weight: 600;
  color: #3D3D3D;
  line-height: 30px;
}

.infetech-contact-page-area .conatct-info .item .content .title a {
  color: #3D3D3D;
}

.contact-form-page-box {
  padding: 60px 80px 35px;
  background: #f4f2f9;
  background-image: url(../images/contact-shape-2.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}

@media (max-width: 767px) {
  .contact-form-page-box {
    padding: 30px;
  }
}

.contact-form-page-box .input-box {
  margin-bottom: 25px;
}

.contact-form-page-box .input-box input {
  width: 100%;
  border: 0;
  background: #fff;
  height: 60px;
  padding-left: 40px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  color: #3D3D3D;
}

.contact-form-page-box .input-box input::placeholder {
  opacity: 1;
}

.contact-form-page-box .input-box textarea {
  width: 100%;
  border: 0;
  background: #fff;
  height: 180px;
  padding-left: 40px;
  padding-top: 25px;
  color: #000;
  font-size: 21px;
  font-weight: 400;
  resize: none;
  color: #3D3D3D;
}

.contact-form-page-box .input-box textarea::placeholder {
  opacity: 1;
}

.contact-form-page-box .input-box button {
  width: 100%;
  padding: 0;
  margin-top: 20px;
}

/*===========================
    20.BENEFITS css 
===========================*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-benefits-area.infetech-benefits-services-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .infetech-benefits-area.infetech-benefits-services-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.benefits-thumb {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .benefits-thumb {
    display: none;
  }
}

@media (max-width: 767px) {
  .benefits-thumb {
    display: none;
  }
}

.benefits-thumb .main-thumb {
  margin-left: -55px;
  position: relative;
  z-index: 10;
}

.benefits-thumb .shape-1 {
  position: absolute;
  left: -65px;
  top: 30px;
  z-index: 5;
}

.benefits-thumb .shape-2 {
  position: absolute;
  top: 0;
  left: -80px;
  z-index: 6;
}

.benefits-thumb .shape-3 {
  position: absolute;
  top: 190px;
  left: -170px;
  z-index: 6;
}

.benefits-thumb .shape-4 {
  position: absolute;
  right: 90px;
  bottom: 50px;
  z-index: 3;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .benefits-content {
    padding-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .benefits-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .benefits-content {
    padding-left: 0;
  }
}

.benefits-content .content-box {
  padding-top: 27px;
}

.benefits-content .content-box span {
  font-size: 20px;
  font-weight: 700;
  color: #0ca4c7;
}

.benefits-content .content-box p {
  color: #3D3D3D;
  font-weight: 500;
  line-height: 30px;
  margin-top: 23px;
}

.benefits-content .benefits-service-box {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefits-content .benefits-service-box .icon {
  padding-left: 20px;
  padding-top: 20px;
  position: relative;
  z-index: 10;
}

@media (max-width: 767px) {
  .benefits-content .benefits-service-box .icon {
    flex-basis: 140px;
  }
}

.benefits-content .benefits-service-box .icon::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #f8f2ff;
  z-index: -1;
}

.benefits-content .benefits-service-box .content span {
  color: #3D3D3D;
  font-size: 20px;
  font-weight: 800;
  line-height: 30px;
  padding-top: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .benefits-content .benefits-service-box .content span {
    font-size: 16px;
    line-height: 20px;
  }
}

.benefits-content>a {
  border: 1px solid #0ca4c7;
  margin-top: 48px;
}

/*===========================
    21.SERVING css 
===========================*/
.infetech-serving-area {
  background-image: url(../images/einvocing/industries.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 113px;
  padding-bottom: 180px;
}

.infetech-serving-area .section-title {
  margin-bottom: 55px;
}

.single-serving-item {
  background: #fff;
  padding: 40px 0;
  margin: 0px 20px;
  position: relative;
  z-index: 10;
}

.single-serving-item::before {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #0BA4C7;
  z-index: -4;
  transition: all linear 0.3s;
  opacity: 0;
}

.single-serving-item .icon svg {
  transition: all linear 0.3s;
}

.single-serving-item .title {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
  transition: all linear 0.3s;
}

.single-serving-item:hover::before {
  opacity: 1;
  width: 100%;
}

.single-serving-item:hover .icon svg {
  fill: #fff;
}

.single-serving-item:hover .title {
  color: #fff;
}

.serving-angle-shape-1 {
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  position: absolute;
  top: 0;
  left: -30px;
  width: 0;
  height: 0;
  opacity: 0;
  border-top: 130px solid #0ba4c77d;
  border-right: 80px solid transparent;
  z-index: -2;
}

.serving-angle-shape-2 {
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  position: absolute;
  top: 0;
  left: -30px;
  width: 0;
  height: 0;
  opacity: 0;
  border-top: 250px solid #5fc2ac;
  border-right: 150px solid transparent;
  z-index: -3;
}

.single-serving-item {
  overflow: hidden;
  z-index: 10;
}

.single-serving-item:hover .serving-angle-shape-1,
.single-serving-item:hover .serving-angle-shape-2 {
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  opacity: 1;
  left: 0;
}

/*===========================
    21.SOLUTIONS css 
===========================*/
.infetech-solutions-area {
  background: #3D3D3D;
  padding-top: 112px;
  padding-bottom: 116px;
  background-image: url(../images/solutions-shape.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.infetech-solutions-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-image: url(../images/solutions-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .infetech-solutions-area::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .infetech-solutions-area::before {
    display: none;
  }
}

.solutions-content .section-title span {
  color: #a2bbc1;
}

.solutions-content .section-title span::before {
  background: #a2bbc1;
}

.solutions-content .section-title .title {
  color: #fff;
}

.solutions-content .solutions-box-content {
  margin-top: 30px;
}

.solutions-content .solutions-box-content span {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #0ca4c7;
  margin-bottom: 25px;
}

.solutions-content .solutions-box-content p {
  color: #a2bbc1;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 29px;
}

.solutions-content .solutions-service {
  display: flex;
  gap: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .solutions-content .solutions-service {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .solutions-content .solutions-service {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .solutions-content .solutions-service {
    margin-bottom: 20px;
  }
}

.solutions-content .solutions-service .icon {
  padding-left: 20px;
  padding-top: 10px;
  position: relative;
  z-index: 10;
}

.solutions-content .solutions-service .icon::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 52px;
  width: 52px;
  background: #2d223f;
  border-radius: 50%;
  z-index: -1;
}

.solutions-content .solutions-service .content span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-top: 14px;
}

/*===========================
    22.PRICING css 
===========================*/
.infetech-pricing-area {
  padding-top: 112px;
  padding-bottom: 113px;
  position: relative;
  z-index: 10;
}

.infetech-pricing-area::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 675px;
  background: #f4f2f9;
  z-index: -1;
}

.single-pricing-box {
  padding: 50px 38px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background: #fff;
  /* background-image: url(../images/pricing-item-bg.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  z-index: 10;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-pricing-box {
    padding: 50px 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-pricing-box {
    padding: 50px 25px;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .single-pricing-box {
    padding: 50px 25px;
    text-align: center;
    margin-bottom: 30px;
  }
}

.single-pricing-box::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: border-color linear 0.3s;
  box-sizing: border-box;
  pointer-events: none;
}

.accordion-button {
  position: relative;
  padding-left: 25px;
}

.accordion-button::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 4px;
  height: 19px;
  background: linear-gradient(to right, #0BA4C7 0%, #61C0AB 100%);
  transform: translateY(-50%);
}

/* 2nd / featured plan — image always visible */
.single-pricing-box.active::before {
  background-image: url(../images/einvocing/pricing.png);
  border-color: #0BA4C7;
}

/* All plans — border only on hover (no image layer) */
.single-pricing-box:hover::before {
  border-color: #0BA4C7;
  background-image: none;
}

.single-pricing-box.active:hover::before {
  background-image: url(../images/einvocing/pricing.png);
  border-color: #0BA4C7;
}

/* .single-pricing-box .price-heading {
  padding-bottom: 25px;
} */

.single-pricing-box .price-heading .title {
  font-size: 36px;
  font-weight: 800;
  color: #3D3D3D;
  line-height: 40px;
  padding-bottom: 10px;
  transition: all linear 0.3s;
}

.single-pricing-box .price-heading p {
  font-size: 21px;
  font-weight: 600;
  color: #3D3D3D;
  line-height: 24px;
  transition: all linear 0.3s;
  margin-bottom: 20px;
}

.single-pricing-box .price-box {
  display: flex;
  gap: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-pricing-box .price-box {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .single-pricing-box .price-box {
    justify-content: center;
  }
}

.single-pricing-box .price-box img {
  height: 95px;
  width: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-pricing-box .price-box img {
    height: 50px;
    width: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-pricing-box .price-box img {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 767px) {
  .single-pricing-box .price-box img {
    height: 50px;
    width: 50px;
  }
}

.single-pricing-box .price-box>span {
  font-size: 30px;
  font-weight: 800;
  color: #3D3D3D;
  /* padding-top: 25px; */
  transition: all linear 0.3s;
}

@media (max-width: 767px) {
  .single-pricing-box .price-box>span {
    font-size: 45px;
  }
}

.single-pricing-box .price-box>span sup {
  font-size: 30px;
}

.single-pricing-box .price-box>span span {
  font-size: 18px;
  color: #3D3D3D;
  font-weight: 500;
  transition: all linear 0.3s;
}

/* .single-pricing-box .price-featured {
  padding-top: 12px;
} */

.single-pricing-box .price-featured span {
  font-size: 18px;
  font-weight: 600;
  color: #0BA4C7;
  padding-bottom: 8px;
  transition: all linear 0.3s;
}

.single-pricing-box .price-featured ul li {
  font-size: 21px;
  font-weight: 600;
  line-height: 36px;
  color: #3D3D3D;
  transition: all linear 0.3s;
}

.single-pricing-box .price-featured ul li img {
  padding-right: 12px;
}

.single-pricing-box .price-featured>a {
  margin-top: 29px;
}

.single-pricing-box.active .price-heading .title {
  color: #fff;
}

.single-pricing-box.active .price-heading p {
  color: #fff;
}

.single-pricing-box.active .price-box span {
  color: #fff;
}

.single-pricing-box.active .price-featured span {
  color: #fff;
}

.single-pricing-box.active .price-featured ul li {
  color: #fff;
}

.single-pricing-box.active .price-featured a {
  border: 1px solid #fff;
  background: #fff;
  color: #0BA4C7;
}

.single-pricing-box.active .price-featured ul li .fa-check {
  background: rgba(255, 255, 255, .18);
  color: #fff !important;
  margin-right: 10px;
}

.single-pricing-box.active .price-featured ul li .fa-times {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .65) !important;
  margin-right: 10px;
}

.single-pricing-box .price-featured ul li i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  padding: 0 !important;
  margin-right: 10px;
}

.single-pricing-box .price-featured ul li .fa-check {

  color: #0BA4C7 !important;
  margin-right: 10px;
}

/* Cross Icon */
.single-pricing-box .price-featured ul li .fa-times {

  color: #EF4444 !important;
  margin-right: 10px;
}

/*# sourceMappingURL=style.css.map */
@media (min-width: 1600px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }
}

@media (min-width: 1800px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1720px;
  }
}

.phase2-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.phase2-banner img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.phase2-content {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  max-width: 48%;
  color: #fff;
  z-index: 6;
}

.phase2-content h2 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.15;
}

.phase2-content h5 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.phase2-content p {
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 35px;
}


@media (max-width:991px) {

  .phase2-content {
    left: 30px;
    max-width: 55%;
  }

  .phase2-content h2 {
    font-size: 34px;
  }

  .phase2-content h5 {
    font-size: 20px;
  }

  .phase2-content p {
    font-size: 16px;
    line-height: 28px;
  }

}

@media (max-width:767px) {

  .phase2-content {
    position: static;
    transform: none;
    max-width: 100%;
    padding: 30px;
    background: #06263D;
  }

  .phase2-content h2 {
    font-size: 30px;
  }

  .phase2-content h5 {
    font-size: 18px;
  }

  .phase2-content p {
    font-size: 15px;
    line-height: 26px;
  }

}

/* Mini Header */
.mini-header {
  background: linear-gradient(to right, #06263D 0%, #0BA4C7 100%);
  padding: 8px 0;
  overflow: hidden;
}

.mini-header .container {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
}

.mini-header-content {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 20px;
}

.mini-header-content span {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding-left: 100%;
  animation: miniHeaderScroll 16s linear infinite;
}

@keyframes miniHeaderScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .mini-header {
    padding: 6px 0;
  }

  .mini-header-content span {
    font-size: 13px;
    line-height: 18px;
    animation-duration: 14s;
  }
}

.offer-list li {
  font-size: 19px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-actions .main-btn-outline,
.breadcrumb-btns .main-btn-outline {
  margin-left: 0;
}

.main-btn + .main-btn-outline,
.main-btn + .main-btn-2,
.main-btn + .main-btn-border {
  margin-left: 16px;
}

.breadcrumb-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.infetech-banner-content .offer-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.infetech-banner-content .offer-list li {
  display: flex;
  align-items: flex-start;
  white-space: normal;
  line-height: 1.35;
}

.infetech-banner-content .offer-list li img {
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 991px) {
  .infetech-banner-content .offer-list ul,
  .infetech-banner-content .offer-list ul.d-flex {
    display: block !important;
  }

  .infetech-banner-content .offer-list li {
    display: flex !important;
    width: 100%;
    margin: 0 0 14px;
  }

  .infetech-banner-content .offer-list li img {
    margin-left: 0 !important;
    margin-right: 12px !important;
  }
}

@media (max-width: 767px) {
  .hero-actions,
  .breadcrumb-btns,
  .einv-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .main-btn,
  .hero-actions .main-btn-outline,
  .hero-actions .main-btn-2,
  .breadcrumb-btns .main-btn,
  .breadcrumb-btns .main-btn-outline,
  .breadcrumb-btns .main-btn-2,
  .einv-hero-actions .main-btn,
  .einv-hero-actions .main-btn-outline,
  .main-btn + .main-btn-outline,
  .main-btn + .main-btn-2,
  .main-btn + .main-btn-border {
    width: 100%;
    margin-left: 0 !important;
    margin-top: 0;
  }

  .main-btn + .main-btn-outline,
  .main-btn + .main-btn-2,
  .main-btn + .main-btn-border {
    margin-top: 16px;
  }

  .d-flex.gap-3:has(> .main-btn):has(> .main-btn-outline) {
    flex-direction: column;
    align-items: stretch;
  }
}

.main-btn-outline .blob-btn__inner {
  background: transparent;
}

.section-title .title .highlight {
  color: #3D3D3D !important;
  /* font-weight: 700 !important; */
  text-transform: capitalize !important;
  font-family: "Catamaran", sans-serif !important;
  font-size: 45px !important;

}

.bg-secondaryy {
  background-color: #00a3c50a;
  padding: 50px 0px;
}

.workflow-box {
  position: relative;
  text-align: start;
  padding: 0 10px;
  border-right: 1px solid #e9e9e9;
  height: 100%;
}

.workflow-box:last-child {
  border-right: none;
}

.workflow-icon {
  width: 52px;
  height: 52px;
  border: 2px solid #444;
  border-radius: 50%;
  margin: 0px 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 22px;
  color: #333;
}

.workflow-box h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.workflow-box h6 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.workflow-box p {
  font-size: 18px;
  color: #666;
  line-height: 26px;
  min-height: 80px;
  margin-bottom: 20px;
}

.workflow-box ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.workflow-box ul li {
  font-size: 17px;
  color: #555;
  margin-bottom: 12px;
}

.workflow-box ul li i {
  color: #777;
  width: 22px;
  margin-right: 8px;
  font-size: 19px;
}

@media(max-width:991px) {

  .workflow-box {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

}

.workflow-box .side {
  border-right: 1px solid gray;
}

.infetech-about-3-area .about-3-content .serv .about-sub-service {
  border: 1px solid #0ba4c6 !important;
}

.infetech-about-3-area .about-3-content .about-sub-services {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  border: 1px solid #0ba4c6;
  padding-bottom: 10px;
}




.management-tabs {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #eee;
}

.management-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 15px;
  background: #fff;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  transition: .3s;
}

.management-tabs .nav-link i {
  color: #08A5C7;
  font-size: 22px;
}

.management-tabs .nav-link.active {
  background: linear-gradient(90deg, #08A5C7, #61C0AB);
  color: #fff;
  border-color: transparent;
}

.management-tabs .nav-link.active i {
  color: #fff;
}

.tab-content img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.popular-tag {
  background: #0da5c770;
  border-radius: 10px;
  font-size: 14px;
  padding: 0px 10px;
}

.single-pricing-box.active h6 {
  color: white;
}


/*==================================================
  PRODUCT MODULES
==================================================*/

.product-modules-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 10px;
  background: #fff;
  z-index: 1;
}





/*==========================================
Heading
==========================================*/

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.section-tag span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00B5D6;
}

.section-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  color: #071A3D;
  margin-bottom: 20px;
}

.section-title span {
  color: #00B5D6;
}



/*==========================================
Grid
==========================================*/

.modules-wrapper {
  /* margin-top:80px; */
  position: relative;

  display: grid;
  grid-template-columns: 320px 1fr 320px;
  gap: 40px;
  align-items: center;
}

/*==========================================
Columns
==========================================*/

.modules-left,
.modules-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*==========================================
Module Card
==========================================*/

.module-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  background: #ffffff05;
  border: 1px solid #e5e7eb54;
  border-radius: 10px;
  transition: .35s ease;
  overflow: hidden;
  cursor: pointer;
}

.module-card:hover {
  transform: translateY(-6px);
  border-color: #00B5D6;
}

/*==========================================
Border Colors
==========================================*/

.blue {
  border-left: 4px solid #18A4F4;
}

.green {
  border-left: 4px solid #22C55E;
}

.orange {
  border-left: 4px solid #F59E0B;
}

.red {
  border-left: 4px solid #F43F5E;
}

.purple {
  border-left: 4px solid #8B5CF6;
}

.cyan {
  border-left: 4px solid #06B6D4;
}

/*==========================================
Icon
==========================================*/

.module-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid #E5E7EB;
  background: #0ca4c70f;
  transition: .35s;
  color: #0ca5c7;
  font-size: 30px;
}

.module-icon img {
  width: 38px;
}

/*==========================================
Content
==========================================*/

.module-content {
  flex: 1;
}

.module-content h4 {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  transition: .35s;
}

.module-content p {
  color: #fff;
}

/*==========================================
Arrow
==========================================*/

.module-arrow {
  font-size: 24px;
  color: #00B5D6;
  transition: .35s;
}

.module-card:hover .module-arrow {
  transform: translateX(6px);
}

/*==========================================
Center
==========================================*/

.modules-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}

/*==========================================
Core Circle
==========================================*/

.core-circle {
  position: relative;

  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #00B5D6;
  background: #fff;
  margin-bottom: 40px;
  animation: floatCore 5s ease-in-out infinite;
}

.core-circle::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 181, 214, .20);
}

.core-circle::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 181, 214, .30);
}

.core-logo img {
  width: 175px;
}

.core-logoo img {
  width: 375px;
  margin-bottom: 12px;
}

.core-circle h3 {
  font-size: 38px;
  font-weight: 800;
  color: #071A3D;
  margin-bottom: 5px;
}

.core-circle span {
  color: #00B5D6;
  font-weight: 700;
  font-size: 20px;
}

.core-circle p {
  margin-top: 10px;
  color: #667085;
  font-size: 15px;
}

/*==========================================
Dashboard
==========================================*/

.dashboard-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #E5E7EB;
  background: #fff;
  transition: .35s;
}

.dashboard-wrapper:hover {
  border-color: #00B5D6;
}

.dashboard-wrapper img {
  width: 100%;
  display: block;
  transition: .45s;
}

.dashboard-wrapper:hover img {
  transform: scale(1.02);
}

/*==================================================
  HOVER EFFECTS
==================================================*/

.module-card {
  --border-angle: 0deg;
}

.module-card:hover .module-icon {
  border-color: #00B5D6;
  transform: rotate(-5deg) scale(1.06);
}

.module-card:hover .module-content h4 {
  color: #00B5D6;
}

/*==================================================
ACTIVE CARD
==================================================*/

.module-card.active {
  background: #F8FEFF;
  border-color: #00B5D6;
}

.module-card.active .module-icon {
  background: #00B5D6;
  border-color: #00B5D6;
}

.module-card.active .module-icon img {
  filter: brightness(0) invert(1);
}

/*==================================================
FLOATING ANIMATION
==================================================*/

@keyframes floatCore {

  0% {
    transform: translateY(0px);
  }

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

  100% {
    transform: translateY(0px);
  }

}

/*==================================================
ROTATING RING
==================================================*/

.core-circle::after {
  animation: ringRotate 25s linear infinite;
}

@keyframes ringRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

/*==================================================
CONNECTOR LINES
==================================================*/

.modules-wrapper::before {
  content: "";
  position: absolute;
  left: 310px;
  right: 310px;
  top: 240px;
  border-top: 2px dashed #D6EDF4;
  z-index: -1;
}

.modules-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 90px;
  bottom: 90px;
  transform: translateX(-50%);
  border-left: 2px dashed #D6EDF4;
  z-index: -1;
}

/*==================================================
DOT SHAPES
==================================================*/

.shape {
  position: absolute;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(#00B5D6 1px, transparent 1px);
  background-size: 15px 15px;
  opacity: .08;
  z-index: -1;
}

.dots-one {
  top: 60px;
  left: -40px;
}

.dots-two {
  right: -40px;
  bottom: 60px;
}

/*==================================================
MODULE BADGE
==================================================*/

.module-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F0FCFF;
  color: #00B5D6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-right: 10px;
}

/*==================================================
CARD ENTRANCE ANIMATION
==================================================*/

@keyframes fadeUp {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.modules-left .module-card,
.modules-right .module-card {
  animation: fadeUp .8s ease forwards;
}

.modules-left .module-card:nth-child(1),
.modules-right .module-card:nth-child(1) {
  animation-delay: .1s;
}

.modules-left .module-card:nth-child(2),
.modules-right .module-card:nth-child(2) {
  animation-delay: .2s;
}

.modules-left .module-card:nth-child(3),
.modules-right .module-card:nth-child(3) {
  animation-delay: .3s;
}

.modules-left .module-card:nth-child(4),
.modules-right .module-card:nth-child(4) {
  animation-delay: .4s;
}

.modules-left .module-card:nth-child(5),
.modules-right .module-card:nth-child(5) {
  animation-delay: .5s;
}

.modules-left .module-card:nth-child(6),
.modules-right .module-card:nth-child(6) {
  animation-delay: .6s;
}

/*==================================================
DIM OTHER CARDS
==================================================*/

.modules-left:hover .module-card:not(:hover),
.modules-right:hover .module-card:not(:hover) {
  opacity: .55;
  transform: scale(.98);
}

/*==================================================
FINAL SPACING
==================================================*/

.module-card {
  min-height: 110px;
}

.module-content p {
  margin-top: 6px;
}

.dashboard-wrapper {
  margin-top: 20px;
}

.modules-center {
  padding: 0 30px;
}

/*==================================================
TABLET
==================================================*/

@media (max-width:1199px) {

  .modules-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .modules-center {
    order: -1;
    padding: 0;
  }

  .modules-left,
  .modules-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .modules-wrapper::before,
  .modules-wrapper::after {
    display: none;
  }

  .section-title {
    font-size: 46px;
  }

  .section-desc {
    max-width: 100%;
  }

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:767px) {

  .product-modules-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .section-desc {
    font-size: 16px;
    line-height: 28px;
  }

  .modules-wrapper {
    margin-top: 50px;
    gap: 35px;
  }

  .modules-left,
  .modules-right {
    grid-template-columns: 1fr;
  }

  .module-card {
    padding: 15px;
    min-height: auto;
  }

  .module-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .module-icon img {
    width: 32px;
  }

  .module-content h4 {
    font-size: 18px;
  }

  .module-content p {
    font-size: 14px;
    line-height: 24px;
  }

  .core-circle {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
  }

  .core-circle::before {
    inset: -12px;
  }

  .core-circle::after {
    inset: -6px;
  }

  .core-circle h3 {
    font-size: 30px;
  }

  .core-circle span {
    font-size: 16px;
  }

  .dashboard-wrapper {
    border-radius: 18px;
  }

}

/*==================================================
LARGE DESKTOP
==================================================*/

@media (min-width:1400px) {

  .modules-wrapper {
    grid-template-columns: 350px 1fr 350px;
    gap: 60px;
  }

  .module-card {
    padding: 18px;
  }

  .module-content h4 {
    font-size: 24px;
  }

}

.single-pricing-box {
  position: relative;
  overflow: visible;
}



/* Popular Badge */
.popular-tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #0BA4C7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 8px 22px;
  border-radius: 50px;
  box-shadow: 0 12px 25px rgba(11, 164, 199, .25);
  white-space: nowrap;
  z-index: 99;
}

/*==========================
Pricing Toggle
==========================*/

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 60px;
  padding: 6px;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);

}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 700;
  color: #667085;
  transition: .3s;
  position: relative;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #0BA4C7, #61C0AB);
  color: #fff;
}

.discount-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  background: #DDF8F4;
  color: #22A06B;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
}

.toggle-btn.active .discount-badge {
  background: #fff;
  color: #22A06B;
}

.pricing-content {
  display: none;
}

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

.inlinee {
  color: #0BA4C7 !important;
}

.tadeed-footer-contact h4 {
  color: #0ba4c6 !important;
}

.footer-info #infoo ul {
  display: block !important;
}

.footer-info a {
  color: white;
  font-size: 21px;
}

.footer-info {
  background: #ffffff09;
  border: 1px solid #ffffff24;
  border-radius: 10px;
  padding: 24px;
  margin-top: 54px;
}

.tadeed-footer-link-col a {
  color: #fff;
  font-size: 21px;
  display: flex;
  align-items: center;
}

.tadeed-footer-title-line:before {
  content: "";
  background: #10d2d2;
  width: 34px;
  height: 2px;
  position: absolute;
  top: -1px;
  left: 0;
}

.tadeed-footer-title-line {
  border-top: 1px solid #ffffff24;
  position: relative;
}

.tadeed-footer-arrow i {
  color: #0ca4c7;
}

.infetech-footer-area h2 i {
  color: #0ca4c7;
  margin-right: 10px;
  font-size: 30px;
  margin-bottom: 14px;
}

.tadeed-footer-link-col {
  margin-bottom: 20px;
}

.tadeed-footer-newsletter {
  margin-top: 18px;
  padding: 24px 34px;
  box-shadow: 0 16px 45px #0003;
}

.tadeed-footer-mail-icon {
  color: #10d2d2;
  border: 1px solid #10d2d2;
  border-radius: 50%;
  flex: 0 0 68px;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  font-size: 29px;
  display: flex;
}

.tadeed-footer-muted,
.tadeed-footer-small {
  color: #ffffffc7;
  line-height: 1.75;
}

.tadeed-footer-small {
  font-size: 21px;
}

.tadeed-footer-newsletter {
  margin-top: 18px;
  padding: 24px 34px;
  box-shadow: 0 16px 45px #0003;
  background: #ffffff09;
  border: 1px solid #ffffff24;
  border-radius: 10px;
}

.tadeed-footer-muted,
.tadeed-footer-small a {
  color: #0ca4c7;
}

.tadeed-footer-trust {
  border-top: 1px solid #ffffff24;
  border-bottom: 1px solid #ffffff24;
  margin-top: 14px;
}

.tadeed-footer-trust-item {
  border-right: 1px solid #ffffff29;
  min-height: 92px;
  padding: 22px 34px;
}

.tadeed-footer-trust-item i {
  color: #fff;
  font-size: 34px;
}

.tadeed-footer-bottom {
  color: #ffffffbf;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  display: flex;
}

.tadeed-footer-bottom a {
  color: #fff;
  font-size: 21px;
}


/*==============================
HOW IT WORKS (legacy — other pages)
==============================*/

.how-it-works-section {
  position: relative;
  padding: 20px 0;
  background: #ffffff;
  overflow: hidden;
}

.how-it-works-section::before {
  position: absolute;
  content: "";
  left: -120px;
  bottom: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(9, 165, 199, 0.05);
}

.how-it-works-section::after {
  position: absolute;
  content: "";
  right: -120px;
  top: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(97, 192, 171, 0.05);
}

.how-it-works-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #08a4c8;
  background: #eefafd;
  text-transform: uppercase;
}

.how-it-works-section .section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #132238;
  margin-top: 20px;
  margin-bottom: 18px;
}

.work-step {
  position: relative;
  background: #fff;
  border-radius: 25px;
  padding: 45px 30px;
  text-align: center;
  transition: 0.4s;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 40px;
}

.work-step:hover {
  transform: translateY(-10px);
}

.work-step::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #08a4c8, #61c0ab);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

.work-step:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-row .col-lg-3 {
  position: relative;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  color: #08a4c8;
  font-size: 22px;
  transition: 0.3s;
}

.step-arrow i {
  color: #0ba4c7;
  font-size: 22px;
}

.work-step:hover+.step-arrow {
  background: linear-gradient(135deg, #08a4c8, #61c0ab);
  border-color: transparent;
}

.work-step:hover+.step-arrow i {
  color: #fff;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #08a4c8, #61c0ab);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 35px;
  border-radius: 18%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1fafc;
  color: #0ca5c7;
  font-size: 31px;
  position: relative;
  border: 1px solid #eee;
}

.work-step:hover .step-icon {
  transform: rotate(-8deg) scale(1.08);
  border-color: #0ba4c7;
  background: #0ca4c70f;
}

.work-step h4 {
  font-size: 24px;
  font-weight: 700;
  color: #132238;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .step-arrow {
    display: none;
  }

  .how-it-works-section {
    padding: 80px 0;
  }

  .how-it-works-section .section-title h2 {
    font-size: 36px;
  }

  .work-step {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .how-it-works-section .section-title h2 {
    font-size: 30px;
  }

  .work-step {
    padding: 35px 25px;
  }

  .work-step h4 {
    font-size: 20px;
  }

  .work-step p {
    font-size: 15px;
  }
}

/*==============================
PROCESS SECTION — index.html
Get Started in 5 Simple Steps
==============================*/

.process-section {
  position: relative;
  padding: 100px 0 110px;
  background: #ffffff;
  overflow: hidden;
}

.process-section::after {
  content: "";
  position: absolute;
  right: 3%;
  top: 40px;
  width: 140px;
  height: 140px;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='none' stroke='%230BA4C7' stroke-width='3' d='M20 70 L50 20 L80 70'/%3E%3Cpath fill='none' stroke='%230BA4C7' stroke-width='3' d='M28 70 L50 35 L72 70'/%3E%3Cpath fill='none' stroke='%230BA4C7' stroke-width='3' d='M36 70 L50 48 L64 70'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.process-header {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 64px;
}

.process-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0ba4c7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.process-label::before {
  content: "";
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: #0ba4c7;
}

.process-heading {
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  line-height: 1.25;
  margin: 0 0 14px;
}

.process-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #777777;
  margin: 0;
  max-width: 640px;
}

.process-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.process-track::before,
.process-track::after {
  content: "";
  position: absolute;
  top: 108px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 3px;
  z-index: 0;
  pointer-events: none;
}

.process-track::before {
  background: #d7eef4;
}

.process-track::after {
  background: linear-gradient(90deg, #2aa4c9 0%, #5fc2ac 50%, #2aa4c9 100%);
  transform-origin: left center;
  transform: scaleX(0);
  animation: processTrackFill 10s linear infinite;
  box-shadow: 0 0 10px rgba(42, 164, 201, 0.55);
}

.process-step {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  max-width: 310px;
  text-align: center;
  padding: 0 4px;
}

.process-step-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #3D3D3D;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.process-step-icon {
  width: 122px;
  height: 122px;
  margin: 0 auto 20px;
  border-radius: 12px;
  border: 2px solid #bababa;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 45px;
  transition: 0.3s ease;
}

.process-step:hover .process-step-icon {
  border-color: #0ba4c7;
  color: #0ba4c7;
  box-shadow: 0 8px 24px rgba(11, 164, 199, 0.12);
  transform: translateY(-3px);
}

.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 8px;
  line-height: 1.35;
}

.process-step-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #777777;
  margin: 0;
}

@media (max-width: 1199px) {
  .process-heading {
    font-size: 34px;
  }

  .process-step-icon {
    width: 74px;
    height: 74px;
    font-size: 24px;
  }

  .process-track::before,
  .process-track::after {
    top: 68px;
  }
}

@media (max-width: 991px) {
  .process-section {
    padding: 70px 0 80px;
  }

  .process-heading {
    font-size: 30px;
  }

  .process-header {
    margin-bottom: 48px;
  }

  .process-track {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 36px;
    column-gap: 16px;
  }

  .process-track::before,
  .process-track::after {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 16px);
    max-width: 220px;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 60px 0 70px;
  }

  .process-heading {
    font-size: 26px;
  }

  .process-desc {
    font-size: 15px;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-step {
    flex: 0 0 100%;
    max-width: 300px;
  }

  .process-step-icon {
    width: 80px;
    height: 80px;
  }

  .process-section::after {
    width: 90px;
    height: 90px;
    right: 4%;
    top: 24px;
  }
}

.section-title .titlee {
  font-size: 45px;
  color: #3D3D3D;
  margin-top: 8px;
  line-height: 66px;
}

.business-management {
  padding: 80px 0px;
}

.pricing-tittle {
  font-size: 21px;
}




















.sales-workflow {
  padding: 30px 0 40px;
}

.workflow {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  /* Same as icon height */
  margin-top: 0;
}

.workflow-arrow i {
  color: #0BA4C7;
  font-size: 22px;
}

.workflow-item {
  text-align: center;
}

.workflow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F4FAFC;
  border: 2px solid #D9F1F6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: .4s;
}

.workflow-icon i {
  font-size: 22px;
  color: #0BA4C7;
}

.workflow-item h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #0BA4C7;
  font-size: 20px;
}

.workflow-arrow i {
  color: #0BA4C7;
  font-size: 20px;
}

.workflow-item:hover .workflow-icon {
  background: linear-gradient(135deg, #0BA4C7, #61C0AB);
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(11, 164, 199, .25);
}

.workflow-item:hover .workflow-icon i {
  color: #fff;
}

.workflow-icon.success {
  background: linear-gradient(135deg, #0BA4C7, #61C0AB);
}

.workflow-icon.success i {
  color: #fff;
}

@media(max-width:991px) {

  .workflow {
    gap: 25px;
  }

  .workflow-arrow {
    display: none;
  }

  .workflow-item {
    width: 30%;
  }

}

@media(max-width:576px) {

  .workflow-item {
    width: 45%;
  }

  .workflow-icon {
    width: 65px;
    height: 65px;
  }

  .workflow-icon i {
    font-size: 24px;
  }

}




.invoice-tab-nav {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  justify-content: stretch;
  align-items: stretch;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.invoice-tab-btn {
  border: none;
  background: #fff;
  width: 100%;
  min-width: 0;
  padding: 18px 16px 28px;
  border-radius: 14px;
  cursor: pointer;
  transition: .35s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  border: 1px solid #eee;
}

.invoice-tab-btn i {
  color: #0BA4C7;
  font-size: 22px;
}

.invoice-tab-btn:hover {
  transform: translateY(-4px);
}

.invoice-tab-btn.active {
  background: linear-gradient(90deg, #0BA4C7, #61C0AB);
  color: #fff;
}

.invoice-tab-btn.active i {
  color: #fff;
}

.invoice-tab-content {
  margin-top: 60px;
}

.invoice-pane {
  display: none;
  animation: fadeIn .4s ease;
}

.invoice-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .invoice-tab-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .invoice-tab-btn {
    font-size: 16px;
    padding: 16px 10px 24px;
  }
}

@media (max-width: 991px) {
  .invoice-tab-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .invoice-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .invoice-tab-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .invoice-tab-btn {
    font-size: 14px;
    padding: 14px 8px 22px;
  }

  .invoice-tab-btn i {
    font-size: 20px;
  }
}

/* .faq-section {
  background: #f7fbfc;
} */

.section-tag {
  display: inline-block;
  color: #16a34a;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 46px;
  font-weight: 700;
  color: #132238;
}

.section-desc {
  color: #6c757d;
  max-width: 650px;
  margin: auto;
}

.support-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  height: 100%;
  text-align: center;
}

.support-icon {

  width: 247px;
  height: 202px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 60px;
  color: #fff;

  margin-bottom: 25px;

}

.support-card h3 {

  font-size: 30px;
  margin-bottom: 20px;

}



.support-card i {

  color: #16a34a;
  font-size: 24px;
  margin-bottom: 10px;

}

.accordion-item {

  border: none;
  border-radius: 15px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

.accordion-button {

  padding: 24px;
  font-size: 24px;
  font-weight: 700;
  background: #fff;

}

.accordion-button:not(.collapsed) {

  background: #effcff;
  color: #0ba4c7;
  box-shadow: none;

}

.accordion-button:focus {

  box-shadow: none;

}

.accordion-body {

  padding: 25px;
  color: #666;
  line-height: 30px;
  font-size: 21px;
  font-weight: 500;
}

.faq-bottom {

  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);

}

.faq-bottom i {

  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eafaf2;

  color: #16a34a;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 15px;

  font-size: 28px;

}

.faq-bottom h6 {

  font-weight: 600;

}

@media(max-width:991px) {

  .section-title {

    font-size: 34px;

  }

  .support-card {

    margin-bottom: 30px;

  }

}

@media(max-width:576px) {

  .section-title {

    font-size: 28px;

  }

  .accordion-button {

    font-size: 16px;

    padding: 18px;

  }

  .support-icon {

    width: 90px;
    height: 90px;
    font-size: 45px;

  }

}

.support-section {
  background: #fff;
  position: relative;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  color: #4cc7c0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}

.section-tag:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 4px;
  height: 20px;
  border-radius: 10px;
  background: #24bfd1;
}

.support-section h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #0f172a;
}



.support-wrapper {
  position: relative;
}

.support-line {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 54px;
  height: 2px;
  background: #d9d9d9;
  z-index: 0;
}

.support-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.support-icon {
  width: 290px;
  height: 190px;
  margin: auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

/* a:hover {
    color: #0ba4c6 !important;
} */

.support-icon i {
  font-size: 50px;
  color: #9ca3af;
  transition: .35s;
}

.support-item:hover .support-icon {
  border-color: #0BA4C7;
  transform: translateY(-8px);
}

.support-item:hover .support-icon i {
  color: #0BA4C7;
}

.support-item h4 {
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
}

.support-item p {
  width: 82%;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 54px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #0BA4C7, #63C2AC);
  transition: .35s;

}

.support-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(11, 164, 199, .30);
}

/*------------------------------
Mega Menu
------------------------------*/
.header-main-nav-box ul li.mega-menu {
  position: static;
}

.header-main-nav-box ul li.mega-menu>.mega-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  padding: 45px 0 30px;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
  z-index: 999;
}

.header-main-nav-box ul li.mega-menu:hover>.mega-dropdown {
  opacity: 1;
  visibility: visible;
}

/* LEFT LINKS */
.mega-link {
  border-bottom: 1px solid #dfeff4;
  padding: 25px 0;
}

.mega-link a {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  text-decoration: none;
}

.mega-icon {
  width: 65px;
  height: 65px;
  background: #f3fbfd;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.mega-icon i {
  font-size: 32px;
  color: #0BA4C7;
}

.mega-content h5 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.mega-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* RIGHT BANNER */
.mega-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.mega-banner img {
  width: 100%;
  display: block;
}

.banner-overlay {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #fff;
}

.banner-overlay h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 25px;
}

.banner-overlay span {
  color: #61C0AB;
  font-size: 22px;
  display: block;
}

.banner-overlay h4 {
  color: #fff;
  font-size: 32px;
}

/* CTA */
.mega-bottom {
  margin-top: 35px;
  background: #EAF8FC;
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mega-bottom p {
  font-size: 22px;
  color: #0BA4C7;
  font-weight: 600;
  margin: 0;
}

.mega-bottom .main-btn {
  padding: 0px 38px;
}

.company-bg-section .container {
  background: url("../images/einvocing/bg-ac.png") center center/cover no-repeat;
}

.company-bg-sectionn .container {
  background: url("../images/einvocing/bg-ac1.png") center center/cover no-repeat;
}
.product-breadcrumbbook{
   background: url(../images/new-tadeed-einvoice/resource/blog/blog-bg.webp) center center/cover no-repeat;
}
.product-breadcrumbco {
  background: url("../images/new-tadeed-einvoice/resource/blog/blog-bg.webp") center center/cover no-repeat;
}
.product-breadcrumb {
  background: url("../images/new-tadeed-einvoice/features/accounting/accounting.webp") center center/cover no-repeat;
}

.product-breadcrumbb {
  background: url("../images/new-tadeed-einvoice/module/items/items-bg.webp") center center/cover no-repeat;
}

#industries {
  background: url("../images/new-tadeed-einvoice/industries/home/industries-bg.webp") center center/cover no-repeat;
}
#einvoicing-contracting{
    background: url("../images/new-tadeed-einvoice/industries/contracting/contracting-bg.webp") center center/cover no-repeat;
}
#industcont{
    background: url("../images/new-tadeed-einvoice/industries/contracting/solution-contracting.webp") center center/cover no-repeat;
    padding-bottom: 20px;
}
.infetech-promo-banner-areacont{
   background: url("../images/new-tadeed-einvoice/industries/contracting/simplify-contracting.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-promo-banner-areacontra{
   background: url("../images/new-tadeed-einvoice/industries/contracting/simplify-contracting.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#einvoicing-retail{
   background: url("../images/new-tadeed-einvoice/industries/retail/retail-bg.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#industret{
   background: url("../images/new-tadeed-einvoice/industries/retail/retail-solution.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-promo-banner-areareta{
  background: url("../images/new-tadeed-einvoice/industries/retail/simplfy-retail-bg.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-promo-banner-areacre{
    background: url("../images/new-tadeed-einvoice/industries/retail/simplfy-retail-bg.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#einvoicing-professional-services{
   background: url("../images/new-tadeed-einvoice/industries/professional-service/professional-bg.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#industprof{
     background: url("../images/new-tadeed-einvoice/industries/professional-service/solution-professional.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-promo-banner-areaprof{
  background: url("../images/new-tadeed-einvoice/industries/professional-service/zatca-professional.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-promo-banner-areacpro{
    background: url("../images/new-tadeed-einvoice/industries/professional-service/simplify-professional.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.infetech-clients-3-areaeinv{
      background: url("../images/new-tadeed-einvoice/about-bg.webp") center center/cover no-repeat;
      padding: 38px 0 38px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/*------------------------------
Book Demo Page
------------------------------*/
.book-demo-layout-area {
  background: #f6fbfc;
}

.book-demo-panel {
  background: #3D3D3D;
  padding: 52px 44px;
  color: #dbe8ef;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.book-demo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(11, 164, 199, .22), rgba(97, 192, 171, .12)); */
  pointer-events: none;
}

.book-demo-panel>* {
  position: relative;
  z-index: 1;
}

.book-demo-panel .demo-eyebrow {
  color: #61C0AB;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .8px;
  display: inline-block;
  margin-bottom: 14px;
}

.book-demo-panel .title {
  color: #fff;
  font-size: 42px;
  line-height: 1.16;
  margin-bottom: 18px;
}

.book-demo-panel p {
  color: #dbe8ef;
  line-height: 1.8;
  margin-bottom: 34px;
}

.demo-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.demo-benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.demo-benefit-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  border-radius: 8px;
  background: #fff;
  color: #0BA4C7;
  font-size: 20px;
}

.demo-benefit-item h5 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 3px;
}

.demo-benefit-item span,
.demo-contact-note span {
  color: #dbe8ef;
  line-height: 1.5;
}

.demo-contact-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.demo-contact-note i,
.demo-contact-note a {
  color: #61C0AB;
}

.book-demo-form-box {
  background: #fff;
  box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  border-radius: 8px;
}

.book-demo-form-box .input-box label {
  display: block;
  margin-bottom: 8px;
  color: #3D3D3D;
  font-size: 16px;
  font-weight: 700;
}

.book-demo-form-box .input-box input,
.book-demo-form-box .input-box select,
.book-demo-form-box .input-box textarea {
  border: 1px solid #e2edf1;
  border-radius: 6px;
  background: #f8fbfc;
  font-size: 17px;
  padding-left: 22px;
}

.book-demo-form-box .input-box select {
  width: 100%;
  height: 60px;
  color: #3D3D3D;
  padding-right: 18px;
}

.book-demo-form-box .input-box textarea {
  padding-top: 18px;
}

.book-demo-form-box .input-box input:focus,
.book-demo-form-box .input-box select:focus,
.book-demo-form-box .input-box textarea:focus {
  outline: 0;
  border-color: #0BA4C7;
  background: #fff;
}

@media (max-width: 991px) {
  .book-demo-panel {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .book-demo-layout-area {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .book-demo-panel {
    padding: 34px 24px;
  }

  .book-demo-panel .title {
    font-size: 32px;
  }
}

.home-contact-enhanced {
  background: linear-gradient(180deg, #f7fbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.home-contact-enhanced::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(11, 164, 199, .10);
}

.home-contact-enhanced::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(97, 192, 171, .12);
}

.home-contact-enhanced .container {
  position: relative;
  z-index: 1;
}

.home-contact-visual {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border-radius: 8px;
  background: #0f172a;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .12);
}

.home-contact-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.home-contact-card {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.home-contact-card .item {
  min-height: 98px;
  padding: 18px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .12);
}

.home-contact-card i {
  color: #0BA4C7;
  font-size: 22px;
  margin-bottom: 8px;
}

.home-contact-card span {
  display: block;
  color: #3D3D3D;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.home-contact-copy {
  margin-bottom: 24px;
  color: #5f6673;
  font-size: 18px;
  line-height: 1.7;
}

.home-contact-form {
  padding: 42px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .10);
  border: 1px solid #eaf2f5;
}

.home-contact-form .input-box {
  position: relative;
  margin-bottom: 18px;
}

.home-contact-form .input-box i {
  position: absolute;
  left: 18px;
  top: 21px;
  color: #0BA4C7;
  font-size: 15px;
  z-index: 1;
}

.home-contact-form .input-box input,
.home-contact-form .input-box textarea {
  width: 100%;
  border: 1px solid #dcebef;
  background: #f8fbfc;
  border-radius: 6px;
  padding-left: 48px;
  color: #3D3D3D;
  font-size: 16px;
  transition: .25s;
}

.home-contact-form .input-box input {
  height: 58px;
}

.home-contact-form .input-box textarea {
  height: 150px;
  padding-top: 18px;
  resize: none;
}

.home-contact-form .input-box input:focus,
.home-contact-form .input-box textarea:focus {
  outline: 0;
  border-color: #0BA4C7;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 164, 199, .10);
}

.home-contact-form .main-btn {
  width: 100%;
  border: 0;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .home-contact-visual {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {

  .home-contact-visual,
  .home-contact-form {
    padding: 24px;
  }

  .home-contact-visual img {
    height: 320px;
  }

  .home-contact-card {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
}

.image-frame {
  position: relative;
  display: inline-block;
  padding: 18px;
}

.image-frame img {
  display: block;
  width: 100%;
  /* height: 512px; */
  object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* Moving Border */
.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
}

/* Bottom -> Right -> Top */
.image-frame::before {
  border-bottom: 4px solid #00A9D6;
  border-right: 4px solid #00A9D6;
  animation: borderMove1 3s linear infinite;
}

/* Top -> Left -> Bottom */
.image-frame::after {
  border-top: 4px solid #00A9D6;
  border-left: 4px solid #00A9D6;
  animation: borderMove2 3s linear infinite;
}

@keyframes borderMove1 {

  0% {
    clip-path: inset(100% 100% 0 0);
  }

  33% {
    clip-path: inset(100% 0 0 0);
  }

  66% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 100% 100%);
  }
}

@keyframes borderMove2 {

  0% {
    clip-path: inset(0 0 100% 100%);
  }

  33% {
    clip-path: inset(0 0 0 100%);
  }

  66% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(100% 100% 0 0);
  }
}

.feature-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0 5px;
  border-bottom: 1px solid #d7ebf4;
}

.feature-item i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #08a9d6;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 22px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* Tablet */
@media (max-width: 991.98px) {
  .feature-item span {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .feature-item {
    padding: 12px 0;
  }

  .feature-item span {
    font-size: 17px;
  }

  .feature-item i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ============================================
   INDEX LAYOUT SECTIONS (structure only)
   No font-size / font-weight overrides
   ============================================ */

.text-brand {
  color: #0ba4c7 !important;
}

.reviews-section {
  padding: 80px 0;
  overflow-x: hidden;
}

.reviews-section .row,
.reviews-section [class*="col-"],
.reviews-section .review-card,
.reviews-section .reviews-summary {
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1800px) {
  .reviews-section .container,
  .infetech-testimonial-area .container {
    max-width: 1720px;
  }
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d9eef3;
  border-radius: 12px;
  padding: 18px 22px;
  background: #f7fcfd;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.reviews-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.reviews-score-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-score-box {
  background: #e8f7fa;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 78px;
}

.reviews-score-box .title {
  color: #0ba4c7;
  line-height: 1.1;
  margin: 0;
}

.reviews-score-box span {
  color: #0ba4c7;
  display: block;
  padding-left: 0;
}

.reviews-score-box span::before {
  display: none;
}

.reviews-rating p {
  color: #4b5563;
  margin: 0;
}

.reviews-stars {
  gap: 4px;
  padding: 0;
  margin: 0 0 4px;
}

.reviews-stars i {
  color: #f5b301;
}

.reviews-divider {
  width: 1px;
  height: 42px;
  background: #cfe8ef;
  margin: 0 6px;
}

.reviews-google .title {
  margin: 0;
}

.review-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  background: #fff;
  box-shadow: none;
  height: 100%;
  overflow: hidden;
  min-width: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: #0ba4c7;

}

.review-card:hover .review-avatar {
  background: linear-gradient(135deg, #0ba4c7, #61c0ab);

}

.review-card:hover .review-badge {
  background: #0ba4c7;
  color: #fff;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #0ba4c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.review-badge {
  background: #e8f7fa;
  color: #0ba4c7;
  border-radius: 999px;
  padding: 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.35s ease, color 0.35s ease;
}

@media (max-width: 1199px) {
  .reviews-section .single-testimonial-user {
    flex-wrap: wrap;
    gap: 10px;
  }

  .reviews-section .review-badge {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .reviews-section .reviews-summary {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .reviews-section .reviews-score-row {
    flex-wrap: wrap;
  }

  .reviews-section .reviews-action .main-btn {
    width: 100%;
    justify-content: center;
  }

  .reviews-section .review-badge {
    margin-left: 0;
  }
}

.review-view-all {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 20px;
  background: #fff;
  color: #0ba4c7;
  min-height: 238px;
  text-decoration: none;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.review-view-all:hover {
  color: #fff;
  background: linear-gradient(145deg, #0ca5c7, #60c0ac);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(11, 164, 199, 0.2);
}

.review-view-all:hover h5 {
  color: #fefefe;
}

.review-view-all:hover p {
  color: #fefefe;
}

.review-view-all .far.fa-comment-dots {
  transform: scale(1.8);
  margin-bottom: 8px;
  transition: transform 0.35s ease;
}

.review-view-all:hover .far.fa-comment-dots {
  transform: scale(2);
}

.insights-section {
  padding: 80px 0;
  background: #fff;
}

.insight-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-10px);
  border-color: rgba(11, 164, 199, 0.25);
}

.insight-thumb {
  overflow: hidden;
}

.insight-thumb img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
  transition: transform 0.45s ease;
}

.insight-card:hover .insight-thumb img {
  transform: scale(1.08);
}

.insight-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.insight-meta span {
  color: #6b7280;
}

.insight-card .title {
  transition: color 0.3s ease;
}

.insight-card:hover .title {
  color: #0ba4c7;
}

.insight-body .main-btn {
  align-self: flex-start;
  margin-top: auto;
  transition: transform 0.3s ease;
}

.insight-card:hover .insight-body .main-btn {
  transform: translateX(4px);
}

/* .faq-section {
  background: #f7fbfc;
} */

.faq-accordion .accordion-item {
  border: 0;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  /* border-left: 4px solid #0ba4c7 !important; */
  background: #fff;
}

.faq-accordion .accordion-button {
  background: #fff;
  box-shadow: none;
  color: inherit;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: inherit;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-sidebar {
  background: #eef7fa;
  border-radius: 16px;
  padding: 28px 22px;
}

.faq-sidebar .title span {
  color: #0ba4c7;
  padding-left: 0;
}

.faq-sidebar .title span::before {
  display: none;
}

.faq-contact-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-contact-item i.fas.fa-phone,
.faq-contact-item i.fas.fa-envelope,
.faq-contact-item i.fas.fa-comments,
.faq-contact-item .fa-chevron-right {
  color: #0ba4c7;
  font-size: 18px;
}

.rfp-section {
  background: #fff;
}

.rfp-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #e0f7fa;
  color: #0ba4c7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rfp-contact-box {
  background: #eefafd;
  border: 1px solid #d7eef3;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.rfp-contact-box i {
  color: #0ba4c7;
  font-size: 33px;
}

.rfp-step-icon i {
  font-size: 24px;
}

.rfp-form {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
}

.rfp-form .input-box {
  margin-bottom: 16px;
}

.rfp-form .input-box input,
.rfp-form .input-box textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
}

.rfp-form .form-label {
  display: block;
  margin-bottom: 6px;
  color: #6b7280;
  font-size: 21px;
}

.work-smarter-cta {
  background: linear-gradient(90deg, #06263d 0%, #0ba4c7 100%);
  padding: 70px 0;
  overflow: hidden;
}

.work-smarter-list {
  margin: 22px 0 28px;
}

.work-smarter-list i {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.work-smarter-visual {
  min-height: 220px;
}

.work-smarter-overlay {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 70%;
  max-width: 280px;
}

.support-section {
  padding: 80px 0px;
}

.support-section .support-item {
  /* background: #fff; */
  border-radius: 20px;
  padding: 36px 24px;
  border: 1px solid #2aa4c92b;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.support-section .support-item:hover {
  transform: translateY(-8px);
}

.support-section .support-icon {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  margin: 0 auto 18px;
  color: #9ca3af !important;
  border: 0 !important;
  border-radius: 0;
}

.support-section .support-icon i,
.support-section .support-icon .fas,
.support-section .support-icon .far,
.support-section .support-item:hover .support-icon i {
  color: #9ca3af !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #9ca3af !important;
  transform: scale(1.8);
}

.support-section .col-lg-4:first-child .support-item h4 {
  color: #0ba4c7;
}

.reviews-section .single-testimonial-box,
.reviews-section .review-card {
  margin-left: 0 !important;
  padding-left: 22px;
}

.reviews-section .single-testimonial-user {
  margin-left: 0 !important;
  margin-bottom: 16px !important;
}

.reviews-section .single-testimonial-box,
.reviews-section .review-card {
  margin-left: 0 !important;
  margin-bottom: 0;
  width: 100%;
}

.reviews-section .row > [class*="col-"] {
  min-width: 0;
}

.reviews-section .row {
  margin-left: 0;
  margin-right: 0;
}

.reviews-action .main-btn {
  white-space: nowrap;
}

@media (max-width: 991px) {
  .reviews-section {
    padding: 56px 0;
    overflow-x: hidden;
  }

  .reviews-summary {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 16px;
    width: 100%;
  }

  .reviews-left,
  .reviews-score-row,
  .reviews-google,
  .reviews-action {
    width: 100%;
  }

  .reviews-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 14px;
  }

  .reviews-score-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
  }

  .reviews-divider {
    display: none;
  }

  .reviews-action {
    display: block;
  }

  .reviews-action .main-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 18px;
    min-height: 48px;
    white-space: nowrap;
  }

  .review-card {
    padding: 18px 16px;
    height: auto;
  }

  .reviews-section .review-card,
  .reviews-section .single-testimonial-box {
    padding-left: 16px;
    margin-left: 0 !important;
    margin-bottom: 0;
  }

  .review-card .single-testimonial-user,
  .reviews-section .single-testimonial-box .single-testimonial-user {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: 0 !important;
    margin-bottom: 16px !important;
  }

  .review-badge {
    white-space: nowrap;
    align-self: flex-start;
    max-width: 100%;
    display: inline-block;
  }

  .reviews-section .single-testimonial-item p {
    word-break: break-word;
  }

  .review-card .user-content .title {
    font-size: 18px !important;
    word-break: break-word;
  }

  .reviews-section .row {
    --bs-gutter-x: 16px;
  }

  .reviews-section .review-avatar {
    width: 38px;
    height: 38px;
  }

  .reviews-section .review-badge {
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }

  .reviews-section .reviews-stars {
    flex-wrap: wrap;
  }

  .work-smarter-overlay {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }

  .work-smarter-visual {
    min-height: auto;
  }
}

.support-banner {
  padding: 40px 0;
}

.support-box {
  background: #eef4f7;
  border-radius: 14px;
  padding: 28px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.support-icon {
  flex-shrink: 0;
}

.support-icon i {
  font-size: 90px;
  line-height: 1;
  background: linear-gradient(135deg, #00a3d9, #69c8a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-content {
  flex: 1;
}

.support-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}

.support-content p {
  font-size: 22px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 60px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #0aa0d4, #66c8a6);
  transition: .3s;
}

.btn-contact:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {

  .support-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .support-content h3 {
    font-size: 28px;
  }

  .support-content p {
    font-size: 18px;
  }

  .support-icon i {
    font-size: 70px;
  }

  .btn-contact {
    width: 100%;
    max-width: 260px;
  }

}

.callto {
  background-image: url("../images/new-tadeed-einvoice/home-page/work-harder.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  /* Adjust as needed */

  /* Optional */
}

#blogss {
  background-image: url("../images/new-tadeed-einvoice/resource/blog/blog-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

#faqs {
  background-image: url("../images/new-tadeed-einvoice/resource/faq-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

.btn-11 {
  position: relative;
  display: inline-block;
  padding: 10px 45px;
  border: 2px solid #0BA4C7;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  border-radius: 10px;
  background: linear-gradient(to right, #0BA4C7 0%, #61C0AB 100%);
}

.product-breadcrumbw {
  background-image: url("../images/new-tadeed-einvoice/resource/webinar-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

.product-breadcrumbp {
  background-image: url("../images/new-tadeed-einvoice/resource/partner/parter-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 60px 0;
}

.btn-11::before,
.btn-11::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #3D3D3D;
  border: 2px solid #3D3D3D;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.8s ease;
  z-index: -1;
}

.btn-11::before {
  left: -20px;
}

.btn-11::after {
  right: -20px;
}

.btn-11:hover {
  color: #fff;
  border: 2px solid #3D3D3D;
}

.btn-11:hover::before {
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
}

.btn-11:hover::after {
  right: 50%;
  width: 250px;
  height: 250px;
  transform: translate(50%, -50%);
}





.buttons {
  text-align: center;
}

.blob-btn__inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  z-index: -1;
  pointer-events: none;
}

/* .blob-btn__blobs{
    position:relative;
    display:block;
    width:100%;
    height:100%;
    filter:url("#goo");
}

.blob-btn__blob{
    position:absolute;
    top:2px;
    width:25%;
    height:100%;
    background:#2aa4c9;
    border-radius:50%;
    transform:translateY(150%) scale(1.4);
    transition:transform .45s, background .35s;
}

.blob-btn__blob:nth-child(1){
    left:0%;
    transition-delay:0s;
    background:#2aa4c9;
}

.blob-btn__blob:nth-child(2){
    left:30%;
    transition-delay:.08s;
    background:#67c3af;
}

.blob-btn__blob:nth-child(3){
    left:60%;
    transition-delay:.16s;
    background:#3d3d3d;
}

.blob-btn__blob:nth-child(4){
    left:90%;
    transition-delay:.24s;
    background:#2aa4c9;
}

.main-btn:hover .blob-btn__blob,
.main-btn-outline:hover .blob-btn__blob,
.main-btn-white:hover .blob-btn__blob,
.blob-btn:hover .blob-btn__blob,
.btn-brand:hover .blob-btn__blob,
.btn-outline-brand:hover .blob-btn__blob,
.btn-outline-light-brand:hover .blob-btn__blob{
    transform:translateY(0) scale(1.4);
} */
.infetech-banner-content span {
  color: #5fc2ab;
}

.infetech-banner-content .info-text h1 {
  color: #fefefe;
  font-size: 64px;
}

.infetech-banner-content .info-text p {
  color: #fefefe;
}

.infetech-banner-content .instyle {
  text-transform: capitalize;
  color: #5fc2ab;
  letter-spacing: inherit;
  z-index: 10;
  font-weight: 500;
}

.section-title h3 .instyle {
  text-transform: capitalize;
  color: #3D3D3D !important;
  letter-spacing: inherit;
  font-weight: 500;
  position: relative;
  z-index: 10;
  font-size: 42px;
  padding-left: 0px;
}

.section-title h3 .instyle::before {
  content: none;
  /* or content: ""; */
  display: none;
}

.einvocing-services {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0px 28px;
  background: #fff;
  border: 1px solid #0ba4c7;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
  height: 100%;
}

.phase-icon {
  flex: 0 0 48px;
}

.phase-icon i {
  font-size: 42px;
  color: #0ba4c7;
}





/* Arrow between cards */
.phase-card::after {
  content: "⟶";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #0ba4c7;
  z-index: 5;
}

/* Hide arrow on last card */
.col-lg-6:last-child .phase-card::after {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {

  .phase-card::after {
    display: none;
  }

  .einvocing-services {
    padding: 20px;
  }

  .phase-content h5 {
    font-size: 16px;
  }

  .phase-icon i {
    font-size: 36px;
  }
}

.module-contentt h4 {
  color: #3D3D3D;
  margin-bottom: 8px;
}

.module-contentt p {
  color: #3D3D3D;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: true;
}

.module-cardd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 37px;

  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 14px;

  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

/* =========================================
   GRADIENT BORDER
========================================= */

.module-cardd::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;

  background: linear-gradient(90deg,
      #2aa4c9 0%,
      #5fc2ac 50%,
      #2aa4c9 100%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  transition: opacity 0.3s ease;

  pointer-events: none;
}


/* =========================================
   WHITE MOVING HIGHLIGHT
========================================= */

.module-cardd::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;

  background: conic-gradient(from var(--border-angle),
      transparent 0deg,
      transparent 300deg,
      #2aa4c9 328deg,
      #5fc2ac 342deg,
      #ffffff 350deg,
      #2aa4c9 358deg,
      transparent 360deg);
  filter: drop-shadow(0 0 8px rgba(42, 164, 201, 0.85));

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0;
  pointer-events: none;
}


/* =========================================
   HOVER
========================================= */

.module-cardd:hover {
  animation: whiteBorderScroll 2.5s linear infinite;
}

.module-cardd:hover::before,
.module-cardd:hover::after {
  opacity: 1;
}


/* =========================================
   WHITE LIGHT MOVEMENT
========================================= */

@keyframes whiteBorderScroll {
  to {
    --border-angle: 360deg;
  }
}


/* Keep card content above both layers */

.module-cardd>* {
  position: relative;
  z-index: 2;
}

/* Keep card content untouched */
.module-cardd>* {
  position: relative;
  z-index: 2;
}

.module-iconn {
  width: 90px;
  height: 90px;
  min-width: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  border: 1px solid #E5E7EB;
  background: #0ca4c70f;
  transition: .35s;
  color: #0ca5c7;
  font-size: 39px;
}

.infetech-about-3-areaa {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/einvocing/einvoicing/phase1.png") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-about-3-areass {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/home-page/industrial-we-empower-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#einvoicng {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/features/e-invoice/e-invoice.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#salesmanagement {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/sales/sales-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#purchasemanagement {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/purchase/purchase-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#bankingmanagement {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/banking/banking-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#vatmanagement {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/vat/vat-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#reportsanalytics {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/report/report-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#setingsadministarion {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/settings/setting-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#about {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/resource/about/about-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#successstories {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/resource/success-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#pricing {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/resource/pricing/pricing-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacin {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/find-the-right-solution.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

#einvoicing-trading {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/trading/trading-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areac {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/features/accounting/simplyfy.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacse {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/settings/configure-tadeed.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacr {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/report/make-better.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacv {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/vat/make-vat.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacb {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/banking/simplify-business-banking.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacp {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/purchase/simply-vendor.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacs {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/sales/grow-business.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areaci {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/module/items/ready-to-organize.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}

.infetech-promo-banner-areacb {
  padding-bottom: 120px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/features/e-invoice/ready-to-simplify.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}
.infetech-promo-banner-areatra {
  padding: 60px 0px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/trading/zatca-trading.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}
.infetech-promo-banner-areactrad{
    padding: 60px 0px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/trading/simplify-trading.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}
#einvoicing-service{
   padding: 60px 0px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/service/service-bg.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
}
#indust {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/trading-company.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
#industtr {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/trading/solution-trading.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#industt {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/service-company.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#industi {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/construction-company.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#industti {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/retail-business.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

#industtip {
  padding-bottom: 20px;
  overflow: hidden;
  background: url("../images/new-tadeed-einvoice/industries/home/profrssional-service.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.phase2-bannerr {
  width: 750px;
}

.module-cards {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0px;
  border-bottom: 1px solid #00A3C5;
  transition: .35s ease;
  overflow: hidden;
  cursor: pointer;
}

.module-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: #0ca4c70f;
  transition: .35s;
  color: #fefefe;
  font-size: 50px;
}

.module-cards2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0px;
  border-bottom: 1px solid #00A3C5;
  transition: .35s ease;
  overflow: hidden;
  cursor: pointer;
}

.module-cards2 h4 {
  color: #3D3D3D;
}

.module-cards2 p {
  color: #3D3D3D;
}

.module-icons2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  /* background: #0ca4c70f; */
  transition: .35s;
  color: #0BA4C7;
  font-size: 50px;
}

.module-iconi {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  /* background: #0ca4c70f; */
  transition: .35s;
  color: #fefefe;
  font-size: 50px;
}

.who-we {
  display: flex;
  align-items: center;
}

.who-we img {
  margin-right: 20px;
}

.who-we h2 {
  color: #fefefe;
}

.who-we p {
  color: #fefefe;
}

/*==================================================
  Partner Benefits Tabs
==================================================*/

.partner-benefit-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-benefit-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.partner-benefit-item.active {
  background: rgba(11, 164, 199, 0.18);
  border-color: #0BA4C7;
}

.partner-benefit-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.partner-benefit-tab i {
  color: #0BA4C7;
  font-size: 14px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.partner-benefit-item.active .partner-benefit-tab i {
  color: #fff;
  transform: rotate(180deg);
}

.partner-benefit-panel {
  display: none;
  padding: 0 20px 18px;
}

.partner-benefit-item.active .partner-benefit-panel {
  display: block;
}

.partner-benefit-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partner-benefit-panel ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 6px;
}

.partner-benefit-panel ul li i {
  color: #0BA4C7;
  padding-right: 10px;
}

.infetech-contact-page-area .conatct-info .item .icon i{
  color: #00A3C5 !important;
  font-size: 25px;
}

/* Contact Us page layout */
.contact-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.contact-hero-meta li,
.contact-hero-meta a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 15px;
}

.contact-hero-meta i {
  margin-right: 8px;
  color: #61C0AB;
}

.contact-hero-visual {
  text-align: center;
}

.contact-channels-area {
  margin-top: -48px;
  padding-bottom: 20px;
  position: relative;
  z-index: 3;
}

.contact-channel-card {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid rgba(11, 164, 199, 0.12);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 16px 40px rgba(6, 38, 61, 0.08);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 164, 199, 0.35);
  box-shadow: 0 22px 48px rgba(11, 164, 199, 0.16);
  color: inherit;
}

.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ba4c7, #61c0ab);
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-channel-card h4 {
  font-size: 22px;
  font-weight: 800;
  color: #06263d;
  margin-bottom: 8px;
}

.contact-channel-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-channel-link {
  color: #0ba4c7;
  font-weight: 700;
  font-size: 14px;
}

.contact-channel-link i {
  margin-left: 6px;
}

.contact-page-layout .book-demo-panel .title {
  font-size: 36px;
}

.contact-form-note {
  color: #6b7280;
  font-size: 15px;
}

.contact-map-area {
  padding: 0 0 80px;
  background: #f6fbfc;
}

.contact-map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
}

.contact-map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

.contact-map-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(6, 38, 61, 0.16);
}

.contact-map-card span {
  color: #0ba4c7;
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: 13px;
  text-transform: uppercase;
}

.contact-map-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #06263d;
  margin: 8px 0 6px;
}

.contact-map-card p {
  color: #6b7280;
  margin-bottom: 12px;
}

.contact-map-card a {
  color: #0ba4c7;
  font-weight: 700;
}

@media (max-width: 991px) {
  .contact-channels-area {
    margin-top: 0;
    padding-top: 40px;
  }

  .contact-hero-visual {
    margin-top: 30px;
  }

  .contact-map-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 0 16px 16px;
  }
}

/* Responsive text sizes only — layout, buttons, and containers unchanged */
@media (max-width: 1399.98px) {
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .titlee,
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title,
  .banner-content-5 .title,
  .breadcrumb-item .title {
    font-size: 56px;
    line-height: 1.2;
  }

  .section-title .title {
    font-size: 40px;
    line-height: 1.28;
  }
}

@media (max-width: 991.98px) {
  h1,
  .titlee,
  .breadcrumb-item .title,
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .titlee,
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title,
  .banner-content-5 .title,
  .infetech-banner-area-4 .banner-content-box .title {
    font-size: 42px !important;
    line-height: 1.22 !important;
  }

  h2,
  h3,
  .section-title .title,
  .book-demo-panel .title,
  .cta-content .title,
  .infetech-cta-2-area .title,
  .contact-page-layout .book-demo-panel .title {
    font-size: 34px !important;
    line-height: 1.28 !important;
  }

  h4,
  h5,
  .mega-content h5,
  .module-content h3,
  .contact-channel-card h4,
  .contact-map-card h3 {
    font-size: 24px !important;
    line-height: 1.35 !important;
  }

  p,
  .description,
  .section-title p,
  .infetech-banner-content p,
  .breadcrumb-item .description,
  .book-demo-panel p,
  .cta-content p,
  li:not(.breadcrumb-item) {
    font-size: 18px;
    line-height: 1.75;
  }

  .section-title span,
  .page-tag,
  .demo-eyebrow {
    font-size: 16px !important;
  }

  .header-main-nav-box ul li a {
    font-size: 17px;
  }

  .tadeed-footer-link-col a,
  .footer-info a,
  .footer-about p,
  .tadeed-footer-small {
    font-size: 17px;
  }

  .contact-form-page-box .input-box input,
  .contact-form-page-box .input-box textarea,
  .contact-form-page-box .input-box select,
  .book-demo-form-box .input-box input,
  .book-demo-form-box .input-box textarea,
  .book-demo-form-box .input-box select {
    font-size: 17px;
  }

  .contact-form-page-box .input-box label,
  .book-demo-form-box .input-box label {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  h1,
  .titlee,
  .breadcrumb-item .title,
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .titlee,
  .infetech-banner-area-layout-2.infetech-banner-area-layout-3 .infetech-banner-slide-item .infetech-banner-content .title,
  .banner-content-5 .title,
  .infetech-banner-area-4 .banner-content-box .title {
    font-size: 32px !important;
    line-height: 1.26 !important;
  }

  h2,
  h3,
  .section-title .title,
  .book-demo-panel .title,
  .cta-content .title,
  .infetech-cta-2-area .title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  h4,
  h5 {
    font-size: 20px !important;
  }

  p,
  .description,
  .section-title p,
  li:not(.breadcrumb-item) {
    font-size: 17px;
    line-height: 1.7;
  }
}

/*==================================================
Animated glow border — industry, clients, Fatoora Phase 2, reviews
(same traveling highlight as Why Choose .module-cardd)
==================================================*/

.module-card,
.review-card,
.infetech-sponser-area .infetech-sponser-item,
.phase2-banner,
.phase2-bannerr {
  --border-angle: 0deg;
  position: relative;
  isolation: isolate;
}

.module-card,
.review-card,
.infetech-sponser-area .infetech-sponser-item,
.phase2-banner,
.phase2-bannerr {
  overflow: hidden;
}

.infetech-sponser-area .infetech-sponser-item {
  overflow: hidden;
}

.module-card::before,
.review-card::before,
.infetech-sponser-area .infetech-sponser-item::before,
.phase2-banner::before,
.phase2-bannerr::before {
  content: "";
  position: absolute;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 2px;
  border-radius: inherit;
  box-sizing: border-box;
  background: linear-gradient(90deg, #2aa4c9 0%, #5fc2ac 50%, #2aa4c9 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 8;
}

.module-card::after,
.review-card::after,
.infetech-sponser-area .infetech-sponser-item::after,
.phase2-banner::after,
.phase2-bannerr::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  box-sizing: border-box;
  background: conic-gradient(from var(--border-angle),
      transparent 0deg,
      transparent 300deg,
      #2aa4c9 328deg,
      #5fc2ac 342deg,
      #ffffff 350deg,
      #2aa4c9 358deg,
      transparent 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
  filter: drop-shadow(0 0 10px rgba(42, 164, 201, 0.9));
}

.module-card:hover::before,
.module-card:hover::after,
.module-card-link:hover .module-card::before,
.module-card-link:hover .module-card::after,
.review-card:hover::before,
.review-card:hover::after,
.infetech-sponser-area .infetech-sponser-item:hover::before,
.infetech-sponser-area .infetech-sponser-item:hover::after,
.phase2-banner:hover::before,
.phase2-banner:hover::after,
.phase2-bannerr:hover::before,
.phase2-bannerr:hover::after {
  opacity: 1;
}

.module-card:hover,
.module-card-link:hover .module-card,
.review-card:hover,
.infetech-sponser-area .infetech-sponser-item:hover {
  animation: whiteBorderScroll 2.5s linear infinite;
}

.phase2-banner:hover::after,
.phase2-bannerr:hover::after {
  animation: whiteBorderScroll 2.5s linear infinite;
}

.phase2-banner:hover,
.phase2-bannerr:hover,
.phase2-banner:hover img,
.phase2-bannerr:hover img {
  transform: none;
}

.module-card:hover,
.module-card-link:hover .module-card {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(42, 164, 201, 0.18);
}

.infetech-sponser-area .infetech-sponser-item:hover {
  background: rgba(42, 164, 201, 0.06);
  box-shadow: 0 8px 22px rgba(42, 164, 201, 0.16);
  border-color: transparent;
}

.phase2-banner:hover,
.phase2-bannerr:hover {
  box-shadow: 0 12px 32px rgba(42, 164, 201, 0.22);
}

.module-card > *,
.review-card > *,
.infetech-sponser-area .infetech-sponser-item > * {
  position: relative;
  z-index: 2;
}

.phase2-banner > img,
.phase2-bannerr > img {
  position: relative;
  z-index: 1;
}

.phase2-banner > .phase2-content,
.phase2-bannerr > .phase2-content {
  z-index: 6;
}

/*==================================================
Process section — connector line only (no top bar)
==================================================*/

@keyframes processTrackFill {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.phase2-banner + .d-flex,
.phase2-banner + .mt-35,
.infetech-about-3-areas .col-lg-4 > .d-flex,
.infetech-about-3-areas .col-lg-4 > .mt-35 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.phase2-banner + .mt-35 {
  margin-top: 24px;
}