:root,
[data-bs-theme="light"] {
  --bs-primary: #ec2323;
}

:root {
  --primary: #ec2323;
  --secondary: red;
  --white: #fff;
  --lightGray1: #d5d5d5;
  --light-bg-1: #ebebeb;
  --dark1: rgb(41, 41, 41);
  --transition1: all 0.3s cubic-bezier(0.21, 0.53, 0.37, 0.72);
}

html {
  scroll-behavior: auto !important;
  accent-color: #ec2323;
}

dl,
ol,
ul {
  margin: 0rem;
  padding: 0px;
}

.btn-primary {
  background-color: var(--primary);
  color: rgb(255, 255, 255);
  border-color: var(--primary);
  border-radius: 4px;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:focus {
  background-color: rgb(34, 34, 34) !important;
  color: rgb(255, 255, 255) !important;
  border-color: rgb(34, 34, 34) !important;
}

@keyframes fixedAnim {
  0% {
    top: -150px;
  }

  100% {
    top: 0px;
  }
}

.offcanvas>img,
.offcanvas .footer-icon {
  display: none !important;
}

:focus,
a:focus,
button:focus {
  outline: 0px !important;
  box-shadow: none !important;
}

a *,
a {
  transition: 0.15s linear;
}

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

.list-inline a,
a.nav-link {
  position: relative;
}

.right-nav a {
  color: rgb(255, 255, 255);
}

.list-inline a::before,
a.nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -3px;
  left: 0px;
  background-color: rgb(255, 255, 255);
  transform-origin: right bottom;
  transition: transform 0.25s ease-out;
  z-index: 1;
}

.list-inline a:hover::before,
a.nav-link:hover::before,
a.nav-link.active::before {
  transform: scaleX(1);
  transform-origin: left bottom;
}

a.nav-link::before {
  background-color: var(--cris1);
}

.right-nav a::before {
  display: none;
}

.gray-1 {
  background-color: var(--gray1);
}

.relative {
  position: relative;
}

:focus {
  outline: 0px;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.dropdown-toggle::after {
  border-width: 0px 0px 1px 1px;
  border-top-style: initial;
  border-top-color: initial;
  border-right-style: initial;
  border-right-color: initial;
  border-left-style: solid;
  border-left-color: rgb(0, 0, 0);
  border-bottom-style: solid;
  border-bottom-color: rgb(0, 0, 0);
  width: 7px;
  height: 7px;
  transform: rotate(-45deg);
}

header {
  position: absolute;
  z-index: 22;
  background: var(--dark1);
  top: 0px;
  right: 0px;
  left: 0px;
}

header ul:not(.right-nav) .nav-link {
  margin-inline: 10px;
  padding-inline: 0px !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary);
}

.banner-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.pricing-banner-bg {
  background-color: rgba(225, 225, 225);
}

.pricing-banner-bg .banner {
  color: rgb(33, 37, 41);
}

header.fixed+main {
  margin-top: 50px;
}

header.fixed+main .banner-container {
  top: 0px;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  inset: 0px;
  z-index: -1;
}

.banner-image img {
  object-fit: cover;
  object-position: 50% center;
  width: 100%;
  height: 100%;
}

.d-home {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: scale(1, -1);
}

.d-home-feature {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: scale(1, 1);
  background-color: #fff;
}

.d-home svg {
  height: 100%;
  width: 100%;
  fill: rgb(225, 225, 225);
}

.d-home-feature svg {
  height: 100%;
  width: 100%;
}

.underbanner svg {
  fill: rgb(225, 225, 225);
}

/* .navbar-nav .nav-link.show,
header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link:focus {} */

nav.navbar {
  padding-block: 5px;
}

/* nav.navbar>div {} */

.navbar-brand {
  width: 110px;
  padding-block: 6px;
  display: flex;
}

.navbar-brand img {
  width: auto;
  max-height: 24px;
}

header.fixed {
  animation-timing-function: cubic-bezier(0.78, 0.09, 0.03, 1.01);
  animation-name: fixedAnim;
  animation-duration: 1s;
  z-index: 99999;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 5px 16px;
  position: fixed !important;
}

header.fixed+main {
  margin-top: 64px;
}

.right-nav {
  align-items: center;
  flex-direction: row;
}

.language a {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 60px;
  display: flex;
  margin-inline-start: 10px;
  font-size: 98%;
  font-weight: 600;
  padding: 2px 24px !important;
}

.language a:hover,
.language a:focus {
  background-color: var(--primary);
  color: var(--white) !important;
}

.footer-logo img {
  width: 150px;
}

#footer {
  background: var(--dark1);
  color: var(--lightGray1);
  font-size: 16px;
  text-align: start;
  padding: 2px 0px 20px;
  position: relative;
  margin-top: -1px;
}

#footer .list-inline {
  padding-right: 0px;
}

.footer-logo {
  display: flex;
  margin-bottom: 16px;
}

.footer-about {
  text-align: justify;
  padding-inline-end: 10px;
}

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  height: 260px;
  z-index: -1;
  top: -200px;
}

[dir="rtl"] .footer-logo {
  justify-content: start;
}

#footer .logo img {
  width: 150px;
}

#footer .footer-head {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 22px;
  font-weight: 500;
}

#footer .footer-head2 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 500;
}

#footer a,
#footer p {
  color: var(--lightGray1);
  font-size: 16px;
  margin-bottom: 12px;
  display: inline-flex;
}

#footer button {
  border: 0px;
  border-radius: 8px;
  background-color: rgba(247, 247, 247, 0.04);
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  width: 100%;
  gap: 10px;
  text-align: start;
  padding: 5px 15px;
  transition: 0.2s;
}

#footer button:hover {
  background-color: rgba(247, 247, 247, 0.12);
}

#footer button i {
  color: var(--white);
}

#footer button div i {
  font-size: 18px;
  color: var(--primary);
}

#footer button span {
  font-size: 12px;
  margin-bottom: 0px;
  line-height: 10px;
  display: block;
  color: rgb(255, 255, 255);
}

#footer button p {
  font-size: 15px;
  margin-bottom: 0px;
  color: rgb(255, 255, 255);
}

#footer h6 {
  font-size: 12px;
  font-weight: 100;
}

#footer .footer-icon {
  gap: 10px;
  margin-top: 20px;
}

.offcanvas .footer-icon a i,
#footer .footer-icon a i {
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.offcanvas .footer-icon a i {
  color: var(--blue1);
}

#footer .footer-icon a {
  margin-bottom: 0px;
}

.offcanvas .footer-icon a,
#footer .footer-icon a {
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  margin-inline: 2px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

#footer .footer-icon a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: rgb(17, 17, 17);
}

#footer .footer-icon a:hover i {
  color: var(--cris1);
}

.offcanvas .footer-icon a {
  border: 1px solid var(--blue1);
}

.nav-tools-right {
  display: flex;
  justify-content: flex-end;
}

@media only screen and (min-width: 992px) {
  .offcanvas-body>.navbar-nav {
    width: calc(50% + 55px);
  }

  .offcanvas-body>.nav-tools-right {
    width: calc(50% - 55px);
  }
}

@media only screen and (max-width: 991px) {
  .offcanvas .offcanvas-body {
    opacity: 0;
    transform: translate(10px, 0px);
    transition: 0.6s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
  }

  .offcanvas.show .offcanvas-body {
    opacity: 1;
    transform: translate(0px, 0px);
    transition-delay: 0.5s;
  }

  .offcanvas .offcanvas-header img {
    transform: translate(10px, 0px) scale(1.2);
    opacity: 0;
    width: 150px;
    transition: 0.6s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
  }

  .offcanvas.show .offcanvas-header img {
    transform: translate(0px, 0px) scale(1);
    opacity: 1;
  }

  .offcanvas>img {
    transform: scale(1.5);
    opacity: 0;
    transition: 1s cubic-bezier(0.29, 0.49, 0.25, 0.97) 0.3s;
  }

  .offcanvas.show>img {
    transform: scale(1);
    opacity: 0.15;
    transition-delay: 0.5s;
  }

  #footer .logo img {
    background: rgb(255, 255, 255);
    width: 160px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(255, 255, 255, 0.06) 0px 0px 0px 4px;
    border: 0px;
  }

  #footer .logo {
    margin-bottom: 35px;
  }

  #footer .footer-icon {
    margin-top: 8px;
  }

  .offcanvas {
    background-color: var(--dark1);
  }

  .offcanvas .nav-link {
    border-bottom: 0px;
    font-weight: 500;
    color: var(--blue1) !important;
  }

  .offcanvas ul:first-child .nav-link::before {
    display: none;
  }

  .offcanvas ul:first-child .nav-link {
    border-inline-start: 4px solid rgb(219, 219, 219);
    margin-inline-start: 0px;
    background: rgba(255, 255, 255, 0.46);
    padding-inline-start: 10px !important;
  }

  .offcanvas ul:first-child .nav-link.active {
    border-color: var(--cris1);
  }

  .offcanvas ul:first-child>li {
    margin-bottom: 10px;
  }

  .offcanvas .language a:hover,
  .offcanvas .language a:focus {
    color: rgb(255, 255, 255) !important;
  }

  .offcanvas .nav-link:focus,
  .offcanvas .nav-link:hover {
    color: var(--cris1) !important;
  }

  .offcanvas-body {
    display: flex;
    flex-direction: column-reverse;
    flex-grow: inherit;
    height: 100%;
  }

  .offcanvas-body>* {
    justify-content: start !important;
  }

  .offcanvas-body>.right-nav {
    display: flex;
    flex-direction: row;
    margin-bottom: 15px;
    margin-top: 20px;
    border-bottom: 1px solid rgb(223, 223, 223);
    padding-bottom: 20px;
    justify-content: space-between !important;
    flex-grow: revert !important;
  }

  .offcanvas-body .right-nav a {
    border-bottom: 0px;
    color: rgb(255, 255, 255) !important;
  }

  .offcanvas>img,
  .offcanvas .footer-icon {
    display: flex !important;
  }

  .offcanvas .footer-icon {
    margin-block: auto 8%;
    display: flex;
    order: -10 !important;
    justify-content: center !important;
  }

  .offcanvas>img {
    position: absolute;
    right: 15px;
    z-index: -5;
    bottom: 80px;
  }
}

@media only screen and (max-width: 575px) {
  .navbar-brand {
    width: 110px;
    padding-block: 8px;
  }
}

.accordion-button:not(.collapsed) {
  color: rgb(255, 255, 255);
  background-color: var(--dark1);
  box-shadow: none;
  border-radius: 0px !important;
}

.accordion-button.collapsed::after,
.accordion-button:not(.collapsed)::after {
  background-position: 50% center;
  border-radius: 500px;
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.section-faq .accordion {
  display: flex;
  flex-wrap: wrap;
  place-content: flex-start space-between;
  align-items: flex-start;
}

.section-faq .accordion>* {
  width: calc(50% - 6px);
  margin-block: 6px;
  border: 0px;
}

.accordion-header {
  margin-bottom: 0px;
  border-inline-start: 4px solid var(--primary);
  border-radius: 5px;
}

.accordion-button {
  border-radius: 0px;
}

.accordion-button,
.accordion-body {
  background: rgb(249, 249, 249);
}

.devider.d1 {
  transform: rotate(180deg);
}

.devider.d-home-1 {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: white;
}

.devider.d-home-1 svg {
  fill: rgb(225, 225, 225);
}

.devider.d1 svg {
  fill: var(--dark1);
}

.form-control {
  border: 1px solid rgb(74, 74, 74);
  border-radius: 8px;
}

#footer .form-control {
  color: var(--lightGray1);
  background: transparent;
}

#footer .form-control:focus {
  border-color: rgb(255, 255, 255);
}

#footer .form-control::placeholder {
  color: var(--lightGray1);
}

#footer form>div {
  position: relative;
}

#footer form>div button {
  position: absolute;
  inset-inline: auto 8px;
  top: 0px;
  z-index: 2;
  background: var(--primary);
  border-radius: 0px;
  width: 42px;
  height: 100%;
  padding-inline: 0px;
  display: flex;
  justify-content: center;
  border-start-end-radius: 8px;
  border-end-end-radius: 8px;
}

.copyright {
  font-size: 80%;
  color: rgb(129, 129, 129);
}

.footer-social a:hover {
  background: var(--primary);
}

:root {
  --baseColor: #656c7c;
  --baseSize: 16px;
  --baseLineHeight: 1.5;
  --fontFamily: Inter, sans-serif;
  --pink: #ea4c89;
  --pinkLight: #ffecf0;
  --blue: #1769ff;
  --redTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23EA455F'/%3E%3C/svg%3E%0A");
  --whiteTick: url("data:image/svg+xml,%3Csvg width='18' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.552.134 5.717 10.97 1.448 6.701 0 8.149l5.717 5.717L18 1.583 16.552.134Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
  --close: url("data:image/svg+xml,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 1.414 16.586 0 9 7.586 1.414 0 0 1.414 7.586 9 0 16.586 1.414 18 9 10.414 16.586 18 18 16.586 10.414 9 18 1.414Z' fill='%23B1B8C9'/%3E%3C/svg%3E");
  --entpIcon: url("data:image/svg+xml,%3Csvg width='42' height='42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.813 11.077 21 1.155l17.187 9.922v19.846L21 40.845 3.813 30.923V11.077Z' stroke='%23fff' stroke-width='2'/%3E%3Ccircle cx='21' cy='21' r='8' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

* {
  box-sizing: border-box;
}

html {
  color: var(--baseColor);
  font-family: var(--fontFamily);
  font-size: var(--baseSize);
  line-height: var(--baseLineHeight);
}

body {
  margin: 0px;
}

.plans {
  width: 96%;
  max-width: 1128px;
  margin: 0px auto;
}

.plans__container {
  padding: 1rem 0px 2rem;
}

.plansHero {
  text-align: center;
  padding: 5rem 0px 4.5rem;
  line-height: 1.21;
}

.plansHero__title {
  font-weight: 700;
  font-size: 2rem;
  margin: 0px 0px 1rem;
  color: rgb(0, 0, 0);
}

.plansHero__subtitle {
  margin: 0px;
}

.planItem {
  --border: 1px solid #e6e6e6;
  --bgColor: #fff;
  --boxShadow: none;
  background-color: var(--bgColor);
  border: var(--border);
  border-radius: 1rem;
  box-shadow: var(--boxShadow);
  padding: 2rem 1.5rem;
  display: inline-flex;
  flex-direction: column;
}

.planItem__container {
  --direction: column;
  display: grid;
  grid-auto-flow: var(--direction);
  grid-auto-columns: 1fr;
  gap: 1.5rem;
}

.planItem .price {
  --priceMargin: 1rem 0;
}

.planItem--pro {
  --border: 0;
  --boxShadow: 0px 0px 18px rgb(204 204 204 / 21%);
  border: 1px solid rgb(241, 241, 241);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.planItem--pro.featured {
  background: var(--dark1);
  color: var(--lightGray1);
}

.planItem::before {
  content: "";
  width: 200%;
  height: 130px;
  position: absolute;
  top: -40px;
  inset-inline: -50%;
  z-index: -1;
  background: rgba(0, 0, 0, 0.03);
  transform: rotate(355deg);
}

.featured.planItem::before {
  background: rgba(0, 0, 0, 0.37);
}

.card__header img {
  width: 24px;
  margin-bottom: 5px;
}

.planItem--pro .label {
  --labelBg: #fdb72e;
  --labelColor: #fff;
}

.planItem--entp {
  --bgColor: var(--blue);
}

.planItem--entp .card {
  --titleColor: #fff;
  --descColor: rgb(255 255 255 / 80%);
}

.planItem--entp .card__icon {
  background-image: var(--entpIcon);
  background-size: cover;
}

.planItem--entp .price,
.planItem--entp .featureList {
  --color: #fff;
}

.planItem--entp .featureList {
  --icon: var(--whiteTick);
}

.planItem.featured .button,
.planItem .button {
  margin-top: auto;
  transition: 0.18s linear;
  border: 2px solid transparent !important;
}

.planItem .button:hover {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary) !important;
}

.planItem.featured .button {
  background: rgb(255, 255, 255);
  color: var(--primary);
}

.planItem.featured .button:hover {
  background: rgb(255, 255, 255);
}

.button {
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  padding: 0.6rem 1.5rem;
  border: 0px;
  line-height: inherit;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--color);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  -webkit-user-select: none;
  user-select: none;
}

.button--pink {
  --bgColor: var(--primary);
  --color: #fff;
}

.button--white {
  --bgColor: #fff;
  --shadowColor: rgb(255 255 255 / 30%);
  --outline: #fff;
}

.button:hover {
  transform: translateY(-6px);
}

.button:focus-visible {
  outline-offset: 2px;
  outline: 2px solid var(--outline);
}

.card {
  --titleColor: #000;
  --descColor: var(--baseColor);
}

.card__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding-inline-end: 24px;
}

.card__icon {
  width: 2.625rem;
  height: 2.625rem;
}

.card .p-name {
  color: var(--titleColor);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 0px;
  flex-grow: 1;
}

.card__header .p-name {
  font-size: 1.75rem;
}

.card__desc {
  margin: 2.3rem 0px 0px;
  color: var(--descColor);
}

.label {
  --labelColor: var(--baseColor);
  --labelBg: #e5e5e5;
  font-weight: 600;
  line-height: 1.25;
  font-size: 1rem;
  text-align: center;
  padding: 0.325rem 1.125rem;
  border-radius: 2rem;
  -webkit-user-select: none;
  user-select: none;
  background-color: var(--labelBg);
  color: var(--labelColor);
}

.price {
  --color: #000;
  --priceMargin: 0;
  display: flex;
  color: var(--color);
  align-items: center;
  gap: 0.5625rem;
  font-weight: 600;
  font-size: 3rem;
  margin: var(--priceMargin);
}

.featured .price {
  color: var(--primary);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--baseColor);
}

.featured .price span {
  color: var(--lightGray1);
}

.featureList {
  --color: #000;
  --icon: var(--redTick);
  --height: 0.875rem;
  margin: 0px 0px 2.75rem;
  padding: 0px;
  font-weight: 500;
}

.featureList li {
  color: var(--color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured .featureList li {
  color: var(--lightGray1);
}

.featured .featureList li.disabled {
  color: rgb(126, 126, 126);
}

.featureList li::before {
  content: "";
  background-image: var(--icon);
  background-size: cover;
  display: block;
  width: 1.125rem;
  height: var(--height);
  flex-shrink: 0;
}

.featureList li:last-child {
  margin-bottom: 0px;
}

.featureList li.disabled {
  --color: #b1b8c9;
  --height: 1.125rem;
  --icon: var(--close);
}

.symbol {
  --big: 2.625rem;
  --small: 1.5rem;
  --radius: 0.25rem;
  border: 2px solid var(--blue);
  width: var(--big);
  height: var(--big);
  border-radius: var(--radius);
  position: relative;
}

.symbol--rounded {
  --radius: 2rem;
}

.symbol::after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute;
  border: 2px solid var(--pink);
  width: var(--small);
  height: var(--small);
  border-radius: var(--radius);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plans__container .section-title {
  margin-top: 0px;
}

@media screen and (max-width: 640px) {
  .plans {
    max-width: 480px;
    width: 90%;
  }

  .planItem__container {
    --direction: row;
  }
}

@media screen and (min-width: 641px) and (max-width: 768px) {
  :root {
    --baseSize: 12px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  :root {
    --baseSize: 14px;
  }
}

.section-title {
  margin-block: 35px 45px;
}

.section-title>* {
  font-size: 2rem;
  margin: 0px;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgb(255, 255, 255);
}

.our-features {
  background: var(--light-bg-1);
  padding-bottom: 10px;
}

.our-features .section-title {
  margin-block: 5px 45px;
}

.ourFeatures .row {
  margin-inline: 40px;
}

.of-title {
  font-weight: bold;
  font-size: 160%;
  margin-bottom: 16px;
  margin-top: 10px;
}

.of-desc {
  font-size: 110%;
}

.ourFeatures img {
  border-radius: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
}

.devider.d5 {
  fill: var(--light-bg-1);
  transform: scale(-1);
}

.devider.d5 svg,
.devider.d6 svg {
  fill: var(--light-bg-1);
}

.back-to-top {
  opacity: 0;
  width: 40px;
  height: 40px;
  position: fixed;
  left: 0px;
  right: 0px;
  z-index: 10;
  bottom: -65px;
  margin-inline: auto 20px;
  background: rgb(255, 255, 255);
  border-radius: 800px;
  color: var(--primary);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px;
  transition: 0.5s linear;
  cursor: pointer;
}

.back-to-top.scrolled {
  opacity: 1;
  bottom: 15px;
}

.slider-clients .swiper-slide {
  padding-block: 30px;
}

.slider-container {
  position: relative;
}

.slider-clients {
  width: calc(100% - 100px);
}

.our-clients a {
  border-radius: 800px;
  overflow: hidden;
  object-fit: contain;
  object-position: 50% center;
  display: flex;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin-inline: auto;
}

.our-clients a:hover {
  transform: translate(0px, -10px);
}

.about {
  background: rgb(225, 225, 225);
  padding-bottom: 80px;
}

.about .desc {
  font-size: 130%;
}

.banne-title {
  font-size: 220%;
  line-height: 100%;
  margin-bottom: 30px;
}

.banner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  font-size: 150%;
  color: rgb(255, 255, 255);
}

.our-clients {
  padding-block: 50px 60px;
}

.banner-button {
  margin-top: 35px;
}

.banner-button a {
  min-width: 160px;
}

.sub-page {
  padding-block: 100px 80px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.contact-info>* {
  display: flex;
  align-items: center;
}

.contact-info>* i {
  color: var(--primary);
  font-size: 24px;
  margin-inline-end: 15px;
}

.contact-info>* p {
  margin-bottom: 0;
}

.contact-info>* strong {
  display: flex;
}

.contact-image {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-evenly;
  height: 100%;
  color: gray;
  gap: 20px;
}

.contact-image img:first-child {
  width: 70%;
  margin-inline: auto;
  margin-block-end: 20px;
}
.contact-image img:last-child {
  width: 70%;
  margin-inline: auto;
  
}

.step {
  display: none;
  transition-duration: 0.3s;
}

.step.active {
  display: block;
}

.stepper-header {
  display: flex;
  margin-bottom: 20px;
  padding-inline: 20px;
}

.stepper-header .step-wrapper {
  position: relative;
}

.stepper-header .step-wrapper:not(:last-child) {
  flex: 1;
}

.stepper-header .step-wrapper .step-indicator {
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: default;
  background-color: #ccc;
  color: #fff;
}

.stepper-header .step-wrapper:not(:last-child) .step-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  background: #cccccc;
}

.stepper-header .step-wrapper .step-indicator.completed,
.stepper-header .step-wrapper .step-indicator.active {
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
}

.stepper-header .step-wrapper .step-indicator.finished {
  background-color: #00d091;
  cursor: default;
}

div[data-is-invalid]:has(.is-invalid)::after {
  content: attr(data-is-invalid);
  color: #dc3545;
}

.green {
  color: #00d091;
}

.code a {
  color: var(--primary) !important;
}

.feature-icon {
  font-size: 2rem;
  font-weight: 700;
  height: 3rem;
  margin-block-end: 10px;
  color: var(--primary);
}

.feature-icon svg {
  height: 100%;
  width: 100%;
}

.feature {
  margin-bottom: 20px;
  width: 100%;
  height: calc(100% - 20px);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid #ec23231f;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0px 0px 18px rgb(204 204 204 / 21%);
  transition-duration: 0.5s;
  cursor: default;
}

.feature:hover {
  scale: 1.03;
  border-color: var(--primary);
}

.feature-banner-bg {
  background-color: #292929;
}

.hook-word {
  color: #ec2323;
}

.feature-row {
  margin-bottom: 30px;
  align-items: center;
}
.feature-row p {
  margin-top: 1rem;
}

.feature-img img {
  max-width: 100%;
  height: auto;
  box-shadow: 1px 1px 10px 1px #0000002e;
  border-radius: 1rem;
}

.feature-text {
  padding-inline: 20px 0;
}

.feature-row:nth-child(even) .feature-text {
  order: 1;
  padding-inline: 0 20px;
}

.feature-row:nth-child(even) .feature-img {
  order: 2;
}

@media (max-width: 768px) {

  .feature-text,
  .feature-img {
    padding-inline: 0 !important;
    order: initial !important;
  }
}

div:has(> label + input[required]) label::after {
  content: " * ";
  color: #ff1111;
}