/*
Template Name: AutomateMail Landing Page
Author       :
Version      : 1.0
*/
/*==============================================================================
[Table of contents]
===================
  01. Theme default CSS
  02. Header Area
  03. Banner Area
  05. Client Area
  06. CTA Area
  07. FAQ Area
  08. Features Area
  09. Logo-grid Area
  10. Pricing Area
  11. Service Area
  12. Team Area
  13. Testimonial Area
  14. Why-Choose Area
  15. About Page
  19. Contact Page
  20. Help Center Page
  21. Footer Area
==============================================================================*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&family=Kalam:wght@700&display=swap");
:root {
  --brand: #ec595a;
  --brand-2: #9558ec;
  --brand-3: #473d8d;
  --brand-4: #356eef;
  --brand-5: #ffc600;
  --brand-6: #8b1bf6;
  --text-color: #5d5d66;
  --text-color-2: #616161;
  --white: #ffffff;
  --black: #171717;
  --black-50: #ebebeb;
  --black-100: #d6d9dc;
  --black-150: #c8ccd0;
  --black-200: #bbc0c4;
  --black-300: #7d848d;
  --black-350: #9199a1;
  --black-400: #848d95;
  --black-500: #6a737c;
  --black-600: #535a60;
  --black-700: #3c4146;
  --black-750: #2f3337;
  --black-800: #242729;
  --black-900: #0c0d0e;
}

/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p font-size: fs-rem(12px);
 * e.g. p {@include fontSize(12px);}
 *
 */
/*--------------------------------------
	- Base
----------------------------------------*/
/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 *
 */
.col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/*--------------------------------------
	- Utilities
----------------------------------------*/
/*--------------------------------------
	- Component
----------------------------------------*/
@font-face {
  font-family: Elagond;
  src: url(../fonts/FontsFree-Net-Elagond.ttf);
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75rem;
  text-rendering: optimizeSpeed;
  color: var(--text-color);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.fill-current {
  fill: currentColor;
}

.scrollToTop {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--brand);
  font-size: 25px;
  background: transparent;
  position: fixed;
  right: 20px;
  bottom: 50px;
  display: none;
  z-index: 99999;
  border-radius: 50%;
}
@media screen and (min-width: 576px) {
  .scrollToTop {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
.scrollToTop:hover {
  color: #fce7e9;
}

::-webkit-input-placeholder {
  color: inherit;
}

::-moz-placeholder {
  color: inherit;
}

/*================ preloader css ====================*/
#preloader {
  background: #fff;
  height: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#preloader .loading {
  display: flex;
}
#preloader .ctn-preloader {
  padding-left: 15px;
  padding-right: 15px;
}
#preloader .spinner {
  animation: spinner 3s infinite linear;
  border-radius: 50%;
  border: 3px solid #f1f6f8;
  border-left-color: var(--brand);
  border-top-color: var(--brand);
  margin: 0 auto 0em auto;
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: -40px;
  top: -40px;
}
#preloader .spinner:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 6px solid #fff;
  box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
  background: var(--brand);
  position: absolute;
  right: 31px;
  top: 41px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  #preloader .spinner:before {
    top: 18px;
  }
}
#preloader .round_spinner {
  border-width: 1px;
  border-color: #eef3f4;
  border-style: solid;
  border-radius: 50%;
  background-color: #fdfdfd;
  box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14);
  width: 248px;
  height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto 80px;
}
@media (max-width: 576px) {
  #preloader .round_spinner {
    width: 155px;
    height: 155px;
  }
}
#preloader .round_spinner h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
#preloader .round_spinner h4 span {
  font-weight: 600;
}

#preloader .head {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  text-align: center;
  margin: 5% 0 1% 0;
  padding: 0;
}

#preloader p {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  line-height: 1.4;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2rem;
}
@media screen and (min-width: 20rem) {
  h1 {
    font-size: calc(2rem + 2.25 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h1 {
    font-size: 4.25rem;
  }
}

h2 {
  font-size: 2rem;
}
@media screen and (min-width: 20rem) {
  h2 {
    font-size: calc(2rem + 1.125 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h2 {
    font-size: 3.125rem;
  }
}

h3 {
  font-size: 1.375rem;
}
@media screen and (min-width: 20rem) {
  h3 {
    font-size: calc(1.375rem + 1.125 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h3 {
    font-size: 2.5rem;
  }
}

h4 {
  font-size: 1rem;
}
@media screen and (min-width: 20rem) {
  h4 {
    font-size: calc(1rem + 0.375 * ((100vw - 20rem) / 55));
  }
}
@media screen and (min-width: 75rem) {
  h4 {
    font-size: 1.375rem;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

hr {
  background: #c2cfff;
  width: 50px;
  height: 3px;
  margin: 35px 0;
  padding: 0;
  border: none;
}
@media screen and (min-width: 768px) {
  hr {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

p {
  margin: 0;
}

label {
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
  display: inline-block;
}

.section-padding {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}

.section-padding-xl {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 992px) {
  .section-padding-xl {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
}

.section-title-left h2 {
  line-height: 1.24;
  margin-bottom: 1.5625rem;
  font-weight: 700;
}
.section-title-left h3 {
  font-weight: 700;
}
.section-title-left span {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  display: block;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .section-title-left span {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.section-title-left p {
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  line-height: 1.6875rem;
}
@media screen and (min-width: 1200px) {
  .section-title-left p {
    width: 80%;
  }
}
.section-title-left .btn {
  margin-top: 2.875rem;
}

.section-title-center {
  text-align: center;
  padding-bottom: 2.8125rem;
}
.section-title-center h2,
.section-title-center h3 {
  font-weight: 700;
}
.section-title-center p {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .section-title-center p {
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .section-title-center p {
    width: 40%;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

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

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-215 {
  padding-top: 215px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-115 {
  padding-right: 115px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

@media (min-width: 992px) {
  .mt-lg-20 {
    margin-top: 20px;
  }

  .mt-lg-25 {
    margin-top: 25px;
  }

  .mt-lg-30 {
    margin-top: 30px;
  }

  .mt-lg-35 {
    margin-top: 35px;
  }

  .mt-lg-40 {
    margin-top: 40px;
  }

  .mt-lg-45 {
    margin-top: 45px;
  }

  .mt-lg-50 {
    margin-top: 50px;
  }

  .mt-lg-55 {
    margin-top: 55px;
  }

  .mt-lg-60 {
    margin-top: 60px;
  }

  .mt-lg-65 {
    margin-top: 65px;
  }

  .mt-lg-70 {
    margin-top: 70px;
  }

  .mt-lg-75 {
    margin-top: 75px;
  }

  .mt-lg-80 {
    margin-top: 80px;
  }

  .mt-lg-85 {
    margin-top: 85px;
  }

  .mt-lg-90 {
    margin-top: 90px;
  }

  .mt-lg-95 {
    margin-top: 95px;
  }

  .mt-lg-100 {
    margin-top: 100px;
  }

  .mt-lg-105 {
    margin-top: 105px;
  }

  .mt-lg-110 {
    margin-top: 110px;
  }

  .mt-lg-115 {
    margin-top: 115px;
  }

  .mt-lg-120 {
    margin-top: 120px;
  }

  .mt-lg-125 {
    margin-top: 125px;
  }

  .mt-lg-130 {
    margin-top: 130px;
  }

  .mt-lg-135 {
    margin-top: 135px;
  }

  .mt-lg-140 {
    margin-top: 140px;
  }

  .mt-lg-145 {
    margin-top: 145px;
  }

  .mt-lg-150 {
    margin-top: 150px;
  }

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

  .mb-lg-25 {
    margin-bottom: 25px;
  }

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

  .mb-lg-35 {
    margin-bottom: 35px;
  }

  .mb-lg-40 {
    margin-bottom: 40px;
  }

  .mb-lg-45 {
    margin-bottom: 45px;
  }

  .mb-lg-50 {
    margin-bottom: 50px;
  }

  .mb-lg-55 {
    margin-bottom: 55px;
  }

  .mb-lg-60 {
    margin-bottom: 60px;
  }

  .mb-lg-65 {
    margin-bottom: 65px;
  }

  .mb-lg-70 {
    margin-bottom: 70px;
  }

  .mb-lg-75 {
    margin-bottom: 75px;
  }

  .mb-lg-80 {
    margin-bottom: 80px;
  }

  .mb-lg-85 {
    margin-bottom: 85px;
  }

  .mb-lg-90 {
    margin-bottom: 90px;
  }

  .mb-lg-95 {
    margin-bottom: 95px;
  }

  .mb-lg-100 {
    margin-bottom: 100px;
  }

  .mb-lg-105 {
    margin-bottom: 105px;
  }

  .mb-lg-110 {
    margin-bottom: 110px;
  }

  .mb-lg-115 {
    margin-bottom: 115px;
  }

  .mb-lg-120 {
    margin-bottom: 120px;
  }

  .mr-lg-10 {
    margin-right: 10px;
  }

  .mr-lg-15 {
    margin-right: 15px;
  }

  .mr-lg-20 {
    margin-right: 20px;
  }

  .mr-lg-25 {
    margin-right: 25px;
  }

  .mr-lg-30 {
    margin-right: 30px;
  }

  .mr-lg-35 {
    margin-right: 35px;
  }

  .mr-lg-40 {
    margin-right: 40px;
  }

  .mr-lg-45 {
    margin-right: 45px;
  }

  .mr-lg-50 {
    margin-right: 50px;
  }

  .mr-lg-55 {
    margin-right: 55px;
  }

  .mr-lg-60 {
    margin-right: 60px;
  }

  .mr-lg-65 {
    margin-right: 65px;
  }

  .mr-lg-70 {
    margin-right: 70px;
  }

  .mr-lg-75 {
    margin-right: 75px;
  }

  .mr-lg-80 {
    margin-right: 80px;
  }

  .mr-lg-85 {
    margin-right: 85px;
  }

  .mr-lg-90 {
    margin-right: 90px;
  }

  .mr-lg-95 {
    margin-right: 95px;
  }

  .mr-lg-100 {
    margin-right: 100px;
  }

  .ml-lg-10 {
    margin-left: 10px;
  }

  .ml-lg-15 {
    margin-left: 15px;
  }

  .ml-lg-20 {
    margin-left: 20px;
  }

  .ml-lg-25 {
    margin-left: 25px;
  }

  .ml-lg-30 {
    margin-left: 30px;
  }

  .ml-lg-35 {
    margin-left: 35px;
  }

  .ml-lg-40 {
    margin-left: 40px;
  }

  .ml-lg-45 {
    margin-left: 45px;
  }

  .ml-lg-50 {
    margin-left: 50px;
  }

  .ml-lg-55 {
    margin-left: 55px;
  }

  .ml-lg-60 {
    margin-left: 60px;
  }

  .ml-lg-65 {
    margin-left: 65px;
  }

  .ml-lg-70 {
    margin-left: 70px;
  }

  .ml-lg-75 {
    margin-left: 75px;
  }

  .ml-lg-80 {
    margin-left: 80px;
  }

  .ml-lg-85 {
    margin-left: 85px;
  }

  .ml-lg-90 {
    margin-left: 90px;
  }

  .ml-lg-95 {
    margin-left: 95px;
  }

  .ml-lg-100 {
    margin-left: 100px;
  }

  .pt-lg-20 {
    padding-top: 20px;
  }

  .pt-lg-25 {
    padding-top: 25px;
  }

  .pt-lg-30 {
    padding-top: 30px;
  }

  .pt-lg-35 {
    padding-top: 35px;
  }

  .pt-lg-40 {
    padding-top: 40px;
  }

  .pt-lg-45 {
    padding-top: 45px;
  }

  .pt-lg-50 {
    padding-top: 50px;
  }

  .pt-lg-55 {
    padding-top: 55px;
  }

  .pt-lg-60 {
    padding-top: 60px;
  }

  .pt-lg-65 {
    padding-top: 65px;
  }

  .pt-lg-70 {
    padding-top: 70px;
  }

  .pt-lg-75 {
    padding-top: 75px;
  }

  .pt-lg-80 {
    padding-top: 80px;
  }

  .pt-lg-85 {
    padding-top: 85px;
  }

  .pt-lg-90 {
    padding-top: 90px;
  }

  .pt-lg-95 {
    padding-top: 95px;
  }

  .pt-lg-100 {
    padding-top: 100px;
  }

  .pt-lg-105 {
    padding-top: 105px;
  }

  .pt-lg-110 {
    padding-top: 110px;
  }

  .pt-lg-115 {
    padding-top: 115px;
  }

  .pt-lg-120 {
    padding-top: 120px;
  }

  .pb-lg-20 {
    padding-bottom: 20px;
  }

  .pb-lg-25 {
    padding-bottom: 25px;
  }

  .pb-lg-30 {
    padding-bottom: 30px;
  }

  .pb-lg-35 {
    padding-bottom: 35px;
  }

  .pb-lg-40 {
    padding-bottom: 40px;
  }

  .pb-lg-45 {
    padding-bottom: 45px;
  }

  .pb-lg-50 {
    padding-bottom: 50px;
  }

  .pb-lg-55 {
    padding-bottom: 55px;
  }

  .pb-lg-60 {
    padding-bottom: 60px;
  }

  .pb-lg-65 {
    padding-bottom: 65px;
  }

  .pb-lg-70 {
    padding-bottom: 70px;
  }

  .pb-lg-75 {
    padding-bottom: 75px;
  }

  .pb-lg-80 {
    padding-bottom: 80px;
  }

  .pb-lg-85 {
    padding-bottom: 85px;
  }

  .pb-lg-90 {
    padding-bottom: 90px;
  }

  .pb-lg-95 {
    padding-bottom: 95px;
  }

  .pb-lg-100 {
    padding-bottom: 100px;
  }

  .pb-lg-105 {
    padding-bottom: 105px;
  }

  .pb-lg-110 {
    padding-bottom: 110px;
  }

  .pb-lg-115 {
    padding-bottom: 115px;
  }

  .pb-lg-120 {
    padding-bottom: 120px;
  }

  .pr-lg-10 {
    padding-right: 10px;
  }

  .pr-lg-15 {
    padding-right: 15px;
  }

  .pr-lg-20 {
    padding-right: 20px;
  }

  .pr-lg-25 {
    padding-right: 25px;
  }

  .pr-lg-30 {
    padding-right: 30px;
  }

  .pr-lg-35 {
    padding-right: 35px;
  }

  .pr-lg-40 {
    padding-right: 40px;
  }

  .pr-lg-45 {
    padding-right: 45px;
  }

  .pr-lg-50 {
    padding-right: 50px;
  }

  .pr-lg-55 {
    padding-right: 55px;
  }

  .pr-lg-60 {
    padding-right: 60px;
  }

  .pr-lg-65 {
    padding-right: 65px;
  }

  .pr-lg-70 {
    padding-right: 70px;
  }

  .pr-lg-75 {
    padding-right: 75px;
  }

  .pr-lg-80 {
    padding-right: 80px;
  }

  .pr-lg-85 {
    padding-right: 85px;
  }

  .pr-lg-90 {
    padding-right: 90px;
  }

  .pr-lg-95 {
    padding-right: 95px;
  }

  .pr-lg-100 {
    padding-right: 100px;
  }

  .pl-lg-10 {
    padding-left: 10px;
  }

  .pl-lg-15 {
    padding-left: 15px;
  }

  .pl-lg-20 {
    padding-left: 20px;
  }

  .pl-lg-25 {
    padding-left: 25px;
  }

  .pl-lg-30 {
    padding-left: 30px;
  }

  .pl-lg-35 {
    padding-left: 35px;
  }

  .pl-lg-40 {
    padding-left: 40px;
  }

  .pl-lg-45 {
    padding-left: 45px;
  }

  .pl-lg-50 {
    padding-left: 50px;
  }

  .pl-lg-55 {
    padding-left: 55px;
  }

  .pl-lg-60 {
    padding-left: 60px;
  }

  .pl-lg-65 {
    padding-left: 65px;
  }

  .pl-lg-70 {
    padding-left: 70px;
  }

  .pl-lg-75 {
    padding-left: 75px;
  }

  .pl-lg-80 {
    padding-left: 80px;
  }

  .pl-lg-85 {
    padding-left: 85px;
  }

  .pl-lg-90 {
    padding-left: 90px;
  }

  .pl-lg-95 {
    padding-left: 95px;
  }

  .pl-lg-100 {
    padding-left: 100px;
  }
}
/*--------------------------------------
	- Color
----------------------------------------*/
.color {
  color: var(--text-color);
}

.text-black {
  color: var(--black);
}

.bg-black {
  background: var(--black);
}

.text-white {
  color: #fff;
}

.bg-white {
  background: #fff;
}

.text-white-800 {
  color: #f9f9f9;
}

.bg-white-800 {
  background: #f9f9f9;
}

.text-white-600 {
  color: #f2f4f5;
}

.bg-white-600 {
  background: #f2f4f5;
}

.text-red {
  color: var(--brand);
}

.bg-red {
  background: var(--brand);
}

.text-red-150 {
  color: #fce7e9;
}

.bg-red-150 {
  background: #fce7e9;
}

.text-gray-100 {
  color: #c6c6c6;
}

.bg-gray-100 {
  background: #c6c6c6;
}

.text-yellow-200 {
  color: #fff7dd;
}

.bg-yellow-200 {
  background: #fff7dd;
}

.row-reverse-lg {
  flex-direction: row-reverse;
}

/*--
    - Font Famaly
-----------------------------------------*/
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/*--
    - Font weight
-----------------------------------------*/
.font-regular {
  font-weight: 400;
}

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

.font-semi-bold {
  font-weight: 600;
}

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

.font-black {
  font-weight: 900;
}

/*--
    - Font Size
-----------------------------------------*/
.font-small {
  font-size: 0.9375rem;
}

.line-height-24 {
  line-height: 24px;
}

/*--
    - Margin
-------------------------------------------*/
.mt-n3 {
  margin-top: -0.4375rem;
}

.mt-n4 {
  margin-top: -0.75rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

@media (min-width: 768px) {
  .mt-md-n4 {
    margin-top: -0.75rem;
  }
}

/*---
-- Padding
-------------------------------------------*/
.pb-8 {
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .w-md-20 {
    width: 20% !important;
  }
}

/*----------------------------------------*/
/*  Component CSS
/*----------------------------------------*/
.accordion-item {
  border: none;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.accordion-item + .accordion-item {
  margin-top: 0.9375rem;
}
.accordion-item .accordion-button {
  padding: 1.6875rem;
  border-radius: 10px;
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.06);
  border: none;
}
@media screen and (min-width: 768px) {
  .accordion-item .accordion-button {
    font-size: 1.375rem;
  }
}
.accordion-item .accordion-button.collapsed {
  background: #f9f9f9;
  font-weight: 400;
  box-shadow: none;
  font-family: "Inter", sans-serif;
}
.accordion-item .accordion-button:focus {
  border-color: transparent;
}
.accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
  transform: rotate(0deg);
  color: var(--black);
}
.accordion-item .accordion-button::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: none;
  font-size: 18px;
  color: #bbc0c4;
}
.accordion-item .accordion-button span {
  margin-right: 0.9375rem;
}
.accordion-item .accordion-body {
  padding: 1.875rem 0;
  line-height: 1.75rem;
}

.accordion-two .accordion-item {
  margin-top: 1.875rem;
  max-width: inherit;
  width: 100%;
  position: relative;
  z-index: 1;
}
.accordion-two .accordion-item .accordion-button {
  padding: 27px 50px;
  border-radius: 5px;
  background: rgba(223, 223, 223, 0.3);
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.5px;
  box-shadow: none;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .accordion-two .accordion-item .accordion-button {
    font-size: 1.375rem;
  }
}
.accordion-two .accordion-item .accordion-button.collapsed {
  background: rgba(223, 223, 223, 0.2);
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--black);
}
.accordion-two .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  color: #333333;
}
.accordion-two .accordion-item .accordion-button::after {
  content: "3";
  font-family: "ElegantIcons";
  font-weight: 900;
  background: none;
  font-size: 20px;
  color: #4f4f4f;
  width: auto;
  height: auto;
  transition: all 0.2s linear;
}
.accordion-two .accordion-item .accordion-collapse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0px 6px 16px 0px #091e4226;
  z-index: -1;
}
.accordion-two .accordion-item .accordion-body {
  padding: 36px 49px 47px 49px;
  line-height: 2rem;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.accordion-three .accordion-item {
  margin-top: 0.0625rem;
  max-width: inherit;
  width: 100%;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #e7e7e7;
  padding: 17px 17px 21px 17px;
}
.accordion-three .accordion-item .accordion-button {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: #252c53;
  background-color: transparent;
  box-shadow: none;
}
.accordion-three .accordion-item .accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
  color: #616161;
}
.accordion-three .accordion-item .accordion-button::after {
  display: none;
}
.accordion-three .accordion-item .accordion-button::before {
  content: "C";
  font-family: "ElegantIcons";
  font-weight: 900;
  background: none;
  font-size: 20px;
  color: #a0a1a3;
  width: auto;
  height: auto;
  transition: all 0.2s linear;
  margin-right: 20px;
}
.accordion-three .accordion-item .accordion-body {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-color-2);
  margin-left: 40px;
  padding: 0;
  padding-top: 15px;
}

.nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #848d95;
  padding: 0.625rem 0.5rem;
}
.nav .nav-link.active {
  color: var(--black);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .nav .nav-link {
    font-size: 1.375rem;
    padding: 0.625rem 1.875rem;
  }
}

/*--------------------------------------
	- Button
----------------------------------------*/
.btn {
  position: relative;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: capitalize;
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: 0.375rem;
  padding: 0.8125rem 2rem;
  margin: 0 0;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.btn-white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.btn-red {
  background: var(--brand);
  color: #fff;
  border-color: var(--black);
  box-shadow: none !important;
}
.btn-red:hover {
  color: var(--brand);
  background: var(--black);
  border-color: var(--black);
}

.dropdown {
  position: relative;
}
.dropdown .sub-menu {
  top: 100%;
  right: 0;
  left: 0;
  position: absolute;
  width: 265px;
  padding: 1.25rem 1rem;
  text-align: left;
  z-index: 99;
  border-radius: 0.625rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #fff;
}
.dropdown .sub-menu li {
  display: block;
}
.dropdown .sub-menu li a {
  color: var(--black) !important;
  font-size: 1.125rem;
  border-radius: 0.625rem;
  padding: 0.25rem 0.625rem;
  margin-bottom: 5px;
  display: block;
}
.dropdown .sub-menu li a:hover {
  background: transparent;
  color: var(--brand) !important;
}
.dropdown:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

input,
textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #a0a1a3;
  background: #fff;
  text-transform: capitalize;
  padding: 0.75rem 1.5625rem;
  margin: 0 0;
  width: 100%;
  height: auto;
  border: 2px solid #5d5d66;
  border-radius: 0.375rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
input:focus,
textarea:focus {
  outline: none;
  color: rgba(var(--black), 1);
  border: 2px solid #5d5d66;
}

.form-group {
  position: relative;
  max-width: 33.75rem;
  margin-top: 1.5625rem;
}
.form-group .btn-red {
  height: 3.5rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 576px) {
  .form-group .btn-red {
    top: 0;
    right: 0;
    position: absolute;
    margin-top: 0;
  }
}

.comment-form input,
.comment-form textarea {
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  color: rgba(12, 13, 36, 0.7);
  background: transparent;
  text-transform: capitalize;
  padding: 15px 20px;
  margin: 0 0;
  width: 100%;
  height: auto;
  border: 1px solid #5d5d66;
  border-radius: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  color: #0c0d24;
  border: 1px solid #5d5d66;
}

.hamburger-menu {
  cursor: pointer;
}

/* header-extra-info */
.extra-info {
  background: #152136 none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  width: 340px;
  z-index: 9999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.extra-info.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  z-index: 99999;
}

.close-icon {
  margin-top: -16px;
  text-align: right;
}

.close-icon > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.side-info {
  border-top: 1px solid #344159;
  padding-top: 25px;
}

.contact-list h4 {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.contact-list p {
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
  line-height: 28px;
  font-size: 14px;
}
.contact-list p i {
  float: left;
  margin-top: 6px;
  width: 25px;
}
.contact-list p span {
  display: block;
  overflow: hidden;
}

.offcanvas-overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.offcanvas-overly.active {
  opacity: 0.5;
  visibility: visible;
}

.nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #848d95;
  padding: 0.625rem 0.5rem;
}
.nav .nav-link.active {
  color: var(--black);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .nav .nav-link {
    font-size: 1.375rem;
    padding: 0.625rem 1.875rem;
  }
}

.video-play {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.play-button {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  border-radius: 50%;
  background: #fff;
  color: #00D1F2;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.play-button::before {
  content: "";
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 4.75rem;
  height: 4.75rem;
  z-index: -1;
  border-radius: 50%;
  background: rgba(0, 209, 242, 0.45);
  animation: pulse 1500ms ease-out infinite;
}
.play-button:hover {
  background: #00D1F2;
  color: #fff;
}
@media (min-width: 768px) {
  .play-button {
    width: 5rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
  }
  .play-button::before {
    content: "";
    width: 6.625rem;
    height: 6.625rem;
  }
}
@media (min-width: 992px) {
  .play-button {
    width: 5.5rem;
    height: 5.5rem;
    line-height: 5.5rem;
    font-size: 1.5rem;
  }
  .play-button::before {
    content: "";
    width: 7.75rem;
    height: 7.75rem;
  }
}

.video-play-two .play-button {
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 1rem;
  color: var(--brand);
}
.video-play-two .play-button::before {
  content: "";
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.5);
  animation: pulse 1500ms ease-in-out infinite;
}
.video-play-two .play-button::after {
  content: "";
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 112px;
  height: 112px;
  z-index: -2;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  animation: pulse 1500ms ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.social-link-bg ul {
  margin: 0;
  padding: 0;
}
.social-link-bg li {
  position: relative;
  display: inline-block;
}
.social-link-bg li + li {
  margin-left: 1.125rem;
}
.social-link-bg li a {
  font-size: 0.875rem;
  line-height: 1.75rem;
  background: #fff;
  color: var(--black);
  display: block;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid transparent;
  border-radius: 0.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.social-link-bg li a:hover {
  background: var(--brand) !important;
  color: #fff;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px rgba(var(--black), 1);
  -moz-box-shadow: 0px rgba(var(--black), 1);
  box-shadow: 0px rgba(var(--black), 1);
}

.social-link-bg-2 ul {
  margin: 0;
  padding: 0;
}
.social-link-bg-2 li {
  position: relative;
  display: inline-block;
}
.social-link-bg-2 li + li {
  margin-left: 1.125rem;
}
.social-link-bg-2 li a {
  font-size: 0.875rem;
  line-height: 1.75rem;
  background: transparent;
  color: #fff;
  display: block;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid #fff;
  border-radius: 0.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.social-link-bg-2 li a:hover {
  background: #fff;
  color: #263238;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px white;
  -moz-box-shadow: 0px white;
  box-shadow: 0px white;
}

.social-link-bg {
  display: flex;
  justify-content: flex-end;
}

.social-outline ul {
  margin: 0;
  padding: 0;
}
.social-outline li {
  position: relative;
  display: inline-block;
}
.social-outline li + li {
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}
.social-outline li a {
  font-size: 0.75;
  line-height: 30px;
  background: transparent;
  color: #fff;
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  border-radius: 0.375rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.social-outline li a:hover {
  background: #fff !important;
  color: var(--brand) !important;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px white;
  -moz-box-shadow: 0px white;
  box-shadow: 0px white;
}

.social-link-bg-round {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.social-link-bg-round li a {
  font-size: 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.29);
  width: 55px;
  height: 55px;
  line-height: 55px;
  margin: auto;
}
.social-link-bg-round li a:hover {
  box-shadow: none;
  color: #fff;
}

.subscribe-form {
  display: inline-block;
  margin-top: 40px;
}
.subscribe-form form {
  position: relative;
}
.subscribe-form form input {
  border-radius: 40px;
  background: #fff;
  border: none;
  padding: 20px 30px;
  width: 100%;
  box-shadow: 14px 14px 39px 0px rgba(186, 184, 191, 0.56);
}
@media screen and (min-width: 992px) {
  .subscribe-form form input {
    padding: 40px;
    width: 600px;
    height: 80px;
  }
}
.subscribe-form form button {
  border: none;
  margin-top: 25px;
}
@media screen and (min-width: 992px) {
  .subscribe-form form button {
    top: 9px;
    right: 12px;
    position: absolute;
    margin-top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .subscribe-form-two {
    margin-left: 100px;
  }
}
.subscribe-form-two span {
  font-size: 22px;
  padding-bottom: 15px;
  display: block;
}
.subscribe-form-two form input {
  max-width: 370px;
  border: 1px solid #EAEAEA;
  box-shadow: none;
  font-size: 18px;
  border-radius: 0;
  position: relative;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.subscribe-form-two form input:focus {
  border: 1px solid var(--black);
}
.subscribe-form-two form i {
  top: 30px;
  right: 30px;
  position: absolute;
  font-size: 20px;
}

/*----------------------------------------*/
/*  Drag And Drop Area CSS
/*----------------------------------------*/
.dropzone {
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  width: 100%;
  height: auto;
  padding: 60px 0;
  border: 2px dashed #edf2f9;
  background-color: #f5f7fa;
  border-radius: 20px;
  transition: all 0.3s ease-in;
}
.dropzone:hover {
  border-color: var(--black);
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message {
  cursor: pointer;
}
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: dashed;
  border-color: red;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message img {
  max-width: 100%;
}
.dropzone .dz-message .dz-button {
  font-weight: 600;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
  margin-top: 10px;
}
.dropzone .dz-message .dz-custom-upload-text {
  font-size: 16px;
  font-weight: 400;
}
.dropzone .dz-message .dz-custom-upload-text span {
  font-weight: 500;
  text-decoration: underline;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: white;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

/*----------------------------------------*/
/*  02. Header Area
/*----------------------------------------*/
.header-area {
  position: relative;
  z-index: 99999;
  transition: 0.4s all ease;
}

.navbar {
  border: 0;
  border-radius: 0;
  padding: 0;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 20;
  position: absolute;
}
.navbar .right-nav {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
}
.navbar .right-nav .language-bar span:not(.active) {
  color: #a0a1a3;
}
.navbar .right-nav a {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 27px;
  color: #171717;
  margin-left: 38px;
  text-decoration: none;
  text-transform: capitalize;
}
.navbar .right-nav a:first-child {
  margin-left: 0;
}
.navbar .right-nav .btn {
  border-radius: 5px;
  padding: 10.5px 2rem;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.navbar .navbar-collapse.show .right-nav .nice-select {
  color: var(--black);
}

.navbar-brand {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
@media screen and (min-width: 1441px) {
  .navbar-brand {
    margin-right: 11.875rem;
  }
}

.navbar-toggler {
  padding: 0.25rem 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.menu_one {
  background: transparent;
  transition: all 0.2s linear;
}
.menu_one .menu .nav-item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}
.menu_one .menu .nav-item:last-child .dropdown-menu:before {
  right: 20px;
  left: auto;
}

.menu_two {
  background: transparent;
  transition: all 0.2s linear;
}
.menu_two .menu > .nav-item > .nav-link::before {
  background: var(--brand-3);
}
.menu_two .menu > .nav-item:hover > .nav-link::before {
  background: var(--brand-3);
}
.menu_two .menu > .nav-item.active > .nav-link.active {
  color: var(--brand-3);
}
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link,
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link,
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link {
  color: var(--brand-3);
}
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i,
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i,
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: var(--brand-3);
}
.menu_two .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:before {
  background: var(--brand-3);
}
.menu_two .right-nav .btn {
  background-color: var(--brand-3);
  color: #fff;
  border-color: transparent;
  margin-left: 30px;
}
.menu_two .right-nav .btn:hover {
  background-color: transparent;
  color: var(--brand-3);
  border-color: var(--brand-3);
}

.header_logo img:not(.main_logo),
.header_logo img.sticky_logo {
  display: none;
}
.header_logo img.main_logo {
  display: block;
}

.menu {
  background-color: #fff;
  padding: 0.625rem;
  -webkit-box-shadow: 3px 5px 5px 0px rgba(var(--black), 0.1);
  -moz-box-shadow: 3px 5px 5px 0px rgba(var(--black), 0.1);
  box-shadow: 3px 5px 5px 0px rgba(var(--black), 0.1);
  border-radius: 5px;
}
@media screen and (min-width: 992px) {
  .menu {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }
}
.menu > .nav-item {
  padding: 0.625rem 0;
  transition: all 0.3s linear;
}
@media screen and (min-width: 992px) {
  .menu > .nav-item {
    padding: 2.3125rem 0;
  }
  .menu > .nav-item .dropdown-menu .nav-item .mobile_dropdown_icon {
    top: 58%;
    right: 10px;
    position: absolute;
    transform: translateY(-50%) rotate(-90deg);
    color: #6b707f;
    font-size: 0.875rem;
    display: inline-block;
    opacity: 0.6;
  }
}
@media screen and (max-width: 991px) {
  .menu > .nav-item .mobile_dropdown_icon {
    top: 0;
    right: 10px;
    position: absolute;
    color: #6b707f;
    line-height: 2.625rem;
    font-size: 0.875rem;
    display: inline-block;
    opacity: 0.6;
    cursor: pointer;
  }
}
.menu > .nav-item > .nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--black);
  padding: 0;
  position: relative;
}
.menu > .nav-item > .nav-link.active::before {
  width: 100%;
}
.menu > .nav-item > .nav-link::before {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.2s linear;
}
.menu > .nav-item > .nav-link:after {
  display: none;
}
.menu > .nav-item.submenu .dropdown-menu {
  margin: 0;
  border-radius: 4px;
  left: -30px;
  min-width: max-content;
  border: 1px solid #e6eeef;
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 30px 40px 0 rgba(4, 73, 89, 0.1);
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu:before {
    content: "";
    width: 12px;
    height: 12px;
    top: -6px;
    left: 40px;
    position: absolute;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid #e6eeef;
    border-top: 1px solid #e6eeef;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu {
    transform: translateY(20px);
    transition: all 0.3s ease-in;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
}
.menu > .nav-item.submenu .dropdown-menu .nav-item {
  padding: 0 40px 0 30px;
  transition: all 0.3s linear;
  position: relative;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item + .nav-item {
  margin-top: 18px;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link {
  padding: 0;
  white-space: nowrap;
  font: 400 14px/16px "Poppins", sans-serif;
  color: var(--black);
  transition: color 0.2s linear;
  position: relative;
  display: inline-block;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:after {
  display: none;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--brand);
  transition: all 0.2s linear;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link, .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link, .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link {
  color: var(--brand);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link:before, .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link:before, .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link:before {
  width: 100%;
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link h5, .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link h5, .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link h5 {
  color: var(--brand);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i, .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i, .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: var(--brand);
}
.menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu:before {
  display: none;
}
@media (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu .nav-item > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: -25px;
    opacity: 0;
    display: block;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease-in;
  }
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu {
    position: static;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) and (min-width: 1441px) {
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu {
    padding: 0 300px;
  }
}
@media screen and (min-width: 992px) and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu {
    top: 100%;
    right: 48px;
    left: 48px;
    position: absolute;
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu {
    top: 100%;
    right: 80px;
    left: 80px;
    position: absolute;
  }
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu:before {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item {
    padding: 40px 45px;
    margin: 0px;
    width: 25%;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item > .nav-link {
    font: 500 18px "Poppins", sans-serif;
    color: #13112d;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item > .nav-link:before {
    display: none;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item .dropdown-menu {
    top: 0;
    left: 0;
    position: relative;
    transform: translateY(0);
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item .dropdown-menu > .nav-item {
    padding-left: 0;
    padding-right: 0;
  }
  .menu > .nav-item.submenu.mega-menu > .dropdown-menu > .nav-item .dropdown-menu > .nav-item:first-child {
    padding-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu .mobile_dropdown_icon {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu.mega-menu:hover .mega-menu-inner {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .menu > .nav-item.submenu.mega-menu:hover .dropdown-menu > .nav-item > .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
}
.menu > .nav-item.active > i {
  color: var(--black);
}
.menu > .nav-item.active .nav-link {
  color: var(--black);
}
.menu > .nav-item.active .nav-link.active {
  color: var(--brand);
}
.menu > .nav-item:hover > i {
  color: var(--black);
}
.menu > .nav-item:hover .nav-link {
  color: var(--black);
}
.menu > .nav-item:hover .nav-link:before {
  opacity: 1;
  background: var(--brand);
  width: 100%;
}
@media (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .menu > .nav-item:hover .dropdown-menu > .nav-item:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
.menu > .nav-item + .nav-item {
  margin-left: 0;
}
@media screen and (min-width: 992px) {
  .menu > .nav-item + .nav-item {
    margin-left: 40px;
  }
}

@media screen and (min-width: 992px) {
  .navbar:not(.navbar_fixed) .menu > .nav-item.submenu .dropdown-menu,
.navbar:not(.navbar_fixed) .menu > .nav-item.submenu.mega-menu .mega-menu-inner {
    margin-top: -15px;
  }
}

@media screen and (min-width: 992px) {
  .menu > .nav-item.submenu .dropdown-menu .nav-item.submenu .dropdown-menu {
    margin-top: 0;
    top: 0;
  }
}

@media screen and (min-width: 992px) {
  .menu_one .menu > .nav-item.submenu .dropdown-menu .nav-item.submenu .dropdown-menu {
    left: auto;
    right: 100%;
  }
}

.navbar_fixed {
  position: fixed;
  z-index: 35;
}
@media screen and (min-width: 992px) {
  .navbar_fixed .menu > .nav-item {
    padding: 1.625rem 0;
  }
}
.navbar_fixed.menu_one {
  background-color: #fff;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}
.navbar_fixed.menu_two {
  background-color: #fff;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

.menu_toggle {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: block;
}
.menu_toggle .hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
}
.menu_toggle .hamburger span {
  width: 0%;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  margin: 4px 0;
  display: block;
  background: var(--black);
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0s;
}
.menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.125s;
}
.menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.2s;
}
.menu_toggle .hamburger-cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
  display: block;
}
.menu_toggle .hamburger-cross span {
  display: block;
  background: var(--black);
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.menu_toggle .hamburger-cross span:nth-child(1) {
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 10px;
  transition-delay: 0.3s;
}
.menu_toggle .hamburger-cross span:nth-child(2) {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 10px;
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span {
  width: 100%;
}

.collapsed .menu_toggle .hamburger span:nth-child(1) {
  transition-delay: 0.3s;
}

.collapsed .menu_toggle .hamburger span:nth-child(2) {
  transition-delay: 0.4s;
}

.collapsed .menu_toggle .hamburger span:nth-child(3) {
  transition-delay: 0.5s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(1) {
  height: 0%;
  transition-delay: 0s;
}

.collapsed .menu_toggle .hamburger-cross span:nth-child(2) {
  height: 0%;
  transition-delay: 0.2s;
}

.mobile_dropdown_icon {
  display: none;
}

/*----------------------------------------*/
/*  21. Footer Area
/*----------------------------------------*/
.footer-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-area .footer-shape {
  bottom: -111px;
  left: -50px;
  position: absolute;
  width: 223px;
  height: 223px;
  border-radius: 50%;
  background-color: #fff7dd;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 1200px) {
  .footer-area .footer-shape {
    display: block;
  }
}
.footer-area .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.8);
}
.footer-area .footer-bottom .footer-bottom-menu li a,
.footer-area .footer-bottom .footer-bottom-menu li span {
  color: rgba(255, 255, 255, 0.8);
}

ul li a {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  padding-bottom: 0;
  display: block;
  text-transform: capitalize;
  text-decoration: none;
}
ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-software .footer-top .footer-menu h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.footer-payment {
  position: relative;
  z-index: 1;
}
.footer-payment .bg-shape .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.footer-payment .social-link-bg-2 li a {
  border-color: #fff;
  color: #fff;
}
.footer-payment .social-link-bg-2 li a:hover {
  color: #263238;
  border-color: transparent;
}
.footer-payment .footer-content .nice-select {
  margin-top: 33px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  width: 220px;
  margin-bottom: 0;
  border-radius: 4px;
  padding: 10px 20px;
}
.footer-payment .footer-content .nice-select .list {
  width: 100%;
}
.footer-payment .footer-content .nice-select i {
  margin-right: 7px;
  color: #c6c6c6;
}
.footer-payment .footer-content .nice-select span {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer-payment .newsletter-box h6 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-payment .newsletter-box .form-group {
  position: relative;
  margin-top: 10px;
}
.footer-payment .newsletter-box .form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  display: inline-block;
  transform: translateY(-58%);
  color: #c6c6c6;
}
.footer-payment .newsletter-box .form-control {
  background: rgba(255, 255, 255, 0.1);
  border-color: transparent;
  border-radius: 5px;
  height: 50px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.5px;
  padding-left: 45px;
}
.footer-payment .newsletter-box .form-control::placeholder {
  color: #c6c6c6;
}
.footer-payment .newsletter-box .btn {
  background-color: #fff;
  color: #473d8d;
  font-weight: 700;
  width: 100%;
  text-align: center;
  border: none;
  margin-top: 10px;
}
.footer-payment .newsletter-box .btn:hover {
  background: var(--black);
}
.footer-payment .footer-top {
  padding-top: 114px;
}
.footer-payment .footer-top .footer-content p {
  color: rgba(255, 255, 255, 0.8);
}
.footer-payment .footer-top .footer-menu h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.875rem;
}
.footer-payment .footer-top .footer-menu ul li a {
  opacity: 0.8;
  line-height: 1.4;
}
.footer-payment .footer-top .footer-menu p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 4.375rem 0 3.125rem;
}
@media screen and (min-width: 992px) {
  .footer-top {
    padding: 8.4375rem 0 7.1875rem;
  }
}
@media screen and (min-width: 576px) {
  .footer-top .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .footer-top .footer-content img {
    margin-right: 1.875rem;
  }
}
@media screen and (min-width: 992px) {
  .footer-top .footer-content {
    display: block;
  }
}
.footer-top .footer-content span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.25rem;
  display: block;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 576px) {
  .footer-top .footer-content span {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .footer-top .footer-content span {
    margin-bottom: 3.125rem;
  }
}
.footer-top .footer-menu {
  padding-top: 2.1875rem;
}
@media screen and (min-width: 992px) {
  .footer-top .footer-menu {
    padding-top: 0;
  }
}
.footer-top .footer-menu h4 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 2.1875rem;
}
.footer-top .footer-menu li + li {
  padding-top: 25px;
}

.footer-bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .copyright {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom ul {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .footer-bottom ul {
    flex-direction: row;
  }
}
.footer-bottom ul li span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
}
@media screen and (min-width: 992px) {
  .footer-bottom ul li span {
    flex-direction: row;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer-bottom .social-link-bg {
  flex-direction: row;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .footer-bottom .social-link-bg {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.footer-bottom-menu {
  text-align: center;
}
.footer-bottom-menu ul {
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  .footer-bottom-menu {
    text-align: left;
  }
  .footer-bottom-menu ul {
    justify-content: flex-start;
  }
}
.footer-bottom-menu li {
  display: inline-block;
}
.footer-bottom-menu li:not(:first-child) a {
  padding-left: 0.625rem;
}
.footer-bottom-menu li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 1200px) {
  .footer-bottom-menu li a {
    padding-left: 2.25rem;
  }
}
.footer-bottom-menu li a:hover {
  color: #fff;
}

.footer-common {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-common .shape {
  position: absolute;
  z-index: -1;
}
.footer-common .shape:nth-child(1) {
  left: 0;
  bottom: 27%;
}
.footer-common .shape:nth-child(2) {
  left: 10%;
  bottom: 0;
}
.footer-common .shape:nth-child(3) {
  right: 5%;
  bottom: 0;
}
.footer-common .shape:nth-child(4) {
  left: 0;
  bottom: 0;
}
.footer-common .footer-top {
  padding: 140px 0;
}
.footer-common .newsletter-text {
  color: #fff;
  opacity: 0.6;
}
.footer-common .newsletter-box p {
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  opacity: 0.8;
}
.footer-common .newsletter-box .form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  display: inline-block;
  transform: translateY(-58%);
  color: #c6c6c6;
}
.footer-common .newsletter-box .form-group input {
  padding: 12px;
  border-radius: 2px;
  padding-left: 55px;
  border: 2px;
}
.footer-common .newsletter-box .btn {
  background-color: #3c474c;
  color: #fff;
  border-radius: 2px;
  width: 100%;
  border: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px;
}
.footer-common .newsletter-box .btn:hover {
  background: var(--brand);
}
.footer-common .social-link-bg-2 {
  flex-direction: row;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .footer-common .social-link-bg-2 {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 992px) {
  .container-fluid {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/*================================================
Banner CSS
=================================================*/
.banner-area {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 3.375rem;
  overflow: hidden;
  background: linear-gradient(256.17deg, #fff6d6 1.04%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 768px) {
  .banner-area {
    padding-top: 6.25rem;
  }
}
@media screen and (min-width: 992px) {
  .banner-area {
    max-height: 55rem;
    padding-top: 15.3125rem;
    padding-bottom: 15.3125rem;
  }
}
.banner-area .banner-shape-2 {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  z-index: -1;
}
.banner-area.feature-banner {
  padding: 80px 0 70px;
}
@media screen and (min-width: 576px) {
  .banner-area.feature-banner {
    padding: 130px 0 120px;
  }
}
@media screen and (min-width: 992px) {
  .banner-area.feature-banner {
    padding: 150px 0 115px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area.feature-banner {
    padding: 205px 0;
  }
}
.banner-area .banner-right {
  position: relative;
  height: 315px;
}
@media screen and (min-width: 425px) {
  .banner-area .banner-right {
    height: 378px;
  }
}
@media screen and (min-width: 576px) {
  .banner-area .banner-right {
    height: 450px;
  }
}
@media screen and (min-width: 768px) {
  .banner-area .banner-right {
    height: 337px;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right {
    height: 413px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-right {
    height: 450px;
    left: 3.25rem;
  }
}
.banner-area .banner-right .banner-shape-1 {
  top: 1.875rem;
  left: -1.5625rem;
  position: absolute;
}
.banner-area .banner-right .banner-shapes {
  top: 0;
  left: 4rem;
  position: absolute;
  width: 4.375rem;
  height: 4.375rem;
  border-radius: 50%;
  background-color: var(--brand);
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes {
    top: -4.0625rem;
    width: 7.8125rem;
    height: 7.8125rem;
  }
}
.banner-area .banner-right .banner-shapes7 {
  top: 25px;
  left: 1.0625rem;
  position: absolute;
  width: 30%;
}
@media only screen and (min-width: 425px) {
  .banner-area .banner-right .banner-shapes7 {
    width: 24%;
  }
}
@media screen and (min-width: 768px) {
  .banner-area .banner-right .banner-shapes7 {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .banner-area .banner-right .banner-shapes7 {
    top: 0;
    width: auto;
  }
}
.banner-area .banner-right .banner-shapes2 {
  top: 8.75rem;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes2 {
    top: 10.625rem;
  }
}
.banner-area .banner-right .banner-shapes3 {
  top: 1.875rem;
  right: 4.0625rem;
  position: absolute;
  z-index: 1;
  width: 30%;
}
@media screen and (min-width: 425px) {
  .banner-area .banner-right .banner-shapes3 {
    right: 5.9375rem;
  }
}
@media screen and (min-width: 576px) {
  .banner-area .banner-right .banner-shapes3 {
    right: 8.125rem;
  }
}
@media screen and (min-width: 768px) {
  .banner-area .banner-right .banner-shapes3 {
    right: 4.625rem;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes3 {
    top: 10px;
    right: 4.125rem;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-right .banner-shapes3 {
    right: 4.75rem;
    top: -20px;
  }
}
.banner-area .banner-right .banner-shapes4 {
  top: 7.5rem;
  right: 0;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes4 {
    right: -2.5rem;
  }
}
.banner-area .banner-right .banner-shapes5 {
  right: 0;
  bottom: 0;
  position: absolute;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes5 {
    right: -2.8125rem;
  }
}
.banner-area .banner-right .banner-shapes6 {
  top: 7.5rem;
  right: -30px;
  position: absolute;
}
@media screen and (min-width: 576px) {
  .banner-area .banner-right .banner-shapes6 {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .banner-area .banner-right .banner-shapes6 {
    right: -2.1875rem;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right .banner-shapes6 {
    right: -5rem;
  }
}
.banner-area .banner-image {
  position: relative;
  overflow: hidden;
}
.banner-area .banner-image .features-object6 {
  top: 15px;
  left: 37%;
  position: absolute;
  width: 10%;
}
@media screen and (min-width: 425px) {
  .banner-area .banner-image .features-object6 {
    top: 22px;
    left: 35%;
    width: auto;
  }
}
.banner-area .banner-image .features-object7 {
  top: 0;
  left: 40%;
  position: absolute;
  width: 5%;
}
@media screen and (min-width: 425px) {
  .banner-area .banner-image .features-object7 {
    left: 40%;
    width: auto;
  }
}
.banner-area .banner-image .features-object8 {
  top: 45px;
  right: 0;
  position: absolute;
  z-index: 1;
  width: 10%;
}
@media screen and (min-width: 576px) {
  .banner-area .banner-image .features-object8 {
    top: 75px;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-image .features-object8 {
    top: 55px;
    width: 6%;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-image .features-object8 {
    top: 75px;
    width: auto;
  }
}
.banner-area .banner-image .features-object9 {
  top: 35px;
  right: 15px;
  position: absolute;
  width: 10%;
}
@media screen and (min-width: 576px) {
  .banner-area .banner-image .features-object9 {
    top: 65px;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-image .features-object9 {
    top: 45px;
    width: 6%;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-image .features-object9 {
    top: 65px;
    width: auto;
  }
}
.banner-area .banner-image .shape13 {
  bottom: 0.625rem;
  left: 0;
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--brand);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .banner-area .banner-image .shape13 {
    width: 7.125rem;
    height: 7.125rem;
    bottom: 1.5625rem;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-image .shape13 {
    width: 5rem;
    height: 5rem;
    left: 14.0625rem;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-image .shape13 {
    width: 7.125rem;
    height: 7.125rem;
    left: 0;
  }
}
.banner-area .banner-image .shape14 {
  top: 2.1875rem;
  right: 5.625rem;
  position: absolute;
  width: 4.25rem;
  height: 4.25rem;
  background-color: #fff;
  border: 4px solid var(--brand);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-image .shape14 {
    top: 20px;
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-image .shape14 {
    top: 38px;
    right: 98px;
  }
}
.banner-area .banner-image .round-object2 {
  right: 24%;
  bottom: -45px;
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fce7e9;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .banner-area .banner-image .round-object2 {
    right: 38%;
  }
}
@media screen and (min-width: 992px) {
  .banner-area .banner-image .round-object2 {
    right: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-image .round-object2 {
    bottom: -95px;
    right: 24%;
    width: 190px;
    height: 190px;
  }
}
.banner-area .banner-right-two {
  position: relative;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-right-two {
    top: 50%;
    right: 0;
    position: absolute;
    transform: translateY(-50%);
  }
  .banner-area .banner-right-two img {
    width: 65%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .banner-area .banner-right-two {
    right: 2%;
  }
  .banner-area .banner-right-two img {
    width: auto;
  }
}
@media (min-width: 1441px) {
  .banner-area .banner-right-two {
    right: 10%;
  }
  .banner-area .banner-right-two img {
    width: auto;
  }
}
.banner-area .banner-left {
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .banner-area .banner-left {
    padding-top: 0;
  }
}
.banner-area .banner-left h1 {
  font-weight: 900;
  line-height: 1.1;
}
.banner-area .banner-left h1 span {
  color: var(--brand);
  position: relative;
}
.banner-area .banner-left h1 span svg {
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .banner-area .banner-left h1 span svg {
    bottom: 0.375rem;
    left: -0.625rem;
    position: absolute;
  }
}
.banner-area .banner-left .banner-para {
  line-height: 1.75rem;
  padding-top: 1.75rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 992px) {
  .banner-area .banner-left .banner-para {
    padding-right: 3.125rem;
  }
}

.banner-area-2 {
  overflow: hidden;
  padding-top: 260px;
  padding-bottom: 245px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.banner-area-2 .banner-shapes .shape {
  position: absolute;
  z-index: -1;
}
.banner-area-2 .banner-shapes .shape:nth-child(1) {
  bottom: 15%;
  left: 0;
}
.banner-area-2 .banner-shapes .shape:nth-child(2) {
  bottom: 20%;
  left: 45%;
  opacity: 0.4;
}
.banner-area-2 .banner-shapes .shape:nth-child(3) {
  top: 23%;
  left: 10%;
  opacity: 0.4;
}
.banner-area-2 .banner-shapes .shape:nth-child(4) {
  top: 26%;
  right: 43%;
  opacity: 0.4;
}
.banner-area-2 .banner-shapes .shape:nth-child(5) {
  top: 10%;
  right: 0;
}
.banner-area-2 .banner-left h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
}
.banner-area-2 .banner-left P {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #4f4f4f;
  margin: 35px 0 60px 0;
  width: 80%;
}
.banner-area-2 .banner-left .btn {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  border: none;
  padding: 17px 32px;
}
.banner-area-2 .banner-right {
  margin-right: -220px;
}

.banner-area-3 {
  background-color: #E6F5FA;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner-area-3 .banner-shape .shape {
  position: absolute;
  z-index: -1;
}
.banner-area-3 .banner-shape .shape:nth-child(1) {
  right: 0;
  bottom: 135px;
}
.banner-area-3 .banner-shape .shape:nth-child(2) {
  right: 440px;
  top: 120px;
}
.banner-area-3 .banner-shape .shape:nth-child(3) {
  right: 620px;
  top: 257px;
}
.banner-area-3 .banner-shape .shape:nth-child(4) {
  right: 180px;
  top: 260px;
}
.banner-area-3 .banner-shape .shape:nth-child(5) {
  top: 280px;
  right: 445px;
}
.banner-area-3 .banner-shape .shape:nth-child(6) {
  top: 200px;
  left: 0;
  opacity: 0.7;
}
.banner-area-3 .banner-shape .shape:nth-child(7) {
  bottom: 75px;
  right: 258px;
}
.banner-area-3 .banner-shape .shape:nth-child(8) {
  bottom: -15px;
  left: 22px;
}
.banner-area-3 .banner-left {
  padding-bottom: 190px;
  padding-top: 270px;
}
.banner-area-3 .banner-left h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
}
.banner-area-3 .banner-left P {
  color: #4f4f4f;
  margin: 40px 0 50px;
}
.banner-area-3 .banner-left .form-group .btn-red {
  border-color: var(--brand-3);
  background: var(--brand-3);
}
.banner-area-3 .banner-left .form-group .btn-red:hover {
  background: #171717;
  border-color: #171717;
  color: var(--brand-3);
}
.banner-area-3 .banner-right {
  display: inline-block;
  position: relative;
  height: 100%;
  left: -125px;
}
.banner-area-3 .banner-right img {
  max-width: inherit;
  transform-origin: bottom;
}
.banner-area-3 .banner-right .tree {
  position: absolute;
}
.banner-area-3 .banner-right .tree:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.banner-area-3 .banner-right .tree:nth-child(2) .tree-top {
  position: absolute;
  bottom: 90%;
  left: -18px;
  transform-origin: bottom;
}
.banner-area-3 .banner-right .tree:nth-child(2) .tree-top .dollar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-area-3 .banner-right .tree:nth-child(2) .tree-top .dollar img {
  transform-origin: inherit;
}
.banner-area-3 .banner-right .tree:nth-child(3) {
  bottom: 0;
  left: 120px;
}
.banner-area-3 .banner-right .tree:nth-child(4) {
  bottom: 0;
  right: 130px;
}

.sub-content {
  font-size: 0.9375rem;
  padding-top: 1.25rem;
  display: block;
}

.header-form {
  position: relative;
}

.pricing-banner {
  position: relative;
  height: 450px;
  padding-top: 155px;
  background: linear-gradient(102.7deg, rgba(252, 231, 233, 0.2) 0.49%, rgba(255, 247, 221, 0.2) 97.86%);
}
@media screen and (min-width: 576px) {
  .pricing-banner {
    height: 31.25rem;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner {
    height: 34.375rem;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner {
    padding-top: 245px;
    height: 54.6875rem;
  }
}
.pricing-banner .section-title-center {
  position: relative;
  z-index: 999;
}
.pricing-banner .section-title-center h1 {
  font-family: Elagond;
  font-size: 75px;
}
@media screen and (min-width: 425px) {
  .pricing-banner .section-title-center h1 {
    font-size: 95px;
  }
}
@media screen and (min-width: 576px) {
  .pricing-banner .section-title-center h1 {
    font-size: 130px;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .section-title-center h1 {
    font-size: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .section-title-center h1 {
    font-size: 207px;
    line-height: 1;
  }
}
.pricing-banner .section-title-center h1 span {
  color: var(--brand);
}
.pricing-banner .section-title-center h2 {
  margin-top: 55px;
}
.pricing-banner .section-title-center h2 span {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .pricing-banner .section-title-center h2 {
    position: relative;
    top: -23px;
  }
  .pricing-banner .section-title-center h2 span {
    font-size: 65px;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
    top: 10px;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .section-title-center h2 {
    font-size: 3.125rem;
    margin-top: 80px;
  }
  .pricing-banner .section-title-center h2 span {
    font-size: 5.5rem;
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .section-title-center h2 {
    top: -10px;
  }
}
.pricing-banner .banner-shape {
  max-height: 54.6875rem;
  width: 100%;
}
.pricing-banner .banner-shapes {
  top: 130px;
  right: 0;
  left: 0;
  position: absolute;
  margin: auto;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: var(--brand);
}
@media screen and (min-width: 768px) {
  .pricing-banner .banner-shapes {
    width: 4.875rem;
    height: 4.875rem;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .banner-shapes {
    top: 170px;
    width: 7.8125rem;
    height: 7.8125rem;
  }
}
.pricing-banner .pricing-shape-2 {
  top: 175px;
  right: 0;
  left: 0;
  position: absolute;
  margin: auto;
  z-index: 1;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-2 {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-2 {
    width: auto;
    top: 140px;
  }
}
.pricing-banner .pricing-shape-3 {
  right: 0;
  bottom: 75px;
  left: 40px;
  position: absolute;
  top: auto;
  margin: auto;
  z-index: 1;
  width: 30%;
}
@media screen and (min-width: 425px) {
  .pricing-banner .pricing-shape-3 {
    bottom: 50px;
    width: 22%;
  }
}
@media screen and (min-width: 576px) {
  .pricing-banner .pricing-shape-3 {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-3 {
    width: 25%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-3 {
    width: auto;
    bottom: 158px;
    left: 70px;
  }
}
.pricing-banner .pricing-shape-4 {
  top: 150px;
  left: 35%;
  position: absolute;
  margin: auto;
  z-index: 1;
  width: 19%;
}
@media screen and (min-width: 576px) {
  .pricing-banner .pricing-shape-4 {
    top: 155px;
    left: 36%;
    width: 16%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-4 {
    width: 12%;
    left: 40%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-4 {
    top: 230px;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-4 {
    left: 41%;
  }
}
@media screen and (min-width: 1441px) {
  .pricing-banner .pricing-shape-4 {
    left: 45%;
  }
}
.pricing-banner .pricing-shape-5 {
  bottom: 20px;
  left: 20px;
  position: absolute;
  z-index: 1;
  width: 10%;
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-5 {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-5 {
    bottom: 90px;
    left: 9%;
  }
}
.pricing-banner .pricing-shape-12 {
  bottom: 30px;
  left: 10px;
  position: absolute;
  width: 10%;
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-12 {
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-12 {
    bottom: 106px;
    left: 8%;
  }
}
.pricing-banner .pricing-shape-6 {
  bottom: 34%;
  left: 10%;
  position: absolute;
  z-index: 1;
  width: 20%;
}
@media screen and (min-width: 425px) {
  .pricing-banner .pricing-shape-6 {
    bottom: 25%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-6 {
    width: auto;
    bottom: 30%;
    left: 24%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-6 {
    bottom: 40%;
    left: 23%;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-6 {
    left: 31%;
    bottom: 37%;
  }
}
@media screen and (min-width: 1441px) {
  .pricing-banner .pricing-shape-6 {
    left: 35%;
  }
}
.pricing-banner .pricing-shape-7,
.pricing-banner .pricing-shape-11 {
  top: 28%;
  right: 5%;
  position: absolute;
  z-index: 2;
  width: 15%;
}
@media screen and (min-width: 576px) {
  .pricing-banner .pricing-shape-7,
.pricing-banner .pricing-shape-11 {
    width: 10%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-7,
.pricing-banner .pricing-shape-11 {
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-7,
.pricing-banner .pricing-shape-11 {
    top: 18%;
    right: 6%;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-7,
.pricing-banner .pricing-shape-11 {
    top: 25%;
    right: 10%;
  }
}
.pricing-banner .pricing-shape-11 {
  top: 24%;
  right: 9%;
  z-index: 1;
  width: 7%;
}
@media screen and (min-width: 576px) {
  .pricing-banner .pricing-shape-11 {
    width: 4%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-11 {
    right: 6%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-11 {
    top: 16%;
    right: 7%;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-11 {
    top: 23%;
    right: 11%;
  }
}
.pricing-banner .pricing-shape-8 {
  top: 55%;
  right: 0;
  position: absolute;
  z-index: 1;
  width: 20%;
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-8 {
    width: 15%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-8 {
    width: auto;
    top: 40%;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-8 {
    right: 13%;
  }
}
.pricing-banner .pricing-shape-9 {
  right: 12%;
  bottom: 34%;
  position: absolute;
  z-index: 1;
  width: 15%;
}
@media screen and (min-width: 425px) {
  .pricing-banner .pricing-shape-9 {
    bottom: 27%;
  }
}
@media screen and (min-width: 768px) {
  .pricing-banner .pricing-shape-9 {
    width: 10%;
    bottom: 30%;
    right: 23%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-9 {
    width: auto;
    bottom: 40%;
    right: 22%;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-9 {
    right: 30%;
    bottom: 38%;
  }
}
@media screen and (min-width: 1441px) {
  .pricing-banner .pricing-shape-9 {
    right: 35%;
  }
}
.pricing-banner .pricing-shape-10 {
  bottom: 40%;
  left: 0;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .pricing-banner .pricing-shape-10 {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-banner .pricing-shape-10 {
    left: 11%;
  }
}
@media screen and (min-width: 1441px) {
  .pricing-banner .pricing-shape-10 {
    left: 22%;
  }
}

/*================================================
Client CSS
=================================================*/
.client-area {
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 992px) {
  .client-area {
    margin-top: -6.25rem;
  }
}
.client-area .col {
  flex: 1 0 0;
}

.client-wrapper {
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
  padding: 3.375rem 1.25rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .client-wrapper {
    padding: 4.6875rem 3.75rem 4.6875rem;
  }
}

.client-image {
  padding: 30px 15px;
}
.client-image img {
  margin-left: auto;
  margin-right: auto;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.client-image img:hover {
  opacity: 1;
}

.client-text {
  text-align: center;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .client-text {
    padding-bottom: 3rem;
  }
}
.client-text h4 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.client-text h4 span {
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (min-width: 992px) {
  .client-text h4 {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
}

.client-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--black);
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .client-meta {
    margin-top: 2.8125rem;
  }
}
.client-meta .client-review {
  font-size: 1.375rem;
  margin-left: 0.875rem;
}
.client-meta .client-review span {
  font-weight: 600;
}
.client-meta .client-review-number {
  font-size: 1.375rem;
  margin-left: 0.875rem;
}
.client-meta .client-review-number span {
  font-weight: 600;
}
.client-meta .client-review-icon {
  margin-left: 0.875rem;
}
.client-meta .client-review-icon li {
  display: inline-block;
  color: #EFBA34;
  font-size: 1.125rem;
}

.client-area-two {
  margin-top: 0;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (min-width: 992px) {
  .client-area-two {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.client-area-two .client-wrapper {
  box-shadow: none;
  padding: 0;
}
.client-area-two .client-image img {
  filter: grayscale(1);
}
.client-area-two .client-image img:hover {
  filter: grayscale(0);
}

/*================================================
Counter CSS
=================================================*/
.counter-area {
  padding-top: 1.75rem;
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 992px) {
  .counter-area {
    padding-top: 7.5rem;
    padding-bottom: 4.375rem;
  }
}

.counter-item span {
  font-size: 0.9375rem;
  display: block;
  font-family: "Poppins", sans-serif;
}
.counter-item h2 {
  font-weight: 700;
}
.counter-item .counter-number {
  display: flex;
  align-items: center;
}
.counter-item .counter-number span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}
@media screen and (min-width: 576px) {
  .counter-item .counter-number span {
    font-size: 3.125rem;
  }
}

.user-area .custom-row {
  display: flex;
}
.user-area .custom-row .row-item .user-slider {
  width: 605px;
}
.user-area .custom-row .row-item:nth-child(1) {
  margin-right: 47px;
}
.user-area .custom-row h3 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #171717;
}
.user-area .custom-row .btn {
  border-color: #a8a8a8;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: #4f4f4f;
  margin-top: 50px;
}
.user-area .custom-row .btn:hover {
  background: var(--brand);
  border-color: var(--black);
  color: #fff;
}

.user-slider .slick-list {
  padding-bottom: 50px;
}
.user-slider .slick-dots {
  bottom: 0px;
  display: inline-block;
  width: auto;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px #e5e5e5;
  padding: 2px 36px 16px 36px;
  border-radius: 26px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.user-slider .slick-dots li {
  width: inherit;
  height: inherit;
}
.user-slider .slick-dots li.slick-active button {
  background-color: #eb5757;
}
.user-slider .slick-dots li.slick-active button::after {
  transform: scale(1);
}
.user-slider .slick-dots li button {
  height: 10px;
  width: 10px;
  background-color: #e0e0e0;
  position: relative;
  border-radius: 50%;
  padding: 0;
}
.user-slider .slick-dots li button::before {
  display: none;
}
.user-slider .slick-dots li button::after {
  border-radius: 50%;
  content: "";
  background-color: transparent;
  position: absolute;
  top: -3.08px;
  left: -3.08px;
  right: -3.08px;
  bottom: -3.08px;
  height: auto;
  width: auto;
  border: 1px solid #eb5757;
  transform: scale(0);
  transition: all 0.2s linear;
}
.user-slider .single-user-slide-widget {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 20px 30px 0px #eee;
  padding-bottom: 85px;
  overflow: hidden;
  margin: 0 20px;
}
.user-slider .single-user-slide-widget .widget-top {
  position: relative;
}
.user-slider .single-user-slide-widget .widget-top .user-img {
  filter: brightness(0.7);
}
.user-slider .single-user-slide-widget .widget-top .smile-icon {
  padding: 18px;
  border-radius: 50%;
  display: inline-block;
  background-color: #fff;
  box-shadow: 0px 1px 6px 0px #00000040;
  position: absolute;
  bottom: 12px;
  left: 27px;
}
.user-slider .single-user-slide-widget .widget-top .play-btn {
  width: 70px;
  height: 70px;
  display: inline-block;
  background: #eb5757;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  line-height: 70px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.user-slider .single-user-slide-widget .widget-top .play-btn i {
  position: relative;
  height: 30px;
  width: 30px;
}
.user-slider .single-user-slide-widget .widget-top .play-btn i:after {
  width: 300%;
  height: 300%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-animation: pulse 2s infinite;
  -webkit-transform: scale(8);
  -ms-transform: scale(8);
  transform: scale(8);
  animation: pulse 2s infinite;
}
.user-slider .single-user-slide-widget .widget-bottom {
  margin-top: 45px;
  margin-left: 27.5px;
}
.user-slider .single-user-slide-widget .widget-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #4f4f4f;
}
.user-slider .single-user-slide-widget .widget-bottom .author-info {
  margin-top: 25px;
}
.user-slider .single-user-slide-widget .widget-bottom .author-info span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: #828282;
}
.user-slider .single-user-slide-widget .widget-bottom .author-info .location {
  font-weight: 500;
}

.user-area-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.user-area-two .customer-feed {
  max-width: 490px;
}
.user-area-two .customer-feed p {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 28px;
  color: var(--text-color-2);
  text-align: justify;
}
.user-area-two .customer-feed .customer-info {
  margin-top: 17px;
}
.user-area-two .customer-feed .customer-info span {
  color: #8d8d8d;
  display: block;
  line-height: 1.4;
  text-align: justify;
}
.user-area-two .customer-feed .customer-info .name {
  font-size: 15px;
  font-weight: 500;
}
.user-area-two .customer-feed .customer-info .pos {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
}
.user-area-two .customer-feed a {
  color: var(--brand-3);
  font-size: 15px;
  margin-top: 15px;
  display: inline-block;
}
.user-area-two .customer-feed a:hover i {
  transform: translateX(5px);
}
.user-area-two .customer-feed a i {
  margin-left: 8px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
}
.user-area-two .customer-img {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.user-area-two .customer-img .shape {
  position: absolute;
  right: -60px;
  bottom: -55px;
  z-index: -1;
}

/*================================================
CTA CSS
=================================================*/
.cta-area {
  position: relative;
}
.cta-area .section-title-center .mt-16 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-area .section-title-center .mt-16 {
    margin-top: 4rem;
  }
}
.cta-area .shape7 {
  top: -1.5625rem;
  left: 10%;
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--brand);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .cta-area .shape7 {
    width: 5.625rem;
    height: 5.625rem;
  }
}
.cta-area .shape8 {
  top: -2.5rem;
  right: 5%;
  position: absolute;
}
@media screen and (min-width: 1200px) {
  .cta-area .shape8 {
    top: -2.5rem;
    right: 10%;
    position: absolute;
  }
}
.cta-area .shape9 {
  top: -1.625rem;
  right: 10%;
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--black);
  background-color: #37bd8a;
  transform: rotate(45deg);
}
.cta-area .shape10 {
  top: 5rem;
  right: 12%;
  position: absolute;
}
.cta-area .shape11 {
  bottom: 30%;
  left: 15%;
  position: absolute;
}
.cta-area .shape12 {
  bottom: -1.25rem;
  left: 3rem;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 9;
  border: 2px solid var(--black);
  background-color: #efba34;
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .cta-area .shape12 {
    bottom: -2.375rem;
    width: 72px;
    height: 72px;
  }
}

@media screen and (min-width: 992px) {
  .cta-area-two.section-padding {
    padding-top: 5.3125rem;
    padding-bottom: 5.3125rem;
  }
}
.cta-area-two .section-title-center h2 {
  font-size: 2.5rem;
}

.cta-area-three .cta-box {
  border-radius: 10px;
  bottom: -125px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.cta-area-three .cta-box .shape {
  position: absolute;
  width: 75px;
  z-index: 1;
}
.cta-area-three .cta-box .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.cta-area-three .cta-box .shape:nth-child(2) {
  right: 0;
  top: 0;
}
.cta-area-three .section-title,
.cta-area-three .title-text {
  color: #fff;
}
.cta-area-three .section-title {
  font-weight: 700;
}
.cta-area-three .title-text {
  opacity: 0.8;
}
.cta-area-three .btn {
  background: #fff;
  border-radius: 5px;
  border-color: transparent;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  padding: 20px 36px;
}
.cta-area-three .btn:hover {
  background: var(--brand);
  color: #fff;
}

.cta-area-four {
  background-color: #e6f5fa;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-area-four .shape {
  position: absolute;
  border-radius: 5px;
  z-index: -1;
}
.cta-area-four .shape:nth-child(1) {
  width: 40px;
  height: 90px;
  border: 4px solid #f9a619;
  transform: rotate(320deg);
  left: 14%;
  top: 32%;
}
.cta-area-four .shape:nth-child(2) {
  width: 41px;
  height: 41px;
  border: 4px solid #473d8d;
  border-radius: 50%;
  left: 18%;
  top: 25%;
}
.cta-area-four .shape:nth-child(3) {
  width: 21px;
  height: 21px;
  border: 4px solid #28192d;
  transform: rotate(45deg);
  left: 12%;
  top: 60%;
}
.cta-area-four .shape:nth-child(4) {
  width: 61px;
  height: 61px;
  border: 4px solid #ec595a;
  border-radius: 10px;
  transform: rotate(15deg);
  left: 21%;
  top: 45%;
}
.cta-area-four .shape:nth-child(5) {
  width: 23px;
  height: 23px;
  border: 4px solid #28192D;
  border-radius: 50%;
  right: 8%;
  top: 22%;
}
.cta-area-four .shape:nth-child(6) {
  width: 35px;
  height: 70px;
  border: 4px solid #473D8D;
  transform: rotate(45deg);
  right: 10%;
  bottom: 30%;
}
.cta-area-four .shape:nth-child(7) {
  width: 64px;
  height: 64px;
  border: 4px solid #F9A619;
  border-radius: 10px;
  transform: rotate(15deg);
  right: 15%;
  top: 30%;
}
.cta-area-four .shape:nth-child(8) {
  width: 70px;
  height: 70px;
  border: 4px solid #EC595A;
  border-radius: 50%;
  right: 22%;
  bottom: 30%;
}
.cta-area-four .btn {
  background-color: #473d8d;
}
.cta-area-four .btn:hover {
  background-color: var(--black);
  color: #473d8d;
}
.cta-area-four .section-title-center {
  padding-bottom: 40px;
}
.cta-area-four .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .cta-area-four .section-title-center p {
    width: 45%;
  }
}

/*================================================
FAQs CSS
=================================================*/
.faq-area {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 992px) {
  .faq-area {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
  .faq-area.pricing-faq {
    padding-top: 4.375rem;
    padding-bottom: 8.75rem;
  }
  .faq-area.help-center-faq {
    padding-top: 8.125rem;
  }
}
.faq-area .section-title-center {
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 992px) {
  .faq-area .section-title-center {
    padding-bottom: 4.0625rem;
  }
}
.faq-area .accordion-item .accordion-button {
  border-radius: 10px;
}

.faq-area-two {
  padding: 130px 0 15px 0;
  position: relative;
  z-index: 1;
}
.faq-area-two .shape {
  position: absolute;
  z-index: -1;
}
.faq-area-two .shape:nth-child(1) {
  left: 0;
  bottom: 20%;
}
.faq-area-two .shape:nth-child(2) {
  right: 0;
  top: 15%;
}
.faq-area-two .section-title-center {
  padding-bottom: 2.5rem;
}
.faq-area-two .section-title-center p {
  font-size: 20px;
  line-height: 32px;
  width: 100%;
}

.faq-area-three {
  position: relative;
  z-index: 1;
}
.faq-area-three .faq-tab-wrapper .tab-pane {
  padding-top: 0;
}
.faq-area-three .faq-tab-wrapper .nav-tabs {
  margin: 0 0 65px;
  border: none;
  justify-content: center;
  -webkit-justify-content: center;
}
.faq-area-three .faq-tab-wrapper .nav-tabs .nav-item {
  margin: 10px 0 0;
}
.faq-area-three .faq-tab-wrapper .nav-tabs .nav-link {
  border: none;
  line-height: 32px;
  border-radius: 3px;
  padding: 0 18px;
  color: #989898;
  font-size: 17px;
  margin: 0 10px;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(1) .nav-link {
  background: #f4f3ff;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(2) .nav-link {
  background: #ffeeee;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(3) .nav-link {
  background: #f3ffed;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(4) .nav-link {
  background: #edf3ff;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(5) .nav-link {
  background: #fdf9e9;
}
.faq-area-three .faq-tab-wrapper .nav-tabs li:nth-child(6) .nav-link {
  background: #e6fafd;
}
.faq-area-three .faq-tab-wrapper .nav-tabs .nav-item.show .nav-link,
.faq-area-three .faq-tab-wrapper .nav-tabs .nav-link.active {
  background: #22d4ab !important;
  color: #fff;
}
.faq-area-three .section-title-center {
  padding-bottom: 60px;
}
.faq-area-three .section-title-center p {
  color: #4f4f4f;
  font-size: 20px;
  line-height: 1.6;
  width: 100%;
  padding-top: 15px;
}
@media screen and (min-width: 992px) {
  .faq-area-three .section-title-center p {
    width: 58%;
  }
}

/*================================================
FAQs page CSS
=================================================*/
.faq-banner .banner-text {
  color: #4e4e4e;
  font-size: 20px;
  line-height: 1.2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 576px) {
  .faq-banner .banner-text {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .faq-banner .banner-text {
    font-size: 22px;
    width: 100%;
  }
}

.faq-nav-wrapp {
  background: #fff;
  box-shadow: 0px 30px 50px 0px rgba(215, 215, 215, 0.3);
  border-radius: 5px;
}
.faq-nav-wrapp.nav .nav-link {
  color: var(--black);
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 21px 40px;
}
.faq-nav-wrapp.nav .nav-link.active {
  background: #f0f0f0;
}

.faq-tab-content .tab-pane {
  padding-top: 0;
}
.faq-tab-content .accordion-item {
  margin-top: 0;
}
.faq-tab-content .accordion-item:not(:last-child) {
  margin-bottom: 30px;
}
.faq-tab-content .accordion-item .accordion-button {
  background: #f0f0f0;
  border-radius: 5px;
  box-shadow: none;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 24px 20px 24px 34px;
}
.faq-tab-content .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f00d";
}
.faq-tab-content .accordion-item .accordion-body {
  color: var(--text-color-2);
  font-size: 18px;
  line-height: 30px;
  padding: 30px 25px 30px 34px;
}
.faq-tab-content .accordion-item .collapse.show .accordion-body {
  box-shadow: 0px 20px 25px 0px rgba(120, 120, 120, 0.2);
  background: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.question-area .question_menu h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}
.question-area .question_menu .nav-tabs {
  border: none;
  margin-right: -15px;
  margin-bottom: -15px;
}
.question-area .question_menu .nav-tabs li {
  margin-right: 15px;
  margin-bottom: 15px;
}
.question-area .question_menu .nav-tabs li a {
  border: none;
  background: rgba(236, 89, 90, 0.1);
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  border-radius: 3px;
  padding: 0 16px;
  color: #6b707f;
}
.question-area .question_menu .nav-tabs li a:hover, .question-area .question_menu .nav-tabs li a.active {
  background: var(--brand);
  color: #fff;
}
.question-area .question_list .tab-pane {
  padding-top: 0;
}
.question-area .question_list .fade {
  transition: opacity 0.5s linear;
}
.question-area .question_list .ques_item {
  background: rgba(236, 89, 90, 0.1);
  padding: 35px 25px 35px 35px;
}
.question-area .question_list .ques_item h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 13px;
}
.question-area .question_list .ques_item p {
  margin-bottom: 0;
}
.question-area .question_list .ques_item:nth-child(even) {
  background: #fff;
}

/*================================================
Features CSS
=================================================*/
.features {
  position: relative;
  padding-top: 4.375rem;
}
@media screen and (min-width: 992px) {
  .features {
    padding-top: 8.75rem;
  }
}
.features-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .features-image {
    left: -2.5rem;
    position: relative;
  }
}
.features-image .features-object1 {
  top: 0;
  left: 40%;
  position: absolute;
}
.features-image .features-object2 {
  top: 21%;
  left: 22%;
  position: absolute;
}
@media screen and (min-width: 576px) {
  .features-image .features-object2 {
    top: 21%;
    left: 25%;
  }
}
@media screen and (min-width: 768px) {
  .features-image .features-object2 {
    left: 22%;
  }
}
@media screen and (min-width: 768px) {
  .features-image .features-object2 {
    left: 24%;
  }
}
.features-image .features-object3 {
  top: 13%;
  left: 29%;
  position: absolute;
}
@media screen and (min-width: 425px) {
  .features-image .features-object3 {
    top: 15%;
  }
}
@media screen and (min-width: 576px) {
  .features-image .features-object3 {
    top: 16%;
  }
}
@media screen and (min-width: 576px) {
  .features-image .features-object3 {
    left: 26%;
  }
}
@media screen and (min-width: 992px) {
  .features-image .features-object3 {
    left: 29%;
  }
}
.features-image .features-object4 {
  top: 50%;
  left: 10px;
  position: absolute;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .features-image .features-object4 {
    left: 25px;
  }
}
.features-image .features-object5 {
  top: 45%;
  left: 5px;
  position: absolute;
  transform: translateY(-50%);
}
@media screen and (min-width: 576px) {
  .features-image .features-object5 {
    top: 47%;
    left: 15px;
  }
}
.features-image .features-object6 {
  top: 15px;
  left: 37%;
  position: absolute;
  width: 10%;
}
@media screen and (min-width: 425px) {
  .features-image .features-object6 {
    top: 22px;
    left: 35%;
    width: auto;
  }
}
.features-image .features-object7 {
  top: 0;
  left: 40%;
  position: absolute;
  width: 5%;
}
@media screen and (min-width: 425px) {
  .features-image .features-object7 {
    left: 40%;
    width: auto;
  }
}
.features-image .features-object8 {
  top: 45px;
  right: 0;
  position: absolute;
  z-index: 1;
  width: 10%;
}
@media screen and (min-width: 576px) {
  .features-image .features-object8 {
    top: 75px;
    width: auto;
  }
}
.features-image .features-object9 {
  top: 35px;
  right: 15px;
  position: absolute;
  width: 10%;
}
@media screen and (min-width: 576px) {
  .features-image .features-object9 {
    top: 65px;
    width: auto;
  }
}
.features-image .round-object {
  right: 17%;
  bottom: -45px;
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fce7e9;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .features-image .round-object {
    bottom: -90px;
    right: 35%;
    width: 160px;
    height: 160px;
  }
}
@media screen and (min-width: 992px) {
  .features-image .round-object {
    right: 15%;
  }
}
@media screen and (min-width: 1200px) {
  .features-image .round-object {
    bottom: -85px;
    right: 17%;
  }
}
.features-content {
  padding-top: 3.125rem;
}
@media screen and (min-width: 992px) {
  .features-content {
    padding-top: 0;
  }
}
.features-content h2 {
  position: relative;
  font-weight: 700;
  z-index: 9;
}
@media screen and (min-width: 768px) {
  .features-content h2 {
    font-size: 3rem;
    line-height: 3.875rem;
  }
}
.features-content h2::before {
  content: "";
  top: 0.375rem;
  left: 0;
  position: absolute;
  width: 14.375rem;
  height: 2.8125rem;
  background: #fce7e9;
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .features-content h2::before {
    width: 15.625rem;
  }
}
@media screen and (min-width: 768px) {
  .features-content h2::before {
    width: 19.125rem;
    height: 3.125rem;
  }
}
.features-content h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  padding-top: 1.125rem;
}
@media screen and (min-width: 992px) {
  .features-content h3 {
    line-height: 3rem;
  }
}
.features-content h3 span {
  font-weight: 700;
  color: var(--brand);
}
.features-content p {
  font-size: 0.9375rem;
  padding-top: 1.25rem;
  line-height: 1.6875rem;
}
@media screen and (min-width: 992px) {
  .features-content p {
    width: 86%;
  }
}
@media screen and (min-width: 768px) {
  .features-content-four h2::before {
    width: 170px;
    left: 41%;
  }
}

@media screen and (min-width: 992px) {
  .features-area-two.section-padding {
    padding-bottom: 8.75rem;
  }
}
.features-area-two .features-image {
  left: 0;
  position: relative;
}
.features-area-two .features-content {
  padding-top: 0;
}
.features-area-two .features-content h2::before {
  content: "";
  bottom: 0;
  position: absolute;
  top: auto;
  width: 13.4375rem;
  height: 3.125rem;
}
@media screen and (min-width: 992px) {
  .features-area-two .features-content h2 {
    width: 90%;
  }
}
.features-area-two .features-content p {
  padding-top: 1.4375rem;
  padding-bottom: 1.375rem;
}
@media screen and (min-width: 992px) {
  .features-area-two .features-content p {
    width: 65%;
  }
}
.features-area-two .features-counter {
  position: relative;
  padding-left: 0.9375rem;
  padding-bottom: 3.125rem;
}
.features-area-two .features-counter::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 0.375rem;
  height: 7.125rem;
  background: var(--brand);
}
@media screen and (min-width: 992px) {
  .features-area-two .features-counter {
    padding-bottom: 0;
  }
}
.features-area-two .features-counter span {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.3125rem;
  display: inline-block;
}
.features-area-two .features-counter strong {
  font-size: 3.125rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.features-area-two .features-counter strong span {
  font-size: 50px;
  font-weight: 700;
}
.features-area-two .features-counter p {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--black);
  line-height: 1.2;
}

.features-area-three {
  padding: 4.6875rem 0rem 4.0625rem;
}
@media screen and (min-width: 992px) {
  .features-area-three {
    padding-top: 8.75rem;
    padding-bottom: 8.4375rem;
  }
}
.features-area-three .features-form {
  margin-top: 3.125rem;
}
.features-area-three .form-group {
  margin-left: auto;
  margin-right: auto;
}
.features-area-three .features-tab-content .tab-pane {
  padding-top: 2.5rem;
}
.features-area-three .features-tab-image img {
  margin-left: auto;
  margin-right: auto;
}

.features-area-four {
  background: #f9f9f9;
  padding-top: 4.375rem;
}
@media screen and (min-width: 992px) {
  .features-area-four {
    padding-top: 5.3125rem;
    padding-bottom: 8.75rem;
  }
}
.features-area-four .features-image {
  left: 0;
}
@media screen and (min-width: 1200px) {
  .features-area-four .features-content p {
    width: 70%;
  }
}

@media screen and (min-width: 992px) {
  .features-area-five {
    padding-top: 8.4375rem;
  }
}
@media screen and (min-width: 992px) {
  .features-area-five .section-title-center h2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
.features-area-five .feature-image {
  position: relative;
}
.features-area-five .feature-image img {
  margin-left: auto;
  margin-right: auto;
}
.features-area-five .feature-image .features8 {
  bottom: 165px;
  left: 0;
  position: absolute;
  width: 25%;
}
@media screen and (min-width: 992px) {
  .features-area-five .feature-image .features8 {
    bottom: 105px;
    width: auto;
  }
}
.features-area-five .feature-image .features9 {
  right: 0;
  bottom: 165px;
  position: absolute;
  width: 25%;
}
@media screen and (min-width: 992px) {
  .features-area-five .feature-image .features9 {
    bottom: 105px;
    width: auto;
  }
}
.features-area-five .feature-image p {
  text-align: center;
  padding-top: 2.5rem;
}
@media screen and (min-width: 992px) {
  .features-area-five .feature-image p {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
  }
}

.features-area-six.section-padding {
  padding-bottom: 0;
}
@media screen and (min-width: 576px) {
  .features-area-six.section-padding {
    padding-top: 7.5rem;
  }
}
@media screen and (min-width: 992px) {
  .features-area-six.section-padding {
    padding-top: 8.75rem;
  }
}
.features-area-six .section-title-left {
  padding-top: 2.5rem;
}
@media screen and (min-width: 992px) {
  .features-area-six .section-title-left {
    padding-top: 0;
    padding-left: 1.875rem;
  }
}
.features-area-six .section-title-left h2 {
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 992px) {
  .features-area-six .section-title-left h2 {
    width: 86%;
  }
}
@media screen and (min-width: 992px) {
  .features-area-six .section-title-left p {
    width: 91%;
  }
}
.features-area-six .feature-image img {
  margin-left: auto;
  margin-right: auto;
}

.features-area-seven .section-title-left {
  padding-left: 0;
}
@media screen and (min-width: 992px) {
  .features-area-seven .section-title-left p {
    width: 97%;
  }
}
.features-area-seven .feature-image img {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .features-area-eight {
    padding-top: 8.4375rem;
    padding-bottom: 8.4375rem;
  }
}
.features-area-eight .feature-image {
  position: relative;
}
@media screen and (min-width: 992px) {
  .features-area-eight .feature-image {
    margin-top: 1.875rem;
  }
}
.features-area-eight .feature-image img {
  margin-left: auto;
  margin-right: auto;
}
.features-area-eight .feature-image .features-object10 {
  top: 0;
  left: 118px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .features-area-eight .feature-image .features-object10 {
    top: 21px;
  }
}
.features-area-eight .feature-image .features-object11 {
  top: 63px;
  left: 36px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .features-area-eight .feature-image .features-object11 {
    top: 107px;
  }
}
.features-area-eight .feature-image .features-object12 {
  top: 46px;
  left: 58px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .features-area-eight .feature-image .features-object12 {
    top: 91px;
  }
}
.features-area-eight .feature-image .features-object13 {
  top: 8px;
  right: 35px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .features-area-eight .feature-image .features-object13 {
    right: 106px;
  }
}
.features-area-eight .feature-image .features-object14 {
  top: 0;
  right: 45px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .features-area-eight .feature-image .features-object14 {
    right: 117px;
  }
}
.features-area-eight .section-title-left {
  padding-top: 2.5rem;
}
@media screen and (min-width: 992px) {
  .features-area-eight .section-title-left {
    padding-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .features-area-eight .section-title-left h2 {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .features-area-eight .section-title-left p {
    width: 83%;
  }
}
.features-area-eight .features-service {
  padding-top: 2.5rem;
}
.features-area-eight .features-service p {
  margin-top: 1.5625rem;
}
.features-area-eight .features-icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black);
}
.features-area-eight .features-icon img {
  margin-right: 1.625rem;
}

.features-area-nine .section-title-center h2 {
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.features-area-nine .features-item {
  padding: 1.875rem 1.25rem;
  background: #fff;
  border-radius: 0.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .features-area-nine .features-item {
    padding: 3.125rem 2.5rem;
  }
}
.features-area-nine .features-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 25px;
  margin-top: 1.25rem;
  width: 90%;
}
.features-area-nine .features-item h4 a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-decoration: none;
}
.features-area-nine .features-item hr {
  background: var(--black);
  width: 100%;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .features-area-nine .features-item hr {
    margin-top: 5rem;
  }
}
.features-area-nine .features-item p {
  font-size: 0.9375rem;
  color: var(--black);
  line-height: 1.6875rem;
}
.features-area-nine .features-item:hover {
  box-shadow: 0px 20px 50px rgba(23, 23, 23, 0.08);
}
.features-area-nine .features-item:hover h4 a {
  text-decoration: underline;
  color: var(--black);
}

.features-area-ten {
  background-image: url("../images/home_2/feature-10-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 210px;
}
.features-area-ten .shapes {
  position: absolute;
  z-index: -1;
}
.features-area-ten .shapes:nth-child(1) {
  left: 15%;
  top: 15%;
}
.features-area-ten .shapes:nth-child(2) {
  left: 5%;
  top: 50%;
}
.features-area-ten .shapes:nth-child(3) {
  left: 10%;
  bottom: 15%;
}
.features-area-ten .shapes:nth-child(4) {
  right: 10%;
  top: 15%;
}
.features-area-ten .shapes:nth-child(5) {
  right: 10%;
  top: 50%;
}
.features-area-ten .shapes:nth-child(6) {
  right: 30%;
  bottom: 10%;
}
.features-area-ten h2 {
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}
.features-area-ten p {
  color: var(--text-color-2);
  width: 90%;
}
.features-area-ten .dash-img {
  position: relative;
}
.features-area-ten .dash-img img + img {
  position: absolute;
  right: -125px;
  bottom: -120px;
}
.features-area-ten .dash-img .shape {
  bottom: -17%;
  left: -10%;
  position: absolute;
  z-index: -1;
}

/*================================================
Logo-grid CSS
=================================================*/
.logo-grid-area {
  padding-top: 0rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 992px) {
  .logo-grid-area {
    padding-top: 4.375rem;
    padding-bottom: 8.75rem;
  }
}
.logo-grid-area .logo-grid-wrapper {
  max-width: 76.625rem;
  background: #fffae1;
  border-radius: 1.875rem;
  padding: 2.5rem 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .logo-grid-area .logo-grid-wrapper {
    padding: 7.375rem 4.0625rem 6.125rem;
  }
}
.logo-grid-area .logo-grid-wrapper .section-title-left {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 992px) {
  .logo-grid-area .logo-grid-wrapper .section-title-left {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .logo-grid-area .logo-grid-wrapper .section-title-left h2 {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .logo-grid-area .logo-grid-wrapper .section-title-left h2 {
    margin-bottom: 1.5625rem;
  }
}
.logo-grid-area .logo-grid-wrapper .section-title-left span {
  font-weight: 300;
}

.logo-grid-item {
  max-width: 6.875rem;
  height: 6rem;
  border-radius: 0.625rem;
  background: #fff;
  margin: auto;
  text-align: center;
  display: grid;
  cursor: pointer;
}
.logo-grid-item img {
  margin: auto;
}

.logo-grid-text {
  background: transparent;
}
.logo-grid-text h3 {
  font-weight: 700;
}

/*================================================
Pricing CSS
=================================================*/
.pricing-area.section-padding {
  padding-top: 6.25rem;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .pricing-area.section-padding {
    padding-top: 7.8125rem;
    padding-bottom: 4.375rem;
  }
}
.pricing-area.section-padding-2 {
  padding: 5rem 0 4.6875rem;
}
@media screen and (min-width: 576px) {
  .pricing-area.section-padding-2 {
    padding: 7.5rem 0 7.1875rem;
  }
}
@media screen and (min-width: 992px) {
  .pricing-area.section-padding-2 {
    padding: 8.75rem 0 8.4375rem;
  }
}
.pricing-area .section-title-center {
  padding-bottom: 4.0625rem;
}
@media screen and (min-width: 992px) {
  .pricing-area .section-title-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 52%;
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-area .col-md-6,
.pricing-area .col-lg-3 {
  padding-left: 3px;
  padding-right: 3px;
}
.pricing-area .tex {
  font-size: 1.125rem;
  color: #5d5d66;
  margin-top: 3.75rem;
}
.pricing-area .nav-item {
  width: 100%;
}
.pricing-area .nav-item .nav-link {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .pricing-area .nav-item {
    width: auto;
  }
  .pricing-area .nav-item .nav-link {
    width: auto;
  }
}

.pricing-area-two {
  background-color: #E6F5FA;
  position: relative;
}
.pricing-area-two .section-title-center {
  padding-bottom: 50px;
}
.pricing-area-two .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .pricing-area-two .section-title-center p {
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .pricing-area-two .ps-28 {
    padding-left: 28px;
  }
  .pricing-area-two .pe-28 {
    padding-right: 28px;
  }
}
.pricing-area-two .tab-pane {
  padding-top: 80px;
}

.pricing-currency {
  border-color: #a0a1a3;
  font-size: 1rem;
  text-transform: uppercase;
  color: #6d6d6d;
  border-radius: 0.625rem;
  float: right;
  padding: 15px;
  position: relative;
}
.pricing-currency .icon {
  width: 15px;
  height: 100%;
  background: red;
}

.pricing-tabs {
  border: none;
  padding: 0.625rem;
  border-radius: 0.625rem;
  background: #f9f9f9;
  display: inline-flex;
}
.pricing-tabs .nav-link {
  padding: 0.3125rem 1.125rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  color: #6d6d6d;
}
.pricing-tabs .nav-link.active {
  border-color: transparent;
  background: transparent;
  background: var(--brand);
  color: #fff;
}
.pricing-tabs .nav-link:hover {
  border-color: transparent;
}

.pricing-tabs-two {
  display: inline-flex;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #676099;
}
.pricing-tabs-two li {
  display: inline-block;
}
.pricing-tabs-two li:first-child .nav-link {
  padding-left: 40px;
}
.pricing-tabs-two li:first-child .nav-link::before {
  transform-origin: right;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}
.pricing-tabs-two li:last-child .nav-link {
  padding-right: 40px;
}
.pricing-tabs-two li .nav-link {
  padding: 10px 29px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: #4f4f4f;
  border: none;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.pricing-tabs-two li .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background-color: var(--brand-3);
  background-color: transparent;
  z-index: -1;
  transition: all 0.2s linear;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}
.pricing-tabs-two li .nav-link.active {
  font-weight: 600;
  color: #ffffff;
  border-radius: 0;
  background-color: transparent;
}
.pricing-tabs-two li .nav-link.active::before {
  background-color: var(--brand-3);
  transform: scaleX(1);
}

.tab-pane {
  position: relative;
}
@media screen and (min-width: 992px) {
  .tab-pane {
    padding-top: 6.25rem;
  }
}
.tab-pane .popular {
  top: 60px;
  right: 35%;
  position: absolute;
}

.pricing-item {
  background: #fafafa;
  border-radius: 1.25rem;
  padding: 3.75rem 1.375rem 2.5rem;
  margin-top: 1.875rem;
  position: relative;
  border: 2px solid transparent;
  text-align: center;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.pricing-item:hover {
  background: rgba(255, 227, 218, 0.5);
  border-color: var(--black);
}
@media screen and (min-width: 576px) {
  .pricing-item {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .pricing-item {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .pricing-item {
    text-align: left;
  }
}
.pricing-item .badge {
  top: -2px;
  right: 0;
  left: 0;
  position: absolute;
  width: 7.8125rem;
  margin: 0 auto;
  border-radius: 0;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  padding: 8px 25px;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.pricing-item .pricing-title {
  font-size: 1.625rem;
  font-weight: 500;
}
.pricing-item .price {
  font-size: 1.875rem;
  color: var(--brand);
  font-weight: 700;
  margin-top: 0.9375rem;
}
.pricing-item .price .dollar {
  display: inline-block;
}
.pricing-item .price .euro {
  display: none;
}
.pricing-item .price sup {
  font-size: 0.875rem;
  color: var(--black);
  font-weight: 400;
}
.pricing-item .pricing-item-user {
  font-size: 0.875rem;
  font-weight: #5d5d66;
  display: block;
  margin-top: 0.625rem;
}
.pricing-item .pricing-btn {
  display: inline-block;
  border: 2px solid var(--brand);
  background: #ffe3da;
  color: var(--brand);
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.8125rem 1.875rem;
  margin-top: 2.1875rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.pricing-item .pricing-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: #2c2c2c;
}
.pricing-item ul {
  padding-top: 20px;
}
.pricing-item li {
  font-size: 0.9375rem;
  padding-top: 15px;
  font-weight: 500;
}
.pricing-item li.text-gray-100 {
  color: #999;
}
.pricing-item.active {
  background: rgba(255, 227, 218, 0.5);
  border-color: var(--black);
}
.pricing-item.active .pricing-item-user {
  color: var(--brand);
}
.pricing-item.active .pricing-btn {
  background: var(--brand);
  color: #fff;
  border: 2px solid #2c2c2c;
}
.pricing-item.bg-yellow-200 {
  background: #fff7dd;
}

.pricing-item-2 {
  box-shadow: 0px 10px 25px 0px #bfbfbf40;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s linear;
}
.pricing-item-2.active, .pricing-item-2:hover {
  box-shadow: 0px 20px 50px 0px #bfbfbf80;
  transform: translateY(-30px);
}
.pricing-item-2 h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #171717;
  margin-top: 45px;
  margin-bottom: 20px;
}
.pricing-item-2 p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #70717b;
  margin-bottom: 72px;
}
.pricing-item-2 .price {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 10px;
}
.pricing-item-2 .pack-feature {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #828282;
}
.pricing-item-2 .btn {
  border-radius: 5px;
  padding: 17px 0;
  width: 95%;
  margin-top: 33px;
}
.pricing-item-2 .btn:hover {
  color: #fff;
  background-color: #eb5757;
  border-color: #eb5757;
}

.pricing-item-3 {
  box-shadow: 0px 20px 50px 0px #0000000d;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
.pricing-item-3:hover {
  box-shadow: 0px 50px 80px 0px #352a431a;
}
.pricing-item-3 .price-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.pricing-item-3.middle .price {
  padding-top: 71px;
}
.pricing-item-3 h5 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 36px 0;
  box-shadow: 0px 1px 1px 0px #473d8d1a;
  margin-bottom: 0;
}
.pricing-item-3 .price {
  font-family: "Inter", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 18px;
  color: var(--brand-3);
  padding-top: 44px;
  padding-bottom: 58px;
  text-align: center;
}
.pricing-item-3 .price span {
  color: #c6c6c6;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}
.pricing-item-3 .price span:first-child {
  color: var(--brand-3);
}
.pricing-item-3 ul {
  margin-left: auto;
  margin-right: auto;
}
.pricing-item-3 ul li {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #8d8d8d;
  margin-top: 15px;
}
.pricing-item-3 ul li:first-child {
  margin-top: 0;
}
.pricing-item-3 ul li span {
  width: 22px;
  height: 22px;
  font-size: 9px;
  color: #a0a1a3;
  border: 1px solid #a0a1a3;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pricing-item-3 ul li span i {
  display: inline-block;
}
.pricing-item-3 ul li.checked {
  color: #171717;
}
.pricing-item-3 ul li.checked span {
  background-color: var(--brand-3);
  border-color: var(--brand-3);
  color: #fff;
}
.pricing-item-3 .btn {
  margin-left: auto;
  margin-right: auto;
  padding: 10px 76px;
  border-color: var(--brand-3);
  border-width: 1px;
  border-radius: 25px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 42px;
  margin-top: 33px;
}
.pricing-item-3 .btn:hover {
  background-color: var(--brand-3);
  font-weight: 700;
  color: #fff;
}

.pricing-switcher {
  position: relative;
  z-index: 99;
  justify-content: space-between;
}
.pricing-switcher .nav-link {
  color: #828282;
  text-transform: capitalize;
  padding: 5px 10px;
  display: inline-block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
}
.pricing-switcher .nav-link::before {
  position: absolute;
  content: "";
  border: 1px solid rgba(79, 79, 79, 0.2);
  width: 100px;
  height: 40px;
  background: transparent;
  border-radius: 25px;
  right: -51px;
  top: 50%;
  margin-top: -20px;
}
.pricing-switcher .nav-link::after {
  position: absolute;
  content: "";
  width: 31px;
  height: 31px;
  background: #eb5757;
  border-radius: 50%;
  margin-top: -15.5px;
  z-index: 1;
  top: 50%;
  right: -47px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  animation-name: fadeInLeft;
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}
.pricing-switcher .nav-link:nth-child(odd) {
  padding-right: 80px;
}
.pricing-switcher .nav-link:nth-child(even) {
  text-align: right;
  padding-left: 80px;
}
.pricing-switcher .nav-link:nth-child(even)::before {
  left: -49px;
  right: auto;
}
.pricing-switcher .nav-link:nth-child(even)::after {
  right: auto;
  left: -45px;
  animation-name: fadeInRight;
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  -moz-animation-duration: 0.3s;
}
.pricing-switcher .nav-link.active {
  color: #333333;
}
.pricing-switcher .nav-link.active::after, .pricing-switcher .nav-link.active::before {
  display: none;
  z-index: -9;
}

/*================================================
Pricing Two CSS
=================================================*/
.bg-price {
  background-color: #f7f7f7;
}

.pricing-menu {
  position: static;
  background-color: #fff;
}

.navbar_fixed.pricing-menu {
  position: fixed;
}

.pricing-banner-2 {
  background-image: url("../images/pricing-banner2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 130px 0 195px;
}
.pricing-banner-2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(3, 0, 26, 0.63) 40.4%, rgba(196, 196, 196, 0) 85.66%);
  z-index: -1;
}
.pricing-banner-2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  background-image: linear-gradient(360deg, #ffffff 0.72%, rgba(255, 255, 255, 0) 40.58%);
  z-index: -1;
}
.pricing-banner-2 .banner-title {
  color: #fff;
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  letter-spacing: 0.5px;
}
.pricing-banner-2 .banner-text {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
}
.pricing-banner-2 .pricing-switcher-2 {
  background-color: var(--brand);
  border-radius: 23px;
  border: none;
  display: inline-flex;
  padding: 4px;
  position: relative;
  z-index: 1;
}
.pricing-banner-2 .pricing-switcher-2 .switcher-bg {
  content: "";
  width: 50%;
  height: auto;
  background: #fff;
  position: absolute;
  display: inline-block;
  left: 3px;
  top: 3px;
  bottom: 3px;
  border-radius: 23px;
  z-index: -1;
  transition: all 0.4s ease-out;
}
.pricing-banner-2 .pricing-switcher-2 .switcher-bg.right {
  left: 48%;
}
.pricing-banner-2 .pricing-switcher-2 .nav-link {
  border-radius: 23px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  border: none;
  color: #fff;
  padding: 6px 23px;
}
.pricing-banner-2 .pricing-switcher-2 .nav-link.active {
  background-color: transparent;
  color: var(--black);
}
.pricing-banner-2 .tab-pane {
  padding-top: 20px;
}

.old-price,
.current-price,
.price-format,
.subscribe-btn,
.price-note {
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.old-price {
  font-size: 22px;
  line-height: 36px;
  text-decoration: line-through;
}

.current-price {
  font-weight: 700;
  font-size: 28px;
  line-height: 44px;
  display: inline-block;
  vertical-align: middle;
}

.saving-price {
  background-color: #fff;
  border-radius: 1px;
  color: var(--black);
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  padding: 6px 8px;
}

.price-format {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 25px;
}

.subscribe-btn {
  border-radius: 2px;
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  background-color: var(--brand);
  padding: 12px 24px;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.subscribe-btn:hover {
  background-color: var(--black);
  color: var(--brand);
}

.price-note {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 22px;
  width: 60%;
}

.pricing-compare-table-area {
  background-color: #252c53;
  padding: 125px 0 140px;
}
.pricing-compare-table-area .section-title {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  width: 55%;
  margin: 0 auto 80px;
}

.pricing-compare-table .sub-padding {
  padding: 20px 25px 15px;
}
.pricing-compare-table .table-title-bg {
  background: #252c53;
}
.pricing-compare-table .table-bg {
  background: #2c3563;
}
.pricing-compare-table .table-bg2 {
  background: #202647;
}
.pricing-compare-table .red-top {
  border-top: 1px solid var(--brand);
}
.pricing-compare-table .red-bottom {
  border-bottom: 1px solid var(--brand);
}
.pricing-compare-table .gray-bottom {
  border-bottom: 1px solid #c6c6c6;
}
.pricing-compare-table .plan-title {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 30px;
}
.pricing-compare-table .nav-tabs {
  border-bottom: none;
  justify-content: center;
}
.pricing-compare-table .nav .nav-link {
  border: 1px solid #c6c6c6;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  padding: 4px 5px;
  margin: 0 5px;
}
.pricing-compare-table .nav .nav-link.active {
  color: var(--black);
}
.pricing-compare-table .tab-pane {
  padding-top: 8px;
}
.pricing-compare-table .old-price {
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: #c6c6c6;
}
.pricing-compare-table .current-price {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0;
}
.pricing-compare-table .current-price span {
  font-size: 18px;
}
.pricing-compare-table .price-format {
  margin-bottom: 10px;
}
.pricing-compare-table .saving-price {
  margin-bottom: 15px;
}
.pricing-compare-table .subscribe-btn {
  background-color: #fff;
  color: var(--black);
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding: 5px 24px;
  margin-bottom: 20px;
}
.pricing-compare-table .subscribe-btn:hover {
  background-color: var(--brand);
  color: #fff;
}
.pricing-compare-table .price-note {
  color: #c6c6c6;
  width: 100%;
}
.pricing-compare-table .feature-title {
  width: 45%;
  padding: 25px 0;
  box-shadow: -10px 5px 30px 0px #191e38;
}
.pricing-compare-table .feature {
  width: 25%;
  text-align: center;
}
.pricing-compare-table .feature-text p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 0 32px;
}
.pricing-compare-table .feature-text i {
  color: #fff;
  font-size: 27px;
}
.pricing-compare-table .feature-btn {
  color: #fff;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  padding-left: 60px;
  position: relative;
}
.pricing-compare-table .feature-btn:before {
  content: "L";
  font-family: "ElegantIcons";
  font-weight: 400;
  position: absolute;
  left: 15px;
}
.pricing-compare-table .feature-btn:not(.collapsed):before {
  content: "K";
}
.pricing-compare-table .feature-body p {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 65px 0 60px;
}
.pricing-compare-table .feature-row .feature-type {
  text-align: center;
}
.pricing-compare-table .feature-row .feature-type .section-text {
  color: var(--brand);
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  transform: rotate(180deg);
  writing-mode: tb-rl;
}
.pricing-compare-table.mobile .feature-title {
  width: 100%;
  padding: 5px 0;
  box-shadow: none;
  text-align: left;
}
.pricing-compare-table.mobile .sub-padding {
  padding: 20px 25px 15px;
}
.pricing-compare-table.mobile .product-plan {
  margin-bottom: 30px;
}
.pricing-compare-table.mobile .feature-body p {
  padding: 12px 0 0 20px;
}
.pricing-compare-table.mobile .feature-btn {
  padding-left: 20px;
}
.pricing-compare-table.mobile .feature-btn:before {
  left: 0;
}

/*================================================
Service CSS
=================================================*/
.service-area.section-padding {
  padding-top: 0rem;
  padding-bottom: 4.0625rem;
}
@media screen and (min-width: 992px) {
  .service-area.section-padding {
    padding-top: 3.75rem;
    padding-bottom: 8.4375rem;
  }
}
.service-area .section-title-center {
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 992px) {
  .service-area .section-title-center {
    padding-bottom: 2.8125rem;
  }
}

.service-item {
  text-align: center;
  margin-top: 1.875rem;
}
.service-item img {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 576px) {
  .service-item {
    text-align: left;
  }
  .service-item img {
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .service-item {
    padding-right: 1.875rem;
  }
}
.service-item .service-icon {
  margin-bottom: 1.25rem;
}
.service-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.service-item p {
  line-height: 1.6875rem;
}

/*================================================
Team CSS
=================================================*/
.team-area {
  padding: 65px 0 70px;
}
@media screen and (min-width: 992px) {
  .team-area {
    padding: 135px 0 140px;
  }
}

.team-item {
  max-width: 15.9375rem;
  border-radius: 1.875rem;
  background: #fff;
  padding: 2.1875rem;
  margin-left: auto;
  margin-right: auto;
}
.team-item .team-image {
  width: 8.4375rem;
  height: 8.4375rem;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.625rem;
}
.team-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 2.1875rem;
  margin-bottom: 0.625rem;
}
.team-item p {
  color: #a0a1a3;
  line-height: 1.375rem;
}

/*================================================
Testimonial CSS
=================================================*/
.testimonial-area {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media screen and (min-width: 992px) {
  .testimonial-area {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area {
    margin-top: 0;
  }
}
.testimonial-area #fixedWrapper {
  overflow: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
.testimonial-area #scroll-container {
  width: 1900%;
}
@media screen and (min-width: 576px) {
  .testimonial-area #scroll-container {
    width: 1030%;
  }
}
@media screen and (min-width: 768px) {
  .testimonial-area #scroll-container {
    width: 710%;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area #scroll-container {
    width: 485%;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-area #scroll-container {
    width: 382%;
  }
}
.testimonial-area #scroll-container .max-width {
  max-width: 1140px;
  padding-right: 1.875rem;
}

.testimonial-area-five .swiper-button-next,
.testimonial-area-five .swiper-button-prev,
.testimonial-area-seven .swiper-button-next,
.testimonial-area-seven .swiper-button-prev,
.testimonial-area-eight .swiper-button-next,
.testimonial-area-eight .swiper-button-prev {
  width: inherit;
  height: inherit;
  font-size: 20px;
  margin-top: inherit;
}
.testimonial-area-five .swiper-button-next::after,
.testimonial-area-five .swiper-button-prev::after,
.testimonial-area-seven .swiper-button-next::after,
.testimonial-area-seven .swiper-button-prev::after,
.testimonial-area-eight .swiper-button-next::after,
.testimonial-area-eight .swiper-button-prev::after {
  display: none;
}
.testimonial-area-five .swiper-pagination,
.testimonial-area-seven .swiper-pagination,
.testimonial-area-eight .swiper-pagination {
  display: flex;
  align-items: center;
  width: auto;
}

@media screen and (min-width: 992px) {
  .testimonial {
    padding-top: 7.25rem;
  }
}
.testimonial-title {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 992px) {
  .testimonial-title {
    width: 50%;
  }
}
.testimonial-title h2 {
  line-height: 1.2;
  font-weight: 700;
}
.testimonial-wrapper {
  background: #fff;
  border-radius: 1.875rem;
  padding: 3.75rem 2.875rem 4.375rem;
}
.testimonial-content h3 {
  font-weight: 700;
  padding-bottom: 1.25rem;
}
.testimonial-content span {
  font-size: 1.375rem;
  line-height: 2.25rem;
  color: var(--black);
  margin-bottom: 1.25rem;
  display: block;
}
.testimonial-content p {
  font-size: 0.9375rem;
}
.testimonial-review {
  position: relative;
  border-radius: 1.625rem;
  max-width: 32.75rem;
  background: #fce7e9;
  padding: 3.125rem 1.25rem 1.875rem 1.25rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .testimonial-review {
    padding: 3.125rem 1.25rem 1.875rem 2.875rem;
  }
}
.testimonial-review i {
  font-size: 2rem;
  color: var(--brand);
  top: -0.9375rem;
  left: 2.8125rem;
  position: absolute;
}
.testimonial-review p {
  font-style: italic;
  line-height: 36px;
  color: var(--black);
}
@media screen and (min-width: 768px) {
  .testimonial-review p {
    font-size: 1.375rem;
  }
}
.testimonial-review p span {
  display: initial;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
}
.testimonial-author .testimonial-author-image img {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  margin: auto;
  object-fit: cover;
}
.testimonial-author .testimonial-author-name {
  margin-left: 1.25rem;
}
.testimonial-author .testimonial-author-name h4 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
}
.testimonial-author .testimonial-author-name span {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  display: block;
  color: #5d5d66;
  margin-bottom: 0;
}

.testimonial-area-two .testimonial-review {
  max-width: 52.375rem;
  border-radius: 1.375rem;
  border: 0.375rem solid #fff;
  padding: 3.75rem 1.25rem 2.625rem;
  background: #fff;
  margin: 16px 15px 0;
  margin-top: 16px;
}
@media screen and (min-width: 576px) {
  .testimonial-area-two .testimonial-review {
    margin: 0;
    margin-top: 16px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area-two .testimonial-review {
    padding: 3.75rem 4.875rem 2.625rem;
  }
}
.testimonial-area-two .testimonial-review i {
  font-size: 3rem;
  color: var(--black);
  top: -1.5rem;
  left: 4.875rem;
  position: absolute;
}
.testimonial-area-two .testimonial-author {
  margin-top: 2.125rem;
}
.testimonial-area-two .swiper-slide-active .testimonial-review {
  background: #fce7e9;
}
.testimonial-area-two .swiper-slide-active .testimonial-review i {
  color: var(--brand);
}

.testimonial-area-three {
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 4.375rem;
}
.testimonial-area-three .testimonial-review {
  max-width: 71.25rem;
  padding-top: 3.125rem;
}

.testimonial-area-four {
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.testimonial-area-four .testimonial-item {
  background: #ffffff;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .testimonial-area-four .testimonial-item {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .testimonial-item {
    box-shadow: 0px 50px 80px rgba(53, 42, 67, 0.1);
    margin: auto;
    margin-bottom: 100px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .testimonial-item {
    width: 960px;
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-area-four .testimonial-item {
    width: 1140px;
  }
}
.testimonial-area-four .testimonial-item .testimonial-image {
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .testimonial-area-four .testimonial-item .testimonial-image {
    width: 310px;
    height: auto;
    flex: 0 0 auto;
    padding-left: 1.25rem;
  }
}
.testimonial-area-four .testimonial-item .testimonial-image img {
  width: 8.125rem;
  height: 8.125rem;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .testimonial-area-four .testimonial-item .testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}
.testimonial-area-four .testimonial-item .testimonial-right-content {
  padding: 40px 30px;
}
@media screen and (min-width: 1200px) {
  .testimonial-area-four .testimonial-item .testimonial-right-content {
    padding: 4.0625rem 6.375rem 4.0625rem 4.0625rem;
  }
}
.testimonial-area-four .testimonial-item .testimonial-right-content h3 {
  font-weight: 700;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.1875rem;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info .testimonial-author-name h4 {
  color: #45454d;
  font-size: 1.0625rem;
  line-height: 1;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info .testimonial-author-name span {
  font-size: 14px;
  color: #6c6c73;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info .testimonial-author-review .client-review-icon {
  display: flex;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info .testimonial-author-review .client-review-icon li {
  color: #efba34;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-meta-info .testimonial-author-review .client-review-icon li + li {
  margin-left: 0.3125rem;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-content {
  position: relative;
  padding-top: 1.5625rem;
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-content p {
  color: #5d5d66;
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-content p {
    font-size: 22px;
  }
}
.testimonial-area-four .testimonial-item .testimonial-right-content .testimonial-content .testimonial-quote {
  right: 0;
  bottom: -30px;
  position: absolute;
  font-size: 55px;
  color: rgba(var(--black), 0.05);
}
.testimonial-area-four .swiper-button-next,
.testimonial-area-four .swiper-button-prev {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(23, 23, 23, 0.1);
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .swiper-button-next,
.testimonial-area-four .swiper-button-prev {
    top: calc(50% - 25px);
  }
}
.testimonial-area-four .swiper-button-next::after,
.testimonial-area-four .swiper-button-prev::after {
  display: inline-block;
}
.testimonial-area-four .swiper-button-next:hover,
.testimonial-area-four .swiper-button-prev:hover {
  box-shadow: 0px 5px 12px rgba(23, 23, 23, 0.1);
}
.testimonial-area-four .swiper-button-prev,
.testimonial-area-four .swiper-container-rtl .swiper-button-next {
  left: 0;
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .swiper-button-prev,
.testimonial-area-four .swiper-container-rtl .swiper-button-next {
    left: calc((100vw - 1040px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-area-four .swiper-button-prev,
.testimonial-area-four .swiper-container-rtl .swiper-button-next {
    left: calc((100vw - 1220px) / 2);
  }
}
.testimonial-area-four .swiper-button-next,
.testimonial-area-four .swiper-container-rtl .swiper-button-prev {
  right: 0;
}
@media screen and (min-width: 992px) {
  .testimonial-area-four .swiper-button-next,
.testimonial-area-four .swiper-container-rtl .swiper-button-prev {
    right: calc((100vw - 1040px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-area-four .swiper-button-next,
.testimonial-area-four .swiper-container-rtl .swiper-button-prev {
    right: calc((100vw - 1220px) / 2);
  }
}
.testimonial-area-four .swiper-button-prev::after {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.testimonial-area-four .swiper-button-next::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.testimonial-area-four .swiper-button-next::after,
.testimonial-area-four .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
  color: #5d5d66;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.testimonial-area-four .swiper-button-next:hover::after,
.testimonial-area-four .swiper-button-prev:hover::after {
  color: var(--brand);
}

.testimonial-area-five {
  overflow: hidden;
  background-image: url("../images/home_2/testimonial-bg.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.testimonial-area-five .shape {
  position: absolute;
  z-index: -1;
}
.testimonial-area-five .shape:nth-child(1) {
  left: 0;
  top: 10%;
}
.testimonial-area-five .shape:nth-child(2) {
  right: 40%;
  bottom: 5%;
}
.testimonial-area-five .section-title-left h2 {
  margin-bottom: 0;
}
.testimonial-area-five .swiper-button-next,
.testimonial-area-five .swiper-button-prev,
.testimonial-area-five .swiper-pagination {
  position: inherit;
}
.testimonial-area-five .slider-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.testimonial-area-five .swiper-button-next,
.testimonial-area-five .swiper-button-prev {
  color: #bdbdbd;
  transition: all 0.3s ease-out;
  margin-top: 0;
}
.testimonial-area-five .swiper-button-next:hover,
.testimonial-area-five .swiper-button-prev:hover {
  color: #292b2c;
}
.testimonial-area-five .swiper-pagination-fraction {
  margin: 0 13px;
}
.testimonial-area-five .swiper-pagination-fraction span {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  color: #8d8d8d;
  margin: 0 2px;
}
.testimonial-area-five .swiper-pagination-fraction .swiper-pagination-current {
  color: var(--black);
}
.testimonial-area-five .slider-container .testimonial-slider-five {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .testimonial-area-five .slider-container .testimonial-slider-five {
    width: calc(100% + (100vw - 540px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .testimonial-area-five .slider-container .testimonial-slider-five {
    width: calc(100% + (100vw - 720px) / 2);
  }
}
@media screen and (min-width: 992px) {
  .testimonial-area-five .slider-container .testimonial-slider-five {
    width: calc(100% + (100vw - 960px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .testimonial-area-five .slider-container .testimonial-slider-five {
    width: calc(100% + (100vw - 1170px) / 2);
  }
}

.testimonial-slider-five .swiper-slide {
  opacity: 0.5;
  transition: all 0.3s ease-out;
}
.testimonial-slider-five .swiper-slide.swiper-slide-active {
  opacity: 100%;
}
.testimonial-slider-five .single-testimonial {
  display: flex;
  align-items: center;
}
.testimonial-slider-five .single-testimonial img {
  border-radius: 6px;
  margin-right: 50px;
}
.testimonial-slider-five .single-testimonial p {
  color: var(--black);
  font-size: 22px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 35px;
}
.testimonial-slider-five .single-testimonial .author-info h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 5px;
}
.testimonial-slider-five .single-testimonial .author-info span {
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 0;
}

.testimonial-area-six {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-area-six .shape {
  position: absolute;
  left: -70px;
  bottom: -100px;
  z-index: -1;
}
.testimonial-area-six .slick-arrow {
  position: absolute;
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  opacity: 50%;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  z-index: 1;
  top: inherit;
  left: inherit;
  bottom: 70px;
  right: 53px;
  transition: all 0.3s ease-out;
}
.testimonial-area-six .slick-arrow:before {
  display: none;
}
.testimonial-area-six .slick-arrow:hover {
  opacity: 1;
}
.testimonial-area-six .slick-arrow.slick-prev {
  right: 108px;
}
.testimonial-area-six .single-slide {
  padding: 0 53px 60px 60px;
  background-color: #353d80;
  border-radius: 30px;
  margin-top: 162px;
}
.testimonial-area-six .single-slide .author-img {
  display: inline-block;
  position: relative;
  margin-top: -130px;
}
.testimonial-area-six .single-slide .author-img::before {
  position: absolute;
  content: "{";
  font-family: "ElegantIcons";
  line-height: 56px;
  height: 60px;
  width: 60px;
  background-color: #353d80;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 26px;
  transform: translate(-50%, -50%) rotate(180deg);
  top: 0;
  left: 0;
}
.testimonial-area-six .single-slide .main-img {
  border-radius: 30px;
  max-height: 551px;
}
.testimonial-area-six .single-slide p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin-top: 75px;
}
.testimonial-area-six .single-slide .author-info {
  margin-top: 60px;
}
.testimonial-area-six .single-slide .author-info span {
  display: block;
  line-height: 20px;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}
.testimonial-area-six .single-slide .author-info .name {
  font-weight: 700;
  color: #fff;
}
.testimonial-area-six .single-slide .author-info .pos {
  font-size: 14px;
  color: #ebebeb;
}

/*================================================
Why-choose CSS
=================================================*/
.why-choose.section-padding {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
@media screen and (min-width: 768px) {
  .why-choose.section-padding {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.why-choose-wrapper {
  background: #f9f9f9;
  border-radius: 1.6875rem;
  padding: 2.5rem 1.25rem 4.0625rem;
}
@media screen and (min-width: 992px) {
  .why-choose-wrapper {
    padding: 4.375rem 5rem;
  }
}
.why-choose-icon {
  margin-bottom: 1.875rem;
}
.why-choose-item {
  padding-top: 1.875rem;
}
@media screen and (min-width: 992px) {
  .why-choose-item {
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .why-choose-item {
    padding-right: 3.125rem;
  }
}
.why-choose-item h4 {
  font-weight: 600;
  margin-bottom: 0.9375rem;
}

/*----------------------------------------*/
/*   Statistics widget CSS
/*----------------------------------------*/
.statistics-area {
  background: rgba(134, 205, 193, 0.2);
}

.floated-widget {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.15);
  padding: 40px 50px;
  position: absolute;
  top: -70px;
  left: 15px;
  right: 15px;
  z-index: 3;
}

.statistics-widget-1 {
  display: inline-block;
  min-width: 117px;
}
.statistics-widget-1 img {
  max-width: 100%;
}
.statistics-widget-1 p {
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0 6px 0;
  text-transform: capitalize;
}
.statistics-widget-1 .counter {
  font-size: 36px;
  font-weight: 700;
}

.statistics-widget-2 {
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}
.statistics-widget-2 .statistics-slider {
  height: 100%;
  position: relative;
}
.statistics-widget-2 .statistics-slider .slick-list {
  height: 100%;
}
.statistics-widget-2 .statistics-slider .slick-list .slick-track {
  height: 100%;
}
.statistics-widget-2 .statistics-slider .slick-list .slick-track .slick-slide {
  height: 100%;
}
.statistics-widget-2 .statistics-slider .slick-dots {
  bottom: 15px;
}
.statistics-widget-2 .statistics-slider .slick-dots li button {
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.2);
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: none;
}
.statistics-widget-2 .statistics-slider .slick-dots li.slick-active button {
  background-color: #fff;
}
.statistics-widget-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.statistics-widget-2 .widget-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 35px 25px;
}
.statistics-widget-2 .widget-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  z-index: -1;
}
.statistics-widget-2 .widget-content h1 {
  font-size: 68px;
  color: #fff;
  font-weight: 700;
  line-height: 82px;
}
.statistics-widget-2 .widget-content h2 {
  font-size: 38px;
  line-height: 44px;
  color: #fff;
  font-weight: 700;
}
.statistics-widget-2 .widget-content p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-top: 5px;
  line-height: 24px;
}
.statistics-widget-2 .widget-content.widget-1 {
  background-color: #610fc9;
}
.statistics-widget-2 .widget-content.widget-2 {
  background-color: #0050B2;
}
.statistics-widget-2 .widget-content.widget-3 {
  background-color: #704dff;
}
.statistics-widget-2 .widget-content.widget-4 {
  background-color: #f23d68;
}
.statistics-widget-2 .widget-content.widget-5 {
  background-color: #af3ce5;
}
.statistics-widget-2 .widget-content.widget-6::before {
  background-color: rgba(116, 57, 191, 0.75);
}
.statistics-widget-2 .widget-content.widget-7::before {
  background-color: rgba(89, 18, 178, 0.75);
}
.statistics-widget-2 .widget-content.widget-8::before {
  background-color: rgba(0, 63, 139, 0.75);
}

.software-menu .right-nav .btn {
  border: none;
  color: #fff;
}
.software-menu .right-nav .btn:hover {
  color: var(--brand);
}

.outstanding-feature-area {
  text-align: center;
}
.outstanding-feature-area img {
  margin: auto;
}
.outstanding-feature-area h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-top: 30px;
  margin-bottom: 15px;
}
.outstanding-feature-area p {
  color: var(--text-color-2);
  max-width: 63%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .outstanding-feature-area p {
    max-width: 75%;
  }
}
@media screen and (min-width: 992px) {
  .outstanding-feature-area p {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .outstanding-feature-area p {
    max-width: 90%;
  }
}

.choose-plan-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.choose-plan-area .bg-shapes .shape {
  position: absolute;
  z-index: -1;
}
.choose-plan-area .bg-shapes .shape:nth-child(1) {
  border: 2px solid #37bd8a;
  border-radius: 5px;
  transform: rotate(45deg);
  width: 20px;
  height: 20px;
  opacity: 0.4;
  top: 30%;
  left: 20%;
}
.choose-plan-area .bg-shapes .shape:nth-child(2) {
  bottom: 10%;
  right: 0;
}
.choose-plan-area .bg-shapes .shape:nth-child(3) {
  top: 143px;
  left: 165px;
}
.choose-plan-area .bg-shapes .shape:nth-child(4) {
  top: 10%;
  left: 0;
}
.choose-plan-area .bg-shapes .shape:nth-child(5) {
  height: 26px;
  width: 26px;
  background-color: #515DC3;
  opacity: 0.4;
  bottom: 30%;
  left: 10%;
  border-radius: 50%;
  animation: zoomIn 5s linear infinite both alternate-reverse;
}
.choose-plan-area .bg-shapes .shape:nth-child(6) {
  animation: zoomIn 5s linear infinite both alternate-reverse;
  height: 20px;
  width: 20px;
  background-color: #515DC3;
  opacity: 0.4;
  border-radius: 50%;
  top: 20%;
  right: 30%;
}
.choose-plan-area .section-title-center p {
  color: #4f4f4f;
  font-size: 20px;
  line-height: 32px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .choose-plan-area .section-title-center p {
    width: 50%;
  }
}

.bg-linen {
  background-color: #faefe7;
}

.footer-software .footer-menu h4 {
  color: var(--black);
}
.footer-software .footer-menu p {
  color: var(--text-color-2);
  width: 100%;
}
@media screen and (min-width: 992px) {
  .footer-software .footer-menu p {
    width: 90%;
  }
}
.footer-software .footer-menu ul li a {
  color: var(--text-color-2);
}
.footer-software .footer-menu ul li a:hover {
  color: var(--brand);
}
.footer-software ul.social-link-bg-2 li a {
  border-color: var(--black);
  color: var(--black);
}
.footer-software ul.social-link-bg-2 li a:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.footer-software .footer-bottom-menu ul li a {
  color: #8D8D8D;
}
.footer-software .footer-bottom-menu ul li a:hover {
  color: var(--brand);
}
.footer-software .footer-bottom {
  border-top: 1px solid rgba(23, 23, 23, 0.1);
}
.footer-software .footer-bottom .copyright {
  color: #8D8D8D;
}

.components-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.components-area .section-title-center p {
  color: #4F4F4F;
  font-size: 20px;
  line-height: 1.6;
  padding-top: 18px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .components-area .section-title-center p {
    width: 80%;
  }
}

.single-component-widget {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  padding: 45px 25px;
  text-align: center;
  transition: all 0.3s ease-out;
}
.single-component-widget:hover {
  box-shadow: 0px 50px 80px 0px #352a431a;
}
.single-component-widget .icon {
  background-color: rgba(81, 93, 195, 0.1);
  width: 85px;
  height: 85px;
  border-radius: 5px;
  display: flex;
  margin: auto;
  margin-bottom: 40px;
}
.single-component-widget .icon img {
  margin: auto;
}
.single-component-widget h4 {
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.5px;
  color: #515151;
}
.single-component-widget p {
  color: var(--text-color-2);
  margin-top: 20px;
}

.deal-fast-area {
  background-color: #E6F5FA;
  overflow: hidden;
}
.deal-fast-area .section-title-center {
  padding-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .deal-fast-area .section-title-center {
    padding-bottom: 40px;
  }
}
.deal-fast-area .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .deal-fast-area .section-title-center p {
    width: 65%;
  }
}
.deal-fast-area .info-card {
  border: none;
}
.deal-fast-area .info-card .nav-link {
  padding: 30px 20px 22px 20px;
  display: flex;
  border-radius: 5px;
  transition: all 0.3s ease-out;
  position: relative;
  border: none;
}
.deal-fast-area .info-card .nav-link:hover {
  border: none;
}
.deal-fast-area .info-card .nav-link.active {
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px #00000014;
}
.deal-fast-area .info-card .nav-link.active .progress-bar {
  display: block;
  visibility: visible;
  transform: scaleX(1);
}
.deal-fast-area .info-card .nav-link .info-txt {
  text-align: left;
}
.deal-fast-area .info-card .nav-link .icon {
  margin-right: 15px;
}
.deal-fast-area .info-card .nav-link h6 {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 17px;
  color: var(--black);
}
.deal-fast-area .info-card .nav-link p {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-color-2);
  margin-top: 10px;
}
.deal-fast-area .info-card .nav-link .progress-bar {
  visibility: hidden;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--brand-3);
  height: 4px;
  box-shadow: 0px 20px 50px 0px #00000014;
  transform: scaleX(0);
  transform-origin: left;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: transform 5s linear;
}
.deal-fast-area .tab-pane {
  padding-top: 0;
}
.deal-fast-area .tab-pane.active .main-img img {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.deal-fast-area .tab-pane.active .main-img img:nth-child(1) {
  animation-name: fadeInLeft;
}
.deal-fast-area .tab-pane.active .main-img img:nth-child(2) {
  animation-name: fadeInRight;
  animation-delay: 0.1s;
}
.deal-fast-area .main-img {
  position: relative;
  display: inline-block;
}
.deal-fast-area .main-img img:nth-child(2) {
  position: absolute;
  right: -170px;
  bottom: -27px;
}

.mobile-app-area {
  padding: 150px 0;
}
.mobile-app-area h2 {
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.5px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .mobile-app-area h2 {
    width: 85%;
  }
}
.mobile-app-area .content {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-color-2);
  margin-top: 15px;
  margin-bottom: 60px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .mobile-app-area .content {
    width: 65%;
  }
}
@media screen and (min-width: 992px) {
  .mobile-app-area .content {
    width: 75%;
  }
}
.mobile-app-area .app-store-link {
  color: #fff;
  background-color: #473d8d;
  padding: 8px 8px;
}
.mobile-app-area .app-store-link p {
  color: #fff;
  line-height: 1;
}
.mobile-app-area .app-store-link:hover {
  border-color: #473d8d;
  background-color: #fff;
  color: #473d8d;
}
.mobile-app-area .app-store-link:hover p {
  color: #473d8d;
}

.app-itegretion-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 0 180px;
}
.app-itegretion-area h2 {
  font-weight: 700;
  line-height: 1.24;
}
.app-itegretion-area p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-color-2);
  margin: 20px 0 30px;
}
.app-itegretion-area .supported li {
  display: inline-block;
  color: var(--text-color-2);
  margin-right: 35px;
}
.app-itegretion-area .supported li:last-child {
  margin-right: 0;
}
.app-itegretion-area .supported li i {
  font-size: 13px;
  color: #52b4a4;
  margin-right: 5px;
}
.app-itegretion-area .btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
  padding: 21px 1.5rem;
  margin-top: 60px;
  background-color: var(--brand-3);
  border-color: var(--brand-3);
  color: #fff;
}
.app-itegretion-area .btn:hover {
  color: var(--brand-3);
  background-color: transparent;
}

.integreted-app {
  border-radius: 50%;
  border: 2px dashed rgba(198, 198, 198, 0.32);
  position: relative;
  width: 396px;
  height: 396px;
  transition: all 0.3s linear;
}
.integreted-app .app {
  height: 86px;
  width: 86px;
  box-shadow: 0px 20px 50px 0px #00000014, 0px 20px 50px 0px #0000000d;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  display: flex;
  transition: all 0.3s ease-out;
}
.integreted-app .app img {
  margin: auto;
}
.integreted-app .app:nth-child(1) {
  top: 20%;
  right: 20%;
  transform: translateX(75%) translateY(-75%);
}
.integreted-app .app:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
}
.integreted-app .app:nth-child(3) {
  bottom: 20%;
  right: 20%;
  transform: translateX(75%) translateY(75%);
}
.integreted-app .app:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
.integreted-app .app:nth-child(5) {
  bottom: 20%;
  left: 20%;
  transform: translateX(-75%) translateY(75%);
}
.integreted-app .app:nth-child(6) {
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
.integreted-app .app:nth-child(7) {
  top: 20%;
  left: 20%;
  transform: translateX(-75%) translateY(-75%);
}
.integreted-app .app:nth-child(8) {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.integreted-app .app.main {
  height: 110px;
  width: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bg-burst {
  background-color: #252C53;
}

@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar_fixed.menu_three {
  background-color: #fff;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

.menu_three {
  background: transparent;
  transition: all 0.2s linear;
}
.menu_three .right-nav .btn-red {
  color: #fff;
  border: none;
}
.menu_three .right-nav .btn-red:hover {
  color: var(--brand);
}

.banner-area-4 {
  overflow: hidden;
  padding-top: 250px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .banner-area-4 {
    padding-top: 150px;
  }
}
.banner-area-4 .banner-shapes .shape {
  position: absolute;
  z-index: -1;
}
.banner-area-4 .banner-shapes .shape:nth-child(1) {
  top: 26%;
  left: 15%;
}
.banner-area-4 .banner-shapes .shape:nth-child(2) {
  bottom: 26%;
  left: 0;
}
.banner-area-4 .banner-shapes .shape:nth-child(3) {
  bottom: 42%;
  left: 50%;
}
.banner-area-4 .banner-shapes .shape:nth-child(4) {
  top: 28%;
  right: 13%;
}
.banner-area-4 .banner-shapes .shape:nth-child(5) {
  top: 15%;
  right: 0;
}
.banner-area-4 .banner-left .banner-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .banner-area-4 .banner-left .banner-title {
    font-size: 48px;
  }
}
.banner-area-4 .banner-left .banner-para {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-color-2);
  width: 100%;
}
@media screen and (min-width: 992px) {
  .banner-area-4 .banner-left .banner-para {
    width: 90%;
  }
}
.banner-area-4 .banner-left .form-group {
  max-width: 443px;
  margin-top: 50px;
}
.banner-area-4 .banner-left .form-group input {
  padding: 14px 15px;
}
.banner-area-4 .banner-left .form-group .btn {
  padding: 0 0px;
  top: 6px;
  right: 7px;
  height: 48px;
  width: 130px;
  border: none;
}
@media screen and (min-width: 425px) {
  .banner-area-4 .banner-left .form-group .btn {
    position: absolute;
    margin-top: 0;
  }
}
.banner-area-4 .banner-left .sub-content {
  color: var(--text-color-2);
  padding-top: 0.9375rem;
}
.banner-area-4 .banner-right {
  position: relative;
  height: 550px;
}
@media screen and (max-width: 767px) {
  .banner-area-4 .banner-right {
    left: -50px;
  }
}
.banner-area-4 .banner-right img {
  position: absolute;
}
.banner-area-4 .banner-right .banner-img-1 {
  right: 60px;
}
.banner-area-4 .banner-right .banner-img-2 {
  left: 177px;
}
.banner-area-4 .banner-right .banner-img-3 {
  left: 130px;
  top: 90px;
}
.banner-area-4 .banner-right .banner-img-4 {
  left: 48px;
}
.banner-area-4 .banner-right .banner-img-5 {
  left: 48px;
  top: 60px;
}
.banner-area-4 .banner-right .banner-img-6 {
  left: 115px;
  top: -35px;
}
.banner-area-4 .banner-right .banner-img-7 {
  right: 30px;
  z-index: -1;
  top: -45px;
}
.banner-area-4 .banner-right .banner-img-8 {
  right: -50px;
  z-index: -1;
}
.banner-area-4 .banner-right .banner-img-9 {
  bottom: 155px;
  right: -50px;
}
.banner-area-4 .banner-right .banner-img-10 {
  right: -10px;
  bottom: 125px;
  z-index: -1;
}
.banner-area-4 .banner-right .banner-img-11 {
  z-index: -2;
  bottom: 85px;
  right: -50px;
}
.banner-area-4 .client-meta {
  margin-top: 10px;
}
.banner-area-4 .customer-more {
  color: #2a4e96;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 10px;
  display: inline-block;
}
.banner-area-4 .customer-more:hover i {
  transform: translateX(5px);
}
.banner-area-4 .customer-more i {
  margin-left: 8px;
  font-size: 15px;
  transition: all 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
}

.testimonial-area-seven {
  background-color: #FAF7F0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonial-area-seven .section-title-center {
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .testimonial-area-seven .section-title-center {
    padding-bottom: 80px;
  }
}
.testimonial-area-seven .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .testimonial-area-seven .section-title-center p {
    width: 75%;
  }
}
.testimonial-area-seven .shape {
  position: absolute;
  z-index: -1;
}
.testimonial-area-seven .shape:nth-child(1) {
  top: 15%;
  left: 0;
}
.testimonial-area-seven .shape:nth-child(2) {
  right: 15%;
  bottom: 0;
}
.testimonial-area-seven .customer-video {
  position: relative;
}
.testimonial-area-seven .customer-video .customer-img {
  filter: brightness(0.7);
  border-top-right-radius: 50px;
}
.testimonial-area-seven .customer-video .play-btn {
  width: 75px;
  height: 75px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.6;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  line-height: 75px;
  color: var(--brand);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-area-seven .customer-video .play-btn i::after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-animation: pulse 2s infinite;
  -webkit-transform: scale(8);
  -ms-transform: scale(8);
  transform: scale(8);
  animation: pulse 2s infinite;
}
.testimonial-area-seven .testimonial-reviews {
  background: transparent;
  padding: 0;
  margin: 0;
  margin-top: 20px;
  padding-left: 50px;
  width: 100%;
}
.testimonial-area-seven .testimonial-reviews .testimonial-text {
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.8;
  margin-bottom: 25px;
  position: relative;
}
.testimonial-area-seven .testimonial-reviews .testimonial-text i {
  position: absolute;
  font-size: 5px;
}
.testimonial-area-seven .testimonial-reviews .testimonial-text i.testimonial-icon1 {
  top: 9px;
  left: -3px;
}
.testimonial-area-seven .testimonial-reviews .testimonial-text i.testimonial-icon2 {
  bottom: 20px;
}
.testimonial-area-seven .testimonial-reviews .author-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.testimonial-area-seven .testimonial-reviews .testimonial-author {
  color: var(--text-color-2);
  display: block;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.testimonial-area-seven .testimonial-reviews .testimonial-author span {
  color: var(--black);
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.testimonial-area-seven .testimonial-reviews .check-more {
  color: #2a4e96;
  font-size: 15px;
  font-weight: 500;
}
.testimonial-area-seven .slider-navigation {
  padding-top: 80px;
  display: flex;
  padding-left: 50px;
}
.testimonial-area-seven .slider-navigation .swiper-button-next,
.testimonial-area-seven .slider-navigation .swiper-button-prev {
  position: initial;
  margin: 0 7.5px;
  color: #c6c6c6;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease-out;
}
.testimonial-area-seven .slider-navigation .swiper-button-next:hover,
.testimonial-area-seven .slider-navigation .swiper-button-prev:hover {
  color: #2a4e96;
}

.features-area-9 {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.features-area-9 .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
.features-area-9 .shape {
  position: absolute;
  z-index: -1;
}
.features-area-9 .shape:nth-child(1) {
  left: 0;
  top: 15%;
}
.features-area-9 .shape:nth-child(2) {
  right: 0;
  bottom: 0;
}
.features-area-9 .shape:nth-child(3) {
  right: 0;
  top: 0;
}
.features-area-9 .features-item {
  transition: all 0.3s linear;
  padding: 40px 15px;
  margin-bottom: 35px;
}
.features-area-9 .features-item .features-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.features-area-9 .features-item .features-text {
  color: #4F4F4F;
}
.features-area-9 .features-item:hover {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
}

.app-integration-area-two {
  background-color: #FAF7F0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.app-integration-area-two .shape {
  position: absolute;
  z-index: -1;
}
.app-integration-area-two .shape:nth-child(1) {
  left: 0;
  top: 10%;
}
.app-integration-area-two .shape:nth-child(2) {
  right: 0;
  bottom: 15%;
}
.app-integration-area-two .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  color: #4f4f4f;
  padding-top: 15px;
  width: 100%;
}
.app-integration-area-two .apps-area {
  position: relative;
  min-height: 550px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area {
    min-height: 350px;
  }
}
.app-integration-area-two .apps-area .app {
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app {
    width: 35px;
    height: 35px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(1) {
  left: 5%;
  top: 42%;
}
.app-integration-area-two .apps-area .app:nth-child(1)::after {
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(1) {
    left: 25%;
    top: 30%;
  }
  .app-integration-area-two .apps-area .app:nth-child(1)::after {
    width: 70px;
    height: 70px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(2) {
  left: 13%;
  top: 15%;
}
.app-integration-area-two .apps-area .app:nth-child(2)::after {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(2) {
    left: 35%;
    top: 85%;
  }
  .app-integration-area-two .apps-area .app:nth-child(2)::after {
    width: 65px;
    height: 65px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(3) {
  left: 20%;
  top: 40%;
}
.app-integration-area-two .apps-area .app:nth-child(3)::after {
  width: 135px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(3) {
    left: 35%;
    top: 5%;
  }
  .app-integration-area-two .apps-area .app:nth-child(3)::after {
    width: 120px;
    height: 120px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(4) {
  left: 37%;
  top: 75%;
}
.app-integration-area-two .apps-area .app:nth-child(4)::after {
  width: 135px;
  height: 135px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(4) {
    left: 55%;
    top: 0;
  }
  .app-integration-area-two .apps-area .app:nth-child(4)::after {
    width: 120px;
    height: 120px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(5) {
  left: 39%;
  top: 6%;
}
.app-integration-area-two .apps-area .app:nth-child(5)::after {
  width: 115px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(5) {
    left: 25%;
    top: 60%;
  }
  .app-integration-area-two .apps-area .app:nth-child(5)::after {
    width: 100px;
    height: 100px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(6) {
  right: 26%;
  top: 18%;
}
.app-integration-area-two .apps-area .app:nth-child(6)::after {
  width: 115px;
  height: 115px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(6) {
    right: 20%;
    top: 20%;
  }
  .app-integration-area-two .apps-area .app:nth-child(6)::after {
    width: 100px;
    height: 100px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(7) {
  right: 20%;
  top: 80%;
}
.app-integration-area-two .apps-area .app:nth-child(7)::after {
  width: 125px;
  height: 125px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(7) {
    right: 18%;
    top: 55%;
  }
  .app-integration-area-two .apps-area .app:nth-child(7)::after {
    width: 115px;
    height: 115px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(8) {
  right: 15%;
  top: 0%;
}
.app-integration-area-two .apps-area .app:nth-child(8)::after {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(8) {
    right: 25%;
    top: 90%;
  }
  .app-integration-area-two .apps-area .app:nth-child(8)::after {
    width: 60px;
    height: 60px;
  }
}
.app-integration-area-two .apps-area .app:nth-child(9) {
  right: 7%;
  top: 43%;
}
.app-integration-area-two .apps-area .app:nth-child(9)::after {
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app:nth-child(9) {
    left: 50%;
    top: 100%;
  }
  .app-integration-area-two .apps-area .app:nth-child(9)::after {
    width: 110px;
    height: 110px;
  }
}
.app-integration-area-two .apps-area .app::after {
  background: #fff;
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  z-index: -1;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .app::after {
    width: 150px;
    height: 150px;
  }
}
.app-integration-area-two .apps-area .app.main {
  transform: translate(0%, -50%);
  top: 50%;
  left: 50%;
}
.app-integration-area-two .apps-area .bars {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .app-integration-area-two .apps-area .bars {
    display: none;
  }
}

.features-area-three-hrm {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 125px;
  padding-bottom: 140px;
}
.features-area-three-hrm .shape {
  position: absolute;
  z-index: -1;
}
.features-area-three-hrm .shape:nth-child(1) {
  left: 0;
  top: 10%;
}
.features-area-three-hrm .shape:nth-child(2) {
  right: 0;
  bottom: 10%;
}
.features-area-three-hrm .section-title-center {
  padding-bottom: 25px;
}
.features-area-three-hrm .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  color: #4f4f4f;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .features-area-three-hrm .section-title-center p {
    width: 55%;
  }
}
.features-area-three-hrm .features-tab-content .tab-pane {
  padding-top: 4.375rem;
}
.features-area-three-hrm .nav .nav-link.active {
  color: var(--brand);
}

.mobile-app-area-two {
  background-color: #FAF7F0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mobile-app-area-two .shape {
  position: absolute;
  z-index: -1;
}
.mobile-app-area-two .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.mobile-app-area-two .shape:nth-child(2) {
  right: 10%;
  top: 10%;
}
.mobile-app-area-two .section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.mobile-app-area-two .section-title-para {
  color: #4f4f4f;
  font-size: 20px;
  line-height: 1.6;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .mobile-app-area-two .section-title-para {
    width: 90%;
  }
}
.mobile-app-area-two .app-store-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 18px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 5px;
  padding: 3px 20px;
  transition: 0.3s ease-out;
}
.mobile-app-area-two .app-store-link:hover {
  color: #fff;
  background: var(--black);
}
.mobile-app-area-two .app-store-link i {
  font-size: 35px;
  margin-right: 12px;
  transition: all 0.3s ease-out;
}
.mobile-app-area-two .app-store-link i:hover {
  transform: translateX(-5px);
}
.mobile-app-area-two .app-store-link span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-align: start;
  line-height: 19.2px;
  font-weight: 400;
}

.testimonial-area-eight {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonial-area-eight .shape {
  position: absolute;
  z-index: -1;
}
.testimonial-area-eight .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.testimonial-area-eight .shape:nth-child(2) {
  right: 0;
  top: 0;
}
.testimonial-area-eight .section-title-center {
  padding-bottom: 5.9375rem;
}
.testimonial-area-eight .section-title-center p {
  font-size: 20px;
  line-height: 1.6;
  color: #4f4f4f;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .testimonial-area-eight .section-title-center p {
    width: 90%;
  }
}
.testimonial-area-eight .testimonial-slider-eight.swiper-container {
  overflow: visible;
}
.testimonial-area-eight .testimonial-slider-eight .swiper-slide {
  opacity: 0.2;
  transition: all 0.3s ease-out;
}
.testimonial-area-eight .testimonial-slider-eight .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.testimonial-area-eight .testimonial-slider-eight .testimonial-item {
  display: flex;
  gap: 52px;
}
.testimonial-area-eight .testimonial-slider-eight .img-box {
  position: relative;
  z-index: 1;
  width: 100%;
}
.testimonial-area-eight .testimonial-slider-eight .img-box .img-shape {
  z-index: -1;
  position: absolute;
}
.testimonial-area-eight .testimonial-slider-eight .img-box .img-shape:nth-child(1) {
  width: 195px;
  height: 195px;
  border-radius: 5px;
  background-color: #fb7448;
  opacity: 0.23;
  left: -15px;
  top: -15px;
}
.testimonial-area-eight .testimonial-slider-eight .img-box .img-shape:nth-child(2) {
  bottom: -23px;
  right: -18px;
}
.testimonial-area-eight .testimonial-slider-eight .testimonial-item-img {
  border-radius: 5px;
}
.testimonial-area-eight .testimonial-slider-eight .testimonial-icon {
  background-color: #353d80;
  color: #fff;
  text-align: center;
  transform: rotate(180deg);
  height: 60px;
  width: 60px;
  display: inline-block;
  border-radius: 50%;
  line-height: 60px;
  font-size: 26px;
}
.testimonial-area-eight .testimonial-slider-eight .author-text {
  font-size: 22px;
  line-height: 1.6;
  color: var(--black);
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 35px;
}
.testimonial-area-eight .testimonial-slider-eight .author-info {
  font-size: 15px;
  color: #616161;
}
.testimonial-area-eight .testimonial-slider-eight .author-info .author-name {
  color: var(--black);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 5px;
}
.testimonial-area-eight .testimonial-slider-eight .slider-navigation {
  display: flex;
  justify-content: flex-end;
  bottom: 0;
  position: absolute;
  right: 19%;
}
@media screen and (max-width: 767px) {
  .testimonial-area-eight .testimonial-slider-eight .slider-navigation {
    right: 0;
  }
}
.testimonial-area-eight .testimonial-slider-eight .slider-navigation .swiper-button-next,
.testimonial-area-eight .testimonial-slider-eight .slider-navigation .swiper-button-prev {
  position: initial;
  margin: 0 7.5px;
  color: #c6c6c6;
  border: 1px solid;
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease-out;
}
.testimonial-area-eight .testimonial-slider-eight .slider-navigation .swiper-button-next:hover,
.testimonial-area-eight .testimonial-slider-eight .slider-navigation .swiper-button-prev:hover {
  color: #2a4e96;
}

.choose-plan-area-bg2 {
  background-color: #FAF7F0;
}
.choose-plan-area-bg2 .shape {
  position: absolute;
  z-index: -1;
}
.choose-plan-area-bg2 .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.choose-plan-area-bg2 .shape:nth-child(2) {
  right: 0;
  top: 10%;
}

.faq-area-four {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.faq-area-four .shape {
  position: absolute;
  z-index: -1;
}
.faq-area-four .shape:nth-child(1) {
  left: 0;
  bottom: 25%;
}
.faq-area-four .shape:nth-child(2) {
  right: 0;
  top: 25%;
}
.faq-area-four .section-title-center p {
  color: #4f4f4f;
  font-size: 20px;
  line-height: 1.6;
  padding-top: 15px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .faq-area-four .section-title-center p {
    width: 75%;
  }
}
.faq-area-four .accordion-item {
  border: 1px solid #dfdfdf;
  margin-top: 30px;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}
.faq-area-four .accordion-item .accordion-button {
  border-radius: 5px;
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--black);
  box-shadow: none;
  border: none;
  padding-left: 40px;
}
.faq-area-four .accordion-item .accordion-button::after {
  font-size: 16px;
  color: var(--text-color-2);
  line-height: 22px;
}
.faq-area-four .accordion-item .accordion-body {
  padding-left: 40px;
  max-width: 750px;
  width: 100%;
  padding-top: 0;
}
.faq-area-four .faq-btn-text {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.5px;
}
.faq-area-four .btn-red {
  border: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 32px;
}

.cta-area-five {
  overflow: hidden;
}
.cta-area-five .cta-box {
  background-color: #DCEDF5;
  border-radius: 10px;
  position: relative;
  padding: 145px 80px;
  z-index: 1;
}
.cta-area-five .cta-box .shape {
  position: absolute;
  z-index: -1;
}
.cta-area-five .cta-box .shape:nth-child(1) {
  left: 5%;
  top: 0;
}
.cta-area-five .cta-box .shape:nth-child(2) {
  right: 0;
  top: 0;
}
.cta-area-five .cta-box .shape:nth-child(3) {
  left: 45%;
  bottom: 0;
}
.cta-area-five .section-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}
.cta-area-five .form-group {
  max-width: 480px;
  width: 100%;
}
.cta-area-five .form-group input {
  font-size: 16px;
  color: #8D8D8D;
  border: 2px solid var(--black);
}
.cta-area-five .form-group .btn {
  background: var(--black);
}
.cta-area-five .form-group .btn:hover {
  background-color: var(--brand);
  color: #fff;
}

.footer-hrm {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-hrm .shapes {
  position: absolute;
  z-index: -1;
}
.footer-hrm .shapes:nth-child(1) {
  left: 0;
  bottom: 10%;
}
.footer-hrm .shapes:nth-child(2) {
  right: 0;
  bottom: 0;
}
.footer-hrm .footer-top {
  padding: 140px 0;
}
.footer-hrm .newsletter-text {
  color: #fff;
}
.footer-hrm .newsletter-box p {
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.footer-hrm .newsletter-box p.hrm-email {
  color: var(--black);
}
.footer-hrm .newsletter-box .form-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  display: inline-block;
  transform: translateY(-58%);
  color: #c6c6c6;
}
.footer-hrm .newsletter-box .form-group input {
  padding: 12px;
  border-radius: 2px;
  padding-left: 55px;
  border: 2px;
}
.footer-hrm .newsletter-box .form-group input.hrm-input {
  color: #8D8D8D;
  border-radius: 5px;
  background: transparent;
  border: 2px solid var(--black);
}
.footer-hrm .newsletter-box button {
  width: 100%;
  border: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  padding: 15px;
}
.footer-hrm .newsletter-box .btn-red {
  border-radius: 5px;
}
.footer-hrm .newsletter-box .btn-red:hover {
  color: var(--brand);
}
.footer-hrm .social-link-bg-2 {
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .footer-hrm .social-link-bg-2 {
    justify-content: center !important;
  }
}

.bg-merino {
  background-color: #FAF7F0;
}

.features-area-eleven .section-title-center p,
.features-area-twelve .section-title-center p,
.easy-start-area .section-title-center p,
.blog-area .section-title-center p {
  width: 100%;
}

.btn-indigo {
  background-color: #435bcc;
  color: #fff;
  border: 2px solid transparent;
}
.btn-indigo:hover {
  color: #435bcc;
  background-color: #fff;
}

.navbar_fixed.menu_four {
  background-color: #fff;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}
.navbar_fixed.menu_four .header_logo .white_logo {
  display: none;
}
.navbar_fixed.menu_four .header_logo .main_logo {
  display: block;
}
.navbar_fixed.menu_four .menu > .nav-item > .nav-link {
  color: var(--black);
}
.navbar_fixed.menu_four .menu > .nav-item > .nav-link.active {
  color: #435bcc;
}
.navbar_fixed.menu_four .menu > .nav-item > .nav-link::before {
  background: #435bcc;
}
.navbar_fixed.menu_four .menu > .nav-item:hover > .nav-link::before {
  background: #435bcc;
}
.navbar_fixed.menu_four .right-nav a {
  color: var(--black);
}
.navbar_fixed.menu_four .right-nav .btn {
  color: #fff;
}
.navbar_fixed.menu_four .right-nav .btn:hover {
  color: #435bcc;
  border-color: #435bcc;
}
.navbar_fixed.menu_four .right-nav .nice-select {
  color: var(--black);
}

.menu_four {
  background: transparent;
  transition: all 0.2s linear;
}
.menu_four .header_logo .white_logo {
  display: block;
}
.menu_four .header_logo .main_logo {
  display: none;
}
.menu_four .menu > .nav-item > .nav-link {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  padding: 0;
  position: relative;
}
.menu_four .menu > .nav-item > .nav-link.active {
  color: #fff;
}
.menu_four .menu > .nav-item > .nav-link::before {
  background: #fff;
}
.menu_four .menu > .nav-item:hover > .nav-link::before {
  background: #fff;
}
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link,
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link,
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link {
  color: #435bcc;
}
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i,
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i,
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: #435bcc;
}
.menu_four .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:before {
  background: #435bcc;
}
.menu_four .right-nav a {
  color: #fff;
}
.menu_four .right-nav .btn {
  color: #fff;
}
.menu_four .right-nav .btn:hover {
  color: #435bcc;
}
.menu_four .right-nav .nice-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  height: auto;
  padding: 0;
}
.menu_four .right-nav .nice-select:after {
  display: none;
}
.menu_four .right-nav .nice-select .option {
  color: var(--black);
}

.banner-area-5 {
  overflow: hidden;
  padding-top: 230px;
  padding-bottom: 145px;
  background: linear-gradient(257.05deg, #5485f0 -0.18%, #484ded 95.77%);
  background-position: top;
  position: relative;
  z-index: 2;
}
.banner-area-5 .banner-shapes .shape {
  position: absolute;
  z-index: -1;
  border: 1px solid #c6d0ff;
}
.banner-area-5 .banner-shapes .shape:nth-child(1) {
  top: 180px;
  left: 80px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.banner-area-5 .banner-shapes .shape:nth-child(2) {
  top: 155px;
  left: 345px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transform: matrix(0.88, 0.48, 0.48, -0.88, 0, 0);
}
.banner-area-5 .banner-shapes .shape:nth-child(3) {
  top: 400px;
  left: 207px;
  border: none;
}
.banner-area-5 .banner-shapes .shape:nth-child(4) {
  bottom: 165px;
  left: 40px;
  border-radius: 50%;
  width: 23px;
  height: 23px;
}
.banner-area-5 .banner-shapes .shape:nth-child(5) {
  top: 155px;
  right: 370px;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  z-index: 1;
}
.banner-area-5 .banner-shapes .shape:nth-child(6) {
  right: 40px;
  top: 210px;
  border: none;
  z-index: 1;
}
.banner-area-5 .banner-shapes .shape:nth-child(7) {
  bottom: 360px;
  right: 140px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.banner-area-5 .banner-shapes .shape:nth-child(8) {
  bottom: 115px;
  right: 135px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transform: matrix(0.88, 0.48, 0.48, -0.88, 0, 0);
  z-index: 1;
}
.banner-area-5 .banner-shapes .shape:nth-child(9) {
  bottom: 0;
  left: 0;
  border: none;
}
.banner-area-5 .banner-shapes .shape:nth-child(10) {
  bottom: 0;
  right: 0;
  border: none;
}
.banner-area-5 .banner-shapes .shape:nth-child(11) {
  bottom: 0;
  right: 0;
  border: none;
}
.banner-area-5 .banner-left .banner-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}
.banner-area-5 .banner-left .banner-para {
  font-size: 22px;
  line-height: 1.45;
  color: #fbfbfb;
}
.banner-area-5 .banner-left .form-group {
  width: 100%;
  margin-top: 50px;
}
.banner-area-5 .banner-left .form-group input {
  padding: 12px 20px;
  background: #fef7f7;
  height: 54px;
  color: #8d8d8d;
  border: none;
}
.banner-area-5 .banner-left .form-group .btn {
  position: absolute;
  padding: 0 0px;
  top: 4px;
  right: 4px;
  height: 46px;
  width: 127px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
}
.banner-area-5 .banner-left .form-group .btn:hover {
  border: 2px solid #435bcc;
}
.banner-area-5 .banner-left .sub-content {
  padding-top: 15px;
}
.banner-area-5 .banner-left .sub-content li {
  display: inline-block;
  margin-right: 34px;
  color: #ffffff;
}
.banner-area-5 .banner-left .sub-content li p {
  font-size: 16px;
  line-height: 28px;
}
.banner-area-5 .banner-left .sub-content li p i {
  margin-right: 5px;
}
.banner-area-5 .banner-right {
  position: relative;
  height: 565px;
  margin-left: 100px;
}
.banner-area-5 .banner-right img {
  position: absolute;
}
.banner-area-5 .banner-right .banner-img-1 {
  left: 0;
  bottom: 0;
  z-index: 1;
}
.banner-area-5 .banner-right .banner-img-2 {
  left: 140px;
  top: 125px;
  z-index: -1;
}
.banner-area-5 .banner-right .banner-img-3 {
  left: 340px;
  top: 0px;
  z-index: 1;
}

.features-area-eleven {
  overflow: hidden;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(1) {
  left: 0;
  top: -100px;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(2) {
  left: -90px;
  top: 35px;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(3) {
  left: -24%;
  top: -10%;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(4) {
  left: -53px;
  top: -20px;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(5) {
  right: auto;
  bottom: -10%;
  left: -15%;
}
.features-area-eleven .features-item:nth-child(2) .features-images .shape:nth-child(6) {
  top: 135px;
  right: -50px;
  left: auto;
  z-index: 1;
}
.features-area-eleven .features-item .features-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.features-area-eleven .features-item .features-text {
  line-height: 30px;
  color: #616161;
  margin-bottom: 30px;
}
.features-area-eleven .features-item .features-link {
  line-height: 17px;
  color: #2a4e96;
}
.features-area-eleven .features-item .features-link:hover i {
  margin-left: 10px;
}
.features-area-eleven .features-item .features-link i {
  vertical-align: middle;
  display: inline-block;
  margin-left: 5px;
  transition: all 0.3s ease-out;
}
.features-area-eleven .features-item .features-images {
  position: relative;
  z-index: 2;
}
.features-area-eleven .features-item .features-images .features-img {
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.08);
}
.features-area-eleven .features-item .features-images .shape {
  position: absolute;
  z-index: -1;
}
.features-area-eleven .features-item .features-images .shape:nth-child(1) {
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  right: 0;
  top: -100px;
}
.features-area-eleven .features-item .features-images .shape:nth-child(2) {
  background-color: #e3e3e3;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  right: -90px;
  top: 35px;
}
.features-area-eleven .features-item .features-images .shape:nth-child(3) {
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  width: 428px;
  height: 428px;
  right: -24%;
  top: -10%;
}
.features-area-eleven .features-item .features-images .shape:nth-child(4) {
  right: -53px;
  top: -20px;
}
.features-area-eleven .features-item .features-images .shape:nth-child(5) {
  bottom: -10%;
  right: -15%;
}
.features-area-eleven .features-item .features-images .shape:nth-child(6) {
  top: 150px;
  left: -100px;
  z-index: 1;
}

.features-area-twelve {
  background-color: #edfaf8;
}
.features-area-twelve .features-item {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0px 10px 45px -8px rgba(0, 0, 0, 0.08);
  padding-top: 25px;
  padding-bottom: 35px;
  border-radius: 6px;
  transition: all 0.3s ease-out;
  margin-bottom: 30px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.features-area-twelve .features-item:hover {
  box-shadow: 0px 30px 60px -10px rgba(0, 0, 0, 0.12);
}
.features-area-twelve .features-item .features-icon {
  margin-bottom: 15px;
}
.features-area-twelve .features-item .features-name {
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
}

.easy-start-area .section-title-center {
  padding-bottom: 80px;
}
.easy-start-area .section-title-center p {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .easy-start-area .section-title-center p {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .easy-start-area .section-title-center p {
    width: 65%;
  }
}
.easy-start-area .col-md-6:nth-child(2) .easy-start-item .item-icon-wrap {
  background: #e5ffee;
}
.easy-start-area .col-md-6:nth-child(3) .easy-start-item .item-icon-wrap {
  background: #e6e5ff;
}
.easy-start-area .easy-start-item {
  transition: all 0.3s ease-out;
}
.easy-start-area .easy-start-item .item-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
}
.easy-start-area .easy-start-item .item-content {
  color: var(--text-color-2);
}
.easy-start-area .easy-start-item .item-icon-wrap {
  background: #ffe5e5;
  border-radius: 20px;
  width: 90px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hardware-support-area {
  background-color: #edfaf8;
}
.hardware-support-area .section-title-left h2 {
  margin-bottom: 15px;
}
.hardware-support-area .hardware-text {
  color: var(--text-color-2);
  margin-bottom: 40px;
}
.hardware-support-area .hardware-list li {
  margin-bottom: 25px;
}
.hardware-support-area .hardware-list li p {
  font-weight: 500;
  color: var(--black);
  line-height: 25px;
  display: inline-flex;
}
.hardware-support-area .hardware-list li p .hardware-icon {
  margin-right: 15px;
}
.hardware-support-area .available {
  gap: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 425px;
  background: #fff;
  box-shadow: 0px 10px 45px -8px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}
.hardware-support-area .available .item-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
}
.hardware-support-area .available .app-wrapp ul li {
  display: inline-block;
  margin: 0 25px;
}

.choose-plan-area-three {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.choose-plan-area-three .section-title-center {
  padding-bottom: 45px;
}
.choose-plan-area-three .section-title-center p {
  color: #4f4f4f;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .choose-plan-area-three .section-title-center p {
    width: 55%;
  }
}
.choose-plan-area-three .pricing-switcher {
  padding-bottom: 80px;
}
.choose-plan-area-three .pricing-switcher .nav-link::after {
  background: #435bcc;
}
.choose-plan-area-three .tab-pane {
  padding-top: 0;
}
.choose-plan-area-three .pricing-item {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 5px 16px 0px rgba(32, 32, 32, 0.1);
  padding: 65px 50px 70px;
  margin-top: 0;
  border: none;
  transition: all 0.3s linear;
}
.choose-plan-area-three .pricing-item.active, .choose-plan-area-three .pricing-item:hover {
  box-shadow: 0px 50px 80px 0px rgba(53, 42, 67, 0.1);
  transform: translateY(-20px);
  border: none;
}
.choose-plan-area-three .pricing-item.active h4, .choose-plan-area-three .pricing-item:hover h4 {
  color: #3c73f0;
}
.choose-plan-area-three .pricing-item.active .btn, .choose-plan-area-three .pricing-item:hover .btn {
  color: #fff;
  background-color: #356eef;
}
.choose-plan-area-three .pricing-item h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  transition: all 0.3s linear;
}
.choose-plan-area-three .pricing-item .price {
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
  margin-top: 0;
  color: var(--black);
}
.choose-plan-area-three .pricing-item .price span {
  color: #8d8d8d;
  font-size: 20px;
}
.choose-plan-area-three .pricing-item .list-wrapp {
  margin-bottom: 50px;
}
.choose-plan-area-three .pricing-item .list-wrapp .list-title {
  font-size: 18px;
  line-height: 160%;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.choose-plan-area-three .pricing-item .list-wrapp ul {
  padding-top: 0;
}
.choose-plan-area-three .pricing-item .list-wrapp ul li {
  display: flex;
  font-size: 17px;
  line-height: 1;
  color: var(--text-color-2);
  text-align: left;
  padding: 0;
  margin-bottom: 20px;
}
.choose-plan-area-three .pricing-item .list-wrapp ul li.disable {
  color: rgba(23, 23, 23, 0.5);
}
.choose-plan-area-three .pricing-item .list-wrapp ul li .icon-check {
  color: #45c260;
  margin-right: 10px;
  font-size: 20px;
}
.choose-plan-area-three .pricing-item .list-wrapp ul li .icon-close {
  color: #c1c1c1;
  margin-right: 10px;
  font-size: 20px;
}
.choose-plan-area-three .pricing-item .btn {
  border: 1px solid #356eef;
  border-radius: 26px;
  padding: 10px 0px;
  font-family: "Poppins", sans-serif;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  display: block;
  height: 52px;
  width: 190px;
  margin: 0 auto;
  text-align: center;
  transition: all 0.3s linear;
}
.choose-plan-area-three .pricing-item .btn:hover {
  color: #fff;
  background-color: #356eef;
}

.testimonial-area-nine {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .testimonial-area-nine .custom-container {
    max-width: 1530px;
  }
}
.testimonial-area-nine .blur-shape {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(3px);
  z-index: 1;
}
.testimonial-area-nine .section-title-center {
  padding-bottom: 120px;
  z-index: 999;
}
.testimonial-area-nine .section-title-center h2 {
  font-size: 40px;
  line-height: 1.2;
}
.testimonial-area-nine .swiper-container {
  overflow: visible;
}
.testimonial-area-nine .swiper-pagination {
  justify-content: center;
  bottom: 0;
}
.testimonial-area-nine .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 7.5px;
  background: #c4c4c4;
}
.testimonial-area-nine .swiper-pagination .swiper-pagination-bullet-active {
  background: #252c53;
}
.testimonial-area-nine .testimonial-item {
  transition: transform 0.3s ease-out;
  visibility: hidden;
}
.testimonial-area-nine .testimonial-item.swiper-slide-prev, .testimonial-area-nine .testimonial-item.swiper-slide-next {
  visibility: visible;
  filter: blur(3px);
}
.testimonial-area-nine .testimonial-item.swiper-slide-active {
  transform: translateY(-40px);
  visibility: visible;
  z-index: 999;
}
.testimonial-area-nine .testimonial-item.swiper-slide-active .testimonial-wrapp {
  z-index: 999;
}
.testimonial-area-nine .testimonial-item .testimonial-wrapp {
  background: #fff;
  box-shadow: 0px 50px 80px 0px #352a431a;
  border-radius: 10px;
  text-align: center;
  padding: 30px 50px;
}
.testimonial-area-nine .testimonial-item .testimonial-wrapp .author-text {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-color-2);
  margin-bottom: 30px;
}
.testimonial-area-nine .testimonial-item .testimonial-wrapp .author-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.testimonial-area-nine .testimonial-item .testimonial-wrapp .author-info .author-name {
  font-weight: 600;
  color: var(--black);
  line-height: 1.53;
  text-align: left;
}
.testimonial-area-nine .testimonial-item .testimonial-wrapp .author-info .author-name span {
  color: var(--text-color-2);
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.blog-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-area .blog-item {
  margin-bottom: 30px;
}
.blog-area .blog-item .blog-content {
  padding: 20px 30px 30px;
  border-radius: 10px;
  box-shadow: 0px 20px 50px 0px #00000014;
}
.blog-area .blog-item .blog-content .blog-title {
  font-size: 22px;
  line-height: 1.36;
  font-weight: 600;
}
.blog-area .blog-item .blog-content .blog-author {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.blog-area .blog-item .blog-content .blog-author .author-img {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 4px;
}
.blog-area .blog-item .blog-content .blog-author .author-name,
.blog-area .blog-item .blog-content .blog-author .date {
  color: #797A7C;
  font-size: 14px;
  line-height: 1.57;
}
.blog-area .blog-item .blog-content .blog-author .date {
  margin-left: 20px;
}
.blog-area .blog-item .blog-content .blog-author .date i {
  margin-right: 5px;
}
.blog-area .blog-item .blog-content .blog-link {
  color: #2a4e96;
  line-height: 1;
  margin-top: 22px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.blog-area .blog-item .blog-content .blog-link i {
  vertical-align: middle;
}
.blog-area .blog-item .blog-content .blog-link:before {
  background-color: #2a4e96;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 1px;
  margin: 5px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.75s;
}
.blog-area .blog-item .blog-content .blog-link:hover:before {
  width: 95%;
  opacity: 1;
}

.faq-area-five {
  background: #edfaf8;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.faq-area-five .shape {
  position: absolute;
  z-index: -1;
}
.faq-area-five .shape:nth-child(1) {
  left: 0;
  top: 10%;
}
.faq-area-five .shape:nth-child(2) {
  right: 0;
  bottom: 0;
}
.faq-area-five .section-title-center p {
  color: #4f4f4f;
  width: 85%;
}
.faq-area-five .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #e7e7e7;
  margin-top: 0;
  max-width: 960px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
}
.faq-area-five .accordion-item .accordion-button {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.36;
  font-weight: 600;
  color: var(--black);
  box-shadow: none;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.faq-area-five .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-area-five .accordion-item .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  color: #616161;
  transition: all 0.2s linear;
}
.faq-area-five .accordion-item .accordion-body {
  padding-left: 0;
  padding-top: 0;
  color: var(--black);
}
.faq-area-five .accordion-item .accordion-body a {
  color: #2a4e96;
}

.clients-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.clients-area .section-title-center p {
  color: #4f4f4f;
  padding-top: 15px;
  width: 100%;
}

.cta-area-six .btn {
  color: #2a4e96;
  font-size: 17px;
  line-height: 1.76;
  padding: 18px 26px;
}
.cta-area-six .btn:hover {
  background: var(--black);
  color: #fff;
}

.footer-pos {
  position: relative;
  z-index: 1;
}
.footer-pos .bg-shapes .shape {
  position: absolute;
  z-index: -1;
}
.footer-pos .bg-shapes .shape:nth-child(1) {
  left: 0;
  bottom: 25%;
}
.footer-pos .bg-shapes .shape:nth-child(2) {
  left: 5%;
  bottom: 0;
}
.footer-pos .bg-shapes .shape:nth-child(3) {
  right: 5%;
  bottom: 0;
}
.footer-pos .footer-menu ul li a:hover {
  color: #356eef;
}
.footer-pos .newsletter-box .btn {
  background: var(--black);
  border-radius: 5px;
  color: #fff;
}
.footer-pos .newsletter-box .btn:hover {
  background: #356eef;
}
.footer-pos .footer-bottom-menu ul li a:hover {
  color: #356eef;
}
.footer-pos ul.social-link-bg-2 li a:hover {
  background: #356eef;
  border-color: #356eef;
  color: #fff;
}

.HoverArrow {
  --arrowSpacing: 5px;
  --arrowHoverTransition: 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  --arrowHoverOffset: translateX(3px);
  position: relative;
  top: 1px;
  margin-left: var(--arrowSpacing);
  stroke-width: 2px;
  fill: none;
  stroke: currentColor;
}

.HoverArrow__linePath {
  opacity: 0;
  transition: opacity var(--hoverTransition, var(--arrowHoverTransition));
}

.HoverArrow__tipPath {
  transition: transform var(--hoverTransition, var(--arrowHoverTransition));
}

a:hover .HoverArrow__linePath,
button:hover .HoverArrow__linePath {
  opacity: 1;
}

a:hover .HoverArrow__tipPath,
button:hover .HoverArrow__tipPath {
  transform: var(--arrowHoverOffset);
}

.bg-aqua {
  background-color: #edfaf8;
}

.bg-mariner {
  background-color: #2b65d9;
}

.btn-yellow {
  background-color: var(--brand-6);
  color: var(--white);
}
.btn-yellow:hover {
  background-color: var(--black);
  color: var(--white);
}

.menu_five {
  background-color: transparent;
  transition: all 0.2s linear;
}
.menu_five .menu > .nav-item > .nav-link::before {
  background: var(--brand-6);
}
.menu_five .menu > .nav-item:hover > .nav-link::before {
  background: var(--brand-6);
}
.menu_five .menu > .nav-item.active > .nav-link.active {
  color: var(--brand-6);
}
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > .nav-link,
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > .nav-link,
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item.active > .nav-link {
  color: var(--brand-6);
}
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item:hover > i,
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item:focus > i,
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item.active > i {
  color: var(--brand-6);
}
.menu_five .menu > .nav-item.submenu .dropdown-menu .nav-item .nav-link:before {
  background: var(--brand-6);
}
.menu_five .right-nav .btn {
  background-color: var(--brand-6);
  border-radius: 26px;
  border-color: transparent;
  color: var(--white);
}
.menu_five .right-nav .btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.navbar_fixed.menu_five {
  background-color: #fff;
  box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.15);
}

.bg-proto {
  background-image: linear-gradient(180deg, #f3fff9 7.29%, rgba(255, 235, 221, 0.28) 100%);
}

.banner-area-6 {
  padding: 280px 0 220px;
  background-position: top;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banner-area-6 .banner-shapes .shape {
  position: absolute;
  z-index: -1;
}
.banner-area-6 .banner-shapes .shape:nth-child(1) {
  top: 20%;
  left: 3%;
}
.banner-area-6 .banner-shapes .shape:nth-child(2) {
  top: 30%;
  left: 5%;
}
.banner-area-6 .banner-shapes .shape:nth-child(3) {
  bottom: 10%;
  left: 0;
}
.banner-area-6 .banner-shapes .shape:nth-child(4) {
  bottom: 15%;
  left: 5%;
}
.banner-area-6 .banner-shapes .shape:nth-child(5) {
  bottom: 15%;
  left: 8%;
}
.banner-area-6 .banner-shapes .shape:nth-child(6) {
  right: 2%;
  top: 17%;
}
.banner-area-6 .banner-shapes .shape:nth-child(7) {
  right: 8%;
  top: 35%;
}
.banner-area-6 .banner-shapes .shape:nth-child(8) {
  bottom: 10%;
  right: 8%;
}
.banner-area-6 .banner-shapes .shape:nth-child(9) {
  bottom: 15%;
  right: 5%;
}
.banner-area-6 .banner-shapes .shape:nth-child(10) {
  bottom: 10%;
  right: 0;
}
.banner-area-6 .banner-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}
.banner-area-6 .banner-para {
  font-size: 22px;
  line-height: 1.63;
  padding: 0 140px;
  margin-bottom: 50px;
}
.banner-area-6 .form-group {
  max-width: 578px;
  height: 74px;
  display: block;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}
.banner-area-6 .form-group input {
  height: 100%;
  border-radius: 37px;
  color: #616161;
}
.banner-area-6 .form-group .btn-yellow {
  top: 6px;
  right: 6px;
  bottom: 6px;
  position: absolute;
  width: 206px;
  height: 62px;
  border-radius: 30px;
  border: transparent;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.features-area-13 .section-title-center {
  padding-bottom: 80px;
}
.features-area-13 .section-title-center p {
  width: 50%;
}
.features-area-13 .features-list.nav-tabs {
  border-bottom: none;
}
.features-area-13 .features-list .nav-link {
  border: 2px solid #f3f3f3;
  border-radius: 3px;
  width: 420px;
  height: 85px;
  margin-bottom: 30px;
  align-items: center;
  display: flex;
  padding-left: 40px;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease-out;
}
.features-area-13 .features-list .nav-link .circle {
  width: 26px;
  height: 26px;
  border: 3px solid #616161;
  border-radius: 50%;
  display: inline-block;
  margin-right: 22px;
}
.features-area-13 .features-list .nav-link:hover {
  border: 2px solid #f3f3f3;
}
.features-area-13 .features-list .nav-link:hover .circle {
  background-color: #ffc107;
}
.features-area-13 .features-list .nav-link.active {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0px 20px 50px 0px #00000014;
}
.features-area-13 .features-list .nav-link.active .circle {
  background-color: #ffc107;
}
.features-area-13 .features-list .nav-link.active:hover {
  border-color: transparent;
}
.features-area-13 .features-list .nav-link.active:hover .circle {
  background-color: #ffc107;
}
.features-area-13 .features-right {
  position: relative;
  z-index: 1;
}
.features-area-13 .features-right .shape {
  position: absolute;
  z-index: -1;
}
.features-area-13 .features-right .shape:nth-child(1) {
  right: -50px;
  top: -40px;
}
.features-area-13 .features-right .shape:nth-child(2) {
  right: -50px;
  bottom: -40px;
}
.features-area-13 .features-right .tab-pane {
  padding-top: 0;
}
.features-area-13 .features-right .fea-img {
  box-shadow: 0px 10px 30px 0px #315cfd33;
}

.more-features-area .fea-item {
  height: 282px;
  background-color: #fff;
  border-radius: 10px;
  padding: 45px 70px;
  padding-bottom: 65px;
  margin-bottom: 30px;
  box-shadow: 0px 20px 50px 0px #0000000d;
  transition: all 0.3s ease-out;
}
.more-features-area .fea-item .item-title {
  font-size: 22px;
  line-height: 1.36;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.more-features-area .fea-item:hover {
  box-shadow: 0px 20px 50px 0px #00000014;
}

.features-area-14 .fea-item .item-subtitle {
  font-size: 15px;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-color-2);
}
.features-area-14 .fea-item .item-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}
.features-area-14 .fea-item .item-text {
  color: var(--text-color-2);
  margin-bottom: 55px;
}
.features-area-14 .fea-item .btn {
  border-radius: 26.5px;
  border-color: transparent;
  font-weight: 700;
  font-size: 17px;
}
.features-area-14 .fea-right {
  position: relative;
  height: 567px;
  margin-left: -30px;
}
.features-area-14 .fea-right .fea-images {
  position: absolute;
  z-index: -1;
}
.features-area-14 .fea-right .fea-images:nth-child(1) {
  left: 0;
  top: 0;
  z-index: 1;
}
.features-area-14 .fea-right .fea-images:nth-child(2) {
  right: -8%;
  bottom: 5%;
  z-index: 1;
}
.features-area-14 .fea-right .fea-images:nth-child(3) {
  width: 14px;
  height: 14px;
  background: #c6c6c6;
  transform: matrix(0.75, 0.66, -0.66, 0.75, 0, 0);
  left: 60%;
  top: 0%;
}
.features-area-14 .fea-right .fea-images:nth-child(4) {
  width: 15px;
  height: 15px;
  border: 1px solid #c6c6c6;
  transform: matrix(0.75, 0.66, -0.66, 0.75, 0, 0);
  left: 55%;
  top: 5%;
}
.features-area-14 .fea-right .fea-images:nth-child(5) {
  left: 11%;
  bottom: 0%;
}
.features-area-14 .fea-right .fea-images:nth-child(6) {
  right: -24%;
  top: 28%;
}
.features-area-14 .fea-left {
  position: relative;
  height: 702px;
  z-index: 1;
}
.features-area-14 .fea-left .fea-left-img {
  max-width: 735px;
  margin-left: -185px;
}
.features-area-14 .fea-left .fea-images {
  position: absolute;
  z-index: -1;
}
.features-area-14 .fea-left .fea-images:nth-child(1) {
  width: 148px;
  height: 148px;
  border: 15px solid #fff6d7;
  border-radius: 50%;
  left: 40%;
  top: -8%;
}
.features-area-14 .fea-left .fea-images:nth-child(2) {
  right: -8%;
  bottom: 28%;
}
.features-area-14 .fea-left .fea-images:nth-child(3) {
  right: 6%;
  top: 26%;
}
.features-area-14 .fea-left .fea-images:nth-child(4) {
  left: -45%;
  top: 0%;
}
.features-area-14 .fea-right-two {
  position: relative;
  height: 430px;
  z-index: 1;
}
.features-area-14 .fea-right-two .fea-right-img {
  max-width: 735px;
}
.features-area-14 .fea-right-two .fea-images {
  position: absolute;
  z-index: -1;
}
.features-area-14 .fea-right-two .fea-images:nth-child(1) {
  left: 2%;
  bottom: -5%;
}
.features-area-14 .fea-right-two .fea-images:nth-child(2) {
  right: -45%;
  top: -8%;
}
.features-area-14 .fea-right-two .fea-images:nth-child(3) {
  right: -60%;
  bottom: 22%;
  transform: rotate(90deg);
}

.app-itegretion-two {
  padding: 160px 0;
}
.app-itegretion-two .section-title-left h2 {
  margin-bottom: 15px;
  padding-right: 32px;
}
.app-itegretion-two .section-title-left p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-color-2);
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .app-itegretion-two .section-title-left p {
    width: 90%;
  }
}

.testimonial-area-5 {
  background: #f3faf9;
  padding: 140px 0;
}

.clients-area-2 .section-title-center {
  padding-bottom: 30px;
}
.clients-area-2 .section-heading {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.5px;
  color: #8d8d8d;
}

.cta-area-7 {
  background-image: url("../images/home_6/cta-shape1.png");
  background-color: #212224;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-area-7 .bg-shapes .shape {
  position: absolute;
  z-index: -1;
}
.cta-area-7 .bg-shapes .shape:nth-child(1) {
  right: 315px;
  bottom: 0;
}
.cta-area-7 .bg-shapes .shape:nth-child(2) {
  right: 20px;
  bottom: 0;
}
.cta-area-7 .cta-title {
  font-weight: 600;
  font-size: 27px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.cta-area-7 .title-text {
  font-size: 17px;
  line-height: 28px;
  color: #ffffff;
}
.cta-area-7 .cta-btn {
  color: var(--white);
  border-radius: 40px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.5px;
  padding: 24px 86.5px;
  transition: 0.3s ease-out;
}
.cta-area-7 .cta-btn:hover {
  background: #e8a20c;
  color: var(--black);
}

.footer-proto .newsletter-box .btn:hover {
  background: var(--brand-6);
  color: var(--white);
}

@keyframes animatefullwidth {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animatedwidth {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 50px;
  }
}
@keyframes svganim {
  0% {
    opacity: 0;
    fill: #fff;
  }
  100% {
    opacity: 1;
    fill: #9558ec;
  }
}
.white-btn {
  background-color: #fff;
  color: var(--black);
  border-radius: 3px;
  border: 2px solid #fff;
}

.soft-btn {
  background-image: linear-gradient(to right, #2525a8 0%, #9558ec 51%, #2525a8 100%);
  background-size: 200% auto;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  padding: 16px 50px;
  transition: all 0.3s linear;
}
.soft-btn:hover {
  background-position: right center;
  color: #fff;
}

.menu_four .right-nav .white-btn {
  color: var(--black);
  font-weight: 600;
}
.menu_four .right-nav .white-btn:hover {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
}

.navbar_fixed.menu_four .right-nav .white-btn {
  color: #fff;
  background-color: #9558ec;
  border-color: #9558ec;
}
.navbar_fixed.menu_four .right-nav .white-btn:hover {
  border-color: #9558ec;
  color: #9558ec;
  background-color: #fff;
}

.fancybox-container {
  z-index: 9999999;
}

.banner-area-7 {
  background-image: url("../images/home_7/shapes/banner-shape1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 245px 0 234px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banner-area-7 .banner-shapes .shape {
  position: absolute;
  z-index: -1;
}
.banner-area-7 .banner-shapes .shape:nth-child(1) {
  top: 0;
  right: 0;
}
.banner-area-7 .banner-shapes .shape:nth-child(2) {
  top: 0;
  right: 0;
}
.banner-area-7 .banner-shapes .shape:nth-child(3) {
  top: 212px;
  right: 0;
}
.banner-area-7 .banner-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}
.banner-area-7 .banner-title span {
  position: relative;
}
.banner-area-7 .banner-title span img {
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  z-index: -1;
}
.banner-area-7 .banner-para {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 55px;
}
.banner-area-7 .btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  letter-spacing: 0.5px;
  border-color: #fff;
  border-radius: 3px;
  margin-right: 25px;
  padding: 14px 42px;
}
.banner-area-7 .btn:hover {
  background-color: var(--black);
  color: #fff;
  border-color: var(--black);
}
.banner-area-7 .btn.border-btn {
  color: #fff;
}
.banner-area-7 .btn.border-btn:hover {
  background-color: #fff;
  color: var(--black);
  border-color: #fff;
}
.banner-area-7 .banner-right {
  position: relative;
  height: 100%;
}
.banner-area-7 .banner-right .play-btn {
  width: 100px;
  height: 100px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  line-height: 110px;
  color: #fff;
  top: 17%;
  right: 6%;
  position: absolute;
}
.banner-area-7 .banner-right .play-btn i {
  color: var(--black);
  font-size: 40px;
  margin-left: 5px;
}
.banner-area-7 .banner-right .play-btn i:after {
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  transform: scale(8);
  animation: pulse 2s infinite;
}

.clients-soft2 .section-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  color: var(--text-color-2);
  text-align: center;
  margin-bottom: 20px;
}
.clients-soft2 .client-meta {
  margin-top: 2px;
}
.clients-soft2 .customer-more {
  color: #2a4e96;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 20px;
  display: inline-block;
}
.clients-soft2 .customer-more i {
  margin-left: 10px;
  font-size: 22px;
  transition: all 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
}
.clients-soft2 .customer-more:hover i {
  transform: translateX(5px);
}

.software-area {
  overflow: hidden;
}
.software-area .section-title-center h2 {
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}
.software-area .section-title-center p {
  width: 60%;
}

.software-titles {
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  margin-bottom: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
}
.software-titles li {
  display: inline-block;
  color: var(--text-color-2);
  padding: 12px 27.5px;
  cursor: pointer;
}
.software-titles li.active {
  background-color: #9558ec;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0px 6px 14px 0px rgba(42, 39, 171, 0.2);
}

.software-item {
  margin-bottom: 35px;
}
.software-item .item-img {
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 6px;
}
.software-item .item-img img {
  border-radius: 6px;
}
.software-item .item-img:hover .item-hover {
  opacity: 1;
}
.software-item .new-text {
  font-weight: 600;
  background-color: var(--brand);
  color: #fff;
  border-radius: 3px;
  padding: 1px 16px;
  position: absolute;
  right: -14px;
  top: 25px;
  z-index: 2;
}
.software-item .item-hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
}
.software-item .item-link {
  background-image: linear-gradient(73.52deg, #2525a8 4.35%, #9558ec 59.44%);
  box-shadow: 0px 6px 15px 0px rgba(74, 54, 191, 0.5);
  color: #fff;
  border-radius: 6px;
  padding: 6px 21px;
  font-weight: 500;
  margin-right: 12.5px;
  margin-left: 12.5px;
}
.software-item .item-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
}

.clients-banner-area {
  background-image: linear-gradient(73.52deg, #2525a8 4.35%, #9558ec 59.44%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.clients-banner-area .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.clients-banner-area .clients-image img {
  margin-left: auto;
  margin-right: auto;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.clients-banner-area .clients-image:hover img {
  opacity: 1;
}

.solution-area {
  overflow: hidden;
}
.solution-area .section-title-center {
  padding-bottom: 70px;
}
.solution-area .section-title-center h2 {
  width: 55%;
  margin-left: auto;
  margin-right: auto;
}
.solution-area .section-title-center p {
  width: 75%;
}

.solution-wrapp {
  padding: 221px 0;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.solution-wrapp .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.solution-wrapp .circle .main-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.solution-wrapp .circle .icon {
  position: absolute;
}
.solution-wrapp .circle .icon:nth-child(1) {
  left: 60px;
  top: 60px;
}
.solution-wrapp .circle .icon:nth-child(2) {
  right: 60px;
  top: 60px;
}
.solution-wrapp .circle .icon:nth-child(3) {
  bottom: 60px;
  left: 60px;
}
.solution-wrapp .circle .icon:nth-child(4) {
  right: 60px;
  bottom: 60px;
}
.solution-wrapp .circle .icon:before {
  content: "";
  position: absolute;
  width: 87px;
  height: 87px;
  border-radius: 50%;
  border: 5px solid #9558ec;
  background-color: #55249a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.solution-list li {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: absolute;
}
.solution-list li:nth-child(1) {
  right: 70%;
  top: 45px;
}
.solution-list li:nth-child(2) {
  top: 45px;
  left: 70%;
}
.solution-list li:nth-child(3) {
  right: 70%;
  bottom: 45px;
}
.solution-list li:nth-child(4) {
  bottom: 45px;
  left: 70%;
}
.solution-list li:nth-child(even) .text::before {
  content: "";
  top: 50%;
  left: -25%;
  position: absolute;
  width: 80px;
  height: 2px;
  background: #eeefec;
  z-index: -1;
}
.solution-list li:nth-child(odd) .text::before {
  content: "";
  top: 50%;
  right: -25%;
  position: absolute;
  width: 80px;
  height: 2px;
  background: #eeefec;
  z-index: -1;
}
.solution-list li .text {
  font-weight: 600;
  line-height: 30px;
  color: var(--black);
  padding: 11px 24px;
  background-color: #eeefec;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
}
.solution-list li .text:hover {
  box-shadow: 0px 6px 20px 0px rgba(86, 86, 86, 0.25);
  background-color: #fff;
}
.solution-list li .img {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .solution-list li .img {
    display: none;
  }
}
.solution-list li .img img {
  z-index: 3;
}
.solution-list li .img::before {
  content: "";
  left: 50%;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  border-radius: 50%;
  border: 3px solid #9558ec;
  background-color: #55249a;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.soft-counter-area {
  background-color: #5d3fca;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.soft-counter-area .shape {
  position: absolute;
  top: 60px;
  z-index: -1;
}
.soft-counter-area .shape:nth-child(1) {
  left: 44px;
}
.soft-counter-area .shape:nth-child(2) {
  right: 44px;
}
.soft-counter-area .section-title-left {
  padding-bottom: 115px;
}
.soft-counter-area .section-title-left h2 {
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.soft-counter-area .section-title-left p {
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  width: 95%;
}
.soft-counter-area .count-item h3 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 15px;
}
.soft-counter-area .count-item p {
  color: #fff;
}
.soft-counter-area .count-right {
  margin-left: 70px;
  margin-top: 10px;
}
.soft-counter-area .count-right .image {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 229px;
  height: 264px;
  z-index: 1;
}
.soft-counter-area .count-right .image:before {
  content: "";
  position: absolute;
  background: url(../images/home_7/shapes/mask-shape.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
}
.soft-counter-area .count-right .image:after {
  content: "";
  position: absolute;
  background: #473d8d;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
}
.soft-counter-area .count-right .image h4 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}
.soft-counter-area .count-right .image:hover:after {
  opacity: 0;
}
.soft-counter-area .count-right .col-6:nth-child(1) .image {
  background-image: url("../images/about_2/statistic1.png");
}
.soft-counter-area .count-right .col-6:nth-child(2) .image {
  background-image: url("../images/home_7/poly2.jpg");
  margin-left: auto;
}
.soft-counter-area .count-right .col-6:nth-child(3) .image {
  background-image: url("../images/home_7/poly3.jpg");
  margin: -14px auto 0;
}

.soft-features-area {
  padding: 210px 0 200px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .soft-features-area {
    padding: 150px 0;
  }
}
@media screen and (min-width: 1200px) {
  .soft-features-area {
    padding: 210px 0 200px;
  }
}
.soft-features-area .row:nth-child(1) {
  margin-bottom: 230px;
}
.soft-features-area .row:nth-child(2) {
  margin-bottom: 215px;
}
.soft-features-area .row:nth-child(2) .fea-right {
  margin-right: auto;
  margin-left: -140px;
}
.soft-features-area .fea-content h2 {
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.5px;
  line-height: 1.55;
  margin-bottom: 12px;
}
.soft-features-area .fea-content p {
  color: #4f4f4f;
  margin-bottom: 40px;
  width: 75%;
}
.soft-features-area .fea-right {
  position: relative;
  z-index: 1;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  margin-right: -140px;
}
.soft-features-area .fea-right .fea-img {
  border-radius: 20px;
}
.soft-features-area .fea-right .shape {
  position: absolute;
  z-index: -1;
}
.soft-features-area .fea-right .shape:nth-child(1) {
  left: -30px;
  top: -70px;
}
.soft-features-area .fea-right .shape:nth-child(2) {
  right: 75px;
  top: -50px;
  animation: rotated 30s alternate infinite linear;
}
.soft-features-area .fea-right .shape:nth-child(3) {
  right: 75px;
  bottom: -50px;
}

.soft-testimonial-area {
  background-image: url("../images/home_7/map.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.soft-testimonial-area .section-title-center {
  padding-bottom: 50px;
}
.soft-testimonial-area .slick-list {
  box-sizing: initial;
  padding-top: 30px;
  padding-bottom: 70px;
  margin: 0 -30px;
}
.soft-testimonial-area .slider-wrapper i {
  position: absolute;
  font-size: 30px;
  cursor: pointer;
  bottom: 50%;
}
.soft-testimonial-area .slider-wrapper i.arrow_left {
  left: -60px;
}
.soft-testimonial-area .slider-wrapper i.arrow_right {
  right: -60px;
}
.soft-testimonial-area .slide-item {
  padding: 60px 55px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 15px 30px 0px rgba(53, 42, 67, 0.1);
  margin-right: 30px;
  margin-left: 30px;
}
.soft-testimonial-area .author {
  margin-bottom: 30px;
}
.soft-testimonial-area .auth-img {
  margin-right: 20px;
}
.soft-testimonial-area .auth-info p {
  color: #616161;
}
.soft-testimonial-area .auth-name {
  display: block;
  font-weight: 600;
}
.soft-testimonial-area .author-text p {
  color: #4f4f4f;
  font-weight: 500;
}

.soft-cta-area {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(73.52deg, #2525a8 4.35%, #9558ec 59.44%);
}
.soft-cta-area .shape {
  position: absolute;
}
.soft-cta-area .shape:nth-child(1) {
  top: 0;
  left: 0;
}
.soft-cta-area .shape:nth-child(2) {
  right: 0;
  bottom: 0;
}
.soft-cta-area .section-title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
}
.soft-cta-area .section-title p {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.36;
  color: #fff;
  margin-bottom: 50px;
}
.soft-cta-area .section-title a {
  display: inline-block;
  background-color: #fff;
  border-radius: 6px;
  padding: 17px 60px;
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
}
.soft-cta-area .section-title a:hover {
  color: #fff;
  background-color: #9558ec;
}

.footer-software-2 .newsletter-box .btn:hover {
  background: #9558ec;
}

.bg-black-800 {
  background-color: #242729;
}

.bg-feta {
  background-color: #dcfadd;
}

.bg-gray {
  background-color: #f5f5f7;
}

.bg-pippin {
  background-color: #ffe2e2;
}

.billing-menu .right-nav {
  margin-left: 80px;
}

.billing-banner-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.billing-banner-area .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #efba34;
}
.billing-banner-area .shape {
  position: absolute;
  z-index: -1;
}
.billing-banner-area .shape:nth-child(1) {
  left: 450px;
  top: 185px;
}
.billing-banner-area .shape:nth-child(2) {
  border-color: #722575;
  left: 265px;
  bottom: 170px;
}
.billing-banner-area .shape:nth-child(3) {
  width: 15px;
  height: 15px;
  border-color: #722575;
  right: 510px;
  top: 410px;
}
.billing-banner-area .shape:nth-child(4) {
  border-color: var(--black);
  right: 200px;
  bottom: 310px;
}
.billing-banner-area .shape:nth-child(5) {
  left: 140px;
  top: 400px;
  animation: rotated 30s alternate infinite linear;
}
.billing-banner-area .shape:nth-child(6) {
  right: 170px;
  top: 225px;
  animation: rotated 30s alternate infinite linear;
}
.billing-banner-area .shape:nth-child(7) {
  left: 375px;
  top: 445px;
}
.billing-banner-area .shape:nth-child(8) {
  left: 445px;
  bottom: 145px;
}
.billing-banner-area .shape:nth-child(9) {
  right: 315px;
  top: 385px;
}
.billing-banner-area .shape:nth-child(10) {
  right: 460px;
  bottom: 215px;
}
.billing-banner-area .shape:nth-child(11) {
  transform: translateX(-50%);
  left: 50%;
  bottom: -25%;
  animation: pulse 3s infinite;
}
.billing-banner-area .banner-content .btn {
  border: none;
  display: inline-flex;
  align-items: center;
  padding: 13px 34px;
  margin-bottom: 60px;
}
.billing-banner-area .banner-content .btn .icon {
  margin-right: 10px;
  transition: 0.3s ease-out;
}
.billing-banner-area .banner-content .btn:hover .icon {
  filter: invert(46%) sepia(54%) saturate(861%) hue-rotate(313deg) brightness(96%) contrast(94%);
}
.billing-banner-area .banner-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
}
.billing-banner-area .banner-img {
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.15);
}

.billing-clients-area .clients-text {
  color: #5d5d66;
  font-size: 22px;
  line-height: 36px;
}
.billing-clients-area .clients-text span {
  color: var(--black);
  font-weight: 600;
  line-height: 30px;
}
.billing-clients-area .client-img {
  cursor: pointer;
  width: 20%;
}
.billing-clients-area .client-img img {
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
.billing-clients-area .client-img:hover img {
  opacity: 1;
}

.billing-services-area .services-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
}
.billing-services-area .services-item {
  border-radius: 10px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 50px 40px 40px;
  transition: all 0.3s ease-in-out;
}
.billing-services-area .services-item img {
  margin-bottom: 30px;
}
.billing-services-area .services-item:hover {
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.08);
}
.billing-services-area .services-item:hover .service-item-title {
  color: var(--brand);
}
.billing-services-area .service-item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.billing-services-area .service-item-text {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 30px;
}
.billing-services-area .service-btn {
  border: none;
  color: var(--brand);
  font-weight: 500;
  font-size: 18px;
  padding: 0;
}
.billing-services-area .service-btn i {
  margin-left: 5px;
  font-weight: 600;
  vertical-align: middle;
}
.billing-services-area .service-btn:hover {
  color: var(--brand);
}

.billing-features-area .features-content h2::before {
  display: none;
}
.billing-features-area .features-item-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.24;
}
.billing-features-area .features-item-text {
  width: 90%;
}
.billing-features-area .features-item-list {
  display: flex;
  flex-wrap: wrap;
}
.billing-features-area .features-item-list li {
  color: var(--black);
  width: 40%;
  margin-bottom: 10px;
}
.billing-features-area .features-item-list li i {
  color: #37bd8a;
  font-size: 15px;
  margin-right: 5px;
}
.billing-features-area .btn-bordered {
  color: var(--brand);
  border-radius: 5px;
  border: 2px solid var(--brand);
  font-weight: 500;
  font-size: 18px;
  padding: 11px 34px;
  transition: all 0.3s ease-in-out;
}
.billing-features-area .btn-bordered i {
  font-weight: 600;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.billing-features-area .btn-bordered:hover {
  background-color: var(--brand);
  color: #fff;
}
.billing-features-area .features-images {
  position: relative;
  z-index: 1;
}
.billing-features-area .features-images .shape {
  position: absolute;
  z-index: -1;
}
.billing-features-area .features-images .shape:nth-child(1) {
  bottom: -30px;
  right: 30px;
}
.billing-features-area .features-images .shape:nth-child(2) {
  top: -35px;
  left: -35px;
  animation: rotated 30s alternate infinite linear;
}

.billing-features-2 .features-item-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
}
.billing-features-2 .feature-item {
  display: flex;
  flex-wrap: wrap;
}
.billing-features-2 .feature-item .feature-item-icon {
  width: 10%;
}
.billing-features-2 .feature-item .feature-item-content {
  width: 82%;
}
.billing-features-2 .feature-item-subtitle {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}
.billing-features-2 .feature-item-text span {
  color: var(--brand);
}
.billing-features-2 .feature-images {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 67%;
  margin: 0 auto;
}
.billing-features-2 .feature-images .shape {
  position: absolute;
  z-index: -1;
}
.billing-features-2 .feature-images .shape:nth-child(1) {
  right: 60px;
  top: -25px;
  animation: rotated 30s alternate infinite linear;
}
.billing-features-2 .feature-images .shape:nth-child(2) {
  left: -30px;
  bottom: -30px;
}
.billing-features-2 .feature-images .img-1,
.billing-features-2 .feature-images .img-2 {
  position: absolute;
  box-shadow: 0px 20px 40px 0px rgba(23, 23, 23, 0.15);
}
.billing-features-2 .feature-images .img-1 {
  left: 0;
  top: 0;
}
.billing-features-2 .feature-images .img-2 {
  right: 0;
  top: 40px;
}

.billing-testimonial-area {
  overflow: hidden;
}
.billing-testimonial-area .custom-contaienr {
  max-width: 1420px;
}
.billing-testimonial-area .swiper-container {
  padding-bottom: 80px;
}
.billing-testimonial-area .swiper-slide {
  border-radius: 15px;
  box-shadow: 0px 5px 20px 0px rgba(23, 23, 23, 0.05);
  width: 700px;
  margin: 0 auto;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.billing-testimonial-area .swiper-slide.swiper-slide-active {
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.08);
  opacity: 1;
}
.billing-testimonial-area .swiper-pagination {
  display: initial;
}
.billing-testimonial-area .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbc0c4;
  opacity: 1;
}
.billing-testimonial-area .swiper-pagination-bullet-active {
  background-color: var(--black);
}
.billing-testimonial-area .testimonial-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  padding-bottom: 0;
}
.billing-testimonial-area .testimonial-content {
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  padding: 43px 40px 46px;
}
.billing-testimonial-area .testimonial-content .testimonial-img {
  border-radius: 15px;
  width: 25%;
  margin-right: 35px;
  margin-top: 7px;
}
.billing-testimonial-area .testimonial-content .testimonial-img img {
  border-radius: 15px;
}
.billing-testimonial-area .testimonial-content .testimonial-text {
  width: 68%;
}
.billing-testimonial-area .testimonial-content .testimonial-text .author-text {
  color: var(--black);
  font-style: italic;
  margin-bottom: 20px;
}
.billing-testimonial-area .testimonial-content .testimonial-text .author-name {
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
}

.billing-pricing-area .col-md-4 {
  padding: 0;
}
.billing-pricing-area .col-md-4:first-child .pricing-item {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.billing-pricing-area .col-md-4:last-child .pricing-item {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.billing-pricing-area .col-md-4:last-child .pricing-item:after {
  display: none;
}
.billing-pricing-area .pricing-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  width: 55%;
  margin-right: auto;
  margin-left: auto;
}
.billing-pricing-area .pricing-bg {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
}
.billing-pricing-area .pricing-item {
  background-color: #fff;
  border: none;
  padding: 45px 90px;
  position: relative;
  margin-top: 0;
}
.billing-pricing-area .pricing-item:after {
  content: "";
  width: 1px;
  height: 80%;
  position: absolute;
  top: 50px;
  right: 0px;
  background-image: linear-gradient(180deg, #ffffff 0%, #c8ccd0 50%, #ffffff 100%);
}
.billing-pricing-area .pricing-item .pricing-label {
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.billing-pricing-area .pricing-item .pricing-item-title {
  color: var(--brand);
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.billing-pricing-area .pricing-item .pricing-item-title span {
  font-weight: 400;
  color: #5d5d66;
  font-size: 20px;
  line-height: 32px;
}
.billing-pricing-area .pricing-item .pricing-item-text {
  margin-bottom: 25px;
}
.billing-pricing-area .pricing-item ul {
  margin-bottom: 66px;
}
.billing-pricing-area .pricing-item ul li {
  color: var(--black);
  font-weight: 400;
  font-size: 17px;
  line-height: 40px;
  padding: 0;
}
.billing-pricing-area .pricing-item ul li i {
  color: #37bd8a;
  margin-right: 8px;
}
.billing-pricing-area .pricing-item ul li.disable {
  color: #848d95;
}
.billing-pricing-area .pricing-item ul li.disable i {
  color: #848d95;
}
.billing-pricing-area .pricing-item .btn-bordered {
  color: var(--brand);
  border-radius: 5px;
  border: 2px solid var(--brand);
  font-weight: 500;
  font-size: 18px;
  padding: 11px 34px;
  transition: all 0.3s ease-in-out;
}
.billing-pricing-area .pricing-item .btn-bordered:hover {
  background-color: var(--brand);
  color: #fff;
}

.billing-cta-area .b-radius {
  border-radius: 15px;
}
.billing-cta-area .shape {
  position: absolute;
}
.billing-cta-area .shape:nth-child(1) {
  left: 0;
  top: 0;
}
.billing-cta-area .shape:nth-child(2) {
  right: 25%;
  top: 0;
}
.billing-cta-area .shape:nth-child(3) {
  left: 43%;
  bottom: 0;
}
.billing-cta-area .cta-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
}
.billing-cta-area .cta-text {
  color: var(--black);
  width: 90%;
}
.billing-cta-area .btn-black {
  border-radius: 5px;
  background-color: var(--black);
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 20px 36px;
  transition: all 0.3s ease-in-out;
}
.billing-cta-area .btn-black:hover {
  background-color: var(--brand);
  color: #fff;
}

.footer-billing {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer-billing .shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.footer-billing .footer-text {
  color: #bbc0c4;
  width: 85%;
}
.footer-billing .footer-widget .widget-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.footer-billing .footer-widget .widget-link-list li a {
  color: #a0a1a3;
  line-height: 40px;
  transition: all 0.3s ease-in-out;
}
.footer-billing .footer-widget .widget-link-list li a:hover {
  color: var(--brand);
}
.footer-billing .footer-widget .widget-social-list {
  margin-top: 33px;
}
.footer-billing .footer-widget .widget-social-list li {
  display: inline-block;
  margin-right: 10px;
}
.footer-billing .footer-widget .widget-social-list li a {
  color: var(--black);
  background-color: #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  height: 32px;
  width: 32px;
}
.footer-billing .footer-widget .widget-social-list li a i {
  font-size: 12px;
}
.footer-billing .footer-widget .widget-social-list li a:hover {
  color: var(--brand);
}
.footer-billing .copyright-text {
  color: #a0a1a3;
  font-size: 15px;
  line-height: 27px;
}
.footer-billing .language-list select {
  background: transparent;
  border: none;
  color: #a0a1a3;
  font-size: 14px;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.animatable {
  visibility: hidden;
  animation-play-state: paused;
}

/* show objects being animated */
.animatedes {
  visibility: visible;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}

.animatedes.draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash 5s linear;
}

.bg-blue-light {
  background-color: #e4fbff;
}

.bg-gray-2 {
  background-color: #f4f9f9;
}

.cloud-heading-2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.24;
}

.cloud-banner-area {
  /* background-image: linear-gradient(259.32deg, #e1faf4 1.38%, rgba(237, 245, 221, 0) 97.54%); */
  overflow: hidden;
  z-index: 1;
}
.cloud-banner-area .shape {
  position: absolute;
  z-index: -1;
}
.cloud-banner-area .shape:nth-child(1) {
  left: 0px;
  top: 0px;
}
.cloud-banner-area .shape:nth-child(2) {
  left: 2%;
  top: 50%;
}
.cloud-banner-area .shape:nth-child(3) {
  right: 30%;
  top: 0px;
}
.cloud-banner-area .shape:nth-child(4) {
  right: 0px;
  top: 2%;
}
.cloud-banner-area .shape:nth-child(5) {
  right: 2%;
  top: 50%;
}
.cloud-banner-area .shape:nth-child(6) {
  left: 29%;
  bottom: 7%;
}
.cloud-banner-area .shape:nth-child(7) {
  left: -32%;
  bottom: -40%;
}

.cloud-banner-content {
  margin: 0 auto;
  width: 60%;
}
.cloud-banner-content .banner-title {
  font-weight: 700;
  font-size: 70px;
  line-height: 1.1;
}
.cloud-banner-content .banner-title span {
  position: relative;
  z-index: 1;
}
.cloud-banner-content .banner-title span svg {
  position: absolute;
  left: -11px;
  top: 6px;
  z-index: -1;
}
.cloud-banner-content .banner-text {
  width: 90%;
  margin: 0 auto 70px;
}
.cloud-banner-content .offer-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--black);
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.cloud-banner-content .btn {
  border: none;
  margin-bottom: 15px;
}
.cloud-banner-content .meta-text {
  color: #6a737c;
  font-size: 15px;
  line-height: 27px;
}

.cloud-services-area {
  background-image: linear-gradient(180deg, rgba(245, 244, 244, 0) 0%, #f5f4f4 100%);
  overflow: hidden;
}
.cloud-services-area .services-title span {
  position: relative;
  z-index: 1;
}
.cloud-services-area .services-title span svg {
  position: absolute;
  left: -5px;
  top: -6px;
  z-index: -1;
}

.cloud-accordion .accordion-item {
  background-color: transparent;
  margin-top: 0;
  margin-bottom: 30px;
}
.cloud-accordion .accordion-button {
  box-shadow: none;
  background: transparent;
  position: relative;
  padding: 0 55px;
}
.cloud-accordion .accordion-button:after {
  color: var(--black);
  position: absolute;
  left: 35px;
  font-size: 12px;
  line-height: 1.7;
}
.cloud-accordion .accordion-button.collapsed {
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.cloud-accordion .accordion-button.collapsed:after {
  content: "\f054";
}
.cloud-accordion .accordion-button:not(.collapsed):after {
  content: "\f078";
}
.cloud-accordion .accordion-body {
  padding: 12px 0 12px 55px;
}
.cloud-accordion .accordion-body p {
  line-height: 28px;
  margin-bottom: 23px;
}
.cloud-accordion .accordion-body .btn-more {
  color: var(--brand);
  font-weight: 500;
  font-size: 18px;
  margin-right: 45px;
}
.cloud-accordion .accordion-body .btn-more i {
  font-size: 12px;
  margin-left: 5px;
}
.cloud-accordion .accordion-body .btn-apple,
.cloud-accordion .accordion-body .btn-windows,
.cloud-accordion .accordion-body .btn-linux {
  color: #848d95;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.cloud-accordion .accordion-body .btn-apple:hover,
.cloud-accordion .accordion-body .btn-windows:hover,
.cloud-accordion .accordion-body .btn-linux:hover {
  color: var(--black);
}

.accordion-images {
  position: relative;
  z-index: 1;
}
.accordion-images .img {
  position: absolute;
  animation-name: fadeInLeft;
}
.accordion-images .img:nth-child(1) {
  left: 20px;
  top: -15px;
  z-index: -1;
}
.accordion-images .img:nth-child(2) {
  right: 3px;
  top: 10px;
}
.accordion-images .img:nth-child(3) {
  right: -30px;
  top: 45px;
}

.cloud-features-area .features-title span {
  position: relative;
  z-index: 1;
}
.cloud-features-area .features-title span svg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.cloud-features-area .features-title-text {
  width: 65%;
}
.cloud-features-area .shape {
  position: absolute;
  right: 90px;
  bottom: -55px;
  z-index: -1;
}
.cloud-features-area .features-btn {
  color: var(--brand);
}
.cloud-features-area .features-btn .icon {
  margin-left: 5px;
  display: inline-block;
  transition: all 0.3s linear;
}
.cloud-features-area .features-btn:hover .icon {
  transform: translateX(5px);
}

.cloud-pricing-area .pricing-title span {
  position: relative;
  z-index: 1;
}
.cloud-pricing-area .pricing-title span svg {
  position: absolute;
  z-index: -1;
  left: -11px;
  bottom: 2px;
}

.cloud-pricing-images {
  position: relative;
  z-index: 1;
}
.cloud-pricing-images .shape {
  position: absolute;
  z-index: -1;
}
.cloud-pricing-images .shape:nth-child(1) {
  right: 30px;
  top: -25px;
}
.cloud-pricing-images .shape:nth-child(2) {
  left: -120px;
  bottom: -150px;
}

.cloud-pricing-wrapp .nav {
  border: none;
}
.cloud-pricing-wrapp .nav .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  border: transparent;
  background-color: transparent;
  padding: 0;
  margin-right: 30px;
  margin-bottom: 40px;
}
.cloud-pricing-wrapp .nav .nav-link span {
  width: 12px;
  height: 12px;
  border: 1px solid #848d95;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}
.cloud-pricing-wrapp .nav .nav-link span:before {
  content: "";
  width: 0;
  height: 9px;
  border-radius: 50%;
  background-color: var(--brand);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cloud-pricing-wrapp .nav .nav-link.active span {
  border-color: var(--black);
}
.cloud-pricing-wrapp .nav .nav-link.active span:before {
  width: 9px;
}
.cloud-pricing-wrapp .tab-pane {
  padding-top: 0;
}

.cloud-pricing-item {
  cursor: pointer;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 40px;
  margin-bottom: 15px;
  transition: all 0.3s linear;
}
.cloud-pricing-item .plan {
  width: 25%;
}
.cloud-pricing-item .content {
  width: 50%;
}
.cloud-pricing-item .price {
  width: 25%;
  padding-left: 60px;
}
.cloud-pricing-item .label {
  font-size: 15px;
  line-height: 27px;
  color: var(--black);
}
.cloud-pricing-item .label .tag {
  color: var(--brand);
  margin-left: 8px;
}
.cloud-pricing-item .space {
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.cloud-pricing-item .plan-text {
  font-size: 15px;
  line-height: 22px;
}
.cloud-pricing-item .type {
  color: var(--black);
  font-weight: 700;
  line-height: 30px;
}
.cloud-pricing-item .btn-purchase {
  border-radius: 5px;
  background-color: var(--brand);
  color: #fff;
  transition: all 0.4s ease-in-out;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  padding: 4px 21px;
  margin-top: 6px;
}
.cloud-pricing-item .btn-purchase:hover {
  background-color: var(--black);
  color: var(--brand);
}
.cloud-pricing-item:hover {
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}

.cloud-testimonial-area .testimonial-title {
  width: 65%;
  padding: 0;
}
.cloud-testimonial-area .testimonial-title span {
  position: relative;
  z-index: 1;
}
.cloud-testimonial-area .testimonial-title span svg {
  position: absolute;
  left: -5px;
  bottom: 2px;
  z-index: -1;
}
.cloud-testimonial-area .testimonial-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--brand);
}
.cloud-testimonial-area .testimonial-btn .icon {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s linear;
}
.cloud-testimonial-area .testimonial-btn:hover .icon {
  transform: translateX(5px);
}

.cloud-team-tab.nav-tabs {
  border-bottom: none;
}
.cloud-team-tab .nav-link {
  width: 48%;
  margin: 2.5px auto;
  border-radius: 10px;
  min-height: 180px;
}
.cloud-team-tab .nav-link:focus {
  border: transparent;
}
.cloud-team-tab .nav-link:hover, .cloud-team-tab .nav-link.active {
  border: 5px solid rgba(23, 23, 23, 0.15);
}
.cloud-team-tab .nav-link img {
  margin: auto;
}
.cloud-team-tab .nav-link:nth-child(1n) {
  background-color: #dcf5f0;
}
.cloud-team-tab .nav-link:nth-child(2n) {
  background-color: #edf5dc;
}
.cloud-team-tab .nav-link:nth-child(3n) {
  background-color: #f5dcf5;
}
.cloud-team-tab .nav-link:nth-child(4n) {
  background-color: #f5e2dc;
}
.cloud-team-tab.column-2nd .nav-link:nth-child(1n) {
  background-color: #dceef5;
}
.cloud-team-tab.column-2nd .nav-link:nth-child(2n) {
  background-color: #e4dcf5;
}
.cloud-team-tab.column-2nd .nav-link:nth-child(3n) {
  background-color: #f5ebdc;
}
.cloud-team-tab.column-2nd .nav-link:nth-child(4n) {
  background-color: #dcf5e0;
}

.cloud-team-content .tab-pane {
  padding-top: 0;
  margin: 2.5px;
  position: relative;
}
.cloud-team-content .tab-pane .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  border-top: 5px solid rgba(23, 23, 23, 0.15);
  display: block;
  width: 100%;
  height: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(23, 23, 23, 0.15);
  transform: scaleX(0);
  transform-origin: 0% 50%;
  transition: transform 0ms ease-out;
}
.cloud-team-content .tab-pane.active.show .progress-bar {
  transform: scaleX(1);
  transition: transform 4000ms ease-in;
}
.cloud-team-content .tab-pane .user-content {
  border-radius: 10px;
  padding: 45px 40px 38px;
  position: relative;
}
.cloud-team-content .tab-pane .user-content .user-img {
  width: 70px;
  height: 70px;
  margin-bottom: 56px;
  position: relative;
}
.cloud-team-content .tab-pane .user-content .user-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 1px;
  background-color: #848d95;
}
.cloud-team-content .tab-pane .user-content .user-quote {
  font-size: 15px;
  font-style: italic;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 37px;
}
.cloud-team-content .tab-pane .user-content .user-name {
  font-size: 12px;
  line-height: 24px;
  color: var(--black);
}
.cloud-team-content .tab-pane:nth-child(1n) .user-content {
  background-color: #dcf5f0;
}
.cloud-team-content .tab-pane:nth-child(2n) .user-content {
  background-color: #edf5dc;
}
.cloud-team-content .tab-pane:nth-child(3n) .user-content {
  background-color: #f5dcf5;
}
.cloud-team-content .tab-pane:nth-child(4n) .user-content {
  background-color: #f5e2dc;
}
.cloud-team-content .tab-pane:nth-child(5n) .user-content {
  background-color: #dceef5;
}
.cloud-team-content .tab-pane:nth-child(6n) .user-content {
  background-color: #e4dcf5;
}
.cloud-team-content .tab-pane:nth-child(7n) .user-content {
  background-color: #f5ebdc;
}
.cloud-team-content .tab-pane:nth-child(8n) .user-content {
  background-color: #dcf5e0;
}

.cloud-apps-area {
  overflow: hidden;
}
.cloud-apps-area .apps-title {
  width: 65%;
  padding: 0;
}
.cloud-apps-area .apps-title span {
  position: relative;
  z-index: 1;
}
.cloud-apps-area .apps-title span svg {
  position: absolute;
  left: -7px;
  bottom: -6px;
  z-index: -1;
}
.cloud-apps-area .apps-btn {
  font-size: 18px;
  font-weight: 500;
  color: var(--brand);
}
.cloud-apps-area .apps-btn .icon {
  display: inline-block;
  margin-left: 8px;
  transition: all 0.3s linear;
}
.cloud-apps-area .apps-btn:hover .icon {
  transform: translateX(5px);
}

.cloud-integrated-apps {
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 2px dashed #c8ccd0;
  position: relative;
}
.cloud-integrated-apps .app {
  z-index: 99;
}
.cloud-integrated-apps .app:nth-child(1) {
  top: -5%;
  right: 45%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(2) {
  bottom: 40%;
  left: -5%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(3) {
  right: -3%;
  bottom: 30%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(4) {
  top: 28%;
  left: 12%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(5) {
  top: 28%;
  right: 12%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(6) {
  right: 45%;
  bottom: 8%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(7) {
  top: 20%;
  left: 44%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(8) {
  right: 26%;
  bottom: 28%;
  position: absolute;
}
.cloud-integrated-apps .app:nth-child(9) {
  bottom: 28%;
  left: 26%;
  position: absolute;
}
.cloud-integrated-apps .app:not(.main) {
  border-radius: 50%;
  box-shadow: 0px 7px 12px 0px rgba(36, 39, 41, 0.1);
}
.cloud-integrated-apps .app.main {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.cloud-integrated-apps .bubbles-wrapp {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100%;
  animation: rotated 30s normal infinite linear;
}
.cloud-integrated-apps .bubble {
  border-radius: 50%;
  z-index: 9;
}
.cloud-integrated-apps .bubble:nth-child(1) {
  background-color: #d9e8ff;
  width: 30px;
  height: 30px;
  top: 16%;
  left: 10%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(2) {
  background-color: #ffd9d9;
  width: 22px;
  height: 22px;
  bottom: -1%;
  left: 42%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(3) {
  background-color: #cef2e4;
  width: 15px;
  height: 15px;
  top: 23%;
  right: 6%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(4) {
  background-color: #d9e8ff;
  width: 15px;
  height: 15px;
  top: 12%;
  left: 53%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(5) {
  background-color: #cef2e4;
  width: 22px;
  height: 22px;
  bottom: 35%;
  left: 14%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(6) {
  background-color: #ffd9d9;
  width: 30px;
  height: 30px;
  right: 13%;
  bottom: 35%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(7) {
  background-color: #ffd9d9;
  width: 15px;
  height: 15px;
  top: 40%;
  left: 26%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(8) {
  background-color: #cef2e4;
  width: 22px;
  height: 22px;
  top: 40%;
  right: 25%;
  position: absolute;
}
.cloud-integrated-apps .bubble:nth-child(9) {
  background-color: #d9e8ff;
  width: 30px;
  height: 30px;
  bottom: 23%;
  left: 50%;
  position: absolute;
}
.cloud-integrated-apps .apps-circle-mid,
.cloud-integrated-apps .apps-circle-small {
  border-radius: 50%;
  border: 2px dashed #c8ccd0;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.cloud-integrated-apps .apps-circle-mid {
  width: 600px;
  height: 600px;
}
.cloud-integrated-apps .apps-circle-small {
  width: 400px;
  height: 400px;
}

.cloud-cta-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cloud-cta-area .shape {
  position: absolute;
  z-index: -1;
}
.cloud-cta-area .shape:nth-child(1) {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #37bd8a;
  left: 9%;
  top: 30%;
}
.cloud-cta-area .shape:nth-child(2) {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--black);
  left: 38%;
  top: 10%;
}
.cloud-cta-area .shape:nth-child(3) {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #37bd8a;
  right: 38%;
  bottom: 20%;
}
.cloud-cta-area .shape:nth-child(4) {
  left: 27%;
  bottom: 0;
}
.cloud-cta-area .shape:nth-child(5) {
  right: 7%;
  top: 0;
}
.cloud-cta-area .shape:nth-child(6) {
  right: 16%;
  top: 40%;
}
.cloud-cta-area .cta-title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.cloud-cta-area .cta-title span {
  position: relative;
}
.cloud-cta-area .cta-title span svg {
  position: absolute;
  z-index: -1;
  left: -9px;
  bottom: 4px;
}
.cloud-cta-area .btn {
  border: none;
}

.cloud-join-left .join-title span {
  position: relative;
  z-index: 1;
}
.cloud-join-left .join-title span svg {
  position: absolute;
  z-index: -1;
  left: -10px;
  bottom: 2px;
}
.cloud-join-left .join-text {
  width: 95%;
}
.cloud-join-left .btn {
  border: none;
}

.cloud-join-right .w-30 {
  width: 30%;
}
.cloud-join-right .w-70 {
  width: 70%;
}
.cloud-join-right .right-item {
  background-color: #f5f4f4;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 37px 60px;
}
.cloud-join-right .right-item .item-text {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 7px;
}
.cloud-join-right .right-item .amount {
  color: var(--brand);
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 3px;
}

.footer-cloud {
  position: relative;
  z-index: 1;
}
.footer-cloud .shape {
  position: absolute;
  z-index: -1;
}
.footer-cloud .shape:nth-child(1) {
  left: 10%;
  bottom: 25%;
}
.footer-cloud .shape:nth-child(2) {
  right: 10%;
  bottom: 45%;
}
.footer-cloud .shape:nth-child(3) {
  right: 0;
  bottom: 0;
}
.footer-cloud .footer-widget .widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  margin-bottom: 20px;
}
.footer-cloud .footer-widget .widget-link-list li a {
  color: #5d5d66;
  line-height: 40px;
  text-transform: initial;
  transition: all 0.3s ease-in-out;
}
.footer-cloud .footer-widget .widget-link-list li a:hover {
  color: var(--brand);
}
.footer-cloud .footer-widget .widget-social-list li {
  display: inline-block;
}
.footer-cloud .footer-widget .widget-social-list li a {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #5d5d66;
  color: #fff;
  text-align: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}
.footer-cloud .footer-widget .widget-social-list li a i {
  font-size: 12px;
}
.footer-cloud .footer-widget .widget-social-list li a:hover {
  color: var(--brand);
}
.footer-cloud .footer-widget .form-group {
  margin-top: 34px;
  margin-bottom: 15px;
}
.footer-cloud .footer-widget .form-group .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 13px 24px;
  top: 0;
  right: 0;
  position: absolute;
  margin-top: 0;
}
.footer-cloud .footer-widget .form-group .btn:hover .icon {
  filter: invert(38%) sepia(71%) saturate(560%) hue-rotate(309deg) brightness(106%) contrast(94%);
}
.footer-cloud .copyright-text {
  font-size: 14px;
}
.footer-cloud .language-list select {
  color: #5d5d66;
  border: none;
  font-size: 14px;
  background: transparent;
}
.footer-cloud .footer-top {
  padding: 50px 0 75px;
}
@media screen and (min-width: 576px) {
  .footer-cloud .footer-top {
    padding: 95px 0 95px;
  }
}
@media screen and (min-width: 992px) {
  .footer-cloud .footer-top {
    padding: 135px 0 135px;
  }
}

.app-banner-area {
  background: linear-gradient(259.32deg, #dcf5fa 1.38%, rgba(237, 249, 250, 0) 97.54%);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.app-banner-area .shape {
  position: absolute;
  z-index: -1;
}
.app-banner-area .shape:not(.shape-svg) {
  border-radius: 50%;
  background-color: #676099;
}
.app-banner-area .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.app-banner-area .shape:nth-child(2) {
  width: 10px;
  height: 10px;
  left: 12%;
  top: 25%;
}
.app-banner-area .shape:nth-child(3) {
  width: 5px;
  height: 5px;
  left: 30%;
  top: 10%;
}
.app-banner-area .shape:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 18%;
  bottom: 30%;
}
.app-banner-area .shape:nth-child(5) {
  width: 8px;
  height: 8px;
  left: 43%;
  bottom: 17%;
}
.app-banner-area .shape:nth-child(6) {
  width: 9px;
  height: 9px;
  left: 58%;
  bottom: 40%;
}
.app-banner-area .shape:nth-child(7) {
  width: 5px;
  height: 5px;
  right: 41%;
  top: 26%;
}
.app-banner-area .shape:nth-child(8) {
  width: 5px;
  height: 5px;
  right: 9%;
  top: 24%;
}
.app-banner-area .shape:nth-child(9) {
  width: 6px;
  height: 6px;
  right: 16%;
  bottom: 17%;
}

.app-banner-content .banner-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.16;
  width: 90%;
}
.app-banner-content .banner-title span {
  position: relative;
}
.app-banner-content .banner-title span .border-shape {
  bottom: -17px;
  left: 10px;
  position: absolute;
}
.app-banner-content .banner-text {
  width: 90%;
}
.app-banner-content .btn {
  border: none;
  padding: 14px 23px;
}
.app-banner-content .btn .icon {
  display: inline-block;
  transition: 0.3s ease-out;
}
.app-banner-content .btn:hover .icon {
  filter: invert(47%) sepia(52%) saturate(2088%) hue-rotate(322deg) brightness(90%) contrast(106%);
}

.app-banner-images {
  display: flex;
  flex-wrap: nowrap;
  margin-right: -115px;
  position: relative;
}
.app-banner-images .banner-shape {
  position: absolute;
  z-index: -1;
}
.app-banner-images .banner-shape:nth-child(1) {
  left: 55%;
  top: -3%;
}
.app-banner-images .banner-shape:nth-child(2) {
  left: 7%;
  bottom: 8%;
}
.app-banner-images .main-img2 {
  margin-left: -280px;
}

.app-features-images {
  margin-left: 110px;
  position: relative;
}
.app-features-images .shape {
  position: absolute;
  z-index: -1;
}
.app-features-images .shape:nth-child(1) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #676099;
  left: -9%;
  bottom: 38%;
  animation: zoomIn 3s linear infinite both alternate-reverse;
}
.app-features-images .shape:nth-child(2) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #676099;
  right: 7%;
  bottom: 46%;
  animation: zoomIn 5s linear infinite both alternate-reverse;
}
.app-features-images .shape:nth-child(3) {
  left: -2%;
  top: -1%;
}
.app-features-images .shape:nth-child(4) {
  right: -6%;
  bottom: -15%;
}

.app-feature-content .feature-title span {
  display: inline-block;
  position: relative;
}
.app-feature-content .feature-title span .border-shape {
  bottom: -13px;
  left: -4px;
  position: absolute;
  width: 222px;
}
.app-feature-content .features-items .item {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.app-feature-content .features-items .item:not(:last-child) {
  margin-bottom: 30px;
}
.app-feature-content .features-items .item .item-icon {
  width: 15%;
}
.app-feature-content .features-items .item .item-icon img {
  margin: auto;
}
.app-feature-content .features-items .item .item-icon .icon {
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 4px 8px 12px 0px rgba(0, 0, 0, 0.06);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-feature-content .features-items .item .item-content {
  width: 70%;
}
.app-feature-content .features-items .item .item-content .item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.app-feature-content .features-items .item .item-content .item-text {
  font-size: 15px;
  line-height: 27px;
}

.app-video-wrapp {
  background-image: url("../images/home_10/video-img.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  text-align: center;
  padding: 280px 0;
  position: relative;
}
.app-video-wrapp:before {
  content: "";
  border-radius: 30px;
  width: 100%;
  height: 100%;
  background: rgba(34, 56, 112, 0.6);
  position: absolute;
  left: 0;
  top: 0;
}
.app-video-wrapp .play-btn {
  width: 90px;
  height: 90px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  font-size: 28px;
  text-align: center;
  line-height: 90px;
  position: relative;
  color: var(--brand);
}
.app-video-wrapp .play-btn i {
  font-size: 30px;
  margin-left: 4px;
}
.app-video-wrapp .play-btn i:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  -webkit-animation: pulse 2s infinite;
  -webkit-transform: scale(8);
  -ms-transform: scale(8);
  transform: scale(8);
  animation: pulse 2s infinite;
}

#how_it_works_mobile {
  display: none;
}
#how_it_works_mobile .app-how-item img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
#how_it_works_mobile .app-how-item .btn-more .icon {
  width: 16px;
}

.app-how-works-area .section-title span {
  position: relative;
}
.app-how-works-area .section-title span .border-shape {
  bottom: -3px;
  left: -5px;
  position: absolute;
  width: 207px;
}

.vertical_slideshow_desktop {
  height: 100vh;
  position: relative;
  height: 400vh;
}
.vertical_slideshow_desktop .box {
  top: 0;
  height: 100vh;
  min-height: 670px;
  position: sticky;
}
.vertical_slideshow_desktop .scroll_box {
  opacity: 0.4;
  transition: opacity 0.3s;
}
.vertical_slideshow_desktop.box1 #slideshow1, .vertical_slideshow_desktop.box2 #slideshow2, .vertical_slideshow_desktop.box3 #slideshow3 {
  opacity: 1;
}
.vertical_slideshow_desktop .message {
  display: none;
  transition: display 0.3s;
}
.vertical_slideshow_desktop.box1 #slideshow1 .message, .vertical_slideshow_desktop.box2 #slideshow2 .message, .vertical_slideshow_desktop.box3 #slideshow3 .message {
  display: block;
}
.vertical_slideshow_desktop #slideshow_img1,
.vertical_slideshow_desktop #slideshow_img2,
.vertical_slideshow_desktop #slideshow_img3 {
  display: none;
  opacity: 0;
  transition: all 0.3s;
}
.vertical_slideshow_desktop.box1 #slideshow_img1, .vertical_slideshow_desktop.box2 #slideshow_img2, .vertical_slideshow_desktop.box3 #slideshow_img3 {
  display: inline-block;
  opacity: 1;
}
.vertical_slideshow_desktop .pagination {
  display: flex;
  flex-direction: column;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
}
.vertical_slideshow_desktop .pagination-bullet1,
.vertical_slideshow_desktop .pagination-bullet2,
.vertical_slideshow_desktop .pagination-bullet3 {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #5d5d66;
  margin: 7.5px 0;
}
.vertical_slideshow_desktop.box1 .pagination-bullet1, .vertical_slideshow_desktop.box2 .pagination-bullet2, .vertical_slideshow_desktop.box3 .pagination-bullet3 {
  border: 1px solid var(--black);
  background: var(--black);
}

.app-how-item:not(:last-child) {
  margin-bottom: 20px;
}
.app-how-item .title {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  color: var(--black);
  line-height: 30px;
  letter-spacing: 0.5px;
}
.app-how-item .message {
  font-size: 15px;
  line-height: 27px;
  margin-top: 7px;
}
.app-how-item .btn-more {
  color: #5d5d66;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 5px;
  transition: all 0.3s ease-in-out;
}
.app-how-item .btn-more .icon {
  filter: invert(37%) sepia(4%) saturate(797%) hue-rotate(201deg) brightness(98%) contrast(96%);
  width: 16px;
  display: inline-block;
}
.app-how-item .btn-more:hover {
  color: var(--brand);
}
.app-how-item .btn-more:hover .icon {
  filter: invert(39%) sepia(40%) saturate(1728%) hue-rotate(321deg) brightness(105%) contrast(85%);
}

.app-how-images {
  position: relative;
}
.app-how-images .shape {
  position: absolute;
  z-index: -1;
}
.app-how-images .shape:nth-child(1) {
  width: 10px;
  height: 10px;
  top: -20px;
  left: -20px;
  position: absolute;
  border-radius: 50%;
  background: var(--brand);
  animation: zoomIn 7s linear infinite both alternate-reverse;
}
.app-how-images .shape:nth-child(2) {
  width: 6px;
  height: 6px;
  top: 30%;
  left: -10%;
  position: absolute;
  border-radius: 50%;
  background: #bbc0c4;
  animation: zoomIn 5s linear infinite both alternate-reverse;
}
.app-how-images .shape:nth-child(3) {
  width: 8px;
  height: 8px;
  right: 7%;
  bottom: 45%;
  position: absolute;
  border-radius: 50%;
  background: var(--brand);
  animation: zoomIn 3s linear infinite both alternate-reverse;
}
.app-how-images .shape:nth-child(4) {
  top: -3%;
  left: -4%;
  position: absolute;
}
.app-how-images .shape:nth-child(5) {
  top: -3%;
  right: 13%;
  position: absolute;
}
.app-how-images .shape:nth-child(6) {
  bottom: -14%;
  left: -25%;
  position: absolute;
}

.app-pricing-area {
  position: relative;
  background-image: url("../images/home_10/shapes/pricing-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.app-pricing-area .shape {
  position: absolute;
  z-index: -1;
}
.app-pricing-area .shape:nth-child(1) {
  width: 10px;
  height: 10px;
  top: 7%;
  left: 15%;
  position: absolute;
  border-radius: 50%;
  background: #37bd8a;
  animation: zoomIn 3s linear infinite both alternate-reverse;
}
.app-pricing-area .shape:nth-child(2) {
  width: 25px;
  height: 25px;
  top: 10%;
  left: 7%;
  position: absolute;
  border-radius: 50%;
  background: #bbc0c4;
  animation: zoomIn 6s linear infinite both alternate-reverse;
}
.app-pricing-area .shape:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 18%;
  right: 26%;
  position: absolute;
  border-radius: 50%;
  background: #37bd8a;
  animation: zoomIn 4s linear infinite both alternate-reverse;
}
.app-pricing-area .shape:nth-child(4) {
  width: 25px;
  height: 25px;
  top: 10%;
  right: 12%;
  position: absolute;
  border-radius: 50%;
  background: #bbc0c4;
  animation: zoomIn 5s linear infinite both alternate-reverse;
}
.app-pricing-area .shape:nth-child(5) {
  top: 16%;
  left: 24%;
  position: absolute;
}
.app-pricing-area .shape:nth-child(6) {
  right: 20%;
  bottom: 12%;
  position: absolute;
}
.app-pricing-area .pricing-title span {
  position: relative;
}
.app-pricing-area .pricing-title span .border-shape {
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 110px;
}
.app-pricing-area .title-text .offer {
  font-family: "Kalam", cursive;
  font-font-weight: 700;
  color: var(--brand);
}

.app-pricing-switcher.nav .nav-link {
  font-size: 16px;
  font-weight: 600;
  border-radius: 22.5px;
  border: 1px solid;
  padding: 3px 16px;
  margin: 0 10px;
}

.app-pricing-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s ease-in-out;
  padding: 38px 35px 50px;
}
.app-pricing-item.active {
  position: relative;
}
.app-pricing-item.active .popular-shape {
  top: -13%;
  right: -18%;
  position: absolute;
  z-index: 1;
}
.app-pricing-item:hover {
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.08);
}
.app-pricing-item .item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  margin-bottom: 14px;
}
.app-pricing-item .item-label {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.app-pricing-item .item-price {
  margin-bottom: 33px;
}
.app-pricing-item .item-price .dollar {
  color: var(--brand);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  position: relative;
}
.app-pricing-item .item-price .dollar svg {
  bottom: 0;
  left: 0;
  position: absolute;
}
.app-pricing-item .item-price .time {
  color: #9199A1;
  font-size: 18px;
  line-height: 36px;
}
.app-pricing-item .item-price .border-shape {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 41px;
}
.app-pricing-item ul {
  border-top: 1px solid #f0f0f0;
  padding-top: 33px;
  margin-bottom: 45px;
}
.app-pricing-item ul li {
  font-size: 15px;
  line-height: 40px;
}
.app-pricing-item .btn {
  border-color: var(--brand);
  color: var(--brand);
}
.app-pricing-item .btn:hover {
  background: var(--brand);
  color: #fff;
}

.app-pricing-question .question-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.app-pricing-question .question-text {
  color: var(--black);
  padding: 0 15px;
}
.app-pricing-question .question-text a {
  color: var(--brand);
  text-decoration: underline;
}

.app-testimonial-area {
  overflow: hidden;
}
.app-testimonial-area .section-title span {
  position: relative;
}
.app-testimonial-area .section-title span .border-shape {
  bottom: -5px;
  left: -8px;
  position: absolute;
  width: 150px;
}

.app-client-slider .slick-list {
  margin: 0 -25px;
  padding: 0 10px;
}
.app-client-slider .slick-dots {
  bottom: -5px;
}
.app-client-slider .slick-dots li {
  display: none;
}
.app-client-slider .slick-dots li.slick-active, .app-client-slider .slick-dots li.slick-active + li, .app-client-slider .slick-dots li.slick-active + li + li {
  display: inline-block;
}
.app-client-slider .slick-dots li:nth-last-child(1), .app-client-slider .slick-dots li:nth-last-child(2), .app-client-slider .slick-dots li:nth-last-child(3) {
  display: inline-block;
}
.app-client-slider .slick-dots li.slick-active ~ li:nth-last-child(1), .app-client-slider .slick-dots li.slick-active ~ li:nth-last-child(2), .app-client-slider .slick-dots li.slick-active ~ li:nth-last-child(3) {
  display: none;
}
.app-client-slider .slick-dots li.slick-active + li + li:nth-last-child(3), .app-client-slider .slick-dots li.slick-active + li + li:nth-last-child(2), .app-client-slider .slick-dots li.slick-active + li + li:nth-last-child(1), .app-client-slider .slick-dots li.slick-active + li:nth-last-child(3), .app-client-slider .slick-dots li.slick-active + li:nth-last-child(2), .app-client-slider .slick-dots li.slick-active + li:nth-last-child(1) {
  display: inline-block;
}
.app-client-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #bbc0c4;
}
.app-client-slider .slick-dots li.slick-active button {
  background-color: #5d5d66;
  border-color: #5d5d66;
}
.app-client-slider .single-client {
  padding: 20px 25px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease-out 0s;
  margin: 55px 15px;
  border-radius: 10px;
}
.app-client-slider .single-client.slick-center, .app-client-slider .single-client:hover {
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.08);
}
.app-client-slider .single-client img {
  border-radius: 50%;
  margin-top: -55px;
  width: auto !important;
}
.app-client-slider .single-client .quote {
  font-style: italic;
  margin: 25px 0 39px 0;
  position: relative;
}
.app-client-slider .single-client .quote::after {
  content: "\f10e";
  position: absolute;
  bottom: -15px;
  right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  color: #bbc0c4;
  font-size: 25px;
  opacity: 0.3;
}
.app-client-slider .single-client .client-info {
  display: flex;
  justify-content: space-between;
  padding: 0 0 10px 0;
  align-items: center;
}
.app-client-slider .single-client .client-info p {
  font-weight: 500;
  color: var(--black);
  text-transform: capitalize;
}
.app-client-slider .single-client .client-info .role {
  display: inline-block;
  font-size: 12px;
  color: #848d95;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 19px;
}
.app-client-slider .single-client .client-info .rating a i {
  color: #efba34;
  font-size: 14px;
}

.app-counter-area {
  background-image: url("../images/home_10/shapes/counter-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.app-counter-item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}
.app-counter-item .icon {
  margin-bottom: 20px;
  margin-right: auto;
}
.app-counter-item .item-amout {
  color: var(--brand);
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 5px;
}
.app-counter-item .item-title {
  color: var(--black);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.app-blog-area .section-title span {
  position: relative;
}
.app-blog-area .section-title span .border-shape {
  bottom: -5px;
  left: -2px;
  position: absolute;
  width: 170px;
}

.app-blog-slider .single-blog {
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  background: #fff;
  padding: 40px 30px;
  margin: 55px 15px;
  transition: all 0.3s ease-in-out;
}
.app-blog-slider .single-blog:hover {
  box-shadow: 0px 20px 50px 0px rgba(23, 23, 23, 0.08);
  background: var(--brand);
}
.app-blog-slider .single-blog:hover .item-title,
.app-blog-slider .single-blog:hover .item-text,
.app-blog-slider .single-blog:hover .item-btn {
  color: #fff;
}
.app-blog-slider .single-blog:hover .item-title .icon,
.app-blog-slider .single-blog:hover .item-text .icon,
.app-blog-slider .single-blog:hover .item-btn .icon {
  filter: invert(99%) sepia(6%) saturate(1%) hue-rotate(41deg) brightness(105%) contrast(100%);
}
.app-blog-slider .single-blog .item-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.app-blog-slider .single-blog .item-title:hover {
  color: #fff;
}
.app-blog-slider .single-blog .item-title:hover a {
  color: #fff;
}
.app-blog-slider .single-blog .item-text {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 65px;
  transition: all 0.3s ease-in-out;
}
.app-blog-slider .single-blog .item-btn {
  color: var(--black);
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 26px;
  transition: all 0.3s ease-in-out;
}
.app-blog-slider .single-blog .item-btn .icon {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.app-blog-slider .single-blog .item-btn:hover {
  color: #fff;
}
.app-blog-slider .single-blog .item-btn:hover .icon {
  filter: invert(99%) sepia(6%) saturate(1%) hue-rotate(41deg) brightness(105%) contrast(100%);
}
.app-blog-slider.slick-slider {
  margin: 0 -15px;
}
.app-blog-slider .slick-arrow {
  position: absolute;
  color: var(--black);
  z-index: 1;
  font-size: 30px;
  top: -50px;
  right: 15px;
  transition: all 0.3s ease-out;
}
.app-blog-slider .slick-arrow:before {
  display: none;
}
.app-blog-slider .slick-arrow.slick-prev {
  left: auto;
  right: 65px;
}

.app-cta-bg {
  background: #fcf8e3;
  overflow: hidden;
  border-radius: 20px;
  padding: 120px 45px 140px 80px;
}

.app-store-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 18px;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  border-radius: 5px;
  padding: 3px 20px;
  transition: 0.3s ease-out;
}
.app-store-link:hover {
  color: #fff;
  background: var(--black);
}
.app-store-link i {
  font-size: 35px;
  margin-right: 12px;
  transition: all 0.3s ease-out;
}
.app-store-link i:hover {
  transform: translateX(-5px);
}
.app-store-link span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-align: start;
  line-height: 19.2px;
  font-weight: 400;
}

.app-cta-images {
  width: 370px;
  min-height: 350px;
  height: 100%;
  margin-left: 45px;
  position: relative;
}
.app-cta-images .img {
  position: absolute;
}
.app-cta-images .img:nth-child(1) {
  bottom: 0;
  right: 30px;
}
.app-cta-images .img:nth-child(2) {
  bottom: 15px;
  right: 17px;
}
.app-cta-images .img:nth-child(3) {
  bottom: 72px;
  left: 62px;
}
.app-cta-images .img:nth-child(4) {
  top: 0;
  left: 10px;
}
.app-cta-images .img:nth-child(5) {
  bottom: 5px;
  left: 80px;
}

.app-clients-title span {
  position: relative;
}
.app-clients-title span .border-shape {
  bottom: -9px;
  left: 5px;
  position: absolute;
  width: 194px;
}

.footer-app {
  background-image: url("../images/home_10/shapes/footer-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-app .footer-text {
  color: var(--black);
  width: 85%;
}
.footer-app .footer-widget .widget-title {
  margin-top: 5px;
}
.footer-app .footer-widget .widget-social-list li a {
  background: var(--black);
}
.footer-app .footer-widget .widget-link-list li a {
  color: var(--black);
}
.footer-app .language-list select {
  color: var(--black);
  margin-left: -4px;
}
.footer-app .footer-bottom-menu li a {
  color: var(--black);
}
.footer-app .footer-bottom-menu li a:hover {
  color: var(--brand);
}
.footer-app .copyright-text {
  color: var(--black);
}

/*----------------------------------------*/
/*  About Page CSS
/*----------------------------------------*/
.about-banner {
  padding-bottom: 4.6875rem;
}
@media screen and (min-width: 992px) {
  .about-banner {
    padding-top: 11.25rem;
    padding-bottom: 8.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .about-banner {
    height: 742px;
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
  }
}
@media screen and (min-width: 992px) {
  .about-banner .section-title-left h2 {
    padding-right: 1.5625rem;
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about-banner .section-title-left h2 {
    font-size: 50px;
  }
}

.our-story-area {
  padding-top: 3.75rem;
  padding-bottom: 2.5rem;
}
.our-story-area h2 {
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.our-story {
  margin-bottom: 3rem;
}
.our-story p {
  font-size: 0.9375rem;
  line-height: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .our-story p {
    padding-right: 3.75rem;
  }
}
.our-story p + p {
  margin-top: 2.5rem;
}

.story-timeline {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  column-gap: 3.125rem;
  row-gap: 1.25rem;
}
@media screen and (min-width: 576px) {
  .story-timeline {
    flex-direction: row;
  }
}
.story-timeline + .story-timeline {
  padding-top: 1.5rem;
}
@media screen and (min-width: 576px) {
  .story-timeline + .story-timeline {
    padding-top: 3.75rem;
  }
  .story-timeline + .story-timeline .story-info-meta::after {
    content: "";
    bottom: 112%;
    left: 7px;
    position: absolute;
    width: 2px;
    height: 100px;
    background: #bbc0c4;
  }
}
.story-timeline .story-info-meta {
  position: relative;
  padding-left: 1.875rem;
}
.story-timeline .story-info-meta::before {
  content: "";
  top: 3px;
  left: 0;
  position: absolute;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  background: var(--brand);
}
.story-timeline .story-info-meta h5 {
  font-size: 0.9375rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin: 0;
}
.story-timeline .story-info-meta span {
  color: var(--brand);
  display: block;
}
.story-timeline p {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.6875rem;
  margin-top: -3px;
}

/*----------------------------------------*/
/*  About Page Two CSS
/*----------------------------------------*/
.about-banner-2 {
  background-image: linear-gradient(256.17deg, #fff6d6 1.04%, rgba(255, 255, 255, 0) 100%);
  overflow: hidden;
  padding-top: 270px;
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}
.about-banner-2 .shape {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.about-banner-2 .banner-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.about-banner-2 .banner-para {
  color: #4e4e4e;
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 40px;
}
.about-banner-2 .btn {
  font-weight: 600;
  font-size: 17px;
  line-height: 28px;
  margin-right: 15px;
  padding: 6px 18px;
}
.about-banner-2 .btn:hover {
  background: var(--black);
  color: var(--brand);
}
.about-banner-2 .btn-red {
  border-color: var(--brand);
}
.about-banner-2 .btn-red:hover {
  border-color: var(--black);
}

.video-wrapp {
  position: relative;
  left: 80px;
}
.video-wrapp .video-img {
  position: relative;
}
.video-wrapp .video-img img {
  border-radius: 6px;
}
.video-wrapp .video-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 15px;
  top: -15px;
  background-color: #57b6a5;
  opacity: 0.4;
  border-radius: 6px;
  z-index: -1;
}
.video-wrapp .video-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: var(--black);
  opacity: 0.4;
  border-radius: 6px;
  z-index: 1;
  transition: opacity 0.3s ease-in;
}
.video-wrapp .video-img:hover:after {
  opacity: 0;
}
.video-wrapp .play-btn {
  width: 55px;
  height: 55px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 59px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-wrapp .play-btn i {
  color: var(--black);
  font-size: 20px;
  margin-left: 4px;
}
.video-wrapp .play-btn i:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  box-shadow: 0 1px 15px 1px rgba(255, 255, 255, 0.5);
  content: "";
  transform: scale(8);
  animation: pulse 2s infinite;
}

.history-area {
  overflow: hidden;
  padding: 130px 0 140px;
}
.history-area .section-title-left {
  margin-bottom: 75px;
}
.history-area .section-title-left h2 {
  font-size: 30px;
}
@media screen and (min-width: 992px) {
  .history-area .section-title-left h2 {
    font-size: 40px;
  }
}

.history-scrollbar {
  display: block;
  height: 15px;
  margin-top: 1.5em;
  position: relative;
  width: 100%;
}
.history-scrollbar::before {
  background: #c6c1bd;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.history-scrollbar .ui-state-active,
.history-scrollbar .ui-state-hover,
.history-scrollbar .ui-state-focus,
.history-scrollbar .ui-slider-handle {
  display: block;
  width: 90px;
  height: 15px;
  margin-left: 0px;
  background: #ec595a;
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  position: absolute;
  transition: all 0.1s ease;
}
.history-scrollbar span:focus {
  border: none;
  outline: none;
}

.history-pagination {
  display: block;
  height: 16px;
  margin-top: 1.5em;
  position: relative;
  width: 100%;
}
.history-pagination:before {
  transform: translateY(-50%);
  background: #c6c1bd;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}

.history-item {
  cursor: pointer;
  transition: transform 1s ease;
  transform: translateX(2vw);
}
.history-item.slick-active {
  transform: translateX(0vw);
}
.history-item .item-content {
  padding-bottom: 60px;
}
.history-item .item-img {
  margin-bottom: 30px;
}
.history-item .item-img img {
  border-radius: 6px;
}
.history-item .item-title {
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
}
.history-item .item-para {
  color: #4f4f4f;
  margin-bottom: 45px;
  padding-right: 30px;
}
.history-item .date {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 46px;
  color: var(--text-color-2);
}

.fact-area {
  background-image: url("../images/about_2/award-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 125px 0 205px;
}
.fact-area .overlay {
  background-color: var(--black);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fact-inner {
  z-index: 1;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.fact-inner .section-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 125%;
  color: #fff;
}
.fact-inner .section-para {
  font-size: 22px;
  line-height: 36px;
  color: #fff;
}

.award-area {
  padding-bottom: 140px;
}

.award-item-area {
  margin-top: -135px;
}
.award-item-area .col-md-4 {
  z-index: 1;
}

.award-item {
  padding: 53px 42px 35px;
  border-radius: 5px;
  box-shadow: 0px 19.4871788025px 48.7179489136px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
.award-item .item-img {
  margin-bottom: 40px;
}
.award-item .item-text {
  font-size: 20px;
  line-height: 32px;
  color: #000;
}

.team-leader-area {
  padding: 135px 0;
}
.team-leader-area .section-title-left {
  margin-bottom: 70px;
}
.team-leader-area .section-title-left h2 {
  font-size: 30px;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .team-leader-area .section-title-left h2 {
    font-size: 40px;
  }
}
.team-leader-area .section-title-left p {
  font-size: 22px;
  line-height: 36px;
  color: #4f4f4f;
  margin-top: 25px;
}

.team-leader-item .item-img {
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 25px;
  position: relative;
  box-shadow: 0px 19.4871788025px 48.7179489136px 0px rgba(0, 0, 0, 0.08);
}
.team-leader-item .item-img:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #4f4f4f;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease-in-out;
}
.team-leader-item .item-img:hover:before {
  opacity: 0.7;
}
.team-leader-item .item-img img {
  border-radius: 5px;
  width: 100%;
}
.team-leader-item .item-title {
  font-weight: 600;
}
.team-leader-item .item-sub-title {
  color: var(--text-color-2);
}

.team-leader-more {
  border-radius: 5px;
  padding: 70px 55px;
  box-shadow: 0px 15px 30px 0px rgba(52, 52, 52, 0.15);
}
.team-leader-more .item-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 15px;
}
.team-leader-more .item-link {
  font-size: 18px;
  line-height: 32px;
  color: #2a4e96;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.team-leader-more .item-link i {
  margin-left: 8px;
}
.team-leader-more .item-link:hover {
  color: var(--brand);
}

.culture-area {
  overflow: hidden;
  background-image: url("../images/about_2/culture-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 135px 0 140px;
}
.culture-area .section-title-left h2 {
  font-size: 30px;
}
@media screen and (min-width: 992px) {
  .culture-area .section-title-left h2 {
    font-size: 40px;
  }
}

.culture-item {
  transition: all 0.3s ease-in-out;
}
.culture-item .item-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.culture-item .item-text {
  font-weight: 700;
  font-size: 28px;
  line-height: 39px;
  color: #fff;
  margin-bottom: 15px;
}
.culture-item .item-link {
  font-size: 20px;
  line-height: 32px;
  color: #ffc600;
}

.culture-left {
  width: 526px;
  margin-top: 220px;
}
.culture-left .culture-item {
  width: 370px;
  border-radius: 6px;
  padding: 55px 25px;
}
.culture-left .culture-item:nth-child(1) {
  background-color: #325288;
}
.culture-left .culture-item:nth-child(2) {
  background-color: #845460;
  margin-left: 156px;
  margin-top: -53px;
}

.culture-right {
  float: right;
  width: 652px;
  margin-top: -44px;
}
.culture-right .culture-item {
  width: 468px;
  border-radius: 6px;
  padding: 65px 40px;
}
.culture-right .culture-item:nth-child(1) {
  background-color: #114e60;
}
.culture-right .culture-item:nth-child(2) {
  background-color: #713287;
  margin-left: 184px;
  margin-top: -95px;
}
.culture-right .culture-item:nth-child(2) .item-link {
  text-align: right;
  display: block;
}

.about-cta-area {
  padding: 135px 0 95px;
  background-color: #fffbef;
  position: relative;
  z-index: 1;
}
.about-cta-area .shape {
  position: absolute;
  z-index: -1;
  top: 40px;
}
.about-cta-area .shape:nth-child(1) {
  left: 0;
}
.about-cta-area .shape:nth-child(2) {
  right: 0;
}
.about-cta-area .section-title-center h2 {
  font-size: 30px;
  line-height: 1.2;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .about-cta-area .section-title-center h2 {
    font-size: 40px;
  }
}
.about-cta-area .btn-red {
  border-color: var(--brand);
  font-size: 22px;
  line-height: 36px;
  padding: 7.5px 31.5px;
}
.about-cta-area .btn-red:hover {
  border-color: var(--black);
}

/*----------------------------------------*/
/*  Help Center Page CSS
/*----------------------------------------*/
.help-page-banner {
  position: relative;
  background: linear-gradient(102.7deg, rgba(236, 255, 221, 0.3) 0.49%, rgba(255, 251, 213, 0.3) 97.86%);
  padding: 100px 0 70px;
}
@media screen and (min-width: 576px) {
  .help-page-banner {
    padding: 140px 0 85px;
  }
}
@media screen and (min-width: 992px) {
  .help-page-banner {
    padding: 250px 0 170px;
  }
}
.help-page-banner .help-center-shape {
  top: 20%;
  left: 0;
  position: absolute;
  z-index: -1;
}
.help-page-banner .help-center-shape2 {
  top: 0;
  left: 40%;
  position: absolute;
  z-index: -1;
}
.help-page-banner .help-center-shape3 {
  top: 0;
  right: 40%;
  position: absolute;
  z-index: -1;
}
.help-page-banner .help-center-shape4 {
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.help-page-banner .shape16 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 15%;
}
@media screen and (min-width: 768px) {
  .help-page-banner .shape16 {
    width: 6%;
  }
}
@media screen and (min-width: 992px) {
  .help-page-banner .shape16 {
    width: 6%;
    top: 45%;
    left: 4%;
  }
}
@media screen and (min-width: 1200px) {
  .help-page-banner .shape16 {
    left: 15%;
    width: auto;
  }
}
@media screen and (min-width: 1441px) {
  .help-page-banner .shape16 {
    left: 21%;
  }
}
.help-page-banner h1 {
  font-weight: 700;
}
.help-page-banner .form-group {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
.help-page-banner .form-group input {
  padding-left: 6rem;
}
.help-page-banner .form-group button {
  position: absolute;
  right: auto;
  left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.8125rem 1.5rem;
  margin-top: 0;
}
.help-page-banner .popular-article {
  margin-top: 1.25rem;
}
.help-page-banner .popular-article li {
  display: inline-block;
}
.help-page-banner .popular-article li a {
  color: #5d5d66;
  text-decoration: underline;
  font-size: 0.9375rem;
}

.secondary-menu-area {
  background: #f9f9f9;
}
.secondary-menu-area .secondary-menu li {
  display: inline-block;
}
.secondary-menu-area .secondary-menu li.dropdown .sub-menu {
  width: auto;
}
@media screen and (min-width: 768px) {
  .secondary-menu-area .secondary-menu li.dropdown .sub-menu {
    width: 265px;
  }
}
.secondary-menu-area .secondary-menu li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
}
.secondary-menu-area .secondary-menu li a i {
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .secondary-menu-area .secondary-menu li a {
    padding: 1.25rem 0.625rem;
  }
}
@media screen and (min-width: 992px) {
  .secondary-menu-area .secondary-menu li a {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .secondary-menu-area .secondary-menu li a {
    padding: 1.4375rem 2.125rem 1.4375rem 2.75rem;
  }
}
.secondary-menu-area .secondary-menu .sub-menu {
  border: 1px solid #E6EDF0;
  padding: 0;
  box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  top: 115%;
}
.secondary-menu-area .secondary-menu .sub-menu::before {
  content: "";
  content: "";
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  left: 40px;
  border-left: 1px solid #e6eeef;
  border-top: 1px solid #e6eeef;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .secondary-menu-area .secondary-menu .sub-menu::before {
    left: auto;
    right: 50px;
  }
}
.secondary-menu-area .secondary-menu .sub-menu li {
  display: block;
}
.secondary-menu-area .secondary-menu .sub-menu li a {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6A737C !important;
  display: flex;
  line-height: 1.7;
  padding: 0.3125rem 1.25rem 0.3125rem 1.25rem;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 576px) {
  .secondary-menu-area .secondary-menu .sub-menu li a {
    display: block;
    line-height: inherit;
  }
}
.secondary-menu-area .secondary-menu .sub-menu li a .before-icon,
.secondary-menu-area .secondary-menu .sub-menu li a .after-icon {
  margin-right: 0.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  display: inline-block;
}
.secondary-menu-area .secondary-menu .sub-menu li a .after-icon {
  display: none;
}
.secondary-menu-area .secondary-menu .sub-menu li a:hover {
  color: #2c2c2c !important;
  background: #f9f9f9;
  border-color: transparent;
}
.secondary-menu-area .secondary-menu .sub-menu li a:hover .before-icon {
  display: none;
}
.secondary-menu-area .secondary-menu .sub-menu li a:hover .after-icon {
  display: inline-block;
}
.secondary-menu-area .secondary-menu .sub-menu li + li a {
  border-top: 1px solid #E6EDF0;
}

@media screen and (min-width: 992px) {
  .block-area {
    padding-top: 6.875rem;
  }
}

.block-item-wrapper {
  margin-top: 3.125rem;
}

.block-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.block-heading .block-icon {
  margin-right: 1.5625rem;
}

.block-title {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .block-title {
    margin-top: 0;
  }
}
.block-title h2 {
  font-weight: 700;
}

.block-thum {
  position: relative;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .block-thum {
    margin-top: 0;
  }
}
.block-thum::before {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--brand), 0.15);
  border-radius: 10px;
}
.block-thum img {
  width: 100%;
}
.block-thum .play-buttons {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.block-article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f9f9f9;
  padding: 1.5625rem;
  border-radius: 0.625rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (min-width: 576px) {
  .block-article {
    padding: 2.8125rem 2.5rem;
  }
}
.block-article + .block-article {
  margin-top: 1.5625rem;
}
.block-article .block-icon {
  width: 3.75rem;
  height: 3.75rem;
  line-height: 3.75rem;
  border-radius: 50%;
  background: #fff;
  margin-right: 1.5625rem;
  text-align: center;
  border: 1px solid #F0F0F0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.block-article .block-icon img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
}
.block-article .block-text {
  flex: 1;
}
.block-article .block-text h4 {
  font-weight: 600;
}
.block-article .block-text h4 a {
  text-decoration: none;
}
.block-article .block-text h4 a:hover {
  color: var(--brand);
}
.block-article .block-text .meta-teg {
  display: flex;
  flex-wrap: wrap;
  color: #848d95;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}
.block-article .block-text .meta-teg span {
  margin-right: 0.625rem;
}
.block-article .block-text .meta-teg span a {
  text-decoration: none;
}
.block-article .block-text .meta-teg span a:hover {
  text-decoration: underline;
}
.block-article .block-text .meta-teg :nth-child(1) {
  color: #5d5d66;
}
.block-article:hover {
  background: #fff;
  box-shadow: 0px 50px 80px rgba(53, 42, 67, 0.1);
}
.block-article:hover .block-icon {
  border-color: var(--brand);
}
.block-article:hover .block-text h4 {
  color: var(--brand);
}

.community-area {
  padding-top: 6.25rem;
}
@media screen and (min-width: 992px) {
  .community-area {
    padding-top: 8.75rem;
  }
}

.community-wrapper {
  background: #FFEEDD;
  padding: 3.125rem 1.25rem 2.5rem;
  border-radius: 1.5625rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 576px) {
  .community-wrapper {
    padding: 3.125rem 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .community-wrapper {
    padding: 5.625rem 5rem;
  }
}

@media screen and (min-width: 768px) {
  .community-text {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.community-text h3 {
  font-weight: 700;
  line-height: 1.2;
}
.community-text p {
  color: #696A74;
  line-height: 1.647;
  margin-top: 0.9375rem;
  max-width: 90%;
}

.community-social {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .community-social {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0;
  }
}

.community-social-item a {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  max-width: 21.875rem;
  display: flex;
  align-items: center;
  padding: 1.375rem 2.1875rem;
  margin-left: auto;
  text-decoration: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.community-social-item a:hover {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
}
.community-social-item + .community-social-item {
  margin-top: 1.5625rem;
}
.community-social-item i {
  width: 2.8125rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
  border-radius: 50%;
  text-align: center;
  margin-right: 1.25rem;
  font-size: 1.5rem;
}
.community-social-item .fa-facebook-f {
  border: 1px solid #1877F2;
  color: #1877F2;
}
.community-social-item .fa-meetup {
  border: 1px solid #93003F;
  color: #93003F;
}
.community-social-item span {
  color: var(--black);
  font-weight: 600;
  line-height: 22px;
  flex: 1;
}

/*================================================
Contact Page CSS
=================================================*/
.contact-banner-area {
  background: linear-gradient(91.28deg, #ffffff 2.19%, #fff6d6 97.81%);
  height: 21.875rem;
}
@media screen and (min-width: 768px) {
  .contact-banner-area {
    height: 28.125rem;
  }
}
@media screen and (min-width: 992px) {
  .contact-banner-area {
    height: 35rem;
    padding-top: 14.0625rem;
  }
}
.contact-banner-area .section-title-center {
  padding-top: 3.75rem;
}
@media screen and (min-width: 992px) {
  .contact-banner-area .section-title-center {
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .section-title-center {
    padding-top: 0;
  }
}
.contact-banner-area .section-title-center h2 {
  position: relative;
  z-index: 99;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .contact-banner-area .section-title-center h2 {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .section-title-center h2 {
    font-size: 4.375rem;
    line-height: 1.1;
    width: 75%;
  }
}
.contact-banner-area :is(.shape13, .shape14, .shape15, .shape16) {
  position: absolute;
  z-index: 1;
}
.contact-banner-area .shape13 {
  top: 70%;
  left: 0;
  width: 15%;
}
@media only screen and (min-width: 425px) {
  .contact-banner-area .shape13 {
    top: 61%;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner-area .shape13 {
    top: 48%;
    left: 7%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .contact-banner-area .shape13 {
    left: 12%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .shape13 {
    left: 17%;
    top: 55%;
  }
}
@media screen and (min-width: 1441px) {
  .contact-banner-area .shape13 {
    top: 48%;
  }
}
.contact-banner-area .shape14 {
  bottom: 30px;
  left: 26px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .contact-banner-area .shape14 {
    bottom: 70px;
    left: 16%;
    width: 62%;
  }
}
@media screen and (min-width: 992px) {
  .contact-banner-area .shape14 {
    bottom: 100px;
    left: 18%;
    width: 62%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .shape14 {
    width: 47%;
    bottom: 70px;
    left: 22%;
  }
}
@media screen and (min-width: 1441px) {
  .contact-banner-area .shape14 {
    width: auto;
    bottom: 70px;
    left: 20%;
  }
}
.contact-banner-area .shape15 {
  bottom: 15%;
  right: 0;
  width: 15%;
}
@media only screen and (min-width: 425px) {
  .contact-banner-area .shape15 {
    bottom: 18%;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner-area .shape15 {
    bottom: 26%;
    right: 15%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .contact-banner-area .shape15 {
    right: 16%;
    bottom: 29%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .shape15 {
    right: 27%;
    bottom: 26%;
  }
}
@media screen and (min-width: 1441px) {
  .contact-banner-area .shape15 {
    bottom: 30%;
  }
}
.contact-banner-area .shape16,
.contact-banner-area .pricing-shape-11 {
  top: 27%;
  right: 11%;
  position: absolute;
  z-index: 2;
  width: 6%;
}
@media only screen and (min-width: 425px) {
  .contact-banner-area .shape16,
.contact-banner-area .pricing-shape-11 {
    top: 26%;
  }
}
@media screen and (min-width: 768px) {
  .contact-banner-area .shape16,
.contact-banner-area .pricing-shape-11 {
    width: auto;
    right: 8%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .shape16,
.contact-banner-area .pricing-shape-11 {
    top: 25%;
    right: 10%;
  }
}
.contact-banner-area .pricing-shape-11 {
  top: 32%;
  right: 9%;
  z-index: 1;
  width: 15%;
}
@media screen and (min-width: 768px) {
  .contact-banner-area .pricing-shape-11 {
    top: 31%;
    right: 6%;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .contact-banner-area .pricing-shape-11 {
    right: 7%;
  }
}
@media screen and (min-width: 1200px) {
  .contact-banner-area .pricing-shape-11 {
    top: 29%;
    right: 9%;
  }
}

.contact-info {
  max-width: 20rem;
  border-radius: 0.625rem;
  background-color: #f9f9f9;
  padding: 2.8125rem 1.875rem 1.875rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.875rem;
}
.contact-info img {
  margin-left: auto;
  margin-right: auto;
}
.contact-info h4 {
  font-size: 1.375rem;
  margin-top: 0.9375rem;
}
.contact-info h4 a {
  text-decoration: none;
}
.contact-info h4 a:hover {
  text-decoration: underline;
  color: var(--black);
}

.contact-form {
  border: 1px solid #f0f0f0;
  border-radius: 0.9375rem;
  margin-top: 2.8125rem;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 4.375rem 5.625rem 4.6875rem;
  }
}
.contact-form .contact-form-select {
  margin-bottom: 1.25rem;
}
.contact-form label {
  margin-bottom: 0.625rem;
  font-size: 1.0625rem;
}
.contact-form .select-topic {
  width: 100%;
  height: 3.5rem;
  padding: 0.4375rem 1.5625rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #848d95;
  border: 2px solid #f0f0f0;
}
.contact-form .select-topic .list {
  width: 100%;
}
.contact-form .select-topic::after {
  content: "";
  width: 6px;
  height: 6px;
  right: 1.25rem;
}
.contact-form .select-topic:focus {
  border: 2px solid #2c2c2c;
  color: rgba(var(--black), 0.7);
}
.contact-form :is(.contact-form-name, .contact-form-email) {
  padding-top: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  border: 2px solid #f0f0f0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #2c2c2c;
}
@media screen and (min-width: 992px) {
  .contact-form textarea {
    height: 393px;
  }
}
.contact-form .contact-form-button {
  text-align: center;
  margin-top: 3.75rem;
}

.map {
  position: relative;
}
.map .map-marking-item {
  top: 48px;
  left: 65px;
  position: absolute;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item {
    top: 63px;
    left: 81px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item {
    top: 85px;
    left: 102px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item {
    top: 120px;
    left: 134px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item {
    top: 166px;
    left: 179px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item {
    top: 200px;
    left: 212px;
  }
}
.map .map-marking-item:nth-child(3) {
  top: 20px;
  left: 65px;
  position: absolute;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(3) {
    top: 27px;
    left: 86px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(3) {
    top: 39px;
    left: 110px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(3) {
    top: 48px;
    left: 118px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(3) {
    top: 82px;
    left: 193px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(3) {
    top: 101px;
    left: 229px;
  }
}
.map .map-marking-item:nth-child(4) {
  top: 15px;
  right: 80px;
  position: absolute;
  left: auto;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(4) {
    top: 37px;
    right: 117px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(4) {
    top: 50px;
    right: 152px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(4) {
    top: 74px;
    right: 210px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(4) {
    top: 104px;
    right: 289px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(4) {
    top: 129px;
    right: 347px;
  }
}
.map .map-marking-item:nth-child(5) {
  top: 53px;
  right: 80px;
  position: absolute;
  left: auto;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(5) {
    top: 75px;
    right: 110px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(5) {
    top: 102px;
    right: 146px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(5) {
    top: 142px;
    right: 200px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(5) {
    top: 200px;
    right: 275px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(5) {
    top: 243px;
    right: 330px;
  }
}
.map .map-marking-item:nth-child(6) {
  top: 43px;
  right: 53px;
  position: absolute;
  left: auto;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(6) {
    top: 65px;
    right: 78px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(6) {
    top: 87px;
    right: 104px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(6) {
    top: 124px;
    right: 145px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(6) {
    top: 171px;
    right: 201px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(6) {
    top: 208px;
    right: 243px;
  }
}
.map .map-marking-item:nth-child(7) {
  right: 29px;
  bottom: 38px;
  position: absolute;
  top: auto;
  left: auto;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(7) {
    right: 40px;
    bottom: 49px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(7) {
    right: 57px;
    bottom: 61px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(7) {
    right: 83px;
    bottom: 77px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(7) {
    right: 118px;
    bottom: 102px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(7) {
    right: 142px;
    bottom: 120px;
  }
}
.map .map-marking-item:nth-child(8) {
  top: 65px;
  right: 120px;
  position: absolute;
  left: auto;
}
@media screen and (min-width: 425px) {
  .map .map-marking-item:nth-child(8) {
    top: 96px;
    right: 166px;
  }
}
@media screen and (min-width: 576px) {
  .map .map-marking-item:nth-child(8) {
    top: 129px;
    right: 220px;
  }
}
@media screen and (min-width: 768px) {
  .map .map-marking-item:nth-child(8) {
    top: 178px;
    right: 302px;
  }
}
@media screen and (min-width: 992px) {
  .map .map-marking-item:nth-child(8) {
    top: 245px;
    right: 414px;
  }
}
@media screen and (min-width: 1200px) {
  .map .map-marking-item:nth-child(8) {
    top: 293px;
    right: 492px;
  }
}
.map .map-marking-point {
  position: relative;
  max-width: 173px;
}
.map .map-marking-point .marking-point {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  bottom: -20px;
  left: 50%;
  position: relative;
  background-color: var(--brand);
  transform: translateX(-50%);
  z-index: 9;
  cursor: pointer;
}
.map .map-marking-point .marking-point::before, .map .map-marking-point .marking-point::after {
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--brand);
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.map .map-marking-point .marking-point::before {
  content: "";
  width: 12px;
  height: 12px;
  opacity: 0.5;
  top: -2px;
  left: -2px;
  z-index: 5;
  animation: pulse-animation 2.1s infinite;
}
.map .map-marking-point .marking-point::after {
  content: "";
  width: 17px;
  height: 17px;
  opacity: 0.3;
  top: -5px;
  left: -5px;
  z-index: 1;
  animation: pulse-animation 2s infinite;
}
.map .map-marking-point .marking-point:hover::before, .map .map-marking-point .marking-point:hover::after {
  content: "";
  content: none;
}

.tippy-box[data-theme~=tooltip] {
  font-size: 12px;
  color: #5d5d66;
  max-width: 173px;
  border-radius: 0.625rem;
  background-color: #fff;
  top: 0;
  border: 1px solid #fff;
}
.tippy-box[data-theme~=tooltip]::before {
  content: "";
  bottom: -12px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #ffffff transparent transparent transparent;
}
.tippy-box[data-theme~=tooltip] .address-info {
  margin-left: 0.625rem !important;
}
.tippy-box[data-theme~=tooltip] .address-info h6 {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0;
}
.tippy-box[data-theme~=tooltip] .address-info span {
  font-size: 12px;
  color: #5d5d66;
  display: block;
}

.tippy-box[data-theme~=tooltip][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #ffffff;
}

.tippy-box[data-theme~=tooltip][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #ffffff;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #ec595a;
  }
  100% {
    box-shadow: 0 0 0 5px rgba(236, 89, 90, 0);
  }
}
/*================================================
Contact Page Two CSS
=================================================*/
.contact-banner-2 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 80px;
}
.contact-banner-2 .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.contact-banner-2 .banner-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 62px;
  letter-spacing: 0.5px;
  margin-bottom: 75px;
}
@media screen and (min-width: 992px) {
  .contact-banner-2 .banner-title {
    margin-bottom: 65px;
  }
}

.contact-card {
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(104, 115, 125, 0.15);
  border-radius: 6px;
  padding: 41px 40px;
}
.contact-card .item-icon {
  margin-bottom: 37px;
}
.contact-card .item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin: 0 35px 22px;
}
.contact-card .item-text {
  font-size: 18px;
  line-height: 28px;
  color: #70717b;
  margin-bottom: 60px;
}
.contact-card .item-btn {
  border-color: var(--brand);
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  display: block;
  margin: 0 35px;
  padding: 8.5px 0;
}
.contact-card .item-btn:hover {
  border-color: var(--black);
}

.contact-area-2 {
  padding: 120px 0;
  background-color: #ebfbff;
}
.contact-area-2 .section-title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 15px;
}
.contact-area-2 .section-title h2 span {
  font-weight: 600;
  font-size: 15px;
  line-height: 15px;
  color: var(--text-color-2);
  text-transform: uppercase;
  display: block;
  margin-bottom: 25px;
}
.contact-area-2 .section-title p {
  font-size: 22px;
  line-height: 36px;
  color: var(--text-color-2);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  width: 85%;
}

.contact-form-2 {
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(104, 115, 125, 0.15);
  border-radius: 6px;
  width: 72%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 110px;
}
.contact-form-2 .nav {
  background-color: #f2f4ff;
  border-radius: 100px;
  padding: 5px;
}
.contact-form-2 .nav .nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--black);
  padding: 10px 24px;
  position: relative;
  z-index: 1;
}
.contact-form-2 .nav .nav-link:before {
  content: "";
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 100px;
  z-index: -1;
  transform-origin: left;
  transform: scaleX(0);
  transition: all 0.2s linear;
}
.contact-form-2 .nav .nav-link.active:before {
  transform: scaleX(1);
}
.contact-form-2 .tab-pane {
  padding-top: 0;
}
.contact-form-2 .btn-red {
  border-color: var(--brand);
  display: block;
}
.contact-form-2 .btn-red:hover {
  border-color: var(--black);
}
.contact-form-2 input,
.contact-form-2 textarea {
  margin-bottom: 25px;
}
.contact-form-2 input:focus,
.contact-form-2 textarea:focus {
  border: 2px solid var(--brand);
}
.contact-form-2 label {
  font-weight: 600;
  font-size: 15px;
  line-height: 27px;
  color: var(--text-color-2);
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .contact-form-2 textarea {
    height: 200px;
  }
}

.contact-tab-info {
  margin: 40px auto 45px;
}
.contact-tab-info img {
  margin-bottom: 30px;
}
.contact-tab-info .tab-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.contact-tab-info .tab-para {
  color: var(--text-color-2);
}

.contact-locations {
  background-color: #515dc3;
  padding: 115px 190px 65px;
}
.contact-locations .section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 65px;
}
.contact-locations .items-wrapp {
  display: flex;
  flex-wrap: wrap;
}
.contact-locations .location-item {
  width: 50%;
  margin-bottom: 50px;
}
.contact-locations .location-item p {
  color: #f2f4f5;
}
.contact-locations .location-item p.title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-locations .location-item p.address {
  margin-bottom: 10px;
}
.contact-locations .location-item p a {
  color: #f2f4f5;
}

.contact-map {
  width: 100%;
  height: 100%;
}
.contact-map .google-map {
  width: 100%;
  height: 100%;
}

.social-links-area {
  background-color: #ebfbff;
  padding: 110px 0 120px;
}
.social-links-area .section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 70px;
}
.social-links-area .social-links li {
  display: inline-block;
  margin: 0 32px;
}
.social-links-area .social-links li a {
  color: var(--black);
  font-size: 20px;
  line-height: 32px;
  border: 2px solid var(--text-color-2);
  border-radius: 100px;
  padding: 12px 24px;
  transition: all 0.3s ease-in-out;
}
.social-links-area .social-links li a i {
  color: #4f4f4f;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}
.social-links-area .social-links li a:hover {
  color: #fff;
  border-color: var(--brand);
  background-color: var(--brand);
}
.social-links-area .social-links li a:hover i {
  color: #fff;
}

.follow-item {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 40px 20px 35px 20px;
  transition: all 0.3s ease-in-out;
}
.follow-item .item-icon {
  margin-bottom: 50px;
}
.follow-item .item-icon img {
  margin: 0 auto;
}
.follow-item .item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}
.follow-item .item-para {
  color: #8d8d8d;
  margin-bottom: 20px;
}
.follow-item .item-link {
  color: #8d8d8d;
  font-size: 12px;
  text-transform: uppercase;
}
.follow-item .item-link i {
  font-size: 28px;
  vertical-align: middle;
  margin-left: 8px;
}
.follow-item:hover {
  box-shadow: 0px 10px 30px 0px rgba(104, 115, 125, 0.15);
  background-color: #fff;
  border-radius: 6px;
}
.follow-item:hover .item-icon img {
  filter: invert(34%) sepia(97%) saturate(1550%) hue-rotate(331deg) brightness(101%) contrast(85%);
}
.follow-item:hover .item-title {
  color: var(--brand);
}
.follow-item:hover .item-link {
  color: #515dc3;
}

.blog-banner-area {
  background: linear-gradient(83.53deg, rgba(222, 250, 215, 0.1) 0%, #e3fad7 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 225px;
  padding-bottom: 130px;
}
.blog-banner-area .banner-shapes .shape {
  position: absolute;
  z-index: -1;
}
.blog-banner-area .banner-shapes .shape:nth-child(1) {
  bottom: 0%;
  left: -10%;
}
.blog-banner-area .banner-shapes .shape:nth-child(2) {
  top: -10%;
  left: 30%;
}
.blog-banner-area .banner-shapes .shape:nth-child(3) {
  top: 34%;
  right: 7%;
}
.blog-banner-area .banner-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 36px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .blog-banner-area .banner-title {
    font-size: 70px;
  }
}
.blog-banner-area .form-group {
  max-width: 100%;
  margin: 0 50px;
}
.blog-banner-area .tags-label {
  font-size: 14px;
  line-height: 21px;
  color: #6a737c;
  margin-right: 10px;
}
.blog-banner-area .search-tags {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-banner-area .search-tags li {
  display: inline-block;
  margin-right: 5px;
}
.blog-banner-area .search-tags li a {
  color: var(--black);
  font-size: 14px;
  padding: 0 15px;
  border: 1px solid var(--black);
  border-radius: 4px;
  transition: all 0.3s ease-out;
}
.blog-banner-area .search-tags li a:hover {
  background-color: var(--black);
  color: #fff;
}

.blog-post-area {
  background-color: #f2f4f5;
}
.blog-post-area .col-md-6:nth-child(1) .cate-btn,
.blog-post-area .col-md-6:nth-child(5) .cate-btn {
  background-color: #00b280;
}
.blog-post-area .col-md-6:nth-child(2) .cate-btn,
.blog-post-area .col-md-6:nth-child(6) .cate-btn {
  background-color: #4d7eff;
}
.blog-post-area .col-md-6:nth-child(4) .cate-btn,
.blog-post-area .col-md-6:nth-child(8) .cate-btn {
  background-color: #5c26a0;
}
.blog-post-area .pagination .page-link {
  height: 32px;
  width: 32px;
  border-radius: 4px;
  padding: 0;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ec595a;
  margin-right: 10px;
  margin-top: 10px;
  color: #ec595a;
}
.blog-post-area .pagination .page-link:hover {
  background-color: #ec595a;
  color: #fff;
}
.blog-post-area .pagination .page-item.active .page-link {
  background: #ec595a;
  color: #fff;
}

.post-content {
  padding-left: 35px;
  padding-right: 33px;
}
.post-content .cate-btn {
  font-size: 12px;
  line-height: 14.52px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  background: var(--black);
  padding: 5px 14.5px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.post-content .post-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  transition: all 0.2s linear;
}
.post-content .post-title a {
  color: var(--black);
  transition: all 0.2s linear;
}
.post-content .post-title a:hover {
  color: var(--brand);
}
.post-content .post-para {
  color: #6a737c;
  padding-bottom: 35px;
}
.post-content .auth-name {
  font-size: 14px;
  color: #535a60;
  line-height: 16px;
}
.post-content .auth-name i {
  margin-right: 5px;
}
.post-content .post-date p {
  font-size: 14px;
  color: #535a60;
}
.post-content .post-date p i {
  margin-right: 5px;
}

.top-post-item,
.post-item {
  border-radius: 15px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s linear;
}
.top-post-item:hover,
.post-item:hover {
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.175);
}
.top-post-item:hover .post-title a,
.post-item:hover .post-title a {
  color: var(--brand);
}
.top-post-item:hover .auth-name,
.post-item:hover .auth-name {
  color: var(--brand);
}

.top-post-item {
  display: flex;
  justify-content: center;
}
.top-post-item img {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.top-post-item .post-content {
  padding-left: 50px;
  padding-right: 35px;
  padding-top: 40px;
}

.post-item {
  margin-bottom: 30px;
}
.post-item img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.post-item .post-content {
  padding-top: 35px;
  padding-bottom: 35px;
  position: relative;
}
.post-item .post-content .cate-btn {
  position: absolute;
  top: -12px;
}

.blog-sidebar .form-group {
  margin: 0;
}
.blog-sidebar .form-group .btn-red {
  position: initial;
  width: 100%;
  margin-top: 30px;
}

.widget-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.widget-para {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 15px;
}

.subscribe-widget {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 40px;
}
.subscribe-widget .widget-title {
  margin-bottom: 15px;
}

.social-link-widget {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-link-widget .social-item {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px;
  width: 100px;
  height: 120px;
}
.social-link-widget .social-item img {
  display: inline-block;
  margin-bottom: 10px;
}
.social-link-widget .social-item .item-number {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.social-link-widget .social-item .item-title {
  font-size: 12px;
  line-height: 19.2px;
  color: #5d5d66;
}

.categorie-widget .categorie-list li {
  margin-bottom: 25px;
}
.categorie-widget .categorie-list li a {
  color: var(--black);
  font-size: 15px;
  line-height: 18.15px;
  padding-left: 20px;
  position: relative;
  transition: all 0.3s ease-out;
}
.categorie-widget .categorie-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-color: #848d95;
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
}
.categorie-widget .categorie-list li a span {
  margin-left: 15px;
}
.categorie-widget .categorie-list li a:hover {
  color: var(--brand);
}
.categorie-widget .categorie-list li a:hover::before {
  background-color: var(--brand);
}

.recent-news-widget .news-item {
  display: flex;
  margin-bottom: 20px;
}
.recent-news-widget .news-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  margin-right: 20px;
}
.recent-news-widget .news-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  transition: all 0.3s ease-out;
}
.recent-news-widget .news-title:hover {
  color: var(--brand);
}
.recent-news-widget .news-date {
  color: #848d95;
  font-size: 13px;
  line-height: 16.94px;
}
.recent-news-widget .news-date i {
  margin-right: 8px;
}

.tag-widget .tag-list li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
}
.tag-widget .tag-list li a {
  font-size: 14px;
  line-height: 16.94px;
  color: #5d5d66;
  padding: 6.5px 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  display: inline-block;
  transition: all 0.3s ease-out;
}
.tag-widget .tag-list li a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.instagram-widget .widget-title {
  margin-bottom: 40px;
}
.instagram-widget .instagram-items {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.instagram-widget .instagram-item {
  display: block;
  margin: 5px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.1s linear;
  width: 30%;
}
.instagram-widget .instagram-item:hover::after, .instagram-widget .instagram-item:hover::before {
  opacity: 1;
}
.instagram-widget .instagram-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: rgba(68, 29, 29, 0.5);
  opacity: 0;
}
.instagram-widget .instagram-item:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  content: "\f16d";
  display: inline-block;
  color: #441d1d;
  font-size: 50px;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.blog-single-banner {
  padding-top: 235px;
  padding-bottom: 125px;
}
.blog-single-banner .banner-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  text-align: left;
}
.blog-single-banner .post-content {
  padding: 0;
}

.single-post-area {
  position: relative;
}
.single-post-area .share-link {
  position: absolute;
  left: -65px;
  top: 135px;
  width: 46px;
}
.single-post-area .share-link li {
  margin-bottom: 10px;
  line-height: 0;
}
.single-post-area .share-link li span {
  font-weight: 500;
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
}
.single-post-area .share-link li a {
  transition: all 0.3s ease-out;
  border-radius: 50%;
  border: 1px solid #c8ccd0;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 33px;
  font-size: 14px;
}
.single-post-area .share-link li a i:before {
  color: #535a60;
}
.single-post-area .share-link li a:hover {
  background-color: #ec595a;
  border-color: #ec595a;
}
.single-post-area .share-link li a:hover i:before {
  color: #fff;
}
.single-post-area .tag-widget {
  background-color: #fff;
  padding: 40px;
  border-top: 1px solid #e6e6e6;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.single-post-area .tag-widget .tag-list li {
  margin-bottom: 0;
}
.single-post-area .tag-widget .tag-list li p {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
}
.single-post-area .widget-title {
  font-size: 30px;
  margin-bottom: 45px;
}

.single-post-item {
  background: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 35px 40px;
  padding-bottom: 0;
}
.single-post-item img {
  border-radius: 5px;
  width: 700px;
}
.single-post-item .post-content {
  padding: 0;
}
.single-post-item .post-content:nth-child(4) {
  padding-bottom: 15px;
}
.single-post-item .post-content .post-para {
  color: #5d5d66;
  line-height: 30px;
  padding-bottom: 25px;
}
.single-post-item .post-list li {
  line-height: 30px;
  padding-left: 20px;
  position: relative;
}
.single-post-item .post-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #c4c4c4;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.single-post-item .para-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  line-height: 30px;
  margin-bottom: 30px;
}

.single-post-author {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: auto auto;
  grid-column-gap: 20px;
}
.single-post-author .auth-name {
  font-size: 19px;
  line-height: 1.47;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.blog-comment-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}
.blog-comment-box .form-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 17px;
}
.blog-comment-box .form-para {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 15px;
}
.blog-comment-box .form-group {
  margin-top: 30px;
  max-width: 100%;
}
.blog-comment-box .form-group .btn {
  position: inherit;
}
.blog-comment-box .form-control {
  height: 60px;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 30px;
}
.blog-comment-box .form-control.message {
  height: 160px;
}
.blog-comment-box .form-control:focus {
  border: 1px solid #ec595a;
  box-shadow: none;
}
.blog-comment-box .form-control:focus ~ .floating-label {
  top: -13px;
  left: 26px;
  font-size: 12px;
  color: #ec595a;
  background-color: #fff;
  padding: 0 5px 0 5px;
}
.blog-comment-box .floating-label {
  position: absolute;
  pointer-events: none;
  left: 40px;
  top: 16px;
  transition: 0.2s;
  margin-bottom: 0;
  color: #9199a1;
}
.blog-comment-box .check-input {
  display: grid;
  gap: 5px;
  grid-template-columns: 14px auto;
}
.blog-comment-box .check-input input[type=checkbox] {
  padding: 0;
  border-color: #e6e6e6;
  width: 14px;
  height: 14px;
}
.blog-comment-box .check-input input[type=checkbox]:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}
.blog-comment-box .check-input input[type=checkbox]:focus {
  box-shadow: none;
  border: 1px solid var(--brand);
}
.blog-comment-box .check-input label {
  color: #606871;
  font-size: 14px;
  line-height: 1.5;
}

/* Blog Extended Grid */
.blog_top_post_area {
  background: #fafcfd;
  padding: 100px 0;
}

.blog_top_post {
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.06);
  border-radius: 6px;
  margin: 0;
}
.blog_top_post .b_top_post_content {
  padding: 50px 30px 50px 50px;
}
.blog_top_post .b_top_post_content .post_tag {
  padding-bottom: 15px;
}
.blog_top_post .b_top_post_content h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 17px;
  transition: color 0.2s linear;
}
.blog_top_post .b_top_post_content h3:hover {
  color: var(--brand);
}
.blog_top_post .b_top_post_content p {
  margin-bottom: 22px;
}
.blog_top_post .b_top_post_content .post_author {
  padding-top: 45px;
}

.post_tag a {
  font-size: 14px;
  color: #535a60;
  display: inline-block;
  margin-top: 10px;
}
.post_tag a.cat-Docy {
  color: #fd8d2a;
}
.post_tag a.cat-megento {
  color: #f26322;
}
.post_tag a.cat-woocommerce {
  color: #96588a;
}
.post_tag a.c_blue {
  color: #4c4cf1;
}
.post_tag a.cat-laravel {
  color: #ff2d20;
}
.post_tag a + a {
  padding-left: 10px;
}
.post_tag a + a:before {
  content: "";
  width: 1px;
  height: 13px;
  background: #c9c9e2;
  display: inline-block;
  margin-right: 13px;
}
.post_tag a.author {
  margin-top: 4px;
  margin-right: 5px;
}
.post_tag a.author .avatar {
  margin-right: 5px;
}

.blog_top_post .p_top_img {
  position: relative;
  padding-right: 0;
}

.blog_top_post .p_top_img .p_img {
  position: absolute;
  padding-right: 0;
  height: 100%;
  top: 0;
  right: 0;
  width: 100%;
  background: url("../assets/images/blog_grid/top_post.jpg");
  background-size: cover;
}

.learn_btn {
  font-size: 14px;
  font-weight: 500;
  color: #1d2746;
  padding-top: 5px;
  display: inline-block;
  transition: color 0.2s linear;
}
.learn_btn i {
  vertical-align: middle;
  display: inline-block;
  font-size: 20px;
  margin-left: 6px;
  transition: all 0.2s linear, color 0s linear;
}
.learn_btn:hover {
  color: var(--brand);
}
.learn_btn:hover i {
  transform: translateX(8px);
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.post_author .round_img {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.post_author .round_img img {
  height: 40px;
  width: auto;
}
.post_author .author_text {
  margin-top: 5px;
}
.post_author .author_text h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.post_author .author_text .date {
  font-size: 13px;
  font-weight: 400;
  color: #6b707f;
  line-height: 1.6;
}

.doc_blog_grid_area {
  padding-bottom: 100px;
}

.blog_grid_inner {
  border-top: 1px solid #e7edf0;
  background: #fafcfd;
}

.blog_tab .nav-item {
  margin-bottom: 0;
}
.blog_tab .nav-item .nav-link {
  padding: 17px 21px;
  border: 0;
  border-radius: 0;
  font-weight: 500;
  color: #858997;
  font-size: 14px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease-in;
}
.blog_tab .nav-item .nav-link:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  height: 2px;
  left: 0;
  background: var(--brand);
  transform: scale(0);
  transform-origin: 50% 50%;
  transition: all 0.3s ease-in;
}
.blog_tab .nav-item .nav-link.active, .blog_tab .nav-item .nav-link:hover {
  background: #ec595a0d;
  color: var(--brand);
}
.blog_tab .nav-item .nav-link.active:before, .blog_tab .nav-item .nav-link:hover:before {
  transform: scale(1);
}
.blog_tab .nav-item.cat-laravel .nav-link:hover {
  background: rgba(255, 45, 32, 0.2);
  color: #ff2d20;
}
.blog_tab .nav-item.cat-laravel .nav-link:before {
  background: #ff2d20;
}
.blog_tab .nav-item.cat-Docy .nav-link:hover {
  background: rgba(253, 141, 42, 0.2);
  color: #fd8d2a;
}
.blog_tab .nav-item.cat-Docy .nav-link:before {
  background: #fd8d2a;
}
.blog_tab .nav-item.cat-megento .nav-link:hover {
  background: rgba(242, 99, 34, 0.2);
  color: #f26322;
}
.blog_tab .nav-item.cat-megento .nav-link:before {
  background: #f26322;
}
.blog_tab .nav-item.cat-woocommerce .nav-link:hover {
  background: rgba(150, 88, 138, 0.2);
  color: #96588a;
}
.blog_tab .nav-item.cat-woocommerce .nav-link:before {
  background: #96588a;
}

.blog_grid_tab {
  padding-top: 60px;
  margin-bottom: -40px;
}

.blog_grid_post {
  border-radius: 4px;
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.06);
  margin-bottom: 40px;
  transition: all 0.3s linear;
  overflow: hidden;
  cursor: pointer;
}
.blog_grid_post .grid_post_content {
  padding: 20px 30px 25px;
}
.blog_grid_post .grid_post_content .post_tag {
  padding-bottom: 10px;
}
.blog_grid_post .grid_post_content .b_title {
  margin-bottom: 18px;
}
.blog_grid_post .grid_post_content .post_author {
  padding-top: 34px;
}
.blog_grid_post:hover {
  box-shadow: 0 20px 24px 0 rgba(4, 73, 89, 0.1);
}

.b_title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  transition: all 0.2s linear;
}

.b_plus,
.b_round,
.p_absolute {
  position: absolute;
}

.doc_action_area_three {
  background: #1d2746;
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.doc_action_area_three .shadows {
  left: 40%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
.doc_action_area_three .b_man {
  right: 100px;
  bottom: 0;
}

.action_content h2 {
  font-size: 36px;
  line-height: 1.33;
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
  margin-top: -10px;
}
.action_content h2 span {
  font-weight: 700;
}
.action_content p {
  font-size: 18px;
  color: #aeb5ca;
  margin-bottom: 0;
}

.footer_subscribe_form {
  position: relative;
}

.action_subscribe_form .form-group {
  position: relative;
  margin-top: 0;
  margin-bottom: 1rem;
  max-width: 100%;
}
.action_subscribe_form .form-group .form-control {
  height: 70px;
  line-height: 70px;
}
.action_subscribe_form .form-group .s_btn {
  padding: 7px 29px;
  transition: all 0.2s linear;
}
.action_subscribe_form .form-group .s_btn i {
  vertical-align: middle;
  font-size: 20px;
  transition: all 0.2s linear;
  display: inline-block;
}
.action_subscribe_form .form-group .s_btn:hover {
  background: var(--black);
}
.action_subscribe_form .form-group .s_btn:hover i {
  transform: translateX(5px);
}
.action_subscribe_form .form-control {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 30px 0 rgba(4, 73, 89, 0.08);
  height: 56px;
  border: 1px solid transparent;
  color: #1d2746;
  padding-left: 25px;
  position: relative;
  transition: all 0.2s linear;
}
.action_subscribe_form .s_btn {
  border: 0;
  font-size: 16px;
  font-weight: 400;
  background: var(--brand);
  border-radius: 4px;
  color: #fff;
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 8px;
  padding: 7px 22px;
}
.action_subscribe_form .form-check {
  position: relative;
  padding-left: 25px;
}
.action_subscribe_form .form-check input[type=checkbox] {
  position: relative;
  appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  outline-width: 0;
  height: auto;
  position: absolute;
  margin: 0;
  left: 0;
  top: 5px;
  box-sizing: border-box;
  padding: 0;
}
.action_subscribe_form .form-check input[type=checkbox]:focus {
  box-shadow: none;
}
.action_subscribe_form .form-check input[type=checkbox]:before, .action_subscribe_form .form-check input[type=checkbox]:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #aeb5ca;
  border-radius: 2px;
}
.action_subscribe_form .form-check input[type=checkbox]:before {
  width: 14px;
  height: 14px;
}
.action_subscribe_form .form-check input[type=checkbox]:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #4c4cf1;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  opacity: 0;
}
.action_subscribe_form .form-check input[type=checkbox]:checked:before {
  border-color: #4c4cf1;
}
.action_subscribe_form .form-check input[type=checkbox]:checked:after {
  opacity: 1;
}
.action_subscribe_form .form-check label {
  position: relative;
  font-size: 15px;
  color: #aeb5ca;
  font-weight: 500;
}

.doc_blog_grid_area_two {
  padding: 100px 0 120px;
}

.doc_border_btn {
  border: 2px solid rgba(236, 89, 90, 0.3);
  border-radius: 4px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  background: rgba(236, 89, 90, 0.05);
  display: inline-block;
  padding: 10px 40px;
  margin-top: 30px;
  transition: all 0.3s linear, color 0.2s;
}
.doc_border_btn i {
  margin-left: 6px;
  font-size: 16px;
  vertical-align: middle;
  display: inline-block;
  transition: all 0.2s linear, color 0s linear;
}
.doc_border_btn:hover {
  box-shadow: 0 10px 20px 0 rgba(236, 89, 90, 0.2);
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.doc_border_btn:hover i {
  transform: translateX(8px);
}

/*----------------------------------------*/
/*   SideBar CSS
/*----------------------------------------*/
.sidebar-header .sidebar-title h4 {
  font-size: 24px;
  font-weight: 600;
}
.sidebar-header .nice-select::after {
  display: none;
}
.sidebar-header .nice-select.open::before {
  transform: translateY(-50%) rotate(-180deg);
}
.sidebar-header .nice-select::before {
  content: "3";
  font-family: "ElegantIcons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  right: 10px;
  color: #6a737c;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.15s ease-in-out;
}
.sidebar-header .nice-select .current {
  font-size: 16px;
  font-weight: 400;
}

.right-sidebar-widget .widget-content ul li {
  line-height: 40px;
}
.right-sidebar-widget .widget-content ul li span {
  font-size: 16px;
}
.right-sidebar-widget .widget-content ul li .name {
  font-weight: 500;
  color: var(--black);
  margin-right: 5px;
}
.right-sidebar-widget .widget-content ul li .value {
  font-weight: 400;
}

.sticky_sidebar_widget {
  position: sticky;
  top: 110px;
  left: 0;
}

.single-sidebar-widget {
  border-radius: 6px;
  background-color: #fff;
}
.single-sidebar-widget .form-check .form-check-input:checked[type=radio] ~ .form-check-label {
  color: var(--brand);
}
.single-sidebar-widget.widget-shadow {
  box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
}
.single-sidebar-widget.widget-border {
  border: 1px solid #dcdee0;
  box-sizing: border-box;
}
.single-sidebar-widget .widget-title {
  background-color: #dcdee0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 20px 0 20px 25px;
  margin-bottom: 0;
}
.single-sidebar-widget .widget-title h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.single-sidebar-widget .form-control {
  height: 60px;
  background-color: #fff;
  border-radius: 5px;
  border-color: transparent;
  color: #a8a8b2;
  font-size: 14px;
}
.single-sidebar-widget .form-control:focus {
  border-color: var(--brand);
  box-shadow: none;
}
.single-sidebar-widget .form-control:placeholder-shown {
  font-size: 14px;
  font-weight: 400;
  color: #9199a1;
}
.single-sidebar-widget .input-search-field input {
  padding: 0 24px;
  color: #9199a1;
  font-size: 14px;
  font-weight: 400;
}
.single-sidebar-widget .input-search-field input::placeholder {
  color: #9199a1;
  font-size: 14px;
  font-weight: 400;
}
.single-sidebar-widget .input-search-field .btn {
  background-color: #6a737c;
  height: 60px;
  vertical-align: middle;
  padding: 19px 20px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
}
.single-sidebar-widget .input-search-field .btn i {
  font-size: 20px;
  color: #fff;
  transform: rotate(270deg);
  display: inline-block;
}
.single-sidebar-widget .select-location {
  position: relative;
}
.single-sidebar-widget .select-location .arrow-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(0);
}
.single-sidebar-widget .select-location .arrow-icon i {
  display: inline-block;
  font-size: 20px;
  color: #9199a1;
}
.single-sidebar-widget .select-location .es-input {
  background-image: none;
}

.catagory-list-widget .catagory-list .catagory-item .catagory-link {
  display: flex;
  justify-content: space-between;
  padding: 9px 20px 9px 52px;
  font-weight: 400;
  color: var(--text-color-2);
  transition: all 0.3s ease-out;
  line-height: 22px;
  position: relative;
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link::before {
  content: "N";
  font-family: "ElegantIcons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 14px;
  line-height: 1;
  position: absolute;
  color: var(--brand);
  left: 20px;
  top: 14px;
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link.active {
  color: var(--brand);
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link.active::before {
  visibility: visible;
  opacity: 1;
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link:hover {
  background-color: #f5f7fa;
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link .text {
  font-size: 14px;
}
.catagory-list-widget .catagory-list .catagory-item .catagory-link .number {
  font-size: 12px;
}

/*----------------------------------------*/
/*  Job Details CSS
/*----------------------------------------*/
.job-post-widget .single-job-post {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.job-post-widget .single-job-post:hover {
  box-shadow: 0 20px 45px 0 rgba(51, 77, 114, 0.15);
}
.job-post-widget .single-job-post:hover .job-title a {
  color: var(--brand);
}
.job-post-widget .single-job-post .post-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.job-post-widget .single-job-post .post-header .timestamp {
  font-size: 14px;
  font-weight: 400;
}
.job-post-widget .single-job-post .post-content {
  margin-top: 25px;
  padding: 0;
}
.job-post-widget .single-job-post .post-content p {
  font-size: 16px;
  line-height: 26px;
}

.job-description-widget .single-description-para {
  margin-top: 25px;
}
.job-description-widget .single-description-para h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 29.4px;
}
.job-description-widget .single-description-para h6 span {
  color: #fb4e4e;
}
.job-description-widget .single-description-para p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.job-description-widget .single-description-para ul li {
  margin-top: 7px;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}
.job-description-widget .single-description-para ul li::before {
  content: "^";
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 16px;
  font-family: "ElegantIcons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.job-description-widget .single-description-para .text_body_color {
  color: #6c6c73;
}
.job-description-widget .note-text p {
  font-size: 18px;
  color: #6c6c73;
  font-weight: 400;
  font-style: italic;
  line-height: 26px;
}
.job-description-widget .note-text p span {
  font-size: 18px;
  color: #45454d;
  font-weight: 700;
  font-style: normal;
}
.job-description-widget .custom-btn i {
  transform: translate(0);
  margin-right: 5px;
}
.job-description-widget .custom-btn:hover i {
  transform: translate(0);
}
.job-description-widget .btn-red {
  border-color: var(--brand);
}
.job-description-widget .btn-red i {
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1px) translateX(0px);
}
.job-description-widget .btn-red:hover {
  border-color: var(--black);
}
.job-description-widget .btn-red:hover i {
  transform: translateY(-1px) translateX(8px);
}
.job-description-widget .btn-fade {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(236, 89, 90, 0.08);
  color: var(--brand);
  border-radius: 4px;
  padding: 0 40px;
  transition: all 0.3s ease-in-out;
}
.job-description-widget .btn-fade:hover {
  background-color: var(--brand);
  color: #fff;
}

.job-application-modal {
  z-index: 9999;
}
.job-application-modal .modal-dialog {
  max-width: 768px;
}
.job-application-modal .modal-dialog .modal-content {
  border-radius: 10px;
  border: 1px solid #dcdee0;
  box-shadow: 0 15px 50px 0 rgba(20, 86, 166, 0.15);
}
.job-application-modal .modal-dialog .modal-content .modal-body {
  padding: 50px 60px;
}
.job-application-modal .modal-dialog .modal-content .modal-body .theme-btn {
  display: inline-block;
  background-color: rgba(236, 89, 90, 0.05);
  color: var(--brand);
  border-radius: 4px;
  padding: 10px 35px;
  transition: all 0.3s ease-in-out;
}
.job-application-modal .modal-dialog .modal-content .modal-body .theme-btn i {
  vertical-align: middle;
  transform: translate(0);
  padding-right: 5px;
}
.job-application-modal .modal-dialog .modal-content .modal-body .theme-btn:hover {
  background-color: var(--brand);
  color: #fff;
}
.job-application-modal .modal-dialog .dropzone {
  padding: 20px 0;
  background-color: #fff;
  border: 2px dashed #dcdee0;
  border-radius: 5px;
}
.job-application-modal .modal-dialog .dropzone:hover {
  border-color: var(--black);
}
.job-application-modal .modal-dialog .dropzone .dz-message .dz-button {
  font-weight: 700;
  color: var(--black);
  font-size: 17px;
  margin-bottom: 0;
}
.job-application-modal .label {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.job-application-modal .label span {
  color: #fb4e4e;
}
.job-application-modal .job-title {
  font-size: 24px;
}
.job-application-modal .form-control {
  height: 50px;
}
.job-application-modal .form-control:focus {
  border: 1px solid var(--black);
  outline: 0;
  box-shadow: none;
}
.job-application-modal textarea {
  height: inherit !important;
}
.job-application-modal .support {
  font-size: 14px;
  font-weight: 400;
}
.job-application-modal .iti {
  width: 100%;
}

.modal-backdrop {
  z-index: 9998;
  background-color: #172d42;
}
.modal-backdrop.show {
  opacity: 20%;
}

/*----------------------------------------*/
/*  Feature Job Post CSS
/*----------------------------------------*/
.feature-job-tab .feature-job-list {
  display: flex;
  border: none;
  flex-direction: column;
}
.feature-job-tab .feature-job-list li {
  margin: 12px 0;
}
.feature-job-tab .feature-job-list li a {
  border: none;
  background-color: transparent;
  padding: 0;
}

.single-feature-job {
  border-radius: 5px;
  box-shadow: 0 0.3px 0.9px 0 rgba(20, 85, 166, 0.1), 0 1.6px 3px 0 rgba(20, 85, 166, 0.13);
  background-color: #fff;
  padding: 30px;
  transition: all 0.3s ease-out;
}
.single-feature-job:hover {
  box-shadow: 0 10px 30px 0 rgba(51, 77, 114, 0.12);
}
.single-feature-job:hover .job-title {
  color: var(--brand);
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: all 0.3s ease-out;
}

.job-location {
  font-size: 14px;
  color: #787880;
  font-weight: 400;
}
.job-location i {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #787880;
  margin-right: 5px;
}

.job-catagory {
  font-size: 14px;
  color: #787880;
  font-weight: 400;
}
.job-catagory span {
  color: var(--brand);
}

.feature-job-description {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #dcdee0;
  background-color: #f5f7fa;
}
.feature-job-description p {
  font-size: 16px;
  font-weight: 400;
  color: #6a737c;
  line-height: 26px;
}

/*----------------------------------------*/
/*  Search Job CSS
/*----------------------------------------*/
.search-job {
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  z-index: 3;
  transform: translateY(-50%);
  box-shadow: 0 10px 30px 0 rgba(20, 86, 166, 0.05);
  padding: 50px 50px 60px 50px;
}
.search-job h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.search-job p {
  font-size: 18px;
  font-weight: 500;
}
.search-job .search-box {
  border: 1px solid #dde1e5;
  border-radius: 6px;
}
.search-job .search-box .input-field {
  position: relative;
}
.search-job .search-box .input-field span {
  position: absolute;
  display: inline-block;
  top: 6px;
  left: 15px;
  font-size: 20px;
  font-weight: 400;
  color: #a8a8b2;
}
.search-job .search-box .input-field .form-control {
  padding-left: 49px;
  border: none;
  height: 45px;
  color: #a8a8b2;
  font-size: 16px;
  font-weight: 400;
}
.search-job .search-box .input-field .form-control:focus {
  box-shadow: none;
}
.search-job .search-box .input-field .form-control::placeholder {
  color: #a8a8b2;
  font-size: 16px;
  font-weight: 400;
}
.search-job .search-box .custom-btn {
  color: var(--brand);
  font-size: 18px;
  font-weight: 500;
  background-color: rgba(236, 89, 90, 0.05);
  line-height: 48px;
  border-radius: 6px;
  padding: 0 40px;
  transition: all 0.3s ease-out;
}
.search-job .search-box .custom-btn:hover {
  background-color: var(--brand);
  color: #fff;
}

/*----------------------------------------*/
/*  Career page CSS
/*----------------------------------------*/
.job-post-wrapper,
.job-feature-area,
.recruitment-procces {
  background-color: #f5f7fa;
}
.job-post-wrapper .section-title h2,
.job-feature-area .section-title h2,
.recruitment-procces .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.job-post-wrapper .section-title P,
.job-feature-area .section-title P,
.recruitment-procces .section-title P {
  font-size: 16px;
  line-height: 26px;
}

.job-menu {
  background-color: rgba(23, 29, 36, 0.5);
}
.job-menu .header_logo .white_logo {
  display: block;
}
.job-menu .header_logo .main_logo {
  display: none;
}
.job-menu .menu > .nav-item > .nav-link {
  color: #fff;
}
.job-menu .menu > .nav-item > .nav-link.active {
  color: var(--brand);
}
.job-menu:not(.navbar_fixed) .right-nav a {
  color: #fff;
}

.navbar_fixed.job-menu .header_logo .white_logo {
  display: none;
}
.navbar_fixed.job-menu .header_logo .main_logo {
  display: block;
}
.navbar_fixed.job-menu .menu > .nav-item > .nav-link {
  color: var(--black);
}
.navbar_fixed.job-menu .menu > .nav-item > .nav-link.active {
  color: var(--brand);
}

.breadcrumb-widget {
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.breadcrumb-widget:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 62, 72, 0.8);
}
.breadcrumb-widget .breadcrumb-content {
  position: relative;
  z-index: 1;
  padding: 35px 0 65px;
}
@media screen and (min-width: 576px) {
  .breadcrumb-widget .breadcrumb-content {
    padding: 80px 0 100px;
  }
}
@media screen and (min-width: 992px) {
  .breadcrumb-widget .breadcrumb-content {
    padding: 170px 0 125px;
  }
}
.breadcrumb-widget .breadcrumb-content h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.breadcrumb-widget .breadcrumb-content ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.breadcrumb-widget .breadcrumb-content ul li {
  font-size: 16px;
  color: #c8ccd0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  position: relative;
  text-transform: capitalize;
  display: inline-block;
  margin: 10px 15px;
}
.breadcrumb-widget .breadcrumb-content ul li a {
  display: inline-block;
}
.breadcrumb-widget .breadcrumb-content ul li a::after {
  content: "5";
  position: absolute;
  right: -20px;
  top: 0;
  font-family: "ElegantIcons";
}

.feature-card-widget-2,
.feature-card-widget-7 {
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
  transition: all 0.3s ease-out;
}
.feature-card-widget-2 h4,
.feature-card-widget-7 h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (min-width: 1200px) {
  .feature-card-widget-2 h4,
.feature-card-widget-7 h4 {
    font-size: 24px;
  }
}
.feature-card-widget-2 p,
.feature-card-widget-7 p {
  font-size: 16px;
  line-height: 1.63;
}
.feature-card-widget-2:hover,
.feature-card-widget-7:hover {
  box-shadow: 0px 20px 45px rgba(51, 77, 114, 0.15);
}

.feature-card-widget-7 {
  padding: 38px 30px 30px 30px;
  border-radius: 5px;
}
.feature-card-widget-7 h4 {
  margin-bottom: 13px;
}
.feature-card-widget-7 .btn {
  margin-top: 45px;
  margin-bottom: 30px;
  padding: 8.5px 35px;
}
.feature-card-widget-7 .btn:hover {
  background-color: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.feature-jobs .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
.feature-jobs .btn {
  margin-top: 0;
  margin-bottom: 0;
  padding: 8.5px 35px;
}
.feature-jobs .btn i {
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-1px) translateX(0px);
}
.feature-jobs .btn:hover {
  background-color: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.feature-jobs .btn:hover i {
  transform: translateY(-1px) translateX(8px);
}

.feature-job-description .btn {
  margin-top: 70px;
  margin-bottom: 25px;
}

.feature-card-widget-2 {
  padding: 30px 25px;
  border-radius: 10px;
}
.feature-card-widget-2 h4 {
  margin-bottom: 12px;
  margin-top: 18px;
}

.our-offer .single-offer-box {
  padding: 50px;
  box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-out;
}
.our-offer .single-offer-box h2 {
  font-size: 36px;
  font-weight: 700;
}
.our-offer .single-offer-box p {
  font-size: 18px;
  margin: 23px 0 35px 0;
}
.our-offer .single-offer-box a {
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
  color: var(--brand);
  position: relative;
}
.our-offer .single-offer-box a span {
  position: relative;
}
.our-offer .single-offer-box a span:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1.5px;
  left: 50%;
  bottom: -2px;
  background-color: var(--brand);
  transition: all ease-in-out 0.2s;
}
.our-offer .single-offer-box a i {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.our-offer .single-offer-box a:hover span:after {
  width: 100%;
  left: 0;
}
.our-offer .single-offer-box:hover {
  box-shadow: 0 10px 30px 0 rgba(51, 77, 114, 0.12);
}

.job-post-wrapper .form-check-input[type=radio] {
  padding: 0;
  margin-top: 7px;
}
.job-post-wrapper .form-check-input[type=radio]:checked {
  border-color: var(--brand);
  background-color: var(--brand);
}
.job-post-wrapper .form-check-input[type=radio]:focus {
  box-shadow: 0 0 0 0.25rem rgba(236, 89, 90, 0.4);
}

.email-alert-widget {
  background-color: #fff;
  padding: 53px 69px;
  border-radius: 10px;
  box-shadow: 0 0.5px 1px 0 rgba(51, 77, 114, 0.1), 0px 1.6px 3.6px 0 rgba(51, 77, 114, 0.15);
  text-align: center;
  transition: all 0.3s ease-out;
}
.email-alert-widget h4 {
  font-size: 24px;
  font-weight: 600;
}
.email-alert-widget p {
  font-size: 18px;
}
.email-alert-widget .form-group {
  max-width: 100%;
}
.email-alert-widget:hover {
  box-shadow: 0 5px 15px 0 rgba(51, 77, 114, 0.1);
}

.services-banner {
  background-image: linear-gradient(91.28deg, #ffffff 2.19%, #fff6d6 97.81%);
  padding: 290px 0 195px;
}
.services-banner .banner-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 62px;
  letter-spacing: 0.5px;
}

.services-wrapp-area .section-title span {
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 15px;
}
.services-wrapp-area .section-title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  margin: 0 auto 90px;
  width: 60%;
}
.services-wrapp-area .items-wrapp .row {
  margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
  .services-wrapp-area .items-wrapp .row {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .services-wrapp-area .items-wrapp .row {
    margin: 0 35px 140px;
  }
}
@media screen and (min-width: 1200px) {
  .services-wrapp-area .items-wrapp .row:nth-child(1n) .services-content {
    margin-left: 120px;
    margin-right: 0;
  }
}
.services-wrapp-area .items-wrapp .row:nth-child(1n) .services-content .item-btn {
  background-color: #ac73c7;
}
@media screen and (min-width: 1200px) {
  .services-wrapp-area .items-wrapp .row:nth-child(2n) .services-content {
    margin-right: 100px;
    margin-left: 0;
  }
}
.services-wrapp-area .items-wrapp .row:nth-child(2n) .services-content .item-btn {
  background-color: #73c7bd;
}
.services-wrapp-area .items-wrapp .row:nth-child(3n) .services-content .item-btn {
  background-color: #89c773;
}
.services-wrapp-area .items-wrapp .row:nth-child(4n) .services-content .item-btn {
  background-color: #737cc7;
}

.services-img {
  border-radius: 6px;
}
.services-img img {
  border-radius: 6px;
}

.services-content .item-btn {
  width: 150px;
  height: 50px;
  border-radius: 2px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 40px;
}
.services-content .item-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 15px;
}
.services-content .item-text {
  color: var(--text-color-2);
}

.our-clients-area {
  background: rgba(222, 222, 222, 0.1);
}
.our-clients-area .section-title .red {
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
.our-clients-area .section-title h2 {
  font-weight: 800;
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 10px;
}
.our-clients-area .section-title p {
  color: #4f4f4f;
}
.our-clients-area .client-img {
  cursor: pointer;
  margin-bottom: 30px;
}

.service-testimonial-area {
  background-image: none;
  padding: 130px 0 140px;
}
.service-testimonial-area .shapes {
  display: none;
}
@media screen and (min-width: 1200px) {
  .service-testimonial-area .shapes {
    bottom: 15%;
    left: 2%;
    position: absolute;
  }
}
.service-testimonial-area .section-title h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  letter-spacing: 0.5px;
}
.service-testimonial-area .section-title p {
  font-size: 20px;
  line-height: 32px;
  width: 62%;
  margin: 0 auto 80px;
}
.service-testimonial-area .slider-navigation {
  justify-content: center;
}
.service-testimonial-area .testimonial-content p {
  color: #4F4F4F;
  font-weight: 600;
  margin-bottom: 25px;
}
.service-testimonial-area .testimonial-content .author-info {
  font-weight: 500;
  color: #4F4F4F;
}
.service-testimonial-area .testimonial-content .author-info span {
  display: inline;
  font-weight: 400;
}

.services-cta-area {
  position: relative;
  z-index: 1;
  background-color: var(--brand);
}
.services-cta-area .shape {
  position: absolute;
  z-index: -1;
}
.services-cta-area .shape:nth-child(1) {
  left: 0;
  top: 0;
}
.services-cta-area .shape:nth-child(2) {
  left: 0;
  top: 0;
}
.services-cta-area .shape:nth-child(3) {
  right: 0;
  top: 0;
}
.services-cta-area .shape:nth-child(4) {
  right: 0;
  top: 0;
}
.services-cta-area .cta-title {
  color: #fff;
  font-weight: 700;
  font-size: 50px;
  line-height: 62px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.services-cta-area .cta-text {
  font-size: 32px;
  line-height: 36px;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 50px;
}
.services-cta-area .btn {
  background-color: #fff;
  color: var(--black);
  border-color: #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 32px;
  line-height: 30px;
  padding: 25px 56px;
}
.services-cta-area .btn:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: #fff;
}

.heading-3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
}

.process-banner-area {
  background-image: linear-gradient(91.28deg, #ffffff 2.19%, #fff6d6 97.81%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.process-banner-area .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.process-banner-area .banner-title {
  font-size: 65px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.process-area-1 .title-text {
  font-size: 15px;
  line-height: 27px;
  width: 80%;
}

.process-item-1:not(:last-child) {
  margin-bottom: 55px;
}
.process-item-1 .process-item-content {
  display: flex;
  flex-direction: row;
  column-gap: 38px;
}
.process-item-1 .process-item-content .step p {
  font-size: 15px;
  line-height: 27px;
}
.process-item-1 .process-item-content .step p span {
  font-size: 44px;
  font-weight: 300;
  line-height: 44px;
  display: block;
  margin-top: 15px;
}
.process-item-1 .process-item-content .content .title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.process-item-1 .process-item-progress {
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
}
.process-item-1 .process-item-progress .icon {
  position: relative;
}
.process-item-1 .process-item-progress .icon i {
  top: 164%;
  left: 33%;
  position: absolute;
  transform: translateX(-50%) rotate(10deg);
  font-size: 40px;
  color: #ecb3b4;
}
.process-item-1 .process-item-progress .icon::before {
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--brand);
  opacity: 0.25;
}
.process-item-1 .process-item-progress .icon::after {
  content: "";
  top: 98%;
  left: 30%;
  position: absolute;
  width: 3px;
  height: 200px;
  background: var(--brand);
  transform: translateX(-50%) rotate(190deg);
}
.process-item-1 .process-item-progress .meta .percent {
  color: var(--brand);
  font-size: 36px;
  line-height: 48px;
}
.process-item-1 .process-item-progress .meta .label {
  color: var(--brand);
  font-size: 15px;
  line-height: 27px;
}
.process-item-1:nth-child(1) .process-item-progress .icon::before {
  content: "";
  width: 155px;
  height: 155px;
}
.process-item-1:nth-child(2) .process-item-progress {
  margin-right: 40px;
}
.process-item-1:nth-child(2) .process-item-progress .icon::before {
  content: "";
  width: 125px;
  height: 125px;
}
.process-item-1:nth-child(3) .process-item-progress {
  margin-right: 80px;
}
.process-item-1:nth-child(3) .process-item-progress .icon::before {
  content: "";
  width: 110px;
  height: 110px;
}
.process-item-1:nth-child(4) .process-item-progress {
  margin-right: 115px;
}
.process-item-1:nth-child(4) .process-item-progress .icon::before {
  content: "";
  width: 100px;
  height: 100px;
}
.process-item-1:nth-child(5) .process-item-progress {
  margin-right: 155px;
}
.process-item-1:nth-child(5) .process-item-progress .icon i {
  color: var(--brand);
  left: 16%;
  top: 225%;
}
.process-item-1:nth-child(5) .process-item-progress .icon::before {
  content: "";
  display: none;
}
.process-item-1:nth-child(5) .process-item-progress .icon::after {
  content: "";
  height: 135px;
}

.process-item-2 {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.process-item-2 .item-number {
  background: #fff;
  font-size: 36px;
  font-weight: 300;
  line-height: 64px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 40px;
}
.process-item-2 .item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 20px;
}
.process-item-2 .item-text {
  font-size: 15px;
  line-height: 27px;
}
.process-item-2 .line-1,
.process-item-2 .line-2,
.process-item-2 .line-3,
.process-item-2 .line-4 {
  position: absolute;
  z-index: -1;
  top: 17px;
}
.process-item-2 .line-1 {
  left: 0;
}
.process-item-2 .line-2 {
  left: 45%;
}
.process-item-2 .line-3 {
  left: 45%;
}
.process-item-2 .line-4 {
  left: 59%;
}

.process-area-3 .container {
  position: relative;
}
.process-area-3 .container .shape-border {
  top: 55px;
  left: 0;
  position: absolute;
  z-index: -1;
}
.process-area-3 .container .point {
  position: absolute;
  right: 48%;
  bottom: -4%;
  background: var(--brand);
  width: 20px;
  height: 20px;
  border: 4px solid #ecb3b4;
  border-radius: 2px;
}

.process-content-3 {
  padding-left: 55px;
}
.process-content-3 .item-number {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 62px;
  letter-spacing: 10px;
  color: #fff;
  text-shadow: -4px 4px #faeded;
  -webkit-text-stroke-color: var(--brand);
  -webkit-text-stroke-width: 3px;
  margin-bottom: 60px;
  position: relative;
}
.process-content-3 .item-number:before {
  content: "";
  position: absolute;
  left: -78px;
  top: 20px;
  background: var(--brand);
  width: 20px;
  height: 20px;
  border: 4px solid #ecb3b4;
  border-radius: 2px;
}
.process-content-3 .item-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 15px;
}
.process-content-3 .item-text {
  font-weight: 500;
}

.process-item-3:nth-child(1) .process-images-3 {
  position: relative;
  height: 480px;
}
.process-item-3:nth-child(1) .process-images-3 .shape {
  position: absolute;
}
.process-item-3:nth-child(1) .process-images-3 .shape:nth-child(1) {
  right: 0;
  bottom: 0;
}
.process-item-3:nth-child(1) .process-images-3 .shape:nth-child(2) {
  left: 14%;
  top: 30%;
}
.process-item-3:nth-child(1) .process-images-3 .shape:nth-child(3) {
  left: 36%;
  bottom: 29%;
}
.process-item-3:nth-child(2) .process-content-3 .item-number:before {
  left: -65px;
}
.process-item-3:nth-child(2) .process-images-3 {
  position: relative;
  height: 400px;
}
.process-item-3:nth-child(2) .process-images-3 .shape {
  position: absolute;
}
.process-item-3:nth-child(2) .process-images-3 .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.process-item-3:nth-child(2) .process-images-3 .shape:nth-child(2) {
  left: 7%;
  top: 5%;
}
.process-item-3:nth-child(2) .process-images-3 .shape:nth-child(3) {
  left: 2%;
  top: 0%;
  z-index: -1;
}
.process-item-3:nth-child(3) .process-images-3 {
  position: relative;
  height: 395px;
}
.process-item-3:nth-child(3) .process-images-3 .shape {
  position: absolute;
}
.process-item-3:nth-child(3) .process-images-3 .shape:nth-child(1) {
  right: 0;
  bottom: 0;
}
.process-item-3:nth-child(3) .process-images-3 .shape:nth-child(2) {
  left: 43%;
  top: 2%;
}
.process-item-3:nth-child(3) .process-images-3 .shape:nth-child(3) {
  left: 50%;
  top: -3%;
  z-index: -1;
}
.process-item-3:nth-child(3) .process-images-3 .shape:nth-child(4) {
  right: 0%;
  top: 13%;
}
.process-item-3:nth-child(3) .process-images-3 .shape:nth-child(5) {
  right: 2%;
  top: 17%;
  z-index: -1;
}
.process-item-3:nth-child(4) .process-content-3 .item-number:before {
  left: -65px;
}
.process-item-3:nth-child(4) .process-images-3 {
  position: relative;
  height: 395px;
}
.process-item-3:nth-child(4) .process-images-3 .shape {
  position: absolute;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(1) {
  left: 0;
  bottom: 0;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(2) {
  left: 17%;
  top: 12%;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(3) {
  left: 2%;
  top: 35%;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(4) {
  left: 6%;
  top: 30%;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(5) {
  right: 22%;
  top: 2%;
}
.process-item-3:nth-child(4) .process-images-3 .shape:nth-child(6) {
  right: 24%;
  top: 0%;
  z-index: -1;
}
.process-item-3:nth-child(5) .process-images-3 {
  position: relative;
  height: 395px;
}
.process-item-3:nth-child(5) .process-images-3 .shape {
  position: absolute;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(1) {
  right: 0;
  bottom: 0;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(2) {
  left: 45%;
  top: 0%;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(3) {
  left: 29%;
  top: 23%;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(4) {
  left: 32%;
  top: 19%;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(5) {
  left: 4%;
  top: 30%;
}
.process-item-3:nth-child(5) .process-images-3 .shape:nth-child(6) {
  left: 3%;
  top: 32%;
  z-index: -1;
}

.process-item-4 {
  text-align: center;
  position: relative;
}
.process-item-4 .item-icon {
  margin-bottom: 15px;
}
.process-item-4 .item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 5px;
}
.process-item-4 .item-text {
  font-size: 16px;
  line-height: 26px;
}
.process-item-4 .line-1,
.process-item-4 .line-2,
.process-item-4 .line-3 {
  position: absolute;
  z-index: -1;
}
.process-item-4 .line-1 {
  right: -120px;
  top: 25px;
}
.process-item-4 .line-2 {
  right: -124px;
  top: 12px;
}
.process-item-4 .line-3 {
  right: -120px;
  top: 25px;
}

.process-rate-5 p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.5px;
}
.process-rate-5 p.percent {
  font-weight: 500;
  color: var(--black);
}

.process-content-5 {
  border-left: 1px solid var(--brand);
  padding: 0 30px 40px 40px;
  position: relative;
}
.process-content-5 .content-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.process-item-5:not(:last-child) .process-content-5:before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--brand);
}
.process-item-5:first-child .process-content-5:after {
  content: "";
  width: 1px;
  height: 35px;
  background: #ECB3B4;
  position: absolute;
  left: -1px;
  top: -35px;
}
.process-item-5:last-child .process-content-5:before {
  content: "\e052";
  color: var(--brand);
  font-family: "Eleganticons";
  font-size: 24px;
  position: absolute;
  left: -12px;
  top: 0;
}
.process-item-5:last-child .process-content-5:after {
  content: url("../images/process/shape15.svg");
  position: absolute;
  left: -14px;
  bottom: -45px;
}

.sign-up-box {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(82, 63, 105, 0.15);
  position: relative;
}
.sign-up-box .shape {
  position: absolute;
  z-index: -1;
}
.sign-up-box .shape:nth-child(1) {
  left: -13%;
  top: 11%;
}
.sign-up-box .shape:nth-child(2) {
  left: -3%;
  bottom: -3%;
}
.sign-up-box .shape:nth-child(3) {
  right: -5%;
  top: 50%;
  animation: rotated 30s alternate infinite linear;
}

.form-images {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background: #ffeded;
  height: 100%;
  position: relative;
  margin-right: 24px;
}
.form-images .shapes {
  position: absolute;
  z-index: 1;
}
.form-images .shapes:nth-child(1) {
  width: 95px;
  height: 36px;
  background: #fce7e9;
  border: 3px solid #25383f;
  right: 3%;
  top: 6%;
}
.form-images .shapes:nth-child(2) {
  width: 95px;
  height: 36px;
  background: #fff;
  border: 3px solid #25383f;
  top: 20%;
  right: 33%;
}
.form-images .shapes:nth-child(3) {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #25383f;
  top: 17%;
  right: 40%;
}
.form-images .shapes:nth-child(4) {
  width: 66px;
  height: 68px;
  background: #25383f;
  left: 4%;
  top: 30%;
}
.form-images .shapes:nth-child(5) {
  width: 66px;
  height: 68px;
  background: #fff;
  border: 4px solid #25383f;
  left: 7%;
  top: 32%;
}
.form-images .shapes:nth-child(6) {
  left: 0;
  bottom: 25%;
}

.form-wrapper {
  padding: 90px 40px 100px 0;
}
.form-wrapper .heading-text {
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 27px;
}
.form-wrapper .create-with-list li {
  display: inline-block;
  margin-right: 10px;
}
.form-wrapper .create-with-list li a {
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  width: 65px;
  height: 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.form-wrapper .divider {
  font-size: 12px;
  color: #8d8d8d;
  line-height: 14.52px;
  margin-bottom: 35px;
  display: block;
  position: relative;
}
.form-wrapper .divider:after, .form-wrapper .divider:before {
  content: "";
  position: absolute;
  width: 172px;
  height: 1px;
  background: #c6c6c6;
  top: 50%;
}
.form-wrapper .divider:after {
  right: 10%;
}
.form-wrapper .divider:before {
  left: 10%;
}

.sign-up-form .meta-text {
  font-size: 12px;
  line-height: 16px;
}
.sign-up-form .check-text {
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 15px;
  padding-left: 25px;
  margin-top: 18px;
  position: relative;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.sign-up-form input[type=checkbox] {
  display: none;
}
.sign-up-form input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fbfcfd;
  top: 0;
  left: 0;
  border-radius: 2px;
  border: 1px solid var(--text-color-2);
}
.sign-up-form input[type=checkbox]:checked + label:before {
  content: "N";
  color: #fff;
  background: var(--brand);
  border: none;
  font-family: "ElegantIcons";
}
.sign-up-form .btn {
  border: none;
}
.sign-up-form .form-text {
  color: var(--text-color-2);
  font-size: 15px;
  line-height: 27px;
  text-align: center;
}
.sign-up-form .form-text a {
  color: #37bd8a;
}
.sign-up-form .forgot-link {
  color: #37bd8a;
  font-size: 15px;
  line-height: 15px;
  margin-top: 18px;
}

.wrapper-404 {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.wrapper-404 .shape {
  position: absolute;
  z-index: -1;
}
.wrapper-404 .shape:nth-child(1) {
  animation: rotated 30s alternate infinite linear;
  left: 20%;
  top: 15%;
}
.wrapper-404 .shape:nth-child(2) {
  animation: rotated 30s alternate infinite linear;
  left: 15%;
  top: 40%;
}
.wrapper-404 .shape:nth-child(3) {
  left: 22%;
  bottom: 30%;
}
.wrapper-404 .shape:nth-child(4) {
  left: 5%;
  bottom: 45%;
}
.wrapper-404 .shape:nth-child(5) {
  right: 14%;
  bottom: 8%;
}
.wrapper-404 .shape:nth-child(6) {
  animation: rotated 30s alternate infinite linear;
  right: 12%;
  top: 15%;
}
.wrapper-404 .shape:nth-child(7) {
  right: 15%;
  bottom: 15%;
}
.wrapper-404 .shape:nth-child(8) {
  right: 10%;
  top: 20%;
}

.wrapp-404 .btn {
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.5px;
  padding: 15px 52px;
}

.text-404 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.5px;
}

.comming-soon-wrapper {
  background-color: #515DC3;
  background-image: url("../images/comming_soon/bg.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.comming-soon-wrapper .shape {
  position: absolute;
  z-index: -1;
}
.comming-soon-wrapper .shape:nth-child(1) {
  left: 0;
  top: 0;
}
.comming-soon-wrapper .shape:nth-child(2) {
  left: 0;
  bottom: 8%;
}
.comming-soon-wrapper .shape:nth-child(3) {
  right: 40%;
  bottom: 8%;
}
.comming-soon-wrapper .shape:nth-child(4) {
  right: 44%;
  bottom: 17%;
}
.comming-soon-wrapper .shape:nth-child(5) {
  right: 45%;
  bottom: 14%;
}

.comming-soon-inner .logo {
  margin-bottom: 150px;
}
.comming-soon-inner .page-title {
  color: #fff;
  font-size: 70px;
  font-weight: 700;
  line-height: 77px;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.comming-soon-inner .title-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 50px;
}
.comming-soon-inner .form-group {
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 485px;
  width: 100%;
}
.comming-soon-inner input,
.comming-soon-inner .btn {
  border-color: #fff;
}
.comming-soon-inner .social-list li {
  display: inline-block;
  margin-right: 10px;
}
.comming-soon-inner .social-list li a {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  display: block;
  text-align: center;
  height: 32px;
  width: 32px;
  transition: all 0.3s ease-in-out;
}
.comming-soon-inner .social-list li a i {
  font-size: 12px;
}
.comming-soon-inner .social-list li a:hover {
  background-color: var(--brand);
  border-color: var(--brand);
}

.comming-soon-2 {
  background-color: var(--brand);
}
.comming-soon-2 .page-title,
.comming-soon-2 .title-text {
  color: var(--black);
}
.comming-soon-2 .social-list li a {
  color: var(--black);
  border-color: var(--black);
}
.comming-soon-2 .social-list li a:hover {
  background: var(--black);
  color: var(--brand);
}

.comming-soon-3 {
  background-image: none;
}
@media screen and (min-width: 992px) {
  .comming-soon-3 {
    background-image: url("../images/comming_soon/bg2.svg");
  }
}
.comming-soon-3 .shape:nth-child(1) {
  left: 3%;
  top: 10%;
}
.comming-soon-3 .shape:nth-child(2) {
  background: #ffd4d5;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 10%;
  top: 10%;
}
.comming-soon-3 .shape:nth-child(3) {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  left: 2%;
  bottom: 30%;
}
.comming-soon-3 .shape:nth-child(4) {
  right: auto;
  left: 7%;
  bottom: 15%;
}
.comming-soon-3 .shape:nth-child(5) {
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  right: 40%;
  top: 22%;
}
.comming-soon-3 .shape:nth-child(6) {
  right: 38%;
  top: 42%;
}
.comming-soon-3 .shape:nth-child(7) {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
  right: 36%;
  bottom: 37%;
}
.comming-soon-3 .shape:nth-child(8) {
  right: 25%;
  bottom: 12%;
}
.comming-soon-3 .shape:nth-child(9) {
  right: 29%;
  bottom: 7%;
}

.comming-soon-4 {
  background-image: linear-gradient(256.17deg, #fff6d6 1.04%, #ffffff 100%);
}
.comming-soon-4 .logo {
  margin-bottom: 85px;
}
.comming-soon-4 .page-title,
.comming-soon-4 .title-text {
  color: var(--black);
}
.comming-soon-4 .page-title {
  margin-bottom: 20px;
}
.comming-soon-4 input,
.comming-soon-4 .btn {
  border-color: var(--black);
}
.comming-soon-4 .social-list li a {
  border-color: var(--black);
  color: var(--black);
}
.comming-soon-4 .social-list li a:hover {
  color: #fff;
  border-color: var(--brand);
}
.comming-soon-4 .right-img {
  margin-right: -275px;
}
.comming-soon-4 .shape:nth-child(1) {
  left: 0;
  top: 0;
}
.comming-soon-4 .shape:nth-child(2) {
  left: 0;
  top: 0;
}
.comming-soon-4 .shape:nth-child(3) {
  right: auto;
  left: 3%;
  bottom: 45%;
}
.comming-soon-4 .shape:nth-child(4) {
  right: auto;
  left: 7%;
  bottom: 15%;
}
.comming-soon-4 .shape:nth-child(5) {
  right: 47%;
  top: auto;
  bottom: 17%;
}
.comming-soon-4 .shape:nth-child(6) {
  right: 38%;
  top: 42%;
  animation: star 7s ease-in-out infinite alternate;
}
.comming-soon-4 .shape:nth-child(7) {
  right: 18%;
  bottom: auto;
  top: 8%;
  animation: star2 4s ease-in-out infinite alternate;
}
.comming-soon-4 .shape:nth-child(8) {
  right: 20%;
  bottom: auto;
  top: 32%;
}
.comming-soon-4 .shape:nth-child(9) {
  right: 6%;
  bottom: auto;
  top: 37%;
}
.comming-soon-4 .shape:nth-child(10) {
  right: 4%;
  bottom: 22%;
}
.comming-soon-4 .shape:nth-child(11) {
  top: 10%;
  left: 5%;
  animation: star 9s both infinite alternate 5s;
}
.comming-soon-4 .shape:nth-child(12) {
  top: 15%;
  left: 10%;
  animation: star 9s both infinite alternate 5s;
}
.comming-soon-4 .shape:nth-child(13) {
  top: 15%;
  left: 30%;
  animation: star2 4s ease-in-out infinite alternate;
}

.comming-countdown {
  display: flex;
  gap: 35px;
  padding-bottom: 90px;
}
.comming-countdown .box {
  color: var(--black);
  width: 100px;
  height: 100px;
  border: 3px solid var(--brand);
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding-top: 22.5px;
}
.comming-countdown .box span {
  border: none;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
}

@keyframes star {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(0.8);
    opacity: 1;
  }
  75% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.01) rotate(-5deg);
    opacity: 1;
  }
}
@keyframes star2 {
  0% {
    transform: scale(0.3);
  }
  50% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.01);
  }
}

/*# sourceMappingURL=style.css.map */

.w-20{
  width: 20% !important;
}

.w-245{
  width: 245px !important;
}

.w-735{
  width: 735px !important;
}


.w-70px{
  width: 70px !important;
}

.h-80px{
  height: 80px !important;
}

.h-660{
  height: 660px !important;
}

.w-86{
  width: 86px !important;
}

.h-86{
  height: 86px !important;
}

.w-42{
  width: 42px !important;
}

.h-42{
  height: 42px !important;
}

/* GOOGLE TRANSLATE */

.goog-te-banner-frame {
    display: none;
    margin-top: -20px;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-combo {
    color: #000 !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
    -webkit-tap-highlight-color: transparent !important;
    background-color: #fff !important;
    border-radius: 5px !important;
    border: solid 1px #e8e8e8 !important;
    box-sizing: border-box !important;
    clear: both !important;
    cursor: pointer !important;
    display: block !important;
    float: left !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: normal !important;
    height: 42px !important;
    line-height: 40px !important;
    outline: none !important;
    padding-left: 18px !important;
    padding-right: 30px !important;
    position: relative !important;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    white-space: nowrap !important;
    width: auto !important;
    margin: 2px 0 !important;
}

/* responsive  */
.features-area-13 {
  overflow: hidden;
}
.features-area-14 {
  overflow: hidden;
}

body::-webkit-scrollbar,
.goog-te-gadget .goog-te-combo::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track,
.goog-te-gadget .goog-te-combo::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb,
.goog-te-gadget .goog-te-combo::-webkit-scrollbar-thumb {
    background-color: var(--brand-6);
    outline: 1px solid slategrey;
    border-radius: 2px;
}

.transition-3{
  transition: all 0.3s ease-in !important;
}