:root {
  --primary-color: #0a091d;
  --secondary-color: #ef3d48;
  --text-color: #333;
  --text-gray: #8f8f8f;
  --background-color: #f5f5f5;
  --border-color: #e7e7e7;
  --bg-linear-gradient: linear-gradient(90deg, white, #e5be37, #f15829, #ef3d48, #8a3487, #474ea1, #2ac0f1)
}

@font-face {
  font-family: 'Helvetica Neue Bold';
  font-weight: 700;
  src: url('../fonts/HelveticaNeue-Bold.eot');
  src: url('../fonts/HelveticaNeue-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Bold.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Bold.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Regular';
  font-weight: 400;
  src: url('../fonts/HelveticaNeue-Extended.eot');
  src: url('../fonts/HelveticaNeue-Extended.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeue-Extended.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Extended.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Medium';
  font-weight: 500;
  src: url('../fonts/HelveticaNeue-MediumExt.eot');
  src: url('../fonts/HelveticaNeue-MediumExt.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeue-MediumExt.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-MediumExt.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Neue Light';
  font-weight: 300;
  src: url('../fonts/HelveticaNeue-ThinExt.eot');
  src: url('../fonts/HelveticaNeue-ThinExt.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeue-ThinExt.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-ThinExt.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}




html {
  font-size: 10px;
}

body {
  font-family: "Helvetica Neue Light";
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  color: var(--primary-color);
}

ul li {
  margin-bottom: 1.5rem;
}

header ul li,
footer ul li,
header ul,
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1750px;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}


a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

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


span,
a {
  display: inline-block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: 'Helvetica Neue Regular';
  line-height: 1.23;
  margin-bottom: 2rem
}

h1,
.h1 {
  font-size: clamp(5rem, 8vw, 10rem);
  line-height: 1.2;
  font-family: "Helvetica Neue Medium";
  font-weight: 500
}

@media (max-width:1600px) {

  h1,
  .h1 {
    font-size: clamp(5rem, 6vw, 14rem)
  }
}

@media (max-width:767px) {

  h1,
  .h1 {
    font-size: clamp(3rem, 11vw, 7rem)
  }
}

h2,
.h2 {
  font-size: clamp(3.5rem, 3vw, 6rem)
}

h3,
.h3 {
  font-size: clamp(2.2rem, 2vw, 2.8rem)
}

h4,
.h4 {
  font-size: clamp(2rem, 3vw, 2.4rem)
}

p {
  margin-bottom: clamp(2rem, 2vw, 3.5rem);
  line-height: 1.87
}

@media (max-width:767px) {
  p {
    line-height: 1.4
  }
}

b,
strong {
  font-family: "Helvetica Neue Medium";
}

.primary_btn {
  padding: 2.4rem 3.2rem;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 11rem;
  font-size: 1.6rem;
  line-height: 1.4;
  font-family: "Helvetica Neue regular";
  font-weight: 500;
  border: 0.2rem solid var(--secondary-color);
  background-color: var(--secondary-color);
  color: #fff;
  min-width: clamp(26rem, 16vw, 32.3rem);
  transition: 300ms all ease-in-out;
}

.primary_btn i {
  font-size: 2.2rem;
}

.primary_btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

*:not(.example_text *,
  .fancybox-stage *) {
  transition: 300ms all ease-in-out
}

.outline_btn {
  padding: 1.6rem 3.2rem;
  border: 0.2rem solid var(--secondary-color);
  border-radius: 11rem;
  font-size: 1.6rem;
  line-height: 1.4;
  font-family: "Helvetica Neue Medium";
  font-weight: 500;
  gap: 3rem;
  color: #fff;
}

.outline_btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}


p {
  font-family: 'Helvetica Neue Light';
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 2px solid transparent;
  padding: 1.5rem 3rem;
  font-size: 16px;
  line-height: 1.5;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

.secondary_banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: clamp(35rem, 35vw, 60rem);
  position: relative;
}

.secondary_banner h1,
.secondary_banner .h1 {
  font-size: clamp(5rem, 8vw, 14rem);
  line-height: 1.07;
  font-family: "Helvetica Neue Medium";
  font-weight: 500;
}

.secondary_banner .container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*===== All Section Title Style =====*/
.section-title .title {
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
  color: #000;
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.section-title .text {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-top: 24px;
}

/*===========================
    2.HEADER css 
===========================*/
/*===== NAVBAR ONE =====*/
.navgition {
  padding: 1rem 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navgition.navgition-transparent {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.navgition.sticky {
  position: fixed;
  background-color: var(--primary-color);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navgition .navbar {
  position: relative;
  padding: 0;
}

.navgition .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navgition .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navgition .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 8;
    padding: 10px 0;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 767px) {
  .navgition .navbar .navbar-collapse {
    position: absolute;
    top: 116%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 8;
    padding: 10px 0;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
  }
}

.navgition .navbar .navbar-nav .nav-item {
  margin: 0 16px;
  position: relative;
}

.navgition .navbar .navbar-nav .nav-item a {
  font-size: 1.6rem;
  padding: 2.6rem 0;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  letter-spacing: 0.8px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navgition .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
  }
}

@media (max-width: 767px) {
  .navgition .navbar .navbar-nav .nav-item a {
    padding: 10px 0;
    display: block;
  }
}

.navgition .navbar .navbar-nav .nav-item a::before,
.navgition .navbar .navbar-nav .nav-item a::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 4px;
  background-color: var(--secondary-color);
  left: 50%;
  margin: 0 2px;
  bottom: 14px;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .navgition .navbar .navbar-nav .nav-item a::before,
  .navgition .navbar .navbar-nav .nav-item a::after {
    display: none;
  }
}

@media (max-width: 767px) {

  .navgition .navbar .navbar-nav .nav-item a::before,
  .navgition .navbar .navbar-nav .nav-item a::after {
    display: none;
  }
}

.navgition .navbar .navbar-nav .nav-item a::after {
  left: auto;
  right: 50%;
}

.navgition .navbar .navbar-nav .nav-item.active>a,
.navgition .navbar .navbar-nav .nav-item:hover>a {
  color: var(--secondary-color);
}

.navgition .navbar .navbar-nav .nav-item.active>a::before,
.navgition .navbar .navbar-nav .nav-item.active>a::after,
.navgition .navbar .navbar-nav .nav-item:hover>a::before,
.navgition .navbar .navbar-nav .nav-item:hover>a::after {
  opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navgition .navbar .navbar-social {
    position: absolute;
    right: 70px;
    top: 7px;
  }
}

@media (max-width: 767px) {
  .navgition .navbar .navbar-social {
    position: absolute;
    right: 60px;
    top: 7px;
  }
}

.navgition .navbar .navbar-social span {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 24px;
  margin-right: 14px;
}

.navgition .navbar .navbar-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.navgition .navbar .navbar-social ul li a {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}


.navgition .navbar .auth-nav .nav-item {
  margin: 0px .6rem;
}

.navgition .navbar .navbar-nav .nav-item a.sing-in-btn {
  border: 1px solid var(--secondary-color);
  padding: .6rem 2rem;
  border-radius: 5rem;
  text-transform: capitalize;
}

.navgition .navbar .navbar-nav .nav-item a.sing-in-btn:hover {
  background: var(--secondary-color);
  color: #FFF;
}


.navgition .navbar .navbar-nav .nav-item a.sing-up-btn {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  color: #FFF;
  padding: .6rem 2rem;
  border-radius: 5rem;
  text-transform: capitalize;
}

.navgition .navbar .navbar-nav .nav-item a.sing-up-btn:hover {
  background: var(--primary-color);
  color: #FFF;
}

.navgition .navbar .navbar-nav .nav-item a.sing-in-btn:hover {
  background: var(--primary-color);
  color: #FFF;
}

.navgition .navbar .navbar-nav .nav-item a.sing-in-btn::before,
.navgition .navbar .navbar-nav .nav-item a.sing-in-btn::after {
  content: '';
  background: #FFF;
  display: none;
}

.navgition .navbar .navbar-nav .nav-item a.sing-up-btn::before,
.navgition .navbar .navbar-nav .nav-item a.sing-up-btn::after {
  content: '';
  background: #FFF;
  display: none;
}

.logo {
  max-height: 7rem;
}

.header-hero {
  position: relative;
}

.page-hero {
  height: 400px;
  position: relative;
}




.header-hero .header-content {
  padding-top: 17rem;
  padding-bottom: 14rem;
  position: relative;
  z-index: 9;
}



.page-hero .header-content .header-title {
  font-size: 44px;
  line-height: 55px;
  color: #000;
  font-weight: 600;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-hero .header-content {
    padding-top: 130px;
  }

  .navgition .navbar .auth-nav .nav-item {
    margin: 0px 16px;
  }

  .navgition .navbar .navbar-nav .nav-item a.sing-in-btn {
    border: 0;
    padding: 10px 0;
    border-radius: 50px;
  }

  .navgition .navbar .navbar-nav .nav-item a.sing-up-btn {
    border: 0;
    padding: 10px 0;
    border-radius: 0px;
    background: #FFF;
    color: #000;
  }
}

@media (max-width: 767px) {
  .navgition .navbar .navbar-nav .nav-item a.sing-in-btn {
    border: 0;
    padding: 10px 12px;
    border-radius: 50px;
  }




  .navgition .navbar .navbar-nav .nav-item a.sing-up-btn {
    border: 0;
    padding: 10px 12px;
    border-radius: 0px;
    background: #FFF;
    color: #000;
  }

  .header-hero .header-content {
    padding-top: 120px;
  }
}

.header-hero .header-content h1 {
  margin-bottom: 3.5rem;
}


.header-hero .header-content .text {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.6;
  color: #fff;
  max-width: 62rem;
  margin-bottom: 3.5rem;
}

.header-hero .header-content .header-btn {
  margin-top: 22px;
}

.header-hero .header-content .header-btn li {
  display: inline-block;

}

.header-hero .header-content .header-btn li a.main-btn {
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: 0;
  line-height: 50px;
}

.header-hero .header-content .header-btn li a.main-btn i {
  margin-left: 5px;
}

.header-hero .header-content .header-btn li a.main-btn.btn-one {
  color: #fff;
}

.header-hero .header-content .header-btn li a.main-btn.btn-one::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, var(--secondary-color), #2bdbdc);
  background-image: -o-linear-gradient(left, var(--secondary-color), #2bdbdc);
  background-image: linear-gradient(to right, var(--secondary-color), #2bdbdc);
  background-position: right center;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header-hero .header-content .header-btn li a.main-btn.btn-one:hover::before {
  background-image: -webkit-linear-gradient(right, var(--secondary-color), #2bdbdc);
  background-image: -o-linear-gradient(right, var(--secondary-color), #2bdbdc);
  background-image: linear-gradient(to left, var(--secondary-color), #2bdbdc);
  background-position: left center;
  -webkit-transition: all none ease-out 0s;
  -moz-transition: all none ease-out 0s;
  -ms-transition: all none ease-out 0s;
  -o-transition: all none ease-out 0s;
  transition: all none ease-out 0s;
}

.header-hero .header-content .header-btn li a.main-btn.btn-two:hover {
  -webkit-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 25px 0 rgba(0, 0, 0, 0.16);
}

.header-hero .header-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.header-hero .header-shape img {
  width: 100%;
}

/*===========================
      3.featureS css 
===========================*/
.features-area {
  padding-top: 9rem;
  padding-bottom: 9rem;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}



.feature-box {
  background: #FFF;
  border-radius: 2rem;
  border: 0.1rem solid var(--border-color);
  padding: 3.4rem 2.5rem 2.9rem 3rem;
}

.features-content .features-icon i {
  font-size: 3rem;
  color: var(--secondary-color);
}

.features-content .features-icon {
  width: fit-content;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  padding: 1.5rem;
}

.features-content .features-content {
  padding-top: 2rem;
}

@media (max-width: 767px) {
  .features-content .features-content {
    padding-left: 0;
    padding-top: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-content .features-content {
    padding-left: 15px;
    padding-top: 0;
  }
}

.features-content .features-content .features-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: #000;
}

.features-content .features-content .text {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  margin-top: 8px;
}

.features-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .features-image {
    width: 34%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-image {
    position: relative;
    width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .features-image {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 16px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features-image {
    position: relative;
    width: 540px;
    margin: 0 auto;
  }
}

.features-image .image {
  max-width: 580px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .features-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}

.features-image .image img {
  width: 100%;
}

/*===========================
      4.PRICING css 
===========================*/
.pricing-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9fafb;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .pricing-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.single-pricing {
  /* -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); */
  padding: 4.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  border: 0.1rem solid var(--border-color);
  background-color: #fff;
}

.single-pricing .pricing-header .sub-title {
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  position: relative;
  padding-bottom: 8px;
}

.single-pricing .pricing-header .sub-title::before {
  position: absolute;
  content: '';
  width: 72px;
  height: 4px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2bdbdc;
}

.single-pricing .pricing-header {
  border-bottom: 0.1rem solid var(--text-gray);
  padding-bottom: 1rem;
  position: relative;
}



.single-pricing .pricing-header .price {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1rem;
  color: #000;
  font-family: 'Helvetica Neue Medium';
}



@media (max-width: 767px) {
  .single-pricing .pricing-header .price {
    font-size: 3rem;
    margin-top: 16px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-pricing .pricing-header .price {
    font-size: 2.5rem;
    margin-top: 32px;
  }
}

.single-pricing .pricing-header .year {
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin-top: 3px;
  display: inline-block;
}

.single-pricing .pricing-list {
  margin-top: 3rem;
}

.single-pricing .pricing-list ul {
  list-style: none;
  padding-left: 0;
}

.single-pricing .pricing-list ul li {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin-top: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-pricing .pricing-list ul li {
    font-size: 14px;
    margin-top: 12px;
  }
}

@media (max-width: 767px) {
  .single-pricing .pricing-list ul li {
    font-size: 14px;
    margin-top: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-pricing .pricing-list ul li {
    font-size: 16px;
    margin-top: 16px;
  }
}

.single-pricing .pricing-list ul li i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.single-pricing .pricing-list ul li i.lni-cross-circle,
.single-pricing .pricing-list ul li:has(.lni-cross-circle) {
  color: var(--text-gray);
}


.single-pricing .pricing-btn {
  margin-top: 42px;
}

.single-pricing .pricing-btn .main-btn {
  background-color: var(--secondary-color);
  border-radius: 50px;
  color: #fff;
  border-color: var(--secondary-color);

}

.btn-primary,
.btn-outline {
  background-color: var(--secondary-color) !important;
  border-radius: 50px;
  color: #fff;
  border-color: var(--secondary-color);
  padding: 1.5rem 3rem !important;
  font-size: 1.6rem !important;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-outline {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  background-color: transparent !important;
}

.btn-outline:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
  border-color: var(--secondary-color) !important;
  background-color: var(--primary-color) !important;
  box-shadow: none;

}

.single-pricing .pricing-btn .main-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--secondary-color);
}

.single-pricing .buttom-shape {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 101%;
}

.single-pricing.pro .pricing-header .sub-title::before {
  right: auto;
  left: 0;
  background-color: var(--secondary-color);
}

.single-pricing.pro .pricing-baloon {
  position: absolute;
  top: 0;
  right: -78px;
  width: 156px;
}

.single-pricing.enterprise .pricing-header .sub-title::before {
  right: 0;
  left: auto;
  background-color: var(--secondary-color);
}

.single-pricing.enterprise .pricing-flower {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 144px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-pricing.enterprise .pricing-flower {
    width: 110px;
  }
}

@media (max-width: 767px) {
  .single-pricing.enterprise .pricing-flower {
    width: 110px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-pricing.enterprise .pricing-flower {
    width: 144px;
  }
}

.single-pricing.enterprise .pricing-flower img {
  width: 100%;
}

.yearly-package {
  display: none;
}


/*===========================
    5.CALL TO ACTION css 
===========================*/
.call-to-action {
  position: relative;

  &::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 6, 6, 0.88);
    z-index: 9;
  }
}

.call-to-action .container-fluid {
  position: relative;
  z-index: 12;
}

.call-action-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action-image {
    position: relative;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .call-action-image {
    position: relative;
    width: 100%;
  }
}

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

.call-action-content {
  max-width: 560px;
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 767px) {
  .call-action-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.call-action-content .call-title {
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 55px;
}

@media (max-width: 767px) {
  .call-action-content .call-title {
    font-size: 28px;
    line-height: 38px;
  }
}

.call-action-content .text {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .call-action-content .text {
    font-size: 14px;
  }
}

.call-action-content .call-newsletter {
  max-width: 410px;
  position: relative;
  margin: 24px auto 0;
}

.call-action-content .call-newsletter i {
  font-size: 26px;
  color: var(--secondary-color);
  position: absolute;
  left: 18px;
  top: 15px;
}

.call-action-content .call-newsletter input {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 50px;
  background-color: #fff;
  padding-left: 60px;
  padding-right: 30px;
}

.call-action-content .call-newsletter input::placeholder {
  opacity: 1;
  color: #000;
}

.call-action-content .call-newsletter input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

.call-action-content .call-newsletter input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

.call-action-content .call-newsletter input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

.call-action-content .call-newsletter button {
  border: 0;
  border-radius: 50px;
  height: 48px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--secondary-color);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767px) {
  .call-action-content .call-newsletter button {
    position: relative;
    right: auto;
    margin-top: 15px;
    background-color: #fff;
    color: var(--secondary-color);
  }
}

.call-action-content .call-newsletter button:hover {
  background-color: #005ad5;
  color: #fff;
}

/*===========================
    6.CALL TO ACTION css 
===========================*/
.contact-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .contact-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.form-group {
  margin: 0;
}

p.form-message.success,
p.form-message.error {
  font-size: 16px;
  color: #000;
  background: #cbced1;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px;
}

p.form-message.error {
  color: #f00;
}

.contact-form .single-form {
  margin-top: 1.5rem;
}

.contact-form .single-form textarea,
.contact-form .single-form input {
  width: 100%;
  height: 56px;
  border: 1px solid #cbced1;
  border-radius: 3rem;
  padding: 0 25px;
  background-color: #fff;
  font-size: 16px;
}

.contact-form .single-form textarea::placeholder,
.contact-form .single-form input::placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea::-moz-placeholder,
.contact-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: var(--primary-color);
}

.contact-form .single-form textarea::-webkit-input-placeholder,
.contact-form .single-form input::-webkit-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.contact-form .single-form textarea {
  height: 160px;
  padding-top: 15px;
  resize: none;
}

.contact-form .single-form .main-btn {
  border-radius: 50px;
  background-color: var(--secondary-color);
  color: #fff;
}

.contact-form .single-form .main-btn:hover {
  background-color: #005ad5;
}

.list-unstyled li {
  font-size: 13px;
  margin-left: 2px;
  margin-top: 5px;
  color: #f00;
}

/*===========================
       7.FOOTER css 
===========================*/
.footer-area {
  background-color: #fff;
}



.footer-logo img {
  max-height: 60px;
}

.footer-widget {
  padding-top: 90px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .footer-widget {
    padding-top: 5rem;
    padding-bottom: 0;
  }
}

.footer-logo-support .footer-logo .social {
  margin-left: 35px;
}

.footer-logo-support .footer-logo .social li {
  display: inline-block;
  margin-right: 10px;
}

.footer-logo-support .footer-logo .social li a {
  font-size: 24px;
  color: #000;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-logo-support .footer-logo .social li a:hover {
  color: var(--secondary-color);
}

.footer-logo-support .footer-support span {
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 600;
}

@media (max-width: 767px) {
  .footer-logo-support .footer-support span {
    display: block;
  }
}

.footer-logo-support .footer-support span.mail {
  margin-left: 32px;
}

@media (max-width: 767px) {
  .footer-logo-support .footer-support span.mail {
    margin-left: 0;
  }
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 18px;
  color: var(--primary-color);
}

.footer-link {
  margin-top: 32px;
}

.footer-link ul {
  margin-top: 8px;
}

.footer-link ul li a {
  font-size: 16px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer-link ul li a:hover {
  color: var(--secondary-color);
}

.footer-newsletter {
  margin-top: 32px;
}

.footer-newsletter .newsletter {
  margin-top: 24px;
  position: relative;
}

.footer-newsletter .newsletter input {
  width: 100%;
  height: 44px;
  border-radius: 50px;
  padding: 0 24px;
  border: 0;
  background-color: rgba(33, 33, 33, 0.12);
  font-weight: 500;
}

.footer-newsletter .newsletter input::placeholder {
  opacity: 1;
  color: #000;
}

.footer-newsletter .newsletter input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

.footer-newsletter .newsletter input::-moz-placeholder {
  opacity: 1;
  color: #000;
}

.footer-newsletter .newsletter input::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

.footer-newsletter .newsletter button {
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  border: 0;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  background: none;
}

.footer-newsletter .text {
  margin-top: 16px;
}

.footer-copyright {
  background-color: #2b354f;
}

.footer_bar {
  padding: 2.2rem 0;
  font-size: 1.3rem;
  font-family: "Helvetica Neue Regular";
  font-weight: 400;
}

.footer_bar .logo_row {
  gap: 4rem;
}

@media(max-width: 767px) {
  .footer_bar .logo_row {
    gap: 2.2rem;
  }
}

.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--secondary-color);
  bottom: 10px;
  right: 20px;
  z-index: 999;
  color: #fff;
  font-size: 20px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  display: none;
}

.back-to-top:hover {
  background-color: #005ad5;
  color: #fff;
}

/*===========================
       8.Auth Form css 
===========================*/

.auth-form .single-form {
  margin-top: 30px;
}

.auth-form .single-form textarea,
.auth-form .single-form input,
.auth-form .single-form select {
  width: 100%;
  height: 56px;
  border: 1px solid #cbced1;
  border-radius: 5px;
  padding: 0 25px;
  background-color: #fff;
  font-size: 16px;
}

.auth-form .single-form textarea::placeholder,
.auth-form .single-form input::placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.auth-form .single-form textarea::-moz-placeholder,
.auth-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.auth-form .single-form textarea::-moz-placeholder,
.auth-form .single-form input::-moz-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.auth-form .single-form textarea::-webkit-input-placeholder,
.auth-form .single-form input::-webkit-input-placeholder {
  opacity: 1;
  color: #a4a4a4;
}

.auth-form .single-form textarea {
  height: 160px;
  padding-top: 15px;
  resize: none;
}

.auth-form .single-form .main-btn {
  border-radius: 50px;
  background-color: var(--secondary-color);
  color: #fff;
}

.auth-form .single-form .main-btn:hover {
  background-color: #005ad5;
}

.auth-form .single-form .red-btn {
  border-radius: 50px;
  background-color: #F44336;
  color: #fff;
}

.auth-form .single-form .red-btn:hover {
  background-color: #F44336;
}

.with-errors {
  color: red;
}

/*===========================
       9.Page css 
===========================*/

.page p {
  font-size: 16px;
  line-height: 26px;
  color: var(--primary-color);
  margin-top: 24px;
}

.contact-form .single-form .main-btn:disabled {
  background-color: #dfdfdf;
  cursor: no-drop;
}




/** General Sections **/
.general-area {
  padding: clamp(6rem, 8vw, 12rem) 0;
  position: relative;
}


/** About Us **/
.about-image {
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-image {
    width: 34%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image {
    position: relative;
    width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .about-image {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 16px;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-image {
    position: relative;
    width: 540px;
    margin: 0 auto;
  }
}

.about-image .image {
  max-width: 580px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}

@media (max-width: 767px) {
  .about-image .image {
    margin: 0 auto;
    padding-top: 50px;
  }
}

.about-image .image img {
  width: 100%;
}

/** language Switcher **/
#select_language {
  padding: .6rem 2rem;
  border-radius: 5rem;
  font-size: 1.6rem;
}

.lang_btn {
  border: 1px solid var(--secondary-color);
  padding: .6rem 2rem;
  border-radius: 5rem;
  background-color: transparent;
  color: #fff;
  font-family: "Helvetica Neue Medium";
}

.lang_btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* design css */
.brand_slider {
  padding-bottom: 120px;
}

.slideer-btn {
  justify-content: center;
  gap: 1rem;
  align-items: center;
}


/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.global_api .main-btn {
  border-radius: 50px;
  background-color: var(--secondary-color);
  color: #fff;
}

.global_api h3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.8rem;
}

.global_api ul {
  margin-bottom: 1.8rem;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.global_api ul li {
  position: relative;
}

.global_api ul li::after {
  position: absolute;
  content: "\ea54";
  left: -27px;
  top: 4px;
  display: inline-block;
  font: normal normal normal 1em/1 'LineIcons';
  font-size: 1em;
  font-size: 15px;
  color: var(--secondary-color);
}

.about_area h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}



/* Generic styling for all boxes */
.about_wrapper {
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.about_wrapper .about-box-wrapper {
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 186px;
  display: flex;
  position: relative;
  box-shadow: 0 0 45px 4px #e8eaf1b3;
}

/* Specific styling for is_one section */
.about_wrapper.is_one .about-box-wrapper:nth-child(1) {
  max-width: 13rem;
  width: 100%;
  margin-top: 30%;
}

.about_wrapper.is_one .about-box-wrapper:nth-child(1) .log-image {
  inset: 0% auto auto 0%;
  transform: translate(-25px, -25px);
  position: absolute;
  height: 4rem;
  width: 4rem;
}

.about_wrapper.is_one .about-box-wrapper:nth-child(2) {
  max-width: 15rem;
  width: 100%;
}

.about_wrapper.is_one .about-box-wrapper:nth-child(2) .log-image {
  inset: 0% 0% auto auto;
  transform: translate(22px, -25px);
  position: absolute;
  height: 4rem;
  width: 4rem;
}

/* Specific styling for is_two section */
.about_wrapper.is_two {
  width: 80%;
  margin-top: -15%;
  margin-left: 11rem;
  margin-right: 4rem;
}


.about_wrapper.is_two .about-box-wrapper .log-image {
  inset: 0% 0% auto auto;
  transform: translate(22px, -25px);
  position: absolute;
  height: 4rem;
  width: 4rem;
}

.about_wrapper.is_three .about-box-wrapper:nth-child(1) {
  max-width: 20rem;
  width: 100%;
}

.about_wrapper.is_three .about-box-wrapper:nth-child(2) {
  z-index: 5;
  width: 50%;
  margin-left: 4rem;
}



.location_card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2.5rem;
  display: flex;
  background-color: #fff;
  border: 0.1rem solid var(--border-color);
  border-radius: 2rem;
}

.location_card .main-btn {
  background-color: var(--secondary-color);
  border-radius: 50px;
  color: #fff;
  border-color: var(--secondary-color);
}



.animate-div span,
.animat-div span {
  color: var(--secondary-color);
}

.animat-div path,
.animate-div path {
  stroke: var(--secondary-color);
  stroke-width: 6px;
  fill: none;
}

.animat-div svg,
.animate-div svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible;
}



.animat-headline.e-animated svg path {
  animation: animat-headline-dash forwards;
  animation-duration: var(--animation-duration, 1.2s);
  animation-iteration-count: 1
}

.animat-headline.e-animated svg path:nth-of-type(2) {
  animation-delay: calc(var(--animation-duration, 1.2s) / 2)
}



@keyframes animat-headline-dash {
  0% {
    stroke-dasharray: 0 1500;
    opacity: 1
  }

  to {
    stroke-dasharray: 1500 1500;
    opacity: 1
  }
}

.grid_slider {

  padding-block: 80px;
}



.grid_slider .container {
  height: 350px;
}

.grid_slider .container .img-fluid {
  max-width: 148px;
}

@media (max-width: 1023px) {
  .grid_slider {
    padding-block: 60px;
  }
}

@media (max-width: 767px) {
  .grid_slider {

    padding-block: 50px;
  }

  .grid_slider .container {
    height: 200px;
  }

  .grid_slider .container .img-fluid {
    max-width: 78px;
  }
}

.grid_slider .swiper-button-next,
.grid_slider .swiper-button-prev {
  margin: 0 !important;
}

.grid_slider .swiper-button-next,
.grid_slider .swiper-button-prev {
  color: var(--primary-color);
  font-size: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  width: 4.4rem;
  height: 4.4rem;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  transform: translateY(-50%)
}

.grid_slider .swiper-button-next::after,
.grid_slider .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #f3f4f5;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.grid_slider .swiper-button-next i,
.grid_slider .swiper-button-prev i {
  z-index: 1
}

.grid_slider .swiper-button-prev {
  left: 0
}

.grid_slider .swiper-button-next {
  right: 0
}

@media (max-width:767px) {

  .grid_slider .swiper-button-next,
  .grid_slider .swiper-button-prev {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.5rem
  }
}

@media (max-width:576px) {

  .grid_slider .swiper-button-next,
  .grid_slider .swiper-button-prev {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.2rem
  }
}

#grid_swiper.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}



#grid_swiper .swiper-slide {
  text-align: center;
  height: calc((100% - 30px) / 2) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.marquee_sec {
  background: var(--bg-linear-gradient);
  padding-block: clamp(1.5rem, 1.2vw, 3.8rem);
  overflow: hidden;
}

.marquee_sec a {
  color: var(--primary-color);
}



.marquee_sec .swiper-slide {
  font-size: clamp(1.5rem, 2vw, 4rem);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "Helvetica Neue Medium";
  font-weight: 500;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 6rem);
  will-change: transform;
  white-space: nowrap;
}

.marquee_sec .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marquee_sec i {
  font-size: 1.8rem;
}

.miaie_overview {
  padding-block: clamp(6rem, 12vw, 21.4rem) clamp(4rem, 12vw, 35.4rem);
  position: relative;
  color: var(--primary-color);
}



.miaie_overview .main_heading ul li {
  margin-bottom: 1rem;
}


.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z-10 {
  z-index: 10;
}


/* contact page css  */
.contact_page {
  padding-block: 12rem 10rem;
  position: relative;
}

.contact_row {
  flex-direction: row;
  gap: 11.5rem;
  justify-content: center;
}

.contact_row .content {
  width: 100%;
  max-width: 32rem;
}

.contact_page h3.h2 {
  font-family: "Helvetica Neue Medium";
  font-weight: 500;
  letter-spacing: -0.3rem;
}

.social_btns a {
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0.1rem solid #fff;
}

.social_btns a:hover {
  background-color: #e5be37;
  border-color: #e5be37;
}


.contact_page .max-w-\[46\.2rem\] {
  max-width: 46.2rem
}

.social_btns a i {
  color: #fff;
}

.gap-8 {
  gap: 2rem;
}

.about-us-wrapper {
  background-image: url('https://cdn.prod.website-files.com/6565737286e587567248583f/658d0543ca1479f5b899c642_about-us-dots-bg.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 70%;
  padding-left: 5rem;
}

.about-box-wrapper {
  align-items: center;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.splitted-box {
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 186px;
  display: flex;
  position: relative;
  box-shadow: 0 0 45px 4px #e8eaf1b3;
  padding: 2rem;
}

.splitted-box.is-1 {
  z-index: 1;
  width: 100%;
  max-width: 204px;
  margin-top: 30%;
}

.splitted-box.is-2 {
  z-index: 2;
  width: 100%;
  max-width: 204px;
  margin-left: -28px;
}

.splitted-box-icon {
  width: 4rem;
  height: 4rem;
  position: absolute;
}

.splitted-box-icon.is-left {
  inset: 0% auto auto 0%;
  transform: translate(-25px, -25px);
}

.splitted-box-icon.is-right {
  inset: 0% 0% auto auto;
  transform: translate(25px, -25px);
}


.splitted-box.is-3 {
  z-index: 3;
  width: 80%;
  margin-top: -15%;
  margin-left: 17.6rem;
  margin-right: 6.4rem;
}

.splitted-box.is-4 {
  z-index: 4;
  min-width: 300px;
}

.splitted-box.is-5 {
  z-index: 5;
  width: 50%;
  margin-left: 4rem;
}

.splitted-box .content h2 {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.splitted-box .content p {
  margin-bottom: 0;
}



/* faq page css   */

.faq-box {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}

.faq-box .card_header {
  padding: 1.5rem 3.5rem 1.5rem 2rem;
  position: relative;
}

.faq-box .card_header a {
  color: var(--primary-color);
}


.faq-box .card_header a::after{
  content: '\f106';
  font-family: 'fontawesome';
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  display: inline-block;
  transition: 300ms all ease-in-out;
}

.faq-box .card_header a.collapsed::after{
  content: '\f107';
}

.faq-box .card_header a h4 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}


.social_icons.footer_social_icons {
  display: flex;
  gap: 2rem;
}

.social_icons a {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0.1rem solid var(--primary-color);
  transition: 300ms all ease-in-out;
}

.social_icons a:hover {
  border: 0.1rem solid var(--secondary-color);
}

.social_icons a i {
  color: var(--primary-color);
}

.social_icons a:hover i {
  color: var(--secondary-color)
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}


@media(max-width: 1199px) {
  .navgition .navbar .navbar-nav .nav-item a.sing-in-btn {
    padding: .6rem 1.5rem;
  }

  .single-pricing {
    padding: 3rem;
  }

  .primary_btn {
    padding: 2rem 3.2rem;
  }

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


@media(max-width: 991px) {
  #select_language {
    background: transparent;
    color: var(--primary-color);
    border: none;
    padding-left: 20px;
  }

  .navgition .navbar .navbar-nav .nav-item a {
    color: var(--primary-color);
  }

  .primary_btn {
    padding: 1.4rem 3.2rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 1.5rem 2rem !important;
  }

  .about-us-wrapper {
    padding-left: 3.2rem;
    max-width: 100%;
  }

  .splitted-box.is-3 {
    max-width: 60%;
    margin-left: 14.4rem;
    padding: 2rem;
  }

  .splitted-box.is-4 {
    min-width: 240px;
  }

  .splitted-box.is-5 {
    margin-left: 3.2rem;
  }

}


@media(max-width: 767px) {
  .footer-link ul li a {
    margin-bottom: 1rem;
  }

  .about-us-wrapper {
    padding: 0 2.5rem;
    max-width: 100%;

  }

  .about-box-wrapper {
    flex-wrap: wrap;
  }

  .splitted-box.is-1 {
    max-width: 100%;
    margin-top: 0%;
  }

  .splitted-box.is-2,
  .splitted-box.is-5 {
    max-width: 100%;
    margin-left: 0;
    width: 100%;
  }

  .splitted-box.is-3 {
    width: 100%;
    max-width: 100%;
    margin-top: 0%;
    margin-left: 0;
    margin-right: 0;
  }

  .splitted-box-icon.is-right {
    inset: 0% auto auto 0%;
    transform: translate(-25px, -25px);
  }

  .splitted-box.is-4 {
    width: 100%;
    min-width: 240px;
  }

  .splitted-box.is-5 {
    margin-left: 0;
  }

  .splitted-box.is-3 {
    max-width: 100%;
    margin-left: 0;
    padding: 2rem;
  }

  .social_icons.footer_social_icons {
    margin-bottom: 3rem;
  }

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


  .features-area,
  .miaie_difference {
    padding-block: 5rem;
  }

}

@media(min-width: 768px) {
  .sticky_img {
    position: sticky;
    top: 10rem;
  }
}



@media(min-width: 1200px) {
  .footer-area .container {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
  }

  .contact_page {
    padding-block: 10rem;
    height: 100vh;
    display: grid;
    place-content: center;
    position: relative;
  }
}

.services_sms .feature-box p {
  min-height: 6.5rem;
  overflow: hidden;
  height: 100%;
  margin-bottom: 0;
}

.cover_r {
  background-color: var(--background-color);
}

