:root {
  --primary-color: #0099ff;
  --light-blue: #bee5ff;
  --bs-heading-color: #121212;
  --bs-text-color: #555555;
}
@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Thin.woff2") format("woff2"),
    url("../fonts/UniviaPro-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Light.woff2") format("woff2"),
    url("../fonts/UniviaPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Regular.woff2") format("woff2"),
    url("../fonts/UniviaPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Medium.woff2") format("woff2"),
    url("../fonts/UniviaPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Bold.woff2") format("woff2"),
    url("../fonts/UniviaPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("../fonts/UniviaPro-Black.woff2") format("woff2"),
    url("../fonts/UniviaPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Thin.woff2") format("woff2"),
    url("../fonts/Sora-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraLight.woff2") format("woff2"),
    url("../fonts/Sora-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Light.woff2") format("woff2"),
    url("../fonts/Sora-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Regular.woff2") format("woff2"),
    url("../fonts/Sora-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-SemiBold.woff2") format("woff2"),
    url("../fonts/Sora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-Bold.woff2") format("woff2"),
    url("../fonts/Sora-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-ExtraBold.woff2") format("woff2"),
    url("../fonts/Sora-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

.heading-color {
  color: var(--bs-heading-color);
}
.text-color {
  color: var(--bs-text-color);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Univia Pro";
  color: var(--bs-text-color);
  background: #fff;
  transition: 0.35s;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
}

a {
  text-decoration: none;
  transition: 0.5s all ease-in-out;
}

.slow-effect {
  transition: 0.5s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora";
}

p {
  font-family: "Univia Pro";
  font-size: 16px;
  font-weight: 400;
  color: #71717a;
}

img {
  max-width: 100%;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  transition: 0.5s all ease-in-out;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}
.fs-50 {
  font-size: 28px;
}

.fs-40 {
  font-size: 26px;
}
.fs-18 {
  font-size: 16px;
}
.fs-16 {
  font-size: 16px;
}
.fs-15 {
  font-size: 15px;
}
.fs-14 {
  font-size: 14px;
}
.common-heading {
  color: var(--bs-heading-color);
}
.z_index1 {
  z-index: 1;
}
/***   Header Section ***/
.header-section {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.header-nav {
  padding: 20px 0;
}
.header-logo .navbar-brand {
  max-width: 210px;
}
.header-bg-shape {
  position: absolute;
  left: -14%;
  top: -42px;
}
.offcanvas-start {
  width: 250px;
}
.header-navbar {
  gap: 0 25px;
}
.menus-links {
  font-family: "Univia Pro";
  color: #fff;
  font-size: 17px;
  font-weight: 400;
}
.nav-link.menus-links:focus,
.nav-link.menus-links:hover {
  color: rgb(206, 255, 237);
}
.dropdown-item:hover {
  padding-left: 12px;
  color: rgb(206, 255, 237);
  background: #24a2f7;
}
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
  display: block !important;
  pointer-events: none;
  padding: 0;
  border: none;
  border-radius: 3px;
  overflow: hidden;
}
/* Animate show */
.dropdown-menu.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.header-offcanvas-menus {
  background: var(--primary-color) !important;
}
.navbar-toggler.header-toggle-btn {
  background: #fff;
  border: none;
}
.navbar-toggler.header-toggle-btn:focus {
  box-shadow: none;
}
/*** Popup ***/
body.modal-open {
  overflow: hidden;
}
.modal-form {
  max-height: 80vh;
}
.contact-form-body {
  max-height: 90vh;
  overflow-y: auto;
}
.contact-form-body::-webkit-scrollbar {
  width: 0;
}

.contact-form-body::-webkit-scrollbar-track {
  background: transparent;
}

.contact-form-body::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.modal-dialog.modal-form {
  max-width: 95%;
}
.modal-body.contact-form-body {
  padding: 35px 20px 20px;
}
.modal-content.contact-modal {
  border-radius: 15px;
}
.contact-modal .btn-close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 12px;
  z-index: 2;
}
.contact-modal .btn-close:focus {
  box-shadow: none;
}
.popup-heading p {
  color: #37afff;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}
.popup-heading .common-heading {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-details {
  margin-bottom: 25px;
}
.contact-icon {
  background: #37afff;
  width: 28px;
  min-width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  margin: 0 18px 0 0;
  float: left;
}
.contact-info {
  display: block;
  overflow: hidden;
}
.contact-link {
  color: var(--bs-heading-color);
  font-size: 16px;
  font-family: "Sora";
}
.contact-link:hover {
  color: var(--primary-color);
}
.popup-social-icon {
  margin-left: 46px;
  gap: 10px;
}
.popup-social-icon a {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border: 1px solid #b5b5b5;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--bs-heading-color);
}
.contact-popup-form {
  background: #f6fbff;
  padding: 20px;
}
.form-heading-wrap {
  margin-bottom: 30px;
}
.form-main-heading {
  font-size: 20px;
}
.form-heading-wrap p {
  color: #6b6b6b;
  font-size: 14px;
}
.form-floating {
  margin-bottom: 14px;
}
label.form-label {
  color: var(--bs-heading-color);
  font-size: 14px;
  padding: 0;
  margin: 0;
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent;
}
.form-control.form-input,
.form-control.form-textarea {
  color: var(--bs-heading-color);
  font-size: 14px;
  border-bottom: 1px solid #e2e2e2 !important;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0 !important;
}
.form-control.form-input:focus,
.form-control.form-textarea:focus {
  border-bottom: 1px solid var(--primary-color) !important;
  background: transparent;
  box-shadow: none;
}
.form-control.form-input {
  min-height: 25px;
  height: 25px;
}
.wpcf7-not-valid-tip {
  font-size: 12px !important;
}
.form-textarea {
  max-height: 75px;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  margin: 0;
  font-size: 12px;
}
.submit-btn {
  padding: 12px 34px;
  background: var(--bs-heading-color);
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
}
.submit-btn:hover,
.submit-btn:focus {
  background: var(--primary-color);
}
.form-submit-button p {
  margin-bottom: 0;
}
/*** Banner Section ****/
.banner-section {
  background: linear-gradient(106deg, #0099ff 34%, #67d0ec 100%);
  padding: 115px 0 0;
}
.banner-section .container {
  z-index: 1;
}
.banner-content {
  position: relative;
  z-index: 1;
}
.banner-heading {
  color: #fff;
  margin-bottom: 17px;
}
.banner-content p {
    font-size: 18px;
    color: #fff;
    line-height: 28px;
}
.banner-content ul {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 20px;
  gap: 7px;
}
.banner-content li {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  list-style: disc;
}
.banner-download-text {
  margin: 0 0 12px 0;
}
.banner-download-column {
  margin-bottom: 50px;
}
.download-icons {
  gap: 14px;
}
.download-icons a:hover {
  transform: translateY(-5px);
}
.download-icons a img {
  border-radius: 10px;
}
.banner-bg-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-bg-shape2 {
  position: absolute;
  top: -51%;
  left: -62px;
}
.line-container {
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
  margin-left: 60px;
  gap: 6vh;
}
.line-wrapper {
  position: relative;
  width: 2px;
  height: 101%;
  background: #c9fff00a;
  border-radius: 10px;
  overflow: hidden;
  top: 0;
}
.runner {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #ffffff2e;
  border-radius: 50%;
  animation: run-down 2.5s linear infinite;
}

@keyframes run-down {
  0% {
    top: -20px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  20% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
  80% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    top: 100%;
    opacity: 0;
    transform: translateX(-50%) scale(0.3);
  }
}

/*** Home About  Section ****/
.about-section {
  padding: 60px 0;
}
.round-left-shape {
  top: 30%;
  transform: translateY(-50%);
  left: 0;
}
.about-lists {
  border-top: 1px solid #dddddd;
  padding-top: 24px;
  margin-top: 24px;
}

.section-pera p {
  color: var(--bs-text-color);
  font-size: 16px;
  font-weight: 400;
}
.about-list-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-icon {
  font-size: 40px;
  color: #37afff;
  margin-right: 18px;
}
.list-bottom-heading p {
  margin-top: 20px;
  color: var(--bs-heading-color);
  font-weight: 400;
  font-size: 16px;
}
/*** incentive  Section ****/
.why-incentive-section {
  padding: 0 0 46px;
} 
.incentive-row,
.incentive-left-column,
.incentive-right-column {
  gap: 25px 0;
}
.incentive-box {
  border: 0.5px solid #bee5ff;
  padding: 27px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ebf7ff 0%, #fff 50%, #f3faff 92%);
  box-shadow: -1px 16px 16px -9px #00000012;
  transition: 0.5s all ease-in-out;
}
.incentive-box:hover {
  transform: translateY(-5px);
}
.incentive-icon {
  min-width: 51px;
  height: 51px;
  background: #37afff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.incentive-icon img {
	height: 36px;
  width: 36px;
}
.incentive-box:hover .incentive-icon {
  animation: wobble-vertical 1s ease-in-out 1;
}
.incentive-title {
  font-family: "Univia Pro";
}
.incentive-content p {
  font-size: 15px !important;
}
.everywhere-text p {
  font-weight: 400;
  color: #121212;
  font-size: 16px;
  margin: 20px 0 0;
}
.why-bg-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: 0 auto;
}

/*** real Section ****/
.real-section {
  background: linear-gradient(145deg, #09f 55%, #ceffed 94%);
  padding: 40px 0 20px;
}
.reel-check-groups {
  gap: 18px 0;
}
.reel-check-groups {
  margin: 13px 0 30px;
}
.real-download {
  margin-bottom: 20px;
}
.green-check {
  background: #4bd274;
  color: #fff;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  margin-right: 11px;
}

/*** Testimonials Section ****/
.testimonial-section {
  padding: 60px 0 110px;
}
.testimonials-heading p {
  max-width: 360px;
  margin: 0 auto;
}
.common-shape {
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.blue-bg-shape {
  left: 0;
}
.green-bg-shape {
  right: 0;
}
.testimonial-slider .slick-track {
  display: flex;
  gap: 0 13px;
}


.testimonials-details {
  border: 0.5px solid #bee5ff;
  padding: 30px 25px 25px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ebf7ff 0%, #fff 50%, #f3faff 92%);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonials-text {
  margin: 0 0 37px;
}
.user-image {
  margin: 0 20px 0 0;
}
.user-image img {
  width: 51px;
  min-width: 51px;
  height: 51px;
  border-radius: 50%;
}
.user-name {
  font-family: "Univia Pro";
}
.testimonial-slider .slick-dots {
  bottom: -50px;
}
.slick-dots button::after {
  min-width: 12px !important;
  background: #d9d9d9 !important;
  border-radius: 100px;
  position: relative;
  top: 5px !important;
  content: "";
  height: 12px;
  transition: 0.5s all ease-in-out;
  display: block;
}
.slick-active button::after {
  min-width: 30px !important;
  background: linear-gradient(90deg, #3cb1ff 0%, #45ffbc 100%) !important;
  left: -9px;
}
.slick-dots li button::before {
  opacity: 0 !important;
}

/*** Faqs Section ****/
.faq-section {
  padding: 0 0 60px;
}
.faqs-heading p {
  max-width: 480px;
  margin: 0 auto;
}

.faq-items {
  border: 0.5px solid #bee5ff;
  padding: 0;
  border-radius: 13px;
  background: linear-gradient(90deg, #ebf7ff 0%, #fff 50%, #f3faff 92%);
  margin-bottom: 10px;
}
.accordion-item:not(:first-of-type) {
  border: 0.5px solid #bee5ff;
}
.accordion-item:first-of-type {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
}
.accordion-button.faq-btn::after {
    filter: brightness(0) saturate(100%) invert(72%) sepia(27%) saturate(1492%) hue-rotate(179deg) brightness(102%) contrast(97%);
}
.faq-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 18px 20px;
  background: transparent;
  color: var(--bs-heading-color) !important;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: var(--bs-text-color) !important;
}
.accordion-body.faqs-body {
  padding: 0 20px 18px 20px;
}

.accordion-body.faqs-body p {
  font-size: 16px;
  color: var(--bs-text-color);
  margin: 0;
}

/*** Vibe Section ****/
.vibe-section {
  padding: 0 0 60px;
}
.vibe-wrapper {
  background: url(../images/resources/vibe_bg.svg);
  border-radius: 30px;
  overflow: hidden;
  padding: 30px 15px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.vibe-wrapper .row {
  gap: 30px 0;
}
.vibe-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vibe-content p {
  font-size: 16px;
  color: var(--bs-heading-color);
  margin: 0;
}

/*** Footer Section ****/
.footer-section {
  background: #049bff;
  padding: 75px 0 0;
}
.footer-shape {
  left: 0;
  top: 0;
}
.footer-bottom-shape {
  right: 0;
  bottom: 0;
}
.footer-section .container {
  z-index: 1;
}
.footer-logo img {
  max-width: 210px;
}
.footer-text p {
  color: #fff;
  font-size: 14px;
  margin: 23px 0 0;
  line-height: 28px;
}
.widget-title {
  margin: 0 0 18px 0;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}
.footer-lists a:hover {
  padding-left: 5px;
}
.subscribe-group p {
  position: relative;
  display: flex;
  align-items: start;
  gap: 5px;
}
.subscribe-group .wpcf7-spinner {
	position: absolute;
	right: 19px;
	top: 10px;
}
.subscribe-input {
  padding: 13px 12px;
  color: var(--bs-heading-color);
  transition: 0.5s all ease-in-out;
}
.subscribe-input::placeholder {
  color: #bcbcbc;
}
.subscribe-group .wpcf7-submit {
  background: var(--bs-heading-color);
  color: #fff;
  font-size: 16px;
  border: none;
  font-weight: 500;
  font-family: "Sora";
  padding: 13px 23px;
  transition: 0.5s all ease-in-out;
  border-radius: 8px;
}
.subscribe-input:focus {
  box-shadow: none;
  border: 1px solid #fff;
}
.subscribe-btn {
  background: var(--bs-heading-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Sora";
  padding: 13px 23px;
  transition: 0.5s all ease-in-out;
}
.subscribe-btn:hover {
  background: #fff;
  color: var(--bs-heading-color);
}

.subscribe-text p {
  color: #fff;
  font-size: 13px;
  margin: 17px 0 30px;
}
.footer-copyright {
  border-top: 1px solid #44b2ff;
  margin-top: 18px;
  padding: 27px 0;
}
.footer-copyright .row {
  gap: 20px 0;
}
.copyright-text p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: end;
}
.social-icon {
  width: 31px;
  height: 31px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: var(--bs-heading-color);
  font-size: 15px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  font-size: 12px;
}
@media (max-width: 374px) {
  /*** incentive  Section ****/
  .incentive-box {
    flex-wrap: wrap;
    text-align: center;
  }
  .incentive-icon {
    margin: 0 auto 15px;
  }
}
@media (max-width: 574px) {
  .download-icons a img {
    width: 130px;
  }
}
@media (min-width: 375px) {
  /*** incentive  Section ****/
  .incentive-icon {
    margin-right: 20px;
  }
}
@media (min-width: 375px) and (max-width: 574px) {
  .contact-links,
  .quick-links {
    width: 50%;
  }
}
@media (max-width: 419px) {
  .subscribe-group p {
    flex-wrap: wrap;
  }
  .subscribe-group .wpcf7-submit {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  .subscribe-group p {
    flex-wrap: wrap;
  }
  .subscribe-group .wpcf7-submit {
    width: 100%;
  }
}
@media (min-width: 575px) {
  .header-bg-shape {
    left: -29%;
    top: -42px;
  }
  .footer-column {
  gap: 15px 0;
}
}
@media (min-width: 768px) {
  .fs-50 {
    font-size: 32px;
  }
  .popup-heading .common-heading {
    font-size: 32px;
  }
  .fs-40 {
    font-size: 30px;
  }
  .header-bg-shape {
    left: -20%;
  }
  /*** Popup ***/
  .popup-heading .common-heading {
    margin-bottom: 40px;
  }
  .contact-popup-form {
    padding: 25px;
  }
  .popup-heading p {
    font-size: 18px;
  }
  .contact-details {
    margin-bottom: 40px;
  }
  .form-main-heading {
    font-size: 24px;
  }
  /*** Home About  Section ****/
  .about-section {
    padding: 90px 0;
  }
  .section-pera p {
    font-size: 18px;
  }
  .list-bottom-heading p {
    font-size: 18px;
  }
  /*** incentive  Section ****/
  .everywhere-text p {
    margin: 30px 0 0;
    font-size: 18px;
  }
  /*** Faqs Section ****/
  .faq-btn {
    padding: 18px 38px;
    font-size: 20px;
  }
  .accordion-body.faqs-body {
    padding: 0 38px 18px 38px;
  }
  .accordion-body.faqs-body p {
    font-size: 17px;
  }
  /*** Vibe Section ****/
  .vibe-content p {
    font-size: 20px;
  }
    .modal-form {
  max-height: 90vh;
}
.contact-form-body {
  max-height: 95vh;
}
}
@media (max-width: 991px) {
  /*** Header ***/
  .dropdown-menu {
    max-height: 0;
  }
  .dropdown-menu.show {
    max-height: 100%;
  }
  /*** Testimonials Section ****/
  .common-shape {
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    z-index: -1;
  }
}
@media (min-width: 992px) {
  .fs-50 {
    font-size: 40px;
  }
  .popup-heading .common-heading {
    font-size: 38px;
  }
  .fs-40 {
    font-size: 36px;
  }
  .fs-18 {
    font-size: 18px;
  }
  /*** Header ***/
  .header-nav {
    padding: 40px 0;
  }
  .offcanvas-lg {
    position: static;
    transform: none;
    visibility: visible !important;
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
  }

  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .navbar-toggler {
    display: none;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  .header-bg-shape {
    left: -14%;
  }
  /*** Popup ***/
  .modal-dialog.modal-form {
    max-width: 1012px;
  }
  .contact-modal .btn-close {
    top: 10px;
  }
  .popup-heading .common-heading {
    margin-bottom: 60px;
  }
  .contact-details {
    margin-bottom: 50px;
  }
  .form-heading-wrap {
    margin-bottom: 40px;
  }
  /*** About Section ****/
  .round-left-shape {
    top: 45%;
  }
  /*** Banner Section ****/
  .banner-section {
    padding: 150px 0 0;
  }
  .banner-content p {
    margin-bottom: 25px;
    max-width: 434px;
  }
  .hero-image {
    max-width: 620px;
    margin-left: -100px;
  }
  /*** incentive  Section ****/
  .everywhere-text p {
    margin: 40px 0 0;
  }
  /*** real Section ****/
  .reel-check-groups {
    margin: 29px 0 50px;
  }
  .why-heading-wrap p {
	margin-bottom: 40px;
}
  /*** Testimonials Section ****/
  .testimonial-section {
    padding: 80px 0 170px;
  }
  .testimonial-slider .slick-dots {
    bottom: -72px;
  }
  .common-shape {
    transform: translateY(-54%);
  }
  /*** Faqs Section ****/
  .faq-section {
    padding: 0 0 90px;
  }
  /*** Vibe Section ****/
  .vibe-section {
    padding: 0 0 90px;
  }
  .footer-about {
    max-width: 283px;
  }
  .subscribe-text p {
    margin: 17px 0 53px;
  }
}
@media (min-width: 1200px) {
  .fs-50 {
    font-size: 44px;
  }
  .popup-heading .common-heading {
    font-size: 42px;
  }
  .fs-40 {
    font-size: 40px;
  }

  /*** Banner Section ****/
  .line-container {
    gap: 10vh;
  }
  .banner-content p {
    max-width: 467px;
  }
  .hero-image {
    max-width: 720px;
    margin-left: -99px;
  }
  /*** incentive  Section ****/
  .incentive-row {
    gap: 40px 0;
  }
  .incentive-left-column,
  .incentive-right-column {
    gap: 50px;
  }
  .everywhere-text p {
    margin: 59px 0 0;
  }
  /*** real Section ****/
  .reel-check-groups {
    margin: 29px 0 76px;
  }
  .contact-links {
	padding-left: 60px;
}
}
@media (min-width: 1400px) {
  .fs-50 {
    font-size: 50px;
  }
  /*** Popup ***/

  .modal-body.contact-form-body {
    padding: 53px 65px;
  }
  .contact-modal .btn-close {
    top: 20px;
  }
  .contact-popup-form {
    padding: 35px;
  }
  /*--- Banner ---*/
  .banner-heading {
    margin-bottom: 40px;
  }
  .hero-image {
    max-width: 870px;
    margin-left: -140px;
  }

  /*--- About section ---*/
  .list-bottom-heading p {
    margin-top: 40px;
  }
  /*--- footer ---*/
  .contact-widget {
    margin-left: 35px;
  }
.footer-widget .download-icons a {
    width: 50%;
}
.footer-widget .download-icons a img {
    width: 100%;
}
.subscribe-col .footer-widget {
	padding-left: 10px;
}
}
@media (min-width: 1920px) {
  /*** Banner Section ****/
  .banner-section {
    padding: 190px 0 0;
  }
}
@media (min-width: 2600px) {
  .line-container {
    gap: 14vh;
  }
}
.updownAnimation {
  animation: up_down 4s linear infinite alternate;
}
@keyframes up_down {
  0% {
    transform: translate(0%, 0);
  }
  50% {
    transform: translate(0%, 12px);
  }
  100% {
    transform: translate(0%, 0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.contact-popup-form .wpcf7-response-output {
    margin-top: 10px !important;
}

.accordion-body.faqs-body ul li {
  list-style: disc;
}
.accordion-body.faqs-body ol li {
    list-style: auto;
}