@font-face {
  font-family: proxima-nova-medium;
  src: url("../fonts/proxima-nova-medium.otf");
}
@font-face {
  font-family: proxima-nova-semibold;
  src: url("../fonts/proxima-nova-semibold.otf");
}
@font-face {
  font-family: proxima-nova-bold;
  src: url("../fonts/proxima-nova-bold.otf");
}

body{
  font-family: 'Inter', sans-serif !important;
  overflow-x: hidden;
}

.text-orange{
  color: #e96920;
}
.text-navy{
  color: #0c374f;
}
.text-blue{
  color: #1870a2;
}
.text-sky{
  color: #1490b4;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.z-index-1{
  z-index: 1;
}

/*
**********************************
**********************************
******* Navbar Css ********
**********************************
**********************************
*/

.nav-login{
  display: flex;
  align-items: center;
  margin-left: 20px;
  height: 50px;
}
.nav-login .btn-badge,
.nav-login .btn-login{
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  outline: 0;
  box-shadow: none;
}
.nav-login .btn-badge{
  position: relative;
  background-color: #e9651b;
  padding: 7px 12px 7px 25px;
  border: 2px solid #e9651b;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.nav-login .btn-login{
  position: relative;
  background-color: #1490b4;
  padding: 7px 20px 7px 15px;
  border: 2px solid #1490b4;
  border-left: 2px solid #1281a2;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}

.nav-login .btn-badge .icon{
  width: 25px;
  margin-right: 5px;
}
.nav-login .btn-login .icon{
  width: 25px;
  margin-right: 8px;
}
/* .login-hover::after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}
.login-hover:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
} */


/*
**********************************
**********************************
******* Home Page Css ********
**********************************
**********************************
*/

/* Start Home Banner Section*/
.home-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-home-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 75px 0 70px 0;
  overflow-x: hidden;
}
.home-banner .left{
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 80px;
}
.home-banner .left .heading-sm{
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.home-banner .left .heading-sm::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.home-banner .left .heading-lg{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.home-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 30px 0;
}
.home-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.home-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.home-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.home-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.home-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.home-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.home-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.home-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.home-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
.home-banner .right{
  width: 55%;
}
.home-banner .right .screen{
  position: relative;
  overflow: hidden;
}
.home-banner .right .screen .laptop-img-for-mob{
  display: none;
}
.home-banner .right .screen .contetnt{
  position: absolute;
  left: 110px;
  top: 50%;
  transform: translateY(-50%);
}
.home-banner .right .screen .contetnt .sm-text{
  font-size: 22px;
  font-weight: 600;
  color: #fefefe;
  line-height: 1.3;
  text-transform: uppercase;
}
.home-banner .right .screen .contetnt .lg-text{
  font-size: 44px;
  font-weight: 700;
  color: #e9651b;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.home-banner .right .screen .contetnt .btn-play-video{
  position: relative;
  min-width: 195px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 30px 12px 20px;
  background-color: #e9651b;
  border: 2px solid #e9651b;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  outline: 0;
  margin-top: 35px;
  box-shadow: 0px 12px 23px 0px rgba(248, 118, 45, 0.35);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.home-banner .right .screen .contetnt .btn-play-video i{
  margin-right: 12px;
  font-size: 30px;
  color: #193762;
}

.btn-play-video span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.btn-play-video:hover {
  color: #e96920 !important;
}
.btn-play-video:hover span {
  transform: translateY(0) scale(2);
}
.btn-play-video span:nth-child(1) {
  --n: 1;
}
.btn-play-video span:nth-child(2) {
  --n: 2;
}
.btn-play-video span:nth-child(3) {
  --n: 3;
}
.btn-play-video span:nth-child(4) {
  --n: 4;
}
.btn-play-video span:nth-child(5) {
  --n: 5;
}
.home-banner .right .screen .zoom-img{
  position: absolute;
  bottom: 46px;
  right: 110px;
  width: 250px;
}

#videoModal .video-container,
#productsVideoModal .video-container{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
#videoModal .video-container iframe,
#productsVideoModal .video-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#videoModal .btn-close,
#productsVideoModal .btn-close,
#moreDetailsModal .btn-close{
  position: absolute;
  right: -25px;
  top: -25px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 1;
  opacity: .9;
  outline: 0;
  box-shadow: none;
  background: #e9651b url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.modal-backdrop.show {
  opacity: .8;
}
/* End Home Banner Section */

/* Start Home About Section */
.section-home-about {
  background-color: #f4f6f8;
  padding: 80px 0 100px;
  overflow: hidden;
}
.section-home-about .left{
  background: url("../images/bg-who-we-are.png") no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 60px 80px 70px 70px;
  box-shadow: 0.419px 11.993px 23px 0px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.section-home-about .right{
  background: url("../images/bg-what-we-do.png") no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 60px 90px 70px 90px;
  box-shadow: 0.419px 11.993px 23px 0px rgba(0, 0, 0, 0.07);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.section-home-about .left .heading,
.section-home-about .right .heading{
  text-align: center;
  margin-bottom: 25px;
}
.section-home-about .left .heading .icon,
.section-home-about .right .heading .icon{
  margin-bottom: 15px;
  height: 32px;
}
.section-home-about .left .heading .text,
.section-home-about .right .heading .text{
  font-size: 32px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.section-home-about .left .desc,
.section-home-about .right .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
}
.section-home-about .left .desc span,
.section-home-about .right .desc span{
  font-weight: 600;
}
/* End Home About Section*/

/* Start Home Section Our Solutions */
.section-our-solutions{
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden;
}
.section-our-solutions .heading-container{
  text-align: center;
  margin-bottom: 100px;
}
.section-our-solutions .main-heading{
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 0;
  margin-bottom: 0;
}
.section-our-solutions .main-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -25px;
  left: -45px;
}
.section-our-solutions .item{
  padding: 0 10px;
  margin-bottom: 85px;
}
.section-our-solutions .item:nth-child(9),
.section-our-solutions .item:nth-child(10),
.section-our-solutions .item:nth-child(11),
.section-our-solutions .item:nth-child(12){
  margin-bottom: 45px;
}
.section-our-solutions .item .box{
  height: 100%;
  position: relative;
  padding: 80px 10px 45px;
  background-color: #f6f8fa;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  transition: 0.2s;
}
.section-our-solutions .item .box:hover{
  box-shadow: 0 0 8px rgb(33 33 33 / 20%);
}
.section-our-solutions .item .box .icon{
  position: absolute;
  top: -45px;
  left: calc(50% - 45px);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to right, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  /* filter: drop-shadow(0px 12px 23px #00aeff2e); */
  filter: drop-shadow(0px 5px 50px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  to {
    transform:rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
  }
}
.section-our-solutions .item .box .icon img{
  width: 30px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.section-our-solutions .item .box .text{
  font-size: 18px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.3;
}
.section-our-solutions .solutions-banner{
  position: relative;
  display: flex;
  align-items: center;
  background-color: #e9651a;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.1);
}
.section-our-solutions .solutions-banner .left{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 40px 60px 35px 40px;
}
.section-our-solutions .solutions-banner .left .only-text,
.section-our-solutions .solutions-banner .right .only-text{
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin-right: 20px;
}
.section-our-solutions .solutions-banner .left .btn-sign-up-now{
  position: relative;
  min-width: 190px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #e9651a;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #dedede;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.section-our-solutions .solutions-banner .left .btn-sign-up-now i{
  font-size: 30px;
  margin-right: 10px;
}
.solutions-banner .btn-sign-up-now span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.solutions-banner .btn-sign-up-now:hover {
  color: #fff !important;
  border: 2px solid #fff !important;
}
.solutions-banner .btn-sign-up-now:hover span {
  transform: translateY(0) scale(2);
}
.solutions-banner .btn-sign-up-now span:nth-child(1) {
  --n: 1;
}
.solutions-banner .btn-sign-up-now span:nth-child(2) {
  --n: 2;
}
.solutions-banner .btn-sign-up-now span:nth-child(3) {
  --n: 3;
}
.solutions-banner .btn-sign-up-now span:nth-child(4) {
  --n: 4;
}
.solutions-banner .btn-sign-up-now span:nth-child(5) {
  --n: 5;
}

.section-our-solutions .solutions-banner .right{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 40px 40px 35px 60px;
}
.section-our-solutions .solutions-banner .right .numb{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  white-space: nowrap;
}
.section-our-solutions .solutions-banner .right .numb .icon,
.section-our-solutions .solutions-banner .right .timings .icon{
  width: 40px;
  margin-right: 12px;
}
.section-our-solutions .solutions-banner .right .numb .phone-numb{
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.section-our-solutions .solutions-banner .right .timings{
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}
.section-our-solutions .solutions-banner .right .timings .heading{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.section-our-solutions .solutions-banner .right .timings .days{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-our-solutions .solutions-banner .or-separator{
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ea7e40;
}
.section-our-solutions .solutions-banner .or-separator::after{
  content: "OR";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9651a;
  border: 4px solid #ea7e40;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
/* End Home Section Our Solutions */

/* Start Home Section Coming Soon */
.section-coming-soon{
  padding: 80px 0 75px;
  background: url("../images/bg-coming-soon.png") no-repeat;
  background-position: right center;
  background-size: cover;
  /* background-attachment: fixed; */
  overflow: hidden;
}
.section-coming-soon .left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}
.section-coming-soon .left .icon{
  width: 130px;
}
.section-coming-soon .left .text{
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
  line-height: 1;
  margin-left: 20px;
  margin-bottom: 0;
}
.section-coming-soon .right{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.section-coming-soon .right .text{
  font-size: 26px;
  font-weight: 600;
  color: #cdf0fe;
  text-transform: uppercase;
  letter-spacing: 17px;
  line-height: 1;
}
/* End Home Section Coming Soon */

/* Start badging System */
.section-badging-system{
  padding: 125px 0 70px;
  background-color: #f4f6f8;
  overflow: hidden;
}
.section-badging-system .left{
  padding-left: 45px;
}
.section-badging-system .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 35px;
}
.section-badging-system .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: -45px;
}
.section-badging-system .left .sec-heading sup {
  top: -20px;
  left: 3px;
  font-size: 20px;
  font-weight: 800;
}
.section-badging-system .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 25px;
}
.section-badging-system .left .desc.mb-45{
  margin-bottom: 45px;
}
.section-badging-system .left .qoute-box{
  position: relative;
  padding: 17px 30px 18px 55px;
  background-color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: 0px 16px 23px 0px rgba(1, 15, 21, 0.07);
}
.section-badging-system .left .qoute-box::before{
  content: url("../images/icons/icon-qoute-box-before.png");
  position: absolute;
  top: -30px;
  left: -15px;
}
.section-badging-system .left .qoute-box span{
  font-weight: 600;
}
.section-badging-system .live-demo {
  display: flex;
  align-items: center;
  padding-left: 45px;
  margin-top: 50px;
}
.section-badging-system .live-demo .btn-live-demo{
  position: relative;
  min-width: 250px;
  display: flex;
  align-items: center;
  height: 54px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 25px 12px 20px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.section-badging-system .live-demo .btn-live-demo .icon {
  width: 22px;
  margin-right: 10px;
  margin-top: -4px;
}
.btn-live-demo span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.btn-live-demo:hover {
  border: 2px solid #fff !important;
}
.btn-live-demo:hover span {
  transform: translateY(0) scale(2);
}
.btn-live-demo span:nth-child(1) {
  --n: 1;
}
.btn-live-demo span:nth-child(2) {
  --n: 2;
}
.btn-live-demo span:nth-child(3) {
  --n: 3;
}
.btn-live-demo span:nth-child(4) {
  --n: 4;
}
.btn-live-demo span:nth-child(5) {
  --n: 5;
}
.btn-live-demo span:nth-child(6) {
  --n: 6;
}
.btn-live-demo span:nth-child(7) {
  --n: 7;
}

.section-badging-system .live-demo .note{
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
/* End badging System */

/* Start Fastest Section */
.section-fastest{
  position: relative;
  padding: 130px 0 80px;
  background-color: #fff;
  background: url("../images/fastest-bg.png") no-repeat;
  background-size: auto 100%;
  background-position: left;
  overflow: hidden;
}
.section-fastest .fastest{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}
.section-fastest .fastest .fastest-text{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 10px;
}
.section-fastest .right .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 60px;
  padding-left: 45px;
}
.section-fastest .right .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.section-fastest .right .makes-list{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-fastest .right .makes-list li{
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.section-fastest .right .makes-list li:last-child{
  margin-bottom: 0;
}
.section-fastest .right .makes-list li .icon{
  position: relative;
  min-width: 110px;
  height: 110px;
  background: linear-gradient(to bottom, #ec5f0f, #ea3f4e, #cf3976, #a3468f, #6e5094, #595a9b, #44639e, #316a9c, #2f7eb2, #2b93c8, #22a8de, #13bef2);
  padding: 2px;
  border-radius: 20px;
  margin-right: 25px;
  filter: drop-shadow(0px 5px 23px #00aeff2e);
}
.section-fastest .right .makes-list li .icon .center{
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7fbff;
  border-radius: 18px;
}
.section-fastest .right .makes-list li .icon .center img{
  width: 55px;
}
.section-fastest .right .makes-list li .heading{
  font-size: 21px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.section-fastest .right .makes-list li .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}
.section-fastest .plane1{
  position: absolute;
  left: 22%;
  bottom: 25%;
  width: 110px;
}
.section-fastest .plane2{
  position: absolute;
  left: 10%;
  bottom: 24.5%;
  width: 120px;
}
.section-fastest .plane3{
  position: absolute;
  left: -2%;
  bottom: 24%;
  width: 120px;
}
.section-fastest .plane4{
  position: absolute;
  left: 15%;
  bottom: 15%;
  width: 120px;
}
.section-fastest .plane5{
  position: absolute;
  left: 4%;
  bottom: 14.5%;
  width: 120px;
}
.section-fastest .plane6{
  position: absolute;
  left: 10%;
  bottom: 4%;
  width: 120px;
}
.floating-item{
  -webkit-animation: floating-item 3s ease-in-out infinite;
  animation: floating-item 3s ease-in-out infinite;
}
@-webkit-keyframes floating-item {
  0% {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
    -moz-transform: translatey(0px);
    -o-transform: translatey(0px);
    -ms-transform: translatey(0px);
  }
  50% {
    transform: translatey(-15px);
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
  }
  100% {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
    -moz-transform: translatey(0px);
    -o-transform: translatey(0px);
    -ms-transform: translatey(0px);
  }
}

@keyframes floating-item {
  0% {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
    -moz-transform: translatey(0px);
    -o-transform: translatey(0px);
    -ms-transform: translatey(0px);
  }
  50% {
    transform: translatey(-15px);
    -webkit-transform: translatey(-15px);
    -moz-transform: translatey(-15px);
    -o-transform: translatey(-15px);
    -ms-transform: translatey(-15px);
  }
  100% {
    transform: translatey(0px);
    -webkit-transform: translatey(0px);
    -moz-transform: translatey(0px);
    -o-transform: translatey(0px);
    -ms-transform: translatey(0px);
  }
}
/* End Fastest Section */

/* Start Clients Section */
.section-clients{
  padding: 100px 0 90px;
  background-color: #fff;
}
.section-clients .heading-container{
  text-align: center;
  margin-bottom: 55px;
}
.section-clients .main-heading{
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 0;
  margin-bottom: 0;
}
.section-clients .main-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -25px;
  left: -45px;
}
.section-clients .client{
  padding: 0 35px;
}
/* Start Clients Slider */
.section-clients .clients-slider .slick-track{
  display: flex;
}
.section-clients .clients-slider .slick-slide {
  padding-top: 75px;
  padding-bottom: 40px;
  height: inherit;
}
.section-clients .clients-slider .slick-dots{
  left: calc(50% - 37px);
  display: inline !important;
  width: auto !important;
}
/* End Clients Slider */

.section-clients .client .box{
  position: relative;
  height: 100%;
  padding: 80px 45px 50px 50px;
  background-color: #f4f6f8;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.07);
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
}
.section-clients .client .box:hover .pic img{
  transform: scale(1.1);
}
.section-clients .client .box .img-comma{
  position: absolute;
  right: 50px;
  top: 40px;
}
.section-clients .client .pic{
  position: absolute;
  left: 50px;
  top: -70px;
  height: 120px;
  width: 120px;
  border: 2px solid rgb(233, 101, 26);
  border-radius: 18px;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.section-clients .client .pic img{
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.section-clients .client .name{
  font-size: 24px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.section-clients .client .designation{
  font-size: 14px;
  font-weight: 700;
  color: #e9651a;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.section-clients .client .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #333333;
  line-height: 1.6;
}
/* End Clients Section */

/* Start Footer Section */

.section-footer{
  position: relative;
  padding: 60px 0 80px;
  background-color: #d5dbe0;
}
.section-footer::before{
  content:"";
  background-image: -moz-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -webkit-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -ms-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 6px;
}

.section-footer .first .footer-logo{
  display: block;
  margin-bottom: 45px;
}
.section-footer .first .footer-logo img{
  max-width: 230px;
}
.section-footer .first .address{
  font-weight: 600;
  font-size: 16px;
  color: #6f7478;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-footer .footer-links{
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.section-footer .footer-links li{
  margin-bottom: 30px;
  line-height: 1;
}
.section-footer .footer-links li:last-child{
  margin-bottom: 0;
}
.section-footer .footer-links li a{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.section-footer .footer-links li a::after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 3px;
  width: 100%;
  background: #1490b4;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
.section-footer .footer-links li a:hover:after {
  transform: scaleX(1);
}
.section-footer .forth .contact-info{
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.section-footer .forth .contact-info .phone-numb{
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 5px;
}
.section-footer .forth .contact-info .timings{
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
}
.section-footer .forth .email-info{
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.section-footer .forth .email-info .email{
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #6f7478;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
.section-footer .forth .contact-info .icon,
.section-footer .forth .email-info .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  line-height: 32px;
  background-color: transparent;
  color: #e9651a;
  border: 2px solid #e9651a;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.section-footer .forth .contact-info:hover .icon,
.section-footer .forth .email-info:hover .icon,
.section-footer .forth .social-icons .item:hover{
  background-color: #1490b4;
  color: #fff;
  border: 2px solid #1490b4;
}
.section-footer .forth .social-icons{
  display: flex;
  align-items: center;
}
.section-footer .forth .social-icons .item{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  line-height: 32px;
  background-color: transparent;
  color: #e9651a;
  border: 2px solid #e9651a;
  border-radius:50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
/* End Footer Section */

.back-to-top{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color:rgb(233, 101, 26);
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
}
.back-to-top i{
  font-size: 20px;
  color: #fff;
}

/*
**********************************
**********************************
******* Products Main Page Css ********
**********************************
**********************************
*/

/* Start Products Banner */
.products-banner-section {
  background: url("../images/bg-products-banner-section.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 120px 0 60px;
  overflow-x: hidden;
}
.products-banner-section .left{
  padding-left: 80px;
}
.products-banner-section .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.products-banner-section .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.products-banner-section .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 30px 0;
}
.products-banner-section .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 25px 16px 25px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.products-banner-section .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 20%) - 25px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.products-banner-section .btn-get-started:hover {
  color: #e96920 !important;
}
.products-banner-section .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.products-banner-section .btn-get-started span:nth-child(1) {
  --n: 1;
}
.products-banner-section .btn-get-started span:nth-child(2) {
  --n: 2;
}
.products-banner-section .btn-get-started span:nth-child(3) {
  --n: 3;
}
.products-banner-section .btn-get-started span:nth-child(4) {
  --n: 4;
}
.products-banner-section .btn-get-started span:nth-child(5) {
  --n: 5;
}
/* End Products Banner */

/* Start Why Ventors Choose Section */
.why-vendors{
  position: relative;
  padding: 120px 0 80px;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
.why-vendors .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 60px;
  padding-left: 45px;
}
.why-vendors .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.why-vendors .left .img{
  padding-right: 60px;
}
.why-vendors .right .list{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.why-vendors .right .list li{
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
}
.why-vendors .right .list li:last-child{
  margin-bottom: 0;
}
.why-vendors .right .list li .icon{
  position: relative;
  min-width: 110px;
  height: 110px;
  background: linear-gradient(to bottom, #ec5f0f, #ea3f4e, #cf3976, #a3468f, #6e5094, #595a9b, #44639e, #316a9c, #2f7eb2, #2b93c8, #22a8de, #13bef2);
  padding: 2px;
  border-radius: 20px;
  margin-right: 25px;
  filter: drop-shadow(0px 5px 23px #00aeff2e);
}
.why-vendors .right .list li .icon .center{
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7fbff;
  border-radius: 18px;
}
.why-vendors .right .list li .icon .center img{
  width: 65px;
}

.why-vendors .right .list li .heading{
  font-size: 21px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.why-vendors .right .list li .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}
/* End Why Ventors Choose Section */

/* Start Premium Products Tabs Section */
.premium-products{
  position: relative;
  padding: 100px 0 85px;
  background-color: #b9ceda;
}
.premium-products::before{
  content: url("../images/premium-products-bg1.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.premium-products::after{
  content: url("../images/premium-products-bg2.png");
  position: absolute;
  bottom: -7px;
  right: 0;
  z-index: 0;
}
.premium-products .heading-container{
  text-align: center;
  margin-bottom: 40px;
}
.premium-products .main-heading{
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 0;
  margin-bottom: 0;
}
.premium-products .main-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -25px;
  left: -45px;
}
.products-tabs .nav-pills{
  flex-wrap: nowrap;
}
.products-tabs .nav-pills .nav-item{
  width: 100%;
  z-index: 1;
}
.products-tabs .nav-pills .nav-link{
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #0009;
  white-space: nowrap;
  background-color: #f2f2f2;
  border-right: 1px solid #a9a9a9;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  padding: 18px 20px;
}
.products-tabs .nav-pills .nav-item:first-child .nav-link{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.products-tabs .nav-pills .nav-item:last-child .nav-link{
  border-right: 0;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.products-tabs .nav-pills .nav-link.active,
.products-tabs .nav-pills .show>.nav-link {
  color: #feffff;
  background-color: #e96920;
}
.curvy-sign-up-btn{
  position: absolute;
  right: -1px;
  bottom: -1px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #e96920;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.curvy-sign-up-btn img{
  margin-left: 8px;
}
.curvy-sign-up-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 25%) - 40px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.curvy-sign-up-btn:hover {
  color: #fff !important;
  /* border: 2px solid #fff !important; */
}
.curvy-sign-up-btn:hover span {
  transform: translateY(0) scale(2);
}
.curvy-sign-up-btn span:nth-child(1) {
  --n: 1;
}
.curvy-sign-up-btn span:nth-child(2) {
  --n: 2;
}
.curvy-sign-up-btn span:nth-child(3) {
  --n: 3;
}
.curvy-sign-up-btn span:nth-child(4) {
  --n: 4;
}
.curvy-sign-up-btn span:nth-child(5) {
  --n: 5;
}

/* Start CRP Tab */
.crp-content .item{
  padding-top: 120px;
  z-index: 1;
}
.crp-content .crp-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 90px 30px 60px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
}
.crp-content .crp-card .icon{
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.crp-content .crp-card .icon img{
  width: 55px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.crp-content .crp-card .header{
  margin-bottom: 20px;
}
.crp-content .crp-card .heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.crp-content .crp-card .sub-heading{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.2;
  text-align: center;
}
.crp-content .crp-card .body{
  margin-top: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.crp-content .crp-card .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
.crp-content .crp-card .desc-scroll{
  position: relative;
  height: 240px;
  overflow: auto;
}
.crp-content .crp-card .desc-scroll::-webkit-scrollbar-track{
	border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
	background-color: #f0f0f0;
}
.crp-content .crp-card .desc-scroll::-webkit-scrollbar{
	width: 5px;
	background-color: #fff;
}
.crp-content .crp-card .desc-scroll::-webkit-scrollbar-thumb{
	border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
	background-color: #b9ceda;
}
/* .crp-content .crp-card .desc-scroll .box-inset-shadow{
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 25px;
  background-image: -moz-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(255,255,255) 30%, rgba(255,255,255,0.99) 30%, rgba(255,255,255,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(255,255,255) 30%, rgba(255,255,255,0.99) 30%, rgba(255,255,255,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(255,255,255) 0%, rgb(255,255,255) 30%, rgba(255,255,255,0.99) 30%, rgba(255,255,255,0) 100%);
} */

.crp-content .crp-card .filters{
  display: flex;
  align-items: center;
  margin-top: 20px;
  column-gap: 15px;
}
.crp-content .crp-card .filters select{
  height: 35px;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #929292;
  background-color: #fff;
  padding: 5px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  outline: 0;
}
.crp-content .crp-card .price{
  position: absolute;
  left: 30px;
  bottom: 15px;
  font-size: 28px;
  font-weight: 800;
  color: #1490b4;
  line-height: 1;
}
.crp-content .crp-card .price sup{
  top: -6px;
  font-size: 0.7em;
}
/* End CRP Tab */

/* Start MV Tab */
.mv-content{
  padding-top: 120px;
}
.mv-content .mv-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 90px 30px 70px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
}
.mv-content .mv-card .icon{
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.mv-content .mv-card .icon img{
  width: 55px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.mv-content .mv-card .heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-align: center;
  margin-bottom: 0;
}
.mv-content .mv-card .filter{
  display: flex;
  align-items: center;
  margin: 35px 0 20px;
}
.mv-content .mv-card .filter label{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1;
  margin-bottom: 0;
  margin-right: 12px;
}
.mv-content .mv-card .filter select{
  height: 35px;
  width: 250px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #929292;
  background-color: #fff;
  padding: 5px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  outline: 0;
}
.mv-content .mv-card .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
.mv-content .mv-card .price{
  position: absolute;
  left: 30px;
  bottom: 15px;
  font-size: 28px;
  font-weight: 800;
  color: #1490b4;
  line-height: 1;
}
.mv-content .mv-card .price sup{
  top: -6px;
  font-size: 0.7em;
}
.mv-content .report-info .heading{
  font-size: 20px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  margin-bottom: 25px;
}
.mv-content .report-info .list{
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.mv-content .report-info .list li{
  width: calc(50% - 10px);
  float: left;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  padding: 16px 10px 16px 15px;
  background-color: rgba(34, 106, 147, 0.902);
  box-shadow: 0px 12px 23px 0px rgba(0, 174, 255, 0.18);
  border-radius: 10px;
  margin-bottom: 20px;
}
.mv-content .report-info .list li .icon{
  width: 23px;
  margin-right: 12px;
}
/* End MV Tab */

/* Start DS Tab */
.ds-content {
  padding-top: 60px;
}
.ds-content .drug-testing-card{
  position: relative;
  padding: 35px 35px 30px 35px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
  margin-bottom: 40px;
}
.drug-testing-card .left {
  display: flex;
  align-items: center;
}
.drug-testing-card .left .icon{
  min-width: 130px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.drug-testing-card .left .icon img{
  width: 55px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.drug-testing-card .left .heading{
  font-size: 20px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  margin-bottom: 12px;
}
.drug-testing-card .left .desc{
  width: 80%;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}
.drug-testing-card .right .filter{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.drug-testing-card .right .filter label{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 0;
  margin-right: 18px;
}
.drug-testing-card .right .filter select{
  height: 35px;
  width: 70%;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #929292;
  background-color: #fff;
  padding: 5px;
  border: 1px solid rgb(228, 228, 228);
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  outline: 0;
}
.drug-testing-card .right .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 25px;
}
.drug-testing-card .right .price {
  font-size: 28px;
  font-weight: 800;
  color: #1490b4;
  line-height: 1;
}
.drug-testing-card .right .price sup {
  top: -6px;
  font-size: 0.7em;
}
.ds-content .ds-faq-card{
  position: relative;
  padding: 30px 35px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
}
.ds-faq-card .heading{
  font-size: 28px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.ds-faq-card .ds-faqs .left{
  padding-right: 35px;
}
.ds-faq-card .ds-faqs .right{
  padding-left: 35px;
}
.ds-faqs .accordion-item:first-of-type {
  border-radius: 0;
}
.ds-faqs .accordion-item {
  background-color: #fff;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #c3c3c3;
}
.ds-faqs .accordion-item .accordion-button {
  padding: 18px 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  column-gap: 20px;
}
.ds-faqs .accordion-item .accordion-button:not(.collapsed) {
  color: #333333;
  background-color: transparent;
  box-shadow: none;
}
.ds-faqs .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.ds-faqs .accordion-item .accordion-button::after {
  width: 0.85rem;
  height: 0.85rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231490b4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 0.85rem;
}
.ds-faqs .accordion-item .accordion-body {
  padding: 0 0 18px 0;
}
.ds-faqs .accordion-item .accordion-body .text{
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}
/* End DS Tab */

/* Start CEM Tab */
.cem-content .item{
  padding-top: 120px;
  z-index: 1;
}
.cem-content .cem-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 90px 30px 95px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
}
.cem-content .cem-card.right-card{
  padding-top: 220px;
}
.cem-content .cem-card .icon{
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.cem-content .cem-card .icon img{
  width: 65px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.cem-content .cem-card .video-container{
  position: absolute;
  top: -65px;
  left: 25%;
  width: 50%;
  box-shadow: 0px 12px 23px 0px rgba(0, 174, 255, 0.18);
  overflow: hidden;
}
.cem-content .cem-card .video-container .btn-play{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.cem-content .cem-card .video-container .btn-play .text{
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 8px;
}
.cem-content .cem-card .video-container .btn-play:hover{
  transform: scale(1.1);
  transition: all 0.2s;
}
.cem-content .cem-card .heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-align: center;
  margin-bottom: 25px;
}
.cem-content .cem-card.left-card .heading{
  margin-bottom: 50px;
}
.cem-content .cem-card .sub-heading{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.2;
  text-align: center;
}
.cem-content .cem-card .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
.cem-content .cem-card .desc-scroll{
  position: relative;
  height: 240px;
  overflow: auto;
}
.cem-content .cem-card .desc-scroll::-webkit-scrollbar-track{
	border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
	background-color: #b9ceda;
}
.cem-content .cem-card .desc-scroll::-webkit-scrollbar{
	width: 5px;
	background-color: #fff;
}
.cem-content .cem-card .desc-scroll::-webkit-scrollbar-thumb{
	border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
	background-color: #f0f0f0;
}

.cem-content .cem-card .price{
  position: absolute;
  left: 25px;
  bottom: 15px;
  width: 55%;
}
.cem-content .cem-card .price .amount{
  font-size: 26px;
  font-weight: 800;
  color: #1490b4;
  line-height: 1;
}
.cem-content .cem-card .price .amount sup{
  top: -6px;
  font-size: 0.7em;
}
.cem-content .cem-card .price .text{
  font-size: 10px;
  font-weight: 700;
  color: #1490b4;
  text-transform: uppercase;
  line-height: 1.2;
  margin-left: 5px;
}
/* End CRP Tab */

/* Start Badges Tab */
.badges-content{
  padding-top: 120px;
}
.badges-content .bbs-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 90px 30px 80px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
}
.badges-content .bbs-card .icon{
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.badges-content .bbs-card .icon img{
  width: 55px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.badges-content .bbs-card .heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.badges-content .bbs-card .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
.badges-content .bbs-card .check{
  display: flex;
  align-items: center;
  margin: 20px 0 25px;
}
.badges-content .bbs-card .check .check-icon{
  min-width: 35px;
  width: 35px;
  margin-right: 20px;
}
.badges-content .bbs-card .check .text{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
}
.badges-content .bbs-card .action-btns{
  display: flex;
  align-items: center;
  justify-content: center;
}
.badges-content .bbs-card .action-btns .vld-btn{
  position: relative;
  min-width: 210px;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 25px 12px 20px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.badges-content .bbs-card .action-btns .vld-btn img {
  width: 22px;
  margin-right: 10px;
  margin-top: -4px;
}
.badges-content .bbs-card .action-btns .vb-btn{
  position: relative;
  min-width: 180px;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  color: #e96920;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 25px 12px 20px;
  background-color: #fff;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.badges-content .bbs-card .action-btns .vb-btn img {
  width: 20px;
  margin-right: 10px;
}

.badges-content .vld-btn span,
.badges-content .vb-btn span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 25%) - 40px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.badges-content .vld-btn:hover {
  color: #fff !important;
  /* border: 2px solid #fff !important; */
}
.badges-content .vb-btn:hover {
  color: #fff !important;
}
.badges-content .vld-btn:hover span,
.badges-content .vb-btn:hover span {
  transform: translateY(0) scale(2);
}
.badges-content .vld-btn span:nth-child(2),
.badges-content .vb-btn span:nth-child(2) {
  --n: 2;
}
.badges-content .vld-btn span:nth-child(3),
.badges-content .vb-btn span:nth-child(3) {
  --n: 3;
}
.badges-content .vld-btn span:nth-child(4),
.badges-content .vb-btn span:nth-child(4) {
  --n: 4;
}
.badges-content .vld-btn span:nth-child(5),
.badges-content .vb-btn span:nth-child(5) {
  --n: 5;
}

.badges-content .pass-fail-heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.badges-content .pass-fail-card{
  position: relative;
  display: flex;
  border: 1px solid rgb(233, 105, 32);;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
  margin-bottom: 35px;
}
.badges-content .pass-fail-card:last-child{
  margin-bottom: 0;
}
.badges-content .pass-fail-card .profile{
  width: 31%;
  padding: 20px;
  text-align: center;
  background-color: #f7f7f7;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.badges-content .pass-fail-card .profile .firm-logo{
  margin-bottom: 15px;
}
.badges-content .pass-fail-card .profile .pic{
  width: 90px;
  height:90px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto 25px;
}
.badges-content .pass-fail-card .profile .pic img{
  max-width: 100%;
  object-fit: contain;
}
.badges-content .pass-fail-card .profile .text{
  font-size: 14px;
  font-weight: 500;
  color: #0c374f;
  line-height: 1.6;
}
.badges-content .pass-fail-card .details{
  width: 69%;
}
.badges-content .pass-fail-card .details .header1{
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  border-top-right-radius: 15px;
}
.badges-content .pass-fail-card.passed .details .header1{
  color: #23580e;
  background-color: #59bc1d;
}
.badges-content .pass-fail-card.failed .details .header1{
  color: #6e0404;
  background-color: #f68888;
}
.badges-content .pass-fail-card .details .header1 span{
  text-transform: uppercase;
}
.badges-content .pass-fail-card .details .body1{
  position: relative;
  padding: 15px 30px 20px;
}
.badges-content .pass-fail-card .details .body1 .stamp-logo{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 100px;
  z-index: 1;
}
.badges-content .pass-fail-card.passed .details .body1 .stamp-logo{
  top: -50px;
}
.badges-content .pass-fail-card .details .body1 .text{
  font-size: 14px;
  font-weight: 500;
  color: #0c374f;
  line-height: 1;
  margin-bottom: 10px;
}
.badges-content .pass-fail-card .details .body1 .text:last-of-type{
  margin-bottom: 0;
}
.badges-content .pass-fail-card .details .header2{
  padding: 20px 30px;
  font-size: 14px;
  font-weight: 700;
  color: #0c374f;
  background-color: #b1d0f6;
  line-height: 1;
  text-transform: capitalize;
}
.badges-content .pass-fail-card .details .body2{
  padding: 15px 30px 20px;
  border-bottom-right-radius: 15px;
}
.badges-content .pass-fail-card .details .body2 .text{
  font-size: 14px;
  font-weight: 500;
  color: #0c374f;
  line-height: 1.6;
}
/* End Badges Tab */

/* Start Self Sign-In URL Tab */
.self-signin-content{
  padding-top: 120px;
}
.self-signin-content .self-signin-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 90px 30px 70px;
  border: 1px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
}
.self-signin-content .self-signin-card .icon{
  position: absolute;
  top: -65px;
  left: calc(50% - 65px);
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #13c0f3);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.self-signin-content .self-signin-card .icon img{
  width: 55px;
  animation: spin 2000ms infinite linear;
  animation-direction: reverse;
}
.self-signin-content .self-signin-card .heading{
  font-size: 18px;
  font-weight: 700;
  color: #e96920;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.self-signin-content .self-signin-card .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
.self-signin-content .provides-vendors .heading{
  font-size: 20px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  margin-bottom: 25px;
}
.self-signin-content .provides-vendors .list{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.self-signin-content .provides-vendors .list li{
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  padding: 18px 15px 18px 15px;
  background-color: rgba(34, 106, 147, 0.902);
  box-shadow: 0px 12px 23px 0px rgba(0, 174, 255, 0.18);
  border-radius: 10px;
  margin-bottom: 20px;
}
.self-signin-content .provides-vendors .list li .icon{
  width: 23px;
  margin-right: 12px;
}
/* End Self Sign-In URL Tab */

/* End Premium Products Tabs Section */

/* Start Products Banner Section */
.products-banner-bg-blue{
  background-color: #1490b4;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.1);
}
.products-blue-banner{
  position: relative;
  display: flex;
  align-items: center;
}
.products-blue-banner .left{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 40px 60px 35px 40px;
}
.products-blue-banner .left .only-text,
.products-blue-banner .right .only-text{
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin-right: 20px;
}
.products-blue-banner .left .btn-sign-up-now{
  position: relative;
  min-width: 180px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #e9651a;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 10px 20px;
  background-color: #fff;
  border: 2px solid #dedede;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.products-blue-banner .left .btn-sign-up-now i{
  font-size: 30px;
  margin-right: 10px;
}
.products-blue-banner .btn-sign-up-now span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #e9651a;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.products-blue-banner .btn-sign-up-now:hover {
  color: #fff !important;
  border: 2px solid #fff !important;
}
.products-blue-banner .btn-sign-up-now:hover span {
  transform: translateY(0) scale(2);
}
.products-blue-banner .btn-sign-up-now span:nth-child(1) {
  --n: 1;
}
.products-blue-banner .btn-sign-up-now span:nth-child(2) {
  --n: 2;
}
.products-blue-banner .btn-sign-up-now span:nth-child(3) {
  --n: 3;
}
.products-blue-banner .btn-sign-up-now span:nth-child(4) {
  --n: 4;
}
.products-blue-banner .btn-sign-up-now span:nth-child(5) {
  --n: 5;
}

.products-blue-banner .right{
  width: 50%;
  display: flex;
  align-items: center;
  padding: 40px 40px 35px 60px;
}
.products-blue-banner .right .numb{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  white-space: nowrap;
}
.products-blue-banner .right .numb .icon,
.products-blue-banner .right .timings .icon{
  width: 40px;
  margin-right: 12px;
}
.products-blue-banner .right .numb .phone-numb{
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.products-blue-banner .right .timings{
  display: flex;
  align-items: flex-start;
  white-space: nowrap;
}
.products-blue-banner .right .timings .heading{
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.products-blue-banner .right .timings .days{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
}
.products-blue-banner .or-separator{
  position: absolute;
  left: calc(50% - 2px);
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #097d9f;
}
.products-blue-banner .or-separator::after{
  content: "OR";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1490b4;
  border: 4px solid #097d9f;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
/* End Products Banner Section */

/* Start Product's What Makes Different Section */
.makes-us-diff{
  position: relative;
  padding: 75px 0 80px;
  background: url("../images/bg-gravity.png") no-repeat;
  background-position: bottom left;
  background-size: cover;
}
.makes-us-diff .heading-container{
  text-align: center;
}
.makes-us-diff .main-heading{
  position: relative;
  display: inline-block;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-left: 0;
  margin-bottom: 0;
}
.makes-us-diff .main-heading::before{
  content: url("../images/icons/icon-heading-before-blue.png");
  position: absolute;
  top: -25px;
  left: -45px;
}
.makes-us-diff .item {
  padding: 80px 25px 0;
}
.makes-us-diff .box {
  position: relative;
  height: 100%;
  padding: 20px 25px 25px 30px;
  border: 1px solid #e96920;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  background-color: rgb(247, 249, 249);
  box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.07);
}
.makes-us-diff .box .icon{
  position: absolute;
  top: -30px;
  left: -34px;
}
.makes-us-diff .box .heading{
  font-size: 16px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}
.makes-us-diff .box .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
/* End Product's What Makes Different Section */

/* Start Mian FAQ Section */
.faq-main{
  position: relative;
  padding: 100px 0 60px;
  background-color: #f4f6f8;
  overflow: hidden;
}
.faq-main .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 60px;
  padding-left: 45px;
}
.faq-main .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.faq-main .faq-collapse {
  box-shadow: 0px 12px 23px 0px rgba(40, 75, 91, 0.11);
  border-radius: 30px;
}
.faq-main .faq-collapse .accordion-item:first-of-type,
.faq-main .faq-collapse .accordion-item:first-child .accordion-button{
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.faq-main .faq-collapse .accordion-item:last-of-type,
.faq-main .faq-collapse .accordion-item:last-child .accordion-button{
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.faq-main .faq-collapse .accordion-button{
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  padding: 20px 25px 20px 35px;
}
.faq-main .faq-collapse .accordion-button:not(.collapsed) {
  color: #333;
  background-color: #fff;
  box-shadow: none;
}
.faq-main .faq-collapse .accordion-button:not(.collapsed) +  .accordion-collapse > .accordion-body{
  border-top: 1px solid rgb(0 0 0 / 13%);
}
.faq-main .faq-collapse .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0a0a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-main .faq-collapse .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a0a0a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-main .faq-collapse .accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}
.faq-main .faq-collapse .accordion-body{
  padding: 20px 25px 20px 35px;
}
.faq-main .faq-collapse .accordion-body .text{
  font-size: 16px;
  font-weight: 500;
  color: #1490b4;
  line-height: 1.4;
}
.faq-main .right{
  text-align: center;
}
.faq-main .right .faq-img{
  padding-left: 80px;
}
/* End Mian FAQ Section */


/*
**********************************
**********************************
******* Products Details Page ********
**********************************
**********************************
*/

/* Start Product Details Banner */
.product-details-banner {
  background: url("../images/bg-products-banner-section.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 120px 0 60px;
  overflow-x: hidden;
}
.product-details-banner .left{
  padding-left: 80px;
}
.product-details-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.product-details-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.product-details-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 30px 0;
}
.product-details-banner .left .btn-read-more{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 25px 16px 25px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.product-details-banner .btn-read-more span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 20%) - 25px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.product-details-banner .btn-read-more:hover {
  color: #e96920 !important;
}
.product-details-banner .btn-read-more:hover span {
  transform: translateY(0) scale(2);
}
.product-details-banner .btn-read-more span:nth-child(1) {
  --n: 1;
}
.product-details-banner .btn-read-more span:nth-child(2) {
  --n: 2;
}
.product-details-banner .btn-read-more span:nth-child(3) {
  --n: 3;
}
.product-details-banner .btn-read-more span:nth-child(4) {
  --n: 4;
}
.product-details-banner .btn-read-more span:nth-child(5) {
  --n: 5;
}
/* End Products Details Banner */

/* Start Product Details Main Section */
.product-details-main{
  position: relative;
  padding: 20px 0 85px;
  background-color: #b9ceda;
}
.product-details-main::before {
  content: url("../images/premium-products-bg1.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
}
.product-details-main::after {
  content: url("../images/premium-products-bg2.png");
  position: absolute;
  bottom: -7px;
  right: 0;
  z-index: 0;
  opacity: 0.4;
}
.products-breadcrumbs{
  top: -20px !important;
}
/* End Product Details Main Section */

/*
**********************************
**********************************
******* Custom API Css ********
**********************************
**********************************
*/

/* Start Custom API Banner */
.custom-api-banner {
  background: url("../images/api-banner-bg.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 90px 0 60px;
  overflow-x: hidden;
}
.custom-api-banner .content .heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 25px;
}
.custom-api-banner .content .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.custom-api-banner .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 35px;
}
.custom-api-banner .content .desc a{
  font-weight: 600;
  color: #1870a2;
  text-decoration: none;
}
.custom-api-banner .content .btn-more-details{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 40px 16px 40px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.custom-api-banner .btn-more-details span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc(((var(--n) - 1) * 20%) - 25px);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.custom-api-banner .btn-more-details:hover {
  color: #e96920 !important;
}
.custom-api-banner .btn-more-details:hover span {
  transform: translateY(0) scale(2);
}
.custom-api-banner .btn-more-details span:nth-child(1) {
  --n: 1;
}
.custom-api-banner .btn-more-details span:nth-child(2) {
  --n: 2;
}
.custom-api-banner .btn-more-details span:nth-child(3) {
  --n: 3;
}
.custom-api-banner .btn-more-details span:nth-child(4) {
  --n: 4;
}
.custom-api-banner .btn-more-details span:nth-child(5) {
  --n: 5;
}
#moreDetailsModal .modal-content {
  border: 0;
}
#moreDetailsModal .modal-header {
  background-color: #1490b4;
  justify-content: center !important;
}
#moreDetailsModal .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}
#moreDetailsModal .modal-body {
  padding: 25px;
}
#moreDetailsModal .modal-body p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 20px;
}
#moreDetailsModal .modal-body p:last-of-type {
  margin-bottom: 0;
}
/* End Custom API Banner */

/* Start Key Features Section */
.api-features{
  position: relative;
  padding: 200px 0 200px;
  background: url("../images/key-features-bg.png") no-repeat;
  background-position: center left;
  background-size: cover;
  overflow: hidden;
}
.api-features .key-features{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 580px;
  width: 580px;
  height: 580px;
  margin: 0 auto;
  background-image: -moz-linear-gradient( -90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
  background-image: -webkit-linear-gradient( -90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
  background-image: -ms-linear-gradient( -90deg, rgb(240,240,240) 0%, rgb(255,255,255) 100%);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0px 23px 45px 0px rgba(0, 0, 0, 0.09);
}
.api-features .key-features .heading{
  font-size: 45px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 15px;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .api-features .key-features .feature.top {
    position: absolute;
    left: calc(50% - 185px);
    bottom: calc(100% - 60px);
  }
  .api-features .key-features .feature.bottom {
    position: absolute;
    left: calc(50% - 185px);
    top: calc(100% - 50px);
  }
  .api-features .key-features .feature.right1 {
    position: absolute;
    right: -222px;
    top: 2%;
  }
  .api-features .key-features .feature.right2 {
    position: absolute;
    right: -332px;
    top: 28%;
  }
  .api-features .key-features .feature.right3 {
    position: absolute;
    right: -332px;
    top: 59%;
  }
  .api-features .key-features .feature.right4 {
    position: absolute;
    right: -222px;
    top: 84%;
  }
  .api-features .key-features .feature.left1 {
    position: absolute;
    left: -222px;
    top: 2%;
  }
  .api-features .key-features .feature.left2 {
    position: absolute;
    left: -332px;
    top: 28%;
  }
  .api-features .key-features .feature.left3 {
    position: absolute;
    left: -332px;
    top: 59%;
  }
  .api-features .key-features .feature.left4 {
    position: absolute;
    left: -222px;
    top: 84%;
  }
  .api-features .key-features .feature .bar {
    min-width: 370px;
    font-size: 18px;
    font-weight: 700;
    color: #0c374f;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    background-color: rgb(246, 248, 250);
    border-radius: 10px;
  }
  .api-features .key-features .feature.top .bar,
  .api-features .key-features .feature.bottom .bar {
    padding: 28px 20px;
  }
  .api-features .key-features .feature.right1 .bar,
  .api-features .key-features .feature.right2 .bar,
  .api-features .key-features .feature.right3 .bar,
  .api-features .key-features .feature.right4 .bar {
    padding: 28px 20px 28px 50px;
  }
  .api-features .key-features .feature.left1 .bar,
  .api-features .key-features .feature.left2 .bar,
  .api-features .key-features .feature.left3 .bar,
  .api-features .key-features .feature.left4 .bar {
    padding: 28px 50px 28px 20px;
  }

  .api-features .key-features .feature .icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    background: linear-gradient(to bottom, white, white), linear-gradient(to bottom, #ee5f0d , #1a518d , #13c0f3);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    filter: drop-shadow(0px 12px 23px #00aeff2e);
    animation-name: spin;
    animation-duration: 2000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  .api-features .key-features .feature .icon img{
    width: 35px;
    animation: spin 2000ms infinite linear;
    animation-direction: reverse;
  }
  .api-features .key-features .feature.top .icon {
    position: relative;
    top: -20px;
    left: calc(50% - 50px);
  }
  .api-features .key-features .feature.bottom .icon {
    position: relative;
    bottom: -20px;
    left: calc(50% - 50px);
  }
  .api-features .key-features .feature.right1 .icon,
  .api-features .key-features .feature.right2 .icon,
  .api-features .key-features .feature.right3 .icon,
  .api-features .key-features .feature.right4 .icon {
    position: absolute;
    top: -13px;
    left: -25px;
  }
  .api-features .key-features .feature.left1 .icon,
  .api-features .key-features .feature.left2 .icon,
  .api-features .key-features .feature.left3 .icon,
  .api-features .key-features .feature.left4 .icon {
    position: absolute;
    top: -13px;
    right: -25px;
  }
}

/* End Key Features Section */

/* Start Record Keeping Section */
.record-keeping{
  position: relative;
  padding: 120px 0 100px;
  background: url(../images/bg-gravity.png) no-repeat;
  background-position: center left;
  background-size: cover;
  overflow: hidden;
}
.record-keeping .item {
  padding: 0 30px;
}
.record-keeping .box {
  position: relative;
  height: 100%;
  padding: 80px 45px 60px 35px;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  background-color: rgb(247, 249, 249);
  box-shadow: 0px 23px 32px 0px rgba(0, 0, 0, 0.07);
}
.record-keeping .box .icon{
  position: absolute;
  top: -55px;
  left: calc(50% - 55px);
  width: 110px;
  filter: drop-shadow(0px 12px 23px #00aeff2e);
}
.record-keeping .box .heading{
  font-size: 18px;
  font-weight: 700;
  color: #0d3850;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.record-keeping .box .list{
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.record-keeping .box .list li{
  position: relative;
  padding-left: 40px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 30px;
}
.record-keeping .box .list li:last-child{
  margin-bottom: 0;
}
.record-keeping .box .list li::before{
  content: url("../images/icons/icon-check-orange.png");
  position: absolute;
  top: 0;
  left: 0;
}
/* End Record Keeping Section */

/* Start Record Keeping Section */
.api-and-self{
  position: relative;
  padding: 90px 0 60px;
  background-color: #fff;
}
.api-and-self .content{
  padding: 0 30px;
}
.api-and-self .content .heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}
.api-and-self .content .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.api-and-self .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
}
.api-and-self .content .desc a{
  color: #1870a2;
  font-weight: 600;
  text-decoration: none;
}
.api-and-self .api-img,
.api-and-self .self-sign-img{
  position: relative;
}
.api-and-self .api-img .lg-wheel-icon{
  width: 82px;
  position: absolute;
  top: 15px;
  right: 170px;
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.api-and-self .api-img .sm-wheel-icon{
  width: 60px;
  position: absolute;
  top: 68px;
  right: 112px;
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.api-and-self .self-sign-img .lock-icon{
  position: absolute;
  top: 123px;
  left: 295px;
}
/* End Api And Self Section */

/*
**********************************
**********************************
******* Get Started Css ********
**********************************
**********************************
*/

/* Start Get Started Banner */
.get-started-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-get-started-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 130px 0 140px;
  overflow-x: hidden;
}
.get-started-banner .content{
  padding-left: 80px;
}
.get-started-banner .content .heading-sm{
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.get-started-banner .content .heading-sm::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.get-started-banner .content .heading-lg{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
/* End Get Started Banner */

/* Start Get Started About Your Company */
.about-company{
  background-color: #f4f6f8;
  padding: 70px 0 80px;
}
.about-company .left{
  padding-right: 50px;
}
.about-company .left .header{
  display: flex;
  align-items: center;
  margin-bottom: 75px;
}
.about-company .left .header .icon{
  min-width: 120px;
  width: 120px;
  height: 120px;
  margin-right: 30px;
}
.about-company .left .header .heading-lg{
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}
.about-company .left .header .heading-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

/* Start Company Form Steps */
.company-tabs{
  border-bottom: 0;
}
.company-tabs .nav-item{
  width: calc(50% - 10px);
}
.company-tabs .nav-item .nav-link{
  width: 100%;
  color: inherit;
  border-color: transparent;
  text-align: left;
  padding: 0;
}
.company-tabs .nav-item .nav-link.active{
  color: inherit;
  border-color: transparent;
  background-color: transparent !important;
}
.company-tabs .nav-link .text{
  padding-left: 40px;
}
.company-tabs .nav-link .text .lg{
  display: inline;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #333;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.company-tabs .green-check .text .lg{
  position: relative;
}
.company-tabs .green-check .text .lg::after{
  content: url("../images/icons/success-icon.png");
  position: absolute;
  right: -16px;
  top: -10px;
}
.company-tabs .nav-link .text .sm{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #8b8b8b;
  line-height: 1;
  text-transform: uppercase;
}
.company-tabs .nav-link .bar{
  position: relative;
  background-color: #e3e5e8;
  width: 100%;
  height: 3px;
  margin-top: 15px;
}
.company-tabs .orange-bar .bar{
  background-color: #e96920 !important;
}
.company-tabs .nav-link .bar::before{
  content: "";
  width: 20px;
  height: 20px;
  background-color: #e3e5e8;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: -8px;
}
.company-tabs .orange-bar .bar::after{
  content: "";
  width: 12px;
  height: 12px;
  background-color: #e96920;
  border-radius: 15px;
  position: absolute;
  left: 4px;
  top: -4px;
}

.company-content{
  padding: 80px 0 30px;
}
.company-content .form-label{
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  margin-bottom: 10px;
}
.company-content .form-label span{
  font-size: 18px;
  color: #e9651a;
}
.company-content .form-control,
.company-content .form-select {
  height: 50px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-radius: 8px;
  outline: 0;
  appearance: none;
}
.company-content .form-control.is-invalid,
.company-content .was-validated .form-control:invalid {
  border-color: #e9651a;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e9651a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.company-content .btn-submit{
  position: relative;
  height: 52px;
  padding: 10px 80px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgb(201, 201, 201);
  background-color: rgb(233, 105, 32);
  border-radius: 30px;
  margin-top: 40px;
  box-shadow: none;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.company-content .btn-submit span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.company-content .btn-submit:hover span {
  transform: translateY(0) scale(2);
}
.company-content .btn-submit span:nth-child(1) {
  --n: 1;
}
.company-content .btn-submit span:nth-child(2) {
  --n: 2;
}
.company-content .btn-submit span:nth-child(3) {
  --n: 3;
}
.company-content .btn-submit span:nth-child(4) {
  --n: 4;
}
.company-content .btn-submit span:nth-child(5) {
  --n: 5;
}

.company-content .success-message{
  background-color: #fff;
  padding: 50px 20px 60px;
  text-align: center;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
}
.company-content .success-message .icon{
  width: 110px;
  margin-bottom: 40px;
}
.company-content .success-message .heading{
  font-size: 30px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 25px;
}
.company-content .success-message .desc{
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin: 0 auto;
}
/* End Company Form Steps */

.about-company .right .opp-card{
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.opp-card .header{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 35px 20px 20px 75px;
  margin-bottom: 0;
}
.opp-card .header::before {
  content: url("../images/icons/icon-orange-blue-check.png");
  position: absolute;
  top: 25px;
  left: 35px;
}
.opp-card .item{
  padding: 25px 20px 25px 35px;
  border-top: 1px solid #d1d1d1;
}
.opp-card .item-heading{
  font-size: 18px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 25px;
}
.opp-card .item-list{
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.opp-card .item-list li{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.opp-card .item-list li:last-of-type,
.opp-card .item-list li:only-of-type{
  margin-bottom: 0;
}
.opp-card .item-list li .icon{
  width: 25px;
  margin-right: 10px;
}
.opp-card .item-list li a{
  display: block;
  text-decoration: none;
}
.opp-card .item-list li .text-lg{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 5px;
}
.opp-card .item-list li .text-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #e9651a;
  text-transform: uppercase;
  line-height: 1;
}
.opp-card .item-list li a:hover .text-sm{
  text-decoration: 1.5px solid underline;
  text-decoration-color: #1490b4;
}

/* End Get Started About Your Company */

/* Start Get Started Five Features  */
.get-started-features{
  position: relative;
  padding: 75px 0;
  background: url("../images/bg-get-started-features.png") no-repeat;
  background-position: bottom;
  background-size: cover;
}
.get-started-features .feature{
  text-align: center;
}
.get-started-features .feature .icon{
  width: 100px;
  display: inline-block;
  margin-bottom: 25px;
}
.get-started-features .feature .name{
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 0;
}
/* End Get Started Orange Features  */

/*
**********************************
**********************************
******* Door to Door Page Css ********
**********************************
**********************************
*/

/* Start DTD Banner Section */
.dtd-banner {
  background: url("../images/dtd-banner-bg.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 70px 0 60px;
  overflow-x: hidden;
}
.dtd-banner .left{
  padding-left: 100px;
}
.dtd-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.dtd-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.dtd-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-top: 30px;
}
/* End DTD Banner Section */

/* Start DTD Main Section */
.dtd-main-section{
  position: relative;
  padding: 80px 0 60px;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
.dtd-main-section .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
  padding-left: 45px;
}
.dtd-main-section .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.dtd-main-section .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.dtd-main-section .right{
  padding: 0 90px;
}
/* End DTD Main Section */

/* Start DTD Services Section */
.z-index-1{
  z-index: 1;
}
.dtd-services{
  position: relative;
  padding: 60px 0 70px;
  background-color: #e9eef1;
  overflow: hidden;
  z-index: 1;
}
.dtd-services::before {
  content: url("../images/premium-products-bg1.png");
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}
.dtd-services::after {
  content: url("../images/premium-products-bg2.png");
  position: absolute;
  bottom: -7px;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}
.dtd-services .header{
  text-align: center;
  margin-bottom: 60px;
}
.dtd-services .header .check-icon{
  margin-bottom: 15px;
}
.dtd-services .header .text{
  width: 75%;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 600;
  color: #0c374f;
  line-height: 1.2;
  margin-bottom: 0;
}
.dtd-services .services-list{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dtd-services .services-list li{
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  float: left;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  padding: 0 25px;
  margin-bottom: 20px;
}
.dtd-services .services-list li .icon{
  width: 45px;
  margin-right: 15px;
}
.dtd-services .orange-bar{
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  background-color: rgb(233, 101, 26);
  border-radius: 20px;
  box-shadow: 0px 16px 23px 0px rgba(1, 15, 21, 0.07);
  margin: 25px 25px 0;
}
.dtd-services .orange-bar .icon-note{
  width: 80px;
  margin-right: 30px;
}

/* End DTD Services Section */

/* Start PPS Alert Section */
.pps-alert-section{
  position: relative;
  padding: 80px 0 60px;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
.pps-alert-section .left{
  padding-right: 40px;
}
.pps-alert-section .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
  padding-left: 45px;
}
.pps-alert-section .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.pps-alert-section .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.pps-alert-section .right{
  padding: 0 130px;
}
/* End PPS Alert Section */

/*
**********************************
**********************************
******* Verify Badge Page Css ********
**********************************
**********************************
*/

/* Start DTD Banner Section */
.vb-banner {
  background: url("../images/vb-banner-bg.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 110px 0 120px;
  overflow-x: hidden;
}
.vb-banner .left{
  padding-left: 100px;
}
.vb-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.vb-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.vb-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-top: 30px;
}
/* End DTD Banner Section */

/* Start Verify Badge Main Section */
.vb-main-section{
  position: relative;
  padding: 50px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.vb-main-section .main-text{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin-bottom: 50px;
}
.vb-main-section .serial-number-box{
  display: flex;
  align-items: center;
  padding: 25px 40px 30px 35px;
  background: url("../images/serial-number-box-bg.png") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  box-shadow: 0px 16px 23px 0 #00aeff2e;
  border-radius: 25px;
}
.vb-main-section .serial-number-box .icon{
  margin-right: 35px;
}
.vb-main-section .serial-number-box .heading-lg{
  font-size: 21px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vb-main-section .serial-number-box .heading-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1;
  margin-bottom: 12px;
}
.vb-main-section .serial-number-box .search-field{
  display: flex;
  align-items: center;
}
.vb-main-section .serial-number-box input{
  width: 100%;
  height: 45px;
  padding: 0 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #333;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: 0;
  box-shadow: none;
}
.vb-main-section .serial-number-box button{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 10px;
  background-color: #f2f2f2;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid rgb(201, 201, 201);
  border-left: 0;
  outline: 0;
  box-shadow: none;
}
.vb-main-section .vb-badgelink{
  margin-top: 80px;
}
.vb-main-section .vb-badgelink .heading{
  font-size: 28px;
  font-weight: 700;
  color: #e9651b;
  line-height: 1;
  margin-bottom: 35px;
}
.vb-main-section .vb-badgelink .text-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 25px;
}
.vb-main-section .vb-badgelink .text-md{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1;
  margin-bottom: 25px;
}
.vb-main-section .vb-badgelink .btn-view{
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 54px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 14px 25px 12px 25px;
  background-color: #1490b4;
  border: 2px solid #1490b4;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.vb-main-section .vb-badgelink .btn-view .icon{
  width: 28px;
  margin-right: 10px;
}
.btn-view span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #e96920;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.btn-view:hover {
  border: 2px solid #fff !important;
}
.btn-view:hover span {
  transform: translateY(0) scale(2);
}
.btn-view span:nth-child(1) {
  --n: 1;
}
.btn-view span:nth-child(2) {
  --n: 2;
}
.btn-view span:nth-child(3) {
  --n: 3;
}
.btn-view span:nth-child(4) {
  --n: 4;
}
.btn-view span:nth-child(5) {
  --n: 5;
}
.btn-view span:nth-child(6) {
  --n: 6;
}
.vb-main-section .vb-badgelink .vb-badgelink-img img{
  max-width: 90%;
}

.vb-main-section .resources-forms{
  background-color: #f5fdff;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.resources-forms .header{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 35px 20px 20px 75px;
  margin-bottom: 0;
}
.resources-forms .header::before {
  content: url("../images/icons/icon-orange-blue-check.png");
  position: absolute;
  top: 25px;
  left: 35px;
}
.resources-forms .body{
  padding: 0 30px 20px 30px;
}
.resources-forms .item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #d1d1d1;
}
.resources-forms .item .icon{
  height: 25px;
  margin-right: 10px;
}
.resources-forms .item .text{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  line-height: 1.2;
}
.resources-forms .item .btn-download{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 8px;
  background-color: rgb(233, 101, 26);
  text-decoration: none;
  border-radius: 4px;
  margin-left: 20px;
  transition: all 0.3s;
}
.resources-forms .item .btn-download:hover{
  background-color: #1490b4;
  transition: all 0.3s;
}
.mt-50{
  margin-top: 50px;
}
.vb-pass-fail-card{
  position: relative;
  display: flex;
  border: 1px solid rgb(233, 105, 32);;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.27);
  z-index: 1;
  margin-bottom: 45px;
}
.vb-pass-fail-card:last-child{
  margin-bottom: 0;
}
.vb-pass-fail-card .profile{
  width: 31%;
  padding: 25px 20px;
  text-align: center;
  background-color: #f7f7f7;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.vb-pass-fail-card .profile .firm-logo{
  margin-bottom: 20px;
}
.vb-pass-fail-card .profile .pic{
  width: 120px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 auto 25px;
}
.vb-pass-fail-card .profile .pic img{
  width: 100%;
  max-width: 100%;
  object-fit: contain;
}
.vb-pass-fail-card .profile .text{
  font-size: 16px;
  font-weight: 500;
  color: #0c374f;
  line-height: 1.6;
}
.vb-pass-fail-card .details{
  width: 69%;
}
.vb-pass-fail-card .details .header1{
  padding: 25px 45px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  border-top-right-radius: 15px;
}
.vb-pass-fail-card.passed .details .header1{
  color: #23580e;
  background-color: #59bc1d;
}
.vb-pass-fail-card.failed .details .header1{
  color: #6e0404;
  background-color: #f68888;
}
.vb-pass-fail-card .details .header1 span{
  text-transform: uppercase;
}
.vb-pass-fail-card .details .body1{
  position: relative;
  padding: 30px 25px 30px 45px;
}
.vb-pass-fail-card .details .body1 .stamp-logo{
  position: absolute;
  top: 15px;
  right: 15px;
  width: 130px;
  z-index: 1;
}
.vb-pass-fail-card.passed .details .body1 .stamp-logo{
  top: -50px;
}
.vb-pass-fail-card .details .body1 .text{
  font-size: 18px;
  font-weight: 500;
  color: #0c374f;
  line-height: 1;
  margin-bottom: 12px;
}
.vb-pass-fail-card .details .body1 .text:last-of-type{
  margin-bottom: 0;
}
.vb-pass-fail-card .details .header2{
  padding: 25px 45px;
  font-size: 18px;
  font-weight: 700;
  color: #0c374f;
  background-color: #b1d0f6;
  line-height: 1;
  text-transform: capitalize;
}
.vb-pass-fail-card .details .body2{
  padding: 20px 25px 25px 45px;
  border-bottom-right-radius: 15px;
}
.vb-pass-fail-card .details .body2 .text{
  font-size: 18px;
  font-weight: 400;
  color: #0c374f;
  line-height: 1.6;
}
.vb-main-section .orange-bar{
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  padding-right: 30px;
  background-color: rgb(233, 101, 26);
  border-radius: 20px;
  box-shadow: 0px 16px 23px 0px rgba(1, 15, 21, 0.07);
  margin-top: 50px;
}
.vb-main-section .orange-bar .icon-note{
  width: 80px;
  margin-right: 30px;
}
.bc-gr-upper-desc,
.bc-gr-lower-desc {
  font-size: 15px;
  font-weight: 500;
  color: #0d3850;
  line-height: 1.3;
  margin-bottom: 20px;
}
.bc-gr-form{
  background: url("../images/bg-watermark.png");
  padding: 30px 15px;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 10%);
  border-radius: 10px;
}
.bc-gr-form .cj-grant{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bc-gr-form .cj-grant .logo{
  margin-right: 25px;
}
.bc-gr-form .cj-grant .logo img{
  width: 150px;
}
.bc-gr-form .cj-grant .content .item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  color: #333;
}
.bc-gr-form .cj-grant .content .item i{
  color: #847866;
  font-size: 25px;
  margin-right: 15px;
}
.bc-gr-form .form-label {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  margin-bottom: 8px;
}
.bc-gr-form  .form-label span {
  font-size: 18px;
  color: #e9651a;
}
.bc-gr-form .form-control{
  height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-radius: 8px;
  outline: 0;
  appearance: none;
}
.bc-gr-form textarea{
  display: block;
  width: 100%;
  min-height: 160px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-radius: 8px;
  outline: 0;
  appearance: none;
  resize: none;
}
.bc-gr-form .btn-submit {
  position: relative;
  height: 52px;
  padding: 10px 80px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgb(201, 201, 201);
  background-color: rgb(233, 105, 32);
  border-radius: 30px;
  margin-top: 10px;
  box-shadow: none;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.bc-gr-form .btn-submit span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.bc-gr-form .btn-submit:hover {
  color: #e96920 !important;
  border: 1px solid #e96920;
}
.bc-gr-form .btn-submit:hover span {
  transform: translateY(0) scale(2);
}
.bc-gr-form .btn-submit span:nth-child(1) {
  --n: 1;
}
.bc-gr-form .btn-submit span:nth-child(2) {
  --n: 2;
}
.bc-gr-form .btn-submit span:nth-child(3) {
  --n: 3;
}
.bc-gr-form .btn-submit span:nth-child(4) {
  --n: 4;
}
.bc-gr-form .btn-submit span:nth-child(5) {
  --n: 5;
}

.bc-gr-form canvas {
  display: block;
  height: 160px;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  cursor: url(https://www.evernote.com/l/Acd37JqBggRPqpLOZ59yz3g1uSWWpmfuIAcB/image.png), crosshair;
}


/*
**********************************
**********************************
******* Door to Door Page Css ********
**********************************
**********************************
*/

/* Start Transportation Banner Section */
.transportation-banner {
  background: url("../images/bg-transportation-banner-section.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 60px 0 35px;
  overflow-x: hidden;
}
.transportation-banner .left{
  padding-left: 100px;
}
.transportation-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.transportation-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.transportation-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin: 25px 0;
}
.transportation-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.transportation-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.transportation-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.transportation-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.transportation-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.transportation-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.transportation-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.transportation-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.transportation-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
/* End Transportation Banner Section */

/* Start Transportation Driver BG Checks Section */
.driver-bg-checks{
  position: relative;
  padding: 50px 0 60px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.driver-bg-checks .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.driver-bg-checks .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.driver-bg-checks .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.driver-bg-checks .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.driver-bg-checks .right{
  padding: 0 90px;
}
/* End Transportation Driver BG Checks Section */

/* Start Transportation Services Section */
.z-index-1{
  z-index: 1;
}
.transportation-services{
  position: relative;
  padding: 60px 0 80px;
  background-color: #e8edf1;
  overflow: hidden;
  z-index: 1;
}
.transportation-services::before {
  content: url("../images/premium-products-bg1.png");
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}
.transportation-services::after {
  content: url("../images/premium-products-bg2.png");
  position: absolute;
  bottom: -7px;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}
.transportation-services .header{
  text-align: center;
  margin-bottom: 100px;
}
.transportation-services .header .check-icon{
  margin-bottom: 15px;
}
.transportation-services .header .main-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.transportation-services .header .text{
  width: 75%;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 600;
  color: #0c374f;
  line-height: 1.2;
}
.transportation-services .services-list{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.transportation-services .services-list li{
  position: relative;
  display: flex;
  align-items: center;
  width: 50%;
  float: left;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  padding: 0 25px;
  margin-bottom: 20px;
}
.transportation-services .services-list li:last-child{
  margin-bottom: 0;
}
.transportation-services .services-list li .icon{
  width: 45px;
  margin-right: 15px;
}
/* End Transportation Services Section */


/*
**********************************
**********************************
******* Self SignIn Page Css ********
**********************************
**********************************
*/

/* Start Self Sign Banner */
.self-sign-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-self-sign-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 140px 0 140px;
  overflow-x: hidden;
}
.self-sign-banner .content{
  padding-left: 80px;
}
.self-sign-banner .content .heading-sm{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.self-sign-banner .content .heading-sm::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.self-sign-banner .content .heading-lg{
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
}
/* End Registration Form Banner */

/* Start Registration Form Section*/
.registration-form{
  background-color: #f4f6f8;
  padding: 70px 0 80px;
}
.registration-form .left .header{
  display: flex;
  align-items: flex-start;
  margin-bottom: 75px;
}
.registration-form .left .header .icon{
  min-width: 120px;
  width: 120px;
  height: 120px;
  margin-right: 30px;
}
.registration-form .left .header .heading-lg{
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}
.registration-form .left .header .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

/* Start Registration Form Steps */
.reg-tabs{
  border-bottom: 0;
}
.reg-tabs .nav-item{
  width: calc(25% - 10px);
  margin: 0 5px;
}
.reg-tabs .nav-item .nav-link{
  width: 100%;
  color: inherit;
  border-color: transparent;
  text-align: left;
  padding: 0;
}
.reg-tabs .nav-item .nav-link.active{
  color: inherit;
  border-color: transparent;
  background-color: transparent !important;
}
.reg-tabs .nav-link .info{
  display: flex;
  align-items: center;
}
.reg-tabs .nav-link .info .icon{
  margin-right: 5px;
}
.reg-tabs .nav-link .info .text-lg{
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.reg-tabs .nav-link .info .text-lg.text-orange{
  color: #e96920;
}
.reg-tabs .nav-link .info .text-lg.text-yellow{
  color: #fcc44b;
}
.reg-tabs .nav-link .info .text-lg.text-green{
  color: #33ce7f;
}
.reg-tabs .nav-link .info .text-lg.text-blue{
  color: #1490b4;
}
.reg-tabs .green-check .info .text-lg{
  position: relative;
}
.reg-tabs .green-check .info .text-lg::after{
  content: url("../images/icons/success-icon.png");
  position: absolute;
  right: -16px;
  top: -10px;
}
.reg-tabs .nav-link .info .text-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #8b8b8b;
  line-height: 1;
  text-transform: uppercase;
}
.reg-tabs .nav-link .bar{
  position: relative;
  background-color: #e3e5e8;
  width: 100%;
  height: 3px;
  margin-top: 15px;
}
.reg-tabs .orange-bar .bar{
  background-color: #e96920 !important;
}
.reg-tabs .yellow-bar .bar{
  background-color: #fcc44b !important;
}
.reg-tabs .green-bar .bar{
  background-color: #33ce7f !important;
}
.reg-tabs .blue-bar .bar{
  background-color: #1490b4 !important;
}
.reg-tabs .nav-link .bar::before{
  content: "";
  width: 20px;
  height: 20px;
  background-color: #e3e5e8;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: -8px;
}
.reg-tabs .nav-link .bar::after{
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 15px;
  position: absolute;
  left: 4px;
  top: -4px;
}
.reg-tabs .orange-bar .bar::after{
  background-color: #e96920;
}
.reg-tabs .yellow-bar .bar::after{
  background-color: #fcc44b;
}
.reg-tabs .green-bar .bar::after{
  background-color: #33ce7f;
}
.reg-tabs .blue-bar .bar::after{
  background-color: #1490b4;
}

.reg-content{
  padding: 60px 0 30px;
}
.reg-content .form-label{
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1;
  margin-bottom: 10px;
}
.reg-content .form-label span{
  font-size: 18px;
  color: #e9651a;
}
.reg-content .form-control,
.reg-content .form-select {
  height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-radius: 8px;
  outline: 0;
  appearance: none;
}
.reg-content .form-control.is-invalid,
.reg-content .was-validated .form-control:invalid {
  border-color: #e9651a;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e9651a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}
.reg-content textarea {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding: 10px;
  background-color: #fff;
  border: 1px solid rgb(201, 201, 201);
  border-radius: 8px;
  outline: 0;
  appearance: none;
}
.reg-content .btn-submit{
  position: relative;
  height: 52px;
  padding: 10px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid rgb(201, 201, 201);
  background-color: rgb(233, 105, 32);
  border-radius: 30px;
  margin-top: 40px;
  box-shadow: none;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.reg-content .btn-submit span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.reg-content .btn-submit:hover span {
  transform: translateY(0) scale(2);
}
.reg-content .btn-submit span:nth-child(1) {
  --n: 1;
}
.reg-content .btn-submit span:nth-child(2) {
  --n: 2;
}
.reg-content .btn-submit span:nth-child(3) {
  --n: 3;
}
.reg-content .btn-submit span:nth-child(4) {
  --n: 4;
}
.reg-content .btn-submit span:nth-child(5) {
  --n: 5;
}
.reg-content .btn-back{
  display: inline-block;
  position: relative;
  height: 52px;
  padding: 10px 50px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgb(201, 201, 201);
  background-color: #1490b4;
  border-radius: 30px;
  margin-top: 40px;
  box-shadow: none;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.reg-content .btn-back span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #e96920;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.reg-content .btn-back:hover span {
  transform: translateY(0) scale(2);
}
.reg-content .btn-back span:nth-child(1) {
  --n: 1;
}
.reg-content .btn-back span:nth-child(2) {
  --n: 2;
}
.reg-content .btn-back span:nth-child(3) {
  --n: 3;
}
.reg-content .btn-back span:nth-child(4) {
  --n: 4;
}
.reg-content .btn-back span:nth-child(5) {
  --n: 5;
}

.prod-orders thead tr{
  background-image: -moz-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -webkit-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  background-image: -ms-linear-gradient( 180deg, rgb(233,105,32) 0%, rgb(20,144,180) 72%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.prod-orders thead tr th{
  padding: 10px 15px;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  border-right: 1px solid #fff;
}
.prod-orders tbody tr td{
  background-color: #fff;
  padding: 15px;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.prod-orders .prod-details .name {
  font-size: 16px;
  font-weight: 700;
  color: #e9651a;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 15px;
}
.prod-orders .prod-details .content {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.total-cost{
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #1490b4;
  padding: 7px 15px;
  border-radius: 3px;
  margin-top: 30px;
}

.acknowledgement-box {
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  padding: 35px 30px;
  border-radius: 20px;
  margin-top: 30px;
  text-align: center;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 10%);
}
.acknowledgement-box .heading{
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
}
.acknowledgement-box .heading::before{
  content: url("../images/icons/icon-orange-blue-check.png");
  position: absolute;
  top: -15px;
  left: -35px;
}

.acknowledgement-box .form-check{
  padding-left: 35px;
  margin-bottom: 20px;
  min-height: auto;
}
.acknowledgement-box .form-check:last-child{
  margin-bottom: 0;
}
.acknowledgement-box .form-check input{
  width: 22px;
  height: 22px;
  outline: 0;
  box-shadow: none;
  margin-left: -35px;
  border-color: #e9651b !important;
  background-color: #fff;
  box-shadow: none !important;
  outline: 0 !important;
}
.acknowledgement-box .form-check input:checked[type=checkbox]{
  background-color: #e9651b;
}
.acknowledgement-box .form-check .form-check-label{
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
  color: initial;
}
.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label{
  color: initial;
}
.acknowledgement-box .invalid-feedback{
  text-align: left;
}

.payment-box {
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  padding: 35px;
  border-radius: 20px;
  margin-top: 30px;
  text-align: center;
  min-height: 340px;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 10%);
}
.payment-box .heading{
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.payment-box .heading::before{
  content: url("../images/icons/icon-orange-blue-check.png");
  position: absolute;
  top: -15px;
  left: -35px;
}
.payment-box .pay-method-icons{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.payment-box .pay-method-icons img{
  width: 60px;
  margin: 0 3px;
}

.reg-content .success-message{
  background-color: #fff;
  padding: 50px 20px 60px;
  text-align: center;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
}
.reg-content .success-message .icon{
  width: 110px;
  margin-bottom: 40px;
}
.reg-content .success-message .heading{
  font-size: 30px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 25px;
}
.reg-content .success-message .desc{
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  margin: 0 auto;
}
/* End Registration Form Steps */

/* PPS Provides Vendors */
.registration-form .right .provides-vendors{
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.provides-vendors {
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 20px;
  text-align: center;
  min-height:250px;
  box-shadow: 0px 16px 32px 0px rgb(0 0 0 / 10%);
}
.provides-vendors .header{
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #0c374f;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 35px 20px 20px 75px;
}
.provides-vendors .header::before {
  content: url("../images/icons/icon-orange-blue-check.png");
  position: absolute;
  top: 25px;
  left: 35px;
}
.provides-vendors .item{
  padding: 15px;
  border-top: 1px solid #d1d1d1;
}
.provides-vendors .item .list{
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.provides-vendors .list li{
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.provides-vendors .list li:last-of-type,
.provides-vendors .list li:only-of-type{
  margin-bottom: 0;
}
.provides-vendors .list li .icon{
  width: 30px;
  margin-right: 12px;
}
.provides-vendors .list li .text{
  font-size: 10px;
  font-weight: 300;
  color: #0c374f;
  line-height: 1.3;
}

.provides-vendors .support .heading{
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.provides-vendors .support .heading .icon{
  width: 40px;
  margin-right: 12px;
}
.provides-vendors .support .text{
  padding-left: 52px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 15px;
}
.provides-vendors .support .number{
  padding-left: 52px;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #e96d26;
  line-height: 1;
  text-decoration: none;
}

.provides-vendors .faq{
  text-align: center;
}
.provides-vendors .faq .heading{
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.provides-vendors .faq .heading .icon{
  width: 40px;
  margin-right: 12px;
}
.provides-vendors .faq .text{
  padding-left: 52px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 30px;
}
.provides-vendors .faq .btn-faq{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 50px;
  min-height: 50px;
  font-family: proxima-nova-bold;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #e96d26;
  border-radius: 50px;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.provides-vendors .faq .btn-faq span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #1490b4;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.provides-vendors .faq .btn-faq:hover span {
  transform: translateY(0) scale(2);
}
.provides-vendors .faq .btn-faq span:nth-child(1) {
  --n: 1;
}
.provides-vendors .faq .btn-faq span:nth-child(2) {
  --n: 2;
}
.provides-vendors .faq .btn-faq span:nth-child(3) {
  --n: 3;
}
.provides-vendors .faq .btn-faq span:nth-child(4) {
  --n: 4;
}
/** rehan **/

/*
**********************************
**********************************
******* Business To Business Page Css ********
**********************************
**********************************
*/

/* Start B2B Banner Section */
.b2b-banner {
  background: url("../images/bg-b2b-banner-section.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 76px 0 50px;
  overflow-x: hidden;
}
.b2b-banner .left{
  padding-left: 100px;
}
.b2b-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.b2b-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.b2b-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin: 25px 0;
}
.b2b-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.b2b-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.b2b-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.b2b-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.b2b-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.b2b-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.b2b-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.b2b-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.b2b-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
/* End B2B Banner Section */

/* Start B2B Criminal BG Checks Section */
.b2b-bg-checks{
  position: relative;
  padding: 56px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.b2b-bg-checks .notification-box {
  padding: 30px 90px 30px 45px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  margin-bottom: 100px;
  display: flex;
  align-items: center;
}
.b2b-bg-checks .notification-box span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.b2b-bg-checks .notification-box img {
  margin-right: 25px;
}
.b2b-bg-checks .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.b2b-bg-checks .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.b2b-bg-checks .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.b2b-bg-checks .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.b2b-bg-checks .right{
  padding: 0 90px;
}
.b2b-bg-checks .right .img {
  text-align: right;
}
/* End B2B Criminal BG Checks Section */

/*
**********************************
**********************************
******* Industry Construction Page Css ********
**********************************
**********************************
*/

/* Start Construction Non Profit Volunteer Banner Section */
.npv-banner {
  background: url("../images/bg-non-profit-volunteer-banner-section.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 65px 0 50px;
  overflow-x: hidden;
}
.npv-banner .left{
  padding-left: 100px;
}
.npv-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.npv-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.npv-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin: 25px 0;
}
.npv-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.npv-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.npv-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.npv-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.npv-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.npv-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.npv-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.npv-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.npv-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
.npv-banner .left .desc strong {
  font-weight: bold;
}
/* End Construction Non Profit Volunteer Banner Section */

/* Start Construction Background Screening non Profit Section */
.npv-bg-screening{
  position: relative;
  padding: 56px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.npv-bg-screening .notification-box {
  padding: 35px 90px 35px 45px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.npv-bg-screening .notification-box span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.npv-bg-screening .notification-box img {
  margin-right: 25px;
}
.npv-bg-screening .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.npv-bg-screening .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.npv-bg-screening .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.npv-bg-screening .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.npv-bg-screening .right{
  padding: 0 90px;
}
.npv-bg-screening .img {
  text-align: right;
}
/* End Construction Background Screening non Profit Section */

/*
**********************************************************
**********************************************************
******* Industry Recruiting and Staffing Agencies Page Css ********
**********************************************************
**********************************************************
*/

/* Start Recruiting and Staffing Agencies Banner Section */
.rsa-banner {
  background: url("../images/bg-recruiting-and-staffing-agencies-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 76px 0 50px;
  overflow-x: hidden;
}
.rsa-banner .left{
  padding-left: 100px;
}
.rsa-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.rsa-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.rsa-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin: 25px 0;
}
.rsa-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.rsa-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.rsa-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.rsa-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.rsa-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.rsa-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.rsa-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.rsa-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.rsa-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
.rsa-banner .left .desc strong {
  font-weight: bold;
}
/* End Recruiting and Staffing Agencies Banner Section */

/* Start Recruiting Specialists Section */
.recruiting-specialists{
  position: relative;
  padding: 56px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.recruiting-specialists .notification-box {
  padding: 35px 40px 35px 35px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  margin-bottom: 100px;
  display: flex;
  align-items: center;
}
.recruiting-specialists .notification-box span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.recruiting-specialists .notification-box img {
  margin-right: 25px;
}
.recruiting-specialists .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.recruiting-specialists .left{
  padding-right: 50px;
}
.recruiting-specialists .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.recruiting-specialists .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.recruiting-specialists .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
}
.recruiting-specialists .right .img {
  text-align: right;
}
/* End Recruiting Specialists Section */

/*
**********************************
**********************************
******* Industry Energy Page Css ********
**********************************
**********************************
*/

/* Start Energy DTD Banner Section */
.ep-dtd-banner {
  background: url("../images/ep-dtd-banner-bg.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 50px 0 20px;
  overflow-x: hidden;
}
.ep-dtd-banner .left{
  padding-left: 100px;
}
.ep-dtd-banner .left .heading{
  position: relative;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.ep-dtd-banner .left .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -28px;
  left: -45px;
}
.ep-dtd-banner .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 1.5;
  margin: 20px 0;
}
.ep-dtd-banner .left .btn-get-started{
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 16px 35px 16px 35px;
  background-color: #e96920;
  border: 2px solid #e96920;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  box-shadow: 0.349px 9.994px 24px 0px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.ep-dtd-banner .btn-get-started span {
  position: absolute;
  width: 25%;
  height: 100%;
  background-color: #fff;
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}
.ep-dtd-banner .btn-get-started:hover {
  color: #e96920 !important;
}
.ep-dtd-banner .btn-get-started:hover span {
  transform: translateY(0) scale(2);
}
.ep-dtd-banner .btn-get-started span:nth-child(1) {
  --n: 1;
}
.ep-dtd-banner .btn-get-started span:nth-child(2) {
  --n: 2;
}
.ep-dtd-banner .btn-get-started span:nth-child(3) {
  --n: 3;
}
.ep-dtd-banner .btn-get-started span:nth-child(4) {
  --n: 4;
}
.ep-dtd-banner .btn-get-started span:nth-child(5) {
  --n: 5;
}
/* End Energy DTD Banner Section */

/* Start Energy DTD Badge Requirement Section */
.dtd-br-section{
  position: relative;
  padding: 56px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
/*Start Notification Section*/
.dtd-br-section .notification-box {
  padding: 30px 40px 30px 45px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  margin-bottom: 100px;
  display: flex;
  align-items: center;
}
.dtd-br-section .notification-box span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
.dtd-br-section .notification-box img {
  margin-right: 25px;
}
/*End Notification Section*/

.dtd-br-section .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.dtd-br-section .left .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.dtd-br-section .left .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.dtd-br-section .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
  margin-bottom: 25px;
}
.dtd-br-section .services-list{
  list-style-type: none;
  padding-left: 45px;
  margin-bottom: 35px;
}
.dtd-br-section .services-list li{
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 20px;
}
.dtd-br-section .services-list li:last-child{
  margin-bottom: 0;
}
.dtd-br-section .services-list li .icon{
  width: 45px;
  margin-right: 15px;
  box-shadow: 0px 7px 20px #00aeff33;
  border-radius: 50px;
}
.dtd-br-section .right{
  padding: 0 90px;
}
.dtd-br-section .img {
  text-align: right;
}
/** Start Warning Box section **/
.dtd-br-section .warning-box {
  padding: 30px 30px 30px 35px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  display: flex;
  align-items: center;
  margin-top: 35px;
}
.dtd-br-section .warning-box img {
  width: 110px;
  margin-right: 45px;
}
.dtd-br-section .warning-box span {
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 700;
  font-weight: bold;
  line-height: 1.4;
}
/** End Warning Box section **/

/* End Energy DTD Badge Requirement Section */

/** Start ADHPS Section **/
.adhps-section{
  background-color: #e9eef1;
  background-image: url('../images/adhps-section-img.png');
  padding: 100px 0px 50px 0px;
  background-repeat: no-repeat;
}
.adhps-section .right .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 45px;
}
.adhps-section .right .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: 0;
}
.adhps-section .right .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  padding-left: 45px;
  margin-bottom: 30px;
}
.adhps-section .services-list{
  list-style-type: none;
  padding-left: 45px;
  margin-bottom: 20px;
}
.adhps-section .services-list li{
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 30px;
}
.adhps-section .services-list li .icon{
  width: 45px;
  margin-right: 15px;
  box-shadow: 0px 7px 20px #00aeff33;
  border-radius: 50px;
}
.about-puc-section .left .heading .text{
  font-size: 32px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.about-puc-section .left .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
/** End ADHPS Section **/

/*
**********************************
**********************************
******* About Page Css ********
**********************************
**********************************
*/

/* Start About Banner Section */
.about-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-about-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 130px 0 140px;
  overflow-x: hidden;
}
.about-banner .content{
  padding-left: 80px;
}
.about-banner .content .heading-sm{
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-banner .content .heading-sm::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.about-banner .content .heading-lg{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-banner .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-top: 20px;
}
/* End About Banner Section */

/* Start About Main Section */
.about-main-section{
  position: relative;
  padding: 95px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.about-main-section .wwa-section {
  padding: 0px 60px 0px 45px;
}
.about-main-section .wwa-section .top-heading{
  font-size: 26px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 80px;
}
.about-main-section .wwa-section .sec-heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #0d3850;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
}
.about-main-section .wwa-section .sec-heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -30px;
  left: -45px;
}
.about-main-section .wwa-section .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.3;
}
/*Start Notification Section*/
.about-main-section .wwa-section .notification-box {
  padding: 30px 45px 30px 45px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  margin: 25px 0px 35px 0px;
}
.about-main-section .wwa-section img {
  margin-right: 25px;
}
/*End Notification Section*/
.about-main-section .wwa-section .wwa-inside-section{
  padding:60px 0px;
}
.about-main-section .wwa-section .wwa-inside-section .left .wwa-img img{
  max-width: 100%;
}
.about-main-section .wwa-section .wwa-inside-section .right .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 25px;
}
.about-main-section .wwa-section .desc.mb-25{
  margin-bottom: 25px;
}
/**right**/
.about-main-section .badge-forms{
  background-color: #f5fdff;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.about-main-section .badge-forms .about-badgelink-content{
  padding: 40px 30px 40px 30px;
  border-bottom: 1px solid #d1d1d1;
}
.about-main-section .badge-forms .about-badgelink-content .about-badgelink-img{
  text-align: center;
}
.about-main-section .badge-forms .about-badgelink-content .heading{
  font-size: 28px;
  font-weight: 700;
  color: #e9651b;
  line-height: 1;
  margin-bottom: 35px;
  margin-top: 15px;
}
.about-main-section .badge-forms .about-badgelink-content .text-sm{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 25px;
}
.about-main-section .badge-forms .about-badgelink-content .text-md{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 1;
  margin-bottom: 25px;
}
.about-main-section .badge-forms .about-badgelink-content .btn-view{
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 54px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 14px 25px 12px 25px;
  background-color: #1490b4;
  border: 2px solid #1490b4;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  outline: 0;
  overflow: hidden;
  z-index: 1;
  transition: 0.5s;
}
.about-main-section .badge-forms .about-badgelink-content .btn-view .icon{
  width: 28px;
  margin-right: 10px;
}
.about-main-section .badge-forms .header{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  line-height: 1.2;
  padding: 40px 30px 20px 30px;
  margin-bottom: 0;
}
.about-main-section .badge-forms .header::before {
  content: none;
}
.about-main-section .badge-forms .body{
  padding: 0 30px 20px 30px;
}
.about-main-section .badge-forms .item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #d1d1d1;
}
.about-main-section .badge-forms .item .icon{
  height: 25px;
  margin-right: 10px;
}
.about-main-section .badge-forms .item .text{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  line-height: 1.2;
}
.about-main-section .badge-forms .item .btn-download{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 8px;
  background-color: rgb(233, 101, 26);
  text-decoration: none;
  border-radius: 4px;
  margin-left: 20px;
  transition: all 0.3s;
}
.about-main-section .badge-forms .item .btn-download:hover{
  background-color: #1490b4;
  transition: all 0.3s;
}

/******* End About Page Css ******** /

/*
**********************************
**********************************
******* About Claudia Page Css ********
**********************************
**********************************
*/

/* Start About Banner Section */
.about-claudia-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-about-claudia-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 130px 0 110px;
  overflow-x: hidden;
}
.about-claudia-banner .content{
  padding-left: 80px;
}
.about-claudia-banner .content .heading-sm{
  position: relative;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-claudia-banner .content .heading-sm::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.about-claudia-banner .content .heading-lg{
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-claudia-banner .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  margin-top: 20px;
}
/* End About Banner Section */

/* Start About Main Section */
.ac-main-section{
  position: relative;
  padding: 95px 0 75px;
  background-color: #f4f6f8;
  overflow: hidden;
  z-index: 1;
}
.ac-main-section .ac-details-section .profile{
    display: flex;
}
.ac-main-section .ac-details-section .profile .right .name{
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 10px;
  margin-top: 25px;
}
.ac-main-section .ac-details-section .profile .right .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin-bottom: 0;
}

/*Start Notification Section*/
.ac-main-section .ac-details-section .profile .notification-box {
  padding: 30px 30px 30px 35px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #ffffff 0%, #e1f8e9 100%);
  box-shadow: 0px 12px 23px 0px rgb(0 0 0 / 10%);
  display: flex;
  align-items: flex-start;
  margin: 30px 0px 35px;
}
.ac-main-section .ac-details-section .profile .notification-box img {
  margin-right: 20px;
}
.ac-main-section .ac-details-section .profile .notification-box .quotes{
  font-size: 24px;
  line-height: 1.4;
}
/*End Notification Section*/

/**right**/
.ac-main-section .free-forms{
  background-color: #f5fdff;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.ac-main-section .free-forms .header{
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #0c374f;
  text-transform: capitalize;
  line-height: 1.2;
  padding: 40px 30px 20px 30px;
  margin-bottom: 0;
}
.ac-main-section .free-forms .header::before {
  content: none;
}
.ac-main-section .free-forms .body{
  padding: 0 30px 20px 30px;
}
.ac-main-section .free-forms .item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #d1d1d1;
}
.ac-main-section .free-forms .item .icon{
  height: 25px;
  margin-right: 10px;
}
.ac-main-section .free-forms .item .text{
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: capitalize;
  line-height: 1.2;
}
.ac-main-section .free-forms .item .btn-download{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 8px;
  background-color: rgb(233, 101, 26);
  text-decoration: none;
  border-radius: 4px;
  margin-left: 20px;
  transition: all 0.3s;
}
.ac-main-section .free-forms .item .btn-download:hover{
  background-color: #1490b4;
  transition: all 0.3s;
}
/******* End About Page Css ******** /

/*
**********************************
**********************************
******* Testimonials Page Css ********
**********************************
**********************************
*/

/* Start Testimonials Banner */
.testimonials-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-testimonials-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 120px 0;
  overflow-x: hidden;
}
.testimonials-banner .content{
  padding-left: 80px;
}
.testimonials-banner .content .heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.testimonials-banner .content .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.testimonials-banner .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
/* End Testimonials Banner */

/* Start Testimonials Sections */
.testimonials-section{
  background-color: #f4f6f8;
  padding: 90px 0 75px;
}
.testimonials-section .left{
  padding-right: 50px;
}
.testimonials-section .testimonials .item{
  position: relative;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 12px 23px 0px rgba(0, 0, 0, 0.07);
  border-radius: 25px;
  margin-bottom: 40px;
}
.testimonials-section .testimonials .item:hover .pic img{
  transform: scale(1.1);
}
.testimonials-section .testimonials .item .img-comma{
  position: absolute;
  right: 40px;
  top: 40px;
}
.testimonials-section .testimonials .item .header{
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.testimonials-section .testimonials .item .pic{
  height: 125px;
  width: 125px;
  border: 4px solid rgb(233, 101, 26);
  border-radius: 18px;
  margin-right: 40px;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.testimonials-section .testimonials .item .pic img{
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.testimonials-section .testimonials .item .name{
  font-size: 32px;
  font-weight: 700;
  color: #0c374f;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.testimonials-section .testimonials .item .designation{
  font-size: 20px;
  font-weight: 700;
  color: #e9651a;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
}
.testimonials-section .testimonials .item .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
}
.testimonials-section .right .opp-card{
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
/* End Testimonials Sections */

/*
**********************************
**********************************
******* Pagination Css ********
**********************************
**********************************
*/
/* Start Custom Pagination */
.custom-pagination{
  margin-top: 80px;
  text-align: center;
}
.custom-pagination ul{
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.custom-pagination ul li{
  margin-right: 8px;
}
.custom-pagination ul li:last-child{
  margin-right: 0;
}
.custom-pagination ul li a{
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  border: 1px solid #cac7c7;
  border-radius: 6px;
  text-decoration: none;
}
.custom-pagination ul li a.active{
  background-color: #e96920;
  color: #fff;
}
/* End Custom Pagination */

/*
**********************************
**********************************
******* Breadcrumbs Css ********
**********************************
**********************************
*/
.breadcrumbs{
  position: absolute;
  left: 0;
  top: -90px;
  display: inline-flex;
  align-items: center;
  background-color: rgb(233, 249, 254);
  padding: 13px 20px 13px 5px;
  margin: 0;
  list-style-type: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 9px 18px 0px rgba(10, 9, 10, 0.09);
}
.breadcrumbs::before{
  content: "";
  width: 200px;
  background-color: rgb(233, 249, 254);
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  box-shadow: 0px 9px 18px 0px rgba(10, 9, 10, 0.09);
}
.breadcrumbs li{
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #a3a4a4;
  line-height: 1;
  margin-right: 20px;
  text-transform: uppercase;
  user-select: none;
}
.breadcrumbs li:last-child{
  color: #0c374f;
}
.breadcrumbs li::after{
  content: url("../images/icons/icon-breadcrumb-arrow.png");
  position: absolute;
  right: -15px;
  top: 0;
}
.breadcrumbs li:last-child::after{
  display: none;
}

/*
**********************************
**********************************
******* Blogs Page Css ********
**********************************
**********************************
*/

/* Start Blogs Banner */
.blogs-banner {
  display: flex;
  align-items: center;
  background: url("../images/bg-blogs-banner.png") no-repeat;
  background-position: left center;
  background-size: cover;
  padding: 85px 0 75px;
  overflow-x: hidden;
}
.blogs-banner .content{
  padding-left: 80px;
}
.blogs-banner .content .heading{
  position: relative;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blogs-banner .content .heading::before{
  content: url("../images/icons/icon-main-heading-before.png");
  position: absolute;
  top: -35px;
  left: -45px;
}
.blogs-banner .content .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
/* End Blogs Banner */

/* Start Blogs Sections */
.blogs-section{
  background-color: #f4f6f8;
  padding: 90px 0 75px;
}
.blogs-section .left{
  padding-right: 50px;
}
.blogs-section .left .mb-40{
  margin-bottom: 40px;
}
.blogs-section .left .mt-40{
  margin-top: 40px;
}
.blogs-section .blog{
  position: relative;
  height: 100%;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.07);
}
.blogs-section .blog .date{
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 10px 15px;
  background-color: #0677a4cc;
  border-top-left-radius: 10px;
}
.blogs-section .blog .date img{
  width: 25px;
  margin-right: 12px;
}
.blogs-section .blog .img{
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-decoration: none;
}
.blogs-section .blog .img img{
  width: 100%;
}
.blogs-section .blog .body{
  padding: 20px 20px 30px 25px;
}
.blogs-section .blog .body .name{
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-decoration: none;
}
.blogs-section .blog .body .desc{
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.blogs-section .blog .body .read-more{
  display: inline-flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #e9651b;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
}
.blogs-section .blog .body .read-more img{
  width: 12px;
  margin-left: 5px;
}
.blogs-section .right .opp-card{
  background-color: rgb(245, 253, 255);
  border: 1px solid rgb(229, 229, 229);
  border-radius: 30px;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
/* End Blogs Sections */

/*
**********************************
**********************************
******* Blogs Details Page Css ********
**********************************
**********************************
*/

.blogs-section .blog-details .name {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.blogs-section .blog-details .date {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding: 10px 15px;
  background-color: #0677a4cc;
  margin: 20px 0;
  border-radius: 5px;
}
.blogs-section .blog-details .date img {
  width: 20px;
  margin-right: 12px;
}
.blogs-section .blog-details .list{
  padding: 0;
  margin: 30px 0;
  list-style: none;
}
.blogs-section .blog-details .list li{
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 30px;
  margin-bottom: 15px;
}
.blogs-section .blog-details .list li:last-child{
  margin-bottom: 0;
}
.blogs-section .blog-details .list li::before{
  content: url("../images/icons/pps-vendor-checkmark.png");
  position: absolute;
  top: 0;
  left: 0;
}
