/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@font-face {
  font-family: 'Uncut Sans';
  src: url('../fonts/Uncut-Sans-Regular.ttf');
}

/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
body {
  font-family: 'Uncut Sans';
  color: #333333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Uncut Sans';
}

p {
  font-size: 18px;
  color: #060606;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #006698;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #006698;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #47b547;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img:focus-visible {
  outline: none;
}

#header.fixed-top {
  height: 100px;
}

#header .logo img {
  max-height: 100px;
}

.scrolled-offset {
  margin-top: 100px;
}

#header .social-links {
  position: relative;
  margin-left: 50px;
}

#search-form {
  position: absolute;
  top: 53px;
  left: -98px;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

#search-form input[type="text"] {
  width: 300px;
  padding: 10px;
  border-radius: 5px;
}

#search-form .search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.search-container .search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.search-form-button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
}

.search-form-button button {
  height: 100%;
  border: none;
  background: no-repeat;
  padding-right: 15px;
}

input[type="text"]:focus-visible {
  outline: none;
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;

}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 20%;
}

.navbar .active>a,
.navbar a i:hover,
.navbar li a:hover {
  color: #009800;
}

.navbar .menu-item-has-children ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .menu-item-has-children ul li {
  min-width: 200px;
}

.navbar .menu-item-has-children ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .menu-item-has-children ul a i {
  font-size: 12px;
}

.navbar .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .menu-item-has-children .menu-item-has-children ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .menu-item-has-children .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .menu-item-has-children .menu-item-has-children ul {
    left: -90%;
  }

  .navbar .menu-item-has-children .menu-item-has-children:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #333333;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #333333;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 16px;
  color: #333333 !important;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .menu-item-has-children ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .menu-item-has-children ul li {
  min-width: 200px;
}

.navbar-mobile .menu-item-has-children ul a {
  padding: 10px 20px;
}

.navbar-mobile .menu-item-has-children ul a i {
  font-size: 12px;
}

.navbar-mobile .menu-item-has-children ul a:hover,
.navbar-mobile .menu-item-has-children ul .active:hover,
.navbar-mobile .menu-item-has-children ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .menu-item-has-children>.drop-ul {
  display: block;
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
.Hero-Slider .container-fluid {
  height: 100%;
}

.Hero-Slider a {
  position: absolute;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#Hero-Slider {
  height: calc(100vh - 85px);
  position: relative;
}

.bg-dots {
  position: absolute;
  top: 0px;
  left: 0px;
}

.Hero-Slider img {
  background-size: cover;
  position: relative;
}

.Hero-Slider-List {
  height: 100%;
}

.Hero-Slider-List .slick-list.draggable {
  height: 100%;
}

.Hero-Slider-List .slick-track {
  height: 100%;
}

.Hero-Slider-List .Slider-List {
  position: relative;
}

.Hero-Slider-Details {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  left: 7%;
}

.Hero-Slider-Details img {
  background-size: cover;
}

.Hero-Slider-Details .hero-heading {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 60px;
}

.Hero-Slider-Details p {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  line-height: 28px;
}

.Hero-Slider-List .slick-dots {
  position: absolute;
  bottom: 12%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
}

.Hero-Slider-List .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.Hero-Slider-List .slick-dots li.slick-active button:before {
  opacity: 1;
}

.Hero-Slider-List .slick-dots li button:before {
  font-size: 10px;
  color: #7f7f7f6e;
  opacity: 1;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
}

.Hero-Slider-List .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

.Hero-Slider-List .slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
  color: #fff;
}

.Hero-Slider-List .slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: #fff;
}

/*--------------------------------------------------------------
# Section General
--------------------------------------------------------------*/
.section-title h2,
.section-title h1 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
}

.section-title h2 {
  margin-bottom: 30px;
}

section {
  padding: 60px 0px;
  overflow: hidden;
}

.section-title span {
  color: #009800;
  position: relative;
}

.section-title span:after {
  transition: all 0.05s ease-in-out;
  width: 100%;
  height: 50px;
  border: solid 3px #009800;
  border-color: #009800 transparent transparent transparent;
  border-radius: 61%/20px 20px 0 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: -55px;
  transform: rotate(-3deg);
}

/*--------------------------------------------------------------
# advertising
--------------------------------------------------------------*/
#advertising {
  overflow: visible;
}

#advertising .advertising-bg span:after {
  transition: all 0.05s ease-in-out;
  width: 100%;
  height: 50px;
  border: solid 3px #009800;
  border-color: #009800 transparent transparent transparent;
  border-radius: 61%/20px 20px 0 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: -55px;
  transform: rotate(-3deg);
}

#advertising .advertising-bg {
  background: #fff;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 0px 10px 0px #9999;
  padding: 40px 20px;
  border-radius: 20px;
  margin-top: -125px;
  position: relative;
}

#advertising .bullet-point img {
  max-width: 30px;
}

#advertising .que-box {
  font-size: 18px;
  line-height: 25px;
  color: #252525;
  margin: 20px 20px 5px;
  border-bottom: 1px solid #D9D9D9;
  height: 100%;
}

#advertising .section-title {
  margin-bottom: 50px;
}

#advertising .que-box p {
  margin-bottom: 0;
  margin-right: 30px;
  margin-left: 20px;
  font-weight: 400;
  color: #333333;
  font-size: 18px;
}

#advertising .well p {
  color: #006698;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px dashed #00B9DD;
  width: fit-content;
  text-align: center;
}

#advertising .well {
  display: flex;
  justify-content: center;
}

.que-main {
  margin-bottom: 30px;
}

.que-main:nth-child(6n-0) .que-box {
  border-bottom: none !important;
}

.que-main:nth-child(6n-1) .que-box {
  border-bottom: none !important;
}



/*--------------------------------------------------------------
# microsoft-partner
--------------------------------------------------------------*/

.microsoft-partner a {
  background: rgb(0, 0, 0);
  background: linear-gradient(274deg, rgba(0, 102, 153, 1) 0%, rgba(0, 151, 0, 1) 40%);
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 20px;
}

.microsoft-partner .readmore-btn {
  margin-top: 30px;
}

.microsoft-partner p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.microsoft-partner {
  background-image: url(../img/Pattern-2.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# offer
--------------------------------------------------------------*/
.offer {
  background-color: #F6FCFF !important;
  background: url(../img/Vector.png) no-repeat;
  background-position: top left;
}

.offer .section-title {
  margin-bottom: 50px;
}

.icon-box {
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #99999957;
  border-radius: 10px;
  height: 100%;
}

.offer .icon {
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
}

.offer .icon-no p {
  color: #AAAAAA;
  font-weight: 600;
  font-size: 24px;
}

.offer .icon-text h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
}

.offer .icon-text p {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
  min-height: 140px;
}

.offer a i {
  font-size: 18px;
  color: #006698;
  transform: rotate(-37deg);
  margin-left: 7px;
}

.offer a {
  font-weight: 500;
  font-size: 18px;
  color: #006698;
}

/*--------------------------------------------------------------
# Expertise
--------------------------------------------------------------*/
.expertise .section-title {
  margin-bottom: 50px;
}

.expertise .icon-img img {
  display: flex;
  margin: 0 auto;
}

.expertise .icon-img {
  background: #F2F2F2;
  border: 2px solid #E4E4E4;
  margin: 10px;
  padding: 30px 0px;
}

.expertise .icon-img img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(101deg) brightness(103%) contrast(100%)
}

.expertise .icon-img:hover img {
  filter: unset;
}

.expertise .slide-detail {
  width: 70%;
}

/*--------------------------------------------------------------
# Video Library
--------------------------------------------------------------*/
.video-library {
  background: url(../img/video-bg-Pattren.png) no-repeat;
  background-position: center left;
}

.video-library .library-img {
  position: relative;
}

.video-library h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-top: 20px;
}

.video-library .video-play-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-library .library-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, 0.01) 100%);
  border-radius: 20px;
}

.video-library .single-video {
  position: relative;
}

.video-library .library-inside {
  padding: 20px;
}

.video-library .library-img img {
  border-radius: 20px;
}

.video-library .blog-contain h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #009800;
  padding: 4px 10px;
  margin-top: -15px;
  margin-left: 20px;
  width: fit-content;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}

/* .video-library .single-video a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
} */
a .blog-contain h4 {
  color: #006698;
  font-size: 18px;
  font-weight: 500;
}

.video-library .slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.video-library .slick-prev:before,
.video-library .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: unset;
  bottom: -20px;
  transform: translate(-50%, -50%);
}

.video-library .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: unset;
  bottom: -60px;
  right: unset;
  z-index: 1;
  left: 45%;
  background: url(../img/benifit-arrow-left.png) 100% no-repeat;
}

.video-library .slick-arrow.slick-next {
  position: absolute;
  right: 45%;
  top: unset;
  bottom: -60px;
  cursor: pointer;
  z-index: 1;
  background: url(../img/benifit-arrow-right.png) 100% no-repeat;
}

/*--------------------------------------------------------------
# what-say
--------------------------------------------------------------*/
.what-say .what-say-box {
  display: flex !important;
}

.what-say ul.slick-dots {
  display: flex;
  justify-content: center;
  position: absolute;
}

.what-say .what-say-box {
  display: flex !important;
  padding: 25px;
}

.what-say .slide-detail {
  box-shadow: 0px 0px 10px 0px #9999994a;
  padding: 20px;
  border-radius: 10px;
}

.what-say .personal-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.what-say i.fa.fa-star.fill-star {
  color: #FA9E28;
}

.what-say .designation {
  width: 60%;
}

.what-say .slide-description p {
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  min-height: 300px;
}

.what-say .designation p {
  font-weight: 400;
  font-size: 20px;
  color: #787878;
  min-height: 60px;
}

.what-say .designation h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

.what-say .slide-description {
  border-bottom: 1px solid #D9D9D9;
}

.what-say img.left.slick-arrow {
  position: absolute;
  bottom: -20px;
  left: 46%;
  z-index: 1;
  cursor: pointer;
}

.what-say img.right.slick-arrow {
  position: absolute;
  bottom: -20px;
  right: 46%;
  z-index: 1;
  cursor: pointer;
}




.what-say .slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.what-say .slick-prev:before,
.what-say .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: unset;
  bottom: -20px;
  transform: translate(-50%, -50%);
}

.what-say .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: unset;
  bottom: -60px;
  right: unset;
  z-index: 1;
  left: 45%;
  background: url(../img/benifit-arrow-left.png) 100% no-repeat;
}

.what-say .slick-arrow.slick-next {
  position: absolute;
  right: 45%;
  top: unset;
  bottom: -60px;
  cursor: pointer;
  z-index: 1;
  background: url(../img/benifit-arrow-right.png) 100% no-repeat;
}

/*--------------------------------------------------------------
# Trust-us
--------------------------------------------------------------*/
.trust-us {
  background-image: url(../img/Bg_gradient.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.trust-us h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

.trust-us-slide {
  width: 80%;
  margin: auto 0 0 0;
  position: relative;
}

.trust-us-down {
  width: 80%;
  margin: 0 0 0 auto;
  position: relative;
}

.logo-img img {
  display: flex;
  margin: 0 auto;
}

.logo-img {
  background-image: url(../img/bg_Box.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 10px;
}

/* 
.trust-us-slide img.right.slick-arrow {
  position: absolute;
  top: 35%;
  right: -7%;
  cursor: pointer;
} */
.trust-us-slide .slick-arrow {
  position: absolute;
  bottom: unset;
  right: -8%;
  top: 36%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.trust-us-slide .slick-prev:before,
.trust-us-slide .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* .automated-workflows .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: -30%;
  right: 10%;
  left: unset;
  background: url(../img/trustus-arrow-left.png) 100% no-repeat;
} */

.trust-us-slide .slick-arrow.slick-next {
  position: absolute;
  right: -8%;
  top: 50%;
  cursor: pointer;
  background: url(../img/trustus-arrow-right.png) 100% no-repeat;
}












/* .trust-us-down img.left.slick-arrow {
  position: absolute;
  top: 35%;
  left: -7%;
  cursor: pointer;
} */
.trust-us-down .slick-arrow {
  position: absolute;
  bottom: unset;
  right: -8%;
  top: 36%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.trust-us-down .slick-prev:before,
.trust-us-down .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.trust-us-down .slick-arrow.slick-prev {
  position: absolute;
  left: -8%;
  top: 50%;
  cursor: pointer;
  background: url(../img/trustus-arrow-left.png) 100% no-repeat;
}

/* .trust-us-slide .slick-arrow.slick-next {
  position: absolute;
  right: -8%;
  top: 50%;
  cursor: pointer;
  background: url(../img/trustus-arrow-right.png) 100% no-repeat;
} */

/*--------------------------------------------------------------
# Certified
--------------------------------------------------------------*/
.certified {
  background-image: url(../img/certified-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.certified p {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}

/*--------------------------------------------------------------
# Case study
--------------------------------------------------------------*/
.case-study-main .single-casestudy {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #99999957;
  border-radius: 10px;
}

.case-study-main .about-img {
  position: relative;
}

.case-study-main .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 1%, rgba(0, 0, 0, 0.01) 100%);
}

.case-study-main .case-study-contain h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  min-height: 85px;
}

.case-study-main .case-study-contain h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #009800;
  padding: 4px 10px;
  margin-bottom: 15px;
  width: fit-content;
  border-radius: 10px;
}

.case-study-main .slick-dots {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.case-study-main p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.case-study-main a {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.case-study-main a i {
  font-size: 18px;
  color: #fff;
  transform: rotate(-37deg);
  margin-left: 7px;
}

.case-study-main .single-casestudy {
  position: relative;
}

.case-study-main .case-study-contain {
  padding: 20px;
  position: absolute;
  bottom: 50px;
}

.blog-main .single-blog {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 200px;
}

.blog-main a {
  font-weight: 500;
  font-size: 18px;
  color: #006698;
}

.blog-main a i {
  font-size: 18px;
  color: #006698;
  transform: rotate(-37deg);
  margin-left: 7px;
}

.blog-main .blog-contain h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-top: 10px;
}

.blog-main .blog-contain h5 {
  color: #009800;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-main .blog-contain {
  width: 60%;
}

.blog-main .blog-img {
  width: 40%;
}

.blog-main .slick-dots {
  bottom: unset;
  top: 50%;
  left: 50%;
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  justify-content: center;
  transform: rotate(90deg);
}

.blog-main .slick-dots li.slick-active button:before {
  color: #006698;
}

.blog-main .slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: #006698;
}

.case-study-main .slick-dots li button:before {
  color: rgb(255 255 255);
}

.case-study-main .slick-dots li.slick-active button:before {
  color: #fff;
}

.case-study-main .slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  color: #fff;
}

.case-study-main li button:before {
  color: #0065986e;
  font-size: 12px;
}

.blog-main .slick-dots li button:before {
  font-size: 10px;
}

/*--------------------------------------------------------------
# client-sucess
--------------------------------------------------------------*/
.client-sucess {
  background-image: url(../img/Pattern-2.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}

.client-sucess p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

/*--------------------------------------------------------------
# Why Work
--------------------------------------------------------------*/
.why-work {
  background-image: url(../img/P_design.png);
  background-repeat: no-repeat;
  background-position: 10% center;
}

.why-work p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

/*--------------------------------------------------------------
# Hygiene Journey
--------------------------------------------------------------*/
.homeform .homeform-bg {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #99999957;
  padding: 40px;
  border-radius: 15px;
}

.homeform .wpcf7-submit {
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 40px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.homeform input,
.homeform textarea {
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
  color: #696974;
  margin: 10px 0px;
  background-color: #F9F9F9;
  padding: 10px;
  border-radius: 10px;
}

.homeform input::placeholder,
.homeform textarea::placeholder {
  color: #333333 !important;
  font-size: 16px;
  font-weight: 400;
}

.homeform input:focus,
.homeform textarea:focus {
  box-shadow: none;
  border: 1px solid #E3E3E3;
  background-color: #F9F9F9;
}

.homeform input:focus-visible,
.homeform textarea:focus-visible {
  outline: none;
}

.homeform p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.homeform .form-icon {
  padding-top: 170px;
  position: relative;
  width: fit-content;
}

.homeform .form-icon::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 140px;
  background-color: #009800;
  top: 10px;
  right: 50%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0;
  color: #fff;
  font-size: 18px;
  background: #020727;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  width: 15%;
  height: 30%;
  right: 0;
  bottom: 0;
  background: url(../img/Footer_Design.png) no-repeat;
}

#footer .footer-contact a img {
  margin-bottom: 30px;
}

#footer .address p,
#footer .address a {
  font-weight: 500;
  font-size: 18px;
  color: #fff !important;
}

#footer .footer-top {
  padding: 60px 0 0px 0;
  background: #020727;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .service-col-part ul {
  column-count: 2;
}

#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .tnp.tnp-subscription {
  margin: 0;
}

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer form {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

#footer .tnp-privacy-field {
  order: 3;
}

#footer .tnp-field-button {
  order: 2;
}

#footer .footer-top .footer-contact p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
  opacity: 0.8;
}

#footer .footer-top .footer-contact a {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

#footer .footer-top .footer-menu-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer li:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 100%;
  height: 100%;
  background: url(../img/footer-angel.png) no-repeat;
  margin-top: 5px;
}

#footer .footer-top .footer-links ul li {
  margin: 10px 0;
  position: relative;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 400;
  font-size: 18px;
  opacity: 0.8;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff20;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 3%;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #233E7D;
  text-decoration: none;
}

#footer .footer-contact .social-links {
  display: flex;
  margin-bottom: 50px;
}

#footer .copyright {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
}


.tnp-subscription div.tnp-field {
  position: relative;
}

#footer .tnp-field.tnp-field-email {
  position: relative;
  background: #fff;
  width: 70%;
  border-radius: 5px;
  order: 1;
}

#footer .tnp-field-email label {
  color: #fff;
  font-size: 16px;
  font-family: 'Onest-Light';
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 12px;
  padding: 0 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  text-align: center;
}

#footer .tnp-field-email input[type=email]:focus~label {
  display: none;
}

#footer .tnp-field-email:focus-within label {
  display: none;
}

.tnp-subscription input[type=text],
.tnp-subscription input[type=email],
.tnp-subscription input[type=submit],
.tnp-subscription select,
.tnp-subscription textarea,
.tnp-profile input[type=text],
.tnp-profile input[type=email],
.tnp-profile input[type=submit],
.tnp-profile select,
.tnp-profile textarea {
  width: 100%;
  padding: 0.7em;
  display: block;
  border: 1px solid #fff !important;
  color: #000 !important;
  border-color: #ddd;
  background-color: transparent !important;
  border-radius: 8px;
  background-image: none;
  text-shadow: none;
  font-size: 1em;
  margin: 0;
  line-height: normal;
  box-sizing: border-box;
}

.tnp-subscription input[type=email]:focus-visible {
  outline: none;
}

#footer .tnp-field-email label {
  display: none;
}

.footer-email input#email:focus {
  box-shadow: unset;
}

.footer-email input#email::placeholder {
  color: #fff;
  text-align: center;
}

#footer .tnp-subscription input.tnp-submit,
.tnp-profile input.tnp-submit {
  color: #fff !important;
  background: #009800 !important;
  width: 100% !important;
  font-size: 16px !important;
  font-weight: 400;
  border: 0 !important;
  border-radius: 5px !important;
  margin-left: 10px;
  padding-right: 30px;
  padding-left: 30px;
}

#footer .newsletter {
  width: 60%;
}

#footer .newsletter h2 {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}

/*--------------------------------------------------------------
# Solutions Page
--------------------------------------------------------------*/
.inner-hero .inner-hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.inner-hero .inner-hero-content {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.inner-hero-content h3 {
  width: 60%;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  margin-top: 30px;
}

.inner-hero {
  position: relative;
}

.development-solution p {
  font-weight: 400;
  color: #333333;
  font-size: 18px;
}

.inner-page-form {
  background-color: #F6FCFF;
  background-image: url(../img/Pattern.png);
  background-repeat: no-repeat;
  background-position: right center;
}

.inner-page-form .section-title p a {
  text-decoration: underline;
}

.inner-page-form .inner-form-bg {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 0px #99999942;
}

.inner-page-form .wpcf7-submit {
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 40px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

.inner-page-form input,
.inner-page-form textarea {
  border: 1px solid #E3E3E3;
  font-size: 16px;
  font-weight: 400;
  color: #696974;
  margin: 10px 0px;
  background-color: #F9F9F9;
  padding: 10px;
  border-radius: 10px;
}

.inner-page-form input::placeholder,
.inner-page-form textarea::placeholder {
  color: #333333 !important;
  font-size: 16px;
  font-weight: 400;
}

.inner-page-form input:focus,
.inner-page-form textarea:focus {
  box-shadow: none;
  border: 1px solid #E3E3E3;
  background-color: #F9F9F9;
}

.inner-page-form input:focus-visible,
.inner-page-form textarea:focus-visible {
  outline: none;
}

.unlock-your-business {
  background-image: url(../img/P_design.png);
  background-repeat: no-repeat;
  background-position: 10% center;
}

.unlock-your-business li p {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
}

.unlock-your-business li h5 {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.unlock-your-business li:before {
  content: '';
  position: absolute;
  left: -30px;
  width: 100%;
  height: 100%;
  background: url(../img/list-btn.png) no-repeat;
}

.unlock-your-business ul li {
  margin: 10px 0;
  position: relative;
  list-style-type: none;
  padding-left: 10px;
}

.development-services .left-side {
  display: inline-block;
  float: left;
  position: sticky;
  top: 230px;
}

.development-services {
  background-color: #F6FCFF;
  overflow: visible;
}

.development-services:before,
.development-services:after {
  content: "";
  display: table;
  clear: both;
}

.development-services .right-side {
  display: inline-block;
  vertical-align: top;
  float: right;
}

.development-services .left-side p {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.development-services .single-service-box {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #99999942;
}

.development-services .service-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #D9D9D9;
  padding-bottom: 10px;
}

.development-services .service-box h3 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.development-services .service-box h4 {
  color: #009800;
  font-size: 22px;
  font-weight: 600;
}

.development-services .single-service-box p {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.unlocked .unlocked-bg {
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #99999942;
  border-radius: 10px;
  padding: 40px;
}

.unlocked .section-title h2 {
  width: 80%;
}

.unlocked .slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.unlocked .slick-prev:before,
.unlocked .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.unlocked .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: -30%;
  right: 10%;
  left: unset;
  background: url(../img/benifit-arrow-left.png) 100% no-repeat;
}

.unlocked .slick-arrow.slick-next {
  position: absolute;
  right: 4%;
  top: -30%;
  cursor: pointer;
  background: url(../img/benifit-arrow-right.png) 100% no-repeat;
}

.unlocked .slide-description {
  padding-top: 30px;
  position: relative;
}

.unlocked .slide-description p {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
}

.unlocked .slide-description h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.unlocked .slide-description::after {
  content: "";
  position: absolute;
  border-top: 2px dashed #CACACA;
  top: 0;
  right: 0;
  width: 80%;
}

.unlocked .slide-description::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 30px;
  height: 30px;
  background: rgb(0, 0, 0);
  background: linear-gradient(274deg, rgba(0, 151, 0, 1) 0%, rgba(0, 102, 153, 1) 87%);
  border-radius: 50%;
}

.unlocked-slide-detail {
  padding: 25px;
}

.benifit {
  background-color: #F6FCFF;
}

.benifit .single-benifit {
  background-color: #fff;
  padding: 20px;
  transition: 0.5s all;
  box-shadow: 0px 0px 10px 0px #9999994a;
}

.benifit .single-benifit:hover {
  background-color: #006698;
  transition: 0.5s all;
}

.benifit .single-benifit p {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  transition: 0.5s all;
}

.benifit .single-benifit h5 {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  transition: 0.5s all;
}

.benifit .single-benifit:hover p,
.benifit .single-benifit:hover h5 {
  color: #fff;
  transition: 0.5s all;
}

/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------*/

.blog-page .input-box {
  position: relative;
  width: 70%;
  background: #fff;
  margin: 0 auto 50px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.blog-page .input-box i,
.blog-page .input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.blog-page .input-box i {
  left: 20px;
  font-size: 20px;
  color: #808089;
}

.blog-page .input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  padding: 20px 155px 20px 55px;
  background-color: transparent;
}

.blog-page .input-box .button {
  right: 10px;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
}

.blog-page .input-box .button.clicked {
  transform: translateY(-50%) scale(0.98);
}

.blog-page {
  padding-top: 0;
  margin-top: -38px;
}

.blog-page .blog-contain h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #009800;
  padding: 4px 10px;
  margin-top: -15px;
  margin-left: 20px;
  width: fit-content;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}

.blog-page .blog-contain h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  margin-top: 20px;
}

.blog-page .blog-contain p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.blog-page .blog-contain a {
  font-weight: 500;
  font-size: 18px;
  color: #006698;
}

.blog-page .blog-contain a i {
  font-size: 18px;
  color: #006698;
  margin-left: 7px;
}

.blog-page .about-img img {
  border-radius: 15px;
  /* height: 350px; */
  object-fit: cover;
}

.blog-page .blog-contain {
  padding: 0px 5px 5px;
}

.blog-main .single-blog {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 200px;
}

.blog-main a {
  font-weight: 500;
  font-size: 18px;
  color: #006698;
}

.blog-main a i {
  font-size: 18px;
  color: #006698;
  transform: rotate(-37deg);
  margin-left: 7px;
}

.blog-page .alm-load-more-btn {
  background: rgb(0, 0, 0) !important;
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%) !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  border-radius: 20px !important;
  border: none !important;
  padding: 8px 30px !important;
}

.blog-page .blog-view-more {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

.single-blog-image {
  padding-bottom: 20px;
}

.blog-view .single-blog-image img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
  padding: 8px 20px;
  color: #fff;
  font-size: 20px;
  margin-right: 20px;
  border-radius: 10px;
}

.blog-wrapper h1,
.blog-wrapper h2,
.blog-wrapper h3,
.blog-wrapper h4,
.blog-wrapper h5,
.blog-wrapper h6 {
  text-transform: capitalize;
}

.blog-view .blog-wrapper {
  box-shadow: 0px 0px 10px 0px #9999994a;
  padding: 50px;
  margin-top: -85px;
  position: relative;
  background-color: #fff;
}

.blog-wrapper div {
  margin: 20px 0;
}

.blog-view-banner {
  position: relative;
}

.blog-view {
  padding: 0 0 60px;
}

.banner-blog-detail {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner-blog-detail h5 {
  text-align: center;
  color: #fff;
  font-size: 18px;
}

.banner-blog-detail h5 a {
  color: #fff;
  font-size: 18px;
}

.heateor_sss_sharing_ul {
  display: flex !important;
}

.blog-view .post-categories {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.blog-view path,
.blog-view circle {
  fill: #fff;
}

.blog-view .heateor_sss_horizontal_sharing .heateor_sss_svg,
.blog-view .heateor_sss_standard_follow_icons_container .heateor_sss_svg {
  background-color: #fff !important;
  background: #ffffff00 !important;
  color: #000;
  border-width: 0px;
  border-style: solid;
  border-color: transparent;
}

.blog-view .single-social-share {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: 400;
  font-size: 20px;
}

.blog-view .author-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blog-view .all-post-btn a {
  position: relative;
  border: 1px solid transparent;
  background: #fff;
  background-clip: padding-box;
  border-radius: 20px;
  padding: 8px 30px;
  z-index: 1;
  color: #080808;
  font-size: 20px;
  font-weight: 500;
}

.blog-view .all-post-btn a::after {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(to bottom right, #006699, #009700);
  z-index: -1;
  border-radius: 20px;
  margin: 1px;
}

.blog-view .author-personal-detail {
  display: flex;
  align-items: center;
}

.blog-view .author-personal-detail img {
  width: 100px;
  border-radius: 50%;
  height: 100px;
  margin-right: 20px;
}

.blog-view .blog-author-name h3 {
  font-size: 24px;
  font-weight: 600;
  color: #009800;
}

.blog-view .blog-author-name p {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
}


.single-blog-title h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  width: 80%;
  text-align: center;
  line-height: 50px;
  margin: 0 auto 10px;
}

.singleblog-image img {
  width: 100%;
}

main#primary.blog-page {
  margin-top: 85px;
}

.heateor_sss_sharing_container.heateor_sss_vertical_sharing.heateor_sss_bottom_sharing {
  display: none;
}

.contact-social-icon .social-media {
  background: rgb(0, 0, 0) !important;
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%) !important;
  color: #fff !important;
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.contact-social-icon .social-media i {
  font-size: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.contact-social-icon .contact-box {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.contact-social-icon .contact-box h4 {
  color: #333333;
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.contact-social-icon .contact-box a,
.contact-social-icon .contact-box p {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

/* .social-bg{
  border: 2px solid;
  border-image-slice: 1;
  border-width: 1px;
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-image-source: linear-gradient(to left, #009700, #006699);
  padding: 30px;
	z-index: -1;
  border-radius: 20px;
} */
.social-bg {
  position: relative;
  border: 1px solid transparent;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 20px;
  padding: 50px 30px;
}

.social-bg::after {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -3px;
  background: linear-gradient(to bottom right, #006699, #009700);
  z-index: -1;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Solution Page
--------------------------------------------------------------*/
.conquer-complexity .single-benifit {
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.conquer-complexity .single-benifit h5 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
}

.conquer-complexity .single-benifit p {
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

.conquer-complexity .benifit-icon {
  background: rgb(0, 0, 0) !important;
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%) !important;
  color: #fff !important;
  width: 65px;
  height: 65px;
  border-radius: 10px;
  padding: 15px;
  margin-right: 20px;
}

.conquer-complexity .benifit-icon img {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.conquer-complexity .benifit-title {
  display: flex;
  align-items: center;
}

.conquer-complexity .section-title h2 {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.automated-workflows {
  background-image: url(../img/workflow-automated-bg.png);
  background-position: top right;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible;
  width: 100%;
}

.automated-workflows .section-title h2 {
  width: 60%;
  color: #fff;
}

.automated-workflows .workflows-slide-description {
  background-color: #fff;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #9999994a;
}

.automated-workflows .workflows-slide-description p {
  border-top: 1px dashed #D9D9D9;
  padding-top: 15px;
  color: #787878;
  font-size: 18px;
  font-weight: 400;
  min-height: 170px;
}

.automated-workflows .workflows-slide-description h4 {
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.automated_workflows-slides .slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.automated_workflows-slides .slick-prev:before,
.automated_workflows-slides .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.automated-workflows .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: -30%;
  right: 10%;
  left: unset;
  background: url(../img/trustus-arrow-left.png) 100% no-repeat;
}

.automated-workflows .slick-arrow.slick-next {
  position: absolute;
  right: 4%;
  top: -30%;
  cursor: pointer;
  background: url(../img/trustus-arrow-right.png) 100% no-repeat;
}

.automated-workflows .automated_workflows-slides {
  margin-bottom: -16%;
}

.sec-specing {
  margin-top: 10%;
}

.blog-view ul li:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 25px;
  height: 25px;
  background: url(../img/Bullent-Points.png) no-repeat;
  background-size: contain;
}

.blog-view .blog-wrapper .heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
  display: none;
}

.blog-view ul li {
  position: relative;
  list-style-type: none;
  padding-left: 10px;
}

.blog-view ul li b {
  color: #006698;
}

.search-results .page-header .page-title {
  color: #0f6f9e;
  font-size: 30px;
  font-weight: 500;
  padding: 30px 0px;
}

.search-results .page-header .page-title span {
  color: #000;
  font-weight: 600;
}

.search-no-results .page-title {
  color: #0f6f9e;
  font-size: 30px;
  font-weight: 600;
}

.search-no-results .search-submit {
  background: rgb(0, 0, 0) !important;
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%) !important;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 20px;
}

.search-no-results form.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-no-results input.search-field {
  padding: 8px 10px;
  border: 2px solid #009800;
  border-radius: 10px;
  margin-right: 10px;
}

.search-no-results form input:focus-visible {
  outline: none;
}

.search-no-results .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.author-favorite-tools .tools-title {
  position: relative;
  padding-left: 35px;
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.author-favorite-tools .tools-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../img/favorite-tools.png);
  background-repeat: no-repeat;
  background-position: center left;
  left: 0;
  bottom: 0;
}

.author-favorite-tools ul {
  padding: 0;
}

.author-favorite-tools ul li {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  list-style-type: none;
}

.author-favorite-tools,
.author-expertise {
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 20px;
  height: 100%;
}

.author-about {
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.author-details {
  box-shadow: 0px 0px 10px 0px #9999994a;
  border-radius: 20px;
}

.author-details img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.author-expertise .expertise-title {
  position: relative;
  padding-left: 35px;
  color: #000000;
  font-size: 22px;
  font-weight: 600;
}

.author-expertise .expertise-title::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../img/expertise.png);
  background-repeat: no-repeat;
  background-position: center left;
  left: 0;
  bottom: 0;
}

.author-expertise ul {
  padding: 0;
}

.author-expertise ul li {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  list-style-type: none;
}

.author-personal-details .author-title {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  background-color: #333333;
  padding: 4px 20px;
  border-radius: 20px;
  width: fit-content;
  margin-top: -35px;
}

.author-personal-details .page-title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.author-personal-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.author-designation p {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
}

.social-media-links {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
}

.social-media-links li {
  width: 30px;
  height: 30px;
  background-color: #CDEFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  transition: 0.5s ease-in;
}

.social-media-links li:hover {
  background-color: #006698;
  transition: 0.5s ease-in;

}

.social-media-links li i {
  color: #006698;
  transition: 0.5s ease-in;
}

.social-media-links li:hover i {
  color: #fff;
  transition: 0.5s ease-in;
}

.author-email {
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
  padding: 8px;
  color: #fff;
  width: 100%;
  display: block;
  margin-top: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding: 15px 0px;
}

.author-email:hover {
  color: #fff;
}

.articals-title {
  color: #000;
  font-size: 36px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 20px;
}


/*Careers Page*/

#join {
  background: rgb(0, 151, 0);
  background: linear-gradient(293deg, rgba(0, 151, 0, 0.05374649859943981) 20%, rgba(0, 129, 153, 0.14338235294117652) 61%);
  padding-bottom: 0;
}

#join .join-text p {
  font-size: 18px;
}

#join .join-text span,
#join .join-text a {
  font-size: 20px;
  font-weight: 500;
}

#join .join-br {
  display: none;
}

#join .join-text a {
  padding-left: 5px;
  text-decoration: underline;
}

#join .join-img img {
  width: 100%;
}


.talk-main {
  text-align: center;
  background-image: url(../img/Group-1-1.png);
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  background-size: cover;
  border-radius: 30px;
}

.talk-heading {
  margin-top: 20px;
}

.talk-heading h2 {
  color: #FFF;
  font-size: 32px;
  font-weight: 800;
  line-height: 35px;
}

.talk-content {
  margin-top: 20px;
}

.talk-content p {
  text-align: center;
  color: #FFF;
  font-family: "DM Sans", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.talk-btn {
  margin-top: 6%;
  margin-bottom: 2%;
}

.talk-btn a {
  font-family: "DM Sans", Sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  fill: #090;
  padding: 15px;
  color: #090;
  background-color: #FFF;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 0 20px 0 #FFF;
}

.talk-btn i {
  background: green;
  padding: 3px;
  font-size: 14px;
  border-radius: 26px;
  color: white;
  height: 20px;
  width: 20px;
}

.talk-btn:nth-child(2) a {
  margin-left: 15px;
}

/* Comment Form */
.comment-form .comment-form-comment label {
  position: relative;
  display: block;
  clear: both;
}

form#commentform textarea#comment {
  color: #777;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid #E0E0E0;
  font-weight: 700;
  background: #f9f9f9;
}

form#commentform .submit {
  background: rgb(0, 0, 0);
  background: linear-gradient(269deg, rgba(0, 151, 0, 1) 9%, rgba(0, 102, 153, 1) 81%);
  padding: 8px 20px;
  font-size: 18px;
  color: #fff;
  border-radius: 10px;
  border: none;
}

form#commentform p.comment-form-author,
form#commentform p.comment-form-email,
form#commentform p.comment-form-url {
  width: 32%;
  float: left;
  margin-right: 1%;
}

form#commentform input#author:focus-visible,
form#commentform input#email:focus-visible,
form#commentform input#url:focus-visible,
form#commentform textarea#comment:focus-visible {
  outline: none;
}

form#commentform input#author,
form#commentform input#email,
form#commentform input#url {
  border: 1px solid #E0E0E0 !important;
  font-weight: 700;
  background: #f9f9f9;
  border-radius: 0;
  padding: 10px 20px;
  border: none;
  font-weight: 700;
  font-size: 13px !important;
  width: 100%;
}

.comment-form-single h3 {
  font-weight: 600;
  font-size: 30px;
}

/* About Us */
.our-approach p {
  font-weight: 400;
  color: #333333;
  font-size: 18px;
}

.our-approach {
  background-image: url(../img/P_design.png);
  background-repeat: no-repeat;
  background-position: 10% center;
}

.making-an-impact p {
  font-weight: 400;
  color: #333333;
  font-size: 18px;
}

.making-an-impact {
  background-image: url(../img/Vector-right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-position-x: 91%;
}

.automated-workflows .section-title p {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
}

.about-workflow {
  height: 240px;
}

.ready-to-explore-top {
  padding-top: 440px;
}

.ready-to-explore .ready-to-explore-bg {
  background-color: #009800;
  padding: 40px;
  border-radius: 40px;
  position: relative;
}

.ready-to-explore .ready-to-explore-bg:before {
  content: "";
  position: absolute;
  background-image: url(../img/Vector-ready-to-explore.png);
  background-repeat: no-repeat;
  width: 260px;
  height: 300px;
  background-size: contain;
  right: -40px;
  bottom: 0;
}

.ready-to-explore h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.ready-to-explore p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

.ready-to-explore a {
  background-color: #006699;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 30px;
  border-radius: 20px;
  border: none;
}

/* Our partnership */
.partnership {
  background-color: #F6FCFF;
}

.partnership .partnership-box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #9999994a;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.partnership .partnership-logo img {
  width: 175px;
  height: 58px;
}

.partnership .partnership-logo {
  background-color: #F2F2F2;
  border-radius: 10px;
  padding: 30px 0px;
  width: 100%;
  margin-bottom: 10px;
}

.partnership h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

.partnership p {
  font-size: 18px;
  font-weight: 400;
  color: #787878;
}

/* Our client */
.clients .client-info {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.clients .client-info h3 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
}

.clients .client-info h6 {
  font-size: 22px;
  font-weight: 600;
  color: #006698;
}

.clients .client-info p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

/* team */
.team .clients-box {
  box-shadow: 0px 0px 10px 0px #9999994a;
  height: 100%;
}

.clients h4 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.clients .client-info p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.clients .team-member {
  padding: 10px;
}

.category header.page-header {
  display: none;
}

/* Thankyou */
.Thank-You h2 {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  margin: 20px 0px;
  font-family: 'Uncut Sans';
}

.Thank-You h3 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  margin: 20px 0px;
  font-family: 'Uncut Sans';
}

.Thank-You .Thank-You-Button a {
  background: #009800;
  color: #fff;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 20px;
  border-radius: 10px;
  font-family: 'Uncut Sans';
}

.Thank-You .social-links {
  display: flex;
  justify-content: center;
}

.Thank-You-Content {
  text-align: center;
}

/* Copilot */
.ready-to-experience-bg {
  background-color: #009800;
  padding: 60px;
  color: #fff;
  border-radius: 20px;
  background-image: url(../img/Vector-ready-to-explore.png);
  background-repeat: no-repeat;
  background-position: center right;
}

.ready-to-experience-bg h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
}

.ready-to-experience-bg p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.ready-to-experience-bg .ready-to-experience-btn {
  margin: 20px 0px 0px;
}

.ready-to-experience-bg .ready-to-experience-btn a {
  background-color: #006699;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 30px;
  border-radius: 20px;
  border: none;
}
.sharepoint-premium li {
  position: relative;
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
}
.sharepoint-premium li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -22px;
  top: 6px;
  display: flex;
  align-items: center;
  border-radius: 50%;
    background: rgb(0, 0, 0);
    background: linear-gradient(274deg, rgba(0, 151, 0, 1) 0%, rgba(0, 102, 153, 1) 87%);
}
.inner-page-form ul{
  padding: 0;
}
.inner-page-form li{
  list-style-type: none;
}
.inner-page-form h5{
  color: #006698;
  font-size: 18px;
  font-weight: 600;
}