/*
Template Name: sasico | SaaS & Tech Startup HTML Template
Description: SaaS-Light
Author: Vecuro
Author URI: https://themeforest.net/user/vecuro_themes
Version: 1.0.0
*/
/*=================================
    CSS Index Here
==================================*/
/*
01. Theme Base
    1.1. Variable
    1.2. Mixin
    1.3. Function
    1.4. Typography
    1.5. Extend
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.5. Mobile Menu
    2.6. Date & Time Picker
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
    3.11. Flaticon
04. Template Style
    4.11. Home11
05. Spacing

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Variable-------------------*/
:root {
  --theme-color: #B9FB6A;
  --theme-color2: #F1FEE1;
  --white-color: #fff;
  --title-color: #0E0E0E;
  --body-color: #696969;
  --bg-color: #EDF2FF;
  --bg-color2: #FAF8F4;
  --bg-color3: #F3F4F3;
  --bg-color4: #EEE;
  --dark-body: #0D141D;
  --border-color: #EEEEEE;
  --border-color2: #F1FEE1;
  --border-color3: #0E0E0E0D;
  --border-color4: #FFFFFF1A;
  --border-color5: #0E0E0E1A;
  --icon-color: #6C33FF1A;
  --title-font: "Plus Jakarta Sans", sans-serif;
  --body-font: "Inter", sans-serif;
  --icon-font: 'Font Awesome 5 Pro';
  --flaticon: 'Flaticon';
  --ripple-ani-duration: 5s;
}

.home-five {
  --theme-color: #f20000;
  --title-color: #000000;
  --body-color: #555555;
}

/*------------------- 1.2. Mixin -------------------*/
/*------------------- 1.3. Function -------------------*/
/*------------------- 1.4. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: 500;
}

td,
th {
  border-top: 1px solid var(--border-color);
  padding: 9px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

p {
  margin: 0 0 15px 0;
  color: var(--body-color);
  line-height: 1.7;
}

.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.h5, h5,
.h6, h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 36px;
}

.h3,
h3 {
  font-size: 30px;
}

.h4,
h4 {
  font-size: 24px;
}

.h5,
h5 {
  font-size: 18px;
}

.h6,
h6 {
  font-size: 16px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 42px;
  }
  .h2,
  h2 {
    font-size: 32px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 992px) {
  .h1,
  h1 {
    font-size: 38px;
  }
  .h2,
  h2 {
    font-size: 28px;
  }
  .h3,
  h3 {
    font-size: 24px;
  }
  .h4,
  h4 {
    font-size: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 32px;
  }
  .h2,
  h2 {
    font-size: 24px;
  }
  .h3,
  h3 {
    font-size: 22px;
  }
}
/* Extra small devices */
@media (max-width: 576px) {
  .h1,
  h1 {
    font-size: 24px;
  }
  .h2,
  h2 {
    font-size: 22px;
  }
}
/*------------------- 1.5. Extend -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    --bs-gutter-x: .75rem;
    max-width: calc(1220px + var(--bs-gutter-x) * 2);
  }
  .home-five .container-xxl,
  .home-five .container-xl,
  .home-five .container-lg,
  .home-five .container-md,
  .home-five .container-sm,
  .home-five .container,
  .home-four .container-xxl,
  .home-four .container-xl,
  .home-four .container-lg,
  .home-four .container-md,
  .home-four .container-sm,
  .home-four .container {
    --bs-gutter-x: .75rem;
    max-width: calc(1295px + var(--bs-gutter-x) * 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0:not(.default) {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0:not(.default) .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1600px) {
  .custom-container {
    max-width: 1620px;
  }
  .vs-container {
    max-width: 1565px;
    margin-left: 0;
    margin-right: auto;
    /* Hight Resoulation devices */
  }
}
@media (min-width: 1600px) and (min-width: 1921px) {
  .vs-container {
    margin-left: auto;
  }
}
@media (min-width: 1600px) and (max-width: 1920px) {
  .home-four .container-style2,
  .home-five .container-style2,
  .container-style2 {
    margin-left: auto;
    margin-right: 0;
    padding-right: 0;
    overflow: hidden;
    max-width: calc(1586px + var(--bs-gutter-x));
  }
}
@media (max-width: 1599.99px) {
  .d-none-xxxl {
    display: none !important;
  }
  .vs-container {
    max-width: 100%;
  }
}
.carousel-container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: unset;
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

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

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

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

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

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

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

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

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

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

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.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;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.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;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.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;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.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;
}

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

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

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

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

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

/* Medium devices */
@media (max-width: 992px) {
  .no-pl-md {
    padding-left: 0;
  }
  .pt-lg-30 {
    padding-top: 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .no-pt-sm {
    padding-top: 0;
  }
}
/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.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;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.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;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.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;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.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;
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

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

.mt-n5 {
  margin-top: -3rem;
}

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

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

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

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

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

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

.space,
.space-top {
  padding-top: 120px;
}

.space,
.space-bottom {
  padding-bottom: 120px;
}

.space-md,
.space-md-top {
  padding-top: 100px;
}

.space-md,
.space-md-bottom {
  padding-bottom: 100px;
}

/* Medium devices */
@media (max-width: 992px) {
  .space,
  .space-top {
    padding-top: 80px;
  }
  .space,
  .space-bottom {
    padding-bottom: 80px;
  }
  .space-md,
  .space-md-top {
    padding-top: 50px;
  }
  .space-md,
  .space-md-bottom {
    padding-bottom: 50px;
  }
}
/*=================================
    03. Utilities
==================================*/
/*------------------- 3.2. Buttons -------------------*/
.btn-style1 {
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  height: 50px;
  line-height: 50px;
  padding: 0 5px 0 25px;
  background-color: var(--theme-color);
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
}
.btn-style1 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--title-color);
  margin-left: 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-style1 span img {
  width: 22px;
  height: auto;
  display: block;
  margin: 0;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.btn-style1:hover {
  background-color: var(--title-color);
  color: var(--white-color);
  border-color: var(--border-color);
}
.btn-style1:hover span {
  background-color: var(--white-color);
}
.btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.btn-style1.v4 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.btn-style1.v4:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.btn-style1.v4:hover span {
  background-color: var(--title-color);
}
.btn-style1.v4:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.btn-style1.v4 span {
  background-color: var(--white-color);
}
.btn-style1.v4 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

/*------------------- 3.3. Titles -------------------*/
/*------------------- 3.11. Flaticon -------------------*/
[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after,
.fi:before {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.flaticon-blood-pressure:before {
  content: "\f101";
}

.flaticon-computer-mouse:before {
  content: "\f102";
}

.flaticon-discuss:before {
  content: "\f103";
}

.flaticon-ecg:before {
  content: "\f104";
}

.flaticon-electrocardiogram:before {
  content: "\f105";
}

.flaticon-group:before {
  content: "\f106";
}

.flaticon-healthcare:before {
  content: "\f107";
}

.flaticon-injection:before {
  content: "\f108";
}

.flaticon-laboratory-equipment:before {
  content: "\f109";
}

.flaticon-medical-equipment:before {
  content: "\f10a";
}

.flaticon-medical-kit:before {
  content: "\f10b";
}

.flaticon-medical-mask:before {
  content: "\f10c";
}

.flaticon-medical-results:before {
  content: "\f10d";
}

.flaticon-medical-symbol:before {
  content: "\f10e";
}

.flaticon-quality-of-life:before {
  content: "\f10f";
}

.flaticon-quotation:before {
  content: "\f110";
}

.flaticon-quote:before {
  content: "\f111";
}

.flaticon-security:before {
  content: "\f112";
}

.flaticon-stethoscope-1:before {
  content: "\f113";
}

.flaticon-stethoscope:before {
  content: "\f114";
}

/*------------------- 4.11. Home11  -------------------*/
.digital-agency {
  position: relative;
}

/* Preloader overlay */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999999999;
}
#preloader img {
  height: auto;
  -webkit-animation: scalePulse 1.5s infinite ease-in-out;
          animation: scalePulse 1.5s infinite ease-in-out;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.preloader-wrapper {
  overflow: hidden;
}

@-webkit-keyframes scalePulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scalePulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}

.video-modal iframe {
  width: 70%;
  height: 700px;
  border: 0;
  border-radius: 10px;
}

.close-video {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.wrapper {
  overflow: hidden;
}

.dark {
  display: none !important;
}

.sec-title {
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 70px;
  max-width: 750px;
}
.sec-title .sub-title {
  position: relative;
  font-size: 16px;
  line-height: 40px;
  color: var(--title-color);
  margin-bottom: 9px;
  height: 42px;
  display: inline-block;
  border: 1px solid var(--border-color);
  background-color: var(--theme-color2);
  font-weight: 500;
  padding: 0 30px;
  border-radius: 50px;
  /* Small devices */
}
@media (max-width: 767px) {
  .sec-title .sub-title {
    margin-bottom: 10px;
  }
}
.sec-title .title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: var(--title-color);
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .sec-title .title {
    font-size: 38px;
    line-height: 48px;
  }
}
.sec-title .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .sec-title .title {
    font-size: 31px;
    line-height: 42px;
    margin-bottom: 14px;
  }
}
.sec-title .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .sec-title .title {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 12px;
  }
}
.sec-title p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text-color);
  margin-bottom: 0;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .sec-title p {
    font-size: 16px;
    line-height: 28px;
  }
}

.sec-title.white .sub-title {
  background-color: var(--theme-color);
  border-color: transparent;
}

#scrollTopBtn {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  outline: none;
  background: var(--title-color);
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 99;
}
#scrollTopBtn:hover {
  background-color: var(--theme-color);
}
#scrollTopBtn:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
#scrollTopBtn img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 14px;
}

.search-popup {
  position: fixed;
  top: 32px;
  left: 15px;
  right: 15px;
  background: rgb(238, 238, 238);
  padding: 30px;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999;
}
.search-popup input {
  width: 100%;
  height: 80px;
  border: 0;
  background-color: var(--white-color);
  border-radius: 50px;
  padding: 0 65px 0 30px;
  font-size: 18px;
  color: #ae9f9f;
}
.search-popup input::-webkit-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::-moz-placeholder {
  color: #ae9f9f;
}
.search-popup input:-ms-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::-ms-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::placeholder {
  color: #ae9f9f;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9998;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form {
  position: relative;
}

.submit-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  border: 0;
  outline: none;
  background-color: unset;
  color: #9f9f9f;
}
.submit-btn img {
  width: 21px;
  -webkit-filter: invert(0.6);
          filter: invert(0.6);
}

.dark-active {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background-color: var(--title-color);
  cursor: pointer;
  z-index: 99;
  color: var(--title-color);
}
.dark-active img {
  width: 30px;
}
.dark-active .sun {
  display: none;
}
.dark-active:hover {
  color: var(--title-color);
}

.dark-active.active {
  background-color: var(--white-color);
}
.dark-active.active .moon {
  display: none;
}
.dark-active.active .sun {
  display: inline-block;
}

.hamburger-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  width: 26px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  outline: none;
  padding: 0;
  border: 0;
  background-color: unset;
  display: none;
  /* Medium devices */
}
@media (max-width: 992px) {
  .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger-btn span {
  width: 100%;
  height: 2px;
  background: var(--title-color);
  border-radius: 4px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -315px;
  width: 310px;
  height: 100%;
  background: var(--white-color);
  -webkit-box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  padding: 25px 35px 65px 35px;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 9999;
  overflow-x: hidden;
}
.mobile-menu .main-menu11 {
  position: relative;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  padding-top: 20px;
  display: unset;
  margin: 0;
  border: 0;
}
.mobile-menu .main-menu11 ul {
  display: block;
}
.mobile-menu .main-menu11 ul li a {
  position: relative;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: inline-block;
  width: 100%;
  border-radius: 0;
}
.mobile-menu .main-menu11 ul li a img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.mobile-menu .main-menu11 ul li a:hover {
  background-color: unset;
}
.mobile-menu .main-menu11 ul li .dropdown-menu,
.mobile-menu .main-menu11 ul li .sub-menu {
  padding-left: 10px !important;
}
.mobile-menu .main-menu11 ul li:hover .dropdown-menu,
.mobile-menu .main-menu11 ul li:hover .sub-menu {
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .main-menu11 ul li:hover a img {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.mobile-menu .main-menu11 ul .active > a {
  color: #8bcf2e;
}
.mobile-menu .main-menu11 ul .active > a,
.mobile-menu .main-menu11 ul .hover-active.active > a {
  background-color: unset;
  padding-left: 10px !important;
}
.mobile-menu .main-menu11 ul .hover-active.active > a,
.mobile-menu .main-menu11 ul .has-dropdown.active > a {
  background-color: unset;
}
.mobile-menu .main-menu11 ul .has-dropdown.active .dropdown-menu {
  height: auto !important;
  opacity: 1;
  visibility: visible;
}
.mobile-menu .main-menu11 ul .has-submenu.active > a img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.mobile-menu .main-menu11 ul .has-submenu.active .sub-menu {
  height: auto !important;
  opacity: 1;
  visibility: visible;
}
.mobile-menu .main-menu11 ul .has-dropdown .dropdown-menu,
.mobile-menu .main-menu11 ul .has-dropdown .sub-menu {
  position: static !important;
  height: 0;
  padding: 0;
  background-color: unset;
  min-width: 100%;
  margin: 0;
}
.mobile-menu .main-menu11 ul .has-dropdown .dropdown-menu li,
.mobile-menu .main-menu11 ul .has-dropdown .sub-menu li {
  padding: 0;
}
.mobile-menu .main-menu11 ul .has-dropdown .dropdown-menu li a,
.mobile-menu .main-menu11 ul .has-dropdown .sub-menu li a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.main-menu11.v3 ul li a {
  padding-left: 0 !important;
}
.main-menu11.v3 ul .hover-active.active a {
  padding-left: 0 !important;
}

.mobile-menu.active {
  right: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  display: inline-block;
  margin-bottom: 21px;
}
.close-btn:hover {
  cursor: pointer;
}
.close-btn:hover img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.close-btn img {
  width: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.search-popup {
  position: fixed;
  top: 32px;
  left: 15px;
  right: 15px;
  background: rgb(238, 238, 238);
  padding: 30px;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999;
}
.search-popup input {
  width: 100%;
  height: 80px;
  border: 0;
  background-color: var(--white-color);
  border-radius: 50px;
  padding: 0 65px 0 30px;
  font-size: 18px;
  color: #ae9f9f;
}
.search-popup input::-webkit-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::-moz-placeholder {
  color: #ae9f9f;
}
.search-popup input:-ms-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::-ms-input-placeholder {
  color: #ae9f9f;
}
.search-popup input::placeholder {
  color: #ae9f9f;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9998;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form {
  position: relative;
}

.submit-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  border: 0;
  outline: none;
  background-color: unset;
  color: #9f9f9f;
}
.submit-btn img {
  width: 21px;
  -webkit-filter: invert(0.6);
          filter: invert(0.6);
}

.main-sec {
  position: relative;
}
.main-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/layer1-1.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.anim-img {
  position: relative;
}
.anim-img .anim-one {
  position: absolute;
  top: -400px;
  left: -400px;
  z-index: 9;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .anim-img .anim-one {
    left: -227px;
  }
}
.anim-img .anim-one {
  /* Large devices */
}
@media (max-width: 1199px) {
  .anim-img .anim-one {
    top: -465px;
  }
}
.anim-img .anim-one {
  /* Medium devices */
}
@media (max-width: 992px) {
  .anim-img .anim-one {
    display: none;
  }
}
.anim-img .anim-one .rotating {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
}
.anim-img .anim-one .rotating-svg:hover .rotating {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.anim-img .anim-one svg {
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .anim-img .anim-one svg {
    width: 500px;
  }
}
.anim-img .anim-two {
  position: absolute;
  top: -400px;
  right: -400px;
  z-index: 9;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .anim-img .anim-two {
    right: -227px;
  }
}
.anim-img .anim-two {
  /* Large devices */
}
@media (max-width: 1199px) {
  .anim-img .anim-two {
    top: -465px;
  }
}
.anim-img .anim-two {
  /* Medium devices */
}
@media (max-width: 992px) {
  .anim-img .anim-two {
    display: none;
  }
}
.anim-img .anim-two .rotating {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: spin 15s linear infinite;
          animation: spin 15s linear infinite;
}
.anim-img .anim-two .rotating-svg:hover .rotating {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.anim-img .anim-two svg {
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .anim-img .anim-two svg {
    width: 500px;
  }
}

.header-main {
  position: fixed;
  top: 10px;
  left: 0;
  z-index: 999;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-main {
    padding: 0;
  }
}
.header-main .container-fluid {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 15px;
}
.header-main .row .col-lg-3 {
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .header-main .row .col-lg-3 {
    width: 23.5%;
  }
}
.header-main .row .col-lg-3 {
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .header-main .row .col-lg-3 {
    width: 21.5%;
  }
}
.header-main .row .col-lg-3 {
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .header-main .row .col-lg-3 {
    width: 24.5%;
  }
}
.header-main .row .col-lg-3 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-main .row .col-lg-3 {
    width: 15.5%;
  }
}
.header-main .row .col-lg-3:first-child {
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .header-main .row .col-lg-3:first-child {
    width: 16.5%;
  }
}
.header-main .row .col-lg-6 {
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .header-main .row .col-lg-6 {
    width: 53%;
  }
}
.header-main .row .col-lg-6 {
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .header-main .row .col-lg-6 {
    width: 56%;
  }
}
.header-main .row .col-lg-6 {
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .header-main .row .col-lg-6 {
    width: 58.5%;
  }
}
.header-main .row .col-lg-6 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-main .row .col-lg-6 {
    width: 67.5%;
  }
}

.header-main.sticky {
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  top: 0;
}

.header-logo a {
  display: inline-block;
  width: 156px;
}

.header-bottom {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 0;
  z-index: 0;
}
.header-bottom .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu11 {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px;
  max-width: 740px;
  margin: 0 auto;
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11 {
    max-width: 628px;
  }
}
.main-menu11 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .main-menu11 {
    display: none;
  }
}
.main-menu11 > ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.main-menu11 > ul > li {
  position: relative;
}
.main-menu11 > ul > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.main-menu11 > ul > li > a {
  position: relative;
  color: var(--title-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--title-font);
  padding: 12px 26px 11px 26px;
  border-radius: 50px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .main-menu11 > ul > li > a {
    padding: 12px 20px 11px;
  }
}
.main-menu11 > ul > li > a {
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11 > ul > li > a {
    font-size: 16px;
  }
}
.main-menu11 > ul > li > a:hover {
  background-color: var(--bg-color4);
}
.main-menu11 > ul > li > a:hover::before {
  width: 100%;
  background-color: var(--theme-color);
}
.main-menu11 > ul > li > a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.main-menu11 > ul > li > a img {
  margin-left: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-menu11 > ul > .active > a {
  background-color: var(--bg-color4);
}
.main-menu11 > ul .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-menu11 > ul .has-dropdown.v2 .dropdown-menu .has-submenu:first-child .sub-menu, .main-menu11 > ul .has-dropdown.v2 .dropdown-menu .has-submenu:nth-child(2) .sub-menu {
  bottom: 0;
}
.main-menu11 > ul .has-dropdown.v2 .dropdown-menu .has-submenu:last-child .sub-menu {
  bottom: -77px;
}
.main-menu11 > ul .has-dropdown.hover-active > a {
  background-color: var(--bg-color4);
}
.main-menu11 > ul .has-dropdown.hover-active > a img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.main-menu11 > ul .has-dropdown.active > a img {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.main-menu11.v2 {
  max-width: 639px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .main-menu11.v2 {
    max-width: 576px;
  }
}
.main-menu11.v2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11.v2 {
    max-width: 534px;
  }
}

.dropdown-menu {
  position: absolute;
  top: 59px;
  left: 0;
  display: inline-block;
  min-width: 250px;
  background-color: var(--bg-color4);
  padding: 17px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  clip-path: unset !important;
  border: 0;
}
.dropdown-menu li {
  padding: 0 17px;
}
.dropdown-menu li a {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: block;
  padding: 7px 13px;
  border-radius: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.dropdown-menu li a:hover {
  background-color: var(--white-color);
}
.dropdown-menu li a:hover img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dropdown-menu li a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-menu .has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.dropdown-menu .hover-active > a {
  background-color: var(--white-color);
}
.dropdown-menu .hover-active > a img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dropdown-menu .active img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.dropdown-menu .active > a {
  background-color: var(--white-color);
}

.sub-menu {
  position: absolute;
  bottom: 42px;
  left: 100%;
  display: inline-block;
  min-width: 250px;
  background-color: var(--bg-color4);
  padding: 17px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  margin-left: 5px;
  border-radius: 7px;
}
.sub-menu li {
  padding: 0 17px;
}
.sub-menu li a {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: block;
  padding: 7px 13px;
  border-radius: 7px;
}
.sub-menu li a:hover {
  background-color: var(--white-color);
}

.header-btn {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-btn .btn-style1.v2 {
  height: 42px;
  line-height: 42px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-btn .btn-style1.v2 {
    display: none;
  }
}
.header-btn .btn-style1.v2 span {
  height: 30px;
  width: 30px;
}
.header-btn .btn-style1.v2 span img {
  height: 14px;
}
.header-btn .btn-style1.v3 {
  height: 42px;
  line-height: 42px;
  background-color: var(--white-color);
  border-color: var(--border-color);
  margin-right: 9px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-btn .btn-style1.v3 {
    display: none;
  }
}
.header-btn .btn-style1.v3:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.header-btn .btn-style1.v3:hover span {
  background-color: var(--title-color);
}
.header-btn .btn-style1.v3:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.header-btn .btn-style1.v3 span {
  height: 30px;
  width: 30px;
  background-color: var(--theme-color);
}
.header-btn .btn-style1.v3 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
  height: 14px;
}

.sign-up {
  position: relative;
  font-family: var(--title-font);
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  display: inline-block;
  margin-right: 26px;
}
.sign-up img {
  position: relative;
  margin-right: 7px;
  top: -2px;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 2px 14px 0 0;
  display: none;
  /* Medium devices */
}
@media (max-width: 992px) {
  .search-btn {
    margin: 2px 59px 0 0;
    display: inline-block;
  }
}
.search-btn img {
  width: 25px;
}

.hero-sec {
  position: relative;
  padding: 210px 0 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .hero-sec {
    padding: 155px 0 0;
  }
}
.hero-sec {
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-sec {
    padding: 127px 0 0;
  }
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-content .sub-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 13px;
  display: inline-block;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color2);
  border-radius: 50px;
  height: 46px;
  line-height: 44px;
  padding: 0 30px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-content .sub-title {
    font-size: 16px;
  }
}
.hero-content .title {
  font-size: 85px;
  line-height: 92px;
  font-weight: 700;
  margin-bottom: 39px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .hero-content .title {
    font-size: 70px;
    line-height: 80px;
  }
}
.hero-content .title {
  /* Large devices */
}
@media (max-width: 1199px) {
  .hero-content .title {
    font-size: 60px;
    line-height: 70px;
  }
}
.hero-content .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-content .title {
    font-size: 45px;
    line-height: 55px;
    margin-bottom: 25px;
  }
}
.hero-content .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .hero-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.hero-content p {
  font-size: 22px;
  line-height: 35px;
  font-weight: 400;
  max-width: 743px;
  margin: 0 auto 39px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .hero-content p {
    font-size: 20px;
    line-height: 30px;
  }
}
.hero-content p {
  /* Large devices */
}
@media (max-width: 1199px) {
  .hero-content p {
    font-size: 18px;
    line-height: 28px;
  }
}
.hero-content p {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .hero-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.hero-form {
  position: relative;
}
.hero-form .form-group {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.hero-form .form-group input {
  width: 100%;
  height: 70px;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0 30px;
}
.hero-form .form-group input::-webkit-input-placeholder {
  color: var(--body-color);
}
.hero-form .form-group input::-moz-placeholder {
  color: var(--body-color);
}
.hero-form .form-group input:-ms-input-placeholder {
  color: var(--body-color);
}
.hero-form .form-group input::-ms-input-placeholder {
  color: var(--body-color);
}
.hero-form .form-group input::placeholder {
  color: var(--body-color);
}
.hero-form .form-group .btn-style1 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .hero-form .form-group .btn-style1 {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 10px;
  }
}

.hero-img {
  position: relative;
}
.hero-img img {
  width: 100%;
}

.brand-sec {
  position: relative;
  text-align: center;
}
.brand-sec .container-fluid {
  max-width: 1800px;
  padding: 0 15px;
  margin: 0 auto;
}

.brand-title {
  position: relative;
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 63px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background-color: var(--theme-color2);
  color: var(--title-color);
  box-sizing: border-box;
}

.brand-img {
  position: relative;
  text-align: center;
}
.brand-img a {
  display: inline-block;
}
.brand-img a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.brand-img a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.feature-sec {
  position: relative;
}
.feature-sec .row {
  margin-bottom: -30px;
}

.feature-img {
  position: relative;
  margin-bottom: 30px;
}
.feature-img img {
  width: 100%;
}

.feature-card {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin-bottom: 30px;
  padding: 10px 10px 0;
}

.feature-img-one {
  position: relative;
}
.feature-img-one img {
  width: 100%;
}

.feature-info {
  position: relative;
  padding: 32px 40px 60px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .feature-info {
    padding: 32px 16px 28px;
  }
}

.feature-content {
  position: relative;
  margin-bottom: 32px;
}
.feature-content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}
.feature-content p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 26px;
}

.feature-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 23px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.feature-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 52px 0 0;
}
.feature-list li:last-child {
  margin-right: 0;
}
.feature-list li img {
  margin-right: 11px;
}

.feature-sec2 {
  position: relative;
  background-image: url(../images/bg/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.feature-sec2 .row {
  margin-bottom: -30px;
}

.feature-block2 {
  position: relative;
  background-color: var(--white-color);
  border-radius: 14px;
  padding: 50px 50px;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border: 1px solid var(--border-color4);
  z-index: 99;
  margin-bottom: 30px;
  overflow: hidden;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .feature-block2 {
    padding: 35px 34px 35px;
  }
}
.feature-block2 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-block2 {
    padding: 50px 50px;
  }
}
.feature-block2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-block2 {
    padding: 35px 34px 35px;
  }
}
.feature-block2:hover {
  border-color: var(--title-color);
}
.feature-block2:hover::before {
  opacity: 1;
  visibility: visible;
}
.feature-block2:hover .feature-icon::before {
  opacity: 0;
  visibility: hidden;
}
.feature-block2:hover .feature-icon::after {
  opacity: 1;
  visibility: visible;
}
.feature-block2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-image: url(../images/bg/layer1-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  border-radius: 14px;
  z-index: -1;
}
.feature-block2 .title {
  margin-bottom: 17px;
}
.feature-block2 .title a {
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: var(--title-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-block2 .title a {
    font-size: 20px;
    line-height: 30px;
  }
}
.feature-block2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.feature-icon {
  position: relative;
  border-radius: 15px;
  width: 85px;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--border-color3);
  margin-bottom: 35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 9;
}
.feature-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b9fb6a), to(rgba(185, 251, 106, 0)));
  background-image: linear-gradient(180deg, #b9fb6a 0%, rgba(185, 251, 106, 0) 100%);
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
.feature-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.intigration-sec {
  position: relative;
}
.intigration-sec .sec-title p {
  margin-bottom: 28px;
}

.intelligent-img {
  position: relative;
  text-align: center;
}

.choose-us-sec {
  position: relative;
}
.choose-us-sec .row {
  margin-bottom: -30px;
}

.choose-info {
  position: relative;
  background-image: url(../images/bg/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 60px;
  border-radius: 14px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .choose-info {
    padding: 120px 21px;
  }
}
.choose-info {
  /* Medium devices */
}
@media (max-width: 992px) {
  .choose-info {
    padding: 80px 15px;
  }
}

.choose-block {
  position: relative;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  padding: 40px 30px 40px 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .choose-block {
    padding: 40px 24px 40px 24px;
  }
}
.choose-block:hover {
  background-color: var(--title-color);
}
.choose-block:hover .title,
.choose-block:hover p {
  color: var(--white-color);
}
.choose-block:hover .choose-icon {
  background-color: var(--theme-color);
  border-color: transparent;
}
.choose-block .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 13px;
}
.choose-block p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.choose-icon {
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#b9fb6a), to(rgba(185, 251, 106, 0)));
  background-image: linear-gradient(180deg, #b9fb6a 0%, rgba(185, 251, 106, 0) 100%);
  background-repeat: no-repeat;
  border: 1px solid var(--border-color);
  margin: 0 auto 31px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.feature-sec3 {
  position: relative;
}
.feature-sec3 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feature-content3 {
  position: relative;
  padding-right: 100px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content3 {
    padding-right: 0;
  }
}
.feature-content3 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content3 {
    margin-bottom: 50px;
  }
}
.feature-content3 .sec-title {
  text-align: left;
  margin-bottom: 38px;
}

.feature-img3 {
  position: relative;
  z-index: 9;
  padding: 40px 60px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-img3 {
    padding: 29px 43px;
  }
}
.feature-img3 img {
  width: 100%;
}
.feature-img3 .two {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-sec4 {
  position: relative;
}
.feature-sec4 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-sec4 .row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.feature-img4 {
  position: relative;
  z-index: 9;
  padding: 40px 80px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-img4 {
    padding: 29px 43px;
  }
}
.feature-img4 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-img4 {
    padding: 33px 80px;
    margin-bottom: 50px;
  }
}
.feature-img4 {
  /* Small devices */
}
@media (max-width: 767px) {
  .feature-img4 {
    padding: 33px 67px;
  }
}
.feature-img4 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-img4 {
    padding: 33px 52px;
  }
}
.feature-img4 img {
  width: 100%;
}
.feature-img4 .two {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-content4 {
  position: relative;
  padding-left: 86px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .feature-content4 {
    padding-left: 0;
  }
}
.feature-content4 .sec-title {
  text-align: left;
  margin-bottom: 32px;
}

.featre-list4 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 33px;
}
.featre-list4 li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 26px;
}
.featre-list4 li:last-child {
  margin-bottom: 0;
}
.featre-list4 li img {
  position: absolute;
  top: 8px;
  left: 0;
}

.pricing-sec {
  position: relative;
  background-image: url(../images/bg/layer1-3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pricing-sec .sec-title {
  margin-bottom: 50px;
}
.pricing-sec .sec-title p {
  padding: 0 50px 49px;
}
.pricing-sec .row {
  margin-bottom: -30px;
}
.pricing-sec .nav-tabs {
  border: 1px solid var(--border-color);
  max-width: 306px;
  margin: 0 auto;
  height: 64px;
  border-radius: 50px;
  padding: 10px;
  margin-bottom: 50px;
  background-color: var(--white-color);
}
.pricing-sec .nav-tabs .nav-link {
  padding: 0;
  border: 0;
  background-color: unset;
  height: 42px;
  line-height: 39px;
  padding: 0 20px 2px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--body-color);
}
.pricing-sec .nav-tabs .nav-link span {
  background-color: var(--theme-color);
  height: 23px;
  font-size: 12px;
  line-height: 23px;
  color: var(--title-color);
  border-radius: 50px;
  padding: 0 10px;
  display: inline-block;
}
.pricing-sec .nav-tabs .nav-link.active {
  border: 0;
  background-color: var(--title-color);
  color: var(--white-color);
}

.price-icon {
  position: relative;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(14, 14, 14, 0.0705882353)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(180deg, rgba(14, 14, 14, 0.0705882353) 0%, rgba(255, 255, 255, 0) 100%);
  background-repeat: no-repeat;
  border: 1px solid rgba(14, 14, 14, 0.0705882353);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 19px;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border-color5);
  background-color: var(--bg-color3);
  border-radius: 15px;
  padding: 40px 10px 10px;
  margin-bottom: 30px;
}
.pricing-card .title {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 11px;
  font-weight: 600;
}
.pricing-card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 26px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .pricing-card p {
    font-size: 14px;
  }
}
.pricing-card .price {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 33px;
  letter-spacing: -0.02em;
}
.pricing-card .price span {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
  display: inline-block;
  letter-spacing: 0;
}
.pricing-card .btn-style1 {
  background-color: unset;
  border: 1px solid var(--title-color);
  margin-bottom: 13px;
}
.pricing-card .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.pricing-card .btn-style1:hover span {
  background-color: var(--white-color);
}
.pricing-card .btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.pricing-card .credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pricing-card .credit img {
  margin-right: 10px;
}

.price-info {
  padding: 0 25px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-info {
    padding: 0 9px;
  }
}
.price-info {
  /* Medium devices */
}
@media (max-width: 992px) {
  .price-info {
    padding: 0 25px;
  }
}
.price-info {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .price-info {
    padding: 0 15px;
  }
}

.price-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--white-color);
  padding: 7% 9% 7% 9%;
  margin-top: 44px;
}
.price-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 11px;
}
.price-list li:last-child {
  margin-bottom: 0;
}
.price-list li img {
  margin-right: 10px;
}

.pricing-card.v2 {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f1fee1), to(rgba(241, 254, 225, 0)));
  background-image: linear-gradient(180deg, #f1fee1 0%, rgba(241, 254, 225, 0) 100%);
}
.pricing-card.v2 .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.pricing-card.v2 .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.pricing-card.v2 .btn-style1:hover span {
  background-color: var(--title-color);
}
.pricing-card.v2 .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.pricing-card.v2 .btn-style1 span {
  background-color: var(--white-color);
}
.pricing-card.v2 .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.testimonial-sec {
  position: relative;
}
.testimonial-sec .sec-title {
  margin-bottom: 60px;
}
.testimonial-sec .swiper.testi {
  padding-top: 10px;
}

.testi-card {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 27px 30px 27px 30px;
  background-color: var(--white-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testi-card:hover {
  -webkit-box-shadow: 10px 4px 60px 0px rgba(179, 179, 179, 0.25);
          box-shadow: 10px 4px 60px 0px rgba(179, 179, 179, 0.25);
}
.testi-card .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}
.testi-card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.testi-auther {
  position: relative;
}
.testi-auther .auther {
  margin-bottom: 7px;
}
.testi-auther .name {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 0;
}
.testi-auther .name .designation {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
}

.testi-pagination {
  position: static;
  margin: 76px 0 2px;
  /* Small devices */
}
@media (max-width: 767px) {
  .testi-pagination {
    margin-top: 50px;
  }
}
.testi-pagination .swiper-pagination-bullet {
  position: relative;
  background-color: var(--body-color);
  width: 9px;
  height: 9px;
  opacity: unset;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 15px !important;
}
.testi-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 27px;
  height: 27px;
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testi-pagination .swiper-pagination-bullet:hover {
  background-color: var(--title-color);
}
.testi-pagination .swiper-pagination-bullet:hover::before {
  border-color: var(--title-color);
}
.testi-pagination .swiper-pagination-bullet-active {
  background-color: var(--title-color);
}
.testi-pagination .swiper-pagination-bullet-active::before {
  border-color: var(--title-color);
}

.faq-sec {
  position: relative;
}

.faq-content {
  position: relative;
  padding-right: 90px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-content {
    margin-bottom: 50px;
  }
}
.faq-content .sec-title {
  text-align: left;
  margin-bottom: 28px;
}

.faq-box {
  position: relative;
}
.faq-box .vs-accordion {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
}
.faq-box .vs-accordion .accordion-item {
  position: relative;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  background-color: unset;
  z-index: 9;
}
.faq-box .vs-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.faq-box .vs-accordion .accordion-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/layer1-4.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-box .vs-accordion .accordion-item::before {
    background-size: cover;
  }
}
.faq-box .vs-accordion .accordion-item:hover .accordion-button .arrow-btn {
  background-color: var(--theme-color);
}
.faq-box .vs-accordion .accordion-item .accordion-button {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
  font-family: var(--title-font);
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 24px 80px 24px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-box .vs-accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.faq-box .vs-accordion .accordion-item .accordion-button {
  /* Small devices */
}
@media (max-width: 767px) {
  .faq-box .vs-accordion .accordion-item .accordion-button {
    padding: 24px 23px 24px 30px;
  }
}
.faq-box .vs-accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .faq-box .vs-accordion .accordion-item .accordion-button {
    padding: 24px 23px 24px 23px;
    font-size: 17px;
  }
}
.faq-box .vs-accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box .vs-accordion .accordion-item .accordion-button {
    padding: 24px 60px 24px 30px;
    font-size: 18px;
  }
}
.faq-box .vs-accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-box .vs-accordion .accordion-item .accordion-button .arrow-btn {
  position: absolute;
  top: 20px;
  right: 29px;
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #eeeeee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-box .vs-accordion .accordion-item .accordion-button .arrow-btn img {
  width: 8px;
}
.faq-box .vs-accordion .accordion-item .accordion-body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding: 0 80px 24px 50px;
  /* Small devices */
}
@media (max-width: 767px) {
  .faq-box .vs-accordion .accordion-item .accordion-body {
    padding: 0 60px 24px 30px;
  }
}
.faq-box .vs-accordion .accordion-item .accordion-body {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box .vs-accordion .accordion-item .accordion-body {
    padding-right: 30px;
  }
}
.faq-box .vs-accordion .accordion-item.active::before {
  opacity: 1;
  visibility: visible;
}
.faq-box .vs-accordion .accordion-item.active .accordion-button {
  color: var(--title-color);
}
.faq-box .vs-accordion .accordion-item.active .arrow-btn {
  background-color: var(--theme-color);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.faq-box.v2 .vs-accordion .accordion-item::before {
  background-image: url(../images/bg/faq-layer2.svg);
  background-size: cover;
}
.faq-box.v2 .vs-accordion .accordion-item .accordion-button {
  padding: 24px 23px 24px 30px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-box.v2 .vs-accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.faq-box.v2 .vs-accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .faq-box.v2 .vs-accordion .accordion-item .accordion-button {
    padding: 24px 23px 24px 23px;
    font-size: 17px;
  }
}
.faq-box.v2 .vs-accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box.v2 .vs-accordion .accordion-item .accordion-button {
    padding: 24px 60px 24px 30px;
    font-size: 18px;
  }
}
.faq-box.v2 .vs-accordion .accordion-item .accordion-body {
  padding: 0 60px 24px 30px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box.v2 .vs-accordion .accordion-item .accordion-body {
    padding-right: 30px;
  }
}

.faq-img {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-img {
    margin-top: 50px;
  }
}
.faq-img img {
  width: 100%;
}

.cta-banner {
  position: relative;
}

.cta-info {
  position: relative;
  background-image: url(../images/bg/bg3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

.cta-content {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .cta-content {
    margin: 0 30px;
  }
}
.cta-content {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .cta-content {
    margin: 0 10px;
  }
}
.cta-content .sec-title {
  margin-bottom: 0;
}
.cta-content .sec-title .sub-title {
  background-color: var(--white-color);
}
.cta-content .sec-title p {
  max-width: 550px;
  margin: 0 auto 29px;
  color: var(--title-color);
}
.cta-content .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.cta-content .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.cta-content .btn-style1:hover span {
  background-color: var(--title-color);
}
.cta-content .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.cta-content .btn-style1 span {
  background-color: var(--white-color);
}
.cta-content .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.footer-style1 {
  position: relative;
}
.footer-style1::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 490px;
  background-image: url(../images/bg/layer1-5.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* Medium devices */
}
@media (max-width: 992px) {
  .footer-style1::before {
    background-size: cover;
  }
}

.footer-logo {
  margin-bottom: 40px;
}

.footer-widget {
  margin-bottom: 50px;
}

.widget-area {
  position: relative;
  padding: 120px 0 20px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .widget-area {
    padding-top: 80px;
  }
}

.about-widget {
  position: relative;
}
.about-widget p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  font-weight: 400;
}

.social-links {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-links li {
  margin-right: 10px;
}
.social-links li:last-child {
  margin-right: 0;
}
.social-links li a {
  border: 1px solid var(--border-color5);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-links li a:hover {
  background-color: #eeeeee;
}
.social-links li a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.link-title {
  position: relative;
  color: var(--body-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}

.footer-links {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li:last-child {
  margin-bottom: 0;
}
.footer-links li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-block;
  color: var(--title-color);
}
.footer-links li a:hover {
  color: var(--body-color);
}

.widget-info {
  position: relative;
  padding-left: 90px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .widget-info {
    padding-left: 0;
  }
}

.footer-content {
  position: relative;
  text-align: center;
  margin-bottom: -78px;
}

.footer-box {
  position: relative;
  background-color: var(--white-color);
  padding: 23px 0 22px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.footer-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .footer-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-bottom p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  font-weight: 400;
}

.scrol-btn-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .scrol-btn-box {
    margin-top: 20px;
  }
}
.scrol-btn-box:hover {
  cursor: pointer;
}
.scrol-btn-box:hover #scrollTopBtn {
  background-color: var(--theme-color);
}
.scrol-btn-box:hover #scrollTopBtn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.scrol-btn-box span {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 15px 0 0;
  display: inline-block;
  color: var(--title-color);
}

.main-sec2 {
  position: relative;
}
.main-sec2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  background-image: url(../images/bg/page1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.main-sec2 .page-content.v2 {
  max-width: 700px;
  margin: 0 auto;
}
.main-sec2 .page-content.v2 .title {
  font-size: 40px;
  line-height: 55px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .main-sec2 .page-content.v2 .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.page-banner {
  position: relative;
  padding: 210px 0 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-banner {
    padding: 128px 0 0;
  }
}
.page-banner .container-fluid {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 15px;
}
.page-banner .page-title {
  display: none;
}

.bread-crumbs {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bread-crumbs li {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--title-color);
  /* Extra small devices */
}
@media (max-width: 576px) {
  .bread-crumbs li {
    font-size: 16px;
  }
}
.bread-crumbs li {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .bread-crumbs li {
    font-size: 14px;
  }
}
.bread-crumbs li a {
  color: var(--body-color);
}
.bread-crumbs li a:hover {
  color: var(--title-color);
}
.bread-crumbs .dot {
  padding: 0 20px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .bread-crumbs .dot {
    padding: 0 15px;
  }
}
.bread-crumbs .dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 10px;
}

.page-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-content .title {
  font-size: 75px;
  line-height: 85px;
  font-weight: 700;
  margin-bottom: 31px;
  letter-spacing: -0.03em;
  /* Large devices */
}
@media (max-width: 1199px) {
  .page-content .title {
    font-size: 66px;
    line-height: 76px;
    margin-bottom: 16px;
  }
}
.page-content .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-content .title {
    font-size: 52px;
    line-height: 62px;
  }
}
.page-content .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .page-content .title {
    font-size: 43px;
    line-height: 55px;
  }
}
.page-content .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .page-content .title {
    font-size: 36px;
    line-height: 48px;
  }
}
.page-content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  max-width: 550px;
  margin: 0 auto;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .page-content p {
    font-size: 16px;
    line-height: 26px;
  }
}

.page-quote {
  position: relative;
  background-color: var(--title-color);
  padding: 45px 50px;
  border-radius: 14px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-quote {
    margin-top: 30px;
  }
}
.page-quote {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .page-quote {
    padding: 34px 36px;
  }
}
.page-quote p {
  color: var(--white-color);
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 99px;
  font-weight: 600;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .page-quote p {
    font-size: 21px;
    line-height: 31px;
    margin-bottom: 73px;
  }
}
.page-quote p {
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-quote p {
    margin-bottom: 42px;
  }
}

.auther-area {
  position: relative;
}
.auther-area img {
  margin-bottom: 28px;
}
.auther-area .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white-color);
}
.auther-area .designation {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6509803922);
}

.page-content2 {
  position: relative;
  background-color: var(--title-color);
  border-radius: 14px;
  padding: 35px 50px 40px;
  margin-top: 34px;
}
.page-content2 .title {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white-color);
  padding-right: 50px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .page-content2 .title {
    padding-right: 0;
  }
}
.page-content2 .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .page-content2 .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.page-content2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.6509803922);
}
.page-content2 .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.page-content2 .btn-style1:hover span {
  background-color: var(--title-color);
}
.page-content2 .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.data-insight {
  position: relative;
  background-color: var(--title-color);
  border-radius: 14px;
  padding: 61px 60px 77px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .data-insight {
    padding: 47px 47px 52px;
  }
}
.data-insight {
  /* Medium devices */
}
@media (max-width: 992px) {
  .data-insight {
    margin-top: 50px;
  }
}
.data-insight .title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 41px;
  letter-spacing: -0.02em;
  color: var(--white-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .data-insight .title {
    font-size: 29px;
    line-height: 40px;
  }
}

.data-block {
  position: relative;
  padding-left: 96px;
  margin-bottom: 35px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .data-block {
    padding-left: 0;
  }
}
.data-block:hover .data-icon {
  background-color: var(--white-color);
}
.data-block:hover .data-icon img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.data-block .title2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 11px;
  color: var(--white-color);
}
.data-block p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6509803922);
}

.data-icon {
  position: absolute;
  top: 8px;
  left: 0;
  background-color: var(--theme-color);
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .data-icon {
    position: static;
    margin-bottom: 20px;
  }
}

.page-content.v2 {
  max-width: 885px;
}

.page-content.v3 .title {
  margin-bottom: 33px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .page-content.v3 .title {
    margin-bottom: 16px;
  }
}

.page-img2 {
  position: relative;
  /* Large devices */
}
@media (max-width: 1199px) {
  .page-img2 {
    height: 100%;
  }
  .page-img2 img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
}

.page-img6 {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .page-img6 {
    height: 100%;
  }
  .page-img6 img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
}

.page-img {
  position: relative;
  height: 600px;
  margin-top: 68px;
}
.page-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}

.bread-crumbs2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
  border: 1px solid #eeeeee;
  background: var(--white-color);
  border-radius: 999px;
  max-width: 361px;
  margin: 30px auto 0;
}
.bread-crumbs2 li {
  margin: 0 15px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .bread-crumbs2 li {
    margin: 0 10px;
  }
}
.bread-crumbs2 li a {
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  color: var(--title-color);
  /* Extra small devices */
}
@media (max-width: 416px) {
  .bread-crumbs2 li a {
    font-size: 14px;
  }
}

.bread-crumbs2.v2 {
  max-width: 389px;
}

.main-sec2.v2 .page-content {
  max-width: 887px;
}

.page-info2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-info2 {
    margin-top: 50px;
  }
}

.page-img5 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-img5 {
    padding-top: 20px;
  }
}

.main-sec4 {
  position: relative;
}
.main-sec4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 423px;
  background-image: url(../images/bg/page-layer.png);
}
.main-sec4 .page-content {
  max-width: 846px;
}
.main-sec4 .page-content p {
  max-width: 780px;
}
.main-sec4 .page-content.v4 {
  max-width: 1000px;
}
.main-sec4 .page-img {
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .main-sec4 .page-img {
    height: 400px;
  }
}
.main-sec4 .page-img {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .main-sec4 .page-img {
    margin-top: 50px;
  }
}

.page-content.v5 .title {
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 30px;
}
.page-content.v5 p {
  max-width: 687px;
}

.main-sec4.v2 .page-content {
  max-width: 954px;
}

.main-sec4.v3 .page-content {
  max-width: 100%;
}

.main-sec3 {
  position: relative;
  background-color: var(--theme-color2);
  padding: 251px 0 142px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .main-sec3 {
    padding: 170px 0 102px;
  }
}
.main-sec3 .header-main {
  background-color: var(--white-color);
  top: 0;
}
.main-sec3 .header-main .header-bottom {
  padding: 20px 0;
}
.main-sec3 .page-content.v7 {
  max-width: 728px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .main-sec3 .page-content.v7 {
    padding-top: 40px;
  }
}
.main-sec3 .page-content.v7 {
  /* Small devices */
}
@media (max-width: 767px) {
  .main-sec3 .page-content.v7 {
    max-width: 526px;
  }
}
.main-sec3 .page-content.v7 .title {
  font-size: 55px;
  line-height: 65px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .main-sec3 .page-content.v7 .title {
    font-size: 41px;
    line-height: 48px;
  }
}
.main-sec3 .page-content.v7 .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .main-sec3 .page-content.v7 .title {
    font-size: 33px;
    line-height: 44px;
  }
}

.page-banner3 {
  position: relative;
  text-align: center;
}
.page-banner3 .title {
  font-size: 75px;
  line-height: 85px;
  font-weight: 700;
  margin-bottom: 33px;
  letter-spacing: -0.03em;
  /* Large devices */
}
@media (max-width: 1199px) {
  .page-banner3 .title {
    font-size: 66px;
    line-height: 76px;
    margin-bottom: 16px;
  }
}
.page-banner3 .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-banner3 .title {
    font-size: 57px;
    line-height: 68px;
  }
}
.page-banner3 .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .page-banner3 .title {
    font-size: 43px;
    line-height: 55px;
  }
}
.page-banner3 .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .page-banner3 .title {
    font-size: 36px;
    line-height: 48px;
  }
}

.page-banner4 {
  position: relative;
}
.page-banner4 .container-fluid {
  max-width: 1780px;
  margin: 0 auto;
}
.page-banner4 .page-title {
  display: none;
}

.choose-us-sec2 {
  position: relative;
}

.choose-content2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .choose-content2 {
    margin-bottom: 50px;
  }
}
.choose-content2 .sec-title {
  text-align: left;
  margin-bottom: 104px;
  padding-right: 20px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .choose-content2 .sec-title {
    padding: 0;
    margin-bottom: 50px;
  }
}
.choose-content2 .sec-title {
  /* Small devices */
}
@media (max-width: 767px) {
  .choose-content2 .sec-title {
    padding-right: 50px;
  }
}
.choose-content2 .sec-title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .choose-content2 .sec-title {
    padding-right: 0;
  }
}

.choose-img {
  position: relative;
}
.choose-img img {
  width: 100%;
}

.choose-block2 {
  position: relative;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color);
  padding: 30px 50px 30px 50px;
  border-radius: 14px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.choose-block2:hover {
  background-color: var(--theme-color);
}
.choose-block2 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .choose-block2 {
    padding: 30px 33px 30px 33px;
  }
}
.choose-block2 .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.choose-block2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--title-color);
}

.choose-icon2 {
  position: relative;
  margin-bottom: 20px;
}

.choose-info2 {
  position: relative;
  padding-left: 117px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .choose-info2 {
    padding-left: 66px;
  }
}
.choose-info2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .choose-info2 {
    padding: 0;
  }
}

.funfact-sec {
  position: relative;
}
.funfact-sec .row {
  margin-bottom: -25px;
}

.funfact-block-inner {
  position: relative;
}
.funfact-block-inner .title {
  font-size: 65px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 118px;
  letter-spacing: -0.03em;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .funfact-block-inner .title {
    margin-bottom: 30px;
  }
}
.funfact-block-inner .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .funfact-block-inner .title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
  }
}
.funfact-block-inner p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 178px;
  color: #0f172a;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .funfact-block-inner p {
    margin-bottom: 15px;
  }
}
.funfact-block-inner p {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .funfact-block-inner p {
    max-width: unset;
  }
}

.auther-info p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 99px;
  color: #696969;
  max-width: 225px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .auther-info p {
    margin-bottom: 30px;
    max-width: unset;
  }
}
.auther-info a {
  display: inline-block;
}
.auther-info a img {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .auther-info a img {
    width: unset;
  }
}

.funfact-img {
  position: relative;
  /* Large devices */
}
@media (max-width: 1199px) {
  .funfact-img {
    height: 584px;
  }
  .funfact-img img {
    height: 100%;
  }
}
.funfact-img {
  /* Medium devices */
}
@media (max-width: 992px) {
  .funfact-img {
    height: unset;
    margin-bottom: 50px;
  }
}
.funfact-img img {
  width: 100%;
}

.funfact-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 40px 30px;
  background-color: var(--white-color);
  border-radius: 14px;
  min-width: 610px;
  margin: 10px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .funfact-content {
    width: 555px;
    min-width: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0 0 10px;
  }
}
.funfact-content {
  /* Large devices */
}
@media (max-width: 1199px) {
  .funfact-content {
    width: 463px;
  }
}
.funfact-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .funfact-content {
    width: 721px;
  }
}
.funfact-content {
  /* Small devices */
}
@media (max-width: 767px) {
  .funfact-content {
    width: 524px;
  }
}
.funfact-content {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .funfact-content {
    width: 430px;
    display: block;
    margin-bottom: 12px;
  }
}
.funfact-content {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .funfact-content {
    width: 326px;
    padding: 15px 28px 23px;
  }
}

.funfact-block-one {
  position: relative;
  background-color: var(--bg-color);
  border-radius: 14px;
  padding: 40px 40px 30px;
  min-height: 300px;
  margin-bottom: 25px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .funfact-block-one {
    min-height: unset;
  }
}
.funfact-block-one .title {
  font-size: 65px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 122px;
  letter-spacing: -0.03em;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .funfact-block-one .title {
    margin-bottom: 68px;
  }
}
.funfact-block-one p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 200px;
  color: #0f172a;
  /* Large devices */
}
@media (max-width: 1199px) {
  .funfact-block-one p {
    font-size: 15px;
    line-height: 23px;
  }
}

.funfact-block-one.v2 {
  background-color: var(--title-color);
  z-index: 0;
}
.funfact-block-one.v2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 630px;
  height: 300px;
  background-image: url(../images/event/layer1-2.png);
  z-index: -1;
}
.funfact-block-one.v2 .title,
.funfact-block-one.v2 p {
  color: var(--white-color);
}
.funfact-block-one.v2 .title {
  margin-bottom: 146px;
}

.funfact-block-one.v3 {
  background-color: var(--theme-color);
}

.funfact-block-one.v4 {
  background-color: var(--title-color);
}
.funfact-block-one.v4 .title,
.funfact-block-one.v4 p {
  color: var(--white-color);
}

.team-sec {
  position: relative;
}
.team-sec .row {
  margin-bottom: -30px;
}
.team-sec .sec-title {
  max-width: 633px;
}

.team-card {
  position: relative;
  margin-bottom: 30px;
}
.team-card:hover .team-img a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.team-card:hover .social-link3 {
  opacity: 1;
  visibility: visible;
}
.team-card:hover .social-link3 li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.social-link3 {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}
.social-link3 li {
  margin-bottom: 5px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-link3 li:first-child a img {
  width: 9px;
}
.social-link3 li:last-child {
  margin-bottom: 0;
}
.social-link3 li {
  /* delay one by one */
}
.social-link3 li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.social-link3 li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.social-link3 li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.social-link3 li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.social-link3 li a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--title-color);
  border-radius: 50%;
}
.social-link3 li a:hover {
  background-color: var(--white-color);
}
.social-link3 li a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.social-link3 li a img {
  width: 14px;
  height: auto;
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.team-img {
  position: relative;
}
.team-img a {
  display: inline-block;
  overflow: hidden;
  border-radius: 14px;
  width: 100%;
}
.team-img a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}

.team-content {
  position: relative;
  margin-top: 16px;
}
.team-content .name {
  margin-bottom: 2px;
}
.team-content .name a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  color: var(--title-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.team-content .name a:hover {
  text-decoration: underline;
}
.team-content .designation {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
}

.service-sec {
  position: relative;
  background-color: var(--theme-color2);
}
.service-sec .row {
  margin-bottom: -30px;
}
.service-sec .sec-title {
  max-width: 633px;
}

.ser-block {
  position: relative;
  margin-bottom: 30px;
  background-color: var(--white-color);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 50px 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Large devices */
}
@media (max-width: 1199px) {
  .ser-block {
    padding: 35px 29px;
  }
}
.ser-block {
  /* Medium devices */
}
@media (max-width: 992px) {
  .ser-block {
    padding: 50px 50px;
  }
}
.ser-block {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .ser-block {
    padding: 40px 30px;
  }
}
.ser-block:hover {
  background-color: var(--title-color);
}
.ser-block:hover img {
  -webkit-filter: brightness(11111);
          filter: brightness(11111);
}
.ser-block:hover .title,
.ser-block:hover p {
  color: var(--white-color);
}
.ser-block:hover .ser-btn {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.ser-block .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 24px;
}
.ser-block p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 35px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .ser-block p {
    max-width: 243px;
  }
}
.ser-block p {
  /* Medium devices */
}
@media (max-width: 992px) {
  .ser-block p {
    max-width: 266px;
  }
}
.ser-block p {
  /* Small devices */
}
@media (max-width: 767px) {
  .ser-block p {
    max-width: 100%;
  }
}

.ser-btn {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--border-color);
  color: var(--title-color);
  height: 44px;
  line-height: 42px;
  padding: 0 23px;
  border-radius: 50px;
}

.ser-icon {
  margin-bottom: 45px;
}

.contct-sec {
  position: relative;
}

.contact-content {
  position: relative;
  max-width: 502px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .contact-content {
    margin-bottom: 50px;
  }
}
.contact-content {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .contact-content {
    margin-bottom: 10px;
  }
}
.contact-content .sec-title {
  text-align: left;
  border-bottom: 1px solid var(--border-color5);
  padding-bottom: 60px;
  /* Small devices */
}
@media (max-width: 767px) {
  .contact-content .sec-title {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.contact-content .sec-title .title {
  margin-bottom: 0;
}

.contact-block {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .contact-block {
    margin-bottom: 40px;
  }
}
.contact-block .help-line {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--body-color);
  margin-bottom: 19px;
}
.contact-block .help-line img {
  margin-right: 15px;
}
.contact-block .nmbr,
.contact-block p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 9px;
  display: inline-block;
  color: var(--title-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .contact-block .nmbr,
  .contact-block p {
    display: block;
    max-width: 300px;
  }
}
.contact-block .nmbr:hover,
.contact-block p:hover {
  text-decoration: underline;
}

.contact-form {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 50px 50px;
  border-radius: 14px;
  /* Small devices */
}
@media (max-width: 767px) {
  .contact-form {
    padding: 36px 29px;
  }
}
.contact-form .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 23px;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  height: 56px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #a4a4a4;
  border: 1px solid rgba(14, 14, 14, 0.0705882353);
  border-radius: 14px;
  width: 100%;
  padding: 0 25px;
}
.contact-form .form-group input::-webkit-input-placeholder, .contact-form .form-group select::-webkit-input-placeholder, .contact-form .form-group textarea::-webkit-input-placeholder {
  color: #a4a4a4;
}
.contact-form .form-group input::-moz-placeholder, .contact-form .form-group select::-moz-placeholder, .contact-form .form-group textarea::-moz-placeholder {
  color: #a4a4a4;
}
.contact-form .form-group input:-ms-input-placeholder, .contact-form .form-group select:-ms-input-placeholder, .contact-form .form-group textarea:-ms-input-placeholder {
  color: #a4a4a4;
}
.contact-form .form-group input::-ms-input-placeholder, .contact-form .form-group select::-ms-input-placeholder, .contact-form .form-group textarea::-ms-input-placeholder {
  color: #a4a4a4;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #a4a4a4;
}
.contact-form .form-group textarea {
  height: 130px;
  padding: 18px 23px;
}

.feature-sec5 {
  position: relative;
}
.feature-sec5 .row {
  margin-bottom: -30px;
}

.feature-block5 {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 34px 34px 34px 34px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .feature-block5 {
    padding: 34px 23px 34px 22px;
  }
}
.feature-block5 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-block5 {
    padding: 34px 34px 34px 34px;
  }
}
.feature-block5:hover {
  background-color: var(--theme-color);
  border-color: transparent;
}
.feature-block5:hover p {
  color: var(--title-color);
}
.feature-block5 img {
  margin-bottom: 85px;
}
.feature-block5 .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .feature-block5 .title {
    font-size: 18px;
  }
}
.feature-block5 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.result-sec {
  position: relative;
}
.result-sec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Large devices */
}
@media (max-width: 1199px) {
  .result-sec .row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.result-content {
  position: relative;
  padding-right: 100px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .result-content {
    padding-right: 0;
  }
}
.result-content .sec-title {
  text-align: left;
  margin-bottom: 0;
}

.result-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin: 41px 0 43px;
}
.result-list li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 11px;
  padding-left: 26px;
}
.result-list li:last-child {
  margin-bottom: 0;
}
.result-list li img {
  position: absolute;
  top: 8px;
  left: 0;
}

.result-img {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .result-img {
    margin-top: 50px;
  }
}
.result-img img {
  width: 100%;
}

.result-block {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--theme-color);
  border-radius: 14px;
  padding: 35px 40px 35px;
  min-width: 275px;
}
.result-block .title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 83px;
  letter-spacing: -0.03em;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .result-block .title {
    margin-bottom: 68px;
  }
}
.result-block p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
  max-width: 207px;
  color: #0f172a;
  /* Large devices */
}
@media (max-width: 1199px) {
  .result-block p {
    font-size: 15px;
    line-height: 23px;
  }
}

.funfact-sec2 {
  position: relative;
  background-color: var(--theme-color2);
}
.funfact-sec2 .sec-title {
  max-width: 633px;
}

.faq-box2 {
  position: relative;
}
.faq-box2 .vs-accordion {
  position: relative;
  border: 0;
  border-radius: 14px;
}
.faq-box2 .vs-accordion .accordion-item {
  position: relative;
  border: 1px solid var(--border-color5);
  background-color: var(--white-color);
  border-radius: 14px;
  z-index: 9;
  margin-bottom: 10px;
}
.faq-box2 .vs-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.faq-box2 .vs-accordion .accordion-item:hover .accordion-button .arrow-btn {
  background-color: var(--theme-color);
}
.faq-box2 .vs-accordion .accordion-item .accordion-button {
  line-height: 30px;
  margin-bottom: 0;
  font-family: var(--title-font);
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 40px 70px 40px 70px;
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-box2 .vs-accordion .accordion-item .accordion-button {
    padding: 40px 70px 40px 35px;
  }
}
.faq-box2 .vs-accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .faq-box2 .vs-accordion .accordion-item .accordion-button {
    font-size: 18px;
    padding: 23px 70px 23px 35px;
  }
}
.faq-box2 .vs-accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-box2 .vs-accordion .accordion-item .accordion-button .arrow-btn {
  position: absolute;
  top: 34px;
  right: 29px;
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #eeeeee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .faq-box2 .vs-accordion .accordion-item .accordion-button .arrow-btn {
    width: 40px;
    height: 40px;
    top: 19px;
  }
  .faq-box2 .vs-accordion .accordion-item .accordion-button .arrow-btn img {
    width: 11px;
  }
}
.faq-box2 .vs-accordion .accordion-item .accordion-button .arrow-btn img {
  width: 15px;
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.faq-box2 .vs-accordion .accordion-item .accordion-body {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  padding: 0 70px 40px 70px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-box2 .vs-accordion .accordion-item .accordion-body {
    padding: 0 70px 40px 35px;
  }
}
.faq-box2 .vs-accordion .accordion-item .accordion-body {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .faq-box2 .vs-accordion .accordion-item .accordion-body {
    padding: 0 50px 26px 35px;
  }
}
.faq-box2 .vs-accordion .accordion-item.active::before {
  opacity: 1;
  visibility: visible;
}
.faq-box2 .vs-accordion .accordion-item.active .accordion-button {
  color: var(--title-color);
}
.faq-box2 .vs-accordion .accordion-item.active .arrow-btn {
  background-color: var(--theme-color);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.analytic-sec {
  position: relative;
}
.analytic-sec .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Large devices */
}
@media (max-width: 1199px) {
  .analytic-sec .row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.analytic-img {
  position: relative;
}
.analytic-img img {
  width: 100%;
}

.analytic-content {
  position: relative;
  padding-left: 115px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .analytic-content {
    padding-left: 0;
  }
}
.analytic-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .analytic-content {
    margin-top: 50px;
    padding-right: 50px;
  }
}
.analytic-content {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .analytic-content {
    padding-right: 0;
  }
}
.analytic-content .sec-title {
  text-align: left;
  margin-bottom: 48px;
}
.analytic-content .sec-title .title {
  margin-bottom: 48px;
}

.analytic-block {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .analytic-block {
    margin-bottom: 30px;
  }
}
.analytic-block img {
  margin-bottom: 28px;
}
.analytic-block .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 13px;
}
.analytic-block p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.blog-detail-sec {
  position: relative;
  padding: 100px 0 120px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .blog-detail-sec {
    padding: 80px 0;
  }
}

.blog-detail-content {
  position: relative;
}
.blog-detail-content .blog-img {
  margin-bottom: 20px;
}
.blog-detail-content .blog-img img {
  width: 100%;
}
.blog-detail-content .paragraph {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 400;
}
.blog-detail-content .video-wrapper {
  overflow: hidden;
  border-radius: 14px;
  height: 478px;
  margin-bottom: 20px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .blog-detail-content .video-wrapper {
    height: 281px;
  }
}
.blog-detail-content .video-wrapper iframe {
  height: 100%;
}

.testimonial {
  position: relative;
  margin: 30px 0;
  padding: 30px 35px 30px 200px;
  min-height: 160px;
  border: none;
  background-color: var(--title-color);
  border-radius: 14px;
  /* Small devices */
}
@media (max-width: 767px) {
  .testimonial {
    padding-left: 35px;
  }
}
.testimonial img {
  position: absolute;
  top: 30px;
  left: 50px;
  border-radius: 50%;
  /* Small devices */
}
@media (max-width: 767px) {
  .testimonial img {
    display: none;
  }
}
.testimonial p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--white-color);
  /* Extra small devices */
}
@media (max-width: 416px) {
  .testimonial p {
    font-size: 16px;
    line-height: 29px;
  }
}

.auther-bio {
  position: relative;
  margin-top: 50px;
  padding: 30px 50px;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  /* Small devices */
}
@media (max-width: 767px) {
  .auther-bio {
    padding: 30px 32px;
  }
}

.social-link2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-link2 li {
  margin-right: 12px;
}
.social-link2 li:last-child {
  margin-right: 0;
}
.social-link2 li:nth-child(2) a img {
  width: 10px;
}
.social-link2 li a {
  width: 38px;
  height: 38px;
  line-height: 34px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 50%;
  display: inline-block;
}
.social-link2 li a:hover {
  background-color: var(--theme-color);
  border-color: transparent;
}
.social-link2 li a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.social-link2 li a img {
  width: 15px;
}

.author-image {
  position: absolute;
  top: 30px;
  left: 50px;
  /* Small devices */
}
@media (max-width: 767px) {
  .author-image {
    display: none;
  }
}
.author-image img {
  max-width: 170px;
}

.author-info {
  position: relative;
  padding-left: 210px;
  /* Small devices */
}
@media (max-width: 767px) {
  .author-info {
    padding-left: 0;
  }
}
.author-info .name {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}
.author-info p {
  margin-bottom: 20px;
}

.post-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Small devices */
}
@media (max-width: 767px) {
  .post-nav {
    display: none;
  }
}

.post-prev {
  position: relative;
  margin-top: 50px;
}
.post-prev:hover .title {
  text-decoration: underline;
}
.post-prev:hover .nav-thumb::before {
  opacity: 1;
  visibility: visible;
}
.post-prev:hover .post-btn {
  opacity: 1;
  visibility: visible;
}
.post-prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-prev .post-btn {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

.post-next {
  position: relative;
  margin-top: 50px;
}
.post-next:hover .title {
  text-decoration: underline;
}
.post-next:hover .nav-thumb::before {
  opacity: 1;
  visibility: visible;
}
.post-next:hover .post-btn {
  opacity: 1;
  visibility: visible;
}
.post-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-next .nav-text {
  margin: 0 20px 0 0;
  text-align: right;
}
.post-next .nav-thumb .post-btn {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.nav-thumb {
  position: relative;
  width: 80px;
  height: 80px;
}
.nav-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: var(--title-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav-thumb img {
  border-radius: 10px;
  height: 100%;
}

.post-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 30px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.nav-text {
  position: relative;
  margin-left: 20px;
}
.nav-text .title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 3px;
  max-width: 300px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .nav-text .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 206px;
  }
}
.nav-text .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .nav-text .title {
    max-width: 240px;
  }
}
.nav-text span {
  display: inline-block;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 600;
  color: #696969;
}

.gravatar {
  position: absolute;
  top: 0;
  left: 0;
}
.gravatar img {
  width: 100px;
  border-radius: 50%;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .gravatar img {
    width: 70px;
  }
}

.comment-meta {
  position: relative;
}
.comment-meta .comment-author {
  position: relative;
  text-transform: capitalize;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.comment-meta .comment-time {
  display: block;
  color: #696969;
  opacity: 0.6;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.comment-meta .comment-reply-link {
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--title-color);
}
.comment-meta .comment-reply-link img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 11px;
  margin-left: 8px;
}

.comment-reply {
  position: relative;
  margin-top: 10px;
}

.comments-box {
  position: relative;
  padding-left: 130px;
  margin-bottom: 47px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .comments-box {
    padding-left: 90px;
  }
}

.comments-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 47px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .comments-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.comments-area {
  position: relative;
  margin: 50px 0 70px;
  padding-top: 70px;
  border-top: 1px solid #eeeeee;
  /* Small devices */
}
@media (max-width: 767px) {
  .comments-area {
    border: 0;
    padding-top: 0;
  }
}

.comments-box.v2 {
  margin-left: 110px;
  /* Small devices */
}
@media (max-width: 767px) {
  .comments-box.v2 {
    margin-left: 0;
  }
}

.comment-respond {
  position: relative;
}
.comment-respond .comment-reply-title {
  position: relative;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .comment-respond .comment-reply-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.comment-respond .comment-notes {
  line-height: 1.7;
  margin-bottom: 36px;
}

.comment-form {
  position: relative;
}
.comment-form .form-group {
  margin-bottom: 20px;
}
.comment-form .form-group input,
.comment-form .form-group select,
.comment-form .form-group textarea {
  background: var(--white-color);
  color: var(--title-color);
  border: 1px solid #eeeeee;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 14px;
}
.comment-form .form-group input::-webkit-input-placeholder, .comment-form .form-group select::-webkit-input-placeholder, .comment-form .form-group textarea::-webkit-input-placeholder {
  color: #a4a4b0;
}
.comment-form .form-group input::-moz-placeholder, .comment-form .form-group select::-moz-placeholder, .comment-form .form-group textarea::-moz-placeholder {
  color: #a4a4b0;
}
.comment-form .form-group input:-ms-input-placeholder, .comment-form .form-group select:-ms-input-placeholder, .comment-form .form-group textarea:-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form .form-group input::-ms-input-placeholder, .comment-form .form-group select::-ms-input-placeholder, .comment-form .form-group textarea::-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form .form-group input::placeholder,
.comment-form .form-group select::placeholder,
.comment-form .form-group textarea::placeholder {
  color: #a4a4b0;
}
.comment-form .form-group textarea {
  height: 189px;
}

.radio-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  /* Small devices */
}
@media (max-width: 767px) {
  .radio-btn {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.radio-btn input {
  width: 20px;
  height: 20px;
  /* Small devices */
}
@media (max-width: 767px) {
  .radio-btn input {
    margin-top: 3px;
  }
}
.radio-btn label {
  padding-left: 10px;
  line-height: 24px;
}
.radio-btn input[type=radio] {
  accent-color: #000;
}

.tag-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px 0 0;
}
.tag-list li {
  margin: 0 4px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .tag-list li {
    margin-bottom: 5px;
  }
}
.tag-list li span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #696969;
  display: inline-block;
  margin-right: 5px;
}
.tag-list li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--title-color);
  padding: 0 18px;
  height: 34px;
  line-height: 32px;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  display: inline-block;
}
.tag-list li a:hover {
  background-color: var(--theme-color);
}

.blog-detail-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.blog-detail-list li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 17px;
}
.blog-detail-list li:last-child {
  margin-bottom: 0;
}
.blog-detail-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #696969;
  border-radius: 50%;
}

.comment-form2 .form-group {
  position: relative;
}
.comment-form2 .form-group input {
  background: var(--white-color);
  color: var(--title-color);
  border: 1px solid #eeeeee;
  height: 56px;
  padding: 0 40px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 14px;
}
.comment-form2 .form-group input::-webkit-input-placeholder {
  color: #a4a4b0;
}
.comment-form2 .form-group input::-moz-placeholder {
  color: #a4a4b0;
}
.comment-form2 .form-group input:-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form2 .form-group input::-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form2 .form-group input::placeholder {
  color: #a4a4b0;
}
.comment-form2 .form-group button {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  background-color: unset;
  padding: 0;
}
.comment-form2 .form-group button img {
  width: 20px;
  -webkit-filter: invert(0.7);
          filter: invert(0.7);
}

.side-widget {
  border: 1px solid #eeeeee;
  margin-top: 30px;
  padding: 42px 39px;
  border-radius: 14px;
  background-color: var(--white-color);
}

.side-bar-title {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  padding-bottom: 18px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.side-bar-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: 3px;
  background: var(--title-color);
}

.categorie-widegt {
  position: relative;
}
.categorie-widegt .blog-detail-list li:hover::before {
  background-color: #696969;
}
.categorie-widegt .blog-detail-list li:hover a {
  color: #696969;
}
.categorie-widegt .blog-detail-list li a {
  color: var(--title-color);
}
.categorie-widegt .blog-detail-list li::before {
  background-color: var(--title-color);
}

.news-content {
  position: relative;
  padding: 2px 0 2px 100px;
  margin-bottom: 25px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .news-content {
    max-width: 300px;
  }
}
.news-content:last-child {
  margin-bottom: 0;
}
.news-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.news-content .date {
  font-size: 14px;
  display: block;
  line-height: 1;
}
.news-content .title {
  margin-bottom: 0;
}
.news-content .title a {
  margin-top: 8px;
  line-height: 24px;
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  display: inline-block;
  color: var(--title-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-content .title a:hover {
  text-decoration: underline;
}

.tag-widget {
  position: relative;
  padding-bottom: 27px;
}
.tag-widget .tag-list li {
  margin-bottom: 12px;
}

.form-widget2 {
  position: relative;
}
.form-widget2 p {
  margin: 0 0 20px;
}

.comment-form3 {
  position: relative;
}
.comment-form3 .form-group {
  position: relative;
}
.comment-form3 .form-group input {
  background: var(--white-color);
  color: var(--title-color);
  border: 1px solid #eeeeee;
  height: 56px;
  padding: 0 40px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 50px;
  margin-bottom: 10px;
}
.comment-form3 .form-group input::-webkit-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::-moz-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input:-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.comment-form3 .form-group .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.comment-form3 .form-group .btn-style1:hover span {
  background-color: var(--title-color);
}
.comment-form3 .form-group .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.comment-form3 .form-group .btn-style1 span {
  background-color: var(--white-color);
}
.comment-form3 .form-group .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.side-bar {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .side-bar {
    margin-top: 50px;
  }
}
.side-bar .comment-form3 {
  margin-top: 0;
}
.side-bar .comment-form3 .form-group {
  margin-bottom: 0;
}

.blog-pagination {
  position: relative;
  margin: 5px 0 0;
}
.blog-pagination .page-item {
  margin-left: 10px;
}
.blog-pagination .page-item:last-child {
  margin-right: 0;
}
.blog-pagination .page-item .page-link {
  padding: 0;
  margin: 0;
  border: 1px solid #eeeeee;
  font-size: 16px;
  color: var(--title-color);
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.blog-pagination .page-item .page-link:hover {
  background-color: var(--title-color);
  border-color: transparent;
  color: var(--white-color);
}
.blog-pagination .page-item .page-link:hover img {
  -webkit-filter: brightness(11111);
          filter: brightness(11111);
}

.comment-respond.v2 {
  margin: 50px 0 0;
  padding-top: 70px;
  border-top: 1px solid var(--border-color);
}

.blog-sec {
  position: relative;
}
.blog-sec .blog-title {
  display: none;
}

.blog-card {
  position: relative;
  margin-bottom: 30px;
}
.blog-card:hover .blog-img a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-img {
  position: relative;
}
.blog-img a {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}
.blog-img a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.blog-img .video-trigger {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-img .video-trigger:hover {
  background-color: unset;
}

.blog-meta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}
.blog-meta li {
  position: relative;
  margin-right: 50px;
}
.blog-meta li:last-child {
  margin-right: 0;
}
.blog-meta li:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -26%;
  width: 30px;
  height: 1px;
  background-color: var(--title-color);
}
.blog-meta li:last-child a {
  color: var(--body-color);
}
.blog-meta li a {
  color: var(--title-color);
}
.blog-meta li a:hover {
  color: var(--title-color);
}

.blog-content {
  position: relative;
  padding: 21px 0 0;
}
.blog-content .title {
  margin-bottom: 19px;
  padding-right: 40px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content .title {
    padding-right: 0;
  }
}
.blog-content .title a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  color: var(--title-color);
}
.blog-content .title a:hover {
  text-decoration: underline;
}
.blog-content .title a {
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content .title a {
    font-size: 18px;
    line-height: 26px;
  }
}
.blog-content .title a {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-content .title a {
    font-size: 20px;
    line-height: 30px;
  }
}
.blog-content .btn-style1 {
  border: 1px solid #f0e4ff;
  background-color: unset;
  color: var(--body-color);
  height: 44px;
}
.blog-content .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.blog-content .btn-style1:hover span {
  background-color: var(--title-color);
}
.blog-content .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.blog-content .btn-style1 span {
  background-color: var(--theme-color);
  width: 30px;
  height: 30px;
}
.blog-content .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
  width: 15px;
}

.blog-card.v2 {
  margin-bottom: 54px;
}
.blog-card.v2 .blog-content .btn-style1 {
  height: 50px;
  line-height: 50px;
}
.blog-card.v2 .blog-content .btn-style1 span {
  width: 40px;
  height: 40px;
}
.blog-card.v2 .blog-content .btn-style1 span img {
  width: 22px;
}

.blog-pagination.v2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.blog-sec2 {
  position: relative;
}

.blog-card2 {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 10px 10px 0;
  margin-bottom: 65px;
}
.blog-card2:last-child {
  margin-bottom: 0;
}
.blog-card2:hover .blog-img2 img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-card2 .video-trigger {
  width: 100px;
  height: 100px;
  line-height: 100px;
  font-size: 20px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-card2 .video-trigger {
    width: 80px;
    height: 80px;
    line-height: 80px;
  }
}

.blog-content2 {
  position: relative;
  padding: 59px 40px 40px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .blog-content2 {
    padding: 59px 24px 40px;
  }
}
.blog-content2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-content2 {
    padding: 43px 24px 40px;
  }
}
.blog-content2 .title {
  margin-bottom: 14px;
}
.blog-content2 .title a {
  font-size: 30px;
  line-height: 45px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-block;
  color: var(--title-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content2 .title a {
    font-size: 26px;
    line-height: 37px;
  }
}
.blog-content2 .title a {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-content2 .title a {
    font-size: 24px;
    line-height: 32px;
  }
}
.blog-content2 .title a:hover {
  text-decoration: underline;
}
.blog-content2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.blog-content2 .btn-style1 {
  background-color: unset;
  border: 1px solid var(--border-color);
}
.blog-content2 .btn-style1 span {
  background-color: var(--theme-color);
}
.blog-content2 .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.blog-content2 .btn-style1:hover {
  background-color: var(--title-color);
  border-color: transparent;
}
.blog-content2 .btn-style1:hover span {
  background-color: var(--white-color);
}

.blog-img2 {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.blog-img2 img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.blog-meta2 {
  position: absolute;
  top: -31px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding-left: 0;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  padding: 18px 0;
  min-width: 750px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50px;
  margin-bottom: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 9;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .blog-meta2 {
    min-width: 688px;
  }
}
.blog-meta2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-meta2 {
    min-width: 566px;
  }
}
.blog-meta2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-meta2 {
    min-width: 452px;
  }
}
.blog-meta2 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .blog-meta2 {
    min-width: 394px;
  }
}
.blog-meta2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-meta2 {
    min-width: 298px;
    padding: 10px 0;
    top: -22px;
  }
}
.blog-meta2 li {
  position: relative;
}
.blog-meta2 li:nth-child(6) {
  display: none;
}
.blog-meta2 li:last-child {
  /* Medium devices */
}
@media (max-width: 992px) {
  .blog-meta2 li:last-child {
    display: none;
  }
}
.blog-meta2 li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--body-color);
  display: inline-block;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-meta2 li a {
    font-size: 14px;
  }
}
.blog-meta2 li a:hover {
  color: var(--title-color);
}
.blog-meta2 .dot {
  margin: 0 25px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-meta2 .dot {
    margin: 0 14px;
  }
}
.blog-meta2 .dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: var(--body-color);
  border-radius: 50px;
}

.blog-sec3 {
  position: relative;
}
.blog-sec3 .blog-pagination {
  margin-top: 70px;
}

.blog-card3 {
  position: relative;
  margin-bottom: 30px;
  padding: 54px 0 54px;
  border-radius: 14px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .blog-card3 {
    padding: 35px 0 43px;
  }
}
.blog-card3 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-card3 {
    padding: 26px 0 19px;
  }
}
.blog-card3 {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-card3 {
    padding: 0;
  }
}
.blog-card3:hover .blog-img a img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-img3 {
  position: absolute;
  top: 0;
  left: 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-img3 {
    position: relative;
  }
}
.blog-img3 a {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}
.blog-img3 a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 410px;
  height: 270px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-img3 a img {
    max-width: 303px;
    height: 200px;
  }
}
.blog-img3 a img {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-img3 a img {
    height: auto;
    max-width: 100%;
  }
}
.blog-img3 .video-trigger {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blog-img3 .video-trigger:hover {
  background-color: unset;
}

.blog-content3 {
  padding: 0 0 0 450px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content3 {
    padding: 0 0 0 332px;
  }
}
.blog-content3 {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-content3 {
    padding: 20px;
  }
}
.blog-content3 .title {
  margin-bottom: 19px;
  padding-right: 40px;
}
.blog-content3 .title a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  color: var(--title-color);
}
.blog-content3 .title a:hover {
  text-decoration: underline;
}
.blog-content3 .title a {
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content3 .title a {
    font-size: 18px;
    line-height: 26px;
  }
}
.blog-content3 .title a {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-content3 .title a {
    font-size: 20px;
    line-height: 30px;
  }
}
.blog-content3 .btn-style1 {
  border: 1px solid #f0e4ff;
  background-color: unset;
  color: var(--body-color);
  height: 44px;
}
.blog-content3 .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.blog-content3 .btn-style1:hover span {
  background-color: var(--title-color);
}
.blog-content3 .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.blog-content3 .btn-style1 span {
  background-color: var(--theme-color);
  width: 30px;
  height: 30px;
}
.blog-content3 .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
  width: 15px;
}
.blog-content3 .blog-meta li:last-child::before {
  left: -37%;
}

.blog-info3 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .blog-info3 {
    margin-top: 50px;
  }
}

.project-sec {
  position: relative;
  padding-top: 61px;
}
.project-sec .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.project-sec .grid-item {
  width: 50%;
  padding: 0 15px;
  /* Small devices */
}
@media (max-width: 767px) {
  .project-sec .grid-item {
    width: 100% !important;
  }
}

.project-info {
  position: relative;
  margin-bottom: -43px;
}

.masonry-grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.masonry-grid .grid-item {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.masonry-grid .grid-item.hide {
  opacity: 0;
  -webkit-transform: scale(0.8) translateY(20px);
          transform: scale(0.8) translateY(20px);
  pointer-events: none;
  position: absolute;
}
.masonry-grid .grid-item.show {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  position: relative;
}

.filter-btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
  /* Small devices */
}
@media (max-width: 767px) {
  .filter-btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.filter-btns {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .filter-btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.filter-btns button {
  border: 0;
  padding: 0;
  background-color: unset;
  height: 40px;
  line-height: 38px;
  border: 1px solid var(--border-color);
  padding: 0 20px;
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--body-color);
  margin-right: 10px;
  /* Small devices */
}
@media (max-width: 767px) {
  .filter-btns button {
    margin-top: 10px;
  }
}
.filter-btns button:last-child {
  margin-right: 0;
}
.filter-btns button:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.filter-btns .active {
  background-color: var(--theme-color);
  color: var(--title-color);
}

.project-block {
  position: relative;
  margin-bottom: 43px;
}
.project-block:hover .project-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.project-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.project-list li {
  margin-right: 11px;
}
.project-list li:last-child {
  margin-right: 0;
}
.project-list li a {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: inline-block;
  color: var(--body-color);
}
.project-list li a:hover {
  color: var(--title-color);
}

.project-content {
  position: relative;
  padding-top: 22px;
}
.project-content .title {
  margin-bottom: 5px;
}
.project-content .title a {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  display: inline-block;
  color: var(--title-color);
}
.project-content .title a:hover {
  text-decoration: underline;
}

.project-img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.project-img img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project-img.v2 {
  max-height: 401px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .project-img.v2 {
    max-height: 365px;
  }
}
.project-img.v2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .project-img.v2 {
    max-height: 308px;
  }
}
.project-img.v2 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .project-img.v2 {
    max-height: 348px;
  }
}
.project-img.v2 img {
  height: 100%;
}

.project-sec2 {
  position: relative;
  padding-top: 61px;
}
.project-sec2 .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.project-sec2 .grid-item {
  width: 33.3333333333%;
  padding: 0 15px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .project-sec2 .grid-item {
    width: 50%;
  }
}
.project-sec2 .grid-item {
  /* Small devices */
}
@media (max-width: 767px) {
  .project-sec2 .grid-item {
    width: 100%;
  }
}

.project-btn {
  position: relative;
  text-align: center;
  margin-top: 27px;
}

.project-sec3 {
  position: relative;
  padding-top: 61px;
}
.project-sec3 .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.project-sec3 .grid-item {
  width: 25%;
  padding: 0 15px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .project-sec3 .grid-item {
    width: 33.33333%;
  }
}
.project-sec3 .grid-item {
  /* Medium devices */
}
@media (max-width: 992px) {
  .project-sec3 .grid-item {
    width: 50%;
  }
}
.project-sec3 .grid-item {
  /* Small devices */
}
@media (max-width: 767px) {
  .project-sec3 .grid-item {
    width: 100%;
  }
}
.project-sec3 .container-fluid {
  max-width: 1880px;
  margin: 0 auto;
  padding: 0 15px;
}

.project-btn {
  position: relative;
  text-align: center;
  margin-top: 27px;
}

.team-sec2 {
  position: relative;
  border-bottom: 1px solid var(--border-color5);
}
.team-sec2 .row {
  margin-bottom: -50px;
}
.team-sec2 .container-fluid {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 15px;
}
.team-sec2 .sec-title {
  max-width: 642px;
}
.team-sec2 .team-card {
  margin-bottom: 50px;
}

.result-sec2 {
  position: relative;
}
.result-sec2 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Large devices */
}
@media (max-width: 1199px) {
  .result-sec2 .row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.result-content2 {
  position: relative;
  padding-right: 84px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .result-content2 {
    padding-right: 0;
  }
}
.result-content2 .sec-title {
  text-align: left;
  margin-bottom: 38px;
}
.result-content2 .sec-title .title {
  margin-bottom: 39px;
}

.result-img2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .result-img2 {
    margin-top: 50px;
  }
}
.result-img2 img {
  width: 100%;
}

.team-detail {
  position: relative;
  margin: 120px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .team-detail {
    margin: 80px 0;
  }
}

.team-info {
  position: relative;
  padding-left: 116px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-info {
    padding-left: 0;
  }
}
.team-info .contact-form {
  margin-top: 108px;
  padding: 50px 50px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .team-info .contact-form {
    margin-top: 50px;
    padding: 50px 38px;
  }
}
.team-info .contact-form .title {
  font-size: 20px;
  line-height: 30px;
}

.team-content2 {
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 59px;
  margin-bottom: 48px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-content2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.team-content2 .name {
  font-size: 65px;
  line-height: 75px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-content2 .name {
    font-size: 50px;
    line-height: 60px;
  }
}
.team-content2 .name {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .team-content2 .name {
    font-size: 35px;
    line-height: 45px;
  }
}
.team-content2 .designation {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 38px;
  display: inline-block;
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-content2 .designation {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }
}
.team-content2 p {
  font-size: 20px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 30px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-content2 p {
    font-size: 16px;
    line-height: 26px;
  }
}

.team-contact {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .team-contact {
    margin-bottom: 30px;
  }
}
.team-contact .contact {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 27px;
  color: var(--body-color);
}
.team-contact .nmbr {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  display: block;
  color: var(--title-color);
  margin-bottom: 16px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .team-contact .nmbr {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.team-contact .nmbr:hover {
  text-decoration: underline;
}
.team-contact .social-links li a:hover {
  background-color: var(--theme-color);
  border-color: transparent;
}

.skill-contnent {
  position: relative;
  border-top: 1px solid var(--border-color);
  padding-top: 70px;
  margin-top: 46px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .skill-contnent {
    padding-top: 30px;
    margin-top: 30px;
  }
}
.skill-contnent .title2 {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 20px;
  /* Small devices */
}
@media (max-width: 767px) {
  .skill-contnent .title2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.skill-contnent p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 40px;
}
.skill-contnent .progress-circle {
  position: relative;
  width: 130px;
  height: 130px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .skill-contnent .progress-circle {
    margin-bottom: 66px;
  }
}
.skill-contnent .progress-circle canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.skill-contnent .progress-circle__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.skill-contnent .progress-circle__content {
  position: absolute;
  text-align: center;
}
.skill-contnent .progress-circle__content .percent {
  font-size: 35px;
  font-weight: 700;
  color: #092a1b;
  font-family: var(--title-font);
}
.skill-contnent .progress-circle__content .percent span {
  font-size: 18px;
}
.skill-contnent .progress-circle .progress-title {
  text-align: center;
  margin-top: 17px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--body-color);
  white-space: nowrap;
}

.progress-counter .row .col-lg-4 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .progress-counter .row .col-lg-4 {
    width: 50%;
    max-width: unset;
  }
}

.team-img2 {
  position: relative;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .team-img2 {
    width: 474px;
  }
}
.team-img2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .team-img2 {
    width: 400px;
  }
}
.team-img2 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .team-img2 {
    width: 100%;
    margin-bottom: 50px;
  }
}
.team-img2 img {
  width: 100%;
  display: block;
}

.team-img2.is-fixed {
  position: fixed;
  top: 120px;
  /* Small devices */
}
@media (max-width: 767px) {
  .team-img2.is-fixed {
    position: static;
  }
}

.team-img2.is-absolute {
  position: absolute;
  bottom: 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .team-img2.is-absolute {
    position: static;
  }
}

.pricing-sec2 {
  position: relative;
  margin-top: 49px;
}
.pricing-sec2 .sec-title {
  margin-bottom: 50px;
}
.pricing-sec2 .sec-title p {
  padding: 0 50px 49px;
}
.pricing-sec2 .row {
  margin-bottom: -30px;
}
.pricing-sec2 .nav-tabs {
  border: 1px solid var(--border-color);
  max-width: 306px;
  margin: 0 auto;
  height: 64px;
  border-radius: 50px;
  padding: 10px;
  margin-bottom: 50px;
  background-color: var(--white-color);
}
.pricing-sec2 .nav-tabs .nav-link {
  padding: 0;
  border: 0;
  background-color: unset;
  height: 42px;
  line-height: 39px;
  padding: 0 20px 2px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--body-color);
}
.pricing-sec2 .nav-tabs .nav-link span {
  background-color: var(--theme-color);
  height: 23px;
  font-size: 12px;
  line-height: 23px;
  color: var(--title-color);
  border-radius: 50px;
  padding: 0 10px;
  display: inline-block;
}
.pricing-sec2 .nav-tabs .nav-link.active {
  border: 0;
  background-color: var(--title-color);
  color: var(--white-color);
}

.pricing-compare {
  position: relative;
  background-color: var(--theme-color2);
}
.pricing-compare .sec-title .sub-title {
  background-color: var(--white-color);
}

.pricing-info3 {
  position: relative;
  background-color: #eeeeee;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 10px;
}

.pricing-compare-content {
  position: relative;
  width: 494px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .pricing-compare-content {
    width: 322px;
  }
}
.pricing-compare-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .pricing-compare-content {
    width: 100%;
    margin-bottom: 20px;
  }
}
.pricing-compare-content .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 3px;
}
.pricing-compare-content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 400;
}

.price-row {
  position: relative;
  background-color: var(--white-color);
  border-radius: var(--border-color);
  padding: 27px 0 22px 51px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Medium devices */
}
@media (max-width: 992px) {
  .price-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.price-row {
  /* Small devices */
}
@media (max-width: 767px) {
  .price-row {
    padding: 27px 0 22px 21px;
  }
}
.price-row {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .price-row {
    display: block;
  }
}

.info-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .info-box {
    display: block;
  }
}

.price-box3 {
  position: relative;
  width: 238px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-box3 {
    width: 201px;
  }
}
.price-box3 {
  /* Small devices */
}
@media (max-width: 767px) {
  .price-box3 {
    width: 168px;
  }
}
.price-box3 .sub-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 4px;
  color: var(--title-color);
}
.price-box3 .price {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.03em;
}
.price-box3 .price span {
  font-size: 18px;
}

.price-row2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0 30px 51px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .price-row2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.price-row2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .price-row2 {
    padding: 27px 0 22px 21px;
  }
}
.price-row2:last-child {
  /* Small devices */
}
@media (max-width: 767px) {
  .price-row2:last-child {
    display: block;
  }
}

.price-title {
  position: relative;
  width: 494px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-title {
    width: 322px;
  }
}
.price-title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .price-title {
    margin-bottom: 20px;
  }
}
.price-title .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.price-box3-two {
  position: relative;
  width: 238px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-box3-two {
    width: 183px;
  }
}
.price-box3-two {
  /* Small devices */
}
@media (max-width: 767px) {
  .price-box3-two {
    width: 162px;
  }
}
.price-box3-two .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
  font-family: var(--body-font);
  letter-spacing: -0.02em;
}
.price-box3-two .btn-style1 span {
  margin-left: 30px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-box3-two .btn-style1 span {
    margin-left: 17px;
  }
}
.price-box3-two .btn-style1.v3 {
  background-color: unset;
  border: 1px solid #e8e6ee;
  color: var(--title-color);
  /* Small devices */
}
@media (max-width: 767px) {
  .price-box3-two .btn-style1.v3 {
    margin-bottom: 10px;
  }
}
.price-box3-two .btn-style1.v3 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .price-box3-two .btn-style1.v3 {
    margin: 10px 0;
  }
}
.price-box3-two .btn-style1.v3:hover {
  background-color: var(--theme-color);
}
.price-box3-two .btn-style1.v3:hover span {
  background-color: var(--white-color);
}
.price-box3-two .btn-style1.v3:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.price-box3-two .btn-style1.v3 span {
  background-color: var(--theme-color);
}
.price-box3-two .btn-style1.v3 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.price-row2.v2 {
  background-color: var(--white-color);
  border-radius: var(--border-color);
  border-radius: 12px;
}

.price-title.v2 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .price-title.v2 {
    width: 0;
  }
}

.info-box.v2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .info-box.v2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.info-box.v2 .price-box3-two {
  width: 215px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .info-box.v2 .price-box3-two {
    width: 201px;
  }
}

.career-sec {
  position: relative;
}

.career-block {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 40px 50px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Medium devices */
}
@media (max-width: 992px) {
  .career-block {
    padding: 40px 28px;
  }
}
.career-block:hover {
  background-color: var(--white-color);
  border-color: var(--theme-color);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(185, 251, 106, 0.1509803922);
          box-shadow: 0px 0px 40px 0px rgba(185, 251, 106, 0.1509803922);
}
.career-block .sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 29px;
  height: 31px;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color);
  padding: 0 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 13px;
}
.career-block .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 13px;
}
.career-block p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 17px;
}

.career-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.career-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 29px;
}
.career-list li:last-child {
  margin-right: 0;
}
.career-list li img {
  margin-right: 7px;
}

.career-btn {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
.career-btn .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.career-btn .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.career-btn .btn-style1 span {
  background-color: var(--white-color);
}
.career-btn .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.career-detail {
  position: relative;
  margin: 120px 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .career-detail {
    margin: 80px 0;
  }
}

.caree-detail-info {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .caree-detail-info {
    margin-bottom: 50px;
  }
}
.caree-detail-info .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
  margin-top: 47px;
}
.caree-detail-info .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.caree-detail-info .btn-style1:hover span {
  background-color: var(--title-color);
}
.caree-detail-info .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.caree-detail-info .btn-style1 span {
  background-color: var(--white-color);
}
.caree-detail-info .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.caree-detail-content {
  position: relative;
  margin-bottom: 49px;
}
.caree-detail-content .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 19px;
  letter-spacing: -0.01em;
}
.caree-detail-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 701px;
}

.career-list2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.career-list2 li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 13px;
  position: relative;
  padding-left: 20px;
}
.career-list2 li:last-child {
  margin-bottom: 0;
}
.career-list2 li img {
  position: absolute;
  top: 8px;
  left: 0;
}

.side-bar3 {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .side-bar3 {
    width: 373px;
  }
}
.side-bar3 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .side-bar3 {
    width: 400px;
  }
}
.side-bar3 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .side-bar3 {
    width: 356px;
  }
}
.side-bar3 {
  /* Small devices */
}
@media (max-width: 767px) {
  .side-bar3 {
    width: 100%;
  }
}

.side-bar3.is-fixed {
  position: fixed;
  top: 120px;
  /* Small devices */
}
@media (max-width: 767px) {
  .side-bar3.is-fixed {
    position: static;
  }
}

.side-bar3.is-absolute {
  position: absolute;
  bottom: 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .side-bar3.is-absolute {
    position: static;
  }
}

.price-box {
  background-color: var(--theme-color);
  border-radius: 14px;
  padding: 40px 50px;
  margin-bottom: 30px;
}
.price-box .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-box .title img {
  margin-right: 7px;
}

.price-box-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 29px;
}
.price-box-content .sub-title {
  background-color: var(--title-color);
  color: var(--white-color);
  border-radius: 50px;
  height: 31px;
  line-height: 31px;
  padding: 0 15px;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  margin-right: 25px;
}
.price-box-content .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--title-color);
}
.price-box-content .location img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  margin-right: 7px;
}

.career-banner {
  position: relative;
}
.career-banner img {
  width: 100%;
}

.career-banner-content {
  position: absolute;
  bottom: 40px;
  left: 50px;
}
.career-banner-content .title {
  font-size: 30px;
  line-height: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
  color: var(--white-color);
  max-width: 298px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .career-banner-content .title {
    font-size: 26px;
    line-height: 38px;
    max-width: 250px;
  }
}
.career-banner-content .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .career-banner-content .title {
    max-width: 350px;
  }
}
.career-banner-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .career-banner-content .title {
    max-width: 230px;
  }
}
.career-banner-content .btn-style1:hover {
  background-color: var(--white-color);
  border-color: transparent;
  color: var(--title-color);
}
.career-banner-content .btn-style1:hover span {
  background-color: var(--title-color);
}
.career-banner-content .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.career-sec2 {
  position: relative;
  border-top: 1px solid var(--border-color);
}

.contact-sec2 {
  position: relative;
}

.contact-content2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .contact-content2 {
    max-width: 600px;
    margin-bottom: 50px;
  }
}
.contact-content2 .sec-title {
  text-align: left;
  margin-bottom: 47px;
}
.contact-content2 .sec-title p {
  max-width: 500px;
}

.contact-info {
  position: relative;
}
.contact-info .help-line {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}
.contact-info .nmbr {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  color: var(--title-color);
  /* Extra small devices */
}
@media (max-width: 576px) {
  .contact-info .nmbr {
    font-size: 18px;
  }
}
.contact-info .nmbr:hover {
  text-decoration: underline;
}

.social-links2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-links2 li {
  margin-right: 24px;
}
.social-links2 li:last-child {
  margin-right: 0;
}
.social-links2 li a {
  display: inline-block;
}
.social-links2 li a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.social-links2 li a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-links-info {
  position: relative;
  margin-top: 47px;
}

.contact-form2 {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 55px 60px 60px;
  /* Small devices */
}
@media (max-width: 767px) {
  .contact-form2 {
    padding: 38px 40px 45px;
  }
}
.contact-form2 .title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.contact-form2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}
.contact-form2 form {
  position: relative;
  margin-top: 39px;
}
.contact-form2 form .form-group {
  margin-bottom: 21px;
}
.contact-form2 form .form-group label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  display: inline-block;
  margin-bottom: 12px;
}
.contact-form2 form .form-group input,
.contact-form2 form .form-group select,
.contact-form2 form .form-group textarea {
  background-color: var(--theme-color2);
  width: 100%;
  border: 1px solid var(--border-color);
  height: 60px;
  padding: 0 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 400;
  color: #aeaeae;
}
.contact-form2 form .form-group input::-webkit-input-placeholder, .contact-form2 form .form-group select::-webkit-input-placeholder, .contact-form2 form .form-group textarea::-webkit-input-placeholder {
  color: #aeaeae;
}
.contact-form2 form .form-group input::-moz-placeholder, .contact-form2 form .form-group select::-moz-placeholder, .contact-form2 form .form-group textarea::-moz-placeholder {
  color: #aeaeae;
}
.contact-form2 form .form-group input:-ms-input-placeholder, .contact-form2 form .form-group select:-ms-input-placeholder, .contact-form2 form .form-group textarea:-ms-input-placeholder {
  color: #aeaeae;
}
.contact-form2 form .form-group input::-ms-input-placeholder, .contact-form2 form .form-group select::-ms-input-placeholder, .contact-form2 form .form-group textarea::-ms-input-placeholder {
  color: #aeaeae;
}
.contact-form2 form .form-group input::placeholder,
.contact-form2 form .form-group select::placeholder,
.contact-form2 form .form-group textarea::placeholder {
  color: #aeaeae;
}
.contact-form2 form .form-group textarea {
  height: 130px;
  padding: 20px 30px;
}

.googel-map {
  position: relative;
}
.googel-map .map-title {
  display: none;
}

.map-frame {
  position: relative;
}
.map-frame iframe {
  width: 100%;
  height: 630px;
  border-radius: 14px;
}

.faq-sec2 {
  position: relative;
  margin: 120px 0;
}
.faq-sec2 .faq-box {
  position: relative;
  margin-bottom: 65px;
}

.faq-content {
  position: relative;
  padding-right: 110px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 520px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-content {
    padding-right: 0;
    width: 389px;
  }
}
.faq-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-content {
    margin-bottom: 50px;
    width: 100%;
  }
}
.faq-content .title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 35px;
  /* Small devices */
}
@media (max-width: 767px) {
  .faq-content .title {
    font-size: 30px;
    line-height: 40px;
    max-width: 400px;
  }
}
.faq-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.faq-content.is-fixed {
  position: fixed;
  top: 120px;
  width: 520px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-content.is-fixed {
    width: 389px;
  }
}
.faq-content.is-fixed {
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-content.is-fixed {
    position: static;
    width: 100%;
  }
}

.faq-content.is-absolute {
  position: absolute;
  top: auto;
  bottom: 120px;
  width: 520px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-content.is-absolute {
    width: 389px;
  }
}
.faq-content.is-absolute {
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-content.is-absolute {
    position: static;
    width: 100%;
  }
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 34px;
}

.video-box {
  position: relative;
  margin-top: 100px;
}
.video-box img {
  width: 100%;
}

.video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 139, 139, 0.8), rgba(212, 212, 212, 0.6));
  backdrop-filter: blur(10px);
  border: none;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-trigger:hover {
  background: linear-gradient(135deg, rgba(139, 139, 139, 0.8), rgba(212, 212, 212, 0.6));
  backdrop-filter: blur(4px);
  color: var(--theme-color);
}

.error-sec {
  position: relative;
  padding: 236px 0 213px;
  /* Small devices */
}
@media (max-width: 767px) {
  .error-sec {
    padding: 180px 0 180px;
  }
}

.error-content {
  position: relative;
  text-align: center;
}
.error-content .title {
  font-size: 300px;
  line-height: 251px;
  font-weight: bold;
  margin-bottom: 40px;
  text-shadow: -1px -1px 0 #0e0e0e, 1px -1px 0 #0e0e0e, -1px 1px 0 #0e0e0e, 1px 1px 0 #0e0e0e;
  color: var(--white-color);
  letter-spacing: -0.05em;
  /* Small devices */
}
@media (max-width: 767px) {
  .error-content .title {
    font-size: 200px;
    line-height: 150px;
  }
}
.error-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .error-content .title {
    font-size: 171px;
    line-height: 141px;
  }
}
.error-content p {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: var(--title-color);
  max-width: 740px;
  margin: 0 auto;
  margin-bottom: 27px;
  font-family: var(--title-font);
  /* Small devices */
}
@media (max-width: 767px) {
  .error-content p {
    font-size: 30px;
    line-height: 40px;
  }
}

.coming-soon {
  position: relative;
  background-image: url(../images/bg/soon1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 93px 0 132px;
}

.coming-soon-info {
  position: relative;
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
}
.coming-soon-info .sub-title {
  position: absolute;
  top: 43px;
  left: 183px;
  background-color: var(--theme-color);
  font-size: 22px;
  line-height: 42px;
  font-weight: 600;
  display: inline-block;
  height: 42px;
  padding: 0 20px;
  color: var(--title-color);
  border-radius: 40px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .coming-soon-info .sub-title {
    top: 40px;
    left: 142px;
  }
}
.coming-soon-info .sub-title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .coming-soon-info .sub-title {
    top: 35px;
    left: 89px;
    font-size: 16px;
    line-height: 28px;
    height: 28px;
    padding: 0 9px;
  }
}
.coming-soon-info .title,
.coming-soon-info .sub-title2 {
  font-size: 200px;
  line-height: 260px;
  letter-spacing: -0.05em;
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .coming-soon-info .title,
  .coming-soon-info .sub-title2 {
    font-size: 156px;
    line-height: 224px;
  }
}
.coming-soon-info .title,
.coming-soon-info .sub-title2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .coming-soon-info .title,
  .coming-soon-info .sub-title2 {
    font-size: 130px;
    line-height: 213px;
  }
}
.coming-soon-info .title,
.coming-soon-info .sub-title2 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .coming-soon-info .title,
  .coming-soon-info .sub-title2 {
    font-size: 117px;
    line-height: 213px;
  }
}
.coming-soon-info .title,
.coming-soon-info .sub-title2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .coming-soon-info .title,
  .coming-soon-info .sub-title2 {
    font-size: 76px;
    line-height: 161px;
  }
}
.coming-soon-info .sub-title2 {
  color: var(--title-color);
  background-color: var(--theme-color);
  height: 200px;
  line-height: 200px;
  padding: 0 63px;
  border-radius: 200px;
  display: inline-block;
  margin-top: -61px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .coming-soon-info .sub-title2 {
    height: 169px;
    line-height: 169px;
  }
}
.coming-soon-info .sub-title2 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .coming-soon-info .sub-title2 {
    height: 147px;
    line-height: 148px;
  }
}
.coming-soon-info .sub-title2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .coming-soon-info .sub-title2 {
    height: 80px;
    line-height: 81px;
    padding: 0 19px;
  }
}

.coming-soon-content {
  position: relative;
  text-align: center;
}
.coming-soon-content p {
  color: var(--white-color);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  max-width: 352px;
  margin: 41px auto 0;
}

.timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.timer .timer-content {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: rgba(255, 255, 255, 0.0509803922);
  text-align: center;
  padding: 23px 0 37px;
  border-radius: 14px;
  width: 170px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .timer .timer-content {
    width: 157px;
  }
}
.timer .time {
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
  display: block;
  font-family: var(--title-font);
  color: var(--white-color);
  letter-spacing: -0.01em;
  margin-bottom: 11px;
}
.timer .days {
  color: rgba(255, 255, 255, 0.6509803922);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  display: block;
  text-transform: uppercase;
}

.notify-form {
  position: relative;
  margin-top: 29px;
}
.notify-form .form-group {
  position: relative;
  max-width: 630px;
  margin: 0 auto;
}
.notify-form .form-group input {
  width: 100%;
  height: 70px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: rgba(255, 255, 255, 0.0509803922);
  padding: 0 35px;
  color: var(--white-color);
}
.notify-form .form-group input::-webkit-input-placeholder {
  color: var(--body-color);
}
.notify-form .form-group input::-moz-placeholder {
  color: var(--body-color);
}
.notify-form .form-group input:-ms-input-placeholder {
  color: var(--body-color);
}
.notify-form .form-group input::-ms-input-placeholder {
  color: var(--body-color);
}
.notify-form .form-group input::placeholder {
  color: var(--body-color);
}
.notify-form .form-group .btn-style1 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .notify-form .form-group .btn-style1 {
    position: static;
    -webkit-transform: unset;
            transform: unset;
    margin-top: 20px;
  }
}
.notify-form .form-group .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.notify-form .form-group .btn-style1:hover span {
  background-color: var(--title-color);
}
.notify-form .form-group .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.project-sec4 {
  position: relative;
  padding-top: 61px;
}
.project-sec4 .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.project-sec4 .grid-item {
  width: 50%;
  padding: 0 15px;
}

.project-card4 {
  position: relative;
  margin-bottom: 30px;
}
.project-card4 > a {
  display: inline-block;
}
.project-card4:hover .project-content4 {
  opacity: 1;
  visibility: visible;
}
.project-card4 img {
  border-radius: 14px;
}

.project-content4 {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(20px);
  background-repeat: no-repeat;
  padding: 30px 30px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.project-content4 .title {
  margin-bottom: 5px;
}
.project-content4 .title a {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  display: inline-block;
  color: var(--white-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .project-content4 .title a {
    font-size: 22px;
    line-height: 28px;
  }
}
.project-content4 .title a {
  /* Medium devices */
}
@media (max-width: 992px) {
  .project-content4 .title a {
    font-size: 20px;
  }
}
.project-content4 .title a:hover {
  text-decoration: underline;
}
.project-content4 .project-list li a {
  color: var(--white-color);
}

.project-sec6 {
  position: relative;
  padding-top: 61px;
}
.project-sec6 .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
  overflow: hidden;
}
.project-sec6 .grid-item {
  width: 50%;
  padding: 0 15px;
  /* Small devices */
}
@media (max-width: 767px) {
  .project-sec6 .grid-item {
    width: 100%;
  }
}

.project-sec6.v2 .masonry-grid {
  margin-left: -15px;
  margin-right: -15px;
}
.project-sec6.v2 .grid-item {
  width: 33.3333%;
  padding: 0 15px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .project-sec6.v2 .grid-item {
    width: 50%;
  }
}
.project-sec6.v2 .grid-item {
  /* Small devices */
}
@media (max-width: 767px) {
  .project-sec6.v2 .grid-item {
    width: 100%;
  }
}

.project-card6 {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.project-card6 > a {
  display: inline-block;
  width: 100%;
}
.project-card6:hover .project-content6 {
  opacity: 1;
  visibility: visible;
}
.project-card6 img {
  border-radius: 14px;
  width: 100%;
}

.project-content6 {
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.4)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  backdrop-filter: blur(20px);
  background-repeat: no-repeat;
  padding: 30px 30px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.project-content6 .title {
  margin-bottom: 5px;
}
.project-content6 .title a {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  display: inline-block;
  color: var(--white-color);
}
.project-content6 .title a:hover {
  text-decoration: underline;
}
.project-content6 .project-list li a {
  color: var(--white-color);
}

.digital-agency {
  position: relative;
}

.client-info {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin: 65px 0 60px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .client-info {
    margin-top: 50px;
  }
}

.agency-content {
  position: relative;
}
.agency-content .title {
  font-size: 75px;
  line-height: 80px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .agency-content .title {
    font-size: 60px;
    line-height: 70px;
    max-width: 900px;
    margin: 0 auto;
  }
}
.agency-content .title {
  /* Large devices */
}
@media (max-width: 1199px) {
  .agency-content .title {
    font-size: 40px;
    line-height: 50px;
    max-width: 700px;
  }
}
.agency-content .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .agency-content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.agency-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .agency-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.client-detail {
  position: relative;
  padding: 35px 35px 35px 70px;
  border-right: 1px solid var(--border-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .client-detail {
    padding: 35px 35px 35px 31px;
  }
}
.client-detail {
  /* Medium devices */
}
@media (max-width: 992px) {
  .client-detail {
    padding: 35px 17px 35px 0px;
  }
}
.client-detail {
  /* Small devices */
}
@media (max-width: 767px) {
  .client-detail {
    padding: 35px 31px 35px 0px;
  }
}
.client-detail .sub-title,
.client-detail .title2 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: inline-block;
}
.client-detail .title2 {
  color: var(--title-color);
  display: block;
  margin-bottom: 0;
}

.client-detail.v2 {
  border: 0;
}

.sec-title2 {
  position: relative;
}
.sec-title2 .title3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .sec-title2 .title3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.sec-title2 .title3 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .sec-title2 .title3 {
    font-size: 25px;
    line-height: 35px;
  }
}
.sec-title2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 36px;
}

.sec-title2.v2 {
  max-width: 630px;
  margin-left: auto;
  /* Medium devices */
}
@media (max-width: 992px) {
  .sec-title2.v2 {
    margin: 20px 0 0;
  }
}

.digital-img {
  position: relative;
  margin-bottom: 30px;
}
.digital-img img {
  width: 100%;
}

.digital-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.digital-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 11px;
}
.digital-list li:last-child {
  margin-bottom: 0;
}
.digital-list li img {
  margin-right: 10px;
}

.title-info.v2 {
  margin-top: 63px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .title-info.v2 {
    margin-top: 30px;
  }
}
.title-info.v2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .title-info.v2 {
    border-bottom: 1px solid var(--border-color);
  }
}

.sasi-project-navigation {
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .sasi-project-navigation {
    display: none;
  }
}
.sasi-project-navigation .title4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 3px;
  overflow: hidden;
}
.sasi-project-navigation .title4:hover a {
  text-decoration: underline;
}

.client-info2 {
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 72px 0 100px;
  /* Small devices */
}
@media (max-width: 767px) {
  .client-info2 {
    margin-bottom: 80px;
  }
}
.client-info2 .client-detail {
  border: 0;
  padding-left: 0;
}

.client-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Small devices */
}
@media (max-width: 767px) {
  .client-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.product-gallery {
  position: relative;
  margin-bottom: 93px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .product-gallery {
    margin-bottom: 40px;
  }
}
.product-gallery .container-fluid {
  max-width: 1780px;
  padding: 0 15px;
  margin: 0 auto;
}

.project-sec5 {
  position: relative;
}
.project-sec5 .row {
  margin-bottom: -43px;
}

.project-title {
  position: relative;
}
.project-title .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 35px;
}

.portfolio-detail {
  position: relative;
  margin: 120px 0;
  /* Small devices */
}
@media (max-width: 767px) {
  .portfolio-detail {
    margin: 80px 0 0;
  }
}

.product-img {
  position: relative;
  margin-bottom: 30px;
}

.portfolio-content {
  position: relative;
  margin-left: 76px;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  width: 555px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .portfolio-content {
    width: 479px;
  }
}
.portfolio-content {
  /* Large devices */
}
@media (max-width: 1199px) {
  .portfolio-content {
    margin-left: 0;
  }
}
.portfolio-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .portfolio-content {
    max-width: 700px;
    width: 100%;
    margin-top: 50px;
  }
}
.portfolio-content .title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 700;
  margin-bottom: 34px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .portfolio-content .title {
    font-size: 28px;
    line-height: 40px;
  }
}
.portfolio-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 63px;
  /* Small devices */
}
@media (max-width: 767px) {
  .portfolio-content p {
    margin-bottom: 41px;
  }
}
.portfolio-content .digital-list {
  margin-top: 36px;
}

.portfolio-content.is-fixed {
  position: fixed;
  top: 150px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .portfolio-content.is-fixed {
    position: static;
  }
}

.portfolio-content.is-absolute {
  position: absolute;
  bottom: 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .portfolio-content.is-absolute {
    position: static;
  }
}

.client-content2 {
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 50px 0 10px;
  /* Small devices */
}
@media (max-width: 767px) {
  .client-content2 {
    padding-top: 30px;
  }
}
.client-content2 .client-detail {
  border: 0;
  padding: 0 0 40px 0;
}

.gallery {
  position: relative;
}
.gallery .main-image {
  width: 100%;
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  position: relative;
  border-radius: 14px;
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color);
}
.gallery .main-image img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.gallery .main-image.zoomed {
  background-color: transparent;
}
.gallery .main-image.zoomed img {
  -webkit-transform: scale(2);
          transform: scale(2);
}
.gallery .main-image .magnifier {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 5;
}
.gallery .main-image .magnifier img {
  -webkit-transform: unset !important;
          transform: unset !important;
}
.gallery .thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
  gap: 10px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .gallery .thumbnails {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.gallery .thumbnails img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border-color);
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  background-color: var(--theme-color2);
  border-radius: 10px;
  /* Extra small devices */
}
@media (max-width: 1201px) {
  .gallery .thumbnails img {
    height: 132px;
  }
}
.gallery .thumbnails img {
  /* Large devices */
}
@media (max-width: 1199px) {
  .gallery .thumbnails img {
    height: 113px;
  }
}
.gallery .thumbnails img {
  /* Medium devices */
}
@media (max-width: 992px) {
  .gallery .thumbnails img {
    width: 180px;
    height: 153px;
  }
}
.gallery .thumbnails img {
  /* Small devices */
}
@media (max-width: 767px) {
  .gallery .thumbnails img {
    width: 130px;
    height: 120px;
  }
}
.gallery .thumbnails img {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .gallery .thumbnails img {
    width: 167px;
    height: 133px;
  }
}
.gallery .thumbnails img.active {
  border: 1px solid var(--border-color);
}
.gallery .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
  color: rgba(0, 0, 0, 0.5);
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}
.gallery .arrow:hover {
  background: #eee;
}
.gallery .arrow.arrow-left {
  left: -20px;
}
.gallery .arrow.arrow-right {
  right: -20px;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
}
.lightbox.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.lightbox .lightbox-content #light-prev,
.lightbox .lightbox-content #light-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  color: var(--white-color);
  font-size: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.lightbox .lightbox-content #light-next {
  left: auto;
  right: 30px;
}

.checkout-sec {
  position: relative;
}

.checkout-content {
  position: relative;
}
.checkout-content .title {
  font-size: 35px;
  line-height: 45px;
  font-weight: 600;
  margin-bottom: 8px;
}
.checkout-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.cart-form {
  position: relative;
}
.cart-form .form-group {
  margin-bottom: 32px;
}
.cart-form .form-group label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--title-color);
  display: block;
}
.cart-form .form-group input,
.cart-form .form-group select,
.cart-form .form-group textarea {
  height: 52px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  border: 1px solid var(--border-color);
  border-radius: 7px;
  padding: 0 25px;
}
.cart-form .form-group.v2 input {
  margin-bottom: 20px;
}
.cart-form .form-group.v2 input:last-child {
  margin-bottom: 0;
}

.order-summary {
  background: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 33px 50px 47px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .order-summary {
    padding: 33px 32px 47px;
  }
}
.order-summary {
  /* Medium devices */
}
@media (max-width: 992px) {
  .order-summary {
    margin-top: 50px;
  }
}
.order-summary .summary-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 28px;
}
.order-summary .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 44px;
}
.order-summary .product img {
  width: 100px;
  height: 100px;
  max-width: unset;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .order-summary .product img {
    width: 68px;
    height: 68px;
  }
}
.order-summary .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.order-summary .product-info span,
.order-summary .product-info strong {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
  font-family: var(--title-font);
  color: var(--title-color);
}
.order-summary .product-info span {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .order-summary .product-info span {
    font-size: 16px;
  }
}
.order-summary .price-list3 {
  margin-bottom: 42px;
}
.order-summary .price-list3 .price-row3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--border-color);
}
.order-summary .price-list3 .price-row3 span {
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
}
.order-summary .price-list3 .price-row3 span:last-child {
  font-weight: 600;
  color: var(--title-color);
}
.order-summary .price-list3 .price-row3.total span {
  color: var(--title-color);
  font-weight: 600;
}
.order-summary .payment-option {
  display: block;
  border: 1px solid var(--border-color);
  padding: 12px 19px;
  border-radius: 7px;
  margin-bottom: 10px;
  cursor: pointer;
}
.order-summary .payment-option input {
  margin-right: 6px;
}
.order-summary .payment-option input[type=radio] {
  accent-color: #000;
}
.order-summary .payment-text,
.order-summary .policy {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 16px 0 33px;
}
.order-summary .policy {
  margin: 35px 0;
}
.order-summary .order-btn {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
}
.order-summary .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.order-summary .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.order-summary .btn-style1:hover span {
  background-color: var(--title-color);
}
.order-summary .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.order-summary .btn-style1 span {
  background-color: var(--white-color);
}
.order-summary .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.cart-page {
  position: relative;
}

.cart-table {
  position: relative;
  margin-bottom: 70px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table {
    overflow-x: auto;
  }
}
.cart-table table {
  width: 100%;
  margin-bottom: 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table table {
    max-width: 800px !important;
  }
}
.cart-table table thead {
  border-top: 0;
}
.cart-table table thead th {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-color);
  border: 0;
  padding: 0 0 17px;
}
.cart-table table thead th:nth-child(2) {
  padding-right: 48px;
}
.cart-table table thead th:nth-child(3) {
  padding-left: 43px;
}
.cart-table table thead th:nth-child(4) {
  padding-right: 71px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .cart-table table thead th:nth-child(4) {
    padding-right: 35px;
  }
}
.cart-table table thead th:last-child {
  text-align: right;
}
.cart-table table tr td {
  padding: 30px 0;
  border-bottom: 1px solid #ecedf2;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table table tr td {
    padding-right: 31px;
  }
}
.cart-table table tr td:nth-child(4) {
  padding-left: 17px;
}
.cart-table table tr td:last-child {
  text-align: right;
  padding-right: 22px;
}
.cart-table table tr td .price {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: var(--title-color);
}
.cart-table .shop-cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table .shop-cart-product {
    width: 459px;
  }
}
.cart-table .shop-cart-product .shop-product-cart-img {
  margin-right: 50px;
}
.cart-table .shop-cart-product .shop-product-cart-info .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table .shop-cart-product .shop-product-cart-info .title a {
  color: var(--title-color);
}

.qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  overflow: hidden;
  width: 150px;
}
.qty-box .qty-btn {
  width: 50px;
  height: 45px;
  border: none;
  background: var(--white-color);
  font-size: 20px;
  cursor: pointer;
}
.qty-box .qty-btn:first-child {
  border-right: 1px solid var(--border-color);
}
.qty-box .qty-btn:last-child {
  border-left: 1px solid var(--border-color);
}
.qty-box .qty-btn:hover {
  background: #f5f5f5;
}
.qty-box .qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 16px;
  outline: none;
}

.cart-table-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 69px 0 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  border-bottom: 1px solid var(--border-color);
}
.cart-table-bottom .coupan-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table-bottom .coupan-form {
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.cart-table-bottom .coupan-form label {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--title-color);
  display: block;
}
.cart-table-bottom .coupan-form input {
  border: 1px solid var(--border-color);
  border-radius: 50px;
  height: 50px;
  padding: 0 25px;
  color: #050b20;
  width: 315px;
  margin-right: 10px;
  font-size: 16px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-table-bottom .coupan-form input {
    margin-bottom: 20px;
  }
}
.cart-table-bottom .btn-style1.v2 {
  background-color: var(--title-color);
  color: var(--white-color);
}
.cart-table-bottom .btn-style1.v2:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.cart-table-bottom .btn-style1.v2:hover span {
  background-color: var(--title-color);
}
.cart-table-bottom .btn-style1.v2:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.cart-table-bottom .btn-style1.v2 span {
  background-color: var(--white-color);
}
.cart-table-bottom .btn-style1.v2 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.theme-btn-web {
  background: #405ff2;
  color: #fff;
  height: 54px;
  line-height: 54px;
  border-radius: 12px;
  padding: 0 26px;
  display: inline-block;
}
.theme-btn-web:hover {
  color: #fff;
}
.theme-btn-web img {
  margin-left: 7px;
}

.cart-totals {
  background-color: var(--theme-color2);
  border: 1px solid var(--border-color5);
  padding: 37px 50px 50px;
  border-radius: 16px;
  max-width: 520px;
  margin-left: auto;
  /* Medium devices */
}
@media (max-width: 992px) {
  .cart-totals {
    max-width: 100%;
  }
}
.cart-totals {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .cart-totals {
    padding: 37px 27px 39px;
  }
}
.cart-totals .title {
  color: var(--title-color);
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 17px;
}
.cart-totals p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 43px;
  max-width: 370px;
}
.cart-totals .theme-btn-web {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 30px;
}
.cart-totals table {
  width: 100%;
  margin-bottom: 39px;
}
.cart-totals table th,
.cart-totals table td {
  color: var(--title-color);
  font-size: 20px;
  border: 0;
  padding: 0 0 34px;
  font-weight: 600;
}
.cart-totals table td {
  text-align: right;
}
.cart-totals table tr:last-child th,
.cart-totals table tr:last-child td {
  border-top: 1px solid var(--title-color) !important;
  padding: 29px 0 0;
}
.cart-totals table tr:nth-child(2) th,
.cart-totals table tr:nth-child(2) td {
  padding-bottom: 48px;
}
.cart-totals .btn-style1 {
  background-color: var(--title-color);
  color: var(--white-color);
  padding-left: 35px;
}
.cart-totals .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.cart-totals .btn-style1:hover span {
  background-color: var(--title-color);
}
.cart-totals .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.cart-totals .btn-style1 span {
  background-color: var(--white-color);
  margin-left: 20px;
}
.cart-totals .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.rating-area {
  position: relative;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.rating-area li {
  margin-right: 4px;
}
.rating-area li:last-child {
  margin-right: 0;
}
.rating-area li span {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-block;
}

.shop-sec {
  position: relative;
}
.shop-sec .blog-pagination {
  margin-top: 20px;
}

.shop-area {
  position: relative;
  margin-bottom: 30px;
}
.shop-area .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-area .title2 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.shop-card {
  position: relative;
  margin-bottom: 43px;
}
.shop-card:hover .shop-img .btn-style1 {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.shop-form {
  position: relative;
}
.shop-form select {
  height: 60px;
  border: 1px solid var(--border-color5);
  padding: 0 25px;
  border-radius: 14px;
  color: var(--title-color);
  width: 300px;
  margin-left: auto;
}
.shop-form select::-webkit-input-placeholder {
  color: var(--title-color);
}
.shop-form select::-moz-placeholder {
  color: var(--title-color);
}
.shop-form select:-ms-input-placeholder {
  color: var(--title-color);
}
.shop-form select::-ms-input-placeholder {
  color: var(--title-color);
}
.shop-form select::placeholder {
  color: var(--title-color);
}
.shop-form select {
  /* Small devices */
}
@media (max-width: 767px) {
  .shop-form select {
    width: 100%;
    margin-top: 20px;
  }
}
.shop-form select:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.shop-img {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  width: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.shop-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-image: url(../images/bg/shop-layer.png);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  pointer-events: none;
}
.shop-img:hover {
  background-color: var(--theme-color2);
}
.shop-img:hover::before {
  height: 100%;
}
.shop-img .btn-style1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--title-color);
  color: var(--white-color);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
}
.shop-img .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.shop-img .btn-style1:hover span {
  background-color: var(--title-color);
}
.shop-img .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.shop-img .btn-style1 span {
  background-color: var(--white-color);
}
.shop-img .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.shop-content {
  position: relative;
}
.shop-content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 18px 0 3px;
}
.shop-content .title a {
  color: var(--title-color);
}
.shop-content .title a:hover {
  text-decoration: underline;
}
.shop-content .price2 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 2px 0 0;
  display: inline-block;
}
.shop-content .price2 del {
  margin-right: 5px;
}
.shop-content .price2 span {
  color: var(--title-color);
}

.sale {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--theme-color);
  height: 29px;
  line-height: 29px;
  color: var(--title-color);
  padding: 0 10px;
  border-radius: 10px;
}

.range-slider {
  position: relative;
  height: 9px;
  border: 1px solid var(--title-color);
  border-radius: 10px;
}
.range-slider .progress {
  position: absolute;
  height: 3px;
  background: #000;
  border-radius: 10px;
  left: 0;
  right: 0;
  top: 2px;
}
.range-slider input {
  position: absolute;
  width: 100%;
  top: -4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  pointer-events: none;
}
.range-slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.price-text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--body-color);
  margin-bottom: 0;
}
.price-text span {
  color: var(--title-color);
  font-weight: 600;
}

.price-btn {
  position: relative;
  background-color: var(--theme-color);
  color: var(--title-color);
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  padding: 0 27px;
  border-radius: 50px;
  display: inline-block;
}
.price-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.filter-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

.side-widget2 {
  margin-bottom: 30px;
}

.product-list2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.product-list2 li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
}
.product-list2 li:last-child {
  margin-bottom: 0;
}
.product-list2 li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 10px;
}
.product-list2 li a {
  color: var(--title-color);
}
.product-list2 li a:hover {
  color: var(--body-color);
}
.product-list2 li a span {
  color: var(--body-color);
  margin-left: 5px;
  display: inline-block;
}

.product-block {
  position: relative;
  padding-left: 109px;
  margin-bottom: 35px;
}
.product-block:last-child {
  margin-bottom: 0;
}

.product-img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 85px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
}
.product-img2 a {
  display: inline-block;
}

.shop-content2 {
  position: relative;
}
.shop-content2 .title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 18px 0 0px;
}
.shop-content2 .title a {
  color: var(--title-color);
}
.shop-content2 .title a:hover {
  text-decoration: underline;
}
.shop-content2 .price2 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 2px 0 0;
  display: inline-block;
}
.shop-content2 .price2 del {
  margin-right: 5px;
}
.shop-content2 .price2 span {
  color: var(--title-color);
}

.product-detail {
  position: relative;
}

.product-detail-content {
  position: relative;
  padding-left: 45px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .product-detail-content {
    padding-left: 0;
  }
}
.product-detail-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .product-detail-content {
    margin-top: 50px;
  }
}
.product-detail-content .sales {
  position: relative;
  background-color: var(--theme-color);
  color: var(--title-color);
  font-size: 16px;
  line-height: 29px;
  height: 29px;
  padding: 0 10px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 22px;
}
.product-detail-content .title {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 27px;
  letter-spacing: -0.01em;
  /* Large devices */
}
@media (max-width: 1199px) {
  .product-detail-content .title {
    font-size: 37px;
    line-height: 40px;
    margin-bottom: 12px;
  }
}
.product-detail-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .product-detail-content .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.product-detail-content .price3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 43px;
  display: inline-block;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .product-detail-content .price3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.product-detail-content .price3 del {
  color: var(--body-color);
  margin-right: 8px;
}
.product-detail-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.product-detail-content .digital-list li {
  color: var(--title-color);
}
.product-detail-content .digital-list li img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.product-rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 9px;
}
.product-rating span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 0 9px;
  display: inline-block;
}

.cart-btn-box2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 39px 0 49px;
}
.cart-btn-box2 .qty-box {
  margin-right: 10px;
}

.detail-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.detail-list li {
  margin-bottom: 2px;
  color: var(--title-color);
}
.detail-list li:last-child {
  margin-bottom: 0;
}
.detail-list li span {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  display: inline-block;
  color: var(--body-color);
  margin-right: 5px;
}

.detail-tabs {
  position: relative;
  margin-top: 60px;
}
.detail-tabs .nav-tabs {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 28px;
  margin-bottom: 41px;
  /* Small devices */
}
@media (max-width: 767px) {
  .detail-tabs .nav-tabs {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 15px;
  }
}
.detail-tabs .nav-tabs {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .detail-tabs .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.detail-tabs .nav-tabs .nav-item {
  margin-right: 130px;
  /* Small devices */
}
@media (max-width: 767px) {
  .detail-tabs .nav-tabs .nav-item {
    margin: 0;
  }
}
.detail-tabs .nav-tabs .nav-item {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .detail-tabs .nav-tabs .nav-item {
    margin-bottom: 30px;
  }
}
.detail-tabs .nav-tabs .nav-item:last-child {
  margin-right: 0;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .detail-tabs .nav-tabs .nav-item:last-child {
    margin-bottom: 15px;
  }
}
.detail-tabs .nav-tabs .nav-item .nav-link {
  position: relative;
  border: 0;
  padding: 0;
  color: var(--body-color);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  background-color: unset;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .detail-tabs .nav-tabs .nav-item .nav-link {
    font-size: 17px;
  }
}
.detail-tabs .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--title-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  /* Small devices */
}
@media (max-width: 767px) {
  .detail-tabs .nav-tabs .nav-item .nav-link::before {
    bottom: -16px;
  }
}
.detail-tabs .nav-tabs .nav-item .nav-link.active {
  color: var(--title-color);
}
.detail-tabs .nav-tabs .nav-item .nav-link.active::before {
  width: 100%;
}
.detail-tabs .tabs-body {
  position: relative;
}
.detail-tabs .tabs-body p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}
.detail-tabs .tabs-body .digital-list li {
  color: var(--title-color);
}
.detail-tabs .tabs-body .digital-list li img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}

.product-attributes {
  position: relative;
}
.product-attributes tr {
  border: 0;
}
.product-attributes tr th {
  font-size: 20px;
  color: var(--title-color);
  font-weight: 600;
  width: 270px;
  border: 1px solid var(--border-color);
  padding: 20px 20px;
  /* Small devices */
}
@media (max-width: 767px) {
  .product-attributes tr th {
    width: 231px;
  }
}
.product-attributes tr th {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .product-attributes tr th {
    width: 166px;
  }
}
.product-attributes tr td {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  border: 1px solid var(--border-color);
  padding: 20px 20px;
}

.reviews-info {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 14px;
}
.reviews-info > img {
  position: absolute;
  top: 35px;
  left: 30px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .reviews-info > img {
    position: static;
  }
}
.reviews-info .rating-area {
  position: absolute;
  top: 24px;
  right: 31px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .reviews-info .rating-area {
    position: static;
    margin-top: 20px;
  }
}

.reviews-content {
  position: relative;
  padding-left: 91px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .reviews-content {
    padding: 20px 0 0;
  }
}
.reviews-content .name {
  font-size: 16px;
  line-height: 1;
  color: var(--title-color);
  margin-bottom: 20px;
  display: inline-block;
}
.reviews-content .name .date {
  color: var(--body-color);
}
.reviews-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
}

.comment-form3 {
  position: relative;
  margin-top: 70px;
}
.comment-form3 p {
  margin-bottom: 0;
}
.comment-form3 .comment-form-rating {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.comment-form3 .form-group {
  margin-bottom: 20px;
}
.comment-form3 .form-group label {
  margin-bottom: 20px;
}
.comment-form3 .form-group input,
.comment-form3 .form-group select,
.comment-form3 .form-group textarea {
  background: var(--white-color);
  color: var(--title-color);
  border: 1px solid #eeeeee;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 14px;
}
.comment-form3 .form-group input::-webkit-input-placeholder, .comment-form3 .form-group select::-webkit-input-placeholder, .comment-form3 .form-group textarea::-webkit-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::-moz-placeholder, .comment-form3 .form-group select::-moz-placeholder, .comment-form3 .form-group textarea::-moz-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input:-ms-input-placeholder, .comment-form3 .form-group select:-ms-input-placeholder, .comment-form3 .form-group textarea:-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::-ms-input-placeholder, .comment-form3 .form-group select::-ms-input-placeholder, .comment-form3 .form-group textarea::-ms-input-placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group input::placeholder,
.comment-form3 .form-group select::placeholder,
.comment-form3 .form-group textarea::placeholder {
  color: #a4a4b0;
}
.comment-form3 .form-group textarea {
  height: 189px;
}

.shop-sec2 {
  position: relative;
  padding-top: 60px;
}
.shop-sec2 .row {
  margin-bottom: -43px;
}
.shop-sec2 .shop-img {
  height: 396px;
}
.shop-sec2 .shop-img img {
  height: auto;
}

.shop-title {
  position: relative;
}
.shop-title .title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 40px;
  line-height: 38px;
  font-weight: 600;
}

.main-home.active {
  background-color: #090d16;
}
.main-home.active h1,
.main-home.active h2,
.main-home.active h3,
.main-home.active h4,
.main-home.active h5,
.main-home.active h6 {
  color: var(--white-color);
}
.main-home.active .dark {
  display: inline-block !important;
}
.main-home.active .light {
  display: none;
}
.main-home.active #preloader {
  background-color: #090d16;
}
.main-home.active #preloader img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.main-home.active .btn-style1.v3 {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
}
.main-home.active .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .btn-style1:hover span {
  background-color: var(--title-color);
}
.main-home.active .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .search-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .hamburger-btn span {
  background-color: var(--white-color);
}
.main-home.active p,
.main-home.active li,
.main-home.active span {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .sec-title .sub-title {
  background-color: #0e1421;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .header-bottom {
  padding: 15px 0;
}
.main-home.active .main-sec::before {
  background-image: url(../images/bg/layer1-1-dark.png);
}
.main-home.active .main-menu11 {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .main-menu11 > ul > li > a {
  color: var(--white-color);
}
.main-home.active .main-menu11 > ul > li > a img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .main-menu11 > ul > li > a:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .main-menu11 > ul > li > a:hover img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .main-menu11 > ul > .active > a {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .main-menu11 > ul > .active > a img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .main-menu11 > ul .hover-active > a {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .main-menu11 > ul .hover-active > a img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .dropdown-menu,
.main-home.active .sub-menu {
  background-color: #0e1421;
}
.main-home.active .dropdown-menu li a,
.main-home.active .sub-menu li a {
  color: var(--white-color);
}
.main-home.active .dropdown-menu li a img,
.main-home.active .sub-menu li a img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .dropdown-menu > .hover-active > a,
.main-home.active .dropdown-menu .active > a,
.main-home.active .sub-menu > .hover-active > a,
.main-home.active .sub-menu .active > a {
  background-color: #3b404b !important;
  color: var(--white-color) !important;
}
.main-home.active .dropdown-menu > .hover-active > a img,
.main-home.active .dropdown-menu .active > a img,
.main-home.active .sub-menu > .hover-active > a img,
.main-home.active .sub-menu .active > a img {
  -webkit-filter: invert(1) !important;
          filter: invert(1) !important;
}
.main-home.active .hero-content .sub-title {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
}
.main-home.active .hero-content .hero-form .form-group input {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .hero-content .hero-form .form-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .hero-content .hero-form .form-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .hero-content .hero-form .form-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .hero-content .hero-form .form-group input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .hero-content .hero-form .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .brand-img a:hover img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
.main-home.active .feature-card {
  background-color: #0e1421;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .feature-list {
  position: relative;
}
.main-home.active .feature-list li img {
  -webkit-filter: invert(0.6);
          filter: invert(0.6);
}
.main-home.active .feature-sec2,
.main-home.active .pricing-sec {
  background-image: url(../images/bg/bg1-dark.png);
}
.main-home.active .feature-sec2 .sec-title .sub-title,
.main-home.active .pricing-sec .sec-title .sub-title {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .feature-block2 {
  background-color: #0e1421;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .feature-block2 .title a {
  color: var(--white-color);
}
.main-home.active .intigration-sec {
  padding-top: 0 !important;
}
.main-home.active .intigration-sec .sec-title .btn-style1.v4 {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .intigration-sec .sec-title .btn-style1.v4:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .intigration-sec .sec-title .btn-style1.v4 span {
  background-color: var(--title-color);
}
.main-home.active .intigration-sec .sec-title .btn-style1.v4 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .choose-info {
  position: relative;
  background-image: url(../images/bg/bg2-dark.png);
}
.main-home.active .choose-info .sec-title .sub-title {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .choose-block {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .choose-block:hover {
  border-color: var(--white-color);
}
.main-home.active .choose-block:hover .choose-icon {
  background-color: var(--white-color);
  background-image: unset;
}
.main-home.active .choose-icon {
  border-color: transparent;
}
.main-home.active .feature-img3,
.main-home.active .feature-img4 {
  background-color: #0e1421;
  border-color: rgba(255, 255, 255, 0.1019607843);
  border-radius: 14px;
}
.main-home.active .feature-img3 .two,
.main-home.active .feature-img4 .two {
  display: none;
}
.main-home.active .pricing-sec .nav-tabs,
.main-home.active .pricing-sec2 .nav-tabs {
  background-color: #111723;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-sec .nav-tabs .nav-link,
.main-home.active .pricing-sec2 .nav-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .pricing-sec .nav-tabs .nav-link.active,
.main-home.active .pricing-sec2 .nav-tabs .nav-link.active {
  color: var(--white-color);
}
.main-home.active .pricing-card {
  background-color: #111723;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-card .btn-style1 {
  background-color: #090d16;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-card .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .pricing-card .btn-style1 span {
  background-color: #111723;
}
.main-home.active .pricing-card .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .price-icon {
  background-color: #090d16;
}
.main-home.active .price-icon img {
  -webkit-filter: brightness(1111);
          filter: brightness(1111);
}
.main-home.active .pricing-card.v2 {
  background-color: #f1fee1;
}
.main-home.active .pricing-card.v2 .title,
.main-home.active .pricing-card.v2 p,
.main-home.active .pricing-card.v2 .price,
.main-home.active .pricing-card.v2 span {
  color: var(--title-color);
}
.main-home.active .pricing-card.v2 .price-list {
  background-color: #e5ffc5;
  border-color: #cbe4ac;
}
.main-home.active .pricing-card.v2 .price-list li {
  color: var(--title-color);
}
.main-home.active .pricing-card.v2 .price-list li img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .pricing-card.v2 .price-icon {
  background-color: var(--theme-color);
}
.main-home.active .pricing-card.v2 .price-icon img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .pricing-card.v2 .btn-style1 {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .pricing-card.v2 .btn-style1:hover {
  background-color: #090d16;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-card.v2 .btn-style1:hover span {
  background-color: var(--white-color);
}
.main-home.active .pricing-card.v2 .btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .price-list {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .price-list li img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.main-home.active .testi-card {
  background-color: #111723;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .testi-card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px #b9fb6a;
          box-shadow: 0px 0px 10px 0px #b9fb6a;
}
.main-home.active .testi-card .name .designation {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .testi-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .testi-pagination .swiper-pagination-bullet:hover {
  background-color: var(--white-color);
}
.main-home.active .testi-pagination .swiper-pagination-bullet:hover::before {
  border-color: var(--white-color);
}
.main-home.active .testi-pagination .swiper-pagination-bullet-active {
  background-color: var(--white-color);
}
.main-home.active .testi-pagination .swiper-pagination-bullet-active::before {
  border-color: var(--white-color);
}
.main-home.active .faq-box .vs-accordion {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .faq-box .vs-accordion .accordion-item {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-button:hover .arrow-btn {
  background-color: var(--theme-color);
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-button:hover .arrow-btn img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-button span {
  color: var(--white-color);
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-button .arrow-btn {
  background-color: #111723;
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-button .arrow-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .faq-box .vs-accordion .accordion-item .accordion-body {
  color: var(--white-color);
}
.main-home.active .faq-box .vs-accordion .accordion-item.active .accordion-button .arrow-btn {
  background-color: var(--theme-color);
}
.main-home.active .faq-box .vs-accordion .accordion-item.active .accordion-button .arrow-btn img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .cta-content .sub-title {
  background-color: #a1d561;
  border-color: rgba(9, 13, 22, 0.1019607843);
  color: var(--title-color);
}
.main-home.active .cta-content .title,
.main-home.active .cta-content p {
  color: var(--title-color);
}
.main-home.active .brand-sec,
.main-home.active .feature-sec,
.main-home.active .feature-sec3,
.main-home.active .feature-sec4,
.main-home.active .testimonial-sec,
.main-home.active .cta-banner {
  background-color: #090d16;
}
.main-home.active .hero-highlights li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.88);
}
.main-home.active .hero-highlights i {
  color: var(--theme-color);
}
.main-home.active .browser-mockup,
.main-home.active .browser-mockup-header,
.main-home.active .browser-mockup-content {
  background-color: #111723;
  border-color: rgba(255, 255, 255, 0.08);
}
.main-home.active .browser-mockup-address {
  color: rgba(255, 255, 255, 0.78);
}
.main-home.active .cta-info {
  background-image: none;
  background: linear-gradient(135deg, rgba(17, 23, 35, 0.95), rgba(9, 13, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.main-home.active .cta-content .sec-title .sub-title {
  background-color: #111723;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.08);
}
.main-home.active .social-links li a {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .link-title {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .footer-style1::before {
  background-image: url(../images/bg/layer1-5-dark.png);
  height: 353px;
}
.main-home.active .footer-links li a {
  color: var(--white-color);
}
.main-home.active .footer-links li a:hover {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .footer-box {
  background-color: #111723;
  border-color: transparent;
}
.main-home.active .scrol-btn-box:hover #scrollTopBtn {
  background-color: var(--white-color);
}
.main-home.active .scrol-btn-box span {
  color: var(--white-color);
}
.main-home.active .scrol-btn-box #scrollTopBtn {
  background-color: var(--theme-color);
}
.main-home.active .scrol-btn-box #scrollTopBtn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .anim-img circle {
  stroke: var(--theme-color);
}
.main-home.active .header-main.sticky {
  background-color: #090d16;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .mobile-menu {
  background-color: #090d16;
}
.main-home.active .mobile-menu .close-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .mobile-menu .main-menu11 ul li a {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: unset !important;
  color: var(--white-color);
}
.main-home.active .mobile-menu .main-menu11 ul li a img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .mobile-menu .main-menu11 ul .active > a,
.main-home.active .mobile-menu .main-menu11 ul .hover-active.active > a {
  color: #8bcf2e !important;
}
.main-home.active .bread-crumbs li {
  color: var(--white-color);
}
.main-home.active .bread-crumbs li::before {
  background-color: var(--white-color);
}
.main-home.active .bread-crumbs li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .bread-crumbs li a:hover {
  color: var(--white-color);
}
.main-home.active .page-quote {
  background-color: var(--theme-color);
}
.main-home.active .page-quote p {
  color: var(--title-color);
}
.main-home.active .auther-area .name,
.main-home.active .auther-area .designation {
  color: var(--title-color);
}
.main-home.active .choose-block2 {
  background-color: #0e1421;
  border-color: transparent;
}
.main-home.active .choose-block2 img {
  -webkit-filter: brightness(111);
          filter: brightness(111);
}
.main-home.active .choose-block2:hover {
  background-color: var(--theme-color);
}
.main-home.active .choose-block2:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.main-home.active .choose-block2:hover .title,
.main-home.active .choose-block2:hover p {
  color: var(--title-color);
}
.main-home.active .funfact-content {
  background-color: #090d16;
}
.main-home.active .funfact-block-one.v2,
.main-home.active .funfact-block-one.v4 {
  background-color: #0e1421;
}
.main-home.active .funfact-block-one.v3 .title,
.main-home.active .funfact-block-one.v3 p {
  color: var(--title-color);
}
.main-home.active .team-content .name a {
  color: var(--white-color);
}
.main-home.active .main-sec2::before,
.main-home.active .main-sec4::before {
  background-image: url(../images/bg/layer1-2-dark.png);
}
.main-home.active .page-content2 {
  background-color: #0e1421;
}
.main-home.active .service-sec,
.main-home.active .data-insight,
.main-home.active .funfact-sec2,
.main-home.active .pricing-compare,
.main-home.active .main-sec3 {
  background-color: #0e1421;
}
.main-home.active .ser-block {
  background-color: #090d16;
  border-color: #272c38;
}
.main-home.active .ser-block:hover {
  border-color: var(--white-color);
}
.main-home.active .ser-block:hover .ser-btn {
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .ser-block img {
  -webkit-filter: brightness(111);
          filter: brightness(111);
}
.main-home.active .ser-block .ser-btn {
  color: var(--white-color);
  border-color: #22262e;
}
.main-home.active .contact-block .help-line {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .contact-block .help-line img {
  -webkit-filter: brightness(111);
          filter: brightness(111);
}
.main-home.active .contact-block a,
.main-home.active .contact-block p {
  color: var(--white-color);
}
.main-home.active .contact-form {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .contact-form input,
.main-home.active .contact-form select,
.main-home.active .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: unset;
}
.main-home.active .feature-block5 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .feature-block5:hover {
  background-color: #0e1421;
}
.main-home.active .feature-block5 img {
  -webkit-filter: brightness(111);
          filter: brightness(111);
}
.main-home.active .result-list li img {
  -webkit-filter: brightness(9);
          filter: brightness(9);
}
.main-home.active .result-block span,
.main-home.active .result-block .title,
.main-home.active .result-block p {
  color: var(--title-color);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item:hover .arrow-btn {
  background-color: var(--theme-color);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item:hover .arrow-btn img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item .accordion-button span {
  color: var(--white-color);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item .arrow-btn {
  background-color: #0e1421;
}
.main-home.active .faq-box2 .vs-accordion .accordion-item .arrow-btn img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item.active .arrow-btn {
  background-color: var(--theme-color);
}
.main-home.active .faq-box2 .vs-accordion .accordion-item.active .arrow-btn img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.main-home.active .analytic-block img {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.main-home.active .team-sec2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .team-contact a {
  color: var(--white-color);
}
.main-home.active .progress-circle__content span {
  color: var(--white-color);
}
.main-home.active .progress-title {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .team-content2,
.main-home.active .skill-contnent,
.main-home.active .career-sec2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-info3 {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .pricing-info3 .price-row,
.main-home.active .pricing-info3 .price-row2.v2 {
  background-color: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .price-box3-two img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .price-box3-two.v3 img {
  -webkit-filter: unset;
          filter: unset;
}
.main-home.active .main-sec3 .header-main {
  background-color: #090d16;
}
.main-home.active .career-block {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .career-block .sub-title {
  background-color: #0e1421;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .career-block:hover {
  border-color: var(--theme-color);
}
.main-home.active .career-btn .btn-style1,
.main-home.active .caree-detail-info .btn-style1 {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .career-btn .btn-style1:hover,
.main-home.active .caree-detail-info .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .career-btn .btn-style1 span,
.main-home.active .caree-detail-info .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .career-btn .btn-style1 span img,
.main-home.active .caree-detail-info .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .price-box .location,
.main-home.active .price-box .title {
  color: var(--title-color);
}
.main-home.active .career-list2 li,
.main-home.active .digital-list li {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .career-list2 li img,
.main-home.active .digital-list li img {
  -webkit-filter: brightness(2);
          filter: brightness(2);
}
.main-home.active .contact-info a {
  color: var(--white-color);
}
.main-home.active .social-links2 li a:hover img {
  -webkit-filter: brightness(111);
          filter: brightness(111);
}
.main-home.active .contact-form2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .contact-form2 label {
  color: var(--white-color);
}
.main-home.active .contact-form2 input,
.main-home.active .contact-form2 select,
.main-home.active .contact-form2 textarea {
  background-color: #0e1421;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .error-content .title {
  color: #090d16;
  text-shadow: -1px -1px 0 var(--white-color), 1px -1px 0 var(--white-color), -1px 1px 0 var(--white-color), 1px 1px 0 var(--white-color);
}
.main-home.active .error-content p {
  color: var(--white-color);
}
.main-home.active .coming-soon-info .sub-title2,
.main-home.active .coming-soon-info .sub-title {
  color: var(--title-color);
}
.main-home.active .shop-img {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: #0e1421;
}
.main-home.active .shop-content .title a {
  color: var(--white-color);
}
.main-home.active .shop-content .price2 span {
  color: var(--white-color);
}
.main-home.active .blog-pagination {
  position: relative;
}
.main-home.active .blog-pagination .page-item .page-link {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: transparent;
  color: var(--white-color);
}
.main-home.active .blog-pagination .page-item .page-link:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .blog-pagination .page-item .page-link:hover img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .blog-pagination .page-item .page-link img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .shop-form select {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .shop-form select::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .shop-form select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .shop-form select:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .shop-form select::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .shop-form select::placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form2 .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .side-bar-title {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .side-bar-title::before {
  background-color: var(--white-color);
}
.main-home.active .range-slider {
  border-color: var(--white-color);
}
.main-home.active .range-slider .progress {
  background-color: var(--white-color);
}
.main-home.active .range-slider input::-webkit-slider-thumb {
  background-color: var(--white-color);
}
.main-home.active .product-list2 li::before {
  background-color: var(--white-color);
}
.main-home.active .product-list2 li a {
  color: var(--white-color);
}
.main-home.active .shop-content2 .title a {
  color: var(--white-color);
}
.main-home.active .shop-content2 .price2 span {
  color: var(--white-color);
}
.main-home.active .product-img2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .tag-list li a {
  background-color: #0e1421;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .tag-list li a:hover {
  border-color: transparent;
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .product-detail-content .sales {
  color: var(--title-color);
}
.main-home.active .price3 {
  color: var(--white-color);
}
.main-home.active .price3 del {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .qty-box {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .qty-box .qty-btn {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
}
.main-home.active .qty-box input {
  background-color: transparent;
  color: var(--white-color);
}
.main-home.active .qty-box input::-webkit-input-placeholder {
  color: var(--white-color);
}
.main-home.active .qty-box input::-moz-placeholder {
  color: var(--white-color);
}
.main-home.active .qty-box input:-ms-input-placeholder {
  color: var(--white-color);
}
.main-home.active .qty-box input::-ms-input-placeholder {
  color: var(--white-color);
}
.main-home.active .qty-box input::placeholder {
  color: var(--white-color);
}
.main-home.active .detail-tabs .nav-tabs {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .detail-tabs .nav-tabs .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .detail-tabs .nav-tabs .nav-item .nav-link:hover {
  color: var(--white-color);
}
.main-home.active .detail-tabs .nav-tabs .nav-item .nav-link::before {
  background-color: var(--white-color);
}
.main-home.active .detail-tabs .nav-tabs .nav-item .nav-link.active {
  color: var(--white-color);
}
.main-home.active .detail-tabs .product-attributes tr th {
  color: var(--white-color);
}
.main-home.active .detail-tabs .product-attributes tr td {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .detail-tabs .product-attributes tr th,
.main-home.active .detail-tabs .product-attributes tr td {
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var();
}
.main-home.active .reviews-info {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .reviews-info .reviews-content .date {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form3 label,
.main-home.active .coupan-form label {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-form3 input,
.main-home.active .comment-form3 select,
.main-home.active .comment-form3 textarea,
.main-home.active .coupan-form input,
.main-home.active .coupan-form select,
.main-home.active .coupan-form textarea {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: transparent;
}
.main-home.active .shop-img .sale {
  color: var(--title-color);
}
.main-home.active .shop-product-cart-info .title a {
  color: var(--white-color);
}
.main-home.active .cart-table table thead th {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .cart-table table tr td {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .cart-table table tr td span {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .cart-table table tr td .remove-cart-item img {
  -webkit-filter: brightness(8);
          filter: brightness(8);
}
.main-home.active .cart-table-bottom {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .cart-table-bottom .btn-style1 {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .cart-table-bottom .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .cart-table-bottom .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .cart-table-bottom .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .cart-totals {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .cart-totals {
  -ms-flex-line-pack: start;
      align-content: start;
  background-color: #0e1421;
}
.main-home.active .cart-totals table th,
.main-home.active .cart-totals table td {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .cart-totals table tr:last-child th,
.main-home.active .cart-totals table tr:last-child td {
  border-color: rgba(255, 255, 255, 0.1019607843) !important;
}
.main-home.active .cart-totals .btn-style1 {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .cart-totals .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .cart-totals .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .cart-totals .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .cart-form label {
  color: var(--white-color);
}
.main-home.active .cart-form input,
.main-home.active .cart-form select,
.main-home.active .cart-form textarea {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: transparent;
}
.main-home.active .order-summary {
  border-color: rgba(255, 255, 255, 0.1019607843);
  background-color: transparent;
}
.main-home.active .order-summary .price-row3 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .order-summary .price-row3 span {
  color: var(--white-color);
}
.main-home.active .order-summary .btn-style1 {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .order-summary .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .order-summary .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .order-summary .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .product-info strong,
.main-home.active .product-info span {
  color: var(--white-color);
}
.main-home.active .payment-option {
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .blog-card2 {
  background-color: #090d16;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .blog-card2 .title a {
  color: var(--white-color);
}
.main-home.active .blog-card2 .btn-style1 {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .blog-card2 .btn-style1:hover {
  background-color: var(--white-color);
}
.main-home.active .blog-card2 .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .blog-card2 .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .blog-meta2 {
  background-color: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .blog-meta2 li::before {
  background-color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .blog-meta2 li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .side-widget {
  background-color: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .blog-detail-list li::before {
  background-color: var(--white-color);
}
.main-home.active .blog-detail-list li a {
  color: var(--white-color);
}
.main-home.active .blog-detail-list li a:hover {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .side-bar .comment-form3 .btn-style1 {
  background-color: var(--white-color);
  color: var(--title-color);
}
.main-home.active .side-bar .comment-form3 .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
  border-color: transparent;
}
.main-home.active .side-bar .comment-form3 .btn-style1 span {
  background-color: var(--title-color);
}
.main-home.active .side-bar .comment-form3 .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .blog-card .title a,
.main-home.active .blog-card3 .title a {
  color: var(--white-color);
}
.main-home.active .blog-card .btn-style1,
.main-home.active .blog-card3 .btn-style1 {
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
}
.main-home.active .blog-card .btn-style1:hover,
.main-home.active .blog-card3 .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.main-home.active .blog-card .btn-style1:hover span,
.main-home.active .blog-card3 .btn-style1:hover span {
  background-color: var(--title-color);
}
.main-home.active .blog-card .btn-style1:hover span img,
.main-home.active .blog-card3 .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.main-home.active .blog-meta li::before {
  background-color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .blog-meta li:last-child a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .blog-meta li:last-child a:hover {
  color: var(--white-color);
}
.main-home.active .blog-meta li a {
  color: var(--white-color);
}
.main-home.active .testimonial {
  background-color: #0e1421;
}
.main-home.active .auther-bio {
  background-color: #0e1421;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .social-link2 li a {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .btn-nav a:hover .nav-thumb::before {
  background-color: var(--white-color);
}
.main-home.active .btn-nav a:hover .nav-thumb .post-btn {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.main-home.active .comments-area {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .comment-reply-link {
  color: var(--white-color);
}
.main-home.active .comment-reply-link:hover {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .comment-reply-link:hover img {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.main-home.active .comment-reply-link img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
.main-home.active .comment-form input,
.main-home.active .comment-form select,
.main-home.active .comment-form textarea {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .bread-crumbs2 {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .bread-crumbs2 li a {
  color: var(--white-color);
}
.main-home.active .comment-respond.v2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .filter-btns button {
  border-color: rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
}
.main-home.active .filter-btns button:hover {
  color: var(--title-color);
}
.main-home.active .filter-btns .active {
  color: var(--title-color);
}
.main-home.active .project-content {
  position: relative;
}
.main-home.active .project-content .title a {
  color: var(--white-color);
}
.main-home.active .project-list li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.main-home.active .project-list li a:hover {
  color: var(--white-color);
}
.main-home.active .sasi-project-navigation,
.main-home.active .client-info,
.main-home.active .client-detail,
.main-home.active .client-content2,
.main-home.active .client-info2 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.main-home.active .funfact-block-one.v2 p,
.main-home.active .funfact-block-one.v4 p,
.main-home.active .funfact-block-inner p {
  color: var(--white-color);
}

.dark-active {
  display: none;
}

@media (max-width: 1199.98px) {
  .page-content .title,
  .page-content3 .title {
    font-size: 3rem;
    line-height: 1.08;
  }
  .page-content p,
  .page-content3 p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }
  .page-banner .page-area,
  .page-banner .page-area .row,
  .contact-sec2 .row,
  .choose-us-sec2 .row {
    margin-left: 0;
    margin-right: 0;
  }
  .page-quote,
  .choose-block2,
  .funfact-block-one,
  .funfact-img,
  .contact-form2,
  .contact-content2,
  .faq-accordion .accordion-item,
  .legal-panel {
    border-radius: 20px;
  }
  .public-page-topbar {
    flex-direction: column;
  }
  .public-page-hero-grid {
    grid-template-columns: 1fr;
  }
  .public-page-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .public-page-mini-card {
    min-height: 100%;
  }
  .choose-content2 .sec-title {
    margin-bottom: 42px;
  }
  .choose-content2 .sec-title .title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    line-height: 1.05;
  }
  .choose-content2 .sec-title p {
    font-size: .98rem;
    line-height: 1.68;
  }
  .choose-info2 {
    padding-left: 0;
  }
  .choose-block2 {
    padding: 1.25rem 1.35rem;
  }
  .choose-block2 .title {
    font-size: 1.45rem;
  }
  .funfact-content {
    width: calc(100% - 20px);
    min-width: 0;
  }
  .funfact-block-one,
  .funfact-block-inner {
    padding: 1.2rem 1.2rem 1rem;
  }
  .funfact-block-one .title,
  .funfact-block-inner .title {
    font-size: 2.9rem;
    line-height: 1;
    margin-bottom: 1.1rem;
  }
  .funfact-block-one p,
  .funfact-block-inner p,
  .auther-info p {
    font-size: .98rem;
    line-height: 1.6;
  }
  .team-sec .sec-title {
    max-width: none;
  }
  .team-sec .sec-title .title {
    font-size: clamp(2rem, 3vw, 2.85rem);
  }
  .team-card .name {
    font-size: 1.3rem;
  }
  .team-card .designation {
    font-size: .98rem;
    line-height: 1.6;
  }
  .faq-left .eyebrow {
    padding: .62rem 1.1rem;
    font-size: .9rem;
  }
  .faq-left .title {
    font-size: clamp(2.05rem, 3.3vw, 3rem);
  }
  .faq-left p {
    font-size: 1rem;
    line-height: 1.68;
  }
}

@media (max-width: 767.98px) {
  .page-content .title,
  .page-content3 .title {
    font-size: 2.2rem;
    line-height: 1.12;
  }
  .page-content,
  .page-content3,
  .contact-content2 .sec-title,
  .contact-form2,
  .faq-left,
  .faq-right {
    text-align: left;
  }
  .page-content p,
  .page-content3 p {
    font-size: .98rem;
  }
  .page-banner .page-info,
  .page-banner3 .page-info,
  .page-area,
  .page-area2 {
    padding-left: 0;
    padding-right: 0;
  }
  .page-banner .row > [class*="col-"],
  .page-banner3 .row > [class*="col-"],
  .contact-sec2 .row > [class*="col-"],
  .choose-us-sec2 .row > [class*="col-"],
  .faq-layout > *,
  .legal-page-shell > .carousel-container > * {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .contact-content2,
  .contact-form2 {
    padding-top: 0;
  }
  .public-page-topbar {
    gap: .8rem;
  }
  .public-page-hero {
    padding: 1.2rem;
  }
  .public-page-crumbs {
    gap: .4rem;
  }
  .public-page-aside {
    grid-template-columns: 1fr;
  }
  .public-page-mini-card {
    padding: .9rem 1rem;
  }
  .public-page-mini-label {
    font-size: .78rem;
  }
  .public-page-mini-title {
    font-size: 1rem;
  }
  .public-page-mini-copy {
    font-size: .95rem;
    line-height: 1.6;
  }
  .contact-sec2 .social-links2 {
    gap: .6rem;
    flex-wrap: wrap;
  }
  .contact-sec2 .social-links2 li a {
    width: 40px;
    height: 40px;
  }
  .choose-content2 .sec-title {
    margin-bottom: 32px;
  }
  .choose-content2 .sec-title .title {
    font-size: 1.75rem;
  }
  .choose-content2 .sec-title p {
    font-size: .95rem;
  }
  .choose-img {
    margin-bottom: 1rem;
  }
  .choose-block2 {
    padding: 1rem;
  }
  .funfact-sec .row {
    margin-bottom: -18px;
  }
  .funfact-img {
    margin-bottom: 32px;
  }
  .funfact-content {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    display: block;
    margin: 1rem 0 0;
    padding: 1rem;
  }
  .funfact-content .auther-info p {
    margin-bottom: 1rem;
  }
  .team-sec .row {
    margin-bottom: -20px;
  }
  .team-card {
    margin-bottom: 20px;
  }
  .team-content {
    padding-top: .75rem;
  }
  .team-card .social-link3 {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: .75rem;
  }
  .team-card .social-link3 li {
    opacity: 1;
    transform: none;
    margin-bottom: 0;
  }
  .team-card .team-img a img {
    width: 100%;
  }
  .faq-accordion .accordion-button {
    min-height: 72px;
    padding: 1rem 1rem 1rem 1rem;
    font-size: .96rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .faq-accordion .accordion-button span:first-child {
    padding-right: 0;
    min-width: 0;
  }
  .faq-accordion .accordion-button .arrow-btn {
    margin-top: .1rem;
  }
  .faq-accordion .accordion-body {
    padding: 0 1rem 1rem;
  }
  .faq-video {
    margin-top: 2rem;
  }
  .legal-page-shell {
    gap: 1rem;
  }
  .legal-banner,
  .legal-panel {
    padding: 1rem;
  }
  .legal-banner .bread-crumbs {
    gap: .35rem;
  }
  .brand-title {
    font-size: 13px;
    line-height: 1.25;
    padding: .6rem 1rem;
    max-width: 100%;
  }
  .choose-block2 .title,
  .funfact-block-one .title,
  .funfact-block-inner .title {
    font-size: 1.7rem;
    line-height: 1.1;
  }
  .faq-left .btn-style1.v2 {
    width: 100%;
    min-width: 100%;
  }
  .faq-left .title {
    max-width: 100%;
    font-size: 1.85rem;
  }
  .faq-left p {
    font-size: .95rem;
  }
  .legal-body {
    line-height: 1.75;
  }
}

@media (max-width: 575.98px) {
  .page-content .title,
  .page-content3 .title {
    font-size: 1.9rem;
    line-height: 1.12;
  }
  .page-content p,
  .page-content3 p {
    font-size: .95rem;
    line-height: 1.65;
  }
  .page-content .bread-crumbs,
  .page-content3 .bread-crumbs {
    gap: .35rem;
    flex-wrap: wrap;
  }
  .page-quote,
  .contact-form2,
  .contact-content2 {
    padding: 1rem;
  }
  .public-page-panel {
    padding: 1rem;
  }
  .public-page-hero {
    padding: 1rem;
  }
  .public-page-title {
    font-size: 1.85rem;
  }
  .public-page-subtitle {
    font-size: .95rem;
    line-height: 1.65;
  }
  .public-page-crumb {
    padding: .5rem .75rem;
    font-size: .92rem;
  }
  .choose-block2,
  .funfact-block-one {
    padding: 1rem;
  }
  .choose-block2 {
    margin-bottom: 18px;
  }
  .choose-block2 .title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .contact-form2 textarea {
    min-height: 150px;
  }
  .contact-form2 .btn-style1,
  .faq-left .btn-style1.v2,
  .cta-content .btn-style1 {
    width: 100%;
    min-width: 100%;
    justify-content: center;
  }
  .contact-map-frame {
    border-radius: 20px;
  }
  .legal-panel .title {
    font-size: 1.65rem;
  }
  .legal-panel .subtitle,
  .legal-body {
    font-size: .95rem;
    line-height: 1.75;
  }
  .funfact-block-one .title,
  .funfact-block-inner .title {
    font-size: 2.8rem;
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  .funfact-block-one p,
  .funfact-block-inner p {
    font-size: .95rem;
    line-height: 1.55;
    max-width: 100%;
  }
  .auther-info p {
    font-size: .94rem;
  }
  .brand-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
  }
  .team-card .name {
    font-size: 1.15rem;
  }
  .team-card .designation {
    font-size: .95rem;
    line-height: 1.55;
  }
  .faq-accordion .accordion-button {
    font-size: .94rem;
  }
  .faq-accordion .accordion-body {
    font-size: .92rem;
  }
  .legal-banner,
  .legal-panel {
    padding: .95rem;
  }
  .legal-panel .subtitle,
  .legal-body {
    font-size: .93rem;
  }
}
