/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# 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 #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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: #106eea;
  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: #3284f1;
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #335a93;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# 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.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 60px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# 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: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #106eea;
}

.navbar .dropdown 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 .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.butn {
  padding: 10px;
  background-color: #002bff;
  text-align: center;
  color: #fff !important;
  border-radius: 50px;
  display: none !important;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

.dsktp-butn {
  padding: 10px 20px;
  background-color: #0099d8;
  text-align: center;
  color: #fff !important;
  border-radius: 50px;
  margin-bottom: 0px !important;
  list-style: none;
	text-transform: uppercase;
}

.dsktp-butn:hover {
  background-color: #333;
}

.dsktp-butn a {
  color: #fff !important;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .butn {
    padding: 10px;
    background-color: #0099d8;
    text-align: center;
    color: #fff !important;
    border-radius: 50px;
    display: block !important;
	  text-transform: uppercase;
  }

  .dsktp-butn {
    display: none !important;
  }
}

.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;
}

.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: 15px;
  color: #222222;
}

.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 .dropdown 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 .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/banner.jpg") top left;
  background-size: cover;
  position: relative;
}

#hero p {
  color: #fff;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #0dcaf0;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

.fx h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 20px;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  width: fit-content;
}



#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  border-radius: 50%;
  border: 1px solid white;
  border-radius: 20px;
}

#hero .btn-get-started:hover {
  background: #247cf0;
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

#hero .btn-watch-video:hover {
  color: #106eea;
}

#hero .btn-watch-video:hover i {
  color: #3b8af2;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-bg {
  background: url('../images/service-bg.jpg') no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #106eea;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 29px;
  font-weight: 500;
  margin: 0;
  color: #0260a3;
}

.breadcrumbs h1 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  color: #0260a3;
}


@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a,
.featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0px 10px 0px;
}

.mainImg {
  color: black;
  width: 100%;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.text-blk.headingText {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  color: #0869cb;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 5px;
  margin-left: 0px;
}

.allText {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  width: 40%;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.text-blk.subHeadingText {
  color: rgb(102, 102, 102);
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.text-blk.description {
  font-size: 18px;
  line-height: 26px;
  color: rgb(102, 102, 102);
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  font-weight: 400;
  padding-top: 20px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  text-align: justify;
}

.explore {
  font-size: 16px;
  line-height: 28px;
  color: rgb(102, 102, 102);
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(102, 102, 102);
  border-right-color: rgb(102, 102, 102);
  border-bottom-color: rgb(102, 102, 102);
  border-left-color: rgb(102, 102, 102);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  cursor: pointer;
  background-color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 8px;
  padding-right: 40px;
  padding-bottom: 8px;
  padding-left: 40px;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(176, 98, 255);
  color: white;
  border-top-width: initial;
  border-right-width: initial;
  border-bottom-width: initial;
  border-left-width: initial;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
}

.responsive-container-block.Container {
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  max-width: 1320px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
  flex-direction: row-reverse;
  margin-right: auto;
  margin-left: auto;
  position: static;
}

.allText.aboveText {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 40px;
}

.allText.bottomText {
  margin-top: 0px;
  margin-right: 40px;
  margin-bottom: 0px;
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.purpleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 470px;
  background: linear-gradient(#00b6fd, #004bf9);
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  bottom: -25px;
  left: -8%;
}

.purpleText {
  font-size: 18px;
  line-height: 26px;
  color: white;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.ultimateImg {
  width: 50%;
  position: relative;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    max-width: 850px;
  }

  .mainImg {
    width: 55%;
    height: auto;
  }

  .allText {
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-right: auto;
    margin-left: auto;
  }

  .responsive-container-block.Container {
    max-width: 830px;
  }

  .allText.aboveText {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .allText.bottomText {
    margin-top: 30px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .allText.aboveText {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .text-blk.subHeadingText {
    text-align: left;
    font-size: 26px;
    line-height: 32px;
  }

  .text-blk.description {
    text-align: left;
    line-height: 24px;
  }

  .explore {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .responsive-container-block.Container {
    justify-content: space-evenly;
  }

  .purpleBox {
    bottom: 10%;
  }

  .responsive-container-block.Container.bottomContainer {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    max-width: 930px;
  }

  .allText.bottomText {
    width: 40%;
  }

  .purpleBox {
    bottom: auto;
    left: -10%;
    top: 70%;
  }

  .mainImg {
    width: 100%;
  }

  .text-blk.headingText {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .allText {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }

  .responsive-container-block.Container {
    flex-direction: column;
    height: auto;
  }

  .text-blk.headingText {
    text-align: center;
  }

  .text-blk.subHeadingText {
    text-align: center;
    font-size: 24px;
  }

  .text-blk.description {
    text-align: center;
    font-size: 18px;
  }

  .allText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .allText.aboveText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    margin-right: auto;
    margin-left: auto;
  }

  .responsive-container-block.Container.bottomContainer {
    margin-right: auto;
    margin-left: auto;
  }

  .allText.bottomText {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .mainImg {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: -70px;
    margin-left: 0px;
  }

  .responsive-container-block.Container.bottomContainer {
    flex-direction: column;
  }

  .ultimateImg {
    width: 100%;
  }

  .purpleBox {
    position: static;
  }

  .allText.bottomText {
    width: 100%;
    align-items: flex-start;
  }

  .text-blk.headingText {
    text-align: left;
  }

  .text-blk.subHeadingText {
    text-align: left;
  }

  .text-blk.description {
    text-align: left;
  }

  .ultimateImg {
    position: static;
  }

  .mainImg {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .ultimateImg {
    position: relative;
  }

  .purpleBox {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: 0px;
    top: 80%;
  }

  .allText.bottomText {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.Container {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .mainImg {
    width: 100%;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 25px;
    padding-bottom: 10px;
    padding-left: 25px;
  }

  .text-blk.subHeadingText {
    font-size: 24px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 28px;
  }

  .text-blk.description {
    font-size: 16px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 22px;
  }

  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 100%;
  }

  .allText.bottomText {
    margin-top: 50px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding: 0 0 0 0;
    margin: 30px 0 0 0;
  }

  .ultimateImg {
    position: static;
  }

  .purpleBox {
    position: static;
  }

  .stars {
    width: 55%;
  }

  .allText.bottomText {
    margin-top: 75px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
  }

  .purpleText {
    font-size: 16px;
    line-height: 22px;
  }

  .explore {
    padding: 6px 35px 6px 35px;
    font-size: 15px;
  }
}

.fraud-card {
  background: linear-gradient(to bottom, #1e1d22, #313036);
  border-radius: 15px;
  position: relative;
  padding: 45px 15px 20px 15px;
  margin: 20px 10px 0px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fraud-card:hover {
  background: linear-gradient(to bottom, #00b4fd, #004cf9);
}

.fraud-card-icon {
  background-color: #1e1d22;
  border: 5px solid #000000;
  border-radius: 100%;
  padding: 16px 10px;
  position: absolute;
  top: -30px;
  text-align: center;
}

.fraud-card-icon img {
  width: 80%;
}

.fraud-arrow-icon {
  background-color: #ffffff;
  border-radius: 100%;
  padding: 10px 10px;
  position: absolute;
  bottom: -23px;
  text-align: center;
}

.fraud-card h2 {
  color: white;
  font-size: 25px;
  padding: 20px;
  text-align: center;
  font-weight: lighter;
}

.about_card {
  margin-top: 40px;
  border: 1px solid black;
  position: relative;
  padding: 25px;
  background: hsl(197.08deg 100% 49.61%);
  overflow: hidden;
  border-radius: 1rem;
  min-height: 424px;
}

.about_card::before {
  content: "";
  width: 1000px;
  height: 1000px;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: rotating 2s infinite cubic-bezier(0.45, 0, 0.55, 1);
  transform-origin: center;
  background: conic-gradient(rgba(255, 255, 255, .6), transparent, transparent, rgba(255, 255, 255, .3), transparent, transparent, rgba(255, 255, 255, .6))
}

.about_card::after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  left: 4px;
  top: 4px;
  background: inherit;
  border-radius: .8rem;
  z-index: 1;
}

.about_card h2 {
  color: #fff;
  font-size: 25px;
}

.about_card p {
  color: #fff;
  font-size: 16px;
}

.about-content {
  position: relative;
  z-index: 10;
}

@keyframes rotating {
  from {
    transform: translate(-500px, -500px) rotate(0deg);
  }

  to {
    transform: translate(-500px, -500px) rotate(360deg);
  }
}

.about {
  background: linear-gradient(#00b6fd, #004bf9);
  padding: 30px 0px 50px 0px;
  color: #fff;
  font-size: 17px;
}

#about-core-services {
  padding: 10px 0px 45px 0px;
}

.about-core-heading {
  text-align: center;
  margin-top: 10px;
}

.about-core-card {
  width: 100%;
  height: 100%;
  padding: 1em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgb(0 0 0 / 25%);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  margin: 20px 0px;
  text-align: center;
}

.about-core-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#0050fa, rgb(0 178 253));
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.about-core-card h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.about-core-card p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.about-core-card .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.about-core-card:hover:after {
  top: 0%;
}

.about-core-card .icon-wrapper {
  background-color: #ffffff;
  color: rgb(255, 23, 131);
}

.about-core-card:hover .icon-wrapper {
  color: #0dcaf0;
}

.about-core-card:hover h3 {
  color: #ffffff;
}

.about-core-card:hover p {
  color: #f0f0f0;
}

#about button {
  background: #fc6a59;
  border: 0px;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}




blockquote {
  padding: 20px 30px 20px 30px;
  margin: 50px auto;
  position: relative;
  background-color: white;
}

blockquote::after {
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  background: linear-gradient(135deg, #00b4fd, #004ef9);
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: -1;
}

blockquote::before {
  content: '';
  height: calc(100% + 6px);
  width: calc(100% + 6px);
  ;
  display: block;
  background: linear-gradient(135deg, #00b4fd, #004ef9);
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: -2;
}

/*--------------------------------------------------------------
# Who We Are
--------------------------------------------------------------*/
.who-we-are {
  background: url('../images/who-we-are-bg.png');
  background-size: cover;
  position: relative;
}

#about h3 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  color: white;
}


.who-we-are h3 {
  text-transform: uppercase;
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;

  color: #0869cb;
  padding: 10px 0px;
}


.who-we-are p {

  font-size: 19px;
  text-align: justify;

}

.who-we-are h1 {
  font-size: 45px;
  line-height: 55px;
  font-weight: bold;
  color: rgb(31, 31, 31);
}

.who-btn {
  background: linear-gradient(#00b6fd, #004bf9);
  border-radius: 20px;
  padding: 10px 20px;
  color: white;
  margin-top: 50px;
}

.who-we-are a:hover {
  color: yellow;
}


.our-forensics {
  background-image: url('../images/our-image.jpg');
  text-align: center;
  color: #ffffff;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-forensics h1 {
  font-size: 40px;
}

/*--------------------------------------------------------------
# Case Studies
--------------------------------------------------------------*/
#case-studies {
  padding: 20px 0px;
  margin-bottom: 20px;
}

.case-study-heading p {
  color: #0869cb;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.case-study-heading h3 {
  color: #171717;
  font-size: 40px;
  line-height: 50px;
}

.case-study-text {
  display: flex;
  align-items: center;
  color: #606b75;
}

.borderd-box {
  border: 1px solid rgba(128, 128, 128, 0.458);
  position: relative;
}

.borderd-box-content {
  padding: 20px;
  background-color: #fff;
  position: relative;
  right: -20px;
  bottom: -20px;
  min-height: 290px;
}

.borderd-box-content h1 {
  font-size: 25px;
  color: #0f284a;
  font-weight: 400;
}

.borderd-box-content ul {
  padding: 0px;
  margin-bottom: 0px;
}

.borderd-box-content li {
  list-style: none;
}

.borderd-box-content li a {
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #222222;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e2eefd;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #106eea;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: left;
  background: #fafafa;
}

.clients h1 {
  font-size: 58px;
  font-weight: 300;
}

.clients h2 {
  font-size: 23px;
  font-weight: 500;
  padding-top: 20px;
}

.clients img {
  /* max-width: 45%;*/
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

#clients button {
  background: #fc6a59;
  border: 0px;
  font-size: 18px;
  padding: 10px 20px;
  color: #fff;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#service-text {
  padding: 30px 0px;
  background: url('../images/service-text-bg.png');
}

.service-text-container {
  border-radius: 10px;
  box-shadow: 4px 1px 13px 2px grey;
  padding: 20px;
  background: #3a3a3c;
  color: white;
}

#services-section {
  background: #3a3a3c;
  padding: 50px 0px;
}

.service-choose {
  text-align: center;
  color: #fff;
  font-size: 27px;
}

#service-text h2 {
  font-size: 27px;
}

.choose-card {
  border: 0;
  width: 100%;
  margin-inline: auto;
}

.choose-container-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(71deg, #0805099e, #1a171c87, #121212);
  background-clip: padding-box;
  border-radius: 45px;
  padding: 40px;
  min-height: 461px;
  margin: 10px 0px;

  img {
    margin-bottom: 32px;
  }
}

.bg-green-box {
  position: relative;
}

.bg-green-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
}

.bg-green-box::after {
  background: linear-gradient(71deg, #0d1212, #3da077, #0d1212);
}

.choose-card-title {
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-style: normal;
  font-size: 28px;
  padding-bottom: 8px;
}

.choose-card-description {
  font-weight: 600;
  line-height: 32px;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 16px;
  max-width: 470px;
}

.services .icon-box {
  text-align: center;
  border: 1px solid #e2eefd;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: #3b8af2;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
/*.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

.team .member .social i {
  font-size: 18px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}
*/
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #106eea;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #3b8af2;
}

.pricing .featured h3 {
  color: #fff;
  background: #106eea;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: url('../images/footbg.jpg');
  color: #444444;
  font-size: 14px;
  background: #14191f;
}

#footer .rights ul {
  padding: 0px;
  margin: 0px;
}

#footer .rights ul li {
  list-style: none;
  color: #b4b4b4;
}

#footer .credits {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#footer .credits ul {
  padding: 0px;
  margin: 0px;
}

#footer .credits ul li {
  list-style: none;
  float: left;
  margin-left: auto;
  padding: 0px 5px;
}

#footer .credits ul li a {
  color: #b4b4b4;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;

  background: #1c242c url("../images/footbg.jpg");
  background-size: cover;
  background-position: center;


}



#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#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 .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #a5acab;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}


.wrap {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.item1 {
  width: 250px;
  height: 50px;
  margin: 10px 0px 0px 0px;
  position: relative;
  font-size: 22px;
}

/*button {
  border: 1px solid white;
  background: #fc6a59;
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  color: #fff;
  transition: background 0.5s ease;
}

button:hover {
  background: #0390ca;
  color: white;
  font-weight: normal;
}

button:hover i {
  color: white;
}*/

.item1 i {
  color: #fff;
  margin-left: 20px;
  font-size: 20px;
}

.arrow1 {
  animation: slide1 1s ease-in-out infinite;
  margin-left: 9px;
}

@keyframes slide1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(10px, 0);
  }
}


/* New style here-----------------------------------------*/

.slick-slide {
  margin: 0px 0px;
  border-right: 0px solid #7c0404;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;

  padding: 0px 5px;
  margin-top: 15px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

#news h1 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 20px;
  background: #e7f1fd;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  width: fit-content;
}

.icon-bar {
  position: fixed;
  top: 38%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99999;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 6px 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 18px;
}

.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

.vertical-lines {
  height: 10px;
  color: orange;
  background-image: linear-gradient(90deg, currentColor, currentColor 33.33%, transparent 33.33%, transparent 100%);
  background-size: 3px 100%;
  width: 100%;
}

hr {
  border: 0;
  margin: 1.35em auto;
  max-width: 100%;
  background-position: 50%;
  box-sizing: border-box;
}

/*.news {
    background-color: rgba(0, 153, 216, 0.7);
    padding: 30px;
    margin: 30px 0px 30px 0px;
	height: 400px;
	display: block;
}*/

.news {
  /* background: #7c0404; */
  background: #36afe0 url("../images/news-bg.jpg");
  background-size: cover;
  /* background-position: right;*/
  background-repeat: no-repeat;
  padding: 30px;
  margin: 0px 0px 30px 0px;
  height: 490px;
}



.news h2 {
  font-size: 24px;
  padding: 15px 0px 0px 0px;
  color: #fff !important;
}

.news ul {
  padding: 10px 0px 10px 0px !important;
}

.news ul li {
  color: #00f0ff;
  line-height: 20px !important;
  background: none !important;
  padding: 15px 0px 15px 0px;
  border-bottom: solid 1px rgba(200, 232, 255, 0.4);
}

.news ul li a {
  color: #fff;
}

/* servicepage*/

#services {
  /* background: #7c0404; */
  background: #0094fc url(../images/industries-bg.png);
  background-size: cover;
  text-align: center;
  padding: 120px 0px 20px 0px;
}

#services h3 {
  text-transform: uppercase;
  font-size: 20px;
  color: white;
}

#services h2 {
  text-transform: uppercase;
  font-size: 35px;
  line-height: 40px;
  font-weight: bold;
  color: white;
}

#services p {
  color: #fff;
  line-height: 30px;
  padding: 0px 100px;
}

#services .card {
  position: relative;
  height: 463px;
  box-shadow: 5px 5px 20px;
  overflow: hidden;
  border: 0px;
  cursor: pointer;
  border-radius: 0px;
  background: transparent;
}

.industry-icon {
  width: auto;
}

.industry-card {
  background-color: #fff;
  padding: 20px 0px;
  border-radius: 10px;
  margin-top: 21px;
}

.industry-card-head {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0px 20px;
}

.industry-card h3 {
  font-size: 20px;
  color: #0e185a !important;
  text-align: left;
  text-transform: none !important;
  margin-bottom: 0px !important;
}

.indutry-card-body p {
  font-size: 16px;
  color: #151516 !important;
  margin-bottom: 0px !important;
  line-height: normal !important;
  text-align: left !important;
  margin-top: 10px;
  padding: 0px 20px !important;
}

.indutry-card-body a {
  text-align: left;
}

.indutry-card-body ul {
  padding: 0px 20px 20px 20px;
  margin-bottom: 0px;
  margin-top: 15px;
}

.indutry-card-body ul li {
  list-style: none;
  text-align: left;
}

.industry-img {
  border-radius: 0px 0px 10px 10px;
  overflow: hidden;
}

.industry-img img {
  width: 100%;
}





/* added css start */

.game-section {
  padding: 40px 0px 0px 0px;
}

.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
  display: -webkit-flex;
}

.game-section .item {
  margin: 0 15px 60px;
  /* width: 320px; */
  height: 400px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background: #343434 no-repeat center center / cover;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.game-section .item.active {
  /* width: 500px; */
  /*  box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 12px 40px 40px rgba(0, 0, 0, 0.25);*/
}

.game-section .item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.game-section .item-desc {
  padding: 0 24px 12px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transform: translateY(calc(100% - 54px));
  -webkit-transform: translateY(calc(100% - 54px));
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.game-section .item.active .item-desc {
  transform: none;
  -webkit-transform: none;
}

.game-section .item-desc p {
  opacity: 0;
  -webkit-transform: translateY(32px);
  transform: translateY(32px);
  transition: all 0.4s ease-in-out 0.2s;
  -webkit-transition: all 0.4s ease-in-out 0.2s;
}

.game-section .item.active .item-desc p {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.game-section .owl-theme.custom-carousel .owl-dots {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}


/******** Middle section CSS End *******/

/***** responsive css Start ******/

@media (min-width: 992px) and (max-width: 1199px) {
  h2 {
    margin-bottom: 32px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }

  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px;
  }

  .game-section .item {
    margin: 0 12px 60px;
    width: 260px;
    height: 360px;
  }

  .game-section .item.active {
    width: 400px;
  }

  .game-section .item-desc {
    transform: translateY(calc(100% - 46px));
    -webkit-transform: translateY(calc(100% - 46px));
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h2 {
    margin-bottom: 32px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 32px;
  }


  /* -------- Landing page ------- */
  .game-section {
    padding: 50px 30px 40px;
  }

  .game-section .item {
    margin: 0 12px 60px;
    width: 240px;
    height: 330px;
  }

  .game-section .item.active {
    width: 360px;
  }

  .game-section .item-desc {
    transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  h2 {
    margin-bottom: 20px;
  }

  h3 {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 24px;
  }


  /* -------- Landing page ------- */
  .game-section {
    padding: 30px 15px 20px;
  }

  .game-section .item {
    margin: 0 10px 40px;
    width: 200px;
    height: 280px;
  }

  .game-section .item.active {
    width: 100%;
    /* box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);*/
  }

  .game-section .item-desc {
    padding: 0 14px 5px;
    /* transform: translateY(calc(100% - 42px));
    -webkit-transform: translateY(calc(100% - 42px));*/
  }
}




/* added css end  */


/* industry-card section start */
.
/* industry-card section end */


.text-h1 {
  margin: 10px;
  /*text-transform: uppercase;*/
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.team .member {
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  overflow: hidden;
}

.team .member .member-info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 15px;
  color: #15222b;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
  color: #15222b;
  position: relative;
  padding-bottom: 10px;
  font-family: "Raleway", sans-serif;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #477392;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  margin: 4px 10px;
}

.project-details-popup .close {
  position: absolute;
  right: 0px;
  top: 0px;
  border: 0px;

}

.project-details-popup .prof-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -30px;
}

.project-details-popup .modal-header {
  margin: 0;
  padding: 0;
}

.project-details-popup .modal-header .header-img {
  width: 100%;
  max-width: 100%;
}

.team .member .pic {
  overflow: hidden;
}

.team {
  position: relative;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #7fa5c0;
  bottom: 0;
  left: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);

  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  background: #eee;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;

}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: var(--color-secondary);
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  transition: 0.3s;
  background: rgb(7, 173, 217);
  background: linear-gradient(0deg, rgba(7, 173, 217, 1) 0%, rgba(0, 227, 228, 1) 100%);
}

.features .nav-link.active h4 {
  color: #fff;
}

.features .nav-link.active i {
  color: #fff !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 27px;
  color: #485664;
  text-align: center;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.box {
  width: 100%;
  background: #FFF;
  margin: 10px auto;
  border: solid 1px #eee;
  box-shadow: 0 .2rem 1rem rgba(0, 0, 0, .10) !important;
}

.color-blue {
  color: #0d6efd !important;
}

.color-orange {
  color: #fd7e14 !important;
}

.color-red {
  color: #df1529 !important;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services1 .img {
  border-radius: 8px;
  overflow: hidden;
}

.services1 .img img {
  transition: 0.6s;
}

.services1 .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  position: relative;
  background: #ffffffcf;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 .2rem 1rem rgba(0, 0, 0, .10) !important;
}

.services1 .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #0ea2bd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid #fff;
}

.services1 .details h3 {
  color: #1a1f24;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services1 .details ul li {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.services1 .service-item:hover .details h3 {
  color: #0ea2bd;
}

.services1 .service-item:hover .details .icon {
  background: #fff;
  border: 2px solid #0ea2bd;
}

.services1 .service-item:hover .details .icon i {
  color: #0ea2bd;
}

.services1 .service-item:hover .img img {
  transform: scale(1.2);
}


.cta {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cta .container {
  padding: 10px;
  border-radius: 15px;
  background-image: linear-gradient(to top, #f9fbff, #f8fbff, #ecf4ff, #e7f0ff, #ecf3ff);
}

.inpage h2 {
  font-size: 18px;
  padding: 10px 0px 3px 0px;
  color: #065ca1;
  margin: 0px;
}

.section-title1 {
  text-align: center !important;
  padding-bottom: 30px;

}

.section-title1 p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

.section-title1 p {
  width: 80%;
}



.innerpage h2 {
  font-size: 18px;
  padding: 10px 0px 3px 0px;
  color: #065ca1;
  margin: 0px;
}

.innerpage ul {
  list-style: none;
  padding-left: 0px;
}

.innerpage ul li {
  opacity: 1;
  visibility: visible;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  background: url("../../assets/images/arrow-left-in.png") top left no-repeat;
  padding-left: 25px;

}

.inpage p {
  text-align: justify;
}

.innews ul {
  list-style: none;
  padding-left: 0rem;
}

.innews ul li {
  line-height: 20px;
  font-size: 14px;
  background: #eb7c0f;
  padding: 10px 17px 10px 17px;
  margin-top: 10px;
  border-left: solid 3px rgba(255, 255, 255, 0.15);
}

.innews ul li a {
  color: #fff;
}

.innews ul li:hover {
  background: #02abcd;
  color: #333 !important;
  display: block;
}

.innews ul li a:hover {
  color: #fff;
}

#career {
  padding: 30px 0px;
}


#career h2 {
  color: #074272;
  font-family: 'Open Sans';
  font-weight: 500;
  font-size: 35px;

  padding: 20px 0px;
  text-transform: uppercase;
}

#career p {
  color: #2d2d2d;
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 25px;
  /*padding: 15px 0px 0px 20px;*/

}

.rounded-grdnt {
  background: rgb(61, 138, 237);
  background: linear-gradient(0deg, rgba(61, 138, 237, 1) 0%, rgba(53, 198, 255, 1) 100%);
  color: #fff;
  border-radius: 41px;
  padding: 15px 40px !important;
  border: 0px;
  height: 53px;
  margin-right: 30px;
  -webkit-transition: background 1000ms linear;
  -moz-transition: background 1000ms linear;
  -o-transition: background 1000ms linear;
  -ms-transition: background 1000ms linear;
  transition: background 1000ms linear;
}

.rounded-grdnt:hover {
  background: -webkit-linear-gradient(#2871fa, #6717cd);
  color: #fff;
}

.rounded-grdnt .bi.bi-arrow-right {
  position: relative;
  animation-name: arrowanimation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes arrowanimation {
  0% {
    left: 0px
  }

  25% {
    left: 10px;
  }

  50% {
    left: 10px;
  }

  100% {
    left: 0px;
  }
}

.rounded-tel {
  margin-top: 10px;
}

.rounded-tel .bi.bi-telephone-fill {
  padding: 8px 13px;
  border-radius: 30px;
  border: 1px solid;
  font-size: 25px;
  background: -webkit-linear-gradient(#6717cd, #2871fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rounded-tel .bi.bi-telephone-fill:hover {
  background: -webkit-linear-gradient(#6717cd, #2871fa);
  -webkit-text-fill-color: white;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.bc {
  min-height: 200px;
  margin-bottom: 20px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background: #3a3a3c !important;
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  width: 100%;
  background-color: #1f272a;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.info-item a {
  color: #fff;
}


.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: #fff;
  color: #0f76bf;
}

.contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #0f76bf;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #034676;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact3 h6 {
  color: #034676;
}

.contact3 p {
  font-size: 15px;
}

.certi {
  padding: 20px;

  background-color: #ffedec;
  border-radius: 12px;
  box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
  border: 8px #fff solid;
}

.certi ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0rem;
}

.certi ul li {
  line-height: 37px;
  background: url("../../assets/images/success.png") center left no-repeat;
  padding-left: 35px;
}

.ser ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0rem;
}

.ser ul li {
  line-height: 37px;
  background: url(../../assets/images/success.png) top left no-repeat;
  padding-left: 35px;
}


@media only screen and (min-width: 576px) and (max-width: 767px) {

  .services-area .single-services {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {

  .services-area .single-services {
    margin-bottom: 30px;
  }
}


.services-area .single-services .services-img img {
  width: 100%;
}


.services-area .single-services .services-caption {
  position: relative;
  background: #1da7df;
  width: 100%;
  padding: 13px 9px 1px 32px;
  margin-top: 0px;

}

.services-area .single-services .services-caption p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.services-area h2 {
  font-size: 23px;

  color: #092c3f;
  font-weight: 900;
  padding: 10px 0px;
}

.services-area {
  background: #f7f7f7;
  padding: 30px 0px;

}

.mb-100 {
  margin-bottom: 20px;
}

.ch3 {
  background: #0dcaf0;
  border: solid 5px #1da7df;

}

.ben ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0rem;
}

.ben ul li {
  line-height: 30px;
  background: url(../../assets/images/right-arrows.png) top left no-repeat;
  padding-left: 25px;
}

.certi12 {
  /* padding: 20px; */
  /* background-color: #ffedec; */
  border-radius: 12px;
  box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
  border: 8px #fff solid;
}

.gv td {
  background: rgb(83 162 241 / 15%);
  color: #045181;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 15px 4px 15px;
  border: solid 1px #2786c1;
  font-family: verdana;
}

.vg {
  background: #00629e;
  background-image: linear-gradient(to top, #055bdc, #0065e4, #0070ec, #007af4, #0084fb);
}

.vg p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 2px 15px 4px 15px;
  text-transform: uppercase;
  margin: 0px;
}

.bgg {
  background: #eaeef6;
  padding: 20px 20px 0px 20px;
  background-image: linear-gradient(to top, #f9fbff, #f8fbff, #ecf4ff, #e7f0ff, #ecf3ff);
  box-shadow: 0 30px 30px -25px rgba(65, 51, 183, 0.25);
}

.vb {
  background: rgba(13, 110, 253, .25);
}

.bgg {
  margin-top: 20px;
}

.thin h2 {
  font-size: 23px;
  color: #092c3f;
  font-weight: 900;
  padding: 10px 0px;
}

.thin p {
  text-align: justify;
  margin-bottom: 0px;
}

.sky {
  background: #e5eff9;
  display: block;
  padding: 20px;
  font-size: 16px !important;
}

.yellow {
  background: #ffffcc;
  display: block;
  padding: 15px;
  font-style: italic;
  text-align: center;
}

.banner {
  position: fixed;
  top: 80px;
  right: 0;
  width: 45px;
  transition: width 200ms ease-in-out;
  z-index: 9999;
}

.banner.expanded {
  width: 240px;
}

.banner.expanded .banner-small {
  display: none;
}

.banner.expanded .banner-large {
  display: block;
}

.banner-small {
  cursor: pointer;
}

.banner-small .text {
  width: 100%;
  height: auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f57812;
  font-size: 16px;
  letter-spacing: 1.2px;
  color: #ffffff;
  text-transform: uppercase;
  transform: rotate(-180deg);
  writing-mode: tb-rl;


}

.banner-large {
  display: none;
  width: 240px;
}

.banner-large .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  padding: 0 20px;
  background: #f57812;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4em;
  -webkit-box-shadow: -12px 12px 5px -1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: -12px 12px 5px -1px rgba(0, 0, 0, 0.13);
  box-shadow: -12px 12px 5px -1px rgba(0, 0, 0, 0.13);
  border-left: 4px #db6709 solid;
}

.banner-large .join {
  display: flex;
  width: 100%;
  margin-top: 15px;
  justify-content: center;
}

.banner-large .join input {
  border: none;
  width: 65%;
  padding: 8px 12px;
  font-size: 12px;
  font-family: sans-serif;
}

.banner-large .join .button {
  display: flex;
  width: 35%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #252525;
  cursor: pointer;
}

.banner-large .bottom {
  height: 45px;
  padding: 6px 30px 0 30px;
  background: #ffffff;
  font-size: 12px;
  line-height: 1.4em;
  text-align: center;
}

.banner-large .bottom span {
  color: #f57812;
}

.banner-large .close {
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
  padding: 0px 0px 0px 5px;
}

.banner ul {
  list-style: none;
  padding: 30px 0px 0px 0px;
}

.banner ul li {
  text-align: left;
  display: block;
  color: #fff;
  font-size: 15px;
  text-transform: capitalize;
  line-height: 40px;
  border-bottom: dashed 1px #fbc395;
}

.banner ul li a {
  color: #fff;
}

.banner ul li a:hover {
  color: yellow;
}

#expertise h2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 26px;
}




.inner-page {
  background: rgb(7, 127, 204);
  background: linear-gradient(0deg, rgba(7, 127, 204, 1) 0%, rgba(0, 171, 195, 1) 70%);

  padding-bottom: 10px;
}

.inner-page img {
  padding-top: 20px;
}

.inner-page h2 {
  font-size: 26px;
  padding: 40px 0px 20px 0px;
  color: #fff;
  margin: 0px;
}

/*.inner-page img {
  position: absolute;
  bottom: 0;
}*/



.course {
  background-color: #f3f3f3;
  border-radius: 10px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  max-width: 100%;
  margin: 0px 0px 20px 0px;
  overflow: hidden;

}



.course h3 {
  letter-spacing: 1px;
  margin: 10px 0;
  font-size: 19px;
}

.course-preview {

  color: #fff;
  padding: 30px;
  width: 304px;
  font-size: 14px;
  background: rgb(7, 127, 204);
  background: linear-gradient(0deg, rgba(7, 127, 204, 1) 0%, rgba(0, 171, 195, 1) 70%);
}



.course-info {
  padding: 30px;
  position: relative;
  width: 100%;
}




/* Cards */
.postcard {
  flex-wrap: wrap;
  display: flex;
  box-shadow: 0 4px 21px -12px rgba(0, 0, 0, 0.66);
  border-radius: 10px;
  margin: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
  color: #ffffff;
}

.postcard.light {
  background-color: #e1e5ea;
}

.postcard .t-dark {
  color: #18151f;
}

.postcard a {
  color: inherit;
}

.postcard h1,
.postcard .h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.postcard .small {
  font-size: 80%;
}

.postcard .postcard__title {
  font-size: 1.75rem;
}

.postcard .postcard__img {
  max-height: 180px;
  width: 100%;
  object-fit: cover;
  position: relative;
}

.postcard .postcard__img_link {
  display: contents;
}

.postcard .postcard__bar {
  width: 50px;
  height: 5px;
  margin: 0px 0px 30px 0;
  border-radius: 5px;
  background-color: #424242;
  transition: width 0.2s ease;
}

.postcard .postcard__text {
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.postcard .postcard__preview-txt {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  height: 100%;
}

.postcard .postcard__tagbox {
  display: flex;
  flex-flow: row wrap;
  font-size: 14px;
  margin: 20px 0 0 0;
  padding: 0;
  justify-content: center;
}

.postcard .postcard__tagbox .tag__item {
  display: inline-block;
  background: rgba(83, 83, 83, 0.4);
  border-radius: 3px;
  padding: 2.5px 10px;
  margin: 0 5px 5px 0;
  cursor: default;
  user-select: none;
  transition: background-color 0.3s;
}

.postcard .postcard__tagbox .tag__item:hover {
  background: rgba(83, 83, 83, 0.8);
}

.postcard:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(-70deg, #424242, transparent 50%);
  opacity: 1;
  border-radius: 10px;
}

.postcard:hover .postcard__bar {
  width: 100px;
}

@media screen and (min-width: 769px) {
  .postcard {
    flex-wrap: inherit;
  }

  .postcard .postcard__title {
    font-size: 26px;
  }

  .postcard .postcard__tagbox {
    justify-content: start;
  }

  .postcard .postcard__img {
    max-width: 300px;
    max-height: 100%;
    transition: transform 0.3s ease;
  }

  .postcard .postcard__text {
    padding: 3rem;
    width: 100%;
  }

  .postcard .media.postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    background: #18151f;
    top: -20%;
    height: 130%;
    width: 55px;
  }

  .postcard:hover .postcard__img {
    transform: scale(1.1);
  }

  .postcard:nth-child(2n+1) {
    flex-direction: row;
  }

  .postcard:nth-child(2n+0) {
    flex-direction: row-reverse;
  }

  .postcard:nth-child(2n+1) .postcard__text::before {
    left: -21px !important;
    transform: rotate(4deg);
  }

  .postcard:nth-child(2n+0) .postcard__text::before {
    right: -12px !important;
    transform: rotate(-4deg);
  }
}

@media screen and (min-width: 1024px) {
  .postcard__text {
    padding: 2rem 3.5rem;
  }

  .postcard__text:before {
    content: "";
    position: absolute;
    display: block;
    top: -20%;
    height: 130%;
    width: 55px;
  }

  .postcard.dark .postcard__text:before {
    background: #18151f;
  }

  .postcard.light .postcard__text:before {
    background: #e1e5ea;
  }
}

/* COLORS */


.postcard .postcard__tagbox .blue.play:hover {
  background: #0076bd;
}

.blue .postcard__title:hover {
  color: #0076bd;
}

.blue .postcard__bar {
  background-color: #0076bd;
}

.blue::before {
  background-image: linear-gradient(-30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}

.blue:nth-child(2n)::before {
  background-image: linear-gradient(30deg, rgba(0, 118, 189, 0.1), transparent 50%);
}






@media screen and (min-width: 769px) {

  .blue::before {
    background-image: linear-gradient(-80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }

  .blue:nth-child(2n)::before {
    background-image: linear-gradient(80deg, rgba(0, 118, 189, 0.1), transparent 50%);
  }


}


.serviceBox {
  border: 2px solid #1059c5;
  background: #fff;
  padding: 20px 39px;
  margin: 10px 15px 30px 0;
  border-radius: 5px 5px;
  position: relative;
  z-index: 1;
  min-height: 200px;
}

.serviceBox:before,
.serviceBox:after {
  content: "";
  background: #009bdb;
  width: 100%;
  height: 100%;
  border-radius: 5px 5px;
  position: absolute;
  top: -20px;
  right: -16px;
  z-index: -1;
}

.serviceBox .title {
  color: #2c4e7e;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 7px;
}

.serviceBox .description {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-align: justify;
  margin: 0;
}

.serviceBox:after {
  background: #fff;
  top: -10px;
  left: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
  display: block;
  text-transform: capitalize;
  color: #063246;
}


.sertop h2 {
  text-align: center;
  padding-bottom: 10px;
  font-size: 26px;
}

.sertop p {
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
}

#beyond h2 {
  text-align: center;
  padding-bottom: 10px;
  font-size: 26px;
}

#beyond h4 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
}

#hp h2 {
  text-align: center;
  padding-bottom: 10px;
  font-size: 26px;
}

#hp h4 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
}







.solu {
  display: inline-block;
  width: 100%;
  padding: 30px 20px 40px;
  position: relative;
  vertical-align: top;
  margin: 15px 0px;
  font-family: 'helvetica', san-serif;
  min-height: 193px;
  background: linear-gradient(133deg, #009bdb, #021833);
  text-align: left;
  border-radius: 0px 10px 0px 10px;
  box-shadow: #00000069 0px 10px 12px;
}

.solu img {
  margin: 0;
  position: absolute;
  opacity: 0.2;
  top: 50px;
  right: 10px;
  transition: all 0.3s ease-in-out;
  width: 20%;
}

.solu h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}

.solu p {
  color: #ffffff;
  margin-top: 10px;
}

.solu::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  transform: skew(2deg, 2deg);
  background: #C9FFBF;
  background: -webkit-linear-gradient(to right, #021e3b, #0595d1);
  background: linear-gradient(to right, #021e3b, #0595d1);
}

.solu::after {
  content: '';
  position: absolute;
  width: 40%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.02);
}

.auto-solution {
  border-radius: 10px;
  filter: drop-shadow(0 5px 10px 0 #ffffff);
  min-height: 150px;
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: 0.6s ease-in;
  margin-top: 20px;
  box-shadow: inset 5px 4px 4px #00000073;
  border-bottom: #0680cb 10px solid;
}

.auto-solution::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: -15px;
  background: #014972;
  height: 150px;
  width: 25px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}

.auto-solution:hover::before {
  transition-delay: 0.2s;
  transform: scale(40);
}

.auto-solution:hover {
  color: #ffffff;
}

.auto-solution h3 {
  font-size: 17px;
}

.space-between {
  margin: 30px 0px;
}

.single-solution {
  padding: 15px;
  margin: 10px 0px;
  transition: all 0.5s;
  min-height: 160px;
  border-bottom: 5px solid #0680cb;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-solution h3 {
  font-size: 20px;
}

.single-solution img {
  position: absolute;
  bottom: 0;
  left: -50px;
  z-index: -1;
  transition: all 0.5s;
}

.single-solution:hover img {
  left: -20px;
}

.soltop h3 {
  /* font-size: 20px; */
  color: #ffffff;
  text-align: center;
}

#business {
  /* background: #7c0404; */
  background: url(../images/ser-bg.jpg);
  background-size: cover;
  background-position: center;
}

.single-testimonials-card {
  background: #0684cb;
  padding: 35px;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  overflow: hidden;
  min-height: 167px;
}

.single-testimonials-card h3 {
  color: #ffffff;
  font-size: 20px;
}

.single-testimonials-card p {
  color: #ffffff;
}

.single-testimonials-card .quote-shape {
  position: absolute;
  right: 45px;
  bottom: -20px;
}

.single-testimonials-card .quote-shape img {
  display: block;
  width: 100%;
}

#your-partner {
  /* background: #7c0404; */
  background: url(../images/ser-bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
}

#your-partner {
  background: url(../images/diagnol.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.transform-content {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #015784;
  padding: 50px;
  margin-left: -100px;
  margin-top: 100px;
}

#add_benefits {
  background-color: #015784;
}

#add_benefits .benefits_card {
  position: relative;
  min-height: 300px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: 0.5s;
  margin: 15px 0px;
}

/* 
#add_benefits .benefits_card:nth-child(1) .benefits_box .benefits_content a {
  background: #2196f3;
} */

#add_benefits .benefits_card .benefits_box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

#add_benefits .benefits_card .benefits_box:hover {
  transform: translateY(-20px);
}

#add_benefits .benefits_card .benefits_box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

#add_benefits .benefits_card .benefits_box .benefits_content {
  padding: 20px;
  text-align: center;
}

#add_benefits .benefits_card .benefits_box .benefits_content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

#add_benefits .benefits_card .benefits_box .benefits_content h3 {
  font-size: 1.8rem;
  color: #000000;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

#add_benefits .benefits_card .benefits_box .benefits_content p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.9);
  z-index: 1;
  transition: 0.5s;
}

.footer-links span a {
  color: #fff;
}

.footer-links span {
  color: #fff;
  margin-bottom: 0px;
  display: block;
  padding-bottom: 0px;
}

.glow-on-hover {
  width: 100%;
  height: 125px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;

  margin-top: 20px;

}

.glow-on-hover a {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

@media (min-width: 350px) and (max-width: 992px) {

  .fraud-card {
    margin: 66px 10px 0px 10px;
  }
}


}