/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/* START: NORMALIZE CSS */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* END: NORMALIZE CSS */

/* Popup */

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  overflow: auto;
}

.popup.open {
  visibility: visible;
  display: block;
  z-index: 99;
  opacity: 1;
}

.popup.open .popup__wrap {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.popup.popup--lg .popup__wrap {
  max-width: 1140px;
}

.popup.popup--md .popup__wrap {
  max-width: 960px;
}

.popup.popup--sm .popup__wrap {
  max-width: 768px;
}

.popup.popup--xs .popup__wrap {
  max-width: 576px;
}

.popup__is-open {
  overflow: hidden;
}

.popup__wrap {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  max-width: 960px;
  margin: 50px auto;
  background: #fff;
  border-radius: 0px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
  -webkit-transform: translate3D(0, -105%, 0);
  -ms-transform: translate3D(0, -105%, 0);
  transform: translate3D(0, -105%, 0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.popup__title {
  margin: 0;
  font-size: 16px;
  float: left;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.popup__close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
}

.popup__close:after {
  height: 40px;
  width: 40px;
  line-height: 35px;
  font-size: 24px;
  display: block;
  text-align: center;
  background-color: #fff;
  color: #fc402c;
  border-radius: 50%;
  content: "x";
  display: inline-block;
  font-weight: 500;
}

.popup__content {
  top: 50px;
  padding: 0px;
}

.popup__footer {
  padding: 20px 30px;
  text-align: right;
  background: #f1f1f1;
}

.popup.side {
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  -webkit-transform: translate3D(100%, 0, 0);
  -ms-transform: translate3D(100%, 0, 0);
  transform: translate3D(100%, 0, 0);
  border-radius: 0;
  margin: 0;
  max-width: none;
  width: 800px;
}

.popup.side.open {
  top: 0;
  -webkit-transform: translate3D(0, 0, 0);
  -ms-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.popup.side .popup_header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.popup.side .popup_content {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  overflow: auto;
  bottom: 0;
  padding: 0 30px 30px 30px;
}

.popup.side .popup_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.popup_actions {
  float: right;
  line-height: normal;
  height: 50px;
  line-height: 50px;
  border-right: 1px solid #dadada;
}

.popup_actions > li {
  vertical-align: top;
  display: inline-block;
  border-left: 1px solid #dadada;
}

.popup_actions > li .p_button {
  display: block;
  padding: 0px 10px;
}

.popup_actions > li .p_button:hover {
  text-decoration: underline;
}

.popup_actions .button_small {
  margin-top: 12.5px;
}

/* Slider */

.slick-prev:before,
.slick-next:before {
  font-size: 0 !important;
}
.slick-arrow {
  border: solid #fd722b !important;
  border-width: 0 3px 3px 0 !important;
  display: inline-block !important;
  padding: 3px !important;
  top: 55% !important;
}
.slick-prev {
  -webkit-transform: rotate(135deg) !important;
  -ms-transform: rotate(135deg) !important;
  transform: rotate(135deg) !important;
  left: 31% !important;
}
.slick-next {
  -webkit-transform: rotate(-45deg) !important;
  -ms-transform: rotate(-45deg) !important;
  transform: rotate(-45deg) !important;
  right: 31.3% !important;
}

.best-slider .slick-prev {
  -webkit-transform: rotate(135deg) !important;
  -ms-transform: rotate(135deg) !important;
  transform: rotate(135deg) !important;
  left: 28% !important;
  top: calc(178px - 89px) !important;
}
.best-slider .slick-next {
  -webkit-transform: rotate(-45deg) !important;
  -ms-transform: rotate(-45deg) !important;
  transform: rotate(-45deg) !important;
  right: 28% !important;
  top: calc(178px - 89px) !important;
}

.slick-dots li button::before {
  font-size: 0 !important;
}
.slick-dots li button {
  padding: 0 !important;
  background-color: #e5422c !important;
  border-radius: 50% !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
}
li.slick-active button {
  background-color: #171345 !important;
}
.slick-dots li {
  width: 10px !important;
  height: 10px !important;
}

/* *************** */
.video-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 10px solid #fd822a;
}
/* *************** */
.section--header {
  position: absolute;
  z-index: 9;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
}

.container-fluid {
  position: relative;
  max-width: 100%;
  padding-right: 50px;
  padding-left: 50px;
}

.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-btn {
  position: relative;
  padding: 20px 40px;
  border-radius: 5px;
  background-color: #e5422c;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.span {
  display: block;
  font-size: 24px;
}

.image {
  height: 55px;
}

.section--cover {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 0px;
  background-image: url("../images/module-bg-cover.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.container {
  position: static;
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
}

.cover {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cover-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding-bottom: 140px;
}

.cover-media {
  position: relative;
  max-width: 40%;
  text-align: center;
}

.text-block {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 100;
  text-transform: uppercase;
}

.cover-text {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  text-transform: uppercase;
}

.cover-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cover-point__text {
  display: block;
  margin-left: 10px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.link-block-4 {
  text-decoration: none;
}

.link-block-4.rating-links {
  font-size: 20px;
  line-height: 20px;
}

.link-block-2 {
  display: block;
}

.link-block-2.rating-links {
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}

.link-block-2.rating-links {
  font-style: normal;
  text-decoration: none;
}

.link-block-2.rating-links {
  font-style: normal;
  text-decoration: none;
}

.link-block-2.rating-links {
  text-decoration: none;
}

.cover-title {
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.rating-links {
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
}

.cover-point__img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 40px;
}

.site-logo {
  position: static;
  left: 0px;
  top: 0px;
  display: inline-block;
}

.rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.module-btn {
  position: relative;
  display: inline-block;
  padding: 15px 110px;
  border-radius: 5px;
  background-color: #e5422c;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.module-btn:hover {
  transform: scale(1.2);
  background-image: linear-gradient(110deg, #fb272d, #fd9f29 100%);
}
.cover-content .module-btn {
  font-size: 20px;
  font-weight: 700;
}

.module-btn.client-btn {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.module-btn.client-btn.cta-btn {
  margin-top: 40px;
}

.image-2 {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.review {
  border-left: 0px none #282828;
  font-family: Lato, sans-serif;
  color: #231f20;
  font-size: 16px;
  line-height: 17px;
  font-weight: 400;
  text-align: left;
  text-transform: capitalize;
}

.rate__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #616161;
  font-weight: 400;
}

.img-1 {
  position: absolute;
  left: auto;
  top: auto;
  right: 2%;
  bottom: 0px;
  display: inline-block;
  width: 100%;
  height: auto;
  max-height: none;
  max-width: 500px;
  margin-top: 0px;
  padding-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.image-20 {
  margin-top: -40px;
}

.list-item-2 {
  font-size: 20px;
  line-height: 20px;
}
.image-3 {
  position: static;
  left: auto;
  top: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  text-align: right;
}

.star {
  display: inline-block;
  margin-right: 5px;
  color: #f48e23;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.cover-point__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.arrow {
  display: inline-block;
  margin-top: 0px;
  padding-left: 28px;
}

.my-container {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.list.rate__list {
  margin-left: 0px;
}

.img-2 {
  position: absolute;
  left: auto;
  right: 20%;
  bottom: -41px;
  display: block;
  width: 100%;
  max-height: none;
  max-width: 580px;
  margin-top: -60px;
}

.cover-rocket {
  position: relative;
  top: auto;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  width: 800px;
  margin-top: -100px;
  margin-left: -120px;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.section--trust {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../images/module-bg-trust.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.section--trust .section-title--small {
  display: inline-block;
}
.section--trust .section-title--small::before {
  content: "";
  background-image: -o-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  width: 100px;
  height: 1px;
  position: absolute;
  left: -110px;
  top: 12px;
}
.section--trust .section-title--small::after {
  content: "";
  background-image: -o-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  width: 100px;
  height: 1px;
  position: absolute;
  right: -110px;
  top: 12px;
}
.section-title--small {
  position: relative;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.module-cover-round {
  position: absolute;
  left: -20px;
  top: -120px;
  bottom: auto;
  z-index: 1;
}

.fetured-links {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.featured-box {
  margin-right: 25px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.image-21 {
  width: auto;
  height: auto;
}

.image-22 {
  width: auto;
  height: auto;
}

.image-23 {
  width: auto;
  height: auto;
}

.image-24 {
  width: auto;
  height: auto;
}

.image-25 {
  width: auto;
  height: auto;
}

.image-26 {
  width: auto;
  height: auto;
}

.section--sales {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/module-bg-sales.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section--steps {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
}

.section-heading {
  position: relative;
  text-align: center;
}

.section-title {
  margin-bottom: 20px;
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 35px;
  line-height: 44px;
  font-weight: 700;
}

.section-title.section-title--white {
  color: #fff;
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
}

.section-text {
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-weight: 500;
}

.section-text.section-text--white {
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}

.section-content {
  margin-top: 40px;
  text-align: center;
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.steps__media {
  width: 50%;
  max-width: 50%;
  text-align: center;
}

.steps__content {
  width: 50%;
  max-width: 50%;
  padding-left: 30px;
}

.steps-img {
  height: 300px;
}

.steps-box {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.steps-box-img {
  height: 65px;
}

.steps-box__text {
  padding-left: 20px;
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: left;
}

.steps-box__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75px;
  height: 75px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 50px;
  background-color: #fff;
  -webkit-box-shadow: -1px 0 16px 4px rgba(0, 0, 0, 0.11);
  box-shadow: -1px 0 16px 4px rgba(0, 0, 0, 0.11);
  opacity: 1;
}

.steps-action {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.steps-action.client-action {
  margin-top: 0px;
}

.section--method {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../images/module-bg-method.jpg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.methods-line {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9;
  display: block;
  width: 10px;
  height: 100%;
  max-width: 10%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 7px;
  background-color: #eaeaea;
  font-size: 12px;
}

.method-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-bottom: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.heading {
  color: #fff;
  text-transform: uppercase;
}

.methods {
  position: relative;
  display: block;
  max-width: 45%;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.method-block {
  display: block;
  padding-right: 40px;
  padding-left: 40px;
}

.method-block._11 {
  /* margin-top: 50px; */
  margin-top: 150px;
  margin-bottom: 150px;
  padding-right: 20px;
  padding-left: 20px;
}

.method-block._10 {
  margin-top: 150px;
  margin-bottom: 100px;
  padding-right: 20px;
  padding-left: 20px;
}

.method-block._8 {
  margin-top: 100px;
  padding-right: 20px;
  padding-left: 30px;
}

.method-block._8.method-block--space {
  margin-top: 10px;
  padding-bottom: 60px;
}

.method-block._5 {
  padding-right: 20px;
  padding-left: 30px;
}

.method-block._1 {
  padding-right: 20px;
  padding-left: 20px;
}

.method-block._9 {
  margin-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
}

.method-block._12 {
  padding-right: 20px;
  padding-left: 30px;
  text-align: left;
}
.method-block--mob {
  display: none;
}

.cursor {
  display: block;
  width: 10px;
  height: 250px;
  border-radius: 7px 7px 0px 0px;
  background-color: #fd672b;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease;
}
.cursor::before {
  content: "";
  background-image: -o-linear-gradient(130deg, #fb272d, #fd9f29 100%);
  background-image: linear-gradient(320deg, #fb272d, #fd9f29 100%);
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  left: -12px;
}
.cursor::after {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 8px;
  border-radius: 50%;
  left: -5px;
}
.heading-2 {
  color: #fff;
}

.paragraph {
  color: #fff;
}

.heading-3 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
}

.method-image {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.method-image.method-image-1 {
  margin-left: -30px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.method-image.method-image-2 {
  margin-left: 30px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.method-image.method-image-3 {
  margin-left: -45px;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.method-image.method-image-4 {
  margin-left: 45px;
}

.method-image.method-image-5 {
  margin-left: -45px;
}

.method-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
/* .method-block._10.method-2 {
  margin-top: 240px;
} */
.method-block._8.method-3-content {
  margin-top: 0;
}
.method-block._11.m--t.method-5 {
  margin-top: 200px;
}
.method-block._11.m--t.method-5 {
  margin-top: 130px;
}
.method-block._10.method-4 {
  /* margin-bottom: 40px; */
  margin-bottom: 100px;
}
.text-block-2 {
  display: inline;
  opacity: 0.5;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.image-27 {
  height: 60px;
}

.heading-4 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
}

.paragraph-2 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
}

.cover-cloud {
  position: absolute;
  left: auto;
  right: 137px;
  bottom: -15px;
  width: 950px;
  -webkit-transform: scale(1.9);
  -ms-transform: scale(1.9);
  transform: scale(1.9);
}

.bold-text-14 {
  color: #fff;
}

.paragraph-3 {
  color: #fff;
}

.heading-5 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
}

.paragraph-4 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
}

.paragraph-5 {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
}

.paragraph-6 {
  color: #fff;
}

.method-features {
  margin-top: 40px;
}

.method-feature__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.method-feature__img {
  display: inline;
  height: 24px;
}

.method-feature__text {
  display: inline;
  padding-left: 15px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
}

.heading-small {
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.section--video {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f4f4;
}

.video-frame {
  position: relative;
  display: block;
  max-width: 65%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.video-text {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 30px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.section--results {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 100px;
  background-image: url("../images/module-bg-result.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.sales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sales__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.sales__right {
  padding: 20px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.sale-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 110px;
  height: 110px;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  text-align: center;
}

.sale-text {
  font-family: Montserrat, sans-serif;
  color: #fff;
}

.sale-image {
  width: auto;
  height: 55px;
  margin-bottom: 10px;
}

.sale-plus {
  margin-top: 20px;
  margin-bottom: auto;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 30px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
}

.sale-equal {
  margin-top: 40px;
  margin-right: 10px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 35px;
  text-align: center;
}

.sales-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sale-title {
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  background-image: -o-linear-gradient(
    347deg,
    #fb272d,
    #fd9f29 65%,
    #fd9f29 30%
  );
  background-image: linear-gradient(103deg, #fb272d, #fd9f29 65%, #fd9f29 30%);
  font-family: "Barlow Condensed", sans-serif;
  color: hsla(0, 0%, 100%, 0.33);
  font-size: 70px;
  line-height: 60px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.image-28 {
  height: 70px;
  margin-right: 40px;
}

.sale-span {
  background-color: hsla(0, 0%, 100%, 0);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fff),
    to(#fff)
  );
  background-image: -o-linear-gradient(top, #fff, #fff);
  background-image: linear-gradient(180deg, #fff, #fff);
  font-size: 30px;
  line-height: 30px;
  font-weight: 100;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-block-3 {
  background-color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  color: hsla(0, 0%, 100%, 0.72);
  font-size: 28px;
  line-height: 34px;
  font-weight: 100;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.plus-box {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section--client {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
}

.text-block-4 {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-family: Varela, sans-serif;
  font-size: 60px;
  line-height: 10px;
}

.reviewer__img {
  width: 55px;
  height: 55px;
  max-width: 55px;
  border-radius: 100%;
}

.slide-title {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ff7300;
  font-size: 25px;
  font-weight: 700;
}

.slide-box__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.reviewer__txt {
  display: block;
  margin-left: 10px;
  color: #ff7300;
  font-size: 20px;
  font-weight: 700;
}

.slider-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide-box__header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 20px;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.slider-left-arrow {
  color: #444;
}

.rating-links-2 {
  text-decoration: none;
}

.slide {
  margin-right: 40px;
  margin-left: 40px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 2px 1px 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 1px 15px 0 rgba(0, 0, 0, 0.3);
}

.mask {
  position: static;
  overflow: visible;
}

.star-2 {
  display: inline-block;
  margin-right: 5px;
  color: #f48e23;
  font-size: 16px;
  line-height: 20px;
}

.reviewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide__text {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #090909;
  font-size: 15px;
  line-height: 17px;
  font-weight: 500;
}

.slide-box {
  display: block;
  width: 100%;
  height: 100%;
  margin-right: 0px;
  margin-left: 0px;
  padding: 35px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 20px;
  background-color: #fff;
}

.slider {
  position: static;
  width: 400px;
  height: auto;
  background-color: transparent;
}

.slider-right-arrow {
  color: #444;
}

.client-content {
  margin-top: 60px;
  text-align: center;
}

.heading-6 {
  font-family: Montserrat, sans-serif;
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-box {
  display: block;
  margin-right: 5px;
  padding: 10px;
  opacity: 0.6;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  text-align: center;
}

.slider-box.slick-center {
  opacity: 1;
}

.image-29 {
  max-height: 76vh;
  -o-object-fit: contain;
  object-fit: contain;
}

.img-title {
  width: 100%;
  margin-bottom: 20px;
  padding-right: 20px;
  padding-left: 20px;
  font-family: Montserrat, sans-serif;
  color: #282828;
  line-height: 32px;
}

.slider-img-box {
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.43);
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.43);
  margin: 20px;
}
.slick-current.slick-active .slider-img-box {
  -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.6);
}
.best-wrapper {
  margin-top: 70px;
}

.best-content {
  margin-top: 30px;
}

.heading-7 {
  font-family: Montserrat, sans-serif;
  color: #282828;
}

.bslide-box__top {
  margin: 15px;
  padding: 30px;
  border-radius: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.43);
  box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.43);
}

.bslide-box__bottom {
  margin-top: 25px;
}

.paragraph-7 {
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

.star-rates {
  margin-bottom: 10px;
}

.text-block-5 {
  color: #e6b817;
}

.bslide-info {
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-block-11 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: 100;
  text-align: left;
}

.result-content {
  position: relative;
  z-index: 2;
}

.result-img {
  width: 100%;
  max-width: 550px;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}

.results-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.result-box-img {
  width: 200px;
  max-width: 20%;
}

.result-box-content {
  width: 100%;
  max-width: 80%;
  padding-right: 20px;
  padding-left: 20px;
  color: #151515;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.result-box-content.reverse {
  max-width: 80%;
  padding-right: 0px;
  padding-left: 20px;
  text-align: left;
}

.result-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.result-box.reverse {
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.text-block-10 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: 100;
}

.text-span-6 {
  display: block;
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: normal;
  font-size: 16px;
}

.text-block-12 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: 100;
  text-align: left;
}

.text-block-13 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: normal;
}

.text-block-14 {
  font-family: Montserrat, sans-serif;
  color: #fff;
  line-height: 24px;
  font-weight: 100;
}

.image-30 {
  width: 35px;
}

.result-cloud {
  position: absolute;
  right: 21.4%;
  bottom: -252px;
  width: 600px;
  height: 600px;
  -webkit-transform: scale(1.9);
  -ms-transform: scale(1.9);
  transform: scale(1.9);
  -o-object-fit: contain;
  object-fit: contain;
}

.text-block-15 {
  background-image: -o-linear-gradient(347deg, #fb272d, #fd9f29 95%, #fff);
  background-image: linear-gradient(103deg, #fb272d, #fd9f29 95%, #fff);
  font-family: "Barlow Condensed", sans-serif;
  color: #fff;
  font-size: 35px;
  line-height: 35px;
  font-weight: 200;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-block-15.text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
}

.image-31 {
  width: 35px;
}

.image-32 {
  position: static;
}

.image-32.rocket-result {
  position: relative;
  z-index: 1;
  width: 550px;
  max-width: 550px;
  -webkit-transform: scale(1.9);
  -ms-transform: scale(1.9);
  transform: scale(1.9);
}

.result-action {
  position: relative;
  z-index: 9;
  margin-top: -100px;
}

.section-faq {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 100px;
}

.info-basic {
  font-family: Lato, sans-serif;
  color: #616161;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.info-basic.text-white {
  margin-bottom: 0px;
  padding-bottom: 20px;
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
}

.accordion-item-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #080808;
  cursor: pointer;
}

.accordion-wrapper {
  display: block;
  margin-right: 30px;
  margin-left: 30px;
  border-bottom: 1px none rgba(43, 43, 43, 0.09);
}

.li-text {
  display: block;
  background-color: transparent;
  font-family: "Open Sans", sans-serif;
  color: #282828;
  font-size: 18px;
  font-weight: 600;
}

.plus-line {
  position: absolute;
  width: 50%;
  height: 0.18em;
  background-color: #282828;
}

.plus-line.second {
  background-color: #282828;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.plus-line.second.text-white {
  background-color: #282828;
  color: #282828;
}

.plus-line.text-white {
  background-color: #282828;
  color: #282828;
}

.bold-text-17 {
  color: #282828;
  font-weight: 600;
}

.bold-text-17.text-white {
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
}

.plus-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2em;
  height: 2em;
  margin-left: 1em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border: 1px none #282828;
  border-radius: 0px;
  background-color: transparent;
  color: #282828;
}

.plus-btn.text-white {
  color: #fff;
}

.bold-text-15 {
  color: #282828;
  font-size: 16px;
  font-weight: 600;
}

.bold-text-15.text-white {
  font-family: Montserrat, sans-serif;
  color: #282828;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: none;
}

.q-wrap {
  width: 92%;
  margin-bottom: 20px;
  color: #0c0c0c;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 1px;
}

.faq-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.accordion-item {
  margin-top: 20px;
  margin-bottom: 0em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.accordion-content {
  overflow: hidden;
  padding-bottom: 0px;
  color: #282828;
  text-align: left;
}

.section--cta {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 140px;
  background-image: url("../images/module-bg-cta-1.png");
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta {
  position: relative;
  text-align: center;
}

.cta-image {
  width: 100px;
}

.cta-title {
  margin-top: 40px;
  font-family: Montserrat, sans-serif;
  color: #fff;
  font-size: 35px;
  line-height: 40px;
  font-weight: 600;
}

.section--footer {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-text {
  font-family: Montserrat, sans-serif;
  color: rgba(40, 40, 40, 0.62);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.footer-links {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(40, 40, 40, 0.3);
  text-align: center;
}

.footer-link {
  padding-right: 10px;
  padding-left: 10px;
  border-top: 1px none rgba(40, 40, 40, 0.3);
  border-left: 1px solid rgba(40, 40, 40, 0.82);
  font-family: Montserrat, sans-serif;
  color: rgba(40, 40, 40, 0.62);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link.border-none {
  border-left-style: none;
  text-decoration: none;
}
.img-wrap img,
.img-wrap iframe {
  margin: 0 auto;
}
.img-wrap {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.img-wrap img,
.img-wrap iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.section--video .container {
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.cover-media--mob {
  display: none;
}
.faq-wrap {
  padding: 0;
}
@media screen and (min-width: 1280px) {
  .link-block-2.rating-links {
    display: inline-block;
  }

  .link-block-2.rating-links {
    display: inline-block;
  }

  .image-2 {
    width: 100%;
    max-width: 98%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .img-1 {
    bottom: 0px;
  }

  .image-3 {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .my-container {
    max-width: 1170px;
  }
  .star-2 {
    font-size: 19px;
  }

  .results-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .result-box-content {
    font-weight: 900;
  }
  .best-slider .slick-prev {
    left: 31% !important;
    top: calc(210px - 105px) !important;
  }
  .best-slider .slick-next {
    right: 31% !important;
    top: calc(210px - 105px) !important;
  }
}

@media screen and (min-width: 1440px) {
  .link-block-2.rating-links {
    line-height: 0px;
  }

  .link-block-2.rating-links {
    line-height: 20px;
  }

  .image-2 {
    max-width: 98%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .img-1 {
    top: 0px;
    bottom: 0px;
    display: block;
    max-width: 500px;
  }

  .list-item-5 {
    font-size: 40px;
    line-height: 0px;
  }

  .image-3 {
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }

  .img-2 {
    bottom: -33px;
  }
  .best-slider .slick-prev {
    left: 27% !important;
    top: calc(210px - 105px) !important;
  }
  .best-slider .slick-next {
    right: 27% !important;
    top: calc(210px - 105px) !important;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1280px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .image-2 {
    width: 100%;
    max-width: 780px;
    -webkit-transform: scale(1.6);
    -ms-transform: scale(1.6);
    transform: scale(1.6);
  }

  .img-1 {
    position: static;
    top: 0px;
    right: 1%;
    bottom: 0px;
    display: inline-block;
    overflow: visible;
    height: auto;
    max-height: none;
  }
  .image-3 {
    display: inline-block;
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    -webkit-transform: scale(1.7);
    -ms-transform: scale(1.7);
    transform: scale(1.7);
  }
  .section--trust {
    margin-top: -2px;
    margin-bottom: -2px;
  }
  .best-slider .slick-prev {
    left: 31% !important;
    top: calc(178px - 89px) !important;
  }
  .best-slider .slick-next {
    right: 31% !important;
    top: calc(178px - 89px) !important;
  }
}
@media screen and (max-width: 1024px) {
  .slick-prev {
    left: 18.5% !important;
  }
  .slick-next {
    right: 19.3% !important;
  }
  .cover-cloud {
    right: 128px;
  }
  .steps {
    max-width: 100%;
  }
  .result-img {
    max-width: 350px;
  }
  .image-32.rocket-result {
    width: 310px;
    max-width: 310px;
  }
  .result-action {
    margin-top: 10px;
  }
  .result-box-img {
    width: 80px;
    max-width: 80px;
  }
  .result-cloud {
    right: 18%;
    bottom: -332px;
  }
  .section-title,
  .section-title.section-title--white,
  .cta-title,
  .video-text {
    font-size: 28px;
    line-height: 35px;
  }
  .cover-title {
    font-size: 40px;
    line-height: 45px;
  }
  .featured-box img {
    width: 120px;
    height: auto;
  }
  .faq-wrap {
    padding: 0;
  }
  .cursor {
    height: 260px;
  }
}
@media screen and (max-width: 992px) {
  .slick-prev {
    left: 19% !important;
  }
  .slick-next {
    right: 20% !important;
  }
  .cover-cloud {
    right: 127px;
  }
  .result-cloud {
    right: 17%;
  }
  .cover-point {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .cover-point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cover-point__text {
    margin-left: 20px;
    font-size: 17px;
    text-align: left;
  }

  .cover-point__img {
    width: 30px;
    height: auto;
  }
  .cover-cloud {
    right: 125px;
    bottom: -75px;
  }
  .rating-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .module-btn {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
  }

  .image-2 {
    max-width: 270px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .rate__reviews {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .img-1 {
    right: 0%;
    width: 100%;
    max-width: 400px;
    text-align: right;
  }

  .image-3 {
    max-width: 220px;
    margin-left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .cover-point__box {
    width: 100%;
    max-width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .arrow {
    display: none;
  }

  .img-2 {
    bottom: 0px;
    display: inline-block;
    max-width: 260px;
    margin-top: -76px;
    padding-top: 0px;
  }

  .section--sales {
    border-bottom: 0px none #fff;
  }

  .sales {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sales__right {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left-style: none;
  }

  .slide-title {
    font-size: 20px;
    line-height: 23px;
  }

  .reviewer__txt {
    font-size: 16px;
    line-height: 17px;
  }

  .slide__text {
    font-size: 14px;
    line-height: 14px;
  }

  .slide-box {
    padding: 20px;
  }

  .text-block-11 {
    text-align: center;
  }

  .result-img {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .results-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .result-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
  }
  .result-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .result-box-content {
    margin-top: 15px;
    padding-right: 0px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    text-align: center;
  }

  .result-box-content.reverse {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .result-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .result-box.reverse {
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .result-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .result-box-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0;
  }
  .result-box-content div {
    text-align: left;
  }
  .text-block-10 {
    margin-top: 0px;
  }
  .result-cloud {
    right: 18%;
  }
  .info-basic {
    font-size: 1.1em;
    text-align: left;
  }

  .info-basic.text-white {
    font-size: 14px;
  }

  .accordion-item-trigger {
    text-align: left;
  }

  .li-text {
    font-size: 16px;
  }

  .q-wrap {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .slick-prev {
    left: 5% !important;
  }
  .slick-next {
    right: 5% !important;
  }
  .cover {
    display: block;
    text-align: center;
  }
  .cover-content,
  .cover-media {
    max-width: 100%;
  }
  .cover-content {
    padding-bottom: 50px;
  }
  .cover-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 80%;
    margin: 0 auto 30px;
  }
  .cover-point__box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .cover-rocket {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    max-width: 500px;
    margin: 0;
  }
  .cover-cloud {
    right: 11.3%;
    bottom: 0;
    max-width: 700px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .method-block .heading-3,
  .method-block .heading-4,
  .method-block .heading-5 {
    font-size: 28px;
    line-height: 30px;
  }
  .video-text {
    font-size: 20px;
    line-height: 24px;
  }
  .slick-current.slick-active {
    opacity: 1;
  }
  .results-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .result-content--left {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .result-content--right {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .result-img {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    padding-bottom: 0;
  }
  .result-box {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .result-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 370px;
    flex: 0 0 370px;
  }
  .image-32.rocket-result {
    width: 330px;
    max-width: 330px;
  }
  .result-cloud {
    right: 14.4%;
    width: 500px;
    height: 500px;
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
  }
  .footer-text {
    text-align: center;
  }
  .slider-img-box {
    margin: 10px;
  }
  .cursor {
    height: 230px;
  }
  .slick-slide {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .module-btn {
    font-size: 18px;
    line-height: 29px;
  }

  .img-1 {
    position: static;
    max-width: 400px;
  }

  .image-3 {
    max-width: 250px;
  }

  .cover-point__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .img-2 {
    bottom: 0px;
  }

  .slide-title {
    font-size: 16px;
    line-height: 20px;
  }

  .slide-box {
    padding-top: 20px;
    padding-left: 20px;
  }

  .image-29 {
    max-height: 40vh;
  }

  .info-basic {
    font-size: 12px;
  }

  .accordion-wrapper {
    margin-right: 10px;
    margin-left: 10px;
  }

  .plus-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .faq-wrap {
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .accordion-item {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 575px) {
  .cover-title {
    font-size: 30px;
    line-height: 36px;
  }
  .cover-point {
    max-width: 100%;
  }
  .cover-point__text {
    font-size: 15px;
  }
  .cover-cloud {
    right: -2.2%;
  }
  .section--trust {
    padding-bottom: 40px;
  }
  .featured-box img {
    width: 140px;
    margin: 0 auto;
  }
  .fetured-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .featured-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    margin: 0 0 30px;
  }
  .steps {
    display: block;
  }
  .steps__media {
    width: 100%;
    max-width: 100%;
  }
  .steps__content {
    width: 85%;
    max-width: 85%;
    padding-left: 0;
    margin-top: 20px;
    margin: 30px auto 0;
  }
  .method-wrap {
    padding: 0;
  }
  .methods {
    padding: 0;
  }
  .methods-line {
    display: none;
  }
  .methods--desk {
    display: none;
  }
  .method-block--mob {
    display: block;
  }
  .method-image {
    margin: 0 !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
  }
  .method-block {
    margin: 0 !important;
    padding: 0 !important;
  }
  .m--t {
    margin-top: 40px !important;
  }
  .method-features {
    margin-top: 10px;
  }
  .best-content {
    margin-top: 0px;
  }
  .footer-text {
    font-size: 14px;
  }
  .footer-link {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .faq-wrap {
    padding-top: 0;
  }
  .section-content {
    margin-top: 20px;
  }
  .result-cloud {
    right: 2.4%;
  }
  .steps-img {
    height: auto;
  }
  .video-frame {
    max-width: 100%;
  }
  .methods {
    max-width: 100%;
  }
  .img-title br {
    display: none;
  }
  .section--client {
    padding-top: 25px;
  }
  .section--video .container {
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .steps-box__img {
    margin: 0 auto 10px;
  }
  .steps-box__text {
    text-align: center;
  }
  .steps-box {
    display: block;
  }
  p.section-text.section-text--white {
    line-height: 26px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .slick-arrow {
    top: 57% !important;
  }
  .cover-point__text {
    font-size: 13px;
    line-height: 16px;
  }

  .btn-div {
    line-height: 30px;
  }

  .cover-title {
    font-size: 30px;
    line-height: normal;
  }

  .img-1 {
    position: absolute;
    max-width: 170px;
  }

  .cover-point__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .img-2 {
    left: 0px;
    right: auto;
    max-width: 150px;
  }

  .slide {
    max-width: 80%;
  }

  .slider-right-arrow {
    right: -10px;
  }

  .image-29 {
    max-height: 65vw;
  }

  .result-content {
    width: 100%;
    max-width: 100%;
  }

  .result-img {
    max-width: 100%;
  }

  .info-basic {
    font-size: 12px;
  }

  .accordion-wrapper {
    margin-right: 0px;
    margin-left: 0px;
  }

  .li-text {
    font-size: 16px;
  }

  .plus-btn {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .q-wrap {
    width: auto;
  }

  .accordion-item {
    margin-bottom: 0em;
  }
  .sales__left,
  .sales__right {
    padding: 20px 0px;
  }
  .image-28 {
    height: 60px;
    margin-right: 15px;
  }
  .sale-title {
    font-size: 60px;
    line-height: 50px;
  }
  .sale-box {
    width: 80px;
  }
  .sale-image {
    height: 35px;
  }
  .featured-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .module-cover-round {
    width: 110px;
    left: -37px;
    top: 0px;
    opacity: 0.4;
  }
  .cover-rocket {
    text-align: center;
    width: 400px;
    max-width: 400px;
  }
  .module-btn {
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
  }
  .cover-point {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cover-point__box {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .section--header {
    position: static;
    background-color: #0b2061;
    margin: 0;
  }
  .section--header .container-fluid {
    padding: 0 15px 20px;
    margin-bottom: -1px;
  }
  .header-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin: 0 -15px;
  }
  .header-btn {
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: center;
    border-radius: 0;
    margin-bottom: 20px;
  }
  .header-btn span {
    display: inline;
    font-size: 16px;
    font-weight: 600;
  }
  .section--cover {
    padding-top: 30px;
  }
  .cover-cloud {
    max-width: 500px;
  }
  .section--trust {
    padding: 40px 0 20px;
  }
  .section--sales {
    padding: 25px 0 20px;
  }
  .section--steps {
    padding: 30px 0 60px;
  }
  .section-title,
  .section-title.section-title--white,
  .cta-title,
  .client-content .heading-6,
  .best-header .heading-7 {
    font-size: 26px;
    line-height: 32px;
  }
  .video-text {
    font-size: 22px;
    line-height: 26px;
  }
  .steps__content {
    width: 100%;
    max-width: 100%;
  }
  .section--method {
    padding: 40px 0;
  }
  .section--client {
    padding: 20px 15px 60px;
  }
  .client-content .heading-6 br,
  .video-text br,
  .cta-title br,
  .section-title br {
    display: none;
  }
  .client-content {
    margin-top: 40px;
  }
  .section--video {
    padding-bottom: 40px;
  }
  .section--results,
  .section-faq {
    padding: 40px 0 60px;
  }
  .result-img {
    padding: 0;
  }
  .result-action .module-btn.client-btn {
    margin: 0;
  }
  .result-action {
    margin-top: -30px;
  }
  .result-cloud {
    right: 0%;
    bottom: -240px;
  }
  .cta-image {
    width: 75px;
  }
  .section--cta {
    padding: 60px 0 100px;
  }
  .module-btn.client-btn.cta-btn {
    margin-top: 30px;
  }
  .section--footer {
    padding: 20px 0 30px;
  }
  .module-btn {
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
  }
  .cover-media--desk .cover-rocket {
    display: none;
  }
  .cover-media--mob {
    display: block;
  }
  .cover-title {
    margin-bottom: 10px;
  }
  .cover-point {
    margin-top: -90px;
  }
  .section--trust {
    border-top: 1px solid #344579;
  }
  .module-cover-round {
    width: 110px;
    left: -37px;
    top: -60px;
    opacity: 0.4;
  }
  .cover-cloud {
    max-width: 710px;
    right: -12%;
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0.6;
  }
}
@media screen and (max-width: 420px) {
  .cover-rocket {
    width: 380px;
    max-width: 380px;
  }
  .cover-cloud {
    right: -2.6%;
  }
  .cover-cloud {
    right: -15%;
  }
  .module-cover-round {
    top: 0;
  }
  .featured-box img {
    width: 130px;
    height: auto;
    margin: 0 auto;
  }
  .text-block-15 {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .sales__left {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sales__left > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
  .cover-content {
    padding-bottom: 30px;
  }
  .cover-rocket {
    width: 300px;
    max-width: 300px;
  }
  .cover-cloud {
    max-width: 600px;
    right: -9%;
  }
  .section--trust .section-title--small::before {
    width: 80px;
    left: -90px;
  }
  .section--trust .section-title--small::after {
    width: 80px;
    right: -90px;
  }
  .sales-header .image-28 {
    height: 48px;
  }
  .sale-title {
    font-size: 40px;
    line-height: 50px;
  }
  .sales-header .text-block-3 {
    font-size: 20px;
    line-height: 25px;
  }
  .section--video {
    padding-top: 40px;
  }
  .result-cloud {
    bottom: -250px;
  }
  .cover-point {
    margin-top: -60px;
  }
  .sales__left {
    justify-content: flex-start;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 360px) {
  .cover-cloud {
    right: -12%;
  }
}
@media screen and (max-width: 320px) {
  .cover-cloud {
    max-width: 600px;
    right: -23%;
  }
  .sales__left {
    max-width: 95%;
  }
}

.cover-seo{
  color: #fff;
  font-family: Montserrat, sans-serif;
  position: absolute;
  opacity: 0;
}