
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --base-color: #FEE715;
  --moredark-gray: #313e3b;
  --dark-gray: #313e3b;
  --medium-gray: #828c8a;
  --extra-medium-gray: #aaaaaa;
  --primary-font:  "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  color: #838383;
}

a {
  color: #b6840d;
  text-decoration: none;
}

a:hover {
  color: #feb415;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", 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 #FEE715;
  border-top-color: #d2f9eb;
  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: #FEE715;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #101820;
  line-height: 0;
}

.back-to-top:hover {
  background: #FEE715;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #101820;
}

#header.header-transparent {
  background: #101820;
}

#header.header-scrolled {
  background: #101820;
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

.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: #1acc8d;
}

.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;
}
.navbtn_border {
  border: 2px #fff solid;
  border-radius: 30px 30px;
  color: #fff !important;
  margin-right: 15px !important;
}
.navbtn_border:hover {
  border: 2px #FEE715 solid;
  color: #FEE715 !important;
}

.navbtn_full {
  background:#FEE715;
  border-radius: 30px 30px;
  border: 2px #FEE715 solid;
  color: #101820 !important;
}
.navbtn_full:hover {
  border: 2px #fff solid !important;
  background:#fff;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 54, 70, 0.8);
  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 10px;
  border-radius: 8px;
  background-color: #101820;
  overflow-y: auto;

}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .navbtn_border {
  margin-right: 0px !important;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1acc8d;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background:#101820;
  position: relative;
  padding: 120px 0 0 0;
}

#hero:before {
  content: "";
  /*background: rgba(21, 55, 12, 0.91); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #FEE715;
}

#hero p.leadtext {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 20px;
  margin-top: 20px;
}

.btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #FEE715;
  border: 2px #FEE715 solid;
  position: relative;
}

.btn-get-started:hover {
  background: #FEE715;
  color: #101820;
}

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

.hero-img .video-box {
  background: url("../img/about.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.hero-img .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#FEE715 50%, rgba(242, 243, 200, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.hero-img .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #101820;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hero-img .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(245, 244, 215, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(229, 233, 192, 0);
}

.hero-img .play-btn:hover::after {
  border-left: 15px solid #afd115;
  transform: scale(20);
}

.hero-img .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.hero-img {
  position: relative;
}
.hero-img img:nth-child(2) {
  position: absolute;
  top: 18%;
  right: 0%;
  max-width: 26%;
}

.hero-img img:nth-child(3) {
  position: absolute;
  top: 0%;
  left: 0%;
  max-width: 32%;
}
.hero-img img:nth-child(4) {
  position: absolute;
  bottom: -1%;
  right: -3%;
  max-width: 37%;
}
.hero-img img:nth-child(5) {
  position: absolute;
  bottom: 1%;
  left: 8%;
  max-width: 30%;
}

.hero_text .icon-box .icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  transition: 0.5s;
  padding: 9px 13px;
  margin: 0px auto;
}

.hero_text .icon-box .icon i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.hero_text .icon-box:hover .icon {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}
.hero_text .icon-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-size: 15px;
}
.mr-4 {
  margin-left: -20px;
}

.hero_text .icon-box:hover .icon i {
  color: #fff;
}
.relative {
  position: relative;
}


.line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 48%;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
  -webkit-animation: drop 7s 0s infinite;
          animation: drop 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
          animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.line:nth-child(1) {
  margin-left: -39%;
}
.line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.line:nth-child(3) {
  margin-left: 37%;
}
.line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.leftminuspx {
  left: -18px;
  top: -188px;
}
.btmminuspx {
  right: -60px;
  bottom:-74px;
}
.minuspx {
  right: 0px;
  top: 25%;
}
.minuspxs {
  top: 25%;

}

.marquees-text {
  white-space: nowrap !important;
  color: rgba(211, 176, 37, .5);
  position: absolute !important;
  font-size: 11.25rem;
  line-height: 11.25rem;
  font-weight: 700;
}
.animation-rotation {
  animation: rotation 8s infinite linear;
}

@keyframes rotation{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(359deg)}}
.overlap-section {
  margin-top: -110px;
  float: right;
  margin-right: 0px;

}

@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 1460px) {
  .line:nth-child(1) {
    margin-left: -44%;
  }
  .line:nth-child(3) {
    margin-left: 44%;
  }
  .features .icon-box {
    padding: 20px 20px;
  }
  #hero h1 {
    line-height: 40px;
  }
}

@media (max-width: 1030px) {
  #hero {
    background-attachment: fixed;
  }
    .line:nth-child(1) {
      margin-left: -44%;
    }
    .line {
      left: 47%;
    }
    .line:nth-child(3) {
      margin-left: 50%;
    }
    #hero h1 {
      font-size: 45px;
      line-height: 25px;
    }
    #hero p.leadtext {
      margin-bottom: 30px;
      font-size: 18px;
      margin-top: 10px;
    }
}


@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }
  .hero-img {
    margin-top: 30px;
  }
  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero h1 {
    font-size: 40px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


@media (max-width: 575px) {
  .hero-img img:nth-child(4) {
    position: absolute;
    bottom: -1%;
    right: 0;
    max-width: 34%;
  }
  .hero-img img:nth-child(2) {
    position: absolute;
    top: 14%;
    right: 0%;
    max-width: 26%;
  }
}


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

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

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}




/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section.innerpage{
  padding: 80px 0px 0px;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f8f8;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--extra-medium-gray);
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #FEE715;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size:40px;
  font-weight: 700;
  letter-spacing: -1px !important;
  font-family: "Space Grotesk", sans-serif;
  color: #313e3b;
}
.relativebox {
  position: relative;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@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;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/


.about .icon-boxes h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}
.aboutcontainer p {
  color: var(--medium-gray);
  font-size: 16px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #003646;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #003646;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #003646;
  border-color: #003646;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1acc8d;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}
.usecase {
  padding-top: 2px;
  padding-bottom: 0px;
}
.usecase .iconcircle {
  background-color: #FEE715;
  border-radius: 2em;
  padding: 1em;
  display: flex;
  margin: 10px 0px;
  width: 55px;
  height: 55px;
}
.usecase .iconcircle i {
  font-size: 22px;
  line-height: 1;
  color: #101820;
}

.usecasehidden {
  overflow:inherit !important;
}



/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  background: #f3f8f8;
}
.features .icon-box {
  align-items: center;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border-radius: 10px !important;
  transition: ease-in-out 0.3s;
  z-index: 1;
  transition: all 0.3s ease-out;
  position: relative;
  overflow:hidden;
}
.features .icon-box:hover {
  background: #101820;
  color: #fff;
  transform: translateY(-5px) scale(1.005) translateZ(0);
}
.features .icon-box:hover .iconcircle {
  background:#f3f8f8;
  border: 2px #f3f8f8 solid;
}
.features .icon-box:hover .overlay {
  transform: scale(7) translateZ(0);
  background: var(--base-color);
}

.overlay {
  width: 70px;
  position: absolute;
  height: 70px;
  border-radius: 50%;
  background: #f3f8f8;
  top: 25px;
  left: 0px;
  right: 0px;
  z-index: 0;
  margin: 0px auto;
  transition: transform 0.3s ease-out;
}
.features .iconcircle {
  background-color:#f3f8f8;
  border: 3px #fff solid;
  border-radius: 2em;
  padding: 14px 14px 12px;
  display: table;
  margin: 10px auto;
  width: 55px;
  height: 55px;
  position:relative;
}

.features .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #101820
}

.features .icon-box h3 {
  font-weight:700;
  margin: 26px 0px 15px;
  padding: 0;
  line-height: 1;
  font-size: 22px;
  text-align: center;
  color: var(--dark-gray);
}
.features .icon-box p {
  font-weight:400;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  text-align: center;
  color: var(--medium-gray);
}

.features .icon-box h3 a {
  color:  var(--dark-gray);
  transition: ease-in-out 0.3s;
}

.features .icon-box:hover h3, .features .icon-box:hover a, .features .icon-box:hover p{
  color: #101820;
}
.relative {
  position: relative;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #1acc8d;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #313e3b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #313e3b;
}

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

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #1acc8d;
}

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

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: url("../img/scan2call-kit.webp ");
  background-position: center center;
  background-size: cover;
  position: relative;
}
.relativebox {
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.bg-gradient-black {
  background-image: linear-gradient(to right top,#003646, #04171d,#15110f,#003646,#04171d);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: .9;
}


.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 {
  margin: 0 auto;
}

.testimonials h3 {
  font-size:36px;
  margin: 10px 0 20px 0;
  color: var(--dark-gray);
  font-weight: 700;
}
.testimonials p {
  font-size: 18px;
  color: var(--dark-gray);
  margin: 10px 0px;
  font-weight: 500;
}


.testimonials .testimonial-item h4 {
  font-size: 16px;
  color: #fff;
  margin: 0 0 15px 0;
  font-weight: 500;
}

.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: 10px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FEE715;
}
.yellowtxt {
  background-color: #FEE715;
  color: #101820;
  padding: 5px 5px;
}
@media (max-width: 1390px) {
  .testimonials h3 {
    font-size: 30px;
  }
}

@media (max-width: 1290px) {
  .testimonials h3 {
    font-size: 30px;
  }
  .productkitbox {
    padding: 24px 30px;
  }
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product {
  background: #fff;
  position: relative;
}

.product .member {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.product .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.product .member img {
  max-width: 60%;
}

.product .member-info {
  position: relative;
  padding: 15px 15px;
}
.product .membertitle {
  background: #313e3b;
  padding: 10px 10px;
}
.product .cardbox h3 {
  font-weight: 700;
  font-size: 34px;
  color: #313e3b;
  position: relative;
  margin-top: 10px;
}
.product .cardbox p{
  color: #313e3b;
  font-weight: 400;
  font-size: 16px;
}
.product .cardbox ul li {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 15px;
}

.btnbox {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #101820;
  border: 2px #101820 solid;
}
.btnbox:hover {
  background: #FEE715;
  color: #101820;
  border: 2px #101820 solid;
}

.btnbox_border {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  transition: 0.5s;
  color: #190f0f;
  background: transparent;
  border: 2px #190f0f solid;
}
.btnbox_border:hover {
  background:#FEE715;
  color: #190f0f;
  border: 2px #190f0f solid;
}
.btn-block {
  width:100%;
  display:block;
  text-align: center;
}


.product .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.product .member .social {
  margin-top: 10px;
}

.product .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.product .member .social a:hover {
  color: #1acc8d;
}

.product .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

.qrCard {
  padding: 20px 2px 2px;
  margin: 0px 5px 10px;
}
.qrCard1 {
  background: #FEE715;
}
.qrCard2 {
  background: #fe7332;
  
}
.qrCard2 .member-info p {
  color: #fff;
}
.qrCard3 {
  background: #3584fa;
}
.qrCard3 .member-info p {
  color: #fff;
}
.qrCard4 {
  background: #99d28e;
}
.qr_productbox {
  position: relative;
}
.qr_product {
  position: absolute;
  top: 35px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  width: 247px;
  transform: rotate(-30deg);
}
.productfullbox {
  background: #eee;
  border-radius: 30px 30px;
}
.containerinbox {
  margin-top: -120px;
  position: relative;
}
.designbox {
  position: absolute;
  background: #fbeeca;
  height: 420px;
  top: 110px;
  z-index: 0;
  border-radius: 30px 30px;
  background-image: radial-gradient(circle, #f0eadf 1px, rgba(0,0,0,0) 1px);
  background-size: 1rem 1rem;
}
.swipes .swiper-pagination {
  display:none !important;
}
.icon-boxes {
  position: relative;
}
.cardbox {
  padding: 70px 50px 50px;
}

.spriral1 {
  position: absolute;
  z-index: 99;
  top: 82px;
  right: 40px;
}
.spriral2 {
  position: absolute;
  z-index: 99;
  top: 15px;
  left: -449px;
}

.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.usercard .usecaseimg {
  position: relative;
  overflow:hidden;
}
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}
.swiper-wrapper .swiper-slide, .usercard .usecaseimg {
  background-size: cover;
  background-position: center;
}
.swipermain .swiper-slide:after, .usercard .usecaseimg:after {
  content: "";
  position: absolute;
    top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);

  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0.0) 100%
  );
}

/* Hover state - trigger effect */
.swipermain .swiper-slide:hover:after, .usercard .usecaseimg:hover:after {
  opacity: 1;
  left: 130%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}

/* Active state */
.swipermain .swiper-slide:active:after, .usercard .usecaseimg:active:after {
  opacity: 0;
}
.gallery-top {
  height: 795px;
  overflow: hidden;
}
.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  border: 3px transparent solid;
  border-radius: 10px 10px;
  cursor: pointer;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 3px var(--base-color) solid;
  outline: 2px #101820 solid;
}
section.product_container {
  background: #f3f8f8;
  padding: 80px 0px 120px;
}

.productbox h1{
  font-size: 40px;
  color: var(--moredark-gray);
  font-weight: 900;
  margin-top: 40px;
}
.productbox p{
  color: var(--moredark-gray);
  font-size: 16px;
}
.productbox p.pbold {
  font-weight: 700;
}

ul.review_star {
  margin: 0px 0px;
  padding: 0px 0px;
}
ul.review_star li {
  list-style: none;
  display: inline-block;
  margin: 10px 2px;
  color: #eb5624;
}
.text_highlight {
  background: var(--base-color);
  color: #101820;
  padding: 7px 10px;
  text-align: center;
  border: 1px #101820 solid;
  font-size: 16px;
}
ul.productlist {
  margin: 0px 0px;
  padding: 0px 0px;
}
ul.productlist li {
  width: 50%;
  float:left;
  list-style-type: none;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--moredark-gray);
}
.productlist .icon-box {
  width: 40px;
  height: 40px;
  border: 1px solid #eee;
  border-radius: 50px;
  transition: 0.5s;
  padding: 8px 12px;
  display: inline-block;
  background: #fff;
  margin-right: 5px;
}
.productlist .icon-box i{
  font-size: 17px;
  color: var(--moredark-gray);
}
.tableblock {
  display: table;
  width:100%;
}
.price-compare {
  text-decoration: line-through;
  text-decoration-color: #e37666;
}
.price {
  color:#101820;
  font-size: 22px;
}
.price-highlight {
    font-weight: 700;
    font-size: 26px;
    color: #101820;
}
.productkit_container {
  max-width: 746px;
  width:100%;
}
.productkitbox {
  background: #fbeeca;
  padding: 30px 40px;
  border-radius: 30px 30px;
  background-image: radial-gradient(circle, #dfe7f0 1px, rgba(0,0,0,0) 1px);
  background-size: 1rem 1rem;
}
.productkitbox:hover {
  border: 1px solid #ffffff44;
  box-shadow: 0 7px 50px 10px #000000aa;
  transform: scale(1.015);
  filter: brightness(1.3);
}
.productkitbox:hover:before {
  filter: brightness(0.5);
  top: -100%;
  left: 200%;
}
@media (max-width: 1410px) {
  .qr_product {
    width: 223px;
  }
}
@media (max-width: 1290px) {
  .qr_product {
    width: 223px;
  }
  .cardbox {
    padding: 110px 0px 50px 30px;
  }
  .spriral2 {                  
    left: -400px;
  }
}
@media (max-width: 1200px) {
  .qr_product {
    width: 180px;
    top: 40px;
  }
  .spriral1 {
    top: 60px;
    right: 35px;
    width: 100px;
  }
  .spriral2 {
    left: -321px;
    top: 30px;
  }
  .cardbox {
    padding: 125px 0px 50px 20px;
  }
  .product .cardbox ul li {
    font-size: 14px;
  }
  .designbox {
    height: 340px;
  }
  .product .cardbox h3{
    font-size: 32px;
  }
  #hero p.leadtext {
    font-size: 18px;
    margin-top: 10px;
  }
}



/*--------------------------------------------------------------
# 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 h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1acc8d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

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

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

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

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

.pricing ul i {
  color: #1acc8d;
  font-size: 18px;
  padding-right: 4px;
}

.pricing 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: #1acc8d;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #FEE715;
}

.pricing .featured h3 {
  color: #fff;
  background: #1acc8d;
}

.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: #1acc8d;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  padding: 0 0px;
  outline: none;
  cursor: pointer;
  color: #003646;
}
.faq .faq-list a:hover {
  color: #101820
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #313e3b;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
  font-size: 16px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #101820;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 80px;
  padding-bottom: 0px;
}
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #003646;
  float: left;
  width: 44px;
  height: 44px;
  background: #f0f0ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #313e3b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #2a3633;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #2a3633;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 4px;
  font-weight: 400;
}

.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 #313e3b;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #313e3b;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #34e5a6;
}
.form-control {
  border: 1px transparent solid !Important;
  border-bottom: 1px var(--dark-gray) solid !Important;
  border-radius: 0px 0px !important;
}
.input-group-text {
  border: 1px transparent solid !important;
  background: #fff !important;
  border-bottom: 1px var(--dark-gray) solid !Important;
  border-radius: 0px 0px;
}
.mleft {
  margin-left: 15px;
}
.login_container {
  max-width: 500px;
  width:100%;
  padding: 0px 0px;
  margin: 0px auto;
}
.btn-verify {
  background: #FEE715;
  color: #000;
}
.btn-verify:hover {
  background: #101820;
  color: #fff;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #151d1b;
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
}
.footerdarker {
  background: #151d1b;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  padding: 0px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 2px #fff solid;
}

#footer .footer-top .social-links a:hover {
  background: #FEE715;
  color: #000;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 15px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FEE715;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #FEE715;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1acc8d;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #FEE715;
}

#footer .copyright {
  text-align: center;
  padding: 15px 15px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.purecounter {
  color: #fff;
}
.stats-item p {
  color: #fff;
}
.usecase_left {
  margin-left:40px;
}
.usecase_left h3 {
  color: var(--dark-gray);
}
.usecase_right {
  margin-right:40px;
}
.usercardBlk {
  background: #101820;
}
.usercardBlk p, .usercardBlk h3 {
  color: #fff;
}
.usercardBlk p {
  color: rgba(255, 255, 255, 0.8);
}

/** Product page **/
.activatebox {
  margin: 0px 0px;
  padding: 0px 0px;
}
ul.activatebox li {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 40px;
  margin-right: 60px;
  position: relative;
}
ul.activatebox li:after {
  content: "";
  position: absolute;
  border: 1px dashed #838a89;
  width: 62px;
  top: 25px;
  right: -63px;
}
ul.activatebox li:last-child:after {
  content: "";
  position: absolute;
  border: 0px dashed #838a89;
}

.activatebox .icon-box .icon {
  width: 50px;
  height: 50px;
  border: 2px solid #838a89;
  border-radius: 50px;
  transition: 0.5s;
  padding: 9px 13px;
  margin: 0px auto;
}

.activatebox .icon-box .icon i {
  color: #838a89;
  font-size: 20px;
}
.activatebox .icon-box .icon.activeicon {
  background: #FEE715;
  border: 2px #FEE715 solid;
}
.activatebox .icon-box .icon.activeicon i {
  color: #000;
}
.qrcodeblock {
  border: 2px #101820 solid;
  border-radius: 20px 20px;
  padding: 30px 30px;
}
.graybox {
  background: #eee;
}
.graybox2 {
  background: #dfdfdf;
}
.form-control:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 .25rem transparent;
}

@media (max-width: 1400px) {
  .gallery-top {
    height: 685px;
  }
}

@media (max-width: 1200px) {
  .gallery-top {
    height: 570px;
  }
  .productbox h1 {
    font-size: 35px;
  }
}


@media (max-width: 1030px) {
  .section-title p {
    font-size: 36px;
  }
  .about .icon-boxes h3 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .line{
    left: 49%;
  }
  .section-title p {
    font-size: 30px;
  }
  .overlap-section {
    margin-top: 0px;
  }
  .usecasehidden {
    overflow: hidden !important;
    padding: 0px;
  }
  .usecasehidden:before {
    background:#f3f8f8;
    width:100%;
    height: 75px;
    position: absolute;
    content:"";
  }
  .usecase_left {
    margin-left: 0px;
  }
  .usecaseimg {
    text-align:center;
    margin: 40px auto 0px;
  }
  .usercardBlk {
    padding-top: 40px;
  }
  .gaptop {
    margin-top: 40px;
  }
  .qr_product {
    width: 243px;
  }
  .spriral2 {
    left: -439px;
  }
  .product .cardbox h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .login_container {
    padding: 40px 30px;
  }
  .imgnone {
    display:none;
  }
  .gallery-top {
    height: 875px;
  }
}

@media (max-width: 840px) {
  .qr_product {
    width: 233px;
    top: 60px;
  }
  .spriral2 {
    left: -424px;
  }
  .spriral1 {
    right: 90px;
  }
  .about .icon-boxes h3 {
    font-size: 26px;
  }
  .faq .faq-list a {
    font-size: 18px;
  }
  .faq .faq-list p {
    font-size: 16px;
  }
  .line:nth-child(3) {
    margin-left: 48%;
  }
  .line:nth-child(1) {
    margin-left: -46%;
  }
  .gallery-top {
    height: 877px;
  }
}

@media (max-width: 768px) {
  .qr_product {
    width: 195px;
    top: 60px;
  }
  .spriral2 {
    left: -365px;
  }
  .gallery-top {
    height: 655px;
  }

}

@media (max-width: 610px) {
  #footer .footer-top .footer-info {
    margin: 0px 0 30px 0;
  }
  section {
    padding: 60px 0 30px;
  }
  .faq .faq-list a {
    font-size: 17px;
    line-height: 23px;
    padding-right: 20px;
  }
  .testimonials .testimonial-item .testimonial-img {
    max-width:100%;
  }
  .qr_product {
    width: 195px;
  }
  .productbox {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width:520px) {
  .qr_product {
    width: 173px;
  }
  .spriral1 {
    right: 14px;
  }
  .spriral2 {
    left: -320px;
  }
  .usecaseimg {
    padding: 0px 0px;
  }
  .usecaseimg {
    margin: 30px auto 0px;
  }
  .usecase_left, .usecase_right {
    margin-left: 10px;
    margin-right: 10px;
  }
  ul.productlist li {
    width: 100%;
  }
  .gallery-top {
    height: 560px;
  }
  .productbox h1 {
    font-size: 30px;
  }
}

@media (max-width: 460px) {
  .cardbox {
    padding: 125px 20px 50px 20px;
  }
  .product .cardbox h3 {
    font-size: 25px;
  }
  .designbox {
    display:none; 
  }
  ul.productlist li {
    width:100%;
  }
  .containerinbox {
    margin-top: 0px;
  }
  .cardbox {
    padding: 20px 20px 30px 20px;
    background: #f3f8f8;
    border-radius: 30px 30px;
    background-image: radial-gradient(circle, #dfe7f0 1px, rgba(0,0,0,0) 1px);
    background-size: 1rem 1rem;
  }
  .testimonials h3 {
    font-size: 26px;
  }
  .qr_product {
    top: 50px;
    width: 166px;
  }
  section.product_container {
    padding: 80px 0px 30px;
  }
  #hero h1 {
    font-size: 36px;
  }
  .hero_text .icon-box p {
    font-size: 13px;
  }
  #hero p.leadtext {
    font-size: 16px;
  }
  .section-title p {
    font-size: 27px;
  }
  ul.activatebox li::after {
    width: 43px;
    right: -44px;
  }
}
@media (max-width: 414px) {
  .qr_product {
    top: 50px;
    width: 143px;
  }
  .gallery-top {
    height: 460px;
  }
  .spriral2 {
    left: -209px;
  }
}
@media (max-width:390px) {
  .qr_product {
    width: 138px;
    top: 30px;
  }
  .spriral2 {
    left: -268px;
  }
  .spriral1 {
    width: 70px;
  }
  ul.activatebox li {
    margin-right: 38px;
  }
  .spriral2 {
    left: -205px;
  }
  .productkitbox {
    padding: 29px 20px;
  }
  .mleft {
      margin-left: 5px;
  }
  .btnbox {
    padding: 10px 20px;
  }
}
@media (max-width: 370px) {
  .qr_product {
    top: 19px;
  }
  .gallery-top {
    height: 420px;
  }
  .qr_product {
    width: 120px;
  }
  .spriral1 {
    width: 62px;
  }
}