:root {
  --global-font: "Roboto", sans-serif;

  --primary-color: #96fb4a;

  --dark-green-color: #021303;

  --dark-color: #030303;

  --black-color: #000000;

  --light-color: #ffffff;

  --gray-color: #c4c0c0;
}

*,
*:after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark-color);

  margin: 0;

  margin: 0;

  font-family: var(--global-font);

  overflow-x: hidden;
}

img,
svg {
  vertical-align: middle;

  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  text-decoration: none;

  transition: 0.3s;
}

button,
path,
rect,
circle {
  transition: 0.5s;
}

ul,
li {
  margin: 0;

  padding: 0;

  list-style: none;
}

input[type="number"]::-webkit-inner-spin-button {
  display: none;
}

.container {
  width: clamp(320px, 96%, 1280px);

  margin: 0 auto;

  padding: 0 15px;
}

@media (max-width: 575px) {
  .container {
    width: 100%;
  }
}

.flex-ctr-spb {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.flex-auto-spb {
  display: flex;

  justify-content: space-between;
}

.flex-ctr {
  display: flex;

  align-items: center;
}

.flex-ctr-ctr {
  display: flex;

  align-items: center;

  justify-content: center;
}

.btn-primary {
  font-size: 18px;

  line-height: 1.2;

  font-weight: 500;

  font-family: var(--global-font);

  display: inline-block;

  color: var(--dark-color);

  padding: 20px 40px;

  background-color: var(--primary-color);

  border: none;

  border-radius: 8px;

  cursor: pointer;

  text-align: center;

  transition: 0.3s;
}

.btn-primary:hover {
  color: var(--light-color);

  background-color: #58ba0e;
}

.section-subtitle {
  font-size: 18px;

  line-height: 1.3;

  font-weight: 500;

  font-family: var(--global-font);

  color: var(--primary-color);

  margin: 0 0 12px;
}

.section-title {
  font-size: 36px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0;

  font-weight: 700;
}

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

.gradient-bg {
  position: relative;

  z-index: 1;
}

.gradient-bg::after {
  content: "";

  height: 100%;

  width: 100%;

  position: absolute;

  top: 0;

  left: 0;

  border-radius: 32px;

  background-image: linear-gradient(
    to right bottom,

    #076f0c41,
    rgba(0, 0, 0, 0)
  );

  filter: blur(10);

  z-index: -1;
}

/* Gradient Animated Border */

.gradient-animated-border {
  position: absolute;

  z-index: -1;

  left: -2.5px;

  top: -2.5px;

  border-radius: 32px;

  width: calc(100% + 5px);

  height: calc(100% + 5px);

  padding: 2.5px;

  overflow: hidden;

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;
}

.gradient-animated-border::before {
  content: "";

  position: absolute;

  z-index: -2;

  top: 50%;

  left: 50%;

  min-height: 1200px;

  height: 200%;

  width: 200%;

  transform: translate(-50%, -50%);

  background-image: linear-gradient(
    to right bottom,

    #4afb628e,
    #97fb4a11,
    #97fb4a73,
    #97fb4a11
  );

  animation: bgRotate 8s linear infinite;
}

@keyframes bgRotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}

@media (max-width: 991px) {
  .btn-primary {
    font-size: 17px;

    padding: 18px 32px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .btn-primary {
    font-size: 15px;

    padding: 15px 30px;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }
}

/* ****************************** */

/*        Gradient Border         */

/* ****************************** */

.backed-experties__body::after,
.backed-experties__body::before,
.badges__body::after,
.badges__body::before,
.our-partners__body::after,
.our-partners__body::before,
.footer__main::after,
.footer__main::before,
.footer__main-alt::after,
.footer__main-alt::before,
.procedure__step::after {
  content: "";

  height: 1px;

  width: 100%;

  position: absolute;

  left: 0;

  top: -1px;

  background-image: linear-gradient(
    to right,

    #97fb4a00,
    var(--primary-color),
    #97fb4a00
  );
}

.backed-experties__body::after,
.our-partners__body::after,
.badges__body::after,
.footer__main::after,
.footer__main-alt::after,
.procedure__step::after {
  top: auto;

  bottom: 0;
}

/* ****************************** */

/*        Mobile Offcanvas        */

/* ****************************** */

.mbl-offcanvas {
  height: 100vh;

  width: 280px;

  background-color: var(--light-color);

  right: -281px;

  top: 0;

  position: fixed;

  padding: 80px 1px 30px 0;

  transition: 0.3s;

  z-index: 999999;
}

.offcanvas-active.mbl-offcanvas {
  right: 0;

  box-shadow: 0 0 15px 0 var(--black-color) 33;
}

.mbl-offcanvas__close {
  height: 30px;

  width: 30px;

  border: 1px solid var(--dark-color);

  border-radius: 50%;

  position: absolute;

  top: 10px;

  left: 10px;

  font-size: 22px;

  color: var(--dark-color);

  cursor: pointer;

  line-height: 1;

  padding-bottom: 3px;
}

.mbl-offcanvas__logo {
  max-width: 60%;

  margin: 0 auto 30px;
}

.mbl-offcanvas__nav-list a {
  font-size: 16px;

  font-weight: 400;
}

.mbl-offcanvas__nav-list a {
  display: block;

  text-decoration: none;
}

.mbl-offcanvas__nav-list > li {
  border-bottom: solid 1px var(--black-color) 15;
}

.mbl-offcanvas__nav-list > li a {
  color: var(--dark-color);

  padding: 14px 20px;
}

.mbl-offcanvas__nav-list > li a:hover,
.mbl-offcanvas__nav-list > li a.active-link {
  color: #ffffff;

  background-color: #87ec39;
}

/* ******************************** */

/* ********* Header Style ********* */

/* ******************************** */

.header {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  padding: 55px 0 30px;
}

.header__bg {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: -1;
}

.header__bg svg {
  width: 100%;

  height: auto;
}

.header > .flex-ctr {
  gap: 165px;
}

.disclimer {
  width: clamp(320px, 96%, 1280px);
  margin: 0 auto;
  padding: 0 15px;
  color: #ffffff;
  margin-top: 40px;
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
}

.disclimer a {
  color: var(--light-color);
  text-decoration: none;
}

.disclimer a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.heder__logo {
  max-width: 105px;

  display: inline-block;
}

.header__nav-list.flex-ctr {
  gap: 50px;
}

.header__nav-link {
  position: relative;

  font-size: 18px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 500;

  color: var(--light-color);

  display: inline-block;

  padding: 5px 0;
}

.header__nav-link:hover,
.active-link.header__nav-link {
  color: var(--primary-color);
}

.header__nav-link::after,
.header__nav-link::before {
  content: "";

  height: 2px;

  width: 0;

  position: absolute;

  left: 50%;

  top: -1px;

  transform: translateX(-50%);

  background-image: linear-gradient(
    to right,

    #97fb4a00,
    var(--primary-color),
    #97fb4a00
  );

  transition: 0.3s;
}

.header__nav-link::after {
  top: auto;

  bottom: -1px;
}

.header__nav-link:hover::after,
.header__nav-link:hover::before,
.active-link.header__nav-link::after,
.active-link.header__nav-link::before {
  width: 100%;
}

.header__offcanvas {
  opacity: 0.7;

  transition: 0.3s;

  display: none;
}

.header__offcanvas:hover {
  opacity: 1;
}

.header__offcanvas svg {
  pointer-events: none;
}

@media (max-width: 1200px) {
  .header {
    padding: 25px 0;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 15px 0;
  }

  .header .container.flex-ctr {
    justify-content: space-between;
  }

  .header__offcanvas {
    display: block;
  }

  .header__nav {
    display: none;
  }

  .header__bg svg {
    min-width: 100%;

    width: 100%;

    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .header__bg svg {
    display: none;
  }

  .header > .flex-ctr {
    gap: 50px;
  }
}

/* ******************************** */

/* ********* Main Section ********* */

/* ******************************** */

.main {
  overflow: hidden;
}

.success-main {
  margin-bottom: -89px;
}

@media (max-width: 1200px) {
  .success-main .wave-left::before {
    display: none;
  }
}

/* ******************************** */

/* ********* Hero Section ********* */

/* ******************************** */

.hero {
  padding: 300px 0 90px;
}

.home-main .hero {
  padding-top: 380px;
}

.home-main .hero__content {
  padding-bottom: 200px;
}

.hero__content {
  max-width: 895px;

  margin: 0 auto;

  text-align: center;

  position: relative;

  z-index: 1;
}

.hero__content__fancy-icon {
  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  z-index: -1;

  width: 675px;
}

.hero__content__fancy-icon::after {
  content: "";

  height: 70%;

  width: 120%;

  position: absolute;

  left: -10%;

  top: -10%;

  background-image: linear-gradient(var(--dark-color) 60%, transparent);

  /* z-index: -2; */
}

.hero__content__fancy-small-icons {
  position: absolute;

  height: calc(100% + 52px);

  width: calc(100% + 52px);

  top: -26px;

  left: -26px;

  border: 50%;

  animation: icons-rotate 24s linear infinite;

  transform-origin: center;
}

@keyframes icons-rotate {
  0% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(355deg);
  }
}

.hero__content__fancy-small-icons .icon-1,
.hero__content__fancy-small-icons .icon-3 {
  left: 0;

  top: 50%;

  transform: translateY(-50%);

  position: absolute;

  animation: icon-rotate1 24s linear infinite;
}

@keyframes icon-rotate1 {
  100% {
    transform: translateY(-50%) rotate(-1turn);
  }
}

.hero__content__fancy-small-icons .icon-2,
.hero__content__fancy-small-icons .icon-4 {
  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  position: absolute;

  animation: icon-rotate2 24s linear infinite;
}

@keyframes icon-rotate2 {
  100% {
    transform: translateX(-50%) rotate(-1turn);
  }
}

.hero__content__fancy-small-icons .icon-3 {
  right: 0;

  left: auto;
}

.hero__content__fancy-small-icons .icon-4 {
  top: 0;

  bottom: auto;
}

.hero .hero__content__fancy-icon .circle-dots {
  transform-origin: 337px 337px;

  animation: circle-animation 24s linear infinite;
}

@keyframes circle-animation {
  100% {
    transform: rotate(1turn);
  }
}

.dots-color {
  transform-origin: center;

  animation: circle-reverse 24s linear infinite;
}

@keyframes circle-reverse {
  100% {
    transform: rotate(-1turn);
  }
}

.hero__title {
  font-size: 40px;

  line-height: 1.2;

  font-weight: 700;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 30px;
}

.hero__title span {
  color: var(--primary-color);
}

.hero__dsc {
  font-size: 24px;

  line-height: 1.5;

  font-weight: 500;

  color: var(--gray-color);

  max-width: 541px;

  margin: 0 auto;
}

.hero__btn {
  margin: 85px 0 0;
}

.hero__highlight,
.hero__vtcl-text {
  font-size: 64px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);
}

.hero__highlight {
  margin: 60px 0 0;

  position: relative;
}

.hero__vtcl-text {
  color: var(--primary-color);

  margin: 0;

  text-align: left;
}

.hero__hightlight__inner {
  display: inline-flex;

  gap: 12px;

  position: absolute;

  top: 0;

  left: 34%;
}

@media (max-width: 1200px) {
  .hero__content {
    max-width: 580px;
  }
}

@media (max-width: 1023px) {
  .hero {
    padding: 230px 0 90px;
  }

  .home-main .hero {
    padding-top: 280px;
  }

  .home-main .hero__content {
    padding-bottom: 150px;
  }

  .hero__btn {
    margin-top: 45px;
  }

  .hero__content__fancy-icon {
    width: 580px;
  }

  .hero__hightlight__inner {
    left: 36%;
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 200px 0 70px;
  }

  .home-main .hero {
    padding-top: 250px;
  }

  .hero__title {
    font-size: 42px;

    margin: 0 0 24px;
  }

  .hero__dsc {
    font-size: 20px;

    max-width: 420px;
  }

  .home-main .hero__content {
    padding-bottom: 100px;
  }

  .hero__content__fancy-icon {
    width: 450px;
  }

  .hero__highlight,
  .hero__vtcl-text {
    font-size: 48px;
  }

  .hero__hightlight__inner {
    left: 39%;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 140px 0 50px;
  }

  .home-main .hero {
    padding-top: 200px;
  }

  .hero__title {
    font-size: 36px;

    margin: 0 0 20px;
  }

  .hero__dsc {
    font-size: 18px;
  }

  .hero__highlight,
  .hero__vtcl-text {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero__highlight,
  .hero__vtcl-text {
    font-size: 36px;
  }

  .hero__hightlight__inner {
    left: 35%;
  }
}

/* ******************************** */

/* ******* Backed Experties ******* */

/* *******   Our Partners   ******* */

/* *******       Badges     ******* */

/* ******************************** */

.backed-experties,
.badges,
.our-partners {
  padding: 90px 0;
}

.backed-experties__header,
.badges__header,
.our-partners__header {
  text-align: center;

  margin-bottom: 60px;
}

.backed-experties__body,
.badges__body,
.our-partners__body {
  padding: 50px 60px;

  gap: 50px;

  position: relative;
}

.backed-experties__item,
.our-partners__item {
  max-width: 285px;
}

.badge:first-child {
  max-width: 125px;
}

.badge {
  max-width: 90px;
}

@media (max-width: 991px) {
  .backed-experties,
  .badges,
  .our-partners {
    padding: 70px 0;
  }

  .backed-experties__header,
  .badges__header,
  .our-partners__header {
    margin-bottom: 40px;
  }

  .backed-experties__body,
  .badges__body,
  .our-partners__body {
    padding: 40px;

    gap: 40px;
  }

  /*

.badge {
  max-width: 90px;
}

  */
}

@media (max-width: 767px) {
  .backed-experties,
  .badges,
  .our-partners {
    padding: 50px 0;
  }

  .backed-experties__body,
  .badges__body,
  .our-partners__body {
    padding: 30px 10px;

    gap: 30px;
  }
}

@media (max-width: 575px) {
  .backed-experties__body,
  .badges__body,
  .our-partners__body {
    gap: 20px;
  }
}

/* ******************************** */

/* ********** Competitors ********* */

/* ******************************** */

.competitors {
  padding: 90px 0;
}

.competitors .flex-ctr-spb {
  gap: 65px;
}

.competitors__context,
.competitors__figure {
  flex: 1;

  max-width: 50%;
}

.competitors__title {
  font-size: 48px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 30px;
}

.competitors__dsc {
  font-size: 24px;

  line-height: 1.5;

  font-weight: 500;

  color: var(--gray-color);

  margin: 0;
}

@media (max-width: 1080px) {
  .competitors .flex-ctr-spb {
    flex-direction: column-reverse;
  }

  .competitors__context,
  .competitors__figure {
    flex: 1;

    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .competitors {
    padding: 70px 0;
  }

  .competitors .flex-ctr-spb {
    gap: 50px;
  }

  .competitors__title {
    font-size: 42px;
  }

  .competitors__dsc {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .competitors {
    padding: 50px 0;
  }

  .competitors__title {
    font-size: 36px;

    margin-bottom: 20px;
  }

  .competitors__dsc {
    font-size: 18px;
  }
}

/* ******************************** */

/* ********** Alliances *********** */

/* ******************************** */

.alliances-wrap {
  padding: 90px 0;
}

.alliances-label {
  text-align: center;
}

.alliances {
  position: relative;

  padding-top: 50px;

  z-index: 1;
}

.b2c-main .alliances {
  display: grid;

  grid-template-columns: repeat(7, 1fr);

  gap: 35px;
}

.alliances .slick-track {
  display: flex;

  align-items: center;
}

.alliances::before,
.alliances::after {
  content: "";

  height: 100%;

  width: 150px;

  position: absolute;

  top: 0;

  left: 0;

  background-image: linear-gradient(to right, var(--dark-color), transparent);

  z-index: 9;
}

.b2c-main .alliances::before,
.b2c-main .alliances::after {
  display: none;
}

.alliances::after {
  left: auto;

  right: 0;

  background-image: linear-gradient(to right, transparent, var(--dark-color));
}

@media (max-width: 991px) {
  .alliances-wrap {
    padding: 70px 0;
  }

  .alliances {
    padding-top: 30px;
  }

  .b2c-main .alliances {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));

    gap: 40px;
  }
}

@media (max-width: 767px) {
  .alliances-wrap {
    padding: 50px 0;
  }
}

/* ******************************** */

/* ********** Procedure *********** */

/* ******************************** */

.procedure {
  padding: 90px 0;

  overflow: hidden;
}

.procedure__header {
  text-align: center;
}

.procedure__body {
  margin-top: 90px;

  gap: 30px;

  position: relative;
}

.procedure__icon {
  position: absolute;
}

.procedure__card {
  position: relative;

  z-index: 1;

  flex: 1;
}

.procedure .icon-1 {
  top: -155px;

  left: -230px;

  z-index: -1;
}

.procedure .icon-2 {
  top: -155px;

  right: -230px;

  z-index: -1;
}

.card-style01 {
  padding: 40px;

  border-radius: 32px;

  z-index: 1;
}

.card-style01.gradient-bg::after {
  backdrop-filter: blur(2px);
}

.card-style01.card2.gradient-bg::after {
  background-image: linear-gradient(#076f0c41, rgba(0, 0, 0, 0));
}

.card-style01.card3.gradient-bg::after {
  background-image: linear-gradient(
    to left bottom,

    #076f0c41,
    rgba(0, 0, 0, 0)
  );
}

.card-style01 .card__icon {
  margin-bottom: 30px;
}

.card-style01 .card__title {
  font-size: 24px;

  font-weight: 700;

  line-height: 1.3;

  font-family: var(--global-font);

  margin: 0 0 15px;

  color: var(--light-color);
}

.card-style01 .card__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  color: var(--light-color);

  margin: 0;
}

@media (max-width: 1300px) {
  .card-style01 {
    padding: 24px;
  }
}

@media (max-width: 1200px) {
  .procedure__body.flex-auto-spb {
    flex-wrap: wrap;
  }

  .card-style01 {
    padding: 20px;

    min-width: 330px;
  }

  .procedure__body {
    gap: 20px;
  }

  .procedure .gradient-animated-border::before {
    min-height: 1200px;
  }
}

@media (max-width: 991px) {
  .procedure {
    padding: 70px 0;
  }

  .procedure__body {
    margin-top: 60px;
  }

  .card-style01 .card__icon {
    margin-bottom: 20px;
  }

  .card-style01 .card__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .procedure {
    padding: 50px 0;
  }

  .procedure__body {
    margin-top: 40px;

    gap: 15px;
  }

  .card-style01 .card__icon {
    margin-bottom: 15px;
  }

  .card-style01 .card__icon svg {
    height: 60px;

    width: 60px;
  }

  .card-style01 .card__title {
    font-size: 20px;
  }

  .card-style01 .card__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .card-style01 {
    min-width: 300px;
  }

  .procedure__icon {
    display: none;
  }
}

/* ******************************** */

/* ********** Advantage *********** */

/* ******************************** */

.advantage {
  padding: 90px 0;

  position: relative;

  z-index: 1;
}

.advantage__icon {
  position: absolute;

  bottom: 220px;

  right: 0;

  z-index: -1;
}

.advantage__title {
  text-align: center;
}

.advantage__table-wrap {
  overflow-x: auto;

  scrollbar-width: thin;

  scrollbar-color: var(--primary-color) var(--dark-color);
}

.advantage__table {
  margin-top: 90px;

  width: 100%;

  border-radius: 32px;

  border: 1px solid var(--primary-color);

  border-spacing: 0;

  overflow: hidden;
}

.advantage__table th,
.advantage__table td {
  font-size: 21px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--primary-color);

  padding: 40px;

  text-align: center;

  border-bottom: 1px solid rgba(150, 251, 74, 0.2);

  background-color: rgba(2, 19, 3, 0.5);

  white-space: nowrap;
}

.advantage__table tr:last-child td {
  border: none;
}

.advantage__table td {
  font-size: 18px;

  color: var(--light-color);
}

.advantage__table th:nth-child(2),
.advantage__table td:nth-child(2) {
  background-color: rgba(150, 251, 74, 0.1);
}

.advantage__table th:last-child,
.advantage__table td:last-child {
  background-color: var(--dark-green-color);
}

.advantage__table td:first-child {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 6px;

  padding-block: 56px;
}

.advantage__table .checked,
.advantage__table .unchecked {
  font-size: 16px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--dark-color);

  gap: 8px;

  font-weight: 400;

  padding: 12px 18px;

  background-color: var(--light-color);

  border-radius: 65px;

  border: 1px solid #d3d3d3;

  display: inline-flex;

  margin: 0;
}

.advantage__table .checked .icon,
.advantage__table .unchecked .icon {
  width: 30px;
}

@media (max-width: 991px) {
  .advantage {
    padding: 70px 0;
  }

  .advantage__table {
    margin-top: 70px;
  }

  .advantage__table th,
  .advantage__table td {
    font-size: 20px;

    padding: 20px;
  }

  .advantage__table td {
    font-size: 16px;
  }

  .advantage__table td:first-child {
    padding-block: 35px;
  }

  .advantage__table .checked,
  .advantage__table .unchecked {
    padding: 8px 12px;
  }
}

@media (max-width: 767px) {
  .advantage {
    padding: 50px 0;
  }

  .advantage__table {
    margin-top: 50px;

    border-radius: 20px;
  }

  .advantage__table th,
  .advantage__table td {
    font-size: 18px;

    padding: 20px;
  }

  .advantage__table td {
    font-size: 15px;
  }
}

/* ******************************** */

/* ******** Call to Action ******** */

/* ******************************** */

.cta {
  padding: 90px 0;
}

.cta > .flex-ctr-spb {
  gap: 100px;
}

.cta__context {
  flex: 1;

  max-width: 640px;
}

.cta__main-title {
  font-size: 64px;

  line-height: 1.3;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 45px;

  font-weight: 700;
}

.cta__main-title span {
  color: var(--primary-color);
}

.cta__title {
  font-size: 48px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 40px;
}

.cta__row {
  padding: 10px;

  border-radius: 8px;

  background-color: var(--light-color);

  margin-bottom: 45px;
}

.cta__field,
.cta__field .cta__input {
  flex: 1;
}

.cta__field label {
  height: 48px;

  width: 48px;

  padding: 12px;

  box-shadow: 0 4px 35px 0 rgba(169, 169, 169, 0.2);

  border: 1px solid #ededed;

  border-radius: 8px;

  margin-left: 15px;

  display: inline-block;
}

.cta__field .cta__input {
  font-size: 16px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 400;

  color: var(--dark-color);

  border: none;

  outline: none;

  padding: 12px;

  background-color: var(--light-color);
}

.cta__btn {
  gap: 10px;

  padding: 17px 50px;

  border-radius: 4px;

  display: flex;
}

.cta__links {
  gap: 24px;
}

.cta__link {
  max-width: 155px;
}

.cta__figure {
  max-width: 425px;
}

@media (max-width: 1200px) {
  .cta > .flex-ctr-spb {
    gap: 60px;
  }

  .cta__btn {
    padding: 15px 25px;
  }
}

@media (max-width: 1080px) {
  .cta > .flex-ctr-spb {
    flex-direction: column-reverse;
  }

  .cta__main-title {
    font-size: 56px;
  }
}

@media (max-width: 991px) {
  .cta {
    padding: 70px 0;
  }

  .cta__main-title {
    font-size: 30px;
  }

  .cta__title {
    font-size: 42px;

    margin: 0 0 30px;
  }
}

@media (max-width: 767px) {
  .cta {
    padding: 50px 0;
  }

  .cta__main-title {
    font-size: 38px;

    margin: 0 0 20px;
  }

  .cta__title {
    font-size: 36px;
  }

  .cta__row {
    padding: 8px;

    margin-bottom: 30px;
  }

  .cta__field label {
    height: 40px;

    width: 40px;

    padding: 8px;

    margin-left: 8px;
  }

  .cta__field .cta__input {
    font-size: 15px;

    padding: 10px 12px;
  }

  .cta__btn {
    gap: 8px;

    padding: 12px;
  }

  .cta__links {
    gap: 15px;
  }

  .cta__link {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .cta__field label,
  .cta__btn .icon {
    display: none;
  }
}

/* ****************************** */

/*   Frequently Asked Questions   */

/* ****************************** */

.faq {
  padding: 90px 0;
}

.faq__inner {
  width: clamp(320px, 80%, 900px);

  margin: 0 auto;

  padding: 0 15px;
}

.faq__header {
  text-align: center;
}

.faq__subtitle {
  margin: 0;
}

.faq__title {
  margin: 0 0 8px;
}

.faq__items {
  padding-top: 90px;
}

.faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.faq__item {
  border-radius: 16px;

  /* border: 1px solid var(--primary-color); */

  position: relative;
}

.faq__item .gradient-animated-border {
  border-radius: 16px;
}

.faq__item .gradient-animated-border::before {
  height: 900px;
}

.faq__item.gradient-bg::after {
  border-radius: 16px;

  opacity: 0;

  transition: 0.3s;
}

.active-collpse.gradient-bg::after {
  opacity: 1;

  background-image: linear-gradient(to bottom, #076f0c41, rgba(0, 0, 0, 0));
}

.faq__item__header {
  padding: 24px 55px 24px 24px;

  position: relative;

  cursor: pointer;
}

.faq__item__title {
  font-size: 21px;

  line-height: 1.3;

  font-family: var(--global-font);

  color: var(--light-color);

  font-weight: 700;

  margin: 0;
}

.faq__item__collapse-icon,
.faq__item__collapse-icon::after {
  position: absolute;

  top: 50%;

  right: 36px;

  width: 2px;

  height: 16px;

  background-color: var(--light-color);

  transform: translateY(-50%);

  transition: 0.3s;
}

.faq__item__collapse-icon::after {
  content: "";

  height: 2px;

  width: 18px;

  left: 50%;

  transform: translate(-50%, -50%);
}

.active-collpse .faq__item__header .faq__item__collapse-icon {
  transform: translateY(-50%) rotate(-90deg);
}

.active-collpse .faq__item__header .faq__item__collapse-icon::after {
  transform: translate(-50%, -50%) scale(0.1);
}

.faq__item__body {
  padding: 0 24px 24px;

  display: none;
}

.faq__item__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0;
}

@media (max-width: 991px) {
  .faq {
    padding: 70px 0;
  }

  .faq__items {
    padding-top: 70px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 15px;
  }

  .faq__item__title {
    font-size: 20px;
  }

  /*

.faq__item .gradient-animated-border::before {
  height: 900px;
}

.faq__item__collapse-icon,

.faq__item__collapse-icon::after {
  top: 50%;

  right: 36px;

  width: 2px;

  height: 16px;

  transform: translateY(-50%);
}

.faq__item__collapse-icon::after {
  height: 2px;

  width: 18px;
}

  */
}

@media (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }

  .faq__items {
    padding-top: 50px;
  }

  .faq__item__title {
    font-size: 18px;
  }

  .faq__item__header {
    padding: 20px 55px 20px 20px;
  }

  .faq__item__body {
    padding: 0 20px 20px;
  }

  .faq__item__collapse-icon,
  .faq__item__collapse-icon::after {
    right: 24px;
  }

  .faq__item__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .faq__inner {
    width: 100%;
  }
}

/*

@media (max-width: 991px) {
  .faq__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .faq {
    padding: 80px 0;
  }

  .faq__title {
    font-size: 36px;
  }

  .faq__item__title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }

  .faq__title {
    font-size: 32px;
  }

  .faq__items {
    padding-top: 35px;
  }

  .faq__item:not(:last-child) {
    margin-bottom: 16px;
  }

  .faq__item__header {
    padding: 15px 35px 15px 15px;
  }

  .faq__item__title {
    font-size: 16px;
  }

  .faq__item__collapse-icon,

  .faq__item__collapse-icon::after {
    right: 20px;
  }

  .faq__item__body {
    padding: 15px 20px;
  }

  .faq__item__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .faq__inner {
    width: 100%;
  }
} */

/* ****************************** */

/* ******* Fancy Accordion ****** */

/* ****************************** */

.fancy-accordion {
  padding: 90px 0;

  position: relative;

  z-index: 1;
}

.fancy-accordion__icon {
  position: absolute;

  left: 0;

  top: 50%;

  z-index: -1;
}

.fancy-accordion > .container {
  gap: 100px;
}

.fancy-accordion__thumb {
  max-width: 425px;
}

.fancy-accordion__text {
  flex: 1;

  overflow: hidden;

  position: relative;
}

/* .fancy-accordion__figure-wrap {
  position: absolute;

  height: 100%;

  width: 100%;

  top: 0;

  left: 0;

  display: none;

  border-radius: 30px;

  overflow: hidden;
} */

/*

.fancy-accordion__subtitle {
  font-size: 16px;

  line-height: 1.2;

  color: var(--secondary-color);

  letter-spacing: -1%;

  font-weight: 500;

  display: inline-block;

  padding: 10px 15px;

  border: 1px solid rgba(251, 176, 64, 0.25);

  margin: 0;

  background-color: rgba(251, 176, 64, 0.1);

  border-radius: 50px;
} */

/* .fancy-accordion__title {
  color: #0e153e;

  font-family: var(--global-font);

  font-size: 56px;

  font-weight: 700;

  line-height: 120%;

  letter-spacing: -1%;

  margin: 20px 0 0;
} */

.fancy-accordion__list {
  margin-top: 60px;

  position: relative;

  padding-left: 40px;
}

.fancy-accordion__line {
  height: 100%;

  width: 1px;

  position: absolute;

  top: 0;

  left: 2px;

  background-image: linear-gradient(#ffffff, #030303);
}

.fancy-accordion__line span {
  position: absolute;

  height: 0;

  width: 3px;

  top: 0;

  left: -1px;

  background-color: var(--primary-color);

  border-radius: 3px;

  transition: 0.3s;
}

.fancy-accordion__item:not(:last-child) {
  margin-bottom: 30px;
}

.fancy-accordion__item {
  list-style: disc;

  transition: 0.3s;
}

.fancy-accordion__item::marker {
  color: var(--light-color);
}

.accordion-active.fancy-accordion__item::marker {
  color: var(--primary-color);
}

.fancy-accordion__item-title {
  color: var(--light-color);

  font-family: var(--global-font);

  font-size: 21px;

  font-weight: 700;

  line-height: 1.2;

  margin: 0;

  cursor: pointer;

  transition: 0.3s;
}

.fancy-accordion__item-title:hover,
.accordion-active .fancy-accordion__item-title {
  color: var(--primary-color);
}

.fancy-accordion__item-dsc {
  color: var(--gray-color);

  font-size: 16px;

  font-weight: 400;

  line-height: 1.5;

  font-family: var(--global-font);

  padding: 16px 0 0;

  display: none;

  position: relative;
}

.fancy-accordion__item-dsc p,
.fancy-accordion__figure {
  margin: 0;
}

/*

@media (max-width: 1300px) {
  .fancy-accordion__inner {
    gap: 30px;

    flex-direction: column;
  }

  .fancy-accordion__text,

  .fancy-accordion__thumb {
    max-width: 100%;
  }

  .fancy-accordion__thumb {
    flex: none;
  }

  .fancy-accordion__text {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .fancy-accordion__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .fancy-accordion {
    padding: 80px 0;
  }

  .fancy-accordion__title {
    font-size: 36px;
  }

  .fancy-accordion__item-title {
    font-size: 24px;
  }

  .fancy-accordion__item-dsc {
    font-size: 16px;
  }

  .fancy-accordion__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .fancy-accordion {
    padding: 50px 0;
  }

  .fancy-accordion__subtitle {
    font-size: 15px;

    padding: 8px 14px;
  }

  .fancy-accordion__title {
    font-size: 32px;

    margin: 12px 0 0;
  }

  .fancy-accordion__list {
    padding-left: 20px;
  }

  .fancy-accordion__item-title {
    font-size: 18px;
  }

  .fancy-accordion__item-dsc {
    font-size: 14px;

    padding: 10px 0 0;

    color: #344054a2;
  }
}

@media (max-width: 575px) {
  .fancy-accordion__inner {
    width: 100%;
  }
} */

@media (max-width: 1200px) {
  .fancy-accordion > .container {
    gap: 50px;
  }
}

@media (max-width: 1023px) {
  .fancy-accordion > .container {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .fancy-accordion {
    padding: 70px 0;
  }

  .fancy-accordion__list {
    margin-top: 40px;

    padding-left: 30px;
  }

  .fancy-accordion__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .fancy-accordion {
    padding: 50px 0;
  }

  .fancy-accordion__list {
    margin-top: 30px;
  }

  .fancy-accordion__item-title {
    font-size: 18px;
  }

  .fancy-accordion__item-dsc {
    font-size: 15px;

    padding: 12px 0 0;
  }
}

/* ****************************** */

/* ******** Why Choose Us ******* */

/* ****************************** */

.wcu {
  padding: 90px 0;
}

.wcu__title {
  text-align: center;
}

.wcu__cards {
  padding-top: 90px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

.wcu .card {
  padding: 80px 50px;

  border-radius: 32px;

  gap: 30px;

  position: relative;
}

.wcu .card .gradient-animated-border::before {
  height: 1500px;
}

.wcu .card__context {
  max-width: 324px;
}

.wcu .card__figure {
  margin-bottom: -80px;

  display: flex;

  align-items: flex-end;
}

.mx340 {
  max-width: 340px;
}

.wcu .card__title {
  font-size: 64px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 30px;
}

.wcu .card__dsc {
  font-size: 18px;

  line-height: 1.5;

  font-weight: 500;

  margin: 0;

  color: var(--light-color);
}

.wcu .x2 {
  grid-column: span 2;
}

.wcu .xfull {
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {
  .wcu__cards {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .wcu .x2,
  .wcu .xfull {
    grid-column: 1 / -1;
  }

  .wcu .card:first-of-type .card__context {
    max-width: 700px;
  }

  .wcu .card .card__context {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .wcu {
    padding: 70px 0;
  }

  .wcu__cards {
    padding-top: 70px;
  }

  .wcu .card {
    padding: 40px 30px;

    gap: 20px;
  }

  .wcu .card .card__context {
    max-width: 330px;
  }

  .wcu .card__figure {
    margin-bottom: -40px;
  }

  .wcu .card__title {
    font-size: 56px;

    margin: 0 0 20px;
  }

  .wcu .card__dsc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .wcu {
    padding: 50px 0;
  }

  .wcu__cards {
    padding-top: 50px;
  }

  .wcu .card {
    flex-direction: column-reverse;

    /* gap: 30px; */

    align-items: center;

    padding: 24px;
  }

  .wcu .card .card__context {
    max-width: 100%;
  }

  .wcu .card__figure {
    margin: 0;
  }

  .wcu .card__title {
    font-size: 45px;
  }

  .wcu .card__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .wcu .card__title {
    font-size: 38px;
  }
}

/* ****************************** */

/* ************ Footer ********** */

/* ****************************** */

.footer {
  padding-top: 90px;
}

.footer__main,
.footer__main-alt {
  position: relative;

  padding: 90px 0;
}

.footer__main .container {
  display: flex;

  justify-content: center;

  gap: 190px;
}

.footer__main-alt .flex-ctr-spb {
  gap: 100px;
}

.footer__main-alt .footer__widget {
  text-align: center;
}

.footer__logo {
  width: 175px;

  margin: 0 0 60px;

  display: inline-block;
}

.footer__main-alt .footer__logo {
  margin: 0;
}

.footer__label {
  font-size: 18px;

  font-weight: 600;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 15px;
}

.footer__social {
  gap: 15px;
}

.footer__main__middle {
  max-width: 640px;

  text-align: center;
}

.footer__title {
  font-size: 24px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 20px;
}

.footer__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-family: var(--global-font);

  font-weight: 400;

  color: var(--light-color);

  margin: 0;
}

.footer__social-link {
  display: inline-block;

  height: 50px;

  width: 50px;

  border-radius: 50%;
}

.footer__social-link svg {
  transition: 0.3s;
}

.footer__social-link:hover svg {
  transform: scale(1.1);
}

.footer__copywrite {
  padding: 35px 0;

  text-align: center;
}

.footer__copywrite-text,
.footer__copywrite-text a {
  font-size: 14px;

  line-height: 1.2;

  font-weight: 400;

  color: var(--light-color);

  margin: 0;

  transition: 0.3s;
}

.footer__copywrite-text a:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .footer {
    padding-top: 70px;
  }

  .footer__main,
  .footer__main-alt {
    padding: 70px 0;
  }

  .footer__main .container {
    gap: 50px;
  }

  .footer__main-alt .flex-ctr-spb {
    flex-direction: column;

    align-items: flex-start;

    gap: 30px;
  }

  .footer__main-alt .footer__widget {
    text-align: start;
  }

  .footer__logo {
    margin: 0 0 30px;
  }

  .footer__label {
    font-size: 16px;
  }

  .footer__title {
    font-size: 22px;
  }

  .footer__social-link {
    height: 40px;

    width: 40px;
  }

  /*

.footer__main__middle {
  max-width: 640px;
}

  */
}

@media (max-width: 767px) {
  .footer {
    padding-top: 50px;
  }

  .footer__main,
  .footer__main-alt {
    padding: 50px 0;
  }

  .footer__label {
    font-size: 15px;

    margin-bottom: 10px;
  }

  .footer__title {
    font-size: 20px;

    margin: 0 0 15px;
  }

  .footer__main .container {
    flex-wrap: wrap;

    justify-content: flex-start;
  }

  .footer__main .footer__main__right {
    width: 100%;

    /* flex: 100%; */
  }

  .footer__dsc {
    font-size: 15px;
  }

  .footer__copywrite {
    padding: 20px 0;
  }

  .footer__copywrite-text,
  .footer__copywrite-text a {
    font-size: 13px;
  }
}

/* ****************************** */

/* ************* B2B ************ */

/* ********* Intro Video ******** */

/* ****************************** */

.intro-video {
  position: relative;

  padding: 0 0 95px;
}

.intro-video__bg {
  position: absolute;

  bottom: 100px;

  left: 0;

  width: 100%;
}

.intro-video__bg img {
  width: 100%;
}

.intro-video__thumb-wrap {
  position: relative;
}

.intro-video__thumb-icon {
  position: absolute;
}

.intro-video__thumb-icon.icon-1 {
  top: 85px;

  left: -20px;
}

.intro-video__thumb-icon.icon-2 {
  top: -46px;

  right: -122px;
}

.intro-video__thumb-icon.icon-3 {
  bottom: 185px;

  right: -44px;
}

.intro-video__thumb img {
  width: 100%;
}

.intro-video__play-icon {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .intro-video {
    padding: 0 0 70px;
  }

  .intro-video__thumb-icon.icon-3 {
    bottom: 50px;

    right: -40px;
  }
}

@media (max-width: 767px) {
  .intro-video {
    padding: 0 0 50px;
  }

  .intro-video__thumb-icon {
    display: none;
  }
}

@media (max-width: 575px) {
  .intro-video__play-icon svg {
    height: 45px;

    width: 45px;
  }
}

/* ****************************** */

/* ***** Compare With Others **** */

/* ****************************** */

.compare {
  padding: 90px 0 110px;
}

.compare .flex-ctr-ctr {
  gap: 100px;
}

.compare__block {
  text-align: center;
}

.competitor__text {
  margin-top: 40px;

  font-size: 21px;

  font-weight: 400;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);
}

.competitor__text span {
  /* font-size: 24px; */

  font-weight: 500;

  color: var(--primary-color);
}

@media (max-width: 1023px) {
  .compare .flex-ctr-ctr {
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .compare {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .compare {
    padding: 50px 0;
  }

  .competitor__text {
    margin-top: 20px;

    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .compare .flex-ctr-ctr {
    flex-direction: column;
  }

  .compare__block {
    max-width: 250px;
  }
}

/* ****************************** */

/* *********** Benefits ********* */

/* ****************************** */

.benefits {
  padding: 95px 0 90px;
}

.benefits__header {
  text-align: center;
}

.benefits__fig-content:first-child {
  padding-top: 90px;
}

.benefits__fig-content {
  padding: 150px 0;
}

.benefits__fig-content:last-child {
  padding-bottom: 120px;
}

.benefits__fig-content:last-child::after {
  display: none;
}

.benefits__fig-content {
  gap: 60px;

  position: relative;

  z-index: 1;
}

.benefits__fig-content::after {
  content: url(../imgs/benefit-arrow.svg);

  position: absolute;

  top: calc(100% - 128px);

  left: 50%;

  transform: translateX(-50%);

  z-index: -1;
}

.benefits__fig-content:nth-child(odd)::after {
  content: url(../imgs/benefit-arrow2.svg);
}

.benefits__fig-content:nth-child(odd) {
  flex-direction: row-reverse;
}

.benefits .fig-content__thumb {
  max-width: 47%;
}

.benefits .fig-content__context {
  max-width: 53%;
}

.benefits__fig-content .fig-content__title {
  font-size: 36px;

  line-height: 1.3;

  font-weight: 700;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 15px;

  max-width: 100%;
}

.benefits .fig-content__dsc {
  font-size: 18px;

  line-height: 1.5;

  font-weight: 500;

  margin: 0;

  color: var(--gray-color);
}

.fig-content__items {
  margin-top: 60px;
}

.fig-content__item {
  gap: 20px;

  align-items: flex-start;

  margin-bottom: 35px;
}

.fig-content__item:last-child {
  margin: 0;
}

.fig-content__item__icon {
  width: 50px;
}

.fig-content__item__text {
  flex: 1;
}

.fig-content__item__label {
  font-size: 21px;

  font-weight: 700;

  line-height: 1.3;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 15px;
}

.benefits .fig-content__item__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  color: var(--gray-color);

  margin: 0;
}

/* .fig-content__dsc:last-child {
  margin: 0;
} */

/* .fig-content__thumb {
  padding: 40px 0 0 40px;

  position: relative;

  z-index: 1;
} */

/* .benefits__fig-content:nth-child(odd) .fig-content__thumb {
  padding: 40px 40px 0 0;
} */

/* .fig-content__thumb img {
  border-radius: 32px;

  width: 100%;
} */

/* .fig-content__thumb::after {
  content: "";

  height: calc(100% - 40px);

  width: calc(100% - 40px);

  border-radius: 32px;

  border: 1px solid var(--primary-color);

  position: absolute;

  top: 0;

  left: 0;

  background-image: linear-gradient(

    to right bottom,

    #076f0c41,

    rgba(0, 0, 0, 0)
  );

  filter: blur(10);

  z-index: -1;
}

.benefits__fig-content:nth-child(odd) .fig-content__thumb::after {
  left: auto;

  right: 0;
} */

@media (max-width: 1023px) {
  .benefits__fig-content {
    gap: 30px;

    flex-wrap: wrap;
  }

  /*

  .benefits__fig-content:nth-child(odd) {
    flex-direction: column-reverse;
  } */

  .benefits .fig-content__thumb,
  .benefits .fig-content__context {
    max-width: 100%;

    width: 100%;
  }

  .benefits__fig-content::after {
    display: none;
  }

  .benefits__fig-content:first-child {
    padding-top: 70px;
  }

  .benefits__fig-content {
    padding: 70px 0;
  }

  .benefits__fig-content:last-child {
    padding-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .benefits {
    padding: 70px 0;
  }

  .benefits__fig-content .fig-content__title {
    font-size: 32px;
  }

  .benefits .fig-content__dsc {
    font-size: 16px;
  }

  .fig-content__items {
    margin-top: 40px;
  }

  /*

.benefits__fig-content::after {
  top: calc(100% - 128px);

  transform: translateX(-50%);
}

  */
}

@media (max-width: 767px) {
  .benefits {
    padding: 50px 0;
  }

  .benefits__fig-content:first-child {
    padding-top: 50px;
  }

  .benefits__fig-content {
    padding: 50px 0;
  }

  .benefits__fig-content:last-child {
    padding-bottom: 30px;
  }

  .benefits__fig-content .fig-content__title {
    font-size: 28px;
  }

  .benefits .fig-content__dsc {
    font-size: 15px;
  }

  .fig-content__items {
    margin-top: 30px;
  }

  .fig-content__item {
    gap: 12px;

    margin-bottom: 20px;
  }

  .fig-content__item__icon {
    width: 40px;
  }

  .fig-content__item__label {
    font-size: 18px;
  }

  .benefits .fig-content__item__dsc {
    font-size: 15px;
  }
}

/* ****************************** */

/* ********* How It Works ******* */

/* ****************************** */

.b2b-main .procedure {
  padding: 90px 0;
}

.b2b-main .procedure .flex-ctr-spb {
  gap: 80px;
}

.b2b-main .procedure__figure {
  max-width: 47%;
}

.b2b-main .procedure__context {
  max-width: 53%;
}

.b2b-main .procedure__steps {
  padding-top: 60px;
}

.b2b-main .procedure__step {
  padding: 40px 0;

  gap: 28px;

  position: relative;
}

.b2b-main .procedure__step:first-child {
  padding-top: 0;
}

.b2b-main .procedure__step:last-child {
  padding-bottom: 0;
}

.b2b-main .procedure__step::after {
  height: 1px;
}

.b2b-main .procedure__step:last-child::after {
  display: none;
}

.b2b-main .procedure__step-no {
  height: 100px;

  width: 100px;

  border-radius: 50%;

  border: 1px solid var(--light-color);

  color: var(--light-color);

  font-size: 48px;

  font-weight: 700;

  font-family: var(--global-font);

  margin: 0;

  transition: 0.3s;
}

.b2b-main .procedure__step:hover .procedure__step-no {
  border-color: var(--primary-color);

  color: var(--primary-color);
}

.b2b-main .procedure__step-text {
  flex: 1;
}

.b2b-main .procedure__step-title {
  font-size: 21px;

  line-height: 1.3;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 12px;

  font-weight: 700;
}

.b2b-main .procedure__step-dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  color: var(--light-color);

  margin: 0;
}

@media (max-width: 1080px) {
  .b2b-main .procedure .flex-ctr-spb {
    gap: 50px;
  }

  .b2b-main .procedure__steps {
    padding-top: 40px;
  }

  .b2b-main .procedure__step {
    padding: 20px 0;

    gap: 15px;
  }

  .b2b-main .procedure__step-no {
    height: 70px;

    width: 70px;

    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .b2b-main .procedure .flex-ctr-spb {
    flex-direction: column-reverse;

    align-items: flex-start;
  }

  .b2b-main .procedure {
    padding: 70px 0;
  }

  .b2b-main .procedure__figure {
    max-width: 400px;
  }

  .b2b-main .procedure__context {
    max-width: 100%;
  }

  .b2b-main .procedure__step-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .b2b-main .procedure__steps {
    padding-top: 30px;
  }

  .b2b-main .procedure__step-title {
    font-size: 18px;
  }

  .b2b-main .procedure__step-dsc {
    font-size: 15px;
  }
}

/* ****************************** */

/* ******* Start Exploring ****** */

/* ****************************** */

.explore {
  position: relative;

  padding: 90px 15px;

  z-index: 9;
}

.explore .gradient-bg::after {
  background-image: linear-gradient(#076f0c41, #076f0c09);
}

.explore__block {
  margin-top: 115px;

  padding: 60px;

  position: relative;

  z-index: 9;

  gap: 30px;
}

.explore__context {
  max-width: 55%;
}

.explore__title {
  font-size: 48px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 20px;

  max-width: 300px;
}

.explore__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  color: var(--light-color);

  margin: 0;

  max-width: 480px;
}

.explore__btns {
  padding-top: 40px;

  gap: 24px;
}

.explore__btn.bg-solid {
  background-color: var(--primary-color);

  color: var(--dark-green-color);

  border: 1px solid transparent;
}

.explore__btn.bg-transparent {
  border: 1px solid var(--primary-color);

  background-color: transparent;

  color: var(--primary-color);
}

.explore__thumb {
  max-width: 45%;

  margin-top: -175px;
}

@media (max-width: 1080px) {
  .explore__btn {
    padding: 18px 32px;
  }
}

@media (max-width: 991px) {
  .explore {
    padding: 70px 15px;
  }

  .explore__block {
    margin-top: 115px;

    padding: 40px;

    flex-direction: column-reverse;
  }

  .explore__context {
    max-width: 100%;

    text-align: center;
  }

  .explore__title {
    font-size: 42px;

    margin: 0 0 15px;

    max-width: 500px;
  }

  .explore__btns {
    justify-content: center;
  }

  .explore__thumb {
    margin-top: -115px;
  }

  /*

.explore__btns {
  padding-top: 40px;

  gap: 24px;
}

  max-width: 45%;

  */
}

@media (max-width: 767px) {
  .explore {
    padding: 50px 15px;
  }

  .explore__dsc {
    font-size: 15px;
  }

  .explore__block {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .explore__btns {
    gap: 10px;

    flex-wrap: wrap;
  }

  .explore__btn {
    padding: 12px;
  }
}

/* ****************************** */

/* ******** Intro Section ******* */

/* ****************************** */

.intro-section {
  padding: 350px 0 85px;

  position: relative;

  z-index: 1;
}

.intro-section > .flex-ctr-spb {
  gap: 50px;
}

.intro-section__bg {
  position: absolute;

  bottom: -230px;

  left: 0;

  width: 100%;

  z-index: -1;
}

.intro-section__bg svg {
  width: 100%;

  height: auto;
}

.aboutus-main .intro-section .flex-ctr-spb,
.aboutus-main .credibility .flex-ctr-spb,
.aboutus-main .our-commitment .flex-ctr-spb {
  gap: 60px;
}

.fig-content__context,
.fig-content__figure {
  flex: 1;

  max-width: 50%;
}

.credibility .fig-content__subtitle span:first-child {
  margin-left: 10px;
}

.fig-content__title {
  font-size: 48px;

  line-height: 1.3;

  font-weight: 700;

  font-family: var(--global-font);

  color: var(--primary-color);

  margin: 0 0 30px;

  max-width: 500px;
}

.b2c-main .fig-content__title,
.aboutus-main .fig-content__title {
  color: var(--light-color);
}

.aboutus-main .intro-section .fig-content__title {
  margin-bottom: 50px;
}

.aboutus-main .fig-content__title span {
  color: var(--primary-color);
}

.fig-content__dsc {
  font-size: 24px;

  line-height: 1.5;

  font-weight: 400;

  margin: 0;

  color: var(--light-color);
}

.b2c-main .fig-content__dsc,
.aboutus-main .fig-content__dsc {
  color: var(--gray-color);

  max-width: 540px;
}

.aboutus-main .intro-section .fig-content__dsc {
  max-width: initial;

  margin-bottom: 24px;

  font-size: 16px;
}

.credibility .fig-content__dsc {
  font-size: 21px;

  color: var(--gray-color);

  max-width: 500px;
}

.aboutus-main .fig-content__dsc:last-child {
  margin: 0;
}

.fig-content__info {
  font-size: 16px;

  line-height: 1.4;

  font-weight: 400;

  color: var(--gray-color);

  margin: 30px 0 0;
}

.fig-content__btn {
  margin-top: 50px;
}

.our-commitment .fig-content__btn {
  margin-top: 40px;
}

.fig-content__list {
  padding-top: 40px;

  padding-left: 0px;
}

.fig-content__list-item {
  margin: 0 0 15px;

  list-style: url(../imgs/tick.svg);

  font-size: 18px;

  line-height: 2;

  font-family: var(--global-font);

  color: var(--light-color);

  font-weight: 500;
}

.fig-content__figure {
  position: relative;

  z-index: 1;
}

.aboutus-main .intro-section .fig-content__figure img {
  width: 100%;
}

.security-main .fig-content__figure::after {
  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  height: 100%;

  width: 100%;

  border-radius: 50%;

  background-color: rgb(150, 251, 74);

  filter: blur(700px);

  z-index: -1;
}

@media (max-width: 1200px) {
  .intro-section {
    padding: 250px 0 85px;
  }

  .aboutus-main .credibility .flex-ctr-spb {
    flex-direction: column-reverse;

    align-items: flex-start;
  }

  .aboutus-main .fig-content__context {
    max-width: 100%;

    width: 100%;
  }

  .aboutus-main .fig-content__title.section-title,
  .aboutus-main .fig-content__dsc {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .intro-section {
    padding: 200px 0 85px;
  }

  .intro-section > .flex-ctr-spb {
    flex-direction: column-reverse;
  }

  .aboutus-main .intro-section > .flex-ctr-spb {
    flex-direction: column;

    align-items: flex-start;
  }

  .our-commitment .container.flex-ctr-spb {
    flex-direction: column;

    align-items: flex-start;
  }

  .fig-content__context,
  .fig-content__figure {
    width: 100%;

    max-width: 100%;
  }

  .aboutus-main .fig-content__figure {
    max-width: 500px;
  }

  .b2c-main .fig-content__title,
  .aboutus-main .fig-content__title,
  .b2c-main .fig-content__dsc,
  .aboutus-main .fig-content__dsc {
    max-width: 650px;
  }

  .aboutus-main .intro-section .flex-ctr-spb,
  .aboutus-main .credibility .flex-ctr-spb,
  .aboutus-main .our-commitment .flex-ctr-spb {
    gap: 40px;
  }

  .fig-content__title {
    font-size: 42px;

    margin: 0 0 20px;
  }

  .aboutus-main .intro-section .fig-content__title {
    margin-bottom: 35px;
  }

  .fig-content__dsc {
    font-size: 20px;
  }

  .aboutus-main .intro-section .fig-content__dsc {
    margin-bottom: 20px;
  }

  .credibility .fig-content__dsc {
    font-size: 20px;

    max-width: 100%;
  }

  .fig-content__info {
    margin: 20px 0 0;
  }

  .fig-content__btn {
    margin-top: 40px;
  }

  .fig-content__list-item {
    font-size: 16px;
  }

  .fig-content__list {
    padding-top: 30px;
  }

  /*

.intro-section__bg {
  bottom: -230px;
}

  */
}

@media (max-width: 767px) {
  .intro-section {
    padding: 180px 0 70px;
  }

  .fig-content__title {
    font-size: 36px;
  }

  .fig-content__dsc {
    font-size: 18px;
  }

  .aboutus-main .intro-section .fig-content__dsc {
    font-size: 15px;
  }

  .fig-content__info {
    font-size: 15px;
  }

  .fig-content__btn,
  .our-commitment .fig-content__btn {
    margin-top: 30px;
  }

  .fig-content__list-item {
    margin: 0 0 12px;

    font-size: 15px;
  }
}

/* ****************************** */

/* ******* Our Commitments ****** */

/* ****************************** */

.our-commitments {
  padding: 85px 0 90px;

  position: relative;

  z-index: 1;
}

.our-commitments__header {
  text-align: center;
}

.our-commitments__cards {
  padding-top: 90px;

  gap: 24px;
}

.style02 .card {
  flex: 1;

  margin-top: 50px;

  padding: 0 40px 50px;

  border-radius: 32px;

  position: relative;

  text-align: center;

  z-index: 1;

  border: 1px solid transparent;
}

.style02 .card__icon {
  width: max-content;

  margin: -50px auto 30px;
}

.happy-clients .style02 .card__img {
  margin: -55px auto 25px;

  height: 110px;

  width: 110px;

  border-radius: 50%;

  overflow: hidden;
}

.happy-clients .style02 .card__img img {
  width: 100%;
}

.style02 .card .card__icon path,
.style02 .card .card__icon rect {
  transition: 0.8s;
}

.style02 .card:hover .card__icon path {
  fill: #021303;
}

.style02 .card:hover .card__icon rect {
  stroke: #021303;
}

.style02 .card:hover .card__icon .will-highlight {
  fill: #96fb4a;
}

.style02 .card__title {
  font-size: 24px;

  line-height: 1.3;

  font-weight: 700;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 15px;

  transition: 0.3s;
}

.style02 .card:hover .card__title {
  color: var(--primary-color);
}

.style02 .card__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  color: var(--gray-color);

  margin: 0;
}

.style02 .card__ratting {
  margin-bottom: 10px;
}

.card__qoute-icon {
  position: absolute;

  left: 48px;

  top: 38px;

  z-index: -1;
}

@media (max-width: 1200px) {
  .style02 .card:not(.happy-clients .style02 .card) {
    padding: 0 24px 24px;
  }

  .our-commitments__cards.style02.cards.flex-auto-spb {
    flex-wrap: wrap;

    justify-content: center;
  }

  .our-commitments__cards.style02 .card {
    min-width: 330px;

    max-width: 480px;
  }

  .our-commitments__cards .gradient-animated-border::before {
    height: 1200px;
  }
}

@media (max-width: 1023px) {
}

@media (max-width: 991px) {
  .our-commitments {
    padding: 70px 0;
  }

  .our-commitments__cards {
    padding-top: 70px;

    gap: 20px;
  }

  .style02 .card {
    margin-top: 50px;

    padding: 0 40px 50px;

    border-radius: 32px;
  }

  .style02 .card__title {
    font-size: 22px;
  }

  /*

.style02 .card__icon {
  margin: -50px 0 30px;
}

.happy-clients .style02 .card__img {
  margin: -55px auto 25px;

  height: 110px;

  width: 110px;
}

.card__qoute-icon {
  left: 48px;

  top: 38px;
}

  */
}

@media (max-width: 767px) {
  .style02 .card__title {
    font-size: 20px;
  }

  .style02 .card__dsc {
    font-size: 15px;
  }

  .style02 .card__icon {
    height: 80px;

    width: 80px;
  }
}

@media (max-width: 575px) {
  .our-commitments__cards.style02 .card {
    min-width: 300px;
  }

  .style02 .card:not(.happy-clients .style02 .card) {
    padding: 0 20px 20px;
  }
}

/* ****************************** */

/* ****** Why This Matters ****** */

/* ****************************** */

.wtm {
  padding: 90px 0;
}

.wtm__header {
  max-width: 530px;
}

.wtm__title {
  color: var(--primary-color);

  margin: 0 0 10px;
}

.wtm__subtitle {
  color: var(--light-color);

  margin: 0;
}

.wtm__cards {
  margin-top: 90px;

  padding: 60px;

  gap: 24px;

  border-radius: 32px;
}

.wtm__cards.gradient-bg::after {
  background-image: linear-gradient(#076f0c24, rgba(0, 0, 0, 0));
}

.wtm__cards .card {
  flex: 1;
}

.style03 .card {
  padding: 50px 40px;

  border-radius: 16px;

  position: relative;
}

.style03 .card .gradient-animated-border,
.style03 .card.gradient-bg::after {
  border-radius: 16px;
}

.style03 .card > .flex-ctr {
  gap: 20px;

  margin-bottom: 30px;
}

.style03 .card__icon {
  width: 70px;
}

.style03 .card__title {
  flex: 1;

  color: var(--light-color);

  font-size: 24px;

  line-height: 1.3;

  font-weight: 700;

  font-family: var(--global-font);

  transition: 0.3s;

  margin: 0;
}

.style03 .card:hover .card__title {
  color: var(--primary-color);
}

.style03 .card:hover .card__icon-bg {
  fill: #96fb4a;
}

.style03 .card:hover .card__icon {
  fill: #021303;
}

.style03 .card__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  margin: 0;

  color: var(--light-color);
}

@media (max-width: 1200px) {
}

@media (max-width: 1023px) {
  .wtm__cards {
    margin-top: 70px;

    padding: 30px;

    gap: 20px;
  }

  .style03 .card {
    padding: 24px;
  }

  .style03 .card > .flex-ctr {
    gap: 15px;

    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .wtm {
    padding: 70px 0;
  }

  .wtm__cards.cards.style03.flex-auto-spb {
    flex-wrap: wrap;
  }

  .wtm__cards.style03 .card {
    min-width: 365px;
  }

  .wtm__cards.style03 .gradient-animated-border::before {
    height: 1200px;
  }

  .style03 .card__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .wtm {
    padding: 50px 0;
  }

  .wtm__cards {
    margin-top: 50px;

    padding: 20px;
  }

  .style03 .card__title {
    font-size: 20px;
  }

  .style03 .card__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .wtm__cards.style03 .card {
    min-width: initial;
  }
}

@media (max-width: 400px) {
  .wtm__cards.style03 .card__row {
    flex-direction: column;

    align-items: flex-start;
  }
}

/* ****************************** */

/* ********** Contact Us ******** */

/* ************ signup ********** */

/* ********* Success Area ******* */

/* ****************************** */

.contact-us {
  padding: 365px 0 90px;
}

.signup,
.success-inner {
  margin: 0 auto;

  max-width: 720px;

  padding: 470px 0 180px;
}

.contact-us__inner,
.signup__inner,
.success-inner .container {
  padding: 40px;

  border-radius: 21px;

  gap: 40px;
}

.success-inner .container {
  padding: 60px 40px;
}

.contact-us__inner .gradient-bg::after,
.signup__inner .gradient-bg::after {
  background-image: linear-gradient(var(--black-color) 09, rgba(0, 0, 0, 0));
}

.contact-form,
.signup__form {
  flex: 1;

  padding: 40px;
}

.contact-form__title,
.signup__form__title {
  margin: 0 0 8px;
}

.signup__form__title,
.signup__form__dsc {
  text-align: center;
}

.contact-form__dsc,
.contact-info__dsc,
.signup__form__dsc {
  font-size: 16px;

  line-height: 1.3;

  font-weight: 400;

  color: var(--gray-color);

  margin: 0;
}

.contact-form__fields,
.form__fields {
  padding-top: 40px;
}

.form__fields-question,
.success-text {
  font-size: 20px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 500;

  color: var(--light-color);

  margin: 0 0 30px;
}

.step-buttons {
  display: flex;

  gap: 20px;
}

.step-item {
  padding: 5px;
}

.step-item label {
  font-size: 20px;

  color: #ffffff;

  margin-bottom: 20px;

  display: block;
}

.success-text {
  text-align: center;

  line-height: 1.5;

  margin: 0;
}

.form__fields-group {
  gap: 15px;

  margin-bottom: 35px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.form__fields-group .form__field {
  flex: 1;

  margin: 0 !important;
}

.form__fields-group .form__input {
  display: none;
}

.form__fields-group .form__field label {
  text-align: center;

  padding: 15px 10px;

  font-size: 17px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 500;

  color: var(--light-color);

  width: 100%;

  height: 100%;

  cursor: pointer;

  transition: 0.3s;

  border-radius: 7px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.form__fields-group .form__field .form__input:checked + label {
  background-color: var(--primary-color);

  color: var(--black-color);
}

.form__field {
  position: relative;

  border-radius: 8px;

  border: 1px solid transparent;
}

.form__field .gradient-animated-border {
  border-radius: 8px;
}

.form__row {
  gap: 14px;
}

.form__row .form__field {
  flex: 1;

  max-width: 50%;
}

.form__field:not(:last-child),
.form__row .form__field:last-child {
  margin-bottom: 20px;
}

.form__input,
.form__textarea {
  font-size: 16px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  background-color: var(--dark-green-color);

  padding: 15px 20px;

  width: 100%;

  border-radius: 8px;

  border: 1px solid transparent;

  outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--light-color);

  opacity: 0.6;
}

.form__textarea {
  height: 110px;

  resize: none;
}

.form__submit-btn {
  width: 100%;

  transition: 0.3s;
}

.contact-info {
  width: 485px;

  position: relative;

  z-index: 1;

  padding: 20px;
}

.contact-info__bg {
  position: absolute;

  height: 100%;

  width: 100%;

  overflow: hidden;

  top: 0;

  left: 0;

  z-index: -1;

  border-radius: 16px;
}

.contact-info__bg img {
  height: 100%;

  width: 100%;

  object-fit: cover;
}

.contact-info__inner {
  max-width: 300px;
}

.contact-info__title {
  font-size: 24px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 5px;
}

.contact-info__list {
  padding-top: 40px;
}

.contact-info__list .flex-ctr {
  gap: 20px;
}

.contact-info__list li:not(:last-child) {
  margin-bottom: 20px;
}

.contact-info__link {
  display: inline-flex;
}

.contact-info__link-icon {
  width: 24px;
}

.contact-info__link-text {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  margin: 0;

  color: var(--light-color);

  flex: 1;

  transition: 0.3s;
}

.contact-info__link:hover .contact-info__link-text {
  color: var(--primary-color);
}

.contact-info__map {
  margin-top: 40px;

  border-radius: 8px;

  overflow: hidden;
}

.contact-info__map iframe {
  width: 100%;

  height: 260px;

  vertical-align: middle;
}

@media (max-width: 1200px) {
  .contact-us,
  .signup,
  .success-inner {
    padding: 250px 20px 90px;
  }

  .contact-us__inner,
  .signup__inner,
  .success-inner .container {
    padding: 30px;

    gap: 20px;
  }

  .contact-form,
  .signup__form {
    padding: 20px 30px;
  }

  .contact-info {
    width: 380px;
  }
}

@media (max-width: 1023px) {
  .contact-us,
  .signup,
  .success-inner {
    padding: 220px 15px 70px;
  }
}

@media (max-width: 991px) {
  .contact-form__fields {
    padding-top: 30px;
  }

  .success-text {
    font-size: 17px;
  }

  .contact-us__inner,
  .signup__inner {
    flex-direction: column;
  }

  .contact-form,
  .signup__form {
    padding-inline: 0;
  }

  .contact-info {
    width: 100%;

    padding: 30px 40px;

    justify-content: flex-start;
  }

  .form__fields-question,
  .success-text {
    font-size: 18px;

    margin: 0 0 12px;
  }

  .form__fields-group .form__field label {
    padding: 12px 10px;

    font-size: 18px;
  }

  /*

.signup {
  margin: 0 auto;

  max-width: 720px;
}

.contact-form__dsc,

.contact-info__dsc,

.signup__form__dsc {
  font-size: 16px;
}

.form__row .form__field {
  flex: 1;

  max-width: 50%;
}

.form__field:not(:last-child),

.form__row .form__field:last-child {
  margin-bottom: 20px;
}

.form__input,

.form__textarea {
  font-size: 16px;

  padding: 15px 20px;
}

.form__textarea {
  height: 110px;
}

.contact-info__inner {
  max-width: 300px;
}

.contact-info__title {
  font-size: 24px;
}

.contact-info__list {
  padding-top: 40px;
}

.contact-info__list .flex-ctr {
  gap: 20px;
}

.contact-info__list li:not(:last-child) {
  margin-bottom: 20px;
}

.contact-info__link-icon {
  width: 24px;
}

.contact-info__link-text {
  font-size: 16px;
}

.contact-info__map {
  margin-top: 40px;
}

.contact-info__map iframe {
  width: 100%;

  height: 260px;
}

  */
}

@media (max-width: 767px) {
  .contact-info {
    padding: 30px 20px;
  }

  .form__fields-question,
  .success-text {
    font-size: 16px;
  }

  .form__fields-group .form__field label {
    padding: 10px;

    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .contact-us__inner,
  .signup__inner,
  .success-inner .container {
    padding: 20px;
  }

  .form__input,
  .form__textarea {
    padding: 15px;
  }

  .form__fields-question,
  .success-text .form__fields-group .form__field label {
    font-size: 15px;

    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .contact-us,
  .signup,
  .success-inner {
    padding: 180px 15px 50px;
  }

  .form__row.flex-ctr-spb {
    flex-direction: column;

    gap: 0;
  }

  .form__row .form__field {
    max-width: 100%;

    width: 100%;
  }
}

/* ****************************** */

/* ********* Get in Tuch ******** */

/* ****************************** */

.git {
  padding: 90px 0;

  position: relative;
}

.git__header {
  padding: 25px 50px;

  width: 670px;

  max-width: 100%;

  margin: 0 auto;

  text-align: center;

  background-color: var(--primary-color);

  border-radius: 8px;
}

.git__title {
  font-size: 21px;

  font-weight: 700;

  color: var(--dark-green-color);

  font-family: var(--global-font);

  line-height: 1.2;

  margin: 0;
}

.git__cards {
  padding-top: 60px;

  gap: 24px;
}

.git .card {
  flex: 1;

  padding: 50px;

  position: relative;

  display: flex;

  justify-content: center;
}

.git .card__label {
  font-size: 24px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0 0 30px;

  text-align: center;
}

.git__contact-list li:not(:last-child) {
  margin: 0 0 15px;
}

.git__contact-link {
  gap: 15px;

  font-size: 18px;

  line-height: 1.3;

  font-family: var(--global-font);

  color: var(--light-color);

  display: inline-flex;

  transition: 0.3s;
}

.git__contact-link:hover {
  color: var(--primary-color);
}

.git__contact-link__icon {
  width: 24px;
}

@media (max-width: 1200px) {
  .git__header {
    padding: 20px 50px;
  }

  .git .card {
    padding: 40px;
  }
}

@media (max-width: 1080px) {
  .git__cards {
    padding-top: 40px;

    gap: 20px;

    flex-wrap: wrap;

    justify-content: center;
  }

  .git .card {
    max-width: 480px;
  }
}

@media (max-width: 991px) {
  .git {
    padding: 70px 0;
  }

  .git__title {
    font-size: 20px;
  }

  .git .card__label {
    font-size: 22px;
  }

  .git__contact-link {
    gap: 10px;

    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .git {
    padding: 50px 0;
  }

  .git__title {
    font-size: 18px;
  }

  .git .card {
    padding: 30px;
  }

  .git .card__label {
    font-size: 20px;

    margin: 0 0 20px;
  }

  .form__fields-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .form__fields-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*

@media (max-width: 400px) {
  .form__fields-group {
    grid-template-columns: 1fr;
  }
} */

/* ****************************** */

/* ************ Stats *********** */

/* ****************************** */

.stats {
  padding: 110px 0 100px;
}

.stats .flex-ctr-ctr {
  gap: 100px;
}

.stats__item {
  text-align: center;
}

.stats__item__main-text {
  font-size: 64px;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--primary-color);

  margin: 0 0 5px;

  font-weight: 700;
}

.stats__item__label {
  font-size: 21px;

  color: var(--light-color);

  font-weight: 500;

  line-height: 1.4;

  margin: 0;
}

@media (max-width: 991px) {
  .stats {
    padding: 70px 0;
  }

  .stats .flex-ctr-ctr {
    gap: 70px;

    flex-wrap: wrap;
  }

  .stats__item__main-text {
    font-size: 56px;
  }

  .stats__item__label {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .stats {
    padding: 50px 0;
  }

  .stats .flex-ctr-ctr {
    gap: 50px;
  }

  .stats__item__main-text {
    font-size: 45px;
  }

  .stats__item__label {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .stats__item__main-text {
    font-size: 38px;
  }

  .stats__item__label {
    font-size: 16px;
  }
}

/* ****************************** */

/* ***** Horizontal polygon ***** */

/* ****************************** */

.hor-playgon {
  padding: 110px 0 90px;
}

.hor-playgon .flex-ctr-spb {
  gap: 160px;
}

.hor-playgon__title {
  font-size: 48px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 30px;
}

.hor-playgon__dsc {
  font-size: 24px;

  line-height: 1.5;

  font-weight: 500;

  color: var(--gray-color);

  margin: 0 0 30px;
}

.hor-playgon__info {
  font-size: 16px;

  line-height: 1.4;

  font-weight: 400;

  margin: 0;

  color: var(--gray-color);
}

.hor-playgon__context,
.hor-playgon__form {
  flex: 1;

  max-width: 50%;
}

.hor-playgon__form-field {
  margin-bottom: 40px;
}

.hor-playgon__form-range {
  width: 100%;

  height: 5px;

  /* appearance: none; */

  -webkit-appearance: none;

  background: var(--primary-color);

  border-radius: 3px;
}

.hor-playgon__form-range::-moz-range-track {
  background: var(--primary-color);

  border: 0;
}

.hor-playgon__form-range::-webkit-slider-thumb {
  appearance: none;

  background-color: var(--primary-color);

  height: 20px;

  width: 20px;

  cursor: pointer;

  border-radius: 50%;

  border: 2px solid var(--dark-color);
}

.hor-playgon__form-label {
  font-size: 24px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--light-color);

  margin: 0 0 15px;
}

.hor-playgon__form-label span {
  font-size: 21px;
}

.hor-playgon__form-label span.text {
  font-size: 16px;

  font-weight: 400;

  color: var(--gray-color);
}

.hor-playgon__subtotal {
  gap: 15px;
}

.hor-playgon__subtotal-text {
  font-size: 18px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 500;

  color: var(--light-color);

  margin: 0;
}

.hor-playgon__subtotal-amount {
  font-size: 48px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 700;

  margin: 0;

  color: var(--primary-color);
}

@media (max-width: 1280px) {
  .hor-playgon .flex-ctr-spb {
    gap: 100px;
  }
}

@media (max-width: 1180px) {
  .hor-playgon .flex-ctr-spb {
    gap: 50px;
  }

  .hor-playgon__title,
  .hor-playgon__subtotal-amount {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hor-playgon__title,
  .hor-playgon__subtotal-amount {
    font-size: 38px;
  }

  .hor-playgon__dsc,
  .hor-playgon__form-label {
    font-size: 20px;
  }

  .hor-playgon__form-label span {
    font-size: 20px;
  }

  .hor-playgon {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .hor-playgon__title,
  .hor-playgon__subtotal-amount {
    font-size: 34px;
  }

  .hor-playgon > .flex-ctr-spb {
    gap: 50px;

    flex-direction: column;

    align-items: flex-start;
  }

  .hor-playgon__context,
  .hor-playgon__form {
    max-width: 100%;

    width: 100%;
  }

  .hor-playgon__dsc,
  .hor-playgon__form-label,
  .hor-playgon__form-label span {
    font-size: 18px;
  }

  .hor-playgon__subtotal-text {
    font-size: 16px;
  }

  .hor-playgon {
    padding: 70px 0;
  }

  .hor-playgon__info,
  .hor-playgon__form-label span.text {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .hor-playgon__dsc,
  .hor-playgon__form-label {
    font-size: 18px;
  }

  .hor-playgon__dsc,
  .hor-playgon__form-label,
  .hor-playgon__form-label span {
    font-size: 16px;
  }

  .hor-playgon__subtotal-text {
    font-size: 15px;
  }
}

/* ****************************** */

/* ******* Explore Furthe ******* */

/* ****************************** */

.explore-further {
  padding: 90px 0;
}

.explore-further__title {
  font-size: 36px;

  font-weight: 700;

  line-height: 1.2;

  font-family: var(--global-font);

  color: var(--light-color);

  margin: 0;

  text-align: center;
}

.explore-further__fig-content-wrap {
  padding-top: 90px;

  gap: 55px;
}

.explore-further .fig-content .fig-content__figure {
  max-width: 190px;
}

.explore-further .fig-content .fig-content__figure img {
  width: 100%;
}

.explore-further .fig-content {
  gap: 30px;
}

.explore-further .fig-content__context {
  flex: 1;

  max-width: initial;
}

.explore-further .fig-content__title {
  font-size: 21px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  margin: 0 0 15px;

  color: var(--light-color);
}

.explore-further .fig-content__dsc {
  font-size: 16px;

  line-height: 1.5;

  font-weight: 400;

  margin: 0;

  color: var(--gray-color);
}

.explore-further .fig-content__link {
  display: inline-block;

  margin-top: 30px;

  font-size: 16px;

  line-height: 1.2;

  font-family: var(--global-font);

  font-weight: 400;

  color: var(--primary-color);
}

@media (max-width: 1080px) {
  .explore-further__fig-content-wrap {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .explore-further {
    padding: 70px 0;
  }

  .explore-further__title {
    font-size: 32px;
  }

  .explore-further__fig-content-wrap {
    padding-top: 70px;

    gap: 40px;
  }

  .explore-further .fig-content__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .explore-further {
    padding: 50px 0;
  }

  .explore-further__title {
    font-size: 28px;
  }

  .explore-further__fig-content-wrap {
    padding-top: 50px;

    gap: 30px;
  }

  .explore-further .fig-content {
    gap: 20px;
  }

  .explore-further .fig-content__title {
    font-size: 18px;

    margin: 0 0 10px;
  }

  .explore-further .fig-content__link {
    margin-top: 15px;

    font-size: 15px;
  }

  .explore-further .fig-content__dsc {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .explore-further .fig-content .fig-content__figure {
    max-width: 120px;
  }
}

/* ****************************** */

/* ******** Credibility ********* */

/* ******* our-commitment ******* */

/* ****************************** */

.credibility,
.our-commitment {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .credibility,
  .our-commitment {
    padding: 70px 0;
  }
}

@media (max-width: 767px) {
  .credibility,
  .our-commitment {
    padding: 50px 0;
  }
}

/* ****************************** */

/* ******* Happy Clients ******** */

/* ****************************** */

.happy-clients {
  padding: 90px 0;
}

.happy-clients__header {
  gap: 50px;
}

.happy-clients__main-title {
  font-size: 48px;

  line-height: 1.3;

  font-family: var(--global-font);

  font-weight: 700;

  color: var(--primary-color);

  margin: 0 0 8px;
}

.happy-clients__sub-title {
  font-size: 18px;

  line-height: 1.5;

  font-weight: 500;

  color: var(--light-color);

  margin: 0;
}

.happy-clients__slide-triggers {
  gap: 20px;
}

.slide-trigger {
  cursor: pointer;
}

.slide-trigger:hover rect {
  fill: var(--primary-color);
}

.happy-clients__cards {
  padding-top: 90px;

  width: 93vw;
}

.happy-clients .card {
  border-radius: 16px;

  margin: 55px 24px 0 0;
}

.happy-clients .gradient-animated-border,
.happy-clients .gradient-bg::after {
  border-radius: 16px;
}

.happy-clients .card__title {
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .happy-clients__cards {
    width: 100vw;
  }
}

@media (max-width: 1200px) {
  .card__qoute-icon svg {
    width: 55px;

    height: 45px;
  }
}

@media (max-width: 1080px) {
  .happy-clients .style02 .card {
    padding: 0 24px 24px;
  }

  .happy-clients .card {
    margin: 40px 15px 0 0;
  }

  .happy-clients .style02 .card__img {
    height: 70px;

    width: 70px;

    margin: -40px auto 20px;
  }

  .happy-clients__cards {
    padding-top: 70px;
  }
}

@media (max-width: 991px) {
  happy-clients .happy-clients__header {
    gap: 30px;
  }

  .happy-clients__main-title {
    font-size: 42px;
  }

  .happy-clients__sub-title {
    font-size: 16px;
  }

  .happy-clients__slide-triggers {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .happy-clients__main-title {
    font-size: 36px;
  }

  .happy-clients__sub-title {
    font-size: 15px;
  }

  .happy-clients__cards {
    width: 120vw;
  }

  .happy-clients__slide-triggers {
    display: none;
  }

  .happy-clients__cards {
    padding-top: 50px;
  }
}

@media (max-width: 575px) {
  .happy-clients__cards {
    width: 150vw;
  }

  .card__qoute-icon {
    top: 30px;

    left: 30px;
  }
}

@media (max-width: 400px) {
  .happy-clients__cards {
    width: 170vw;
  }
}

/* draw Wave */

.wave-left,
.wave-right,
.bg-wave {
  position: relative;

  z-index: 1;
}

.wave-left::before {
  content: url(../imgs/wave-left.svg);

  position: absolute;

  left: 0;

  top: 60%;

  z-index: -9;
}

.wave-right::after {
  content: url(../imgs/wave-right.svg);

  position: absolute;

  right: 0;

  top: 60%;

  z-index: -9;
}

.wtm.wave-left::before {
  top: 45%;
}

.our-commitments.wave-right::after {
  top: 55%;
}

.contactus-main .faq.wave-right::after,
.signup-main .faq.wave-right::after {
  top: 20%;
}

.bg-wave::after {
  position: absolute;

  content: url(../imgs/trusted-clients.svg);

  left: 0;

  top: 50%;

  transform: translateY(-50%);

  z-index: -1;
}

/* ****************************** */

/* ******* Dev Spotlight ******** */

/* ****************************** */

.devspotlight_title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--black-color);
  margin: 0 0 10px;
  max-width: 500px;
}

.devspotlight-main .hero {
  position: relative;
  z-index: 1;
  margin-top: -205px;
}

.devspotlight__banner {
  position: relative;
  background-image: linear-gradient(
      to right,
      rgba(150, 251, 74, 4.7) 0%,
      rgba(150, 251, 74, 1.5) 17%,
      rgba(0, 0, 0, 0.1) 65%
    ),
    url("../imgs/Aanal-Patel-banner.png");
  background-position: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--black-color);
  width: 100%;
  height: 80%;
  margin: 0 auto;
  /* padding-top: 345px; */
  padding-top: 250px;
  padding-left: 40px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.devspotlight__banner .container {
  padding-left: 10rem;
  padding-right: 15rem;
  margin-top: -5rem;
  width: clamp(320px, 96%, 1280px);
  height: calc(100% - 309px);
}

.devspotlight-badge {
  width: 230px;
  z-index: 3;
}

.devspotlight-main a {
  color: #58ba0e;
}

.linkedin-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.devspotlight__banner p:not(.section-title) {
  color: var(--black-color);
  font-size: 20px;
}

.devspotlight__banner .section-title {
  color: var(--black-color);
  font-size: 24px;
  margin-bottom: -10px;
}

.devspotlight-main .hero p {
  max-width: 60ch;
}

.devspotlight__banner .post-date {
  font-size: 20px;
}

@media (max-width: 991px) {
  .devspotlight_title {
    font-size: 42px;
  }

  .devspotlight__banner p:not(.section-title) {
    font-size: 16px;
  }

  .devspotlight__banner .post-date {
    font-size: 14px;
  }

  .devspotlight__banner .container {
    padding-left: 0;
    padding-right: 0;
    margin-top: -5rem;
    width: clamp(320px, 96%, 1280px);
    height: auto;
  }
}

@media (max-width: 767px) {
  .devspotlight__banner {
    background-image: url("../imgs/Aanal-Patel-banner.png");
    background-position: 85%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-left: 30px;
    padding-bottom: 70px;
    height: 100%;
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .devspotlight__banner__content {
    margin: 181px 1px 19px;
  }

  .devspotlight_title {
    padding-top: 0px;
  }

  .devspotlight-badge {
    width: 100px;
    z-index: 3;
  }

  .devspotlight_title {
    font-size: 32px;
  }

  .devspotlight__banner p:not(.section-title) {
    font-size: 16px;
  }

  .devspotlight__banner .post-date {
    font-size: 16px;
  }
}

@media (max-width: 580px) {
  .devspotlight-main .hero-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .devspotlight__banner {
    background-image: url("../imgs/Aanal-Patel-banner.png");
    background-position: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
    height: 100vh;
    width: 100%;
    margin: 0;
  }

  .devspotlight_title {
    margin: 41px 1px 19px;
  }

  .devspotlight_title,
  .devspotlight__banner .section-title,
  .devspotlight-main a {
    color: var(--light-color);
  }
}

.developer-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--black-color);
  padding: 20px;
  color: var(--light-color);
  border-radius: 8px;
}

.developer-section h1 {
  color: var(--light-color);
}

.developer-section h2 {
  color: var(--primary-color);
}

.developer-section p.question {
  font-size: 20px;
  color: var(--primary-color);
}

.developer-section p.answer {
  font-style: italic;
}

.developer-section p,
h4 {
  line-height: 1.6;
  margin-bottom: 20px;
}

.developer-section hr {
  border: none;
  height: 1px;
  background-image: linear-gradient(
    to right,
    #97fb4a00,
    var(--primary-color),
    #97fb4a00
  );
  margin: 3rem 0;
  width: 100%;
}

.developer-section .quote {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.2;
  font-style: italic;
}

/* ****************************** */
/* ******* Blog Section ********* */
/* ****************************** */

.dev__blog__info {
  color: var(--primary-color);
  text-align: center;
}

.blog__post__container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  width: 100%;
}

.dev__blog__info hr {
  border: none;
  height: 1px;
  background-image: linear-gradient(
    to right,
    #97fb4a00,
    var(--primary-color),
    #97fb4a00
  );
  margin: 3rem 0;
  width: 100%;
}

.blog__post__container h3 {
  color: #ffffff;
}

.blog__post__container img {
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.blog__post__container p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--gray-color);
  align-items: left;
}

.blog__post__item {
  width: calc((100% - 2rem) / 2);
}

.blog__post__item:hover h3 {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .blog__post__container {
    flex-direction: column;
  }

  .blog__post__item {
    width: 100%;
  }
}

/* ****************************** */
/* ******* Developer pages ********* */
/* ****************************** */

.dev_blog__banner {
  position: relative;
  background-image: linear-gradient(
    to right,
    rgba(150, 251, 74, 4.7) 0%,
    rgba(150, 251, 74, 1.5) 17%,
    rgba(0, 0, 0, 0.1) 65%
  );
  background-position: 80%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--black-color);
  width: 100%;
  height: 80%;
  margin: 0 auto;
  padding-top: 320px;
  padding-left: 40px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.Payal-banner {
  background-image: url("../imgs/Payal-Sarang-banner.webp");
}

.Dharani-banner {
  background-image: url("../imgs/Dharani _ Background _ Developer Spotlight.webp");
}

.Mohammad-banner {
  background-image: url("../imgs/Mohammad_Background_Developer_Spotlight.png");
}

.Anirudh-banner {
  background-image: url("../imgs/Anirudh-banner-image.png");
}

.dev_blog__banner .section-title,
.section-content {
  color: var(--black-color);
}

@media (max-width: 767px) {
  .dev_blog__banner {
    background-position: 85%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 150px;
    padding-left: 30px;
    padding-bottom: 70px;
    height: 100%;
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .devspotlight__banner__content {
    margin: 181px 1px 19px;
  }

  .devspotlight_title {
    padding-top: 0px;
    font-size: 32px;
  }

  .devspotlight-badge {
    width: 100px;
    z-index: 3;
  }

  .dev_blog__banner p:not(.section-title) {
    font-size: 16px;
  }

  .dev_blog__banner .post-date {
    font-size: 16px;
  }

  .dev_blog__banner .section-title {
    color: var(--black-color);
  }
}

@media (max-width: 580px) {
  .devspotlight-main .hero-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dev_blog__banner {
    background-position: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.7;
    height: 100vh;
    width: 100%;
    margin: 0;
  }

  .devspotlight_title {
    margin: 41px 1px 19px;
  }

  .devspotlight_title,
  .dev_blog__banner .section-title,
  .devspotlight-main a {
    color: var(--light-color);
  }
}

/* ******************************** */

/* ********** Account-deletion *********** */

/* ******************************** */

.account-deletion-container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  padding-top: 20px;
}

.account-deletion-container .sidebar {
  width: 300px;
  top: 20px;
  flex-shrink: 0;
  padding: 20px;
  background-color: var(--black-color);
  height: auto;
  box-shadow: 1px 0 5px rgba(135, 231, 71, 0.1);
}

.account-deletion-container .sidebar h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.account-deletion-container .sidebar a {
  display: block;
  padding: 10px 15px;
  color: var(--light-color);
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}

.account-deletion-container .sidebar a:hover {
  background-color: var(--dark-green-color);
  color: var(--primary-color);
}

.account-deletion-container .sidebar a.active {
  background-color: var(--dark-green-color);
  font-weight: bold;
  color: var(--primary-color);
}

.account-deletion-container .content {
  flex-grow: 1;
  padding: 20px;
  margin-left: 20px;
  background-color: var(--black-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.account-deletion-container .content h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.account-deletion-container li {
  color: var(--light-color);
}

.account-deletion-container .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--light-color);
}

.account-deletion-container section {
  margin-bottom: 50px;
}

.account-deletion-container .content p.sub-title {
  font-weight: bold;
  color: var(--primary-color);
}

.account-deletion-container ul {
  list-style: none;
  padding-left: 20px;
  margin-left: 0;
}

.account-deletion-container li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
}

.account-deletion-container li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--light-color);
  font-size: 20px;
  line-height: 20px;
}

.document-section {
  margin-bottom: 20px;
  margin-left: 50px;
}

.document-title {
  color: var(--primary-color);
  font-size: 28px;
}

.document-section p {
  color: var(--gray-color);
}

@media (max-width: 768px) {
  .account-deletion-container {
    flex-direction: column;
  }

  .account-deletion-container .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .account-deletion-container .content {
    margin-left: 0;
  }

  .document-title {
    margin-left: 25px;
    margin: 20px 0;
    padding-top: 100px;
  }
}

.alert-danger {
  border: 1px solid red;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
}

.alert-danger ul li {
  color: red;
  font-size: 14px;
  font-weight: 300;
  margin: 0 0 6px;
}
