/* 
        Primary colors: #474555 #5658AA #F7BD00
        Secondary colors: #F5F7FA #ACA9BB
        Typography: Poppins

*/

/* General CSS */

@font-face {
  font-family: Poppins-Regular;
  src: url(../css/font/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins-Bold;
  src: url(../css/font/Poppins-Bold.ttf);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-family: "Poppins-Regular", sans-serif;
}

body {
  background: #f4f4f4;
}

.bg-black {
  background: #1e1e1e;
}

a {
  transition: color 1s;
}

p {
  margin-bottom: 21px;
}

p:last-child {
  margin-bottom: 0px;
}

.p-tight {
  margin: 0 150px 50px 150px;
}

.p-tight:last-child {
  margin: 0 150px;
}

.p-grey-small {
  color: #a2acbd;
  font-size: 0.875rem;
}

.no-margin {
  margin: 0;
}

.margin-top-small {
  margin: 20px 0;
}

.auto-margin {
  display: block;
  margin: 0 auto;
}

.two-boxes {
  display: flex;
  align-items: center;
}

.two-boxes2 {
  display: flex;
  align-items: start;
}

.tb-1 {
  flex: 1.7;
  padding: 0 50px;
}

.tb-2 {
  flex: 1;
}

.tb-3 {
  flex: 1;
  padding: 0 50px;
}

.tb-3-1 {
  flex: 1;
  padding: 0 30px;
}

.tb-4 {
  flex: 1;
}

#sec {
  margin: 100px 0;
}

#sec2 {
  margin: 50px 0;
}

#sec3 {
  margin: 50px 0;
}

#sec-nomarg {
  margin: 0;
}

.grided-box {
  display: grid;
}

.img-responsive {
  width: 100%;
  border-radius: 15px;
}

.img-responsive2 {
  width: 60%;
  border-radius: 15px;
}

.img-responsive3 {
  width: 200px;
  border-radius: 15px;
  display: flex;
  margin: 0 auto;
}

.link-p-blue {
  color: #0d81fe;
  text-decoration: none;
}

.white-color {
  color: #ffffff;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 24px;
  text-transform: capitalize;
}

.btn-hero {
  color: white;
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
}

.btn-hero:hover {
  color: #1f1f1f !important;
  background: #ffffff;
}

.btn-prs {
  color: #1f1f1f;
  background: #ffffff;
}

.btn-prs:hover {
  color: white;
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
}

.btn-downld-bx {
  width: auto;
  background-color: #1e1e1e;
  font-size: 18px;
  padding: 14px 40px;
  font-weight: 400;
  text-decoration: none;
  color: #ffffff;
  transition: color 0s, background 1s;
}

.btn-downld-bx:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-downld-bx2 {
  background-color: #ffffff;
  color: #1e1e1e;
}

.btn-downld-bx2:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-nav {
  color: #ffffff !important;
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
  padding: 9px 20px;
  border-radius: 10px;
  display: block;
  transition: color 1s, background 1s;
}

.btn-nav:hover {
  color: #000000 !important;
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins-Regular", sans-serif;
  line-height: 1;

  text-transform: capitalize;
}

.container {
  margin: 0 50px;
}

.container-full {
  width: 100%;
  margin: 0;
}

.container-small {
  margin: 0 150px;
}

.container-small2 {
  margin: 0 150px;
}

.container-small3 {
  margin: 0 100px;
}

.hr-1 {
  background-color: #575757;
  width: 80%;
  height: 1px;
  margin: 110px auto;
}

figcaption {
  color: #898989;
  font-size: 14px;
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

/* header */
.header {
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 150px;
  padding: 0 5%;
  background-color: #1e1e1e;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

/* menu */
.h1-menu {
  position: relative;
}

.h2-menu {
  display: flex;
}

.header .h2-menu .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  display: flex;
  align-items: center;
}

.menu li {
  margin: 0 12px;
  padding: 8px 0;
}

.a-link {
  color: #ffffff;
  font-size: 19px;
  text-decoration: none;
  text-transform: capitalize;
}

.a-link:hover {
  color: #0b80fd;
}

/* .logo {
  position: absolute;
  top: -30px;
  left: 0;
} */
.logo img {
  width: 170px;
  /* height: 100%; */
}

/* menu icon */
.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: #1080fc;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 30px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #1080fc;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 7px;
}

.header .menu-icon .navicon:after {
  top: -7px;
}

/* menu btn */
.header .menu-btn {
  display: none;
}

.header .menu-btn:checked~.h2-menu .menu {
  max-height: 350px;
  padding-bottom: 70px;
}

.header .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/**** Hero ****/
#hero-sec {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: auto;
  position: relative;
}

.hero-inner {
  background: #1f1f1f;
  display: flex;
  padding: 0px 50px;
  height: 550px;
}

.hero-desc {
  padding-right: 70px;
}

.hero-plink,
.hero-plink a {
  line-height: 1;
  color: #827d7d !important;
  font-size: 18px;
}

.hi-l,
.hi-r {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hi-l {
  flex: 1.5;
}

.hi-r {
  flex: 1;
}

.hero-img {
  width: 400px;
}

.hero-desc h1 {
  color: rgb(10, 129, 254);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-desc h2 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.hero-desc p {
  color: #ffffff;
}

/**** main desc ****/
.img-hp {
  width: 350px;
  transition: 1s;
  margin: 0 auto;
  display: flex;
}

.img-hp:hover {
  scale: 1.1;
}

#main-desc {
  margin: 100px auto;
}

.title-sec {
  text-align: center;
  margin-bottom: 50px;
}

.title-h4-1 {
  font-size: 2rem;
}

.title-h4-2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.title-h4-3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.title-h5-1 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.title-h5-2 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #0b80fd;
}

.title-h6-1 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #515050;
}

/**** video sec ****/
#video-sec {
  margin: 100px 0;
}

.intro-video {
  width: 100%;
  height: 100%;
  background-color: #1f1f1f;
  padding: 45px;
  margin: 0 auto;
}

.iv-inner {
  width: 950px;
  height: 650px;
  margin: 0 auto;
}

.intro-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/**** video sec ****/
#download-sec {
  margin: 100px 0;
}

.img-dwnld {
  width: 200px;
}

.download-box {
  padding: 100px 0;
  background-color: #efefef;
}

.download-div {
  padding: 170px 0;
  margin: 50px 0;
  text-align: center;
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
}

.download-box p {
  font-size: 20px;
}

.download-box h5 {
  font-size: 54px;
  margin: 30px 0px;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  line-height: 1.3;
}

.dwnld-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dwnld-list li {
  margin: 0 10px;
}

.dwnld-list li a i {
  margin-left: 10px;
}

.box-marg {
  margin: 0 300px;
}

.u-list li i {
  margin-right: 10px;
  color: #0d81fe;
}

/**** About Us ****/
#title-page {
  width: 100%;
  height: 300px;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
}

.tp-inner h1 {
  font-size: 50px;
  text-transform: capitalize;
}

.p-pages1 {
  font-size: 1.5rem;
  line-height: 45px;
  color: #a2acbd;
  text-align: center;
}

.p-pages2 {
  font-size: 1.2rem;
  line-height: 45px;
  color: #ffffff;
}

#contact-info {
  background-color: #262729;
  padding: 100px 0;
  text-align: center;
}

.contact-bx h5 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 60px;
}

.contact-bx h6 {
  font-size: 17px;
  color: #a2acbd;
  margin-bottom: 60px;
}

.cntct-info-list {
  display: flex;
  justify-content: center;
}

.cntct-info-list li {
  margin: 0 20px;
}

.cntct-info-list li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cntct-info-list li a i {
  font-size: 40px;
  margin-right: 20px;
}

.sm-list2 li a {
  text-decoration: none;
}

.sm-list2 li a i {
  font-size: 37px;
  color: #a2acbd;
  transition: transform 1s;
  display: block;
}

.sm-list2 li a i:hover {
  transform: scale(1.2);
}

.ul-pages1 {
  color: #a2acbd;
  font-size: 0.875rem;
  margin-bottom: 50px;
}

.btn-downld-bx li {
  margin: 0 20px;
}

.btn-downld-bx li a {
  font-size: 35px;
}

.h3-sup {
  color: #ffffff;
  margin-bottom: 30px;
  margin-top: 30px;
}

.p-sup {
  color: #a2acbd;
  margin: 0 0 5px 0;
}

/**** Contact ****/
.form-box {
  width: 900px;
  margin: 0 auto;
}

#contact-page {
  background-color: #1e1e1e;
  padding: 100px 0;
}

.form-row {
  display: flex;
  justify-content: space-between;
}

.form-col {
  flex: 1;
  text-align: left;
  display: grid;
  grid-gap: 5px;
  margin: 0 5px;
}

.inp-form {
  width: 100%;
  padding: 15px 20px;
  border-radius: 5px;
}

.txt-form {
  width: 100%;
  height: 130px;
  padding: 15px 20px;
  border-radius: 5px;
}

.form-col label {
  color: #a2acbd;
  text-transform: capitalize;
  font-size: 17px;
}

.form-contact {
  display: grid;
  grid-gap: 25px;
}

.inp-form::placeholder,
.txt-form::placeholder {
  font-size: 16px;
}

.req-cls {
  font-size: 13px;
  color: #ff5722;
}

.g-recaptcha {
  margin-left: 5px;
}

.btn-submit {
  margin: 0 5px;
  background-color: #1bb77b;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 15px;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #1bb77b87;
  color: #ffffff;
}

.form-msg {
  margin-top: 30px;
}

#success_message {
  color: #1bb77b;
}

#error_message {
  color: #f44336;
}

/**** SignIn/SignUp ****/
.form-box-signInUp {
  width: 500px;
  margin: 0 auto;
}

.form-signInUp {
  display: grid;
  grid-gap: 25px;
}

.link-afinp {
  font-size: 13px;
  color: #00bcd4;
  text-decoration: none;
}

.link-afinp:hover {
  text-decoration: underline;
}

.sp-afinp {
  font-size: 13px;
  color: #9e9e9e;
}

/**** Purchase ****/
.checkout-box {
  background: #0066ff;
  padding: 100px;
}

.pur-h1 {
  font-size: 55px;
  letter-spacing: 2px;
  color: #fff;
  font-family: "Poppins-Bold", sans-serif;
  margin-bottom: 40px;
}

.purchase-box1 {
  flex: 1;
}

.purchase-box2 {
  flex: 1;
}

.pur-list li {
  margin-bottom: 17px;
  font-size: 27px;
  color: #ffffff;
}

.pur-list li i {
  margin-right: 15px;
}

.purchase-now {
  background-color: #fff;
  padding: 60px;
  width: 500px;
  min-height: 400px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0px 0px 19px 8px #00000061;
}

.purchase-now h3 {
  font-size: 30px;
  font-family: "Poppins-Bold", sans-serif;
  text-align: center;
  color: #0b81fe;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.purchase-now h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  margin-left: 0;
  border-bottom: 3px solid #f44236;
}

.purchase-now h4 {
  font-size: 35px;
  font-family: "Poppins-Bold", sans-serif;
  text-align: center;
  color: #4caf50;
}

.purchase-arrow {
  position: absolute;
  top: -20px;
  left: -30px;

  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

#smart-button-container {
  margin: 60px 0;
}

.three-boxes {
  display: flex;
}

.testi-info {
  display: flex;
}

.testi-img {
  flex: 1;
}

.testi-name {
  flex: 4;
  margin-left: 20px;
}

.testi-img img {
  width: 100%;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 1px #aeaeae;
}

.testi-name ul {
  display: flex;
}

.testi {
  background-color: #ffffff;
  margin: 20px;
  padding: 50px 30px;
  border-radius: 15px;
  box-shadow: 0px 0px 14px 5px #cbcbcb80;
}

.testi p {
  color: #818181;
  margin-bottom: 40px;
}

.testi-name ul li i {
  font-size: 18px;
  color: #ff9800;
  margin-bottom: 10px;
}

.testi-name h5 {
  font-size: 22px;
  color: #0066ff;
  margin-bottom: 10px;
}

.testi-name h6 {
  font-size: 18px;
  color: #656565;
}

.list-number {
  width: 80px;
  height: 80px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 40px;
  position: relative;
  box-shadow: 0px 0px 9px 4px #00000045;
  z-index: 9;
}

.features-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.features-ul li {
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 25px;
  margin: 15px 0;
  width: 48%;
}

.features-triangle {
  display: block;
  clip-path: polygon(0 0, 0% 100%, 100% 49%);
  background-color: #0066ff;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 20px;
  height: 30px;
  z-index: -99;
}

.features-ul li p {
  font-size: 19px;
  color: #000000a3;
}

#sec-purchase {
  margin: 150px 0;
}

/**** Datatoobar30 ****/
.hi-r-dwnld {
  display: grid;
  grid-gap: 20px;
}

.af-dwnld {
  display: grid;
  line-height: 1;
  color: #827d7d;
}

.af-dwnld a {
  font-size: 17px;
  text-decoration: none;
  color: #4a6382;
  margin-top: 5px;
}

.prereq-list {
  line-height: 1;
  color: #827d7d;
  padding-left: 20px;
}

.prereq-list li {
  margin-bottom: 5px;
  display: flex;
}

.prereq-list i {
  margin-right: 15px;
  font-size: 16px;
  color: #5e74ec;
}

.demo-p {
  margin: 50px 180px;
}

.demo-list li {
  color: #ffffff;
  font-size: 18px;
}

.features-boxes {
  display: flex;
  flex-wrap: wrap;
}

.fb-each {
  width: 25%;
  display: inline-grid;
  min-height: 301px;
}

.fb-each-inner {
  background-color: #ffffff;
  border-radius: 20px;
  margin: 15px;
  padding: 20px;
  transition: background 1s;
  cursor: pointer;
}

.fb-each-inner:hover {
  background-color: #e5e5e5;
}

.fb-each-inner:hover>.feat-numb {
  color: rgb(10, 129, 254);
}

.feat-numb {
  font-size: 50px;
  color: #c7c7c7;
  transition: color 1s;
}

.feat-p {
  color: #827d7d;
}

/**** Accordion ****/
.release-accordion {
  display: grid;
  align-content: center;
  padding: 50px 0;
}

.release-accordion-inner {
  display: grid;
  row-gap: 0.5rem;
}

.release-accordion-item {
  box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1);
  border-radius: 0.25rem;
  position: relative;
  transition: all 0.25s ease;
}

.release-accordion-title {
  transition: 0.2s;
  font-size: 30px;
  color: #ffffff;
  text-transform: capitalize;
}

.release-accordion-header {
  display: flex;
  column-gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  background-color: #262729;
  border-radius: 0.25rem;
}

.release-accordion-desc {
  padding: 0;
}

.release-accordion-icon {
  font-size: 1rem;
  height: max-content;
  transition: 0.3s;
  color: #ffffff;
}

.release-accordion-item::after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}

.release-accordion-content {
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease;
}

/*Rotate icon and add font weight to titles*/
.release-accordion-open .release-accordion-icon {
  transform: rotate(45deg);
}

.release-accordion-open .release-accordion-title {
  color: #ffffff;
}

.release-accordion-open .release-accordion-header {
  background-color: #262729cf;
}

.rac-inner {
  padding: 40px;
}

.hr-rac {
  width: 100%;
  height: 1px;
  background-color: #d7d7d7;
  margin: 20px 0;
}

.h5-rac {
  margin-bottom: 20px;
}

.h6-rac {
  margin: 20px 0;
  font-size: 16px;
  color: #8f8f8f;
}

.ul-rac {
  list-style: circle;
  padding-left: 30px;
}

.ul-rac li ul {
  list-style: disc;
}

.ul-rac li,
.release-accordion-desc {
  font-size: 15px;
}

.ul-rac li ul {
  padding-left: 20px;
}

/**** Tutorial ****/
#tuto-sec {
  margin: 0;
}

/* tuto-tabs */

.tuto-tabs {
  display: flex;
}

.tuto-tabs-nav {
  flex: 1;
}

.tuto-tabs-nav li:first-child a {
  border-right: 0;
  border-top-left-radius: 6px;
}

.tuto-tabs-nav li:last-child a {
  border-top-right-radius: 6px;
}

.tab-active a {
  background: #ffffff;
  color: #000000;
}

.tuto-tabs-stage {
  flex: 2;
  clear: both;
  position: relative;
  padding: 20px 40px;
  background-color: #ffffff;
}

.tuto-link {
  display: block;
  background-color: #1f1f1f;
  color: #ffffff;
  margin: 1px 0;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 20px;
}

.tuto-tabs-stage div p,
.tuto-tabs-stage div ul li {
  font-size: 17px;
  color: #777777;
}

.tuto-tabs-stage div h5 {
  font-size: 18px;
  margin: 20px 0;
}

.tuto-tabs-stage div a,
.tuto-tabs-stage div span {
  font-size: 17px;
}

.bold {
  font-weight: 600;
}

.tuto-tabs-stage div ul,
.p-tight ul {
  list-style: circle;
  padding-left: 30px;
  margin: 20px 0;
}

.p-tight ol {
  padding-left: 30px;
  margin: 20px 0;
}

/**** Project Structure ****/
.img-ps {
  margin: 35px auto;
  display: block;
}

/**** footer ****/
footer {
  /* background-color: #1e1e1e;
  padding: 150px 80px 50px 80px; */
}

.footer-inner {
  display: flex;
  background-color: #1e1e1e;
  padding: 150px 80px 50px 80px;
}

.footer-box {
  flex: 1;
}

.footer-cop {
  background: #262729;
  padding: 50px 80px;
  text-align: center;
}

.footer-cop p {
  color: #fff;
}

.footer-logo {
  width: 160px;
}

ul {
  list-style: none;
}

.sm-list {
  display: flex;
  width: 100px;
  justify-content: space-between;
}

.sm-list2 {
  margin: 50px auto;
  display: flex;
  width: 200px;
  justify-content: space-between;
}

.info-list {
  margin: 20px 0;
}

.footer-box ul li a {
  color: #a2acbd;
  text-decoration: none;
  font-size: 16px;
  text-transform: capitalize;
  transition: color 1s;
}

.footer-box ul li a:hover {
  color: #0b80fd;
}

.sm-list li a i {
  transition: 1s;
}

.sm-list li a i:hover {
  transform: scale(1.2);
}

.footer-box p {
  color: #ffffff;
  text-transform: capitalize;
}

.info-list li a i {
  font-size: 19px;
  margin-right: 7px;
}

.dwnld-btns {
  background-color: #1a1a1a;
  padding: 40px 80px;
}

.dwnld-list2 {
  justify-content: right;
}

.footer-cop p {
  margin: 0;
}

.developer,
.developer a {
  font-size: 16px;
  color: #515151;
  text-decoration: none;
}

.footer-box img {
  width: 150px;
}

.contact-bx h6 {
  font-size: 30px;
}

.btns-box {
  display: flex;
}

.btn-prs {
  margin-left: 15px;
}

/**
 * Homepage - Revamp
 */
.hero-desc .ct-hero-sec--subtitle {
  color: rgb(10, 129, 254);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-family: "Poppins-Regular", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  font-weight: 600;
}

.hero-desc .ct-hero-sec--title {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 15px;
}

.hero-desc .btn {
  width: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.ct-title-h2 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

#ct-pricing-sec .container-full,
.ct-image-copy-sec .container-full,
.ct-copy-image-sec .container-full {
  background: #0a81fe;
  margin-top: -20em;
  padding-top: 20em;
  padding-bottom: 3em;
}

#ct-pricing-sec h2,
#ct-pricing-sec p {
  color: #fff;
}

#video-sec.ct-mb-0 {
  margin-bottom: 0;
}

#video-sec.ct-mt-0 {
  margin-top: 0;
}

.ct-text-align-center {
  text-align: center;
}

.ct-benefits-sec,
.ct-image-copy-sec,
.ct-bg-feature-sec,
.ct-releases {
  color: #fff;
}

.ct-d-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}

.ct-d-flex li {
  flex: 1 0 31%;
  padding: 1em;
}

.ct-d-flex div {
  flex: 1 0 48%;
  padding: 1em;
}

#ct-readmore {
  display: none;
}

#ct-readmore-btn {
  display: block;
  background: transparent;
  border: none;
  color: #0a81fe;
}

.ct-benefits-sec .intro-video {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ct-benefits-sec--img,
.ct-copy-img-sec--img {
  max-width: 600px;
  border-radius: 10px;
}

.ct-image-copy-sec .intro-video,
.ct-copy-image-sec .intro-video {
  background: #0a81fe;
  padding-bottom: 0;
}

.ct-bg-feature-sec .container-full {
  margin-top: -20em;
  padding-top: 20em;
  padding-bottom: 3em;
  background-image: url("../img/digital-terrain-mapping.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.ct-bg-feature-sec .intro-video {
  background-color: initial;
}

.ct-benefits-sec .container-full {
  position: relative;
  z-index: 99999;
}

.ct-image-copy-sec .container-full {
  position: relative;
  z-index: 9999;
}

.ct-copy-image-sec .container-full {
  position: relative;
  z-index: -999;
}

.ct-copy-image-sec .container-full,
.ct-copy-image-sec .intro-video {
  background-color: #fff;
}

.ct-img-checklist {
  margin: 100px 0;
}

.ct-img-checklist .two-boxes {
  align-items: start;
}

.ct-img-checklist--img-wrapper {
  flex-basis: 60%;
  align-self: center;
  position: relative;
}

.ct-img-checklist--img-inner-wrapper {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.ct-img-checklist--checklist {
  flex-basis: 40%;
  border-radius: 15px;
  background-color: #0a81fe;
  color: #fff;
  padding: 2em 3em;
}

.ct-img-checklist--heading {
  color: #0a81fe;
}

.ct-img-checklist .fa-solid {
  color: #fff;
}

.ct-img-checklist ul {
  list-style-position: outside;
}

.ct-img-checklist--img {
  max-height: 280px;
  min-width: 600px;
}

.ct-releases .container-full {
  padding-bottom: 3em;
  background-image: url("../img/person-shopping-online-black-overlay.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: -9999;
}

.ct-try-free {
  background-color: #0a81fe;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.ct-try-free .btn {
  max-width: 300px;
  background: #fff;
  color: #0a81fe;
  text-align: center;
  margin: 0 auto;
}

.ct-pricing-sec--card-wrapper {
  display: flex;
  justify-content: center;
  gap: 1%;
  padding-top: 3em;
}

.ct-pricing-sec--card {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 3em 3em;
  color: #fff;
}

.ct-pricing-sec--card-dollar {
  vertical-align: 24px;
  font-size: 20px;
}

.ct-pricing-sec--card-price {
  font-size: 48px;
}

.ct-pricing-sec--card-title {
  font-size: 48px;
}

.ct-pricing-sec--card-subtitle {
  font-size: 24px;
  padding-top: 1em;
  padding-bottom: 0.5em;
}

.ct-pricing-sec--card-copy {
  font-size: 18px;
  padding-top: 2em;
}

.ct-pricing-sec--card-cta__gradient {
  background-image: linear-gradient(to right, #0d81fe 0%, #6673ea 100%);
}

.ct-pricing-sec--card-cta__gradient:hover {
  background: #0d81fe;
}

.ct-pricing-sec--card__alt,
.ct-pricing-sec--card-copy__alt {
  color: #0d81fe !important;
  background-color: #fff;
}

#video-sec,
#sec {
  margin-top: 50px;
}

.img-max-1000 {
  display: flex;
  margin: 20px auto;
}

.embedded-video {
  margin: 30px auto;
  width: 100%;
}
.embedded-video iframe {
  width: 100%;
  height: 350px;
}

@media(min-width: 1100px){
  .img-max-1000 {
    max-width: 1000px;
  }
  .embedded-video iframe {
    height: 550px;
  }
}
@media(min-width: 1200px){
  .embedded-video {
    max-width: 1200px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .ct-img-checklist--img {
    max-height: 280px;
    min-width: 300px;
  }

  .ct-pricing-sec--card-wrapper {
    margin-right: 50px;
    margin-left: 50px;
  }

  .ct-benefits-sec--img,
  .ct-copy-img-sec--img {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .ct-pricing-sec--card-wrapper {
    flex-wrap: wrap;
  }

  .ct-pricing-sec--card {
    flex-basis: 80%;
  }

  .ct-pricing-sec--card__alt {
    margin-top: 2em;
  }

  .ct-benefits-sec--img,
  .ct-copy-img-sec--img {
    margin: 0 auto;
    display: block;
  }

  #ct-pricing-sec {
    padding-top: 3em;
  }

  .ct-img-checklist .two-boxes {
    flex-wrap: wrap;
  }

  .ct-img-checklist--img-inner-wrapper {
    position: relative;
    transform: none;
    right: 0;
  }

  .ct-img-checklist {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .ct-img-checklist--checklist {
    margin-top: 3em;
  }

  .ct-benefits-sec .intro-video {
    padding: 50px;
  }

  .ct-img-checklist ul {
    padding: 2em;
  }
  .embedded-video iframe {
    height: 450px;
  }
}

@media (max-width: 600px) {

  .ct-copy-img-sec--img,
  .ct-benefits-sec--img,
  .ct-img-checklist--img {
    max-width: 300px;
    min-width: auto;
    width: auto;
  }

  .ct-img-checklist--img-inner-wrapper {
    text-align: center;
  }

  .ct-copy-image-sec .container-full {
    padding-top: 21em;
    padding-bottom: 1em;
  }

  .ct-d-flex li {
    flex-basis: 100%;
  }

  .ct-releases .container-full .ct-d-flex {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .ct-benefits-sec .intro-video .ct-d-flex li {
    padding-right: 0;
    padding-left: 0;
  }
}

/**
 * Import External Data into Excel Page - i2e
 */
.ct-i2e #main-desc {
  margin-bottom: 0;
}

.ct-i2e--img {
  display: block;
  width: 90%;
  height: auto;
  text-align: center;
  margin: 2em auto;
}

.ct-i2e__text-center {
  text-align: center;
}

.ct-i2e__fs-40 {
  font-size: 40px;
}

.ct-i2e__h-blk {
  color: #000;
}

.ct-i2e__h-blu {
  color: #347af5;
}

.ct-i2e__color-white {
  color: #fff;
}

.ct-i2e--number {
  display: inline;
  padding: 24px 14px 4px;
  background: #347af5;
  font-family: "Poppins-Bold";
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
}

.ct-i2e--numbered {
  position: relative;
}

.ct-i2e--number-outer-container {
  margin: 4em 0 2em;
}

.ct-i2e--number-inner-container {
  margin: 4em 0 2em;
}

.ct-i2e--number-h {
  vertical-align: bottom;
  line-height: 1.3;
}

.ct-i2e__flex {
  display: flex;
}

.ct-i2e__fl-align-self-c {
  align-self: flex-end;
}

.ct-i2e__fl-gap-5 {
  gap: 5%;
}

.ct-i2e__fl-gap-1 {
  gap: 1em;
}

.ct-i2e__flex-items {
  width: 50%;
  word-wrap: break-word;
}

.ct-i2e--img-bg-right {
  position: absolute;
  opacity: 0.2;
  bottom: -1em;
  right: 0;
}

.ct-i2e--img-bg-left {
  height: 110%;
  position: absolute;
  opacity: 0.2;
  bottom: -1em;
  left: 0;
}

@media (max-width: 767px) {
  .ct-i2e--img-bg-left {
    width: 50%;
  }
}

.ct-i2e__mt-1 {
  margin-top: 1em;
}

.ct-i2e__mb-1 {
  margin-bottom: 1em;
}

.ct-i2e__mt-2 {
  margin-top: 2em;
}

.ct-i2e__mb-2 {
  margin-bottom: 2em;
}

.ct-i2e__mb-3 {
  margin-bottom: 3em;
}

.ct-i2e--list {
  list-style-type: square !important;
}

.ct-i2e--list li::marker {
  color: #347af5;
}

.ct-i2e--list__alt li::marker {
  font-family: "Poppins-Bold";
  font-size: 60px;
  color: #347af5;
}

.ct-i2e--img-bg-right-alt {
  position: absolute;
  width: 30%;
  opacity: 0.2;
  top: 0;
  right: 0;
}

.ct-i2e--img-datatoolbox {
  position: relative;
  z-index: 999999;
}

.ct-i2e--img-datatoolbox-container {
  text-align: center;
}

.ct-i2e .download-box {
  padding: 0;
}

.ct-i2e .download-div {
  margin: 0;
  padding: 2em 0 4em;
}

.ct-i2e--try-cta {
  position: relative;
}

.ct-i2e__fl-dir-col {
  flex-direction: column;
}

.ct-i2e__bg-blk {
  background-color: #1f1f1f;
  color: #fff;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 3em 1em 1em;
}

.ct-i2e--img-border-bottom {
  background: rgb(10, 129, 254);
  background: linear-gradient(90deg,
      rgba(10, 129, 254, 1) 0%,
      rgba(59, 121, 243, 1) 35%,
      rgba(103, 114, 234, 1) 100%);
}

.ct-i2e--faq-outer-container {
  background-image: url("../img/import-to-excel/img-faq-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 950px;
}

/**
 * Accordion
 */
.ct-i2e input.ct-accordion-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.ct-i2e .accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.ct-i2e .accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}

.ct-i2e .accordion:last-child {
  margin-bottom: 0;
}

.ct-i2e .accordion-label {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 16px;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
  background: transparent;
  color: #000;
  border: 3px solid #256ae2;
  border-radius: 5px;
}

.ct-i2e .accordion-label h3 {
  max-width: 100%;
  line-height: 1.3;
}

.ct-i2e .accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ct-i2e .accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: white;
  background: #2d72ec;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ct-i2e .accordion-content p {
  color: #fff;
  font-size: 16px;
}

.ct-i2e input:checked+.accordion-label {
  background: transparent;
  font-size: 20px;
  color: #000;
  border: 3px solid #256ae2;
  border-radius: 5px;
}

.ct-i2e input:checked+.accordion-label::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ct-i2e input:checked~.accordion-content {
  max-height: 150vh;
  padding: 2em;
  margin: 1em 0;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .ct-container {
    padding-right: 1em;
    padding-left: 1em;
  }

  .ct-i2e__flex {
    flex-wrap: wrap;
  }

  .ct-i2e__flex-items {
    width: 100%;
  }

  .ct-i2e--img-bg-left {
    width: auto;
    height: auto;
  }

  .ct-i2e--img-datatoolbox-container {
    padding-top: 2em;
  }

  .ct-i2e--list__alt li::marker {
    font-size: 30px;
  }

  .ct-i2e--img-border-bottom {
    width: 100%;
  }

  .ct-i2e__flex-items .ct-i2e--list__alt {
    margin-top: 0;
    margin-bottom: 0;
  }

  .ct-i2e--faq-outer-container {
    height: auto;
  }

  .ct-i2e input:checked~.accordion-content {
    max-height: 250vh;
  }

}