@import url("https://fonts.googleapis.com/css2?family=Inter&amp;family=Public+Sans:wght@700&amp;display=swap");
.justify-content {
  justify-content: center;
}

.heading-xxl {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.0181818em;
}
@media (min-width: 480px) {
  .heading-xxl {
    font-size: 50px;
  }
}
@media (min-width: 576px) {
  .heading-xxl {
    font-size: 64px;
  }
}
@media (min-width: 1200px) {
  .heading-xxl {
    font-size: 90px;
    line-height: 0.91;
  }
}
@media (min-width: 1400px) {
  .heading-xxl {
    font-size: 110px;
  }
}

.heading-xl, .section-heading__title, .content-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 576px) {
  .heading-xl, .section-heading__title, .content-title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .heading-xl, .section-heading__title, .content-title {
    font-size: 65px;
  }
}
@media (min-width: 1200px) {
  .heading-xl, .section-heading__title, .content-title {
    font-size: 70px;
  }
}
@media (min-width: 1400px) {
  .heading-xl, .section-heading__title, .content-title {
    font-size: 80px;
  }
}

.heading-lg {
  font-weight: 600;
  line-height: 1;
  font-size: 32px;
  letter-spacing: -0.019231em;
}
@media (min-width: 576px) {
  .heading-lg {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .heading-lg {
    font-size: 52px;
  }
}

.heading-md {
  font-weight: 600;
  line-height: 1.29;
  font-size: 22px;
  letter-spacing: -0.01071428em;
}
@media (min-width: 576px) {
  .heading-md {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .heading-md {
    font-size: 28px;
  }
}

.heading-sm {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.42;
}
@media (min-width: 576px) {
  .heading-sm {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .heading-sm {
    font-size: 24px;
  }
}

.heading-xs {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.43;
}
@media (min-width: 992px) {
  .heading-xs {
    font-size: 18px;
  }
}

.body-3xxl, .home-10_hero-text-block-wrapper p {
  font-size: 18px;
  line-height: 1.42;
}
@media (min-width: 576px) {
  .body-3xxl, .home-10_hero-text-block-wrapper p {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .body-3xxl, .home-10_hero-text-block-wrapper p {
    font-size: 24px;
  }
}

.body-3xl, .home-5_hero-content-block p {
  font-size: 18px;
  line-height: 1.62;
}
@media (min-width: 576px) {
  .body-3xl, .home-5_hero-content-block p {
    font-size: 21px;
  }
}

.body-2xl {
  font-size: 20px;
  line-height: 1.25;
}

.body-xl {
  font-size: 18px;
  line-height: 1.56;
}

.body-lg {
  font-size: 16px;
  line-height: 1.5;
}

.body-md {
  font-size: 14px;
  line-height: 1.43;
}

.body-sm {
  font-size: 12px;
  line-height: 1.33;
}

/*======= Base Class ========*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "General Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.56;
  color: #495460;
}

span,
a {
  display: inline-block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: initial;
}

img {
  display: block;
}

/* Preloader */
.preloader-wrapper {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 99999999 !important;
  position: fixed;
  overflow: hidden;
}

.preloader {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #432CF3;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.preloader span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  border-color: transparent;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .btn {
    padding-top: 16.3px;
    padding-bottom: 16.3px;
  }
}
.btn i {
  font-size: 16px;
}
.btn .btn-icon {
  width: 16px;
}
.btn .btn-icon img {
  width: 100%;
}
.btn--small {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.btn-primary:focus {
  background-color: #3019DF;
  color: #FFFFFF;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #553FFB;
  color: #FFFFFF;
}
.btn-primary:disabled {
  background-color: #CBD2D9;
  color: #FFFFFF;
  border-color: #CBD2D9;
}

.btn--rounded {
  border-radius: 500px;
}

.btn-outlined {
  background-color: transparent;
  color: #0C1523;
  border-color: #0C1523;
  border-width: 1.5px;
}
.btn-outlined:hover, .btn-outlined:focus {
  color: #432CF3;
  border-color: #432CF3;
}
.btn-outlined:focus {
  background-color: #EBEDFE;
  color: #432CF3;
  border-color: #432CF3;
}
.btn-outlined:disabled,
.btn-outlined .disabled {
  background-color: #FFFFFF;
  color: #CBD5E1;
  border-color: #CBD2D9;
  pointer-events: none;
}
.btn-outlined--hvr-filled:hover {
  background-color: #432CF3;
  color: #FFFFFF;
  border-color: #432CF3;
}

.btn--outline {
  background-color: transparent;
  color: #0C1523;
  border-color: #0C1523;
  border-width: 2px;
}
.btn--outline:hover, .btn--outline:focus {
  color: #432CF3;
  border-color: #432CF3;
}
.btn--outline:focus {
  background-color: #EBEDFE;
  color: #432CF3;
  border-color: #432CF3;
}
.btn--outline:disabled,
.btn--outline .disabled {
  background-color: #FFFFFF;
  color: #CBD5E1;
  border-color: #CBD2D9;
  pointer-events: none;
}
.btn--outline--hvr-filled:hover {
  background-color: #432CF3;
  color: #FFFFFF;
  border-color: #432CF3;
}

.btn--header {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 600;
}

.btn-radius-none {
  border-radius: initial;
}

.btn-black {
  background: #0C1523;
  color: #FFFFFF;
  border: 1px solid #0C1523;
  border-radius: 500px;
}
.btn-black:hover, .btn-black:focus {
  color: #FFFFFF;
  background: #432CF3;
  border: 1px solid #432CF3;
}
.btn-black.hvr-white:hover {
  color: #0C1523;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.btn-white {
  color: #0C1523;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn-white:active {
  color: #FFFFFF !important;
  background: #0C1523 !important;
  border: 1px solid #0C1523 !important;
}
.btn-white:hover, .btn-white:focus {
  color: #FFFFFF;
  background: #0C1523;
  border: 1px solid #0C1523;
}
.btn-white.hvr-primary:hover {
  color: #FFFFFF;
  background: #432CF3;
  border: 1px solid #432CF3;
}

.btn-white-primary {
  color: #432CF3;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn-white-primary:hover, .btn-white-primary:focus, .btn-white-primary:active {
  color: #FFFFFF;
  background: #0C1523;
  border: 1px solid #0C1523;
}
.btn-white-primary.hvr-primary:hover {
  color: #FFFFFF;
  background: #432CF3;
  border: 1px solid #432CF3;
}

.store-button-group {
  display: inline-flex;
  gap: 20px;
}
.store-button-group img {
  width: 100%;
}

.btn-play-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #432CF3;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 500px;
  font-size: 16px;
  z-index: 10;
}
@media (min-width: 768px) {
  .btn-play-circle {
    min-width: 70px;
    max-width: 70px;
    min-height: 70px;
    max-height: 70px;
    border-radius: 500px;
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .btn-play-circle {
    min-width: 100px;
    max-width: 100px;
    min-height: 100px;
    max-height: 100px;
    border-radius: 500px;
    font-size: 24px;
  }
}
.btn-play-circle::after {
  content: "";
  position: absolute;
  height: 120px;
  width: 120px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 500px;
  box-shadow: 2px 2px 25px rgba(0, 0, 0, 0.2);
  animation: play 4s linear infinite 1000ms forwards;
  z-index: -2;
}

/* Play Button Animation */
@keyframes play {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.btn-play-80 {
  border-radius: 500px;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  height: 60px;
  width: 60px;
  font-size: 17px;
}
@media (min-width: 992px) {
  .btn-play-80 {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    height: 80px;
    width: 80px;
    font-size: 18px;
  }
}

.navigation-button-group {
  display: flex;
  justify-content: center;
  column-gap: 11px;
}
.navigation-button-group .btn {
  border: 1px solid #CBD2D9;
  background-color: #FFFFFF;
  border-radius: 50px;
  width: 111px;
  height: 48px;
  font-weight: 600;
}
.navigation-button-group .btn i {
  color: #7F8995;
}
.navigation-button-group .btn.active {
  background: #432CF3;
  color: #FFFFFF;
}
.navigation-button-group .btn.active i {
  color: #FFFFFF;
}
.navigation-button-group .btn:hover {
  background: #432CF3;
  color: #FFFFFF;
}
.navigation-button-group .btn:hover i {
  color: #FFFFFF;
}
.navigation-button-group .btn:hover ~ .active {
  background: #FFFFFF;
  border: 1px solid #CBD2D9;
  color: #0C1523;
}
.navigation-button-group .btn:hover ~ .active i {
  color: #7F8995;
}

.btn-arrow {
  column-gap: 10px;
}
.btn-arrow:hover::after {
  left: 5px;
}
.btn-arrow::after {
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-size: inherit;
  position: relative;
  top: 1px;
  left: 0px;
  transition: 0.4s left;
}

.nav-btn {
  background: none;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: rgba(18, 20, 29, 0.5);
}
.nav-btn:hover {
  color: #432CF3;
}

/* ========= Component: Testimonial Card =========*/
.testimonial-card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  row-gap: 30px;
  padding: 40px 34px;
  transition: 0.3s;
}
.testimonial-card__image {
  min-width: 90px;
  max-width: 90px;
  min-height: 90px;
  max-height: 90px;
  border-radius: 500px;
}
.testimonial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.testimonial-card__body {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0c1523;
}
@media (min-width: 1400px) {
  .testimonial-card__body {
    max-width: 304px;
  }
}
.testimonial-card__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #0c1523;
}
.testimonial-card__user span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  margin-top: 6px;
  color: #495460;
}
@media (max-width: 991px) {
  .testimonial-card {
    background: #ffffff;
    box-shadow: 0px 34px 104px rgba(18, 22, 28, 0.1);
    border-radius: 10px;
  }
}
.testimonial-card.active {
  background: #ffffff;
  box-shadow: 0px 34px 104px rgba(18, 22, 28, 0.1);
  border-radius: 10px;
}

/* ========== Component: Testimonial Card 2 ============= */
.testimonial-card-2 {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.testimonial-card-2__body {
  display: flex;
  justify-content: space-between;
}
.testimonial-card-2__user-block {
  display: flex;
  column-gap: 15px;
}
.testimonial-card-2__user-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.testimonial-card-2__user-position {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #495460;
}
.testimonial-card-2 p {
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.testimonial-card-2 span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.56;
  color: #0C1523;
}
.testimonial-card-2 span span {
  font-weight: 400;
}

/* ========== Component: Testimonial Card 3 ============= */
.testimonial-card-3 {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.testimonial-card-3__user {
  border-top: 1px solid #EAEDF0;
  padding-top: 30px;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.testimonial-card-3__user-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.testimonial-card-3__user-position {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #495460;
}
.testimonial-card-3 p {
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}

/* ========== Component: User Card Info ============= */
.testimonial-card-4 {
  padding-top: 45px;
  padding-bottom: 51px;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
  flex-direction: column;
  row-gap: 37px;
  border-radius: 10px;
}
.testimonial-card-4 p {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing: -0.3px;
  color: #fff;
}
.testimonial-card-4__user {
  display: flex;
  column-gap: 14px;
  align-items: center;
}
.testimonial-card-4__info-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #fff;
}
.testimonial-card-4__info span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* ========= Component:Pricing Card =========*/
.pricing-card-1 {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.pricing-card-1__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.pricing-card-1__button .btn {
  width: 100%;
}
.pricing-card-1 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
.pricing-card-1__price {
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -1px;
  color: #0C1523;
  margin-bottom: 14px;
}
.pricing-card-1__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.pricing-card-1__list-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #0C1523;
  margin-bottom: 20px;
}

/* ========= Component:Pricing Card 2 =========*/
.pricing-card-2 {
  background: #ffffff;
  box-shadow: 0px 8px 80px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .pricing-card-2 {
    align-items: initial;
  }
}
.pricing-card-2__head, .pricing-card-2__body {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1200px) {
  .pricing-card-2__head, .pricing-card-2__body {
    padding-left: 55px;
    padding-right: 55px;
  }
}
.pricing-card-2__head {
  text-align: center;
  padding-top: 47px;
  padding-bottom: 42px;
  border-bottom: 1px solid #EAEDF0;
}
.pricing-card-2__body {
  padding-top: 30px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.pricing-card-2__price {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.62;
  margin-bottom: 15px;
}
.pricing-card-2__price span {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 576px) {
  .pricing-card-2__price span {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .pricing-card-2__price span {
    font-size: 65px;
  }
}
@media (min-width: 1200px) {
  .pricing-card-2__price span {
    font-size: 70px;
  }
}
@media (min-width: 1400px) {
  .pricing-card-2__price span {
    font-size: 80px;
  }
}
.pricing-card-2 p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #0C1523;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card-2__list {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #0c1523;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  position: relative;
  margin-bottom: 0;
}
.pricing-card-2__list-item {
  display: flex;
  column-gap: 10px;
}
.pricing-card-2__list-item::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.pricing-card-2__list-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #0c1523;
}
.pricing-card-2__button-block {
  text-align: center;
}
.pricing-card-2__button-block .btn {
  margin-bottom: 20px;
  width: 100%;
}
.pricing-card-2__button-block span {
  display: block;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(12, 21, 35, 0.7);
}

/* ========= Component:Pricing Card 3 =========*/
.pricing-card-3 {
  background: #ffffff;
  padding: 26px 30px 30px 30px;
  box-shadow: 0px 8px 80px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .pricing-card-3 {
    padding: 40px 40px 46px 40px;
  }
}
@media (min-width: 992px) {
  .pricing-card-3 {
    box-shadow: none;
  }
}
@media (min-width: 1200px) {
  .pricing-card-3 {
    align-items: initial;
  }
}
.pricing-card-3__subtitle {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.62;
  color: #0C1523;
  margin-bottom: 30px;
}
.pricing-card-3__price {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.62;
  margin-bottom: 5px;
}
.pricing-card-3__price span {
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
}
@media (min-width: 576px) {
  .pricing-card-3__price span {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .pricing-card-3__price span {
    font-size: 65px;
  }
}
@media (min-width: 1200px) {
  .pricing-card-3__price span {
    font-size: 70px;
  }
}
@media (min-width: 1400px) {
  .pricing-card-3__price span {
    font-size: 80px;
  }
}
.pricing-card-3 span {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #000;
}
.pricing-card-3 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(12, 21, 35, 0.7);
  margin-bottom: 45px;
  font-family: "Inter", sans-serif;
}
.pricing-card-3__button {
  margin-bottom: 34px;
  width: 100%;
  color: #0C1523;
  border: 1.5px solid #CBD2D9;
  border-radius: 8px;
  padding: 18px 24px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  transition: 0.4s;
}
.pricing-card-3__button:hover {
  background-color: #432CF3;
  color: #fff;
}
.pricing-card-3__list-item::before {
  color: #432CF3;
}
.pricing-card-3__list {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #0c1523;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  position: relative;
  margin-bottom: 0;
}
.pricing-card-3__list-item {
  display: flex;
  column-gap: 10px;
}
.pricing-card-3__list-item::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.pricing-card-3.active {
  background: #F3F7FA;
  border-radius: 10px;
}
.pricing-card-3.active .pricing-card-3__button {
  background: #553FFB;
  color: #FFFFFF;
}

@media (min-width: 992px) {
  .pricing-card-3-divider > div:first-child {
    position: relative;
  }
  .pricing-card-3-divider > div:first-child::before {
    content: "";
    width: 1px;
    top: 10%;
    bottom: 10%;
    background-color: #EAEDF0;
    position: absolute;
    right: 2px;
  }
}

/* ========= Component:Pricing Card 4 =========*/
.pricing-card-4 {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.pricing-card-4__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.pricing-card-4__button .btn {
  width: 100%;
}
.pricing-card-4 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
.pricing-card-4__price {
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -1px;
  color: #0C1523;
  margin-bottom: 14px;
}
.pricing-card-4__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.pricing-card-4__list-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #0C1523;
  margin-bottom: 20px;
}
.pricing-card-4.card-border {
  border: 1px solid #EAEDF0;
}

/* ========= Component:Pricing Card 6 =========*/
.pricing-card-6 {
  background: #ffffff;
  padding: 26px 30px 30px 30px;
  box-shadow: 0px 8px 80px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-card-6 {
    padding: 26px 40px 43px 40px;
  }
}
@media (min-width: 1200px) {
  .pricing-card-6 {
    align-items: initial;
  }
}
.pricing-card-6__head {
  border-bottom: 1px solid #EAEDF0;
  margin-bottom: 33px;
  text-align: center;
  width: 100%;
  padding-bottom: 33px;
}
@media (min-width: 1200px) {
  .pricing-card-6__head {
    display: flex;
    justify-content: space-between;
  }
}
.pricing-card-6__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.pricing-card-6__subtitle {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.43;
  color: #0C1523;
}
.pricing-card-6__price {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.62;
}
.pricing-card-6 span {
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #000;
}
.pricing-card-6 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(12, 21, 35, 0.7);
  font-family: "Inter", sans-serif;
}
.pricing-card-6__button {
  width: 100%;
  color: #0C1523;
  border: 1.5px solid #CBD2D9;
  border-radius: 8px;
  padding: 18px 24px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  justify-content: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  transition: 0.4s;
}
.pricing-card-6__button:hover {
  background: #553FFB;
  color: #FFFFFF;
}
.pricing-card-6__list-item::before {
  color: #432CF3;
}
.pricing-card-6__list {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #0c1523;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  position: relative;
  margin-bottom: 37px;
}
.pricing-card-6__list-item {
  display: flex;
  column-gap: 10px;
}
.pricing-card-6__list-item::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.pricing-card-6.active .pricing-card-6__button {
  background: #553FFB;
  color: #FFFFFF;
}

/* ========= Component:Pricing Card 7 =========*/
.pricing-card-7 {
  background: #FFFFFF;
  padding: 40px 40px 40px 40px;
  border: 1px solid #EAEDF0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1200px) {
  .pricing-card-7 {
    align-items: initial;
  }
}
.pricing-card-7__subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
  margin-bottom: 40px;
}
.pricing-card-7__head {
  border-bottom: 1px solid #EAEDF0;
  margin-bottom: 40px;
}
.pricing-card-7__price {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #12141D;
}
.pricing-card-7__price span {
  font-weight: 600;
  line-height: 1;
  font-size: 32px;
  letter-spacing: -0.019231em;
  color: #000;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .pricing-card-7__price span {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .pricing-card-7__price span {
    font-size: 52px;
  }
}
.pricing-card-7 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(12, 21, 35, 0.7);
  margin-bottom: 33px;
  font-family: "Inter", sans-serif;
}
.pricing-card-7__button {
  width: 100%;
  color: #0C1523;
  border: 1.5px solid #CBD2D9;
  border-radius: 8px;
  padding: 18px 25px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 40px;
}
.pricing-card-7__button.active {
  background: #432CF3;
  color: #FFFFFF;
}
.pricing-card-7__button:hover {
  background: #432CF3;
  color: #FFFFFF;
}
.pricing-card-7__list-item::before {
  color: #14B082;
}
.pricing-card-7__list {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #0c1523;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  position: relative;
}
.pricing-card-7__list-item {
  display: flex;
  column-gap: 10px;
}
.pricing-card-7__list-item::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.pricing-card-7__list-item.disable {
  color: #B8C1CC;
}
.pricing-card-7__list-item.disable::before {
  content: "\f00d";
  color: #B8C1CC;
}
.pricing-card-7.active {
  background: #432CF3;
}
.pricing-card-7.active .pricing-card-7__subtitle {
  color: #fff;
}
.pricing-card-7.active span {
  color: white;
}
.pricing-card-7.active .pricing-card-7__price {
  color: #FFFFFF;
}
.pricing-card-7.active .pricing-card-7__list-item {
  color: #fff;
}
.pricing-card-7.active .pricing-card-7__button {
  background: white;
  color: #432CF3;
}
.pricing-card-7.active .pricing-card-7__list-item.disable {
  color: #7F8995;
}
.pricing-card-7.active .pricing-card-7__list-item.disable::before {
  color: #7F8995;
}

/* ========== Component: Feature card 1 ============= */
.feature-card-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(234, 237, 240, 0.3);
  border-radius: 10px;
  padding: 30px 30px;
}
.feature-card-1__icon {
  margin-bottom: 16px;
  display: inline-flex;
  background: #FFFFFF;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #FFFFFF;
  min-width: 70px;
  max-width: 70px;
  min-height: 70px;
  max-height: 70px;
  border-radius: 500px;
  border: 1px solid #EAEDF0;
}
.feature-card-1__icon img {
  width: 100%;
  min-width: 33px;
  max-width: 33px;
  min-height: 33px;
  max-height: 33px;
  border-radius: 0;
}
.feature-card-1__title {
  margin-bottom: 15px;
}
.feature-card-1 p {
  max-width: 376px;
}

/* ========== Component: Feature card 2 ============= */
.feature-card-2 {
  display: flex;
  column-gap: 22px;
}
@media (max-width: 767px) {
  .feature-card-2 {
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.feature-card-2__icon {
  position: relative;
  top: 5px;
}
.feature-card-2__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.42;
  color: #0C1523;
  margin-bottom: 11px;
}
.feature-card-2 p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: #495460;
  max-width: 340px;
}

/* ========== Case Study Card 1 ============= */
.case-card {
  --card-border: 10px;
  padding: 35px 24px 37px 35px;
  background: #FFFFFF;
  border: 1px solid #E7F0EC;
  border-radius: var(--card-border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: initial;
  text-align: initial;
  height: 100%;
}
@media (min-width: 576px) {
  .case-card {
    text-align: center;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .case-card {
    align-items: initial;
    text-align: initial;
  }
}
.case-card__logo {
  margin-bottom: 30px;
  max-width: 131px;
}
.case-card__logo img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.case-card p {
  font-size: 24px;
  line-height: 1.42;
  color: #0C1523;
  font-weight: 600;
  max-width: 354px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .case-card p {
    margin-bottom: 50px;
  }
}
.case-card__user-block {
  display: flex;
  column-gap: 16px;
  row-gap: 15px;
  align-items: initial;
  text-align: initial;
  flex-direction: initial;
}
@media (min-width: 576px) {
  .case-card__user-block {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .case-card__user-block {
    flex-direction: initial;
    text-align: initial;
  }
}
.case-card__user-image {
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 500px;
}
.case-card__user-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  border-radius: inherit;
}
.case-card__name {
  color: #0C1523;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
}
.case-card__user-position {
  color: #7F8995;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
}
.case-card__hover-block {
  position: absolute;
  left: 0%;
  top: 0%;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.case-card__hover-block:before {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #432CF3;
  left: 0;
  top: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 10px;
  z-index: -1;
}
.case-card__hover-block i {
  display: flex;
  font-size: 24px;
  color: #432CF3;
  justify-content: center;
  align-items: center;
  min-width: 78px;
  max-width: 78px;
  min-height: 78px;
  max-height: 78px;
  border-radius: 500px;
  background-color: #FFFFFF;
  position: relative;
  transition: 0.5s;
  left: -10px;
}
.case-card:hover .case-card__hover-block {
  visibility: visible;
  opacity: 1;
}
.case-card:hover .case-card__hover-block i {
  left: 0px;
}
.case-card:hover .case-card__hover-block::before {
  opacity: 0.96;
  visibility: visible;
}
.case-card--v2 {
  border: 0;
  background-color: #F3F7FA;
}
.case-card--v2 .btn {
  border-radius: 8px;
  column-gap: 10px;
  padding: 15px 20px;
  background-color: #fff;
  font-size: 14px;
  margin-top: 40px;
  width: 100%;
}
.case-card--v2:hover .btn {
  background-color: #432CF3;
  color: #FFFFFF;
}
.case-card--v2:hover .btn:after {
  left: 5px;
}

/* ========== Case Study Card ============= */
.case-study-card__logo {
  margin-bottom: 30px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 500px;
}
.case-study-card__logo img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.case-study-card__user-block {
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.case-study-card__name {
  color: #0C1523;
  font-weight: 500;
}
.case-study-card__user-position {
  color: #0C1523;
  font-weight: 500;
}
.case-study-card__button-block {
  margin-top: 40px;
  text-align: center;
}
.case-study-card__button-block .btn {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  transition: 0.3s;
}
.case-study-card__button-block i {
  position: relative;
  top: 3px;
}
.case-study-card:hover .btn {
  background: #432CF3;
  color: #FFFFFF;
  border: 1px solid #432CF3;
}

/* ========= Team Card =========== */
.team-card {
  background-color: #432CF3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
  padding-top: 30px;
  padding-bottom: 26px;
  padding-left: 31px;
  padding-right: 30px;
}
@media (min-width: 480px) {
  .team-card {
    padding-bottom: 30px;
    flex-direction: row;
    align-items: initial;
  }
}
@media (min-width: 768px) {
  .team-card {
    column-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .team-card {
    column-gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.team-card__image {
  height: 200px;
}
@media (min-width: 480px) {
  .team-card__image {
    width: 100%;
    max-width: 35%;
    height: auto;
  }
}
@media (min-width: 768px) {
  .team-card__image {
    max-width: 30%;
    margin-left: initial;
  }
}
@media (min-width: 1200px) {
  .team-card__image {
    max-width: 50%;
  }
}
.team-card__image img {
  height: 100%;
}
@media (min-width: 480px) {
  .team-card__image img {
    width: 100%;
    height: auto;
  }
}
.team-card__body {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 480px) {
  .team-card__body {
    max-width: 285px;
    justify-content: space-between;
    text-align: initial;
  }
}
@media (min-width: 1400px) {
  .team-card__body {
    padding-top: 7px;
    padding-bottom: 20px;
  }
}
.team-card__user-name {
  margin-bottom: 5px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.62;
}
@media (min-width: 576px) {
  .team-card__user-name {
    font-size: 21px;
  }
}
.team-card__user-position {
  margin-bottom: 10px;
  color: #A9B4C0;
}
@media (min-width: 1400px) {
  .team-card__user-position {
    margin-bottom: 74px;
  }
}
.team-card p {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 1200px) {
  .team-card p {
    font-size: 18px;
  }
}

/* ========== Card 1 ============= */
.job-card {
  padding: 34px 40px;
  display: flex;
  justify-content: space-between;
  background: #FFFFFF;
  border-radius: 10px;
  flex-direction: column;
  row-gap: 15px;
  text-align: center;
  align-items: center;
}
@media (min-width: 576px) {
  .job-card {
    flex-direction: initial;
    text-align: initial;
  }
}
.job-card__title {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.job-card__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .job-card__info {
    align-items: initial;
  }
}
.job-card__tages {
  display: flex;
  column-gap: 43px;
}
.job-card__tages i {
  position: relative;
  left: -10px;
  padding-left: 10px;
}
.job-card__button .btn {
  border: 1px solid #CBD2D9;
  width: 100%;
  font-size: 14px;
  height: 50px;
  border-radius: 8px;
  color: #121127;
  font-weight: 500;
  transition: 0.3s;
}
.job-card:hover .btn {
  background: #432CF3;
  border: 1px solid #432CF3;
  color: #FFFFFF;
}

/* ========== Component : Blog Card Styles ============= */
.blog-card {
  border: 1px solid #E7F0EC;
  border-radius: 10px;
  padding: 35px 27px 35px 35px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .blog-card {
    row-gap: 50px;
  }
}
.blog-card__image {
  margin-bottom: 30px;
}
.blog-card p {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.42;
  color: #0C1523;
}
.blog-card__user-block {
  display: flex;
  column-gap: 16px;
}
.blog-card__user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.blog-card span {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #7F8995;
}

/* Widget Regular Icon Sizes */
.icon-round-27 img {
  min-width: 27px;
  max-width: 27px;
  min-height: 27px;
  max-height: 27px;
  border-radius: 500px;
}

.icon-x-36 img {
  width: 36px;
}

.icon-round-34 img {
  min-width: 34px;
  max-width: 34px;
  min-height: 34px;
  max-height: 34px;
  border-radius: 500px;
}

.icon-size-34 img {
  max-width: 34px;
  min-width: 34px;
  height: auto;
}

@media (min-width: 480px) {
  .widget-gutter-25 {
    column-gap: 25px;
  }
}

/*---------------------------*/
.widget-regular {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  column-gap: 20px;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .widget-regular {
    text-align: initial;
    align-items: initial;
  }
}
.widget-regular__icon {
  display: inline-block;
}
.widget-regular__icon img {
  height: 46px;
}
.widget-regular__title {
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.42;
  color: #0C1523;
  font-size: 20px;
}
@media (min-width: 992px) {
  .widget-regular__title {
    font-size: 21px;
  }
}
@media (min-width: 1200px) {
  .widget-regular__title {
    font-size: 24px;
  }
}
.widget-regular p {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #495460;
}
@media (min-width: 480px) {
  .widget-regular--media {
    flex-direction: row;
    text-align: initial;
    align-items: initial;
  }
}
.widget-regular--media .widget-regular__icon {
  position: relative;
  top: 5px;
}

/*======== Component: Contact Widget ======*/
.contact-widget {
  display: flex;
  gap: 18px;
}
.contact-widget__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 34px;
  max-width: 34px;
  min-height: 34px;
  max-height: 34px;
  border-radius: 500px;
  background-color: #432CF3;
  color: #FFFFFF;
}
.contact-widget__text {
  font-weight: 500;
  word-break: break-word;
  line-height: 1.62;
  font-size: 18px;
}
@media (min-width: 992px) {
  .contact-widget__text {
    font-size: 21px;
  }
}

/*======== Component: Content Widget ======*/
.content-widget {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 576px) {
  .content-widget {
    text-align: inherit;
  }
}
@media (min-width: 992px) {
  .content-widget {
    row-gap: 30px;
  }
}
.content-widget__number {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #432cf3;
}
.content-widget__title {
  font-weight: 600;
  line-height: 1.42;
  color: #0C1523;
  margin-bottom: 15px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .content-widget__title {
    font-size: 24px;
  }
}
.content-widget p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.56;
  color: #495460;
}
@media (min-width: 1200px) {
  .content-widget p {
    font-size: 18px;
  }
}

/*======== Component: Content Widget 2 ======*/
.content-widget-2 {
  text-align: center;
}
@media (min-width: 992px) {
  .content-widget-2 {
    text-align: initial;
  }
}
.content-widget-2__title {
  display: inline-flex;
  column-gap: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.42;
  font-size: 20px;
}
@media (min-width: 576px) {
  .content-widget-2__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .content-widget-2__title {
    font-size: 24px;
  }
}
.content-widget-2__title img {
  position: relative;
  top: -7px;
}
.content-widget-2 p {
  font-size: 16px;
  line-height: 1.56;
  color: #495460;
}
@media (min-width: 576px) {
  .content-widget-2 p {
    font-size: 18px;
  }
}

/* ============ Feature Widget 1 ============== */
.feature-widget {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
}
.feature-widget__icon {
  position: relative;
  top: 5px;
  display: flex;
  justify-content: center;
  font-size: 27px;
  color: #2ad590;
}
.feature-widget__icon i {
  font-size: inherit;
}
.feature-widget__title {
  font-size: 18px;
  line-height: 1.42;
  color: #0c1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .feature-widget__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .feature-widget__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .feature-widget__title {
    font-size: 24px;
  }
}
.feature-widget p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
}

/* ============ Feature Widget 2 ============== */
.feature-widget-2 {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .feature-widget-2 {
    text-align: initial;
    align-items: initial;
    flex-direction: row;
  }
}
.feature-widget-2__icon img {
  min-width: 70;
  max-width: 70;
  min-height: 70;
  max-height: 70;
  border-radius: 500;
}
.feature-widget-2__title {
  font-size: 18px;
  line-height: 1.42;
  color: #0c1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .feature-widget-2__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .feature-widget-2__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .feature-widget-2__title {
    font-size: 24px;
  }
}
.feature-widget-2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
}

/* ============ Feature Widget 3 ============== */
.feature-widget-3 {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .feature-widget-3 {
    flex-direction: initial;
    text-align: initial;
    align-items: initial;
  }
}
.feature-widget-3__icon {
  position: relative;
  column-gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  max-width: 70px;
  min-height: 70px;
  max-height: 70px;
  border-radius: 500px;
  background: #FFFFFF;
  border: 1.5px solid #EAEDF0;
}
.feature-widget-3__icon img {
  width: 100%;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 500px;
}
.feature-widget-3__title {
  color: #0C1523;
  margin-bottom: 19px;
}
@media (min-width: 576px) {
  .feature-widget-3__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .feature-widget-3__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .feature-widget-3__title {
    font-size: 24px;
  }
}
.feature-widget-3 p {
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
  font-size: 16px;
  line-height: 1.56;
}
@media (min-width: 576px) {
  .feature-widget-3 p {
    font-size: 18px;
  }
}

/* ============ Feature Widget 4 ============== */
.feature-widget-4 {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .feature-widget-4 {
    justify-content: initial;
    align-items: initial;
    text-align: initial;
  }
}
@media (min-width: 768px) {
  .feature-widget-4 {
    flex-direction: row;
  }
}
.feature-widget-4__icon {
  position: relative;
  column-gap: 25px;
}
.feature-widget-4__title {
  color: #0C1523;
  margin-bottom: 19px;
}
@media (min-width: 576px) {
  .feature-widget-4__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .feature-widget-4__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .feature-widget-4__title {
    font-size: 24px;
  }
}
.feature-widget-4 p {
  font-size: 21px;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
  font-size: 16px;
  line-height: 1.56;
}
@media (min-width: 576px) {
  .feature-widget-4 p {
    font-size: 18px;
  }
}

/* ============ Component: Feature Widget 5 ============== */
.feature-widget-5 {
  display: flex;
  column-gap: 18px;
  row-gap: 25px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 576px) {
  .feature-widget-5 {
    flex-direction: initial;
    align-items: initial;
    text-align: initial;
  }
}
.feature-widget-5__icon {
  position: relative;
  top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  min-width: 40px;
  max-height: 40px;
  min-height: 40px;
  border-radius: 500px;
  background: #EBEDFE;
}
.feature-widget-5__title {
  font-weight: 600;
  line-height: 1.42;
  font-size: 20px;
  color: #0c1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .feature-widget-5__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .feature-widget-5__title {
    font-size: 24px;
  }
}
.feature-widget-5 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
}

/*======== Testimonial Widget ======*/
.testimonial-widget__rating {
  margin-bottom: 33px;
  display: inline-block;
}
.testimonial-widget p {
  font-weight: 500;
  font-size: 21px;
  line-height: 1.62;
  color: #0C1523;
}
.testimonial-widget .testimonial-widget__user-block {
  margin-top: 24px;
}
.testimonial-widget__user-block {
  display: flex;
  column-gap: 13px;
  justify-content: center;
  text-align: initial;
  align-items: center;
}
@media (min-width: 992px) {
  .testimonial-widget__user-block {
    justify-content: initial;
  }
}
.testimonial-widget__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial-widget__user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
}
.testimonial-widget__user-position span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
}

/*======== Testimonial Widget 3 ======*/
.testimonial-widget-3 {
  display: flex;
  column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 576px) {
  .testimonial-widget-3 {
    flex-wrap: wrap;
  }
}
.testimonial-widget-3__image {
  height: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .testimonial-widget-3__image {
    width: auto;
  }
}
@media (min-width: 992px) {
  .testimonial-widget-3__image {
    height: 215px;
  }
}
@media (min-width: 1200px) {
  .testimonial-widget-3__image {
    height: 300px;
  }
}
.testimonial-widget-3__image img {
  height: 100%;
}
@media (max-width: 575px) {
  .testimonial-widget-3__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    object-position: top;
  }
}
.testimonial-widget-3__body {
  display: flex;
  flex-direction: column;
}
.testimonial-widget-3__text {
  margin-top: 30px;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.testimonial-widget-3__user span {
  margin-left: 9px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #a9b4c0;
}
.testimonial-widget-3__user-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #FFFFFF;
}
.testimonial-widget-3.light .testimonial-widget-3__text {
  color: #0C1523;
}
.testimonial-widget-3.light .testimonial-widget-3__user-name {
  color: #0C1523;
}
.testimonial-widget-3.light span {
  color: #495460;
}

/*======== Testimonial Widget 4 ======*/
.testimonial-widget-4 {
  text-align: center;
}
.testimonial-widget-4__star {
  display: inline-flex;
  column-gap: 7px;
  color: #00b67a;
  font-size: 28px;
}
.testimonial-widget-4 p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56x;
  color: #0c1523;
  max-width: 357px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.testimonial-widget-4 span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0c1523;
}
.testimonial-widget-4__rate {
  font-weight: 400 !important;
}

/*======== Review Widget ======*/
.review-widget {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.review-widget__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #ffffff;
}
.review-widget__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
  margin-right: 10px;
}
.review-widget__rating li {
  font-size: 15.5px;
  color: #FFBB29;
}
.review-widget__rating-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #eaedf0;
}
.review-widget__rating-text span {
  display: inline-flex;
  align-items: center;
}
.review-widget__rating-text span:after {
  height: 5px;
  width: 5px;
  background: #ddd;
  border-radius: 500px;
  content: "";
  display: inline-block;
  margin: 3px 12px 0;
}
.review-widget__body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  justify-content: center;
}
@media (min-width: 350px) {
  .review-widget__body {
    justify-content: initial;
  }
}

/* ====== Rating Widget 1======== */
.rating-widget-1__title {
  margin-bottom: 15px;
  color: #0C1523;
}
.rating-widget-1__review-block {
  display: flex;
  column-gap: 8px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .rating-widget-1__review-block {
    flex-direction: initial;
  }
}
.rating-widget-1__review-icon {
  min-width: 22px;
  min-height: 22px;
}
.rating-widget-1__review-icon li {
  display: inline-flex;
  column-gap: 4px;
  color: #FFBB29;
}
.rating-widget-1__review-text .dot {
  width: 6px;
  height: 6px;
  border-radius: 500px;
  background-color: #7F8995;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}
@media (max-width: 479px) {
  .rating-widget-1__review-text .dot {
    display: block;
    background-color: transparent;
  }
}

/* ====== Profile Widget 1======== */
.profile-widget {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.profile-widget__image {
  min-width: 56px;
  max-width: 56px;
  min-height: 56px;
  max-height: 56px;
  border-radius: 500px;
}
.profile-widget__image img {
  border-radius: inherit;
}
.profile-widget p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #000000;
}

/* ============ Service Widget 1 ============== */
.service-widget {
  display: flex;
  column-gap: 20px;
  row-gap: 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .service-widget {
    align-items: initial;
    text-align: initial;
  }
}
.service-widget__icon {
  margin-bottom: 10px;
}
@media (min-width: 1400px) {
  .service-widget__icon {
    margin-bottom: 30px;
  }
}
.service-widget__title {
  font-size: 18px;
  line-height: 1.42;
  color: #0C1523;
  margin-bottom: 15px;
  color: #0C1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .service-widget__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .service-widget__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .service-widget__title {
    font-size: 24px;
  }
}
.service-widget p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
@media (min-width: 992px) {
  .service-widget p {
    font-size: 18px;
  }
}

/*======== process-widget ======*/
.process-widget {
  display: flex;
  column-gap: 18px;
}
@media (min-width: 1200px) {
  .process-widget {
    max-width: 350px;
  }
}
@media (min-width: 1400px) {
  .process-widget {
    max-width: 360px;
  }
}
.process-widget__icon {
  position: relative;
  top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  min-width: 40px;
  max-height: 40px;
  min-height: 40px;
  border-radius: 500px;
  background: #ebedfe;
}
.process-widget__icon img {
  height: 16px;
}
.process-widget__title {
  font-weight: 600;
  line-height: 1.42;
  font-size: 20px;
  color: #0c1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .process-widget__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .process-widget__title {
    font-size: 24px;
  }
}
.process-widget p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
}

/* ============ Integrate Widget 1 ============== */
.integrate-widget {
  display: flex;
  column-gap: 25px;
}
.integrate-widget__icon i {
  font-size: inherit;
  min-width: 45;
  max-width: 45;
  min-height: 45;
  max-height: 45;
  border-radius: 500;
}
.integrate-widget__title {
  font-size: 18px;
  line-height: 1.42;
  color: #0c1523;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .integrate-widget__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .integrate-widget__title {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .integrate-widget__title {
    font-size: 24px;
  }
}
.integrate-widget p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: rgba(73, 84, 96, 0.9);
}

/* ========== About 3 Main Section =========== */
.team-widget {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 576px) {
  .team-widget {
    text-align: initial;
  }
}
.team-widget__image-block {
  margin-bottom: 22px;
  border-radius: 10px;
  overflow: hidden;
}
.team-widget__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-widget__user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
  margin-bottom: 3px;
}
.team-widget__user-position {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(73, 84, 96, 0.9);
}

.comment-widget__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 576px) {
  .comment-widget__inner {
    flex-direction: row;
    column-gap: 16px;
  }
}
.comment-widget--shadow {
  box-shadow: 2px 6px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
@media (min-width: 576px) {
  .comment-widget--shadow {
    padding: 30px;
  }
}
.comment-widget__body {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.comment-widget__image {
  min-width: 68px;
  max-width: 68px;
  min-height: 68px;
  max-height: 68px;
  border-radius: 500px;
  border: 3px solid #EDECFE;
}
.comment-widget__image .comment-user {
  width: 100%;
}
.comment-widget__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment-widget__user-name {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.comment-widget__user-name span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
}
.comment-widget__button .btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  padding: 10px 20px;
  border-radius: 500px;
  background-color: var(--bg);
  color: var(--text);
  transition: 0.4s;
  min-height: auto;
}
.comment-widget__button + form {
  margin-top: 32px;
}
.comment-widget .comment-widget {
  padding: 20px 20px 40px 20px;
}
@media (min-width: 576px) {
  .comment-widget .comment-widget {
    padding: 20px 30px 40px 30px;
  }
}
@media (min-width: 768px) {
  .comment-widget .comment-widget {
    padding: 20px 30px 40px 60px;
  }
}
@media (min-width: 992px) {
  .comment-widget .comment-widget {
    padding: 54px 30px 54px 100px;
  }
}
.comment-widget textarea {
  padding-top: 9px;
  padding-bottom: 9px;
  border-color: transparent;
  border-bottom: 1px solid #121127;
  width: 100%;
}
.comment-widget textarea:focus {
  border-color: transparent;
  border-bottom-color: #4C40F7;
  outline: none;
}

.pagination {
  margin-top: 50px;
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.pagination .page-item .page-link {
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.09);
  border: 0;
  transition: 0.3s;
  color: #000000;
  margin-left: 10px;
  margin-right: 10px;
  background-color: #fff;
}
.pagination .page-item .page-link:hover {
  background-color: #432CF3;
  color: #fff;
}

.list-style-check {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: left;
  margin-bottom: 0;
}
.list-style-check li {
  display: flex;
  column-gap: 13px;
  font-weight: 600;
  line-height: 1.42;
  color: #0C1523;
  font-size: 18px;
}
@media (min-width: 576px) {
  .list-style-check li {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .list-style-check li {
    font-size: 24px;
  }
}
.list-style-check li img {
  max-width: 22px;
  max-height: 22px;
}
@media (min-width: 576px) {
  .list-style-check li img {
    max-width: 34px;
    max-height: 34px;
  }
}

.list-social {
  --color: #0C1523;
  --hovBackground: #432CF3;
  --hovColor: #FFFFFF;
  display: inline-flex;
  column-gap: 12px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.list-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  border-radius: 500px;
  font-size: 14px;
  border: 1px solid var(--color);
  color: var(--color);
  transition: 0.4s;
}
.list-social li a:hover {
  color: var(--hovColor);
  background-color: var(--hovBackground);
  border-color: var(--hovBackground);
}
.list-social--dark {
  --border-color: rgba(255, 255, 255, 0.1);
  --color: #FFFFFF;
  --hovBackground: #FFFFFF;
  --hovColor: #121127;
}

/* Footer Common Styles */
.footer-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 30px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  margin-bottom: 0;
}
.footer-list li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #7F8995;
  transition: 0.4s;
}
.footer-list li a:hover {
  color: #432CF3;
}
.footer-list--inline {
  flex-direction: row;
  row-gap: 5px;
  flex-wrap: wrap;
  column-gap: 20px;
}
@media (min-width: 992px) {
  .footer-list--inline {
    column-gap: 50px;
  }
}
.footer-list--item-darker li a {
  color: #495460;
}

.copyright-block p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #7F8995;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 15px;
  position: relative;
}
.footer-newsletter__form input {
  border-radius: 8px;
  border: 1px solid #EAEDF0;
  width: 100%;
  font-family: "General Sans";
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #98A5B3;
  background: #F3F7FA;
  padding-left: 18px;
  padding-right: 20px;
  height: 50px;
}
@media (min-width: 480px) {
  .footer-newsletter__form input {
    height: 60px;
    padding-right: 170px;
  }
}
.footer-newsletter__form input:focus {
  background: #F3F7FA;
  box-shadow: none;
  outline: none;
  border-color: transparent;
}
.footer-newsletter__form p {
  font-family: "General Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #7F8995;
}
.footer-newsletter .btn {
  height: 50px;
}
@media (min-width: 480px) {
  .footer-newsletter .btn {
    position: absolute;
    right: 5px;
    top: 5px;
  }
}
.footer-newsletter p {
  font-size: 14px;
  line-height: 1.43;
  color: #7F8995;
}

.footer-brand {
  width: 104px;
}
.footer-brand img {
  width: 100%;
}

.copyright-divider {
  border-top: 1px solid #EAEDF0;
}

.copyright-divider-dark {
  border-top: 1px solid rgba(73, 84, 96, 0.3);
}

.footer-v1 {
  padding-top: 120px;
}
.footer-v1 .row--footer-main {
  --gutter-y:40px;
  --gutter-x:60px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .footer-v1 .row--footer-main {
    padding-bottom: 60px;
    justify-content: space-between;
    --gutter-x:24px;
  }
}
@media (min-width: 992px) {
  .footer-v1 .row--footer-main {
    padding-bottom: 80px;
    justify-content: space-between;
    --gutter-x:24px;
  }
}
.footer-v1 .copyright-block {
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-v1__content-block {
  max-width: 248px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.footer-v1__content-block p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #7F8995;
}
.footer-v1__content-block .list-social {
  margin-top: 20px;
}

.footer-v2 {
  padding-top: 80px;
}
.footer-v2 .row--footer-main {
  --gutter-y:40px;
  --gutter-x: 40px;
  justify-content: center;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-v2 .row--footer-main {
    max-width: 100%;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .footer-v2 .row--footer-main {
    padding-bottom: 100px;
    justify-content: space-between;
  }
}
.footer-v2__content-block {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-v2__content-block {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 992px) {
  .footer-v2__content-block {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
  }
}
.footer-v2__widget-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  max-width: 363px;
}
.footer-v2 .copyright-block {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  row-gap: 20px;
  column-gap: 20px;
}
@media (min-width: 992px) {
  .footer-v2 .copyright-block {
    justify-content: space-between;
    text-align: initial;
  }
}
.footer-v2 .copyright-block p {
  color: #495460;
}
@media (max-width: 991px) {
  .footer-v2 .footer-list {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .footer-v2 .footer-copyright {
    text-align: right;
  }
}

.footer-v3 {
  padding-top: 60px;
  /* Footer V4 Main Block Row */
  /* Footer V4 Newsletter Adjustments */
  /* Footer V4 Copyright */
}
@media (min-width: 768px) {
  .footer-v3 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .footer-v3 {
    padding-top: 100px;
  }
}
.footer-v3 .row--footer-main {
  padding-bottom: 60px;
  --gutter-y: 40px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .footer-v3 .row--footer-main {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .footer-v3 .row--footer-main {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .footer-v3 .footer-newsletter {
    width: 450px;
  }
}
.footer-v3__copyright-section {
  padding-top: 38px;
  padding-bottom: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  row-gap: 20px;
  column-gap: 20px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer-v3__copyright-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: initial;
  }
}
.footer-v3__copyright-section p {
  color: #495460;
}
.footer-v3__copyright-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 18px;
}
@media (min-width: 768px) {
  .footer-v3__copyright-block {
    flex-direction: row;
  }
  .footer-v3__copyright-block .footer-brand-wrapper {
    display: flex;
    align-items: center;
  }
  .footer-v3__copyright-block .footer-brand-wrapper::after {
    content: "";
    width: 1px;
    height: 20px;
    display: inline-block;
    background-color: #B8C1CC;
    margin-left: 50px;
    margin-right: 20px;
  }
}
.footer-v3__copyright-block .footer-copyright p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  text-align: center;
  color: #B8C1CC;
}

.footer-v4 {
  padding-top: 60px;
}
@media (min-width: 5756px) {
  .footer-v4 {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .footer-v4 {
    padding-top: 120px;
  }
}
.footer-v4__row-wrap {
  max-width: 1166px;
  margin-left: auto;
  margin-right: auto;
}
.footer-v4 .row--footer-main {
  --gutter-y:40px;
  --gutter-x:60px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .footer-v4 .row--footer-main {
    padding-bottom: 60px;
    justify-content: space-between;
    --gutter-x:24px;
  }
}
@media (min-width: 992px) {
  .footer-v4 .row--footer-main {
    padding-bottom: 80px;
    justify-content: space-between;
    --gutter-x:24px;
  }
}
.footer-v4 .copyright-block {
  padding-top: 38px;
  padding-bottom: 38px;
}
.footer-v4 .cta-section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-v4 .cta-section {
    margin-bottom: 80px;
  }
}

.footer-dark {
  background-color: #0C1523;
}
.footer-dark .copyright-block {
  border-color: rgba(73, 84, 96, 0.3);
}
.footer-dark .footer-list li a {
  color: #B8C1CC;
}
.footer-dark .footer-list li a:hover {
  color: #FFFFFF;
}
.footer-dark .footer-title {
  color: #FFFFFF;
}
.footer-dark .list-social {
  --border-color: rgba(255, 255, 255, 0.1);
  --color: #FFFFFF;
  --hovBackground: #FFFFFF;
  --hovColor: #121127;
}
.footer-dark .copyright-divider {
  border-color: rgba(73, 84, 96, 0.3);
}

.footer-primary-bg {
  background-color: #432CF3;
}
.footer-primary-bg .copyright-block {
  border-color: rgba(73, 84, 96, 0.3);
}
.footer-primary-bg p {
  color: #EAEDF0;
}
.footer-primary-bg .footer-list li a {
  color: #EAEDF0;
}
.footer-primary-bg .footer-list li a:hover {
  color: #FFFFFF;
}
.footer-primary-bg .footer-title {
  color: #FFFFFF;
}
.footer-primary-bg .list-social {
  --border-color: rgba(255, 255, 255, 0.1);
  --color: #FFFFFF;
  --hovBackground: #FFFFFF;
  --hovColor: #121127;
}
.footer-primary-bg .copyright-divider {
  border-color: #553FFB;
}

.content-accordion__item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 600;
  line-height: 1.43;
  color: #0C1523;
  font-size: 18px;
}
@media (min-width: 992px) {
  .content-accordion__item .accordion-button {
    font-size: 21px;
  }
}
.content-accordion__item .accordion-button:focus {
  box-shadow: none;
}
.content-accordion__item .accordion-button:before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 13px;
  min-width: 16px;
  transition: 0.4s;
  transform: rotate(180deg);
}
.content-accordion__item .accordion-button:after {
  display: none;
}
.content-accordion__item .accordion-button.collapsed::before {
  transform: rotate(0deg);
}
.content-accordion__item__body {
  padding-left: 28px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
.content-accordion__item:not(:last-child) {
  border-bottom: 1px solid #EAEDF0;
}

.faq-accordion__item {
  padding-bottom: 13px;
}
.faq-accordion__item .accordion-button {
  padding-left: 0;
  padding-right: 0;
  padding-top: 22px;
  padding-bottom: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #0C1523;
  font-size: 16px;
}
@media (min-width: 576px) {
  .faq-accordion__item .accordion-button {
    font-size: 18px;
  }
}
.faq-accordion__item .accordion-button i {
  margin-right: 8px;
  font-size: 15px;
  color: #432CF3;
}
.icon-green .faq-accordion__item .accordion-button i {
  color: #2AD590;
}
.faq-accordion__item .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion__item .accordion-button:before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  order: 2;
  width: 16px;
  height: 16px;
  font-size: 14px;
  transition: 0.4s;
  transform: rotate(180deg);
  transform-origin: center;
  transform-box: fill-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-accordion__item .accordion-button:after {
  display: none;
}
.faq-accordion__item .accordion-button.collapsed::before {
  transform: rotate(44deg);
}
.faq-accordion__item__body {
  padding-left: 28px;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
.faq-accordion__item__body p {
  font-size: inherit;
  font-weight: inherit;
}
.faq-accordion__item:not(:last-child) {
  border-bottom: 1px solid #EAEDF0;
}

.pricing-control {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 15px;
  flex-wrap: wrap;
}
.pricing-control__monthly, .pricing-control__yearly {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #0C1523;
  cursor: pointer;
  display: flex;
  position: relative;
}
.pricing-control__monthly::before, .pricing-control__yearly::before {
  display: inline-block;
  margin-right: 7px;
  height: 16px;
  width: 16px;
  background-color: white;
  border: 1px solid #B8C1CC;
  border-radius: 500px;
  content: "";
}
.pricing-control__yearly span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #2563EB;
  margin-left: 7px;
}
.pricing-control .active::before {
  background: white;
  border: 5px solid #432CF3;
}

.pricing-control-2 {
  min-width: 220px;
  border: 1px solid #CBD2D9;
  border-radius: 10px;
  display: inline-flex;
  padding: 5px;
}
.pricing-control-2 > * {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: 500;
}
.pricing-control-2 > *.active {
  color: #FFFFFF;
}
.pricing-control-2 > *:first-of-type::before {
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  background-color: #432CF3;
  z-index: -1;
  transition: 0.4s;
}
.pricing-control-2 > *:first-of-type.active::before {
  left: 0%;
}

/* ======== Newsletter Section =========== */
/* Newsletter form */
.newsletter-form-1 {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  position: relative;
  z-index: 1;
}
.newsletter-form-1 input.form-control {
  width: 100%;
  border: 1.5px solid #EAEDF0;
  border-radius: 12px;
  padding-left: 24px;
  padding-right: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #495460;
  background: #FFFFFF;
  height: 60px;
  box-shadow: none;
}
@media (min-width: 576px) {
  .newsletter-form-1 input.form-control {
    height: 72px;
    padding-right: 240px;
  }
}
@media (min-width: 992px) {
  .newsletter-form-1 input.form-control {
    padding-right: 240px;
  }
}
.newsletter-form-1__button-wrapper {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .newsletter-form-1__button-wrapper {
    position: absolute;
    right: 5px;
    top: 6px;
    text-align: initial;
    margin-top: initial;
  }
}
.newsletter-form-1__button-wrapper .btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.56;
  color: #FFFFFF;
  height: 55px;
}
@media (min-width: 576px) {
  .newsletter-form-1__button-wrapper .btn {
    height: 60px;
    font-size: 18px;
  }
}
.newsletter-form-1--dark {
  background: transparent;
  border: 1.5px solid #E5EAF1;
  letter-spacing: 0.5px;
  color: #B8C1CC;
}
.newsletter-form-1--dark input {
  letter-spacing: 0.5px;
}

/* Contact Form / Quote Form */
.contact-form-box {
  background-color: #fff;
  padding-left: 42px;
  padding-right: 42px;
  padding-top: 37px;
  padding-bottom: 42px;
  border-radius: 8px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.contact-form-box .input-wrapper {
  margin-bottom: 17px;
}
.contact-form-box label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #0C1523;
  margin-bottom: 8px;
}
.contact-form-box .form-control {
  height: 48px;
  border: 1px solid #EAEDF0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #7F8995;
}
.contact-form-box .form-control::placeholder {
  color: #7F8995;
}
.contact-form-box .form-control:focus {
  box-shadow: none;
  outline: none;
}
.contact-form-box .form-button .btn {
  height: 50px;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.blog-comment-box__text-block {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-comment-box__text-block {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .blog-comment-box__text-block {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .blog-comment-box__text-block {
    margin-bottom: 60px;
  }
}
.blog-comment-box__text-block p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 12px;
}
.blog-comment-box .form-control {
  border: 1px solid rgba(18, 20, 29, 0.2);
  border-radius: 10px;
  padding: 18px 20px;
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-family: inherit;
  box-shadow: 0px 7px 26px #F5F4FC;
  margin-bottom: 20px;
}
.blog-comment-box .form-control::placeholder {
  color: rgba(18, 20, 29, 0.6);
}
.blog-comment-box .form-control:focus, .blog-comment-box .form-control:active {
  outline: none;
}
.blog-comment-box .form-control.textarea {
  height: 285px;
}
.blog-comment-box__form-input-group {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .blog-comment-box__form-input-group {
    flex-direction: row;
  }
}
.blog-comment-box__form-input-group input:first-child {
  margin-right: 22px;
}
.blog-comment-box .agreement-box {
  margin-bottom: 30px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.blog-comment-box .agreement-box #subscribe {
  margin-top: 6px;
}
.blog-comment-box .agreement-box p {
  font-size: 16px;
  line-height: 24px;
}

.input-wrapper {
  width: 100%;
  position: relative;
  box-shadow: 0px 7px 26px #F5F4FC;
}
.input-wrapper:not(.overflow-none) {
  overflow: hidden;
}
.input-wrapper .form-control {
  border: none;
  box-shadow: none;
  border: 1px solid rgba(18, 20, 29, 0.6);
  border-radius: 10px;
}
.input-wrapper .form-control:focus + .input-icon i,
.input-wrapper .form-control:focus + .input-icon img {
  opacity: 1;
}
.input-wrapper .input-icon {
  height: 100%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: auto;
  font-size: 20px;
  color: #432CF3;
}
.input-wrapper .input-icon--left {
  left: 0;
  right: auto;
}
.input-wrapper .input-icon i,
.input-wrapper .input-icon img {
  opacity: 0.5;
}

.blog-post__image {
  border-radius: 20px;
  margin-bottom: 30px;
}
.blog-post__image img {
  width: 100%;
  border-radius: inherit;
}
.blog-post__title {
  font-weight: 600;
  line-height: 1.42;
  font-size: 20px;
  margin-bottom: 15px;
  color: #0C1523;
}
@media (min-width: 576px) {
  .blog-post__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .blog-post__title {
    font-size: 24px;
  }
}
.blog-post p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.56;
  color: #495460;
}
@media (min-width: 576px) {
  .blog-post p {
    font-size: 18px;
  }
}
.blog-post__link {
  margin-top: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #0C1523;
}
.blog-post__link:hover {
  color: #432CF3;
}

.blog-post--card {
  border-radius: 25px;
  box-shadow: 4px 15px 45px rgba(213, 211, 237, 0.38);
  background: #fff;
}
.blog-post--card .blog-post__image {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  height: 300px;
}
@media (min-width: 992px) {
  .blog-post--card .blog-post__image {
    height: 325px;
  }
}
.blog-post--card .blog-post__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-post--card .blog-post__author-img {
  min-width: 36px;
  min-height: 36px;
}
.blog-post--card .blog-post__author-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-post--card .blog-post__title {
  font-size: 26px;
  line-height: 1.31;
  margin-bottom: 40px;
}
.blog-post--card p {
  margin-bottom: 32px;
}
.blog-post--card .blog-post__body {
  padding: 32px 30px;
}

.blog-image-card {
  border-radius: 10px;
  position: relative;
}
.blog-image-card .blog-post__image {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
  height: 100%;
  min-height: 300px;
}
.blog-image-card .blog-post__image img {
  width: 100%;
}
.blog-image-card .blog-post__title {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.31;
  color: #FFF;
}
.blog-image-card .blog-post__body {
  text-align: center;
  --space: 30px;
  background-color: rgba(67, 44, 243, 0.9);
  border-radius: 10px;
  position: absolute;
  bottom: var(--space);
  left: var(--space);
  right: var(--space);
  padding: 25px 16%;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}
.blog-image-card .blog-post__body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b6b6b;
}

.blog-post--widget-2 {
  border-bottom: 1.5px solid #e8e8e8;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 480px) {
  .blog-post--widget-2 {
    flex-direction: row;
    gap: 28px;
  }
}
@media (min-width: 1200px) {
  .blog-post--widget-2 {
    gap: 28px;
  }
}
.blog-post--widget-2 .blog-post__image {
  min-width: 125px;
  max-width: 125px;
  min-height: 125px;
  max-height: 125px;
  border-radius: 15px;
}
@media (min-width: 1200px) {
  .blog-post--widget-2 .blog-post__image {
    min-width: 175px;
    max-width: 175px;
    min-height: 175px;
    max-height: 175px;
    border-radius: 15px;
  }
}
.blog-post--widget-2 .blog-post__title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-post--widget-2 p {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .blog-post--widget-2 p {
    margin-bottom: 25px;
  }
}

.blog-post--widget {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
@media (min-width: 480px) {
  .blog-post--widget {
    flex-direction: row;
    row-gap: 28px;
  }
}
@media (min-width: 1200px) {
  .blog-post--widget {
    gap: 28px;
  }
}
.blog-post--widget .blog-post__image {
  min-width: 155px;
  max-width: 155px;
  min-height: 173px;
  max-height: 173px;
  height: 173px;
  width: 155px;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .blog-post--widget .blog-post__image {
    min-width: 175px;
    max-width: 175px;
    min-height: 193px;
    max-height: 193px;
    height: 193px;
    width: 175px;
  }
}
.blog-post--widget .blog-post__title {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .blog-post--widget .blog-post__title {
    font-size: 26px;
  }
}
.blog-post--widget p {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .blog-post--widget p {
    margin-bottom: 25px;
  }
}

.blog-post--sidebar {
  background: transparent;
  border-bottom: 1.5px solid #f4f4f4;
}
.blog-post--sidebar .blog-post__image {
  border-radius: 10px;
  height: 211px;
}
.blog-post--sidebar .blog-post__title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #000;
}
.blog-post--sidebar .blog-post__title:hover {
  color: #432CF3;
}
.blog-post--sidebar p {
  margin-bottom: 20px;
}
.blog-post--sidebar .blog-post__body {
  padding: 25px 0 32px;
  color: #6b6b6b;
}

.blog-post--sidebar-v2 {
  background: transparent;
  display: flex;
  column-gap: 20px;
}
.blog-post--sidebar-v2 .blog-post__image {
  border-radius: 10px;
}
.blog-post--sidebar-v2 .blog-post__image img {
  width: 124px;
  height: 124px;
}
.blog-post--sidebar-v2 .blog-post__title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #000;
}
.blog-post--sidebar-v2 .btn-link {
  color: #432CF3;
}
.blog-post--sidebar-v2 .blog-post__body {
  padding: initial;
  color: #6b6b6b;
}

.blog-tags {
  display: flex;
  column-gap: 12px;
}

.blog-single-tag {
  padding: 10px 24px;
  border: 1.5px solid #E8E8E8;
  border-radius: 10px;
  color: #686868;
}

.blog-share-block {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.blog-share__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #121127;
}
.blog-share__icon {
  margin: 0;
  width: 30px;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.site-menu-main {
  margin-bottom: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .site-menu-main {
    display: flex;
    margin-bottom: 0;
    padding-left: 0;
  }
}
.site-menu-main li {
  list-style: none;
}
.site-menu-main ul {
  list-style: none;
  margin-left: 0;
}
.site-menu-main a {
  text-decoration: none;
}

.site-menu-main .nav-item {
  display: inherit;
}
.site-menu-main .nav-link-item {
  color: #090914;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  position: relative;
}
@media (min-width: 992px) {
  .site-menu-main .nav-link-item {
    padding-top: 25px !important;
    padding-bottom: 23px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}
@media (min-width: 1200px) {
  .site-menu-main .nav-link-item {
    padding-top: 25px !important;
    padding-bottom: 23px !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}

.site-menu-main .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #fff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  transition: opacity 0.3s ease, top 0.3s ease, margin-top 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -999;
  display: flex;
  column-gap: 92px;
  min-width: 237px;
  /* megamenu standard */
  /* Gallery Menu */
  /* Standard Media*/
}
.site-menu-main .sub-menu:not(.megamenu) {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu {
    top: 100%;
    left: 0;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu .sub-menu {
    top: 0 !important;
    left: 100%;
  }
}
.site-menu-main .sub-menu--row {
  display: flex;
}
.site-menu-main .sub-menu--item {
  color: #090914 !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  transition: 0.4s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
  .site-menu-main .sub-menu--item:not(.site-menu-main .sub-menu--item:last-child) {
    margin-bottom: 7px;
  }
}
.site-menu-main .sub-menu--item > a {
  color: inherit;
  transition: 0.4s;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item > a {
    transition: 0.4s;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.site-menu-main .sub-menu--item > a > i {
  min-width: 10px;
  max-width: 10px;
  min-height: 10px;
  max-height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-menu-main .sub-menu--item:hover > a {
  color: #432CF3;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu--item:first-child a {
    padding-top: 0;
    padding-bottom: 2px;
  }
}
.site-menu-main .sub-menu--item:last-child {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.site-menu-main .sub-menu--item:last-child a {
  padding-bottom: 0;
}
.site-menu-main .sub-menu--item_standard-media-text h3 {
  font-size: 21px;
}
.site-menu-main .sub-menu_title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  color: #7F8995;
  text-transform: uppercase;
  margin-bottom: 30px;
  white-space: nowrap;
}
.site-menu-main .sub-menu_title--margin-top {
  margin-top: 30px;
}
.site-menu-main .sub-menu_list-block {
  width: 100%;
}
.site-menu-main .sub-menu_list-block .sub-menu_list {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.site-menu-main .sub-menu_item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  padding: 9px 28px;
}
.site-menu-main .sub-menu_item a:hover {
  color: #432CF3;
}
.site-menu-main .sub-menu_item--light a {
  font-weight: 500;
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu_item .child-sub ~ .sub-menu {
    margin-top: 30px;
    padding-top: 5px;
  }
}
.site-menu-main .sub-menu.megamenu--standard > div {
  width: 33.33%;
}
.site-menu-main .sub-menu_standard-list-block .sub-menu_item {
  display: flex;
  column-gap: 18px;
  white-space: nowrap;
}
.site-menu-main .sub-menu_standard-list-block .sub-menu_item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #0C1523;
}
.site-menu-main .sub-menu_standard-list-block .sub-menu_item p {
  font-size: 14px;
}
.site-menu-main .sub-menu_standard-list-block .sub-menu_item:not(:last-of-type) {
  margin-bottom: 24px;
}
.site-menu-main .sub-menu_gallery-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu_gallery-list > li {
    width: 16.66%;
  }
}
.site-menu-main .sub-menu_gallery-item {
  width: 100%;
  padding: 11px;
  text-align: center;
}
.site-menu-main .sub-menu_gallery-item:hover .sub-menu_gallery-item-image {
  transform: translateY(-8px);
}
.site-menu-main .sub-menu_gallery-item-image {
  border-radius: 9px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.site-menu-main .sub-menu_gallery-item-image img {
  width: 100%;
}
.site-menu-main .sub-menu_gallery-item p {
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #090914;
}
.site-menu-main .sub-menu_standard-media-image {
  margin-bottom: 20px;
}
.site-menu-main .sub-menu_standard-media h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.site-menu-main .sub-menu_standard-media p {
  font-size: 16px;
  font-weight: 400;
}
.site-menu-main .has-megamenu .sub-menu {
  padding: 20px 30px;
}
.site-menu-main .has-megamenu .sub-menu_item a {
  padding: 0;
}
.site-menu-main .has-megamenu .sub-menu_list-block .sub-menu_list {
  row-gap: 20px;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu {
    background-color: #FFFFFF;
  }
}
.site-menu-main .sub-menu.megamenu .dropdown-image-block {
  max-height: 336px;
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu.megamenu {
    border: 0;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    min-width: 925px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    will-change: transform;
    box-shadow: 0 42px 54px rgba(0, 0, 0, 0.09);
    border: 1px solid #e7e9ed;
    border-radius: 8px;
    visibility: hidden;
    z-index: -99;
    opacity: 0;
    pointer-events: none;
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-center {
    transform: translate(-50%, 10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-right {
    right: 0%;
    transform: translate(-12%, 10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-left {
    left: 0%;
    transform: translate(-16%, 10px);
  }
}
@media (min-width: 1200px) {
  .site-menu-main .sub-menu.megamenu:not(.megamenu--sm) {
    min-width: 1300px;
  }
  .site-menu-main .sub-menu.megamenu.megamenu--sm {
    max-width: 1160px;
    width: 100%;
    column-gap: normal;
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-center {
    transform: translate(-50%, 10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-right {
    right: 0%;
    transform: translate(-12%, 10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-left {
    left: 0%;
    transform: translate(-13%, 10px);
  }
}
@media (min-width: 1200px) {
  .site-menu-main .sub-menu.megamenu.megadropdown-center {
    transform: translate(-50%, -10px);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-right {
    right: 0%;
    transform: translate(-12%, 0);
  }
  .site-menu-main .sub-menu.megamenu.megadropdown-left {
    left: 0%;
    transform: translate(-12%, 0);
  }
}
.site-menu-main .sub-menu.megamenu .single-dropdown-block .mega-drop-menu-item {
  padding-top: 14px;
  padding-bottom: 14px;
  display: block;
}
.site-menu-main .sub-menu.megamenu .single-dropdown-block h3 {
  color: rgba(128, 0, 128, 0.5) !important;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  transition: 0.4s;
  margin-left: 10px;
  padding-top: 12px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu .single-dropdown-block h3 {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
  }
}
.site-menu-main .sub-menu.megamenu .single-dropdown-block .mega-drop-menu-item {
  padding-top: 8px;
  padding-bottom: 8px;
  display: block;
}
.site-menu-main .sub-menu.megamenu .single-dropdown-block a {
  color: #090914 !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  transition: 0.4s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu .single-dropdown-block a {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
  }
}
.site-menu-main .sub-menu.megamenu .single-dropdown-block a:hover {
  color: #432CF3;
}
.site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.4s;
  color: #000;
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
    color: var(--color-headings);
    border-top: 1px solid var(--border-color-3);
    padding-left: 20px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
}
@media (min-width: 992px) {
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .site-menu-main .sub-menu.megamenu .mega-drop-menu-item:hover {
    color: #432CF3 !important;
  }
}
@media (max-width: 991px) {
  .site-menu-main .sub-menu.megamenu [class*=col-] {
    padding-left: 0;
    padding-right: 0;
  }
  .site-menu-main .sub-menu.megamenu [class*=row-] {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  li.nav-item-has-children:not(.has-megamenu) {
    position: relative;
  }
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    z-index: 99;
    pointer-events: visible;
    border-radius: 8px;
    border: 1px solid #EAEDF0;
  }
  li.nav-item-has-children:hover > .sub-menu.megamenu {
    top: 78%;
  }
}
@media (min-width: 992px) {
  li.nav-item-has-children:hover .drop-trigger:not(.child-sub)::before {
    top: 88%;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}

.site-menu-main > li .sub-menu > ul > li > a {
  display: inline-block;
  font-size: 15px;
  color: #555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.site-menu-main > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}

/*responsive*/
@media (max-width: 991px) {
  .site-header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .site-header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #090914;
    width: 24px;
    position: relative;
  }
  .site-header .mobile-menu-trigger span:before,
  .site-header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #090914;
  }
  .dark-mode-texts .mobile-menu-trigger span {
    background-color: #FFFFFF;
  }
  .dark-mode-texts .mobile-menu-trigger span:before,
  .dark-mode-texts .mobile-menu-trigger span:after {
    background-color: #FFFFFF;
  }
  .site-header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .site-header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .site-header .item-right {
    align-items: center;
  }
  .site-header .menu-block {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    z-index: 1099;
  }
  .site-header .menu-block.active {
    transform: translate(0%);
  }
  .transition {
    transition: all 0.5s ease;
  }
  .site-menu-main > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .site-menu-main > li > a {
    line-height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .site-menu-main > li > a {
    display: block;
  }
}
@media (max-width: 991px) {
  .site-menu-main > li > a i {
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(-90deg);
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header .menu-block .mobile-menu-head {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .site-header .menu-block .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .site-header .menu-block .mobile-menu-head.active .go-back {
    display: block;
  }
  .site-header .menu-block .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    visibility: hidden;
  }
  .site-header .menu-block .mobile-menu-head.active .current-menu-title {
    visibility: visible;
  }
  .site-header .menu-block .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .site-header .menu-block .site-menu-main {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .site-menu-main > li .sub-menu.mega-menu,
  .site-menu-main > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px 15px 60px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 50px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .site-menu-main > li .sub-menu.active {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin-top: 40px;
    z-index: 99;
    padding-bottom: 70px;
  }
  .site-menu-main > li .sub-menu > ul > li > a,
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .site-menu-main > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
}
/*Custom Css for menu*/
@media (min-width: 992px) {
  .site-menu-main a {
    display: flex;
    align-items: center;
  }
  .site-menu-main i {
    margin-left: 15px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) and (min-width: 992px) {
  .site-header--menu-center .menu-block-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.nav-item-has-children a {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .reveal-header .site-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .reveal-header .nav-link-item {
    cursor: pointer;
    color: #090914 !important;
  }
}

@media (min-width: 992px) {
  .reveal-header li.nav-item-has-children:hover > .sub-menu {
    top: 100%;
  }
  .reveal-header li.nav-item-has-children:hover > .sub-menu.megamenu {
    top: 100%;
  }
}

.menu-block.active .nav-link-item {
  color: #090914 !important;
}

@media (min-width: 480px) {
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
}
/*Preloader css*/
div#loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

div#loading img {
  z-index: 9999;
  width: 25%;
}
@media (min-width: 567px) {
  div#loading img {
    width: 17%;
  }
}
@media (min-width: 768px) {
  div#loading img {
    width: 15%;
  }
}
@media (min-width: 992px) {
  div#loading img {
    width: 7%;
  }
}

/*Header Css StaRT*/
.site-navbar {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .site-navbar {
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-top: 0px;
  }
}
.site-navbar .menu-block-wrapper {
  flex-grow: 1;
  align-items: center;
}
@media (min-width: 992px) {
  .site-navbar .menu-block-wrapper {
    display: flex !important;
    flex-basis: auto;
    justify-content: center;
  }
}

.site-header {
  padding-top: 6px;
  padding-bottom: 6px;
  background-color: transparent;
}
.site-header .logo-light {
  display: block;
}
.site-header .logo-dark {
  display: none;
}
.site-header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.site-header--sticky:not(.mobile-sticky-enable) {
  position: absolute !important;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 992px) {
  .site-header--sticky:not(.mobile-sticky-enable) {
    position: fixed !important;
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).scrolling {
    transform: translateY(-100%);
    transition: 0.4s;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header {
    transform: translateY(0%);
    box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
    z-index: 1000;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header a {
    color: red;
  }
  .site-header--sticky:not(.mobile-sticky-enable).reveal-header .btn-link {
    color: var(--color-headings-2);
  }
}
.site-header--sticky.mobile-sticky-enable {
  top: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  position: fixed !important;
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.scrolling {
  transform: translateY(-100%);
  transition: 0.4s;
}
.site-header--sticky.mobile-sticky-enable.reveal-header {
  transform: translateY(0%);
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
  z-index: 9999;
  height: 100%;
  background-color: transparent !important;
}
.site-header--sticky.mobile-sticky-enable.reveal-header .site-navbar {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 5px;
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
}
@media (min-width: 768px) {
  .site-header--sticky.mobile-sticky-enable.reveal-header {
    height: auto;
  }
}
.site-header--menu-center .container {
  position: relative;
}
.site-header--menu-center .menu-block-wrapper {
  position: static;
}
@media (min-width: 992px) {
  .site-header--menu-center .menu-block {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .sub-menu.megamenu {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-left .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-50%) translateY(-2px);
    left: 50%;
  }
}
.site-header--menu-left .menu-block .site-menu-main {
  justify-content: flex-start;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  .site-header--menu-left .menu-block {
    width: 100%;
  }
}
.site-header--menu-right .menu-block {
  margin-left: auto;
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .sub-menu.megamenu {
    left: 100%;
    transform: translateX(-100%) translateY(10px);
  }
}
@media (min-width: 992px) {
  .site-header--menu-right > .container-fluid .nav-item.has-megamenu:hover > .sub-menu {
    transform: translateX(-100%) translateY(-10px);
    left: 100%;
  }
}
.site-header--dark .nav-link-item {
  color: #fff;
}
.site-header--dark .btn {
  color: #fff;
}
.site-header--dark .btn--outline {
  border-color: #fff;
}
.site-header--dark .btn--outline:hover {
  background-color: #fff;
  color: #432CF3;
}
.site-header--dark .btn:hover {
  color: #432CF3;
}
.site-header--dark .logo-light {
  display: none;
}
.site-header--dark .logo-dark {
  display: block;
}
.site-header .header-cta-btn-wrapper {
  display: none;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-wrapper {
    display: flex;
    align-items: center;
  }
}
.site-header .header-cta-btn-wrapper a .icon {
  margin-right: 10px;
}
.site-header .header-cta-btn-mobile {
  display: block;
  padding-top: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .site-header .header-cta-btn-mobile {
    display: none;
  }
}

@media (min-width: 480px) {
  .header-btns {
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .header-btns {
    margin-right: 0;
  }
}

.brand-logo img {
  max-height: 30px;
}

.dynamic-sticky-bg.reveal-header {
  background: var(--bg);
}
.dynamic-sticky-bg.dark-mode-texts .menu-block.active .nav-link-item {
  color: red !important;
}
.dynamic-sticky-bg.dark-mode-texts .menu-social-share li a {
  color: var(--color-headings-2);
}

.sticky-bg-white.reveal-header {
  background: #fff;
}
.sticky-bg-white.reveal-header .dark-version-logo {
  display: none !important;
}
.sticky-bg-white.reveal-header .light-version-logo {
  display: block !important;
}
.sticky-bg-white.reveal-header .menu-sep-left {
  position: relative;
}
.sticky-bg-white.reveal-header .menu-sep-left::before {
  content: "";
  border-left: rgba(255, 0, 0, 0.5) !important;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 26px;
  z-index: 9;
}

.social-icons-list {
  display: inline-flex;
  list-style: none;
  column-gap: 13px;
  margin-bottom: 0;
}
.social-icons-list li a {
  font-size: 14px;
  background-color: #27272A;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  border-radius: 500px;
  transform: rotate(0deg);
  transition: 0.4s transform;
}
.social-icons-list li a:hover {
  background-color: #432CF3;
  transform: rotate(-10deg);
}
.social-icons-list--outline li a {
  font-size: 16px;
  border: 1px solid #27272A;
  background-color: #fff;
  color: #432CF3;
}
.social-icons-list--outline li a:hover {
  background-color: #432CF3;
  color: #fff;
}

/*=========== Stat single styles ==========*/
.stat-single {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  row-gap: 12px;
}
@media (min-width: 992px) {
  .stat-single {
    align-items: initial;
    text-align: initial;
  }
}
.stat-single__count {
  color: #fff;
}
.stat-single__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #EAEDF0;
}
.light-mode .stat-single .stat-single__count {
  color: #432CF3;
}
.light-mode .stat-single .stat-single__text {
  color: #495460;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .stats-row {
    justify-content: space-between;
  }
}
.stats-row--three-column {
  max-width: 1104px;
}
@media (min-width: 768px) {
  .stats-row--three-column .stat-single-wrapper {
    max-width: 221px;
  }
}
.stats-row--three-column-2 {
  max-width: 1020px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .stats-row--three-column-2 .stat-single-wrapper {
    max-width: calc(33.3333% - 30px);
  }
}
@media (min-width: 992px) {
  .stats-row--three-column-2 .stat-single-wrapper {
    max-width: 100%;
  }
}
.stats-row--three-column-2 .stat-single {
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-row--three-column-2 .stat-single {
    align-items: initial;
    text-align: initial;
  }
}
@media (min-width: 768px) {
  .stats-row--four-column .stat-single-wrapper {
    max-width: calc(25% - 30px);
  }
}
@media (min-width: 992px) {
  .stats-row--four-column .stat-single-wrapper {
    max-width: 100%;
  }
}

/*=========== Stat 2 single styles ==========*/
.stat-2-single {
  text-align: center;
}
.stat-2-single__count {
  color: #0C1523;
  margin-bottom: 20px;
}
.stat-2-single__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.42;
  color: #0C1523;
  margin-bottom: 14px;
}
.stat-2-single p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}
@media (min-width: 992px) {
  .stat-2-single {
    text-align: initial;
  }
}

@media (max-width: 991px) {
  .content-image--mobile-width {
    display: inline-block;
    max-width: 320px;
  }
}
@media (max-width: 479px) {
  .content-image--mobile-width {
    max-width: 260px;
  }
}

.content-title {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .content-title {
    margin-bottom: 37px;
  }
}

.content-text {
  color: #495460;
}

.row--content-center {
  --gutter-y:30px;
  align-items: center;
  justify-content: center;
}

.row--content-reversed-center {
  --gutter-y:30px;
}
@media (min-width: 992px) {
  .row--content-reversed-center {
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px) {
  .row--mobile-all-center {
    text-align: center;
    justify-content: center;
  }
}

.integrate-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .integrate-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .integrate-section {
    padding-top: 100px;
    padding-bottom: 130px;
  }
}
.integrate-section .section-heading {
  text-align: center;
}
.integrate-section .section-heading__title {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 87px;
}
.integrate-section .integrate-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 24px;
  justify-content: center;
}
.integrate-section__button {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .integrate-section__button {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .integrate-section__button {
    margin-top: 87px;
  }
}
.integrate-section__button .btn-integrate {
  background: #0C1523;
  border: 1px solid #0C1523;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  padding: 18px 30px;
}

.brands-row-2 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
@media (min-width: 992px) {
  .brands-row-2 {
    justify-content: space-between;
  }
}
.brands-row-2 .single-brand {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media (min-width: 480px) {
  .brands-row-2 .single-brand {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .brands-row-2 .single-brand {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .brands-row-2 .single-brand {
    width: auto;
  }
}
.brands-row-2 .single-brand img {
  width: 100%;
  max-width: auto;
}
@media (min-width: 1200px) {
  .brands-row-2 .single-brand img {
    width: auto;
    max-width: 100%;
  }
}

.row--testimonial-3 {
  --gutter-x:30px;
  --gutter-y:30px;
}
@media (min-width: 1200px) {
  .row--testimonial-3 {
    --gutter-x:50px;
  }
}
@media (min-width: 1400px) {
  .row--testimonial-3 {
    --gutter-x:128px;
  }
}
.row--testimonial-3 .testimonial-widget-3 {
  align-items: center;
}
@media (min-width: 992px) {
  .row--testimonial-3 .testimonial-widget-3 {
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .row--testimonial-3 .testimonial-widget-3 {
    align-items: center;
  }
}

/* ========== Testimonial masonry layout ============= */
.testimonial-masonry {
  row-gap: 30px;
  justify-content: center;
  column-count: 1;
  column-gap: 24px;
}
@media (min-width: 768px) {
  .testimonial-masonry {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .testimonial-masonry {
    column-count: 3;
  }
}
.testimonial-masonry-item {
  break-inside: avoid;
  vertical-align: top;
  margin-bottom: 24px;
}

.cta-style-1 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .cta-style-1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .cta-style-1 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.cta-style-1 .row--custom {
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .cta-style-1 .row--custom {
    flex-direction: row-reverse;
    text-align: initial;
    justify-content: initial;
    text-align: initial;
  }
}
.cta-style-1 .cta-image-block {
  display: none;
}
@media (min-width: 992px) {
  .cta-style-1 .cta-image-block {
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 37%;
    right: 0;
  }
}
.cta-style-1 .cta-text-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .cta-style-1 .cta-text-block {
    row-gap: 40px;
  }
}
@media (min-width: 992px) {
  .cta-style-1 .cta-text-block {
    align-items: initial;
  }
}
.cta-style-1 .cta-title {
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .cta-style-1 .cta-title {
    row-gap: 35px;
  }
}
.cta-style-1 .cta-texts p {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.62;
  color: #EAEDF0;
}
@media (min-width: 992px) {
  .cta-style-1 .cta-texts p {
    font-size: 21px;
  }
}
@media (min-width: 1200px) {
  .cta-style-1 .cta-texts p {
    font-size: 26px;
  }
}
@media (min-width: 1400px) {
  .cta-style-1 .cta-texts p {
    font-size: 21px;
  }
}

@media (min-width: 992px) {
  .cta-style-2 .section-heading {
    margin-bottom: 60px;
  }
}
.cta-style-2 .cta-content-block {
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-style-2 .cta-content-block p {
  font-weight: 500;
  line-height: 1.62;
  color: #EAEDF0;
}
@media (min-width: 575px) {
  .cta-style-2 .cta-content-block p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .cta-style-2 .cta-content-block p {
    font-size: 21px;
  }
}
.cta-style-2 .cta-button-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #B8C1CC;
  margin-top: 20px;
  display: block;
}

.cta-style-3 {
  background: #432CF3;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .cta-style-3 {
    padding-top: 85px;
  }
}
.cta-style-3 .row--custom {
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cta-style-3 .row--custom {
    justify-content: space-between;
  }
}
.cta-style-3 .cta-content-block {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .cta-style-3 .cta-content-block {
    row-gap: 60px;
    text-align: initial;
  }
}
.cta-style-3 .cta-text-block p {
  max-width: 526px;
  color: #EAEDF0;
}
@media (max-width: 992x) {
  .cta-style-3 .cta-text-block p {
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-style-3 .cta-title {
  color: #fff;
  margin-bottom: 35px;
}
.cta-style-3 .store-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (min-width: 992px) {
  .cta-style-3 .store-button-group {
    justify-content: initial;
  }
}
@media (min-width: 1400px) {
  .cta-style-3 .cta-image-block {
    padding-right: 85px;
  }
}
.cta-style-3 .cta-image-block img {
  width: 100%;
}

/*=========== Common : CTA Section styles ==========*/
.cta-style-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .cta-style-4 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .cta-style-4 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .cta-style-4 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.cta-style-4 .row--custom {
  justify-content: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .cta-style-4 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.cta-style-4 .cta-text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .cta-style-4 .cta-text-block {
    text-align: initial;
  }
}
.cta-style-4 .cta-text-block .cta-title {
  margin-bottom: 35px;
}
.cta-style-4 .cta-button-group {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.cta-style-6 {
  background: #432CF3;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 53px;
  padding-bottom: 53px;
  border-radius: 10px;
}
@media (min-width: 480px) {
  .cta-style-6 {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cta-style-6 .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 285px;
  row-gap: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .cta-style-6 .cta-content {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .cta-style-6 .cta-content {
    text-align: initial;
    flex-direction: row;
    justify-content: space-between;
  }
}
.cta-style-6 .cta-content__text-block {
  max-width: 277px;
}
@media (min-width: 992px) {
  .cta-style-6 .cta-content__text-block {
    max-width: 410px;
  }
}
.cta-style-6 .cta-content__title {
  color: #fff;
}

@media (min-width: 992px) {
  .cta-style-7 .cta-content {
    margin-bottom: 60px;
  }
}
.cta-style-7 .cta-content__title {
  color: #0C1523;
  margin-bottom: 29px;
}
.cta-style-7 .cta-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .cta-style-7 .cta-content {
    flex-direction: initial;
    text-align: initial;
    row-gap: 50px;
  }
}
.cta-style-7 .cta-content p {
  max-width: 526px;
  color: #495460;
}
@media (min-width: 575px) {
  .cta-style-7 .cta-content p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .cta-style-7 .cta-content p {
    font-size: 21px;
  }
}

.team-widget-row {
  --gutter-x:30px;
  --gutter-y:30px;
}
@media (min-width: 992px) {
  .team-widget-row {
    --gutter-x:47px;
    --gutter-y:48px;
  }
}

.home-1_hero-section {
  overflow: hidden;
  background: #F3F7FA;
  padding-top: 150px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .home-1_hero-section {
    padding-bottom: 0;
  }
}
.home-1_hero-section .row--custom {
  justify-content: center;
}
@media (min-width: 992px) {
  .home-1_hero-section .row--custom {
    justify-content: space-between;
    align-items: flex-end;
  }
}
.home-1_hero-section .hero-image {
  display: none;
  max-width: 495.78px;
  padding-right: 55.78px;
  position: relative;
}
@media (min-width: 992px) {
  .home-1_hero-section .hero-image {
    display: block;
  }
}
.home-1_hero-section .hero-image img {
  width: 100%;
  border-radius: inherit;
}
.home-1_hero-section .hero-image__card {
  position: absolute;
  right: 0;
  bottom: 19%;
  width: 59.5%;
  border-radius: 20.6575px;
  box-shadow: 20.6575px 41.3149px 61.9724px rgba(0, 0, 0, 0.16);
}
.home-1_hero-section .hero-content {
  max-width: 706px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .home-1_hero-section .hero-content {
    padding-top: 25px;
    padding-bottom: 65px;
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .home-1_hero-section .hero-content {
    padding-top: 30px;
    padding-bottom: 105px;
    margin-left: 42px;
  }
}
@media (min-width: 1400px) {
  .home-1_hero-section .hero-content {
    padding-bottom: 135px;
  }
}
.home-1_hero-section .hero-content .hero-subtitle {
  margin-bottom: 22px;
}
@media (min-width: 1200px) {
  .home-1_hero-section .hero-content .hero-subtitle {
    margin-bottom: 38px;
  }
}
.home-1_hero-section .hero-content .hero-title {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .home-1_hero-section .hero-content .hero-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .home-1_hero-section .hero-content .hero-title {
    margin-bottom: 37px;
  }
}
.home-1_hero-section .hero-content p {
  font-weight: 500;
  color: #0F172A;
}
@media (min-width: 992px) {
  .home-1_hero-section .hero-content p {
    max-width: 596px;
  }
}
.home-1_hero-section .hero-content__button {
  margin-top: 30px;
}

.home-1_feature-section .row--custom {
  --gutter-y:24px;
  justify-content: center;
}
@media (min-width: 768px) {
  .home-1_feature-section .row--custom {
    justify-content: initial;
  }
}
@media (min-width: 1400px) {
  .home-1_feature-section .row--custom {
    justify-content: space-between;
    padding-right: 60px;
  }
}
@media (min-width: 992px) {
  .home-1_feature-section .single-feature {
    max-width: 349px;
  }
}

.home-1_content-section-1 {
  padding-bottom: 60px;
}
.home-1_content-section-1 .row--custom {
  justify-content: center;
  --gutter-y:30px;
}
@media (min-width: 768px) {
  .home-1_content-section-1 .row--custom {
    justify-content: initial;
  }
}
@media (min-width: 992px) {
  .home-1_content-section-1 .row--custom {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .home-1_content-section-1 .row--custom {
    align-items: initial;
    justify-content: space-between;
  }
}
.home-1_content-section-1 .content-image {
  max-width: 488.37px;
}
.home-1_content-section-1 .content-image img {
  width: 100%;
  border-radius: 19.5349px;
}
.home-1_content-section-1 .content__text-block {
  max-width: 602px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .home-1_content-section-1 .content__text-block {
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .home-1_content-section-1 .content__text-block {
    row-gap: 60px;
  }
}
@media (min-width: 992px) {
  .home-1_content-section-1 .content__text-block {
    padding-left: 40px;
    height: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .home-1_content-section-1 .content__text-block {
    max-width: 640px;
    padding-left: initial;
  }
}
.home-1_content-section-1 .content-widget__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
@media (min-width: 1200px) {
  .home-1_content-section-1 .content-widget__wrapper {
    row-gap: 48px;
  }
}
.home-1_content-section-1 .content-widget__wrapper > div {
  max-width: 466px;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .home-1_content-section-1 .content-widget__wrapper > div {
    flex-direction: row;
    text-align: initial;
    align-items: initial;
  }
}

.home-1_content-section-2 .row--custom {
  --gutter-y: 30px;
}
@media (min-width: 992px) {
  .home-1_content-section-2 .row--custom {
    align-items: center;
    flex-direction: row-reverse;
  }
}
.home-1_content-section-2 .content-image {
  position: relative;
}
@media (max-width: 479px) {
  .home-1_content-section-2 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-1_content-section-2 .content-image img {
  width: 100%;
}
.home-1_content-section-2 .content-image .video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 19%;
  max-width: 19%;
  min-height: 16.28%;
  max-height: 16.28%;
  background-color: white;
  border-radius: 500px;
}
.home-1_content-section-2 .content-image .video-icon img {
  width: 21.5%;
}
.home-1_content-section-2 .content__text-block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 992px) {
  .home-1_content-section-2 .content__text-block {
    row-gap: 50px;
  }
}
.home-1_content-section-2 .content__text-block .content-title {
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  .home-1_content-section-2 .content__text-block .content-title {
    margin-bottom: 36px;
  }
}
.home-1_content-section-2 .content__text-block p {
  max-width: 550px;
}
.home-1_content-section-2 .content__list-block {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .home-1_content-section-2 .content__list-block {
    row-gap: 33px;
  }
}

.home-1_content-section-3 .row--custom {
  --gutter-y: 30px;
}
@media (min-width: 992px) {
  .home-1_content-section-3 .row--custom {
    align-items: center;
  }
}
.home-1_content-section-3__list-block {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .home-1_content-section-3__list-block {
    row-gap: 33px;
  }
}
.home-1_content-3-image {
  position: relative;
  max-width: 200px;
}
@media (min-width: 992px) {
  .home-1_content-3-image {
    max-width: 359.38px;
  }
}
.home-1_content-3-image img {
  width: 100%;
}
.home-1_content-3__text-block {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 992px) {
  .home-1_content-3__text-block {
    row-gap: 50px;
  }
}
@media (min-width: 1400px) {
  .home-1_content-3__text-block {
    margin-left: 30px;
  }
}
.home-1_content-3__text-block .content-title {
  margin-bottom: 26px;
}
@media (min-width: 992px) {
  .home-1_content-3__text-block .content-title {
    margin-bottom: 36px;
  }
}
.home-1_content-3__text-block p {
  max-width: 550px;
}

.home-1_testimonial-section .row--custom {
  justify-content: center;
  --gutter-y:24px;
}
@media (min-width: 1200px) {
  .home-1_testimonial-section .row--custom {
    --gutter-x:46px;
    --gutter-y:46px;
  }
}

@media (min-width: 1200px) {
  .home-1_pricing-card-wrapper {
    padding-left: 60px;
  }
}

.home-2_hero-section {
  padding-top: 60px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-2_hero-section {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .home-2_hero-section {
    padding-top: 150px;
  }
}
.home-2_hero-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
  text-align: center;
}
@media (min-width: 568px) {
  .home-2_hero-section .row--custom {
    --gutter-y: 60px;
  }
}
@media (min-width: 992px) {
  .home-2_hero-section .row--custom {
    --gutter-y: 80px;
  }
}
@media (min-width: 1200px) {
  .home-2_hero-section .row--custom {
    --gutter-y: 114px;
  }
}
.home-2_hero-content-block {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.home-2_hero-content-block p {
  max-width: 672px;
  margin-right: auto;
  margin-left: auto;
}
.home-2_hero-title {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .home-2_hero-title {
    margin-bottom: 33px;
  }
}
.home-2_hero-image-block img {
  width: 100%;
}

.home-2_content-section-1 {
  padding-bottom: 90px;
}
.home-2_content-section-1 .row--custom {
  --gutter-y:30px;
  --gutter-x:45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_content-section-1 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.home-2_content-section-1 .content-image {
  max-width: 559px;
}
@media (max-width: 479px) {
  .home-2_content-section-1 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-2_content-section-1 .content-image img {
  width: 100%;
}
.home-2_content-section-1 .content__text-block-wrapper {
  text-align: center;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-2_content-section-1 .content__text-block-wrapper {
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .home-2_content-section-1 .content__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-2_content-section-1 .content__text-block-wrapper {
    margin-right: 28px;
  }
}
.home-2_content-section-1 .content__text-block-wrapper p {
  max-width: 581px;
}

.home-2_content-section-2 {
  background: #f3f7fa;
}
.home-2_content-section-2 .row--custom {
  --gutter-x: 12px;
  --gutter-y: 30px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_content-section-2 .row--custom {
    align-items: center;
    flex-direction: row-reverse;
  }
}
.home-2_content-section-2 .content-image {
  position: relative;
  max-width: 611.76px;
  padding-right: 33.07px;
  padding-bottom: 32.89px;
  z-index: 1;
}
.home-2_content-section-2 .content-image::before {
  position: absolute;
  width: 84.3%;
  bottom: 0;
  right: 0;
  background: #cbd2d9;
  opacity: 0.2;
  border-radius: 20px;
  height: 91.7%;
  z-index: -1;
  content: "";
}
@media (max-width: 479px) {
  .home-2_content-section-2 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-2_content-section-2 .content-image img {
  width: 100%;
}
.home-2_content-section-2 .content__text-block-wrapper {
  max-width: 671px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .home-2_content-section-2 .content__text-block-wrapper {
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .home-2_content-section-2 .content__text-block-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-2_content-section-2 .content__text-block-wrapper {
    row-gap: 93px;
  }
}
.home-2_content-section-2 .content__text-block-wrapper .section-heading__title {
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .home-2_content-section-2 .content__text-block-wrapper p {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .home-2_content-section-2 .content__text-block-wrapper p {
    margin-left: 0;
  }
}
.home-2_content__stats-block {
  display: flex;
  justify-content: center;
  column-gap: 40px;
}
@media (min-width: 768px) {
  .home-2_content__stats-block {
    column-gap: 60px;
  }
}
@media (min-width: 992px) {
  .home-2_content__stats-block {
    justify-content: initial;
    column-gap: 84px;
  }
}
.home-2_content__stats-block .stat-single {
  align-items: initial;
  text-align: initial;
  row-gap: 5px;
}
.home-2_content__stats-block .stat-single__count {
  color: #0C1523;
}
.home-2_content__stats-block .stat-single__text {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
  color: #495460;
}
@media (min-width: 992px) {
  .home-2_content__stats-block .stat-single__text {
    font-size: 16px;
  }
}

.home-2_content-section-3 .row--custom {
  --gutter-y:30px;
  --gutter-x:40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_content-section-3 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-2_content-section-3 .row--custom {
    --gutter-x:60px;
  }
}
@media (max-width: 479px) {
  .home-2_content-section-3 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-2_content-section-3 .content-image img {
  width: 100%;
}
.home-2_content-section-3 .content__text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .home-2_content-section-3 .content__text-block {
    text-align: initial;
  }
}
.home-2_content-section-3 .content__text-block-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .home-2_content-section-3 .content__text-block-wrapper {
    justify-content: space-between;
  }
}
.home-2_content__widget-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #EAEDF0;
  padding-top: 40px;
  margin-top: 40px;
}
@media (min-width: 576px) {
  .home-2_content__widget-wrapper {
    flex-direction: row;
    padding-top: 60px;
    margin-top: 60px;
  }
}

.home-2_pricing-section .row--custom {
  --gutter-y:30px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-2_pricing-section .row--custom {
    justify-content: space-between;
  }
}
.home-2_pricing-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-2_pricing-section .section-heading {
    text-align: initial;
  }
}
.home-2_pricing__testimonial-block {
  max-width: 553px;
}
.home-2_pricing__testimonial-block .testimonial-widget {
  text-align: center;
}
@media (min-width: 992px) {
  .home-2_pricing__testimonial-block .testimonial-widget {
    text-align: initial;
  }
}
.home-2_pricing__card-block {
  max-width: 523px;
}
@media (min-width: 1400px) {
  .home-2_pricing__card-block {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 992px) {
  .home-2_cta-section .section-heading {
    margin-bottom: 60px;
  }
}
.home-2_cta-content-block {
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-2_cta-content-block p {
  font-weight: 500;
  line-height: 1.62;
  color: #EAEDF0;
}
@media (min-width: 575px) {
  .home-2_cta-content-block p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .home-2_cta-content-block p {
    font-size: 21px;
  }
}
.home-2_cta-button-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #B8C1CC;
  margin-top: 20px;
  display: block;
}

.home-2_ticker-section {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .home-2_ticker-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.home-2_ticker-section_ticker__section-heading {
  text-align: center;
}
.home-2_ticker__section-heading {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .home-2_ticker__section-heading {
    margin-bottom: 60px;
  }
}
.home-2_ticker-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.home-2_ticker-wrapper .single-ticker {
  background: #FFFFFF;
  border: 1px solid #EAEDF0;
  border-radius: 10px;
  padding: 35px 40px;
  width: 196px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-2_tickers {
  display: flex;
  column-gap: 24px;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  margin: 0 13px;
  animation: animate 60s linear infinite;
}

@keyframes animate {
  0% {
    transform: translateX(0, 0, 0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.home-3_hero-section {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-3_hero-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) {
  .home-3_hero-section {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) {
  .home-3_hero-section {
    padding-top: 168px;
    padding-bottom: 134px;
  }
}
.home-3_hero-section .row--custom {
  justify-content: center;
  text-align: center;
  --gutter-y: 30px;
}
@media (min-width: 576px) {
  .home-3_hero-section .row--custom {
    --gutter-y: 60px;
  }
}
@media (min-width: 768px) {
  .home-3_hero-section .row--custom {
    --gutter-y: 80px;
  }
}
@media (min-width: 992px) {
  .home-3_hero-section .row--custom {
    --gutter-y: 100px;
  }
}
.home-3_hero-section .home-3_hero-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .home-3_hero-section .home-3_hero-content {
    row-gap: 33px;
  }
}
.home-3_hero-section .home-3_hero-content .hero-title {
  margin-bottom: 31px;
}
.home-3_hero-section .home-3_hero-content p {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}
.home-3_hero-section .home-3_hero-content__button a {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .home-3_hero-section .home-3_hero-content__button a {
    margin-bottom: 33px;
  }
}
.home-3_hero-section .home-3_hero-content__button-text {
  font-size: 16px;
}
.home-3_hero-section .home-3_hero-content__button-text .dot {
  width: 6px;
  height: 6px;
  border-radius: 500px;
  background-color: #432CF3;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}
.home-3-hero-text-block {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.62;
  display: flex;
  align-items: center;
  text-align: center;
  color: #495460;
}
.home-3_hero-video-block {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.home-3_hero-video-block img {
  width: 100%;
}

.home-3_brand-title {
  text-align: center;
  color: #495460;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.43;
  font-size: 18px;
}
@media (min-width: 992px) {
  .home-3_brand-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .home-3_brand-title {
    font-size: 21px;
  }
}
.home-3_brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-3_brands-wrapper {
    justify-content: space-between;
  }
}
.home-3_single-brand {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media (min-width: 480px) {
  .home-3_single-brand {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .home-3_single-brand {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .home-3_single-brand {
    width: auto;
  }
}
.home-3_single-brand img {
  width: 100%;
  max-width: auto;
}
@media (min-width: 1200px) {
  .home-3_single-brand img {
    width: auto;
    max-width: 100%;
  }
}

.home-3_content-section-1 .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-3_content-section-1 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-3_content-section-1 .content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-3_content-section-1 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-3_content-section-1 .content-image img {
  width: 100%;
}
.home-3_content-section-1 .content__text-block-wrapper {
  text-align: center;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-3_content-section-1 .content__text-block-wrapper {
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .home-3_content-section-1 .content__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-3_content-section-1 .content__text-block-wrapper {
    margin-right: 28px;
  }
}

.home-3_content-section-2 .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-3_content-section-2 .row--custom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .home-3_content-section-2 .content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-3_content-section-2 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-3_content-section-2 .content-image img {
  width: 100%;
}
.home-3_content-section-2 .content__text-block-wrapper {
  text-align: center;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-3_content-section-2 .content__text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-3_content-section-2 .content__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-3_content-section-2 .content__text-block-wrapper {
    margin-right: 28px;
  }
}

.home-3_integrate-section .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-3_integrate-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-3_integrate-section .integrate-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-3_integrate-section .integrate-image--mobile-width {
    max-width: 260px;
  }
}
.home-3_integrate-section .integrate-image img {
  width: 100%;
}
.home-3_integrate-section .integrate__text-block-wrapper {
  text-align: center;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-3_integrate-section .integrate__text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-3_integrate-section .integrate__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-3_integrate-section .integrate__text-block-wrapper {
    margin-right: 28px;
  }
}

.home-3_pricing-section .row--custom {
  --gutter-y: 40px;
}
.home-3_pricing-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-3_pricing-section .section-heading {
    margin-bottom: 60px;
  }
}
.home-3_pricing-section .price-card-row {
  --gutter-y: 1.5rem;
}
.home-3_pricing-section .pricing-control {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .home-3_pricing-section .pricing-control {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .home-3_pricing-section .pricing-control {
    margin-bottom: 80px;
  }
}

.home-3_testimonial-section {
  background: #0C1523;
}
.home-3_testimonial-section .section-heading__title {
  color: #fff;
}
.home-3_testimonial-section .row-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}
.home-3_testimonial-section .row--custom {
  --gutter-y: 48px;
}
@media (min-width: 1400px) {
  .home-3_testimonial-section .row--custom {
    --gutter-x: 80px;
  }
}

/*=========== Home 4 : Hero Section styles ==========*/
.home-4_hero-section {
  padding-top: 80px;
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .home-4_hero-section {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .home-4_hero-section {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) {
  .home-4_hero-section {
    padding-top: 150px;
  }
}
@media (min-width: 1400px) {
  .home-4_hero-section {
    padding-top: 170px;
  }
}
.home-4_hero-section .row--custom {
  justify-content: center;
  align-items: center;
  --gutter-y: 40px;
}
.home-4_hero-content-block {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  text-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .home-4_hero-content-block {
    row-gap: 40px;
    align-items: initial;
    text-align: initial;
  }
}
.home-4_hero-content-block p {
  font-weight: 500;
  color: #0C1523;
}
@media (min-width: 992px) {
  .home-4_hero-content-block p {
    max-width: 506px;
  }
}
.home-4_hero-title {
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: 0.018181818em;
  color: #0F172A;
  margin-bottom: 40px;
}
.home-4_hero-button-group {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
}
@media (max-width: 576px) {
  .home-4_hero-button-group {
    justify-content: center;
  }
}
.home-4_hero-image-block {
  width: 100%;
}
@media (min-width: 992px) {
  .home-4_hero-image {
    margin: 0px -450px 0px 15px;
  }
}
.home-4_hero-image img {
  height: auto;
  width: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/*================ Home-4 Newsletter  Section ================ */
.home-4_newsletter-section {
  background: #432CF3;
}
.home-4_newsletter-content {
  max-width: 782px;
  margin-left: auto;
  margin-right: auto;
}
.home-4_newsletter-content .section-heading {
  text-align: center;
}
.home-4_newsletter-content .section-heading__title {
  color: #FFFFFF;
  margin-bottom: 35px;
}
.home-4_newsletter-content .section-heading p {
  color: #EAEDF0;
  margin-bottom: 46px;
}
.home-4_newsletter-content {
  text-align: center;
}
.home-4_newsletter-content__icon {
  margin-bottom: 30px;
  display: inline-flex;
  background: #432CF3;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #ffffff;
  min-width: 70px;
  max-width: 70px;
  min-height: 70px;
  max-height: 70px;
  border-radius: 500px;
}
.home-4_newsletter-form .input-wrapper {
  width: 100%;
  box-shadow: none;
}
@media (min-width: 768px) {
  .home-4_newsletter-form .input-wrapper {
    width: 35%;
  }
}
@media (min-width: 992px) {
  .home-4_newsletter-form .input-wrapper {
    width: 32%;
  }
}
.home-4_newsletter-form .button-wrapper {
  width: auto;
}
@media (min-width: 992px) {
  .home-4_newsletter-form .button-wrapper {
    width: 31%;
  }
}
.home-4_newsletter-form form {
  display: flex;
  column-gap: 16px;
  flex-wrap: wrap;
  row-gap: 25px;
}
.home-4_newsletter-form form .form-control {
  border: 1.5px solid #FFFFFF;
  border-radius: 50px;
  color: #fff;
  padding-left: 24px;
  width: 100%;
  height: 60px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.home-4_newsletter-form .btn {
  height: 60px;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #432CF3;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
}

/*=========== Home 4 : Testimonial Section styles ==========*/
.testimonial-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .testimonial-section {
    padding-top: 115px;
    padding-bottom: 120px;
  }
}
.testimonial-section .row--custom {
  --gutter-y:30px;
  justify-content: center;
}

.home-4_integrate-section .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-4_integrate-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-4_integrate-section .integrate-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-4_integrate-section .integrate-image--mobile-width {
    max-width: 260px;
  }
}
.home-4_integrate-section .integrate-image img {
  width: 100%;
}
.home-4_integrate-section .integrate__text-block-wrapper {
  text-align: center;
  max-width: 610px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-4_integrate-section .integrate__text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-4_integrate-section .integrate__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-4_integrate-section .integrate__text-block-wrapper {
    margin-right: 28px;
  }
}

/*=========== Home 4 : Content Section styles ==========*/
.home-4_content-section-1 .row--custom {
  justify-content: center;
  align-items: center;
  --gutter-y: 40px;
  --gutter-x: 50px;
}
@media (min-width: 992px) {
  .home-4_content-section-1 .row--custom {
    justify-content: space-between;
  }
}
.home-4_content-1-text-block .section-heading__title {
  text-align: center;
  max-width: 573px;
}
@media (min-width: 992px) {
  .home-4_content-1-text-block .section-heading__title {
    text-align: initial;
  }
}
@media (min-width: 1400px) {
  .home-4_content-1-text-block {
    max-width: 579px;
  }
}
@media (min-width: 1400px) {
  .home-4_content-1-image {
    max-width: 560px;
  }
}
.home-4_content-1-image img {
  width: 100%;
}

.content-widget-2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .content-widget-2-wrapper {
    align-items: initial;
    row-gap: 40px;
  }
}
.content-widget-2-wrapper .content-widget-2 {
  max-width: 474px;
}

.home-4_content-section-2 {
  padding-top: 30px;
}
.home-4_content-section-2 .row--custom {
  --gutter-y: 30px;
  --gutter-x: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-4_content-section-2 .row--custom {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-4_content-section-2 .row--custom {
    --gutter-x: 60px;
  }
}
@media (max-width: 479px) {
  .home-4_content-section-2 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-4_content-section-2 .content-image img {
  width: 100%;
  border-radius: 6%;
}
.home-4_content-section-2 .content__text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .home-4_content-section-2 .content__text-block {
    text-align: initial;
  }
}
.home-4_content-section-2 .content__text-block-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .home-4_content-section-2 .content__text-block-wrapper {
    justify-content: space-between;
  }
}
.home-4_content__widget-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #EAEDF0;
  padding-top: 40px;
  margin-top: 40px;
}
@media (min-width: 576px) {
  .home-4_content__widget-wrapper {
    flex-direction: row;
    padding-top: 60px;
    margin-top: 60px;
  }
}

@media (min-width: 1400px) {
  .home-4_content-section-3 {
    padding-bottom: 163px;
  }
}
.home-4_content-section-3 .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-4_content-section-3 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-4_content-section-3 .content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-4_content-section-3 .content-image--mobile-width {
    max-width: 260px;
  }
}
@media (min-width: 1400px) {
  .home-4_content-section-3 .content-image {
    max-width: 560px;
  }
}
.home-4_content-section-3 .content-image img {
  width: 100%;
}
.home-4_content-section-3 .content__text-block-wrapper {
  text-align: center;
  max-width: 533px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-4_content-section-3 .content__text-block-wrapper {
    text-align: initial;
    max-width: 610px;
  }
}
@media (min-width: 1200px) {
  .home-4_content-section-3 .content__text-block-wrapper {
    row-gap: 48px;
  }
}
@media (min-width: 1400px) {
  .home-4_content-section-3 .content__text-block-wrapper {
    margin-right: 28px;
  }
}

@media (min-width: 1400px) {
  .home-4_process-section .section-heading {
    margin-bottom: 110px;
  }
}
.home-4_process-widget-wrapper {
  justify-content: space-between;
  row-gap: 40px;
}
@media (min-width: 1200px) {
  .home-4_process-widget-wrapper .process-widget {
    max-width: 350px;
  }
}
@media (min-width: 1400px) {
  .home-4_process-widget-wrapper .process-widget {
    max-width: 360px;
  }
}

/*=========== Home 5 : Hero Section styles ==========*/
.home-5_hero-section {
  padding-top: 55px;
  background: #F3F7FA;
  position: relative;
  z-index: 1;
}
.home-5_hero-section .row--custom {
  justify-content: center;
  align-items: center;
  --gutter-y: 40px;
}
.home-5_hero-section .newsletter-form-1 {
  max-width: 534px;
  width: 100%;
}
.home-5_hero-content-block {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  text-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .home-5_hero-content-block {
    row-gap: 40px;
    align-items: initial;
    text-align: initial;
  }
}
.home-5_hero-content-block p {
  font-family: "Inter", sans-serif;
  max-width: 610px;
  color: #212939;
}
.home-5_hero-title {
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: 0.018181818em;
  color: #0C1523;
  margin-bottom: 33px;
}
.home-5_hero-newsletter-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #495460;
}
.home-5_hero-newsletter-text .dot {
  width: 4px;
  height: 4px;
  border-radius: 500px;
  background-color: #7F8995;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}
@media (max-width: 479px) {
  .home-5_hero-newsletter-text .dot {
    display: block;
  }
}
.home-5_hero-image-block {
  display: none;
  width: 100%;
  position: relative;
  z-index: -1;
}
@media (min-width: 992px) {
  .home-5_hero-image-block {
    display: block;
  }
}
.home-5_hero-image {
  max-width: 768px;
}
@media (min-width: 992px) {
  .home-5_hero-image {
    margin: 0 -31% 0 -3%;
  }
}
@media (min-width: 1200px) {
  .home-5_hero-image {
    margin: 0 -22% 0 -24%;
  }
}
@media (min-width: 1400px) {
  .home-5_hero-image {
    margin: 0 -17% 0 -29%;
  }
}
.home-5_hero-image img {
  width: 100%;
  height: fit-content;
}
.home-5_hero-image-card {
  width: 77%;
  bottom: 9%;
  left: -4%;
  position: absolute;
}
@media (min-width: 1200px) {
  .home-5_hero-image-card {
    bottom: 12%;
    left: -29%;
  }
}
.home-5_hero-image-card img {
  width: 100%;
}

.newsletter-form-1 p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #495460;
}
.newsletter-form-1 .dot {
  width: 4px;
  height: 4px;
  border-radius: 500px;
  background-color: #7F8995;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}

.home-5_content-tab-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-5_content-tab-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-5_content-tab-section {
    padding-top: 100px;
    padding-bottom: 141px;
  }
}
.home-5_content-tab__nav {
  display: flex;
  align-items: center;
  max-width: 763px;
  margin-left: auto;
  margin-right: auto;
  column-gap: 15px;
  row-gap: 10px;
  justify-content: space-between;
  border-bottom: 2px solid #EAEDF0;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .home-5_content-tab__nav {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .home-5_content-tab__nav {
    margin-bottom: 80px;
  }
}
.home-5_content-tab__nav .nav-link {
  font-weight: 600;
  line-height: 1.4;
  color: rgba(12, 21, 35, 0.7);
  padding-bottom: 16px;
  position: relative;
}
.home-5_content-tab__nav .nav-link:after {
  content: "";
  height: 2px;
  background-color: #432CF3;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  opacity: 0;
  transform: scaleX(0);
  transition: 0.4s;
}
.home-5_content-tab__nav .nav-link.active {
  color: #432CF3;
}
.home-5_content-tab__nav .nav-link.active:after {
  opacity: 1;
  transform: scaleX(1);
}
.home-5_content-tab__text-block p {
  font-size: 16px;
  line-height: 1.56;
}
@media (min-width: 576px) {
  .home-5_content-tab__text-block p {
    font-size: 18px;
  }
}
.home-5_content-tab__button {
  margin-top: 38px;
}
.home-5_content-tab__title {
  margin-bottom: 30px;
}
.home-5_content-tab__image {
  position: relative;
}
@media (min-width: 1200px) {
  .home-5_content-tab__image {
    margin-left: 35px;
  }
}
.home-5_content-tab__image img {
  width: 100%;
  border-radius: 10px;
}

.row--content-tab-body {
  align-items: center;
  --gutter-y:40px;
}
@media (min-width: 992px) {
  .row--content-tab-body {
    flex-direction: row-reverse;
  }
}

/*=========== Home 5 : Content Section styles ==========*/
.home-5 {
  /*=========== Content Section 1 styles ==========*/
  /*=========== Content Section 2 styles ==========*/
}
.home-5_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-5_content-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.home-5_content-section .row-reverse-lg {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .home-5_content-image--mobile-width {
    max-width: 320px;
  }
}
@media (max-width: 479px) {
  .home-5_content-image--mobile-width {
    max-width: 260px;
  }
}
.home-5_content-text-block-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 35px;
}
@media (min-width: 992px) {
  .home-5_content-text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-5_content-text-block-wrapper {
    row-gap: 60px;
  }
}
.home-5_content-text-block-wrapper p {
  color: #212939;
}
.home-5_content-image-1 {
  position: relative;
}
@media (min-width: 992px) {
  .home-5_content-image-1 {
    max-width: 483.51px;
  }
}
.home-5_content-image-1 img {
  width: 100%;
}
.home-5_content-image-1-card {
  position: absolute;
  right: -14%;
  top: 31%;
  width: 36.3%;
}
.home-5_content-image-1-card img {
  width: 100%;
}
@media (min-width: 992px) {
  .home-5_content-image-2 {
    max-width: 560px;
  }
}
.home-5_content-image-2 img {
  width: 100%;
}
@media (min-width: 1200px) {
  .home-5_content-list-block {
    margin-top: 20px;
  }
}

/* ======= Testimonail Area ========= */
.home-5_testimonial-section {
  background: #432CF3;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 578px) {
  .home-5_testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-5_testimonial-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.home-5_testimonial-section .row--custom {
  --gutter-y:30px;
  justify-content: center;
}
.home-5_testimonial {
  text-align: center;
  max-width: 1078px;
  margin-left: auto;
  margin-right: auto;
}
.home-5_testimonial__star {
  display: inline-flex;
  column-gap: 10px;
  margin-bottom: 48px;
}
.home-5_testimonial__star li {
  color: #00B67A;
  font-size: 40px;
}
.home-5_testimonial__text {
  color: #fff;
  margin-bottom: 48px;
}
.home-5_testimonial span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.62;
  color: #fff;
}
@media (min-width: 576px) {
  .home-5_testimonial span {
    font-size: 21px;
  }
}
.home-5_testimonial__rate {
  color: #B8C1CC !important;
}

/*=========== Home 5 : Feature Sections tyles ==========*/
.home-5_feature-section {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 568px) {
  .home-5_feature-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-5_feature-section {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.home-5_feature-section .row--custom {
  --gutter-y:30px;
  justify-content: center;
}
.home-5_feature-section .section-heading {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-5_feature-section .section-heading p {
  font-weight: 500;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.home-5_feature-card-wrapper {
  max-width: 903px;
  margin-left: auto;
  margin-right: auto;
}

/* =========== Home 5 : Testimonail Section 2 styles============== */
.home-5_testimonial-section-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-5_testimonial-section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-5_testimonial-section-2 {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .home-5_testimonial-section-2 {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .home-5_testimonial-section-2 {
    padding-bottom: 150px;
  }
}
.home-5_testimonial-section-2 .row--custom {
  --gutter-y: 24px;
  --gutter-x: 24px;
}

/* =========== Home 5 : Hero Section ============== */
.home-6_hero-section {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .home-6_hero-section {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .home-6_hero-section {
    padding-top: 140px;
  }
}
@media (min-width: 1500px) {
  .home-6_hero-section {
    padding-top: 160px;
  }
}
.home-6_hero-section .row--custom {
  --gutter-y: 57px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .home-6_hero-section .row--custom {
    align-items: center;
    text-align: initial;
  }
}
.home-6_hero-title {
  color: #0C1523;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .home-6_hero-title {
    margin-bottom: 32px;
  }
}
.home-6_hero-subtitle {
  font-weight: 500;
  color: #2AD590;
  display: inline-block;
  margin-bottom: 20px;
}
.home-6_hero-content p {
  font-weight: 500;
  color: #495460;
  width: initial;
}
@media (min-width: 992px) {
  .home-6_hero-content p {
    max-width: 508px;
  }
}
.home-6_hero-content__button {
  margin-top: 37px;
}
@media (min-width: 576px) {
  .home-6_hero-content__button {
    margin-bottom: 30px;
  }
}
.home-6_hero-content__button .btn {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 768px) {
  .home-6_hero-content__button .btn {
    padding: 18px 24px;
  }
}
.home-6_hero-image__image-block {
  max-width: 668px;
  display: flex;
  justify-content: center;
}
@media (min-width: 576px) {
  .home-6_hero-image__image-block {
    justify-content: end;
  }
}
.home-6_hero-image__image-block img {
  width: 280px;
}
@media (min-width: 576px) {
  .home-6_hero-image__image-block img {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .home-6_hero-image__image-block img {
    width: 100%;
  }
}

.home-6_brand-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-6_brand-section {
    padding-top: 80px;
    padding-bottom: 76px;
  }
}
.home-6_testimonial-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-6_testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-6_testimonial-section {
    padding-top: 100px;
    padding-bottom: 130px;
  }
}

/* =================== */
.home-6_pricing-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-6_pricing-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-6_pricing-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.home-6_pricing-section .row--custom {
  --gutter-y:40px;
  justify-content: center;
}
.home-6_pricing-section .section-heading {
  text-align: center;
}
.home-6_pricing-section .pricing-control {
  text-align: center;
  margin-bottom: 79px;
}
.home-6_pricing-logo-section {
  margin-top: 77px;
}
.home-6_pricing-logo-section p {
  margin-bottom: 30px;
  color: #71717A;
}
.home-6_pricing-logo-section-wrapper {
  display: flex;
  max-width: 505px;
  margin-left: auto;
  margin-right: auto;
  column-gap: 16px;
  justify-content: center;
  row-gap: 15px;
  flex-wrap: wrap;
}
.home-6_pricing-control-block {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .home-6_pricing-control-block {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .home-6_pricing-control-block {
    margin-bottom: 80px;
  }
}
.home-6_pricing-control-block .pricing-control-2 {
  height: 50px;
}

/*=========== Home 6 : Content Section styles ==========*/
.home-6 {
  /*=========== Content Section 1 styles ==========*/
  /*=========== Content Section 2 styles ==========*/
}
.home-6_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-6_content-section .row--custom {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .home-6_content-section .row--custom {
    --gutter-x: 60px;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-6_content-section .content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-6_content-section .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-6_content-text-block-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 479px) {
  .home-6_content-text-block-wrapper {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .home-6_content-text-block-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-6_content-text-block-wrapper {
    row-gap: 90px;
  }
}
.home-6_content-text-block-wrapper p {
  max-width: 527px;
}
.home-6_content-text-block-wrapper .content-widget-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 530px;
}
.home-6_content-text-block-wrapper .content-widget-wrapper p {
  max-width: 443px;
}
@media (min-width: 992px) {
  .home-6_content-image-block {
    max-width: 550px;
  }
}
.home-6_content-image-block img {
  width: 100%;
}
@media (min-width: 992px) {
  .home-6_content-2-image {
    max-width: 611.66px;
  }
}
.home-6_content-2-image img {
  width: 100%;
}
.home-6_content-2-text-block-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-6_content-2-text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-6_content-2-text-block-wrapper {
    row-gap: 40px;
  }
}
.home-6_content-2-text-block-wrapper p {
  max-width: 550px;
}
@media (min-width: 992px) {
  .home-6_content-3-image-block {
    max-width: 578.96px;
  }
}

/*=========== Home 6 : Content Section 3 styles ==========*/
.home-6_content-section-3 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-6_content-section-3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-6_content-section-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .home-6_content-section-3 {
    padding-top: 120px;
    padding-bottom: 113px;
  }
}
@media (min-width: 1400px) {
  .home-6_content-section-3 {
    padding-top: 155px;
  }
}
.home-6_content-section-3 .row--custom {
  --gutter-y: 40px;
  --gutter-x: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-6_content-section-3 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.home-6_content-3-text-block-wrapper {
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-6_content-3-text-block-wrapper {
    margin-left: 50px;
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-6_content-3-text-block-wrapper {
    row-gap: 40px;
  }
}
@media (min-width: 992px) {
  .home-6_content-3-image-block {
    max-width: 578.96px;
  }
}
.home-6_content-3-image img {
  width: 100%;
}

/*=========== Home 6 : Feature Section styles ==========*/
.home-6_feature-section .row-wrapper {
  padding-top: 50px;
  padding-bottom: 60px;
  border-top: 1px solid #EAEDF0;
}
@media (min-width: 576px) {
  .home-6_feature-section .row-wrapper {
    padding-bottom: 55px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-6_feature-section .row-wrapper {
    padding-top: 73px;
    padding-bottom: 120px;
  }
}
.home-6_feature-section .row--custom {
  --gutter-y: 30px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-6_feature-section .row--custom {
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-6_feature-section .feature-widget-2 {
    max-width: 398px;
  }
}
.home-6_feature-section .feature-widget-2 p {
  max-width: 340px;
}

/* =========== Home 5 : Hero Section ============== */
.home-7_hero-section__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-7_hero-section__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-7_hero-section__inner {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1400px) {
  .home-7_hero-section__inner {
    padding-top: 200px;
    padding-bottom: 130px;
  }
}
.home-7_hero-section .row--custom {
  --gutter-y: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .home-7_hero-section .row--custom {
    flex-direction: row-reverse;
    align-items: center;
    text-align: initial;
  }
}
.home-7_hero-title {
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 576px) {
  .home-7_hero-title {
    margin-bottom: 32px;
  }
}
@media (min-width: 992px) {
  .home-7_hero-title {
    font-size: 58px;
  }
}
@media (min-width: 1200px) {
  .home-7_hero-title {
    font-size: 90px;
  }
}
@media (min-width: 1400px) {
  .home-7_hero-title {
    font-size: 110px;
  }
}
@media (min-width: 1200px) {
  .home-7_hero-content {
    padding-right: 10px;
  }
}
.home-7_hero-content p {
  font-weight: 500;
  color: #EAEDF0;
  width: initial;
}
@media (min-width: 992px) {
  .home-7_hero-content p {
    max-width: 508px;
  }
}
.home-7_hero-content__button {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-7_hero-content__button {
    margin-top: 45px;
  }
}
.home-7_hero-content__button .btn {
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .home-7_hero-content__button .btn {
    padding: 18px 24px;
  }
}
.home-7_hero-image-block {
  position: relative;
}
@media (max-width: 991px) {
  .home-7_hero-image-block {
    max-width: 260px;
    display: inline-block;
  }
}
.home-7_hero-image-block .main-image {
  width: 100%;
}
.home-7_hero-image__shape img {
  width: 100%;
}

.home-7_brand-section {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-7_brand-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .home-7_brand-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

/* =============== Home 7 : Features Scetion ================ */
.home-7_integrate-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-7_integrate-section .section-heading {
    margin-bottom: 96px;
  }
}
.home-7_integrate-section .section-heading p {
  max-width: 621px;
}
.home-7_integrate-widget-wrapper {
  display: flex;
  --gutter-y:75px;
  --gutter-x:20px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-7_integrate-widget-wrapper {
    justify-content: center;
    --gutter-y:30px;
  }
}
.home-7_integrate-widget-wrapper .integrate-widget {
  max-width: 318px;
}
@media (min-width: 576px) {
  .home-7_integrate-widget-wrapper .integrate-widget {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .home-7_integrate-widget-wrapper .integrate-widget {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/*=========== Home 7 : Content Section styles ==========*/
.home-7 {
  /*=========== Content Section 1 styles ==========*/
  /*=========== Content Section 1 styles ==========*/
}
.home-7_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 60px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-7_content-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-7_content-image--mobile-width {
    max-width: 320px;
  }
}
@media (max-width: 479px) {
  .home-7_content-image--mobile-width {
    max-width: 260px;
  }
}
.home-7_content-text-block-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 35px;
}
@media (min-width: 992px) {
  .home-7_content-text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-7_content-text-block-wrapper {
    row-gap: 60px;
  }
}
.home-7_content-text-block-wrapper p {
  color: #212939;
}
.home-7_content-image-1 {
  position: relative;
}
@media (min-width: 992px) {
  .home-7_content-image-1 {
    max-width: 483.51px;
  }
}
.home-7_content-image-1 img {
  width: 100%;
}
.home-7_content-section-2 .row--custom {
  --gutter-y:30px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-7_content-section-2 .row--custom {
    --gutter-x:40px;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.home-7_content-section-2 .home-7_content-text-block p {
  color: #495460;
}
.home-7_content-image-2 {
  position: relative;
}
.home-7_content-image-2 img {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .home-7_content-image-2 img {
    border-radius: 40px;
  }
}

/* =============== Home 7 : Features Scetion ================ */
.home-7_features-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-7_features-section .section-heading {
    margin-bottom: 96px;
  }
}
.home-7_features-widget-wrapper {
  display: flex;
  --gutter-y:30px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-7_features-widget-wrapper {
    justify-content: center;
  }
}
@media (min-width: 480px) {
  .home-7_features-widget-wrapper .feature-widget {
    max-width: 360px;
  }
}

/*=========== Home 7 : Content Section 1 styles ==========*/
.home-7_testimonial-section .row--custom {
  --gutter-y:30px;
}
@media (min-width: 992px) {
  .home-7_testimonial-section .row--custom {
    --gutter-x:46px;
  }
}

.home-8_hero-section {
  background: #F3F7FA;
  padding-top: 100px;
  overflow: hidden;
  padding-top: 153px;
}
@media (min-width: 576px) {
  .home-8_hero-section {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .home-8_hero-section {
    padding-top: 150px;
  }
}
@media (min-width: 120px) {
  .home-8_hero-section {
    padding-top: 160px;
  }
}
.home-8_hero-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
  text-align: center;
}
@media (min-width: 568px) {
  .home-8_hero-section .row--custom {
    --gutter-y: 60px;
  }
}
@media (min-width: 992px) {
  .home-8_hero-section .row--custom {
    --gutter-y: 80px;
  }
}
@media (min-width: 1200px) {
  .home-8_hero-section .row--custom {
    --gutter-y: 114px;
  }
}
.home-8_hero-content__button-text {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 28px;
}
@media (min-width: 992px) {
  .home-8_hero-content__button-text {
    margin-top: 37px;
  }
}
.home-8_hero-content__button-text .dot {
  width: 6px;
  height: 6px;
  border-radius: 500px;
  background-color: #EAEDF0;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}
@media (max-width: 479px) {
  .home-8_hero-content__button-text .dot {
    display: block;
    background-color: transparent;
  }
}
.home-8_hero-content-block {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.home-8_hero-content-block p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: #EAEDF0;
}
.home-8_hero-title {
  margin-bottom: 16px;
  color: #fff;
}
@media (min-width: 992px) {
  .home-8_hero-title {
    margin-bottom: 33px;
  }
}
.home-8_hero-image-block img {
  width: 100%;
}

/*=========== Home 6 : Content Section 1 styles ==========*/
.home-8_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-8_content-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-8_content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-8_content-image--mobile-width {
    max-width: 260px;
  }
}
.home-8_content-1-image img {
  width: 100%;
}
.home-8_content-text-block-wrapper {
  text-align: center;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-8_content-text-block-wrapper {
    text-align: initial;
    align-items: initial;
    row-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .home-8_content-text-block-wrapper {
    row-gap: 60px;
  }
}

/*=========== Home 6 : Content Section 2 styles ==========*/
.home-8_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-8_content-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .home-8_content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-8_content-image--mobile-width {
    max-width: 260px;
  }
}
.home-8_content-2-image {
  position: relative;
}
.home-8_content-2-image img {
  width: 100%;
}
.home-8_content-2-text-block-wrapper {
  text-align: center;
  max-width: 636px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-8_content-2-text-block-wrapper {
    text-align: initial;
    align-items: initial;
    row-gap: 45px;
  }
}

/* ========== Home 8 : pricing-section ============== */
.home-8_pricing-section .row--custom {
  --gutter-y:30px;
}
.home-8_pricing-heading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .home-8_pricing-heading-block {
    align-items: initial;
    text-align: initial;
    justify-content: space-between;
    height: 100%;
  }
}
.home-8_pricing-heading-block .section-heading {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home-8_pricing-heading-block .section-heading {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .home-8_pricing-heading-block .section-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 1200px) {
  .home-8_pricing-card-wrapper {
    padding-left: 60px;
  }
}

/* ============ FAQ Section ============= */
.faq-section .section-heading {
  max-width: 600px;
}
.faq-section .section-heading p {
  line-height: 1.62;
}
@media (min-width: 1200px) {
  .faq-section .section-heading p {
    max-width: 376px;
  }
}

/* =========== Home 8 : Testimonail Section styles============== */
.home-8_testimonial-section-2 {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (min-width: 576px) {
  .home-8_testimonial-section-2 {
    padding-top: 80px;
  }
}

/* =============== Home 8 : Features Scetion ================ */
.home-8_features-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-8_features-section .section-heading {
    margin-bottom: 96px;
  }
}
.home-8_features-widget-wrapper {
  display: flex;
  --gutter-y:30px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-8_features-widget-wrapper {
    justify-content: center;
  }
}
@media (min-width: 480px) {
  .home-8_features-widget-wrapper .feature-widget-2 {
    max-width: 360px;
  }
}

/* ======== home-9 : hero-newsletter=========== */
.home-9 {
  /* ========= Brand Section ========== */
}
.home-9_hero-section {
  background-color: #121127;
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (min-width: 578px) {
  .home-9_hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-9_hero-section {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (min-width: 1200px) {
  .home-9_hero-section {
    padding-top: 180px;
  }
}
@media (min-width: 1400px) {
  .home-9_hero-section {
    padding-top: 200px;
  }
}
.home-9_hero-content {
  text-align: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.home-9_hero-content__title {
  color: #fff;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .home-9_hero-content__title {
    margin-bottom: 42px;
  }
}
.home-9_hero-content p {
  color: #EAEDF0;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
.home-9_hero-content .newsletter-form-1 {
  max-width: 534px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .home-9_hero-content .newsletter-form-1 {
    margin-top: 48px;
  }
}
.home-9_brand-section {
  padding-top: 60px;
}
@media (min-width: 575px) {
  .home-9_brand-section {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .home-9_brand-section {
    padding-top: 141px;
  }
}
.home-9_brand-title {
  text-align: center;
  color: #7F8995;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.43;
  font-size: 18px;
}
@media (min-width: 992px) {
  .home-9_brand-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .home-9_brand-title {
    font-size: 21px;
  }
}

.home-9_blog-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-9_blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-9_blog-section {
    padding-top: 100px;
    padding-bottom: 113px;
  }
}
.home-9_blog-section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 538px;
}
@media (min-width: 1200px) {
  .home-9_blog-section .section-heading {
    max-width: 770px;
  }
}
.home-9_blog-section .row--blog-custom {
  --gutter-y:24px;
}
@media (min-width: 1400px) {
  .home-9_blog-section .row--blog-custom {
    --gutter-x:74px;
  }
}

@media (min-width: 992px) {
  .home-9_cta-section .section-heading {
    margin-bottom: 60px;
  }
}
.home-9_cta-content-block {
  max-width: 806px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-9_cta-content-block p {
  font-weight: 500;
  line-height: 1.62;
  color: #EAEDF0;
}
@media (min-width: 575px) {
  .home-9_cta-content-block p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .home-9_cta-content-block p {
    font-size: 21px;
  }
}
.home-9_cta-button-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #B8C1CC;
  margin-top: 20px;
  display: block;
}

.home-9_feature-section {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .home-9_feature-section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .home-9_feature-section {
    padding-top: 94px;
  }
}

/*=========== Home 9 : Content Section styles ==========*/
.home-9_content-section .row-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-9_content-section .row-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-9_content-section .row-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.home-9_content-section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-9_content-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.home-9_content-image {
  position: relative;
}
@media (max-width: 991px) {
  .home-9_content-image--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-9_content-image--mobile-width {
    max-width: 260px;
  }
}
.home-9_content-image .video-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  color: #4c40f7;
  font-size: 16px;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  border-radius: 500px;
}
@media (min-width: 768px) {
  .home-9_content-image .video-button {
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    height: 80px;
    width: 80px;
    font-size: 18px;
  }
}
.home-9_content-image .video-button i::before {
  content: "\f04b";
}
.home-9_content-image > img {
  width: 100%;
}
.home-9_content__text-block-wrapper {
  text-align: center;
  max-width: 585px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-9_content__text-block-wrapper {
    text-align: initial;
    align-items: initial;
  }
}
@media (min-width: 1200px) {
  .home-9_content__text-block-wrapper {
    row-gap: 42px;
  }
}
@media (min-width: 1400px) {
  .home-9_content__text-block-wrapper {
    margin-right: 28px;
    margin-left: 22px;
  }
}
@media (min-width: 1200px) {
  .home-9_content__list-block {
    margin-top: 20px;
  }
}
@media (min-width: 1400px) {
  .home-9_content__list-block {
    margin-top: 50px;
  }
}

/* =========== Home 5 : Hero Section ============== */
.home-10_hero-section {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (min-width: 578px) {
  .home-10_hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-10_hero-section {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .home-10_hero-section {
    padding-top: 160px;
    padding-bottom: 113px;
  }
}
.home-10_hero-section .row--custom {
  --gutter-y: 40px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-10_hero-section .row--custom {
    --gutter-x: 45px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-10_hero-section .row--custom {
    --gutter-x: 80px;
  }
}
@media (min-width: 1400px) {
  .home-10_hero-section .row--custom {
    --gutter-x: 120px;
  }
}
.home-10_hero-image-block {
  max-width: 485px;
  position: relative;
}
.home-10_hero-image img {
  width: 100%;
}
.home-10_hero-image-card {
  position: absolute;
  width: 50.2%;
  right: 4%;
  bottom: 3%;
}
.home-10_hero-image-card img {
  width: 100%;
}
.home-10_hero-text-block-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .home-10_hero-text-block-wrapper {
    text-align: initial;
    row-gap: 42px;
  }
}
.home-10_hero-text-block-wrapper p {
  font-family: "Inter";
  font-weight: 400;
  color: #0F172A;
}
.home-10_hero-title {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .home-10_hero-title {
    margin-bottom: 36px;
  }
}
.home-10_hero-button-bottom-text {
  margin-top: 23px;
}
.home-10_hero-button-bottom-text p {
  font-family: "General Sans";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
}

/* =========== Home 10 : Content Section 1 styles ============== */
.home-10_content-section-1 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .home-10_content-section-1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .home-10_content-section-1 {
    padding-bottom: 110px;
  }
}
.home-10_content-section-1 .row--custom {
  --gutter-y: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-10_content-section-1 .row--custom {
    --gutter-x: 45px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-10_content-section-1 .row--custom {
    --gutter-x: 80px;
  }
}
@media (min-width: 1400px) {
  .home-10_content-section-1 .row--custom {
    --gutter-x: 120px;
  }
}
@media (min-width: 992px) {
  .home-10_content-1-image {
    max-width: 587px;
  }
}
.home-10_content-1-image img {
  width: 100%;
}
.home-10_content-1-text-block-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .home-10_content-1-text-block-wrapper {
    text-align: initial;
    row-gap: 40px;
  }
}
.home-10_content-1-text-block-wrapper p {
  max-width: 544px;
}
.home-10_content-button .btn-primary {
  min-width: 180px;
}

/* =========== Home 10 : Content Section 2 styles ============== */
.home-10_content-section-2 .row--custom {
  --gutter-y:30px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-10_content-section-2 .row--custom {
    --gutter-x:45px;
    align-items: center;
    justify-content: space-between;
  }
}
.home-10_content-2-text-block-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 35px;
}
@media (min-width: 992px) {
  .home-10_content-2-text-block-wrapper {
    text-align: initial;
    align-items: initial;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-10_content-2-text-block-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-10_content-2-text-block-wrapper {
    row-gap: 80px;
  }
}
.home-10_content-2-text-block-wrapper p {
  color: #495460;
}
.home-10_content-2-image {
  position: relative;
}
.home-10_content-2-image img {
  border-radius: 20px;
}
@media (min-width: 992px) {
  .home-10_content-2-image img {
    border-radius: 40px;
  }
}

/* =============== Home 10 : Service Scetion ================ */
.home-10_service-section {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-10_service-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-10_service-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.home-10_service-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F3F7FA;
  z-index: -1;
}
@media (min-width: 479px) {
  .home-10_service-section::before {
    left: 30px;
    right: 30px;
    border-radius: 20px;
  }
}
.home-10_service-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .home-10_service-section .section-heading {
    margin-bottom: 96px;
  }
}
.home-10_service-section .section-heading__title {
  max-width: 813px;
  margin-left: auto;
  margin-right: auto;
}
.home-10_service-widget-wrapper {
  display: flex;
  --gutter-y:30px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .home-10_service-widget-wrapper {
    justify-content: center;
  }
}
.home-10_service-widget-wrapper .service-widget {
  max-width: 337px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) {
  .home-10_service-widget-wrapper .service-widget {
    max-width: 360px;
  }
}

/* =============== Home 10 : FAQ Section ================ */
.faq-section {
  padding-top: 60px;
}
@media (min-width: 576px) {
  .faq-section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .faq-section {
    padding-top: 108px;
  }
}

/* ========== Home 10 : Testimoninal Section =========== */
.home-10_testimonial-section {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-10_testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-10_testimonial-section {
    padding-top: 94px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .home-10_testimonial-section {
    padding-bottom: 135px;
  }
}
.home-10_testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #F3F7FA;
  z-index: -1;
}
@media (min-width: 479px) {
  .home-10_testimonial-section::before {
    left: 30px;
    right: 30px;
    border-radius: 20px;
  }
}
.home-10_testimonial-section .row--custom {
  justify-content: center;
  --gutter-y:24px;
}
@media (min-width: 1200px) {
  .home-10_testimonial-section .row--custom {
    --gutter-x:24px;
    --gutter-y:46px;
  }
}
.home-10_testimonial-section .testimonial-card-2 {
  max-width: 416px;
  margin-left: auto;
  margin-right: auto;
}

/* =========== Home 10 : Content Section 1 styles ============== */
.home-10_brand-section {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 578px) {
  .home-10_brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-10_brand-section {
    padding-top: 109px;
    padding-bottom: 122px;
  }
}
.home-10_brand-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0C1523;
  z-index: -1;
}
@media (min-width: 479px) {
  .home-10_brand-section::before {
    left: 30px;
    right: 30px;
    border-radius: 20px;
  }
}
.home-10_brand-section .section-heading {
  max-width: 1099px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-10_brand-section .section-heading-title {
  color: #FFFFFF;
}
.home-10_brand-section .brand-row-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 19px;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-10_brand-section .brand-row-1 {
    column-gap: 45px;
  }
}
@media (min-width: 1200px) {
  .home-10_brand-section .brand-row-1 {
    column-gap: 75px;
  }
}
@media (min-width: 1400px) {
  .home-10_brand-section .brand-row-1 {
    column-gap: 125px;
  }
}
.home-10_brand-section .brand-row-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 96px;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-10_brand-section .brand-row-2 {
    column-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .home-10_brand-section .brand-row-2 {
    column-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-10_brand-section .brand-row-2 {
    column-gap: 96px;
  }
}
.home-10_brand-section-inner {
  display: flex;
  max-width: 1175.18px;
  margin: 0 auto;
  row-gap: 30px;
  flex-wrap: wrap;
}
@media (min-width: 479px) {
  .home-10_brand-section-inner {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .home-10_brand-section-inner {
    flex-direction: column;
    row-gap: 62px;
  }
}
.home-10_brand-section-inner .single-brand {
  max-width: 229.19px;
}
.home-10_brand-section-inner .single-brand img {
  width: 100%;
}

.home-11_hero-section {
  padding-top: 100px;
}
@media (min-width: 578px) {
  .home-11_hero-section {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .home-11_hero-section {
    padding-top: 140px;
  }
}
@media (min-width: 1200px) {
  .home-11_hero-section {
    padding-top: 160px;
  }
}
.home-11_hero-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
  text-align: center;
}
@media (min-width: 568px) {
  .home-11_hero-section .row--custom {
    --gutter-y: 60px;
  }
}
@media (min-width: 992px) {
  .home-11_hero-section .row--custom {
    --gutter-y: 80px;
  }
}
@media (min-width: 1200px) {
  .home-11_hero-section .row--custom {
    --gutter-y: 114px;
  }
}
.home-11_hero-content__button-text {
  font-size: 16px;
  line-height: 1.3;
  margin-top: 28px;
}
@media (min-width: 992px) {
  .home-11_hero-content__button-text {
    margin-top: 37px;
  }
}
.home-11_hero-content__button-text .dot {
  width: 6px;
  height: 6px;
  border-radius: 500px;
  background-color: #432CF3;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 3px;
}
@media (max-width: 479px) {
  .home-11_hero-content__button-text .dot {
    display: block;
    background-color: transparent;
  }
}
.home-11_hero-content-block {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
.home-11_hero-title {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .home-11_hero-title {
    margin-bottom: 70px;
  }
}
.home-11_hero-subtitle {
  letter-spacing: normal;
  color: #0C1523;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .home-11_hero-subtitle {
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .home-11_hero-subtitle {
    margin-bottom: 37px;
  }
}
.home-11_hero-image-block {
  position: relative;
  height: 600px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 60px;
}
@media (min-width: 576px) {
  .home-11_hero-image-block {
    margin-top: 80px;
  }
}
@media (min-width: 992px) {
  .home-11_hero-image-block {
    margin-top: 130px;
  }
}
.home-11_hero-button-block .btn {
  min-width: 209px;
}

.home-11_content-section-1 {
  border-top: 1px solid #EAEDF0;
}
.home-11_content-section-1 .row--custom {
  --gutter-y:30px;
  --gutter-x:40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-11_content-section-1 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-11_content-section-1 .row--custom {
    --gutter-x:60px;
  }
}
.home-11_content-section-1 .content-image {
  position: relative;
}
@media (max-width: 479px) {
  .home-11_content-section-1 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-11_content-section-1 .content-image > img {
  width: 100%;
  border-radius: 3%;
}
.home-11_content-section-1 .content-image__shape {
  position: absolute;
  bottom: 2%;
  right: 2%;
  width: 53%;
}
.home-11_content-section-1 .content__text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .home-11_content-section-1 .content__text-block {
    text-align: initial;
  }
}
.home-11_content__text-block-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 1400px) {
  .home-11_content__text-block-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-11_content__text-block-wrapper {
    row-gap: 115px;
  }
}
.home-11_content__widget-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 576px) {
  .home-11_content__widget-wrapper {
    flex-direction: row;
  }
}

.home-11_content-section-2 {
  background: #F3F7FA;
}
.home-11_content-section-2 .row--custom {
  --gutter-y:30px;
  --gutter-x:40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-11_content-section-2 .row--custom {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-11_content-section-2 .row--custom {
    --gutter-x:60px;
  }
}
.home-11_content-section-2 .content-image {
  position: relative;
  padding-left: 14%;
}
@media (min-width: 1200px) {
  .home-11_content-section-2 .content-image {
    max-width: 440px;
  }
}
@media (min-width: 1400px) {
  .home-11_content-section-2 .content-image {
    max-width: 586px;
  }
}
@media (max-width: 479px) {
  .home-11_content-section-2 .content-image--mobile-width {
    max-width: 260px;
  }
}
.home-11_content-section-2 .content-image > img {
  width: 100%;
  border-radius: 3%;
}
.home-11_content-section-2 .content-image__shape {
  position: absolute;
  bottom: 17%;
  left: 0;
  width: 53%;
  box-shadow: 0px 2.97872px 59.5745px rgba(0, 0, 0, 0.08);
}
.home-11_content-section-2 .content__text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .home-11_content-section-2 .content__text-block {
    text-align: initial;
  }
}
.home-11_content-section-2 .content__text-block p {
  max-width: 612px;
}
.home-11_content__text-block-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 1200px) {
  .home-11_content__text-block-wrapper {
    max-width: 615px;
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-11_content__text-block-wrapper {
    max-width: 643px;
    row-gap: 115px;
  }
}
.home-11_content-2__widget-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 576px) {
  .home-11_content-2__widget-wrapper {
    flex-direction: row;
  }
}

/* =========== Home 11 : Testimonail Section styles============== */
.home-11_testimonial-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-11_testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-11_testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .home-11_testimonial-section {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .home-11_testimonial-section {
    padding-bottom: 150px;
  }
}
.home-11_testimonial-section .section-heading__title {
  color: #fff;
}

/* =========== Home 11 : CTA Section ============== */
.home-11_cta-section .row--custom {
  --gutter-y: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-11_cta-section .row--custom {
    --gutter-x: 45px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .home-11_cta-section .row--custom {
    --gutter-x: 80px;
  }
}
@media (min-width: 1400px) {
  .home-11_cta-section .row--custom {
    --gutter-x: 120px;
  }
}
.home-11__feature-widgets-wrapper {
  margin-top: 54px;
  display: flex;
  row-gap: 56px;
  flex-direction: column;
}
@media (min-width: 480px) {
  .home-11__feature-widgets-wrapper {
    flex-direction: row;
    column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .home-11__feature-widgets-wrapper {
    flex-direction: column;
  }
}
.home-11__feature-widgets-wrapper p {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .home-11_cta-image {
    max-width: 587px;
  }
}
.home-11_cta-image img {
  width: 100%;
}
.home-11_cta-text-block-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .home-11_cta-text-block-wrapper {
    text-align: initial;
    row-gap: 40px;
  }
}
.home-11_cta-text-block-wrapper p {
  max-width: 544px;
  margin-left: auto;
  margin-right: auto;
}
.home-11_cta-button .btn-primary {
  min-width: 180px;
}

/*=========== Home 12 : Hero Section styles ==========*/
.home-12_hero-section {
  padding-top: 100px;
}
@media (min-width: 578px) {
  .home-12_hero-section {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .home-12_hero-section {
    padding-top: 140px;
  }
}
@media (min-width: 1200px) {
  .home-12_hero-section {
    padding-top: 160px;
  }
}
.home-12_hero-section .row--custom {
  --gutter-x: 40;
  --gutter-y: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-12_hero-section .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.home-12_hero-content {
  display: flex;
  text-align: center;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .home-12_hero-content {
    text-align: initial;
    row-gap: 42px;
  }
}
@media (min-width: 1400px) {
  .home-12_hero-content {
    padding-bottom: 90px;
  }
}
.home-12_hero-text-block {
  max-width: 691px;
}
.home-12_hero-text-block p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  line-height: 1.42;
  font-size: 20px;
  color: #EAEDF0;
  max-width: 606px;
}
@media (min-width: 576px) {
  .home-12_hero-text-block p {
    font-size: 22px;
  }
}
@media (min-width: 992px) {
  .home-12_hero-text-block p {
    font-size: 24px;
  }
}
.home-12_hero-title {
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .home-12_hero-title {
    font-size: 45px;
  }
}
@media (min-width: 992px) {
  .home-12_hero-title {
    margin-bottom: 46px;
  }
}
.home-12_hero-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 992px) {
  .home-12_hero-button-group {
    justify-content: initial;
  }
}
.home-12_hero-image-image-block {
  max-width: 435.61px;
}
.home-12_hero-image-image {
  margin: 0 0 -26% 0;
}
.home-12_hero-image-image img {
  width: 100%;
}

.hero-image {
  display: none;
  max-width: 495.78px;
  padding-right: 55.78px;
  position: relative;
}
@media (min-width: 992px) {
  .hero-image {
    display: block;
  }
}
.hero-image img {
  width: 100%;
  border-radius: inherit;
}
.hero-image__card {
  position: absolute;
  right: 0;
  bottom: 19%;
  width: 59.5%;
  border-radius: 20.6575px;
  box-shadow: 20.6575px 41.3149px 61.9724px rgba(0, 0, 0, 0.16);
}

.hero-content {
  max-width: 706px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: center;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .hero-content {
    padding-top: 25px;
    padding-bottom: 65px;
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .hero-content {
    padding-top: 30px;
    padding-bottom: 105px;
    margin-left: 42px;
  }
}
@media (min-width: 1400px) {
  .hero-content {
    padding-bottom: 135px;
  }
}
.hero-content .hero-subtitle {
  margin-bottom: 22px;
}
@media (min-width: 1200px) {
  .hero-content .hero-subtitle {
    margin-bottom: 38px;
  }
}
.hero-content .hero-title {
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .hero-content .hero-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .hero-content .hero-title {
    margin-bottom: 37px;
  }
}
.hero-content p {
  font-weight: 500;
  color: #0F172A;
}
@media (min-width: 992px) {
  .hero-content p {
    max-width: 596px;
  }
}

/* =============== Home 12 : Features Scetion ================ */
.home-12_feature-widgets-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 56px;
  margin-top: 54px;
  column-gap: 85px;
}
@media (min-width: 768px) {
  .home-12_feature-widgets-wrapper {
    flex-direction: row;
  }
  .home-12_feature-widgets-wrapper .feature-widget-3 {
    max-width: 470px;
  }
}

/* ********** Content Section 2 *********** */
.home-12_content__image-block {
  padding: 0 25px;
}
.home-12_content__image-block img {
  width: 100%;
}
@media (min-width: 1200px) {
  .home-12_content__text-block-wrapper {
    max-width: 595px;
  }
  .home-12_content__text-block-wrapper .content-text {
    padding-right: 12%;
  }
}
@media (min-width: 1400px) {
  .home-12_content__text-block-wrapper {
    max-width: 663px;
  }
}

.home-12_content-sp-top {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .home-12_content-sp-top {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .home-12_content-sp-top {
    padding-top: 130px;
  }
}
.home-12_content-sp-bottom {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-12_content-sp-bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-12_content-sp-bottom {
    padding-bottom: 130px;
  }
}
.home-12_content-sp-half {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .home-12_content-sp-half {
    padding-top: 68px;
  }
}

/*=========== Home 12 : Brand Section styles ==========*/
.home-12_brand-section {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .home-12_brand-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .home-12_brand-section {
    padding-top: 140px;
    padding-bottom: 105px;
  }
}
.home-12_brand-title {
  color: #495460;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.43;
  font-size: 18px;
}
@media (min-width: 992px) {
  .home-12_brand-title {
    font-size: 21px;
  }
}
@media (min-width: 992px) {
  .home-12_brand-title {
    text-align: initial;
  }
}
.home-12_brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-12_brands-wrapper {
    justify-content: space-between;
  }
}
.home-12_single-brand {
  max-width: 210px;
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  width: 50%;
}
@media (min-width: 480px) {
  .home-12_single-brand {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .home-12_single-brand {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .home-12_single-brand {
    width: auto;
  }
}
.home-12_single-brand img {
  width: 100%;
  max-width: auto;
}
@media (min-width: 1200px) {
  .home-12_single-brand img {
    width: auto;
    max-width: 100%;
  }
}

/*=========== Home 6 : Content Section styles ==========*/
.home-12_process-section .row--custom {
  --gutter-y: 20px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-12_process-section .row--custom {
    justify-content: initial;
  }
}
@media (min-width: 1200px) {
  .home-12_process-section .row--custom {
    --gutter-x: 35px;
  }
}
@media (min-width: 1400px) {
  .home-12_process-section .row--custom {
    --gutter-x: 0;
  }
}
@media (min-width: 1200px) {
  .home-12_process-section .section-heading {
    margin-bottom: 104px;
  }
}
.home-12_process-image-block {
  position: relative;
  max-width: 686px;
  padding-bottom: 8%;
  padding-right: 7%;
}
.home-12_process-image-block img {
  width: 100%;
}
@media (max-width: 991px) {
  .home-12_process-image-block--mobile-width {
    max-width: 360px;
  }
}
@media (max-width: 479px) {
  .home-12_process-image-block--mobile-width {
    max-width: 260px;
  }
}
.home-12_process-image__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38.5%;
}
.home-12_process-widgets-wrapper {
  max-width: 446px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 1200px) {
  .home-12_process-widgets-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .home-12_process-widgets-wrapper {
    padding-top: 33px;
  }
}

/*=========== Home 12 : CTA Section styles ==========*/
.home-12_cta-section {
  overflow: hidden;
}
@media (min-width: 992px) {
  .home-12_cta-section {
    padding-top: 90px;
  }
}
@media (min-width: 1200px) {
  .home-12_cta-section {
    padding-top: 230px;
  }
}
@media (min-width: 1400px) {
  .home-12_cta-section {
    padding-top: 255px;
  }
}
.home-12_cta-section .row--custom {
  --gutter-y: 40px;
  justify-content: center;
}
@media (min-width: 992px) {
  .home-12_cta-section .row--custom {
    --gutter-x: 45px;
  }
}
.home-12_cta-image-block {
  max-width: 820px;
  display: none;
}
@media (min-width: 992px) {
  .home-12_cta-image-block {
    display: block;
  }
}
@media (min-width: 992px) {
  .home-12_cta-image {
    margin: -8% -6% -17% -34%;
  }
}
@media (min-width: 1200px) {
  .home-12_cta-image {
    margin: -36% -13% -32% -85%;
  }
}
.home-12_cta-image img {
  width: 100%;
}
.home-12_cta-text-block {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .home-12_cta-text-block {
    padding-top: initial;
    padding-bottom: initial;
    text-align: initial;
    row-gap: 43px;
  }
}
.home-12_cta-text-block p {
  max-width: 555px;
}
.home-12_cta-button {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}
@media (min-width: 479px) {
  .home-12_cta-button {
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .home-12_cta-button {
    justify-content: initial;
  }
}
.home-12_cta-button img {
  width: 100%;
}

/* ============== About 1 : Testimonial Section ================ */
.case_banner-section {
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .case_banner-section {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .case_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .case_banner-section {
    padding-top: 161px;
  }
}
.case_banner-section .row--custom {
  justify-content: center;
}
.case_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .case_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .case_banner-title {
    margin-bottom: 43px;
  }
}
.case_banner-text-block {
  text-align: center;
}
.case_banner-text-block p {
  margin-bottom: 20px;
}
.case_banner-text-block p:last-child {
  margin-bottom: 0;
}

/* ============= Inner Case Study 1 Section=============== */
.case-study_main-section .row--custom {
  --gutter-x:33px;
  --gutter-y:30px;
  justify-content: center;
}
.case-study_main-section .section-heading__title {
  max-width: 729px;
  margin-left: auto;
  margin-right: auto;
}
.case-study_main-section .navigation-button-group {
  margin-top: 60px;
}
.case-study_dropdown-menu {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.case-study_dropdown-menu p {
  color: #8C8F9D;
}

/* ============== About 1 : Testimonial Section ================ */
.case-2_banner-section {
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .case-2_banner-section {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .case-2_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .case-2_banner-section {
    padding-top: 161px;
  }
}
.case-2_banner-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 992px) {
  .case-2_banner-content {
    flex-direction: row;
    text-align: initial;
  }
}
.case-2_banner-content__text-block {
  max-width: 575px;
}
@media (min-width: 1200px) {
  .case-2_banner-content__text-block {
    max-width: 600px;
  }
}
@media (min-width: 1400px) {
  .case-2_banner-content__text-block {
    max-width: 723px;
  }
}
@media (min-width: 576px) {
  .case-2_banner-content__text-block p {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .case-2_banner-content__text-block p {
    max-width: 538px;
    margin-left: 0;
  }
}
.case-2_banner-content__image img {
  width: 100%;
}
.case-2_banner-content__image-block {
  max-width: 350px;
}
@media (min-width: 992px) {
  .case-2_banner-content__image-block {
    max-width: 620px;
  }
}
@media (min-width: 1400px) {
  .case-2_banner-content__image-block {
    max-width: 578.64px;
  }
}
.case-2_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .case-2_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1400px) {
  .case-2_banner-title {
    margin-bottom: 43px;
  }
}

/* ============= Inner Case Study 1 Section=============== */
.case-study-2_main-section .row--custom {
  --gutter-x: 33px;
  --gutter-y: 30px;
  justify-content: center;
}
.case-study-2_main-section .section-heading__title {
  max-width: 729px;
  margin-left: auto;
  margin-right: auto;
}
.case-study-2_main-section .navigation-button-group {
  margin-top: 60px;
}

.case-details_banner-section {
  padding-top: 70px;
}
.case-details_banner-logo {
  margin-bottom: 36px;
}
.case-details_banner-title {
  margin-bottom: 46px;
}
.case-details_banner-content {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .case-details_banner-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .case-details_banner-content {
    padding-bottom: 98px;
  }
}
.case-details_banner-content .profile-widget {
  max-width: 403px;
}

.case-details_stats-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .case-details_stats-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .case-details_stats-section {
    padding-top: 73px;
    padding-bottom: 107px;
  }
}

.case-details_main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .case-details_main-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .case-details_main-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .case-details_main-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.case-details_sidebar {
  color: #000E17;
}
.case-details_sidebar .sidebar-single {
  border-bottom: 1px solid rgb(225, 231, 235);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.case-details_sidebar .sidebar-single:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.case-details_sidebar p, .case-details_sidebar .sidebar-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.case-details_sidebar a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #432CF3;
}
.case-details_sidebar .sidebar-title {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  color: #7F8995;
  margin-bottom: 18px;
}
.case-details_sidebar .sidebar-link-list {
  list-style: none;
}
.case-details_sidebar .sidebar-link-list a {
  color: #000E17;
  text-decoration: underline;
}
.case-details_main-content {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
}
.case-details_main-content > p:not(.text-large) {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: initial;
  margin-bottom: 23px;
}
.case-details_main-content .text-large {
  color: #021D13;
  margin-bottom: 33px;
}
.case-details_main-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 37px;
}
.case-details_main-content img {
  border-radius: 15px;
  width: 100%;
  margin-bottom: 58px;
}
.case-details_main-content__card {
  margin-top: 50px;
  margin-bottom: 50px;
}
.case-details_block-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing: -0.3px;
  margin-bottom: 27px;
}

/*=========== Case-details : Blog Section styles ==========*/
.case-details_blog-section .blog-section-title {
  max-width: 618px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .case-details_blog-section .blog-section-title {
    margin-bottom: 70px;
  }
}
.case-details_blog-section .row--custom {
  --gutter-y: 24px;
}

/*=========== Home 12 : Hero Section styles ==========*/
.product_hero-section {
  padding-top: 100px;
  padding-bottom: 10px;
}
@media (min-width: 576px) {
  .product_hero-section {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .product_hero-section {
    padding-top: 150px;
  }
}
@media (min-width: 120px) {
  .product_hero-section {
    padding-top: 175px;
  }
}
@media (min-width: 1400px) {
  .product_hero-section {
    padding-top: 200px;
  }
}
.product_hero-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
}
@media (min-width: 992px) {
  .product_hero-section .row--custom {
    --gutter-x: 45px;
    align-items: center;
    justify-content: space-between;
  }
}
.product_hero-content-block {
  max-width: 535px;
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  text-align: center;
  align-items: center;
}
@media (min-width: 992px) {
  .product_hero-content-block {
    row-gap: 40px;
    align-items: initial;
    text-align: initial;
  }
}
.product_hero-content-block p {
  font-weight: 500;
  color: #0C1523;
}
@media (min-width: 992px) {
  .product_hero-content-block p {
    max-width: 506px;
  }
}
.product_hero-title {
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .product_hero-title {
    margin-bottom: 40px;
  }
}
.product_hero-image img {
  width: 100%;
}
@media (min-width: 1400px) {
  .product_hero-image {
    padding-left: 70px;
  }
}

/*=========== Product : Content Section 1 styles ==========*/
.product_content-section-1 .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .product_content-section-1 .row--custom {
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .product_content-section-1 .row--custom {
    --gutter-x: 60px;
    justify-content: space-between;
  }
}
.product_content-text-block-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 479px) {
  .product_content-text-block-wrapper {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .product_content-text-block-wrapper {
    row-gap: 60px;
  }
}
@media (min-width: 1400px) {
  .product_content-text-block-wrapper {
    row-gap: 100px;
  }
}
.product_content-text-block-wrapper p {
  max-width: 527px;
}
.product_content-text-block-wrapper .content-widget-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  max-width: 490px;
}
.product_content-text-block-wrapper .content-widget-wrapper p {
  max-width: 443px;
}
.product_content-title {
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1;
  font-size: 32px;
  letter-spacing: -0.019231em;
}
@media (min-width: 576px) {
  .product_content-title {
    font-size: 36px;
  }
}
@media (min-width: 992px) {
  .product_content-title {
    font-size: 52px;
  }
}
@media (min-width: 1400px) {
  .product_content-image-1-block {
    padding-right: 80px;
  }
}
.product_content-image-1 img {
  width: 100%;
}

/*=========== Product : Content Section 2 styles ==========*/
.product_content-section-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .product_content-section-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .product_content-section-2 {
    padding-top: 100px;
    padding-bottom: 85px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .product_content-section-2 {
    padding-top: 135px;
  }
}
.product_content-section-2 .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .product_content-section-2 .row--custom {
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.product_content-2-text-block {
  text-align: center;
}
@media (min-width: 992px) {
  .product_content-2-text-block {
    text-align: initial;
  }
}
.product_content-image-2 {
  padding-left: 45px;
}
.product_content-image-2 img {
  width: 100%;
}

/*=========== Product : Content Section 3 styles ==========*/
.product_content-section-3 {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .product_content-section-3 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .product_content-section-3 {
    padding-bottom: 100px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .product_content-section-3 {
    padding-bottom: 135px;
  }
}
.product_content-section-3 .row--custom {
  --gutter-y: 40px;
  --gutter-x: 45px;
  justify-content: center;
}
@media (min-width: 992px) {
  .product_content-section-3 .row--custom {
    align-items: center;
    justify-content: space-between;
  }
}
.product_content-3-text-block {
  max-width: 511px;
  text-align: center;
}
.product_content-3-text-block p {
  max-width: 504px;
}
@media (min-width: 992px) {
  .product_content-3-text-block {
    text-align: initial;
  }
}
@media (min-width: 1200px) {
  .product_content-3-text-block {
    margin-left: 60px;
  }
}
@media (min-width: 1200px) {
  .product_content-image-3 {
    padding-left: 45px;
  }
}
.product_content-image-3 img {
  width: 100%;
}

/*=========== Product : Content Section 2 styles ==========*/
.product_testimonial-section .testimonial-widget-large {
  max-width: 766px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}
@media (min-width: 992px) {
  .product_testimonial-section .testimonial-widget-large {
    row-gap: 42px;
  }
}
.product_testimonial-section .testimonial-widget-large p {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.29;
  letter-spacing: -0.3px;
  color: #0C1523;
}
.product_testimonial-section .testimonial-widget-large__user-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 23px;
  text-align: center;
}
@media (min-width: 479px) {
  .product_testimonial-section .testimonial-widget-large__user-block {
    text-align: initial;
  }
}
.product_testimonial-section .testimonial-widget-large__image img {
  width: 100%;
}
.product_testimonial-section .testimonial-widget-large__user-name {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.62;
  color: #0C1523;
  margin-bottom: 6px;
}
.product_testimonial-section .testimonial-widget-large__user-position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  color: #495460;
  max-width: 192px;
}

/*=========== Quote : Feature Section styles ==========*/
.product-feature-section .row--custom {
  row-gap: 30px;
}
.product-feature-section .feature-widget-5 {
  max-width: 380px;
}

/* ============== About 1 : Testimonial Section ================ */
.about-1_testimonial-section {
  background: #0C1523;
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-1_testimonial-section .row--custom {
  --gutter-x: 24px;
  --gutter-y: 24px;
  justify-content: center;
}
@media (min-width: 576px) {
  .about-1_testimonial-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .about-1_testimonial-section {
    padding-top: 130px;
    padding-bottom: 118px;
  }
}

/* ============== About 1 : Testimonial Section ================ */
.about-1_banner-section {
  padding-top: 148px;
}
.about-1_banner-section .row--custom {
  justify-content: center;
}
.about-1_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .about-1_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .about-1_banner-title {
    margin-bottom: 43px;
  }
}
.about-1_banner-text-block {
  text-align: center;
}
.about-1_banner-text-block p {
  margin-bottom: 34px;
}
.about-1_banner-text-block p:last-child {
  margin-bottom: 0;
}

/* =========== About 2 : Feature Section ============== */
.about-2_feature-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .about-2_feature-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .about-2_feature-section {
    padding-bottom: 110px;
  }
}
.about-2_feature-section .row--custom {
  --gutter-y: 20px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .about-2_feature-section .row--custom {
    --gutter-x: 45px;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .about-2_feature-section .row--custom {
    --gutter-x: 80px;
  }
}
@media (min-width: 1400px) {
  .about-2_feature-section .row--custom {
    --gutter-x: 120px;
  }
}
.about-2_feature-text-block {
  margin-bottom: 37px;
  max-width: 507px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .about-2_feature-text-block {
    margin-bottom: 37px;
  }
}
.about-2__feature-widgets-wrapper {
  display: flex;
  row-gap: 48px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .about-2__feature-widgets-wrapper {
    flex-direction: row;
    column-gap: 30px;
  }
}
@media (min-width: 992px) {
  .about-2__feature-widgets-wrapper {
    flex-direction: column;
  }
}
.about-2__feature-widgets-wrapper p {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.about-2_feature-text-block-wrapper {
  max-width: 688px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  text-align: center;
}
@media (min-width: 992px) {
  .about-2_feature-text-block-wrapper {
    text-align: initial;
    row-gap: 40px;
  }
}
.about-2_feature-text-block-wrapper p {
  max-width: 544px;
  margin-left: auto;
  margin-right: auto;
}

/* ============== About 2 : Banner Section ================ */
.about-2_banner-section {
  padding-top: 146px;
}
.about-2_banner-section .row--custom {
  justify-content: center;
  --gutter-y: 20px;
}
@media (min-width: 576px) {
  .about-2_banner-section .row--custom {
    --gutter-y: 40px;
  }
}
@media (min-width: 1200px) {
  .about-2_banner-section .row--custom {
    --gutter-y: 74px;
  }
}
.about-2_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .about-2_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .about-2_banner-title {
    margin-bottom: 43px;
  }
}
.about-2_banner-text-block {
  max-width: 802px;
  text-align: center;
}
.about-2_banner-text-block p {
  margin-bottom: 20px;
}
.about-2_banner-text-block p:last-child {
  margin-bottom: 0;
}
.about-2_image-block img {
  width: 100%;
  height: 100%;
}

/* =========== About 2 Content Block Section Style ============ */
.about-2_content-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-2_content-section .row--custom {
  --gutter-y:25px;
}
@media (min-width: 576px) {
  .about-2_content-section {
    padding-top: 80px;
    padding-bottom: 80;
  }
}
@media (min-width: 1200px) {
  .about-2_content-section {
    padding-top: 97px;
    padding-bottom: 114px;
  }
}
.about-2_content-text-block {
  max-width: 520px;
}
.about-2_content-text-block p {
  max-width: 497px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #495460;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .about-2_content-text-block p {
    margin-bottom: 45px;
  }
}
.about-2_content-text-block p:last-child {
  margin-bottom: 0;
}
.about-2_content-title {
  margin-bottom: 13px;
}
@media (min-width: 1200px) {
  .about-2_content-title {
    margin-bottom: 30px;
  }
}

/*=========== About 4  : Banner Section styles ==========*/
.about-4_banner-section .about-4_banner-inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .about-4_banner-section .about-4_banner-inner {
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .about-4_banner-section .about-4_banner-inner {
    row-gap: 60px;
  }
}
@media (min-width: 1200px) {
  .about-4_banner-section .about-4_banner-inner {
    row-gap: 92px;
  }
}
.about-4_banner-section .about-4_banner-inner p {
  max-width: 590px;
}
.about-4_banner-section .banner-image-row--custom {
  --gutter-y: 40px;
}
.about-4_banner-section .banner-image-row--custom img {
  width: 100%;
}
.about-4_banner-section-title {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .about-4_banner-section-title {
    margin-bottom: 52px;
  }
}

/*=========== About 4 : Main Section styles ==========*/
.about-4_main-section {
  background: #070B18;
}
.about-4_main-inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .about-4_main-inner {
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .about-4_main-inner {
    row-gap: 60px;
  }
}
@media (min-width: 1200px) {
  .about-4_main-inner {
    row-gap: 92px;
  }
}
@media (min-width: 1400px) {
  .about-4_main-inner {
    row-gap: 125px;
  }
}
.about-4_main-inner p {
  max-width: 603px;
  color: #EAEDF0;
}
.about-4_main-inner p:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .about-4_main-text-row {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
  }
}
.about-4_main-section-title {
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .about-4_main-section-title {
    max-width: 405px;
    margin: 0 auto;
  }
}
.about-4_brand-image-row {
  --gutter-y: 24px;
}
.about-4_brand-image-row img {
  width: 100%;
}

/*=========== About 4  : Banner Section styles ==========*/
.about-4_stats-section .row-wrapper {
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #EAEDF0;
}
@media (min-width: 576px) {
  .about-4_stats-section .row-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .about-4_stats-section .row-wrapper {
    padding-top: 112px;
    padding-bottom: 85px;
  }
}
.about-4_stats-section .row--custom {
  justify-content: center;
  --gutter-y: 40px;
}
@media (min-width: 1200px) {
  .about-4_stats-section .stats-2-wrapper {
    padding-left: 55px;
  }
}
.about-4_stats-section .stats-2-wrapper .row--custom {
  --gutter-x: 20px;
}
@media (min-width: 1200px) {
  .about-4_stats-section .stats-2-wrapper .row--custom {
    --gutter-x: 30px;
  }
}
@media (min-width: 1400px) {
  .about-4_stats-section .stats-2-wrapper .row--custom {
    --gutter-x: 80px;
  }
}

/*======== Features-widget 2 ======*/
.inner-feature-section .row--custom {
  --gutter-y:35px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .inner-feature-section .feature-widget-wrapper .feature-widget-4 {
    max-width: 350px;
  }
}
@media (min-width: 1400px) {
  .inner-feature-section .feature-widget-wrapper .feature-widget-4 {
    max-width: 360px;
  }
}

/* =========== Inner Career Features Section ============ */
.career_feature-section {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 568px) {
  .career_feature-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .career_feature-section {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.career_feature-section .row--custom {
  --gutter-y:30px;
  --gutter-x:140px;
  justify-content: center;
}
.career_feature-section .section-heading {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.career_feature-section .section-heading p {
  max-width: 604px;
  margin-left: auto;
  margin-right: auto;
}
.career_feature-widget-wrapper {
  max-width: 903px;
  margin-left: auto;
  margin-right: auto;
}

/* =========== Career Main Section============ */
.career_main-job-section .section-heading p {
  max-width: 604px;
  margin-left: auto;
  margin-right: auto;
}
.career_main-job-section .job-card-list-block {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.career_main-job-section .job-card-list-block:last-child {
  margin-bottom: 0;
}
.career_main-job-section .job-card-list-block__title {
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 576px) {
  .career_main-job-section .job-card-list-block__title {
    text-align: initial;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .career_main-job-section .job-card-list-block__title {
    text-align: initial;
    margin-bottom: 27px;
  }
}

/*=========== Career : Banner Section styles ==========*/
.career_banner-section {
  padding-top: 100px;
}
@media (min-width: 576px) {
  .career_banner-section {
    padding-top: 120px;
  }
}
@media (min-width: 992px) {
  .career_banner-section {
    padding-top: 140px;
  }
}
.career_banner-section .career_banner-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .career_banner-section .career_banner-content {
    text-align: initial;
  }
}
@media (min-width: 992px) {
  .career_banner-section .career_banner-content {
    row-gap: 60px;
  }
}
@media (min-width: 1200px) {
  .career_banner-section .career_banner-content {
    row-gap: 92px;
  }
}
@media (min-width: 1200px) {
  .career_banner-section .career_banner-content .career_banner-title {
    padding-right: 41px;
  }
}
.career_banner-section .career_banner-content p {
  margin-top: 20px;
  max-width: 590px;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .career_banner-section .career_banner-content p {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .career_banner-section .career_banner-content p {
    margin-top: 52px;
  }
}
@media (min-width: 576px) {
  .career_banner-section .career_banner-content p {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .career_banner-section .career_banner-content p {
    margin-bottom: 52px;
  }
}
.career_banner-section .banner-button .btn {
  display: inline-flex;
  background-color: #432CF3;
  border: 1px solid #432CF3;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  list-style: 1.56;
}
.career_banner-section .banner-image-row--custom {
  --gutter-y: 40px;
}
.career_banner-section-title {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .career_banner-section-title {
    margin-bottom: 52px;
  }
}

/* ========== About 3 Team Member Section ============= */
.about-3_main-section .row--custom {
  --gutter-x:30px;
  --gutter-y:30px;
}
@media (min-width: 992px) {
  .about-3_main-section .row--custom {
    --gutter-x:47px;
    --gutter-y:48px;
  }
}

.about-3_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .about-3_banner-title {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .about-3_banner-title {
    margin-bottom: 43px;
  }
}
.about-3_banner-text-block {
  text-align: center;
}
@media (min-width: 1200px) {
  .about-3_banner-text-block {
    text-align: initial;
  }
}
.about-3_banner-text-block p {
  max-width: 655px;
}
@media (max-width: 1199px) {
  .about-3_banner-text-block p {
    margin-left: auto;
    margin-right: auto;
  }
}
.about-3_banner-inner {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media (min-width: 768px) {
  .about-3_banner-inner {
    row-gap: 100px;
  }
}
@media (min-width: 1200px) {
  .about-3_banner-inner {
    row-gap: 150px;
  }
}
.about-3_banner-inner .row--custom {
  --gutter-x: 12px;
}
@media (max-width: 991px) {
  .about-3_banner-inner .row--custom {
    --gutter-y: 24px;
  }
}
@media (min-width: 1200px) {
  .about-3_banner-inner .col--custom-2 {
    margin-top: -355px;
  }
}
.about-3_banner-image {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.about-3_banner-image img {
  width: 100%;
}
.about-3_banner-image-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1200px) {
  .about-3_banner-image-block {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .about-3_banner-image-single.left-single-image {
    margin-top: -166px;
  }
  .about-3_banner-image-single.right-single-image {
    margin-top: 98px;
  }
}
.about-3_banner-info-block {
  padding: 20px;
}
.about-3_banner-info-block h3 {
  margin-bottom: 20px;
}
@media (max-width: 1199px) and (min-width: 768px) {
  .about-3_banner-info-block {
    display: none;
  }
}
@media (min-width: 1200px) {
  .about-3_banner-info-block {
    padding: 80px 40px 30px 80px;
  }
  .about-3_banner-info-block h3 {
    margin-bottom: 30px;
  }
}

/* ============== About 5 : Banner Section ================ */
.about-5_banner-section {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .about-5_banner-section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .about-5_banner-section {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) {
  .about-5_banner-section {
    padding-top: 135px;
  }
}
.about-5_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .about-5_banner-title {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .about-5_banner-title {
    margin-bottom: 43px;
  }
}
.about-5_banner-text-block {
  text-align: center;
}
@media (min-width: 1200px) {
  .about-5_banner-text-block {
    text-align: initial;
  }
}
.about-5_banner-text-block p {
  max-width: 826px;
}
@media (min-width: 992px) {
  .about-5_banner-text-block p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========== About 5 Team Section ============= */
.about-5_main-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-5_main-section .section-heading {
  text-align: center;
}
@media (min-width: 768px) {
  .about-5_main-section .section-heading {
    text-align: initial;
  }
}
@media (min-width: 576px) {
  .about-5_main-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .about-5_main-section {
    padding-top: 98px;
    padding-bottom: 103px;
  }
}
.about-5_main-section__title-block {
  text-align: center;
  margin-bottom: 54px;
}
@media (min-width: 1200px) {
  .about-5_main-section__title-block {
    text-align: initial;
  }
}

.pricing-one__inner {
  display: flex;
  flex-direction: column;
  row-gap: 111px;
}

.pricing-one__feature-table {
  width: 100%;
}
.pricing-one__feature-table-wrapper {
  overflow-x: auto;
}
.pricing-one__feature-table tr {
  border-bottom: 1px solid #EAEDF0;
}
.pricing-one__feature-table .cell {
  padding-top: 15px;
  padding-bottom: 15px;
  width: 20%;
  color: #495460;
  font-weight: 500;
}
.pricing-one__feature-table .cell:not(:last-of-type) {
  padding-right: 30px;
}
@media (max-width: 768px) {
  .pricing-one__feature-table .cell:not(:last-of-type) {
    padding-right: 60px;
  }
}
.pricing-one__feature-table .cell .table-heading-block {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.pricing-one__feature-table .cell .table-heading__category-text {
  display: block;
  margin-bottom: 20px;
}
.pricing-one__feature-table .cell .table-heading__title {
  letter-spacing: -0.3px;
  padding-bottom: 16px;
}
.pricing-one__feature-table .table-tick::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  color: #22C55E;
}
.pricing-one__feature-table .table-empty::before {
  content: "";
  display: block;
  height: 3px;
  width: 12px;
  border-radius: 500px;
  background-color: #EAEDF0;
}

/* 
&__list {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #0c1523;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    position: relative;
    &-item {
      display: flex;
      column-gap: 10px;
      &::before {
        content: "\f00c";
        font-weight: 900;
        font-family: "Font Awesome 6 Free";
      }
      &.disable{
        color: $neutral-04 ;
        &::before {
          content: "\f00d";
          color: $neutral-04 ;
        }
      }
    }
  }
*/
/* ============== Pricing : Banner Section ================ */
.pricing_banner-section {
  padding-top: 150px;
}
.pricing_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .pricing_banner-title {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .pricing_banner-title {
    margin-bottom: 43px;
  }
}
.pricing_banner-text-block {
  text-align: center;
}
@media (min-width: 1200px) {
  .pricing_banner-text-block {
    text-align: initial;
  }
}
.pricing_banner-text-block p {
  max-width: 826px;
}
@media (min-width: 992px) {
  .pricing_banner-text-block p {
    margin-left: auto;
    margin-right: auto;
  }
}

/*=========== Pricing 2 : FAQ Section styles ==========*/
.pricing-2_faq-section .section-heading {
  text-align: center;
}
@media (min-width: 992px) {
  .pricing-2_faq-section .section-heading {
    text-align: initial;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pricing-2_faq-section .row--custom {
  display: flex;
  flex-wrap: wrap;
  --gutter-y: 40px;
}
@media (min-width: 992px) {
  .pricing-2_faq-section .row--custom {
    --gutter-x: 45px;
  }
}
@media (min-width: 1200px) {
  .pricing-2_faq-section .row--custom {
    --gutter-x: 60px;
  }
}
@media (min-width: 1400px) {
  .pricing-2_faq-section .row--custom {
    --gutter-x: 80px;
  }
}
.pricing-2_faq-section .faq-widget__title {
  font-weight: 600;
  font-size: 21px;
  line-height: 1.62;
  color: #0C1523;
  margin-bottom: 20px;
}
.pricing-2_faq-section .faq-widget p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #495460;
}
.pricing-2_faq-section-inner {
  text-align: center;
  max-width: 1114px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .pricing-2_faq-section-inner {
    text-align: initial;
  }
}
.pricing-2_faq-section-footer-text {
  text-align: center;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .pricing-2_faq-section-footer-text {
    text-align: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
  }
}
.pricing-2_faq-section-footer-text span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #495460;
}

/*=========== Pricing 2 : Pricing Section styles ==========*/
.pricing-2_pricing-section {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .pricing-2_pricing-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .pricing-2_pricing-section {
    padding-top: 140px;
    padding-bottom: 170px;
  }
}
.pricing-2_pricing-section .row--custom {
  --gutter-y:40px;
  justify-content: center;
}
.pricing-2_pricing-section .section-heading {
  text-align: center;
}
.pricing-2_pricing-section .pricing-control {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .pricing-2_pricing-section .pricing-control {
    margin-bottom: 79px;
  }
}
.pricing-2_section-heading {
  max-width: 849px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .pricing-2_section-heading {
    margin-bottom: 60px;
  }
}
.pricing-2_section-heading__title {
  margin-bottom: 35px;
}
.pricing-2_pricing-logo-section {
  margin-top: 35px;
}
@media (min-width: 992px) {
  .pricing-2_pricing-logo-section {
    margin-top: 77px;
  }
}
.pricing-2_pricing-logo-section p {
  margin-bottom: 30px;
  color: #71717A;
}
.pricing-2_pricing-logo-section-wrapper {
  display: flex;
  max-width: 505px;
  margin-left: auto;
  margin-right: auto;
  column-gap: 16px;
  justify-content: center;
  row-gap: 15px;
  flex-wrap: wrap;
}
.pricing-2_pricing-control-block {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .pricing-2_pricing-control-block {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .pricing-2_pricing-control-block {
    margin-bottom: 80px;
  }
}
.pricing-2_pricing-control-block .pricing-control-2 {
  height: 50px;
}

/*=========== Quote : Banner Section styles ==========*/
.quote_banner-section {
  padding-top: 60px;
  padding-bottom: 27px;
}
@media (min-width: 576px) {
  .quote_banner-section {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .quote_banner-section {
    padding-top: 146px;
  }
}
.quote_banner-section .row--custom {
  justify-content: center;
}
.quote_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .quote_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .quote_banner-title {
    margin-bottom: 43px;
  }
}
.quote_banner-text-block {
  text-align: center;
}

/*=========== Quote : Feature Section styles ==========*/
.quote-feature-section .row--custom {
  row-gap: 30px;
}
.quote-feature-section .feature-widget-5 {
  max-width: 380px;
}

/* ============ Form Section Style =============== */
.quote_main-section {
  padding-bottom: 60px;
  padding-top: 60px;
}
@media (min-width: 576px) {
  .quote_main-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .quote_main-section {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .quote_main-section {
    padding-top: 96px;
    padding-bottom: 136px;
  }
}

.quote-2_main-section {
  padding-top: 164px;
  padding-bottom: 150px;
  border-bottom: 1px solid #EAEDF0;
}
@media (max-width: 991px) {
  .quote-2_main-section-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 565px) {
  .quote-2_main-section-wrapper {
    margin-bottom: 40px;
  }
}
.quote-2_main-section .row--custom {
  --gutter-y: 48px;
}
.quote-2_main-section .section-title p {
  margin-right: 65px;
}
.quote-2_main-section .contact-form-box .contact-form-heading {
  text-align: center;
  margin-bottom: 50px;
}
.quote-2_main-section .contact-form-box .contact-form-heading p {
  font-size: 16px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.contact_main-section {
  border-bottom: 1px solid #EAEDF0;
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .contact_main-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .contact_main-section {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
.contact_main-section-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .contact_main-section-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .contact_main-section-wrapper {
    margin-bottom: 40px;
  }
}
.contact_main-section .row--custom {
  --gutter-y: 48px;
}
.contact_main-section .section-title p {
  margin-right: 65px;
}
.contact_main-section .contact-form-box .contact-form-heading {
  text-align: center;
  margin-bottom: 50px;
}
.contact_main-section .contact-form-box .contact-form-heading p {
  font-size: 16px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.cd_job-details-section {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .cd_job-details-section .row--custom {
    --gutter-y: 40px;
  }
}
.cd_job-details__inner {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.cd_job-details__banner {
  padding-top: 147px;
}
.cd_job-details__banner .row--custom {
  justify-content: center;
}
.cd_job-details__job-info {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.cd_job-details__job-info-block {
  background-color: #F3F7FA;
  padding: 27px 40px;
}
.cd_job-details__job-info-block .divider {
  height: 2px;
  width: 100%;
  background: #EAEDF0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.cd_job-details__job-info-title h2 {
  font-size: 21px;
  line-height: 1.43;
}
.cd_job-details__job-info-single {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  column-gap: 14px;
}
.cd_job-details__job-info-single span {
  color: #7F8995;
}
.cd_job-details__job-info-single p {
  font-size: 16px;
  color: #0C1523;
}
.cd_job-details__job-description {
  padding-left: 50px;
  padding-right: 50px;
}
.cd_job-details__job-description h5 {
  margin-top: 60px;
  margin-bottom: 28px;
}
.cd_job-details__job-description p,
.cd_job-details__job-description li {
  font-size: 18px;
  line-height: 1.56;
  font-weight: 500;
}
.cd_job-details__job-description li {
  padding-left: 24px;
  position: relative;
}
.cd_job-details__job-description li:not(:last-child) {
  margin-bottom: 15px;
}
.cd_job-details__job-description li::before {
  content: "";
  height: 8px;
  width: 8px;
  background-color: #0C1523;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 500px;
}

/* ============== About 1 : Testimonial Section ================ */
.blog_banner-section {
  padding-top: 80px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .blog_banner-section {
    padding-top: 100px;
  }
}
@media (min-width: 992px) {
  .blog_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .blog_banner-section {
    padding-top: 161px;
  }
}
.blog_banner-section .row--custom {
  justify-content: center;
}
.blog_banner-title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .blog_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog_banner-title {
    margin-bottom: 43px;
  }
}
.blog_banner-text-block {
  text-align: center;
}
.blog_banner-text-block p {
  margin-bottom: 20px;
}
.blog_banner-text-block p:last-child {
  margin-bottom: 0;
}

.blog_section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .blog_section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .blog_section {
    padding-top: 100px;
    padding-bottom: 113px;
  }
}
.blog_section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 538px;
}
@media (min-width: 1200px) {
  .blog_section .section-heading {
    max-width: 770px;
  }
}
.blog_section .row--blog-custom {
  --gutter-y: 40px;
}
@media (min-width: 1400px) {
  .blog_section .row--blog-custom {
    --gutter-x: 30px;
  }
}

.blog-two_section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-two_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .blog-two_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .blog-two_section {
    padding-top: 100px;
    padding-bottom: 113px;
  }
}
.blog-two_section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 538px;
}
@media (min-width: 1200px) {
  .blog-two_section .section-heading {
    max-width: 770px;
  }
}
.blog-two_section .row--blog-custom {
  --gutter-y: 40px;
}
@media (min-width: 1400px) {
  .blog-two_section .row--blog-custom {
    --gutter-x: 30px;
  }
}

.blog-two_section .row--custom {
  --gutter-y: 40px;
  --gutter-x: 50px;
}
.blog-two_section .sidebar {
  /*~ ******Sidebar Blog Card *********** ~*/
}
@media (min-width: 1200px) {
  .blog-two_section .sidebar-one {
    max-width: 441px;
    margin-left: auto;
  }
}
.blog-two_section .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px 18px;
}
.blog-two_section .sidebar-title-block {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #432CF3;
}
.blog-two_section .sidebar-title-block h3 ~ * {
  margin-top: 17px;
}
.blog-two_section .sidebar-category {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
}
.blog-two_section .sidebar-category:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog-two_section .sidebar-category-list {
  display: flex;
  flex-direction: column;
}
.blog-two_section .sidebar-blog {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-two_section .sidebar-blog:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog-two_section .sidebar-blog_date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.blog-two_section .sidebar-blog-list {
  display: flex;
  flex-direction: column;
}
.blog-two_section .sidebar-blog-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.blog-two_section .sidebar-search-input .sidebar-title-block {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.31;
  color: #121127;
}
.blog-two_section .sidebar-search-input.with-border {
  border: 1.5px solid #E8E8E8;
  padding: 24px;
  border-radius: 10px;
}
.blog-two_section .sidebar-search-input .form-control {
  padding: 16px 30px;
  border: none;
}
.blog-two_section .sidebar-search-input .input-wrapper {
  border-radius: 10px;
  background-color: rgba(18, 20, 29, 0.03);
  border: 1px solid rgba(18, 20, 29, 0);
}
.blog-two_section .sidebar-search-input input {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(18, 20, 29);
}
.blog-two_section .sidebar-search-input input::placeholder {
  color: rgba(18, 20, 29, 0.5);
}
.blog-two_section .sidebar-search-input input.icon-left {
  padding-left: 55px;
}
.blog-two_section .sidebar-blog-card {
  max-width: 441px;
  background: #121127;
  padding: 24px;
  border-radius: 10px;
}
.blog-two_section .sidebar-blog-card-title {
  color: #fff;
  margin-bottom: 10px;
}
.blog-two_section .sidebar-blog-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 26px;
}
.blog-two_section .sidebar-blog-card input {
  padding: 14px 0px 14px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 24px;
  border: 1.5px solid #6B6B6B;
  border-radius: 10px;
  background: #121127;
  width: 100%;
}
.blog-two_section .sidebar-blog-card button {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 0px;
  width: 100%;
  color: #FFFFFF;
  background: #4C40F7;
  border-radius: 10px;
  border: 0px;
}
.blog-two_section .sidebar-tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-two_section .sidebar-tags-block .tag {
  padding: 15px 35px;
  background: #fff;
  border: 0.5px solid #B9C1D9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.blog-three_section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-three_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .blog-three_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .blog-three_section {
    padding-top: 100px;
    padding-bottom: 113px;
  }
}
.blog-three_section .section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 538px;
}
@media (min-width: 1200px) {
  .blog-three_section .section-heading {
    max-width: 770px;
  }
}
.blog-three_section .row--blog-custom {
  --gutter-y: 40px;
}
@media (min-width: 1400px) {
  .blog-three_section .row--blog-custom {
    --gutter-x: 30px;
  }
}

.blog-three_section .row--custom {
  flex-direction: column-reverse;
  --gutter-y: 40px;
  --gutter-x: 50px;
}
@media (min-width: 1200px) {
  .blog-three_section .row--custom {
    flex-direction: row;
  }
}
.blog-three_section .sidebar {
  /*~ ******Sidebar Blog Card *********** ~*/
}
@media (min-width: 1200px) {
  .blog-three_section .sidebar-one {
    max-width: 441px;
    margin-left: auto;
  }
}
.blog-three_section .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px 18px;
}
.blog-three_section .sidebar-title-block {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #432CF3;
}
.blog-three_section .sidebar-title-block h3 ~ * {
  margin-top: 17px;
}
.blog-three_section .sidebar-category {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
}
.blog-three_section .sidebar-category:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog-three_section .sidebar-category-list {
  display: flex;
  flex-direction: column;
}
.blog-three_section .sidebar-blog {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-three_section .sidebar-blog:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog-three_section .sidebar-blog_date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.blog-three_section .sidebar-blog-list {
  display: flex;
  flex-direction: column;
}
.blog-three_section .sidebar-blog-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.blog-three_section .sidebar-search-input .sidebar-title-block {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.31;
  color: #121127;
}
.blog-three_section .sidebar-search-input.with-border {
  border: 1.5px solid #E8E8E8;
  padding: 24px;
  border-radius: 10px;
}
.blog-three_section .sidebar-search-input .form-control {
  padding: 16px 30px;
  border: none;
}
.blog-three_section .sidebar-search-input .input-wrapper {
  border-radius: 10px;
  background-color: rgba(18, 20, 29, 0.03);
  border: 1px solid rgba(18, 20, 29, 0);
}
.blog-three_section .sidebar-search-input input {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(18, 20, 29);
}
.blog-three_section .sidebar-search-input input::placeholder {
  color: rgba(18, 20, 29, 0.5);
}
.blog-three_section .sidebar-search-input input.icon-left {
  padding-left: 55px;
}
.blog-three_section .sidebar-blog-card {
  max-width: 441px;
  background: #121127;
  padding: 24px;
  border-radius: 10px;
}
.blog-three_section .sidebar-blog-card-title {
  color: #fff;
  margin-bottom: 10px;
}
.blog-three_section .sidebar-blog-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 26px;
}
.blog-three_section .sidebar-blog-card input {
  padding: 14px 0px 14px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 24px;
  border: 1.5px solid #6B6B6B;
  border-radius: 10px;
  background: #121127;
  width: 100%;
}
.blog-three_section .sidebar-blog-card button {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 0px;
  width: 100%;
  color: #FFFFFF;
  background: #4C40F7;
  border-radius: 10px;
  border: 0px;
}
.blog-three_section .sidebar-tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-three_section .sidebar-tags-block .tag {
  padding: 15px 35px;
  background: #fff;
  border: 0.5px solid #B9C1D9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.blog_details-main {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .blog_details-main {
    padding-top: 55px;
    padding-bottom: 70px;
  }
}
.blog_details-main .row {
  --gutter-x: 30px;
}
@media (min-width: 1400px) {
  .blog_details-main .row {
    --gutter-x: 50px;
  }
}
.blog_details__content .blog_details__meta span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121127;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details__content .blog_details__meta span {
    margin-bottom: 40px;
  }
}
.blog_details__content .blog-thumbnail {
  border-radius: 5px;
}
.blog_details__content h2 {
  color: #121127;
  margin-bottom: 20px;
}
.blog_details__content h3 {
  margin-bottom: 20px;
}
.blog_details__content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}
.blog_details__content img:not(.meta-avatar) {
  margin-bottom: 20px;
  width: 100%;
}
.blog_details__content div + img,
.blog_details__content h2 + img,
.blog_details__content p + img {
  margin-top: 60px;
}
.blog_details__content .meta-avatar {
  width: 40px;
}
.blog_details__content blockquote {
  padding: 30px 40px;
  position: relative;
  background: rgba(18, 20, 29, 0.05);
  border-radius: 5px;
  font-size: 18px;
  color: #121127;
  margin: 40px 0;
  font-style: italic;
}
.blog_details__content blockquote .quote {
  width: 30px;
  margin-bottom: 20px;
}
.blog_details__content ul {
  list-style-type: disc;
  margin-left: 20px;
}
.blog_details__content ul li {
  font-size: 18px;
}
.blog_details__content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.blog_details-main .blog-comment-block {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .blog_details-main .blog-comment-block {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .blog_details-main .blog-comment-block {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .blog_details-main .blog-comment-block {
    padding-top: 60px;
    padding-bottom: 130px;
    gap: 132px;
  }
}
.blog_details-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 2px solid rgba(18, 20, 29, 0.05);
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-author-block {
    flex-direction: row;
    padding: 40px 0;
    margin-top: 40px;
  }
}
.blog_details-author-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog_details-author-info p {
  font-size: 18px;
}
.blog_details-author-info .author-image {
  width: 70px;
  height: 70px;
}
.blog_details-navigation-buttons-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-navigation-buttons-wrapper {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

/* ============== About 1 : Testimonial Section ================ */
.blog-details_banner-section {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details_banner-section {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .blog-details_banner-section {
    padding-top: 161px;
  }
}
.blog-details_banner-section .row--custom {
  justify-content: center;
}
.blog-details_banner-title {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details_banner-title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .blog-details_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details_banner-title {
    margin-bottom: 43px;
  }
}
.blog-details_banner-text-block {
  text-align: center;
}
.blog-details_banner-text-block p {
  margin-bottom: 20px;
}
.blog-details_banner-text-block p:last-child {
  margin-bottom: 0;
}

/* ============== Blog Details Two - Banner ================ */
.blog-details-two_banner-section {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details-two_banner-section {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details-two_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .blog-details-two_banner-section {
    padding-top: 161px;
  }
}
.blog-details-two_banner-section .row--custom {
  justify-content: center;
}
.blog-details-two_banner-title {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details-two_banner-title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .blog-details-two_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details-two_banner-title {
    margin-bottom: 43px;
  }
}
.blog-details-two_banner-text-block {
  text-align: center;
}
.blog-details-two_banner-text-block p {
  margin-bottom: 20px;
}
.blog-details-two_banner-text-block p:last-child {
  margin-bottom: 0;
}

.blog_details-two-main {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details-two-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .blog_details-two-main {
    padding-top: 55px;
    padding-bottom: 70px;
  }
}
.blog_details-two-main .row {
  --gutter-x: 30px;
}
@media (min-width: 1400px) {
  .blog_details-two-main .row {
    --gutter-x: 50px;
  }
}
.blog_details-two__content .blog_details__meta span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121127;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details-two__content .blog_details__meta span {
    margin-bottom: 40px;
  }
}
.blog_details-two__content .blog-thumbnail {
  border-radius: 5px;
}
.blog_details-two__content h2 {
  color: #121127;
  margin-bottom: 20px;
}
.blog_details-two__content h3 {
  margin-bottom: 20px;
}
.blog_details-two__content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}
.blog_details-two__content img:not(.meta-avatar) {
  margin-bottom: 20px;
  width: 100%;
}
.blog_details-two__content div + img,
.blog_details-two__content h2 + img,
.blog_details-two__content p + img {
  margin-top: 60px;
}
.blog_details-two__content .meta-avatar {
  width: 40px;
}
.blog_details-two__content blockquote {
  padding: 30px 40px;
  position: relative;
  background: rgba(18, 20, 29, 0.05);
  border-radius: 5px;
  font-size: 18px;
  color: #121127;
  margin: 40px 0;
  font-style: italic;
}
.blog_details-two__content blockquote .quote {
  width: 30px;
  margin-bottom: 20px;
}
.blog_details-two__content ul {
  list-style-type: disc;
  margin-left: 20px;
}
.blog_details-two__content ul li {
  font-size: 18px;
}
.blog_details-two__content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.blog_details-two-main .blog-comment-block {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .blog_details-two-main .blog-comment-block {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .blog_details-two-main .blog-comment-block {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 100px;
  }
}
.blog_details-two-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 2px solid rgba(18, 20, 29, 0.05);
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-two-author-block {
    flex-direction: row;
    padding: 40px 0;
    margin-top: 40px;
  }
}
.blog_details-two-author-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog_details-two-author-info p {
  font-size: 18px;
}
.blog_details-two-author-info .author-image {
  width: 70px;
  height: 70px;
}
.blog_details-two-navigation-buttons-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-two-navigation-buttons-wrapper {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

/*~ ***** Blog:Sidebar Section ***********/
.blog_details-two-main .sidebar {
  /*~ ******Sidebar Blog Card *********** ~*/
}
@media (min-width: 1200px) {
  .blog_details-two-main .sidebar-one {
    max-width: 441px;
    margin-left: auto;
  }
}
.blog_details-two-main .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px 18px;
}
.blog_details-two-main .sidebar-title-block {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #432CF3;
}
.blog_details-two-main .sidebar-title-block h3 ~ * {
  margin-top: 17px;
}
.blog_details-two-main .sidebar-category {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
}
.blog_details-two-main .sidebar-category:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog_details-two-main .sidebar-category-list {
  display: flex;
  flex-direction: column;
}
.blog_details-two-main .sidebar-blog {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog_details-two-main .sidebar-blog:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog_details-two-main .sidebar-blog_date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.blog_details-two-main .sidebar-blog-list {
  display: flex;
  flex-direction: column;
}
.blog_details-two-main .sidebar-blog-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.blog_details-two-main .sidebar-search-input .sidebar-title-block {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.31;
  color: #121127;
}
.blog_details-two-main .sidebar-search-input.with-border {
  border: 1.5px solid #E8E8E8;
  padding: 24px;
  border-radius: 10px;
}
.blog_details-two-main .sidebar-search-input .form-control {
  padding: 16px 30px;
  border: none;
}
.blog_details-two-main .sidebar-search-input .input-wrapper {
  border-radius: 10px;
  background-color: rgba(18, 20, 29, 0.03);
  border: 1px solid rgba(18, 20, 29, 0);
}
.blog_details-two-main .sidebar-search-input input {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(18, 20, 29);
}
.blog_details-two-main .sidebar-search-input input::placeholder {
  color: rgba(18, 20, 29, 0.5);
}
.blog_details-two-main .sidebar-search-input input.icon-left {
  padding-left: 55px;
}
.blog_details-two-main .sidebar-blog-card {
  max-width: 441px;
  background: #121127;
  padding: 24px;
  border-radius: 10px;
}
.blog_details-two-main .sidebar-blog-card-title {
  color: #fff;
  margin-bottom: 10px;
}
.blog_details-two-main .sidebar-blog-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 26px;
}
.blog_details-two-main .sidebar-blog-card input {
  padding: 14px 0px 14px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 24px;
  border: 1.5px solid #6B6B6B;
  border-radius: 10px;
  background: #121127;
  width: 100%;
}
.blog_details-two-main .sidebar-blog-card button {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 0px;
  width: 100%;
  color: #FFFFFF;
  background: #4C40F7;
  border-radius: 10px;
  border: 0px;
}
.blog_details-two-main .sidebar-tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog_details-two-main .sidebar-tags-block .tag {
  padding: 15px 35px;
  background: #fff;
  border: 0.5px solid #B9C1D9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* ============== Blog Details Two - Banner ================ */
.blog-details-three_banner-section {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details-three_banner-section {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details-three_banner-section {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .blog-details-three_banner-section {
    padding-top: 161px;
  }
}
.blog-details-three_banner-section .row--custom {
  justify-content: center;
}
.blog-details-three_banner-title {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog-details-three_banner-title {
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .blog-details-three_banner-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .blog-details-three_banner-title {
    margin-bottom: 43px;
  }
}
.blog-details-three_banner-text-block {
  text-align: center;
}
.blog-details-three_banner-text-block p {
  margin-bottom: 20px;
}
.blog-details-three_banner-text-block p:last-child {
  margin-bottom: 0;
}

.blog_details-three-main {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details-three-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .blog_details-three-main {
    padding-top: 55px;
    padding-bottom: 70px;
  }
}
.blog_details-three-main .row {
  flex-direction: column-reverse;
  --gutter-x: 30px;
}
@media (min-width: 1400px) {
  .blog_details-three-main .row {
    flex-direction: row;
    --gutter-x: 50px;
  }
}
.blog_details-three__content .blog_details__meta span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #121127;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .blog_details-three__content .blog_details__meta span {
    margin-bottom: 40px;
  }
}
.blog_details-three__content .blog-thumbnail {
  border-radius: 5px;
}
.blog_details-three__content h2 {
  color: #121127;
  margin-bottom: 20px;
}
.blog_details-three__content h3 {
  margin-bottom: 20px;
}
.blog_details-three__content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}
.blog_details-three__content img:not(.meta-avatar) {
  margin-bottom: 20px;
  width: 100%;
}
.blog_details-three__content div + img,
.blog_details-three__content h2 + img,
.blog_details-three__content p + img {
  margin-top: 60px;
}
.blog_details-three__content .meta-avatar {
  width: 40px;
}
.blog_details-three__content blockquote {
  padding: 30px 40px;
  position: relative;
  background: rgba(18, 20, 29, 0.05);
  border-radius: 5px;
  font-size: 18px;
  color: #121127;
  margin: 40px 0;
  font-style: italic;
}
.blog_details-three__content blockquote .quote {
  width: 30px;
  margin-bottom: 20px;
}
.blog_details-three__content ul {
  list-style-type: disc;
  margin-left: 20px;
}
.blog_details-three__content ul li {
  font-size: 18px;
}
.blog_details-three__content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.blog_details-three-main .blog-comment-block {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 576px) {
  .blog_details-three-main .blog-comment-block {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 60px;
  }
}
@media (min-width: 768px) {
  .blog_details-three-main .blog-comment-block {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 100px;
  }
}
.blog_details-three-author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 2px solid rgba(18, 20, 29, 0.05);
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-three-author-block {
    flex-direction: row;
    padding: 40px 0;
    margin-top: 40px;
  }
}
.blog_details-three-author-info {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.blog_details-three-author-info p {
  font-size: 18px;
}
.blog_details-three-author-info .author-image {
  width: 70px;
  height: 70px;
}
.blog_details-three-navigation-buttons-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(18, 20, 29, 0.05);
}
@media (min-width: 576px) {
  .blog_details-three-navigation-buttons-wrapper {
    margin-top: 40px;
    padding-bottom: 40px;
  }
}

/*~ ***** Blog:Sidebar Section ***********/
.blog_details-three-main .sidebar {
  /*~ ******Sidebar Blog Card *********** ~*/
}
@media (min-width: 1200px) {
  .blog_details-three-main .sidebar-one {
    max-width: 441px;
    margin-left: auto;
  }
}
.blog_details-three-main .sidebar-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  background-color: #FAFAFA;
  border-radius: 10px;
  padding: 20px 18px;
}
.blog_details-three-main .sidebar-title-block {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid #432CF3;
}
.blog_details-three-main .sidebar-title-block h3 ~ * {
  margin-top: 17px;
}
.blog_details-three-main .sidebar-category {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
}
.blog_details-three-main .sidebar-category:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog_details-three-main .sidebar-category-list {
  display: flex;
  flex-direction: column;
}
.blog_details-three-main .sidebar-blog {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 100%;
  color: rgba(18, 20, 29, 0.6);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog_details-three-main .sidebar-blog:not(.last-item) {
  border-bottom: 1.5px solid #E8E8E8;
}
.blog_details-three-main .sidebar-blog_date {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}
.blog_details-three-main .sidebar-blog-list {
  display: flex;
  flex-direction: column;
}
.blog_details-three-main .sidebar-blog-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.blog_details-three-main .sidebar-search-input .sidebar-title-block {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.31;
  color: #121127;
}
.blog_details-three-main .sidebar-search-input.with-border {
  border: 1.5px solid #E8E8E8;
  padding: 24px;
  border-radius: 10px;
}
.blog_details-three-main .sidebar-search-input .form-control {
  padding: 16px 30px;
  border: none;
}
.blog_details-three-main .sidebar-search-input .input-wrapper {
  border-radius: 10px;
  background-color: rgba(18, 20, 29, 0.03);
  border: 1px solid rgba(18, 20, 29, 0);
}
.blog_details-three-main .sidebar-search-input input {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(18, 20, 29);
}
.blog_details-three-main .sidebar-search-input input::placeholder {
  color: rgba(18, 20, 29, 0.5);
}
.blog_details-three-main .sidebar-search-input input.icon-left {
  padding-left: 55px;
}
.blog_details-three-main .sidebar-blog-card {
  max-width: 441px;
  background: #121127;
  padding: 24px;
  border-radius: 10px;
}
.blog_details-three-main .sidebar-blog-card-title {
  color: #fff;
  margin-bottom: 10px;
}
.blog_details-three-main .sidebar-blog-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 26px;
}
.blog_details-three-main .sidebar-blog-card input {
  padding: 14px 0px 14px 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #A3A3A3;
  margin-bottom: 24px;
  border: 1.5px solid #6B6B6B;
  border-radius: 10px;
  background: #121127;
  width: 100%;
}
.blog_details-three-main .sidebar-blog-card button {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding: 15px 0px;
  width: 100%;
  color: #FFFFFF;
  background: #4C40F7;
  border-radius: 10px;
  border: 0px;
}
.blog_details-three-main .sidebar-tags-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.blog_details-three-main .sidebar-tags-block .tag {
  padding: 15px 35px;
  background: #fff;
  border: 0.5px solid #B9C1D9;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

/******* Utility ********/
.justify-center {
  justify-content: center;
}

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

.text-primary {
  color: #432CF3;
}

.bg-light {
  background-color: #F3F7FA;
}

.bg-dark {
  background-color: #121127;
}

.bg-dark-2 {
  background-color: #070B18;
}

.bg-blue {
  background: #4C40F7;
}

.bg-red {
  background: #FF1E38;
}

.bg-yellow {
  background: #FCDC00;
}

.bg-orange {
  background: #FF5200;
}

.bg-sky-blue {
  background: #1DE2CF;
}

.bg-sky-blue-2 {
  background: #12CBC0;
}

.bg-purple {
  background: #6001D3;
}

.h-full {
  height: 100%;
}

.border--dark {
  --border-color: rgba(255, 255, 255, 0.2);
}

.border--dark-2 {
  --border-color: #553FFB;
}

.border-top-light {
  border-top: 1px solid #EAEDF0;
}

.border-bottom-light {
  border-bottom: 1px solid #EAEDF0;
}

.border-top-dark {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-bottom-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.border-top-dark-2 {
  border-top: 1px solid #553FFB;
}

.border-bottom-dark-2 {
  border-bottom: 1px solid #553FFB;
}

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

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

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

p {
  font-size: 16px;
  line-height: 1.62;
  font-weight: 500;
}
@media (min-width: 575px) {
  p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  p {
    font-size: 21px;
  }
}

.section-heading {
  margin-bottom: 40px;
}
@media (min-width: 575px) {
  .section-heading {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .section-heading {
    margin-bottom: 80px;
  }
}
.section-heading__title {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .section-heading__title {
    margin-bottom: 34px;
  }
}
.section-heading--white .section-heading__title {
  color: #fff;
}
.section-heading--white .section-heading__title + p {
  color: #EAEDF0;
}

/* Subtitles */
.subtitle-pill {
  border: 1px solid #CBD2D9;
  border-radius: 500px;
  padding: 7px 13px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #432CF3;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding {
    padding-top: 134px;
    padding-bottom: 134px;
  }
}
.section-padding.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-bottom {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom {
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-bottom {
    padding-bottom: 120px;
  }
}
@media (min-width: 1400px) {
  .section-padding-bottom {
    padding-bottom: 130px;
  }
}

.section-padding-top:not(.has-section-heading) {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 120px;
  }
}
@media (min-width: 1400px) {
  .section-padding-top:not(.has-section-heading) {
    padding-top: 130px;
  }
}
.section-padding-top.has-section-heading {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .section-padding-top.has-section-heading {
    padding-top: 70px;
  }
}
@media (min-width: 992px) {
  .section-padding-top.has-section-heading {
    padding-top: 121px;
  }
}

.section-padding-95 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-95 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-95 {
    padding-top: 95px;
    padding-bottom: 95px;
  }
}

.section-padding-100 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section-padding-120 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-120 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1200px) {
  .section-padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.section-padding-bottom-95 {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section-padding-bottom-95 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .section-padding-bottom-95 {
    padding-bottom: 95px;
  }
}

.padding-bottom-120 {
  padding-bottom: 60px;
}
@media (min-width: 576px) {
  .padding-bottom-120 {
    padding-bottom: 80px;
  }
}
@media (min-width: 992px) {
  .padding-bottom-120 {
    padding-bottom: 120px;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 30px;
}

.gutter-y-24 {
  --gutter-y:24px;
}

.gutter-y-40 {
  --gutter-y:40px;
}

.gutter-y-default {
  --gutter-y:24px;
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-cornflower {
  background-color: #FAFAFF;
}

.bg-light {
  background-color: #F3F7FA;
}

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

.bg-black-2 {
  background-color: #0C1523;
}

.absolute-center {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.image-row-masonry {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -30px;
}
.image-row-masonry > div {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
}
.image-row-masonry > div > * {
  height: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .image-row-masonry > div > * {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .image-row-masonry > .image-masonry-column:first-of-type {
    max-width: 58.33333333%;
  }
}
@media (min-width: 768px) {
  .image-row-masonry > .image-masonry-column:nth-child(2) {
    max-width: 41.66666667%;
  }
}
