@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@keyframes colorLoop {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  line-height: normal;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section .title {
  font-weight: 800;
  position: relative;
  margin-bottom: 3rem;
  z-index: 1;
  font-size: 48px;
}
.section .title::before {
  content: "";
  display: block;
  position: absolute;
  height: 60px;
  width: 60px;
  top: -10px;
  left: -20px;
  bottom: 0;
  border-radius: 100%;
  background-color: #ffc600;
  z-index: -1;
}
@media (max-width: 991px) {
  .section .title {
    font-size: 32px;
  }
}
.section .title span {
  text-transform: uppercase;
  display: block;
  font-size: 24px;
}
.section .title-alt {
  font-weight: 800;
  position: relative;
  margin-bottom: 1rem;
  z-index: 1;
  font-size: 32px;
}
.section .title-alt span {
  text-transform: uppercase;
  font-size: 18px;
  display: block;
  color: #344B5D;
  margin-bottom: 0.5rem;
}
.section p {
  font-size: 16px;
  line-height: 24px;
}
.section .title-center {
  text-align: center;
}
.section .title-center::before {
  margin: auto;
  right: 0;
  left: 0;
  top: -150px;
  border-radius: 0;
  height: 6px;
  width: 200px;
}
.section .sub-title {
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .section .sub-title {
    font-size: 18px;
  }
}
.section .tag {
  background-color: rgba(52, 75, 93, 0.4);
  border-radius: 4px;
  font-weight: 500;
  margin-right: 8px;
  display: inline-block;
  font-size: 14px;
  padding: 4px 8px;
  margin-bottom: 8px;
}
.section .sec-img {
  display: block;
  width: 100%;
  padding: 1rem;
}
.section .sec-sticky-img {
  position: sticky;
  top: 400px;
}
.section .section-cta {
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
  background-color: black;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.section .section-cta:hover {
  background-color: #ffc600;
  color: black;
}

.section-featured {
  background-color: #ffc600;
}
.section-featured .title::before {
  background-color: #344B5D;
}

.section-alt {
  background-color: rgba(255, 198, 0, 0.1);
}

.side-menu {
  position: relative;
  overflow: auto;
  background-color: white;
}
.side-menu .menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: initial;
  max-width: 100%;
  min-width: 30%;
}
.side-menu .menu a {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  background-color: white;
  text-decoration: none;
  color: #555;
  text-transform: capitalize;
  cursor: pointer !important;
}
.side-menu .menu a:hover {
  background-color: #f5f5f5;
  color: black;
  background-color: #fffae8;
}
.side-menu .menu .active {
  border-left: thick solid #ffc600;
  color: black;
  font-weight: 600;
  background-color: #fff6d8;
}
.side-menu .menu .active:hover {
  background-color: #fff6d8;
}
.side-menu .sub-menu {
  border-top: thin solid #eee;
  background-color: #f9f9f9;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.side-menu .sub-menu a {
  background-color: transparent;
  font-size: 14px;
  justify-content: flex-start;
}
.side-menu .sub-menu a::before {
  content: "-";
  position: relative;
}

.show-side-menu {
  right: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0px 0 1920px rgba(0, 0, 0, 0.5);
}

.hide-side-menu {
  right: -1000%;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}

.extend-meun a:not([href]) {
  background-color: #f5f5f5;
}
.extend-meun a:not([href]) i::before {
  content: "\f286";
}
.extend-meun .sub-menu {
  height: initial;
  visibility: visible;
}

.btn-side-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  padding: 0;
}
.btn-side-menu i {
  font-size: 24px;
}
@media (max-width: 991px) {
  .btn-side-menu {
    display: none;
    flex-direction: row-reverse;
    border-top: thin solid #eee;
    width: 100%;
    justify-content: flex-end;
  }
  .btn-side-menu i {
    display: flex;
    height: 52px;
    width: 60px;
    justify-content: center;
    align-items: center;
  }
  .btn-side-menu span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    color: black;
  }
}

.btn-close-side-menu {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  align-items: center;
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 1rem 2rem;
  border-bottom: thin solid #eee;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.feature-section-alt {
  background: linear-gradient(45deg, rgba(255, 251, 0, 0.5), rgba(52, 75, 93, 0.25));
  background-size: 200% 200%;
  animation: gradientAnimation 3s infinite forwards;
  position: relative;
  padding: 100px 0;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feature-section-alt::before, .feature-section-alt::after {
  content: "";
  display: block;
  position: absolute;
  outline: 100px solid transparent;
}
.feature-section-alt::before {
  width: 200px;
  height: 200px;
  background-color: #344B5D;
  border-radius: 100%;
  top: -10%;
  left: -100px;
  outline-color: rgba(52, 75, 93, 0.1);
}
.feature-section-alt::after {
  width: clamp(100px, 300px, 100%);
  height: clamp(100px, 300px, 100%);
  background-color: #ffc600;
  outline-color: rgba(255, 198, 0, 0.1);
  border-radius: 100%;
  right: -100px;
  bottom: -25%;
}
.feature-section-alt .title {
  font-size: 48px;
  font-weight: 800;
  color: #333;
}
.feature-section-alt .sub-text {
  font-size: 1.56rem;
}

.grid-blocks {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  margin: 2rem auto 0;
}
.grid-blocks .block {
  background-color: #f5f5f5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  overflow: hidden;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 0;
  border-top: 2px solid transparent;
}
@media (max-width: 991px) {
  .grid-blocks .block {
    background-size: contain;
    background-position: bottom right;
  }
}
.grid-blocks .block .block-img {
  display: block;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}
.grid-blocks .block::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background-image: linear-gradient(transparent 0 0%, #f5f5f5 70% 100%);
  z-index: -1;
}
.grid-blocks .block .block-title {
  font-size: 22px;
  font-weight: bold;
  position: relative;
}
.grid-blocks .block p {
  position: relative;
  bottom: -200px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}
.grid-blocks .block:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
  z-index: 2;
  background-color: #f9f9f9;
  border-top-color: #ffc600;
}
.grid-blocks .block:hover .block-img {
  transform: scale(0.98);
}
.grid-blocks .block:hover::after {
  height: 80%;
}
.grid-blocks .block:hover p {
  bottom: 0px;
  opacity: 1;
}

.popup {
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  overflow: auto;
  z-index: 1000;
}

.popup-form {
  position: relative;
}
.popup-form .img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .popup-form .img {
    height: 250px;
  }
}
.popup-form .img-planner {
  background-image: url("../img/img-form-planner-desktop.webp");
}
@media (max-width: 991px) {
  .popup-form .img-planner {
    background-image: url("../img/img-form-planner-mobile.webp");
  }
}
.popup-form .img-ebook {
  background-image: url("../img/img-form-ebook-desktop.webp");
}
@media (max-width: 991px) {
  .popup-form .img-ebook {
    background-image: url("../img/img-form-ebook-mobile.webp");
  }
}
.popup-form .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  outline: none;
}
.popup-form .btn-close i {
  font-size: 1.24rem;
}
.popup-form .body {
  padding: 2rem;
  overflow: auto;
  background-color: white;
}
.popup-form .body .form-title {
  font-weight: 600;
}
.popup-form .body .form-floating {
  margin-top: 1rem;
}
.popup-form .body .pricing {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
  padding-left: 90px;
  justify-content: center;
  margin: 2rem 0;
  color: black;
  font-size: 1.8rem;
  font-weight: bold;
}
.popup-form .body .pricing::before {
  content: attr(data-offer);
  width: 72px;
  height: 72px;
  background: #ffc600;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  font-weight: 800;
  left: 0;
  padding-bottom: 8px;
}
.popup-form .body .pricing::after {
  content: attr(data-offer-text);
  width: 72px;
  height: 72px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  left: 0;
  padding-top: 32px;
  text-transform: uppercase;
}
.popup-form .body .pricing small {
  color: #666;
  font-size: 1rem;
}
.popup-form .body .cta-btn {
  border: none;
  outline: none;
  margin-top: 1rem;
}

.lbl-error input {
  border-color: red;
}
.lbl-error span {
  font-size: 12px;
  color: red;
}

.lp-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 0 0rem;
  z-index: 10;
}
.lp-menu .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lp-menu .container .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-menu .container .logo img {
  display: block;
  height: 64px;
}
.lp-menu .container nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.lp-menu .container nav a {
  text-decoration: none;
}
.lp-menu .container nav a:active, .lp-menu .container nav a:focus {
  color: black;
  font-weight: bold;
}

.lp-section-title-center {
  text-align: center;
}
.lp-section-title-center::before {
  margin: auto;
  right: 0;
  left: 0;
}

.random-word {
  display: inline-block;
  color: #ffc600;
  letter-spacing: 0px;
  width: auto;
  /*   transition: all 1.25s; */
  animation: slidedown 4s infinite;
}

.lp-hook-line {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 1rem;
  border: thin solid #eee;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  border-radius: 4px;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 40px;
}
.lp-hook-line .hook-line-title {
  margin: 0;
  font-weight: bold;
}
@media (max-width: 767px) {
  .lp-hook-line {
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .lp-hook-line .hook-line-title {
    text-align: center;
  }
}

.lp-hero-section {
  background-color: rgba(255, 198, 0, 0.1);
  background-image: url("../img/e-book/geomatric-element-svg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  font-family: "Poppins", serif;
  padding: 150px 0 0px;
  position: relative;
}
.lp-hero-section .title {
  text-align: center;
  font-family: "Poppins", serif;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: clamp(32px, 10vw, 56px);
}
.lp-hero-section .title small {
  font-size: 18px;
  display: block;
  font-weight: bold;
  margin: 0 auto 1rem;
  padding: 0.5rem 0.8rem;
  font-family: "Poppins", serif;
  color: #344B5D;
  background-color: rgba(52, 75, 93, 0.1);
  width: -moz-max-content;
  width: max-content;
}
.lp-hero-section p {
  text-align: center;
  font-family: "Poppins", serif;
}
.lp-hero-section .cta {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-hero-section .cta span {
  font-style: italic;
  font-weight: bold;
}
.lp-hero-section .cta a {
  width: -moz-max-content;
  width: max-content;
  margin-top: 0.5rem;
}
.lp-hero-section img {
  display: block;
  margin: 0;
  width: 100%;
}

.lp-section-roadmap {
  background-color: black;
  position: relative;
}
.lp-section-roadmap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(-45deg, rgba(255, 198, 0, 0.16), transparent);
}
.lp-section-roadmap .title {
  color: #ffc600;
}
.lp-section-roadmap .title::before {
  background-color: #344B5D !important;
}
.lp-section-roadmap .title span {
  color: gray !important;
}
.lp-section-roadmap p {
  color: white;
}
.lp-section-roadmap .setp-boxes {
  counter-reset: section;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-section-roadmap .setp-boxes .hover-box {
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  border: thin solid #222;
}
.lp-section-roadmap .setp-boxes .hover-box::before {
  content: counter(section);
  counter-increment: section;
  position: relative;
  display: block;
  color: #333;
  font-size: 4rem;
  font-weight: 800;
  line-height: 5rem;
  width: 72px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.lp-section-roadmap .setp-boxes .hover-box .content .box-title {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.lp-section-roadmap .setp-boxes .hover-box .content p {
  margin: 0;
  font-size: 16px;
  color: #888;
}
.lp-section-roadmap .setp-boxes .hover-box:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.lp-section-roadmap .setp-boxes .hover-box:hover::before {
  top: 0px;
  color: #ffc600;
}
.lp-section-roadmap .setp-boxes .hover-box:hover .box-title {
  color: #ffc600;
}
.lp-section-roadmap .setp-boxes .link {
  background-color: #ffc600;
  color: black;
}
.lp-section-roadmap .setp-boxes .link h4 {
  margin-bottom: 0;
}
.lp-section-roadmap .setp-boxes .link::before {
  content: "\f144";
  font-family: bootstrap-icons !important;
  color: black;
  font-size: 2rem;
}
.lp-section-roadmap .setp-boxes .link:hover {
  background-color: #344B5D !important;
}
.lp-section-roadmap .setp-boxes .link:hover .box-title {
  color: #ffc600;
}
.lp-section-roadmap .setp-boxes .link:hover::before {
  transform: rotate(45deg);
}
.lp-section-roadmap img {
  display: block;
  margin: auto;
  width: 75%;
}

.hide-header {
  display: none;
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 0;
    transform: scale3d(2, 2, 1);
  }
}
.lp-section-why .info-box {
  display: flex;
  border: thin solid #eee;
  padding: 2.5rem 0;
  background-color: #f5f5f5;
}
.lp-section-why .info-box .icon {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-section-why .info-box .icon i {
  font-size: 3rem;
}
.lp-section-why .info-box .icon .bi-check-circle-fill::before {
  color: green;
}
.lp-section-why .info-box .icon .bi-x-circle-fill::before {
  color: orangered;
}
.lp-section-why .info-box .box-title {
  font-weight: bold;
}
.lp-section-why .info-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}
.lp-section-why .with {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(45deg, white, rgba(255, 198, 0, 0.1));
  transition: all 0.3s ease-in-out;
}

.lp-floting-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.lp-floting-bar::after {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: black;
  z-index: -1;
}
.lp-floting-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.lp-floting-bar .container .lp-col {
  display: flex;
  align-items: center;
}
.lp-floting-bar .container .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-floting-bar .container .content .lp-floating-bar-title,
.lp-floting-bar .container .content p {
  margin: 0;
}
.lp-floting-bar .container .content .lp-floating-bar-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffc600;
}
.lp-floting-bar .container .content,
.lp-floting-bar .container .timer {
  color: white;
}
.lp-floting-bar .container .timer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lp-floting-bar .container .timer span {
  padding: 0.9rem 1rem;
  display: flex;
  background-color: #222;
  align-items: center;
  gap: 4px;
  font-size: 1.24rem;
  font-weight: bolder;
  width: 80px;
  justify-content: center;
}
.lp-floting-bar .container .timer span small {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: normal;
  opacity: 0.5;
}
.lp-floting-bar .cta-btn {
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 991px) {
  .lp-floting-bar .container .lp-col:last-child {
    flex-grow: 1;
    justify-content: center;
  }
  .lp-floting-bar .container .content {
    display: none;
  }
}
@media (max-width: 767px) {
  .lp-floting-bar {
    display: none;
  }
}

@keyframes zoomInCircle {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.hero-daily-planner {
  background-image: none;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-daily-planner::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffc600;
  height: clamp(400px, 80vw, 1400px);
  width: clamp(400px, 80vw, 1400px);
  border-radius: 100%;
  left: 0;
  right: 0;
  top: 20%;
  margin: auto;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  transform-origin: bottom center;
  animation: zoomInCircle 1s forwards;
}
.hero-daily-planner .sec-img {
  width: clamp(320px, 80vw, 920px);
  display: block;
  margin: 0 auto 2rem;
}
.hero-daily-planner .title span {
  font-family: "Poppins", sans-serif;
  color: #344B5D;
}
.hero-daily-planner .cta-btn {
  background-color: #344B5D;
  color: #ffc600;
}
.hero-daily-planner .cta-btn:hover {
  background-color: black;
}

.section-game-changer {
  background-color: #cee2eb;
}
.section-game-changer .sec-img {
  position: sticky;
  top: 10px;
  z-index: 1;
}
.section-game-changer .blocks {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.section-game-changer .blocks .block {
  gap: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
}
.section-game-changer .blocks .block * {
  transition: all 0.3s ease-in-out;
}
.section-game-changer .blocks .block .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  outline: 0 solid #ffc600;
}
.section-game-changer .blocks .block .icon img {
  display: block;
  width: 40px;
}
.section-game-changer .blocks .block .content {
  width: calc(100% - 80px);
}
.section-game-changer .blocks .block .block-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.section-game-changer .blocks .block p {
  margin: 0;
  font-size: 0.9rem;
}
.section-game-changer .blocks .block:hover {
  border-top-color: #344B5D;
}
.section-game-changer .blocks .block:hover .icon {
  outline-width: thick;
}
@media (max-width: 991px) {
  .section-game-changer .blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .section-game-changer .blocks .block {
    width: calc(50% - 0.5rem);
    align-items: start;
  }
  .section-game-changer .blocks .block .content {
    width: calc(100% - 90px);
  }
}
@media (max-width: 767px) {
  .section-game-changer .blocks {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .section-game-changer .blocks .block {
    width: auto;
    align-items: start;
  }
  .section-game-changer .blocks .block .content {
    width: calc(100% - 80px);
  }
}
.section-game-changer .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 50px;
}

.lp-section-features {
  background-color: #f5f5f5;
}
.lp-section-features .chips {
  border-radius: 16px;
  border: thin solid #eee;
  background-color: white;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  outline: 0px solid transparent;
  transition: all 0.3s ease-in-out;
}
.lp-section-features .chips .icons {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 198, 0, 0.1);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-section-features .chips .icons i {
  font-size: 18px;
}
.lp-section-features .chips span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  width: calc(100% - 40px);
  line-height: 1.2;
}
.lp-section-features .chips:hover {
  outline: 1px solid #ffc600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.modal-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  display: none;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
}
@media (max-width: 767px) {
  .modal-popup {
    align-items: start;
  }
}
.modal-popup .wrapper {
  background-color: white;
  border-radius: 4px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  min-width: 500px;
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  flex-direction: column;
}
@media (max-width: 767px) {
  .modal-popup .wrapper {
    min-width: 90%;
  }
}
.modal-popup .wrapper button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 0;
  outline: 0;
  background-color: transparent;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.modal-popup .wrapper img {
  height: 56px;
  width: 56px;
  margin: 0 auto 1rem;
  display: block;
  background-color: #f5f5f5;
}
.modal-popup .wrapper h2,
.modal-popup .wrapper p {
  margin: 0 auto;
  text-align: center;
}
.modal-popup .wrapper h2 {
  font-weight: bold;
  text-transform: capitalize;
}
.modal-popup .wrapper p {
  margin-top: 0.5rem;
}
.modal-popup .wrapper .link {
  background-color: #ffc600;
  color: black;
  display: flex;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.open-popup-modal {
  display: flex;
}

.response-box {
  background-color: white;
  border-radius: 4px;
  height: -moz-fit-content;
  height: fit-content;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  position: relative;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  flex-direction: column;
}
.response-box img {
  height: 56px;
  width: 56px;
  margin: 0 auto 1rem;
  display: block;
  background-color: #f5f5f5;
}
.response-box h2,
.response-box p {
  margin: 0 auto;
  text-align: center;
}
.response-box h2 {
  font-weight: bold;
  text-transform: capitalize;
}
.response-box p {
  margin-top: 0.5rem;
}
.response-box .link {
  background-color: #ffc600;
  color: black;
  display: flex;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  text-decoration: none;
  font-weight: 500;
}

.why-trust {
  counter-reset: section;
}
.why-trust .img-box {
  background-color: white;
  border: thin solid #eee;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: relative;
}
.why-trust .img-box::after {
  content: counter(section);
  counter-increment: section;
  position: absolute;
  top: -18px;
  right: 0;
  font-size: clamp(32px, 10vw, 90px);
  opacity: 0.1;
  font-weight: 800;
}
.why-trust .img-box img {
  display: block;
  margin: 0;
}
.why-trust .img-box:hover {
  background-color: rgba(255, 198, 0, 0.5);
  border: thin solid #ffc600;
}

.testimonials {
  overflow: hidden;
  position: relative;
}
.testimonials::before, .testimonials::after {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  width: 10%;
  z-index: 2;
  position: absolute;
}
@media (max-width: 991px) {
  .testimonials::before, .testimonials::after {
    width: 10%;
  }
}
.testimonials::before {
  left: 0;
  background-image: linear-gradient(90deg, white 50%, transparent);
}
.testimonials::after {
  right: 0;
  background-image: linear-gradient(270deg, white 50%, transparent);
}
.testimonials .owl-stage-outer {
  overflow: visible;
}
.testimonials .item {
  border: thin solid #eee;
  padding: 1rem;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  background-color: white;
}
.testimonials .item p {
  position: relative;
}
.testimonials .item p::before {
  content: "\f6b0";
  position: relative;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  font-size: 2rem;
}
.testimonials .item h4 {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  text-align: center;
  font-style: italic;
  font-weight: 600;
}
.testimonials .item h4 small {
  font-style: normal;
  font-size: 14px;
  opacity: 0.8;
  font-weight: 400;
}
.testimonials .owl-item {
  opacity: 0.24;
}
.testimonials .owl-item.active {
  opacity: 1;
}
.testimonials .owl-item.active .item {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonials .owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials .owl-nav button {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: thin solid #aaa !important;
  border-radius: 100%;
}
.testimonials .owl-nav button:hover {
  border-color: black !important;
}

.lp-section-useful {
  position: relative;
}
.lp-section-useful img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .lp-section-useful img {
    width: auto;
    height: 300px;
    margin: 0 auto 2rem;
  }
}
.lp-section-useful .feature-list {
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 50% 50%;
  flex-direction: column;
  -moz-columns: 2;
       columns: 2;
  list-style: none;
  row-gap: 1rem;
}
.lp-section-useful .feature-list li {
  display: flex;
  gap: 8px;
}
.lp-section-useful .feature-list li i {
  height: 16px;
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: green;
  color: white;
  border-radius: 100px;
}/*# sourceMappingURL=lp.css.map */