/*
Template Name: sasico | Task-Management HTML Template
Description: Task-Management.
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: #FF6733;
  --white-color: #fff;
  --title-color: #000000;
  --bg-color: #FFF0EB;
  --body-color: #706F6B;
  --dark-body: #0D141D;
  --body-color2: #FFFFFFA6;
  --border-color: #FF67331A;
  --border-color2: #FF673326;
  --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: 1320px;
  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(--white-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: 0;
}
.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(--white-color);
  margin-left: 9px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-style1 span img {
  width: 14px;
  height: auto;
  display: block;
  margin: 0;
}
.btn-style1:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.btn-style1:hover span {
  background-color: var(--white-color);
}

.btn-style1.v2 {
  background-color: var(--theme-color3);
  color: var(--title-color2);
}
.btn-style1.v2:hover {
  background-color: #eaeaf3;
}

/*------------------- 3.3. Titles -------------------*/
/*------------------- 3.11. Flaticon -------------------*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/Flaticon.woff2") format("woff2"), url("../fonts/Flaticon.woff") format("woff"), url("../fonts/Flaticon.ttf") format("truetype"), url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}
[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  -------------------*/
/* 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;
}

.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-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  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: 99999;
}

.video-popup-content {
  position: relative;
  width: 100%;
  max-width: 1500px;
}

.video-popup iframe {
  width: 100%;
  height: 700px;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.dark {
  display: none;
}

.animation-icon .icon1 {
  position: absolute;
  -webkit-animation: triangleMove 4s linear infinite;
          animation: triangleMove 4s linear infinite;
}
.animation-icon .icon2 {
  -webkit-animation: zoomInOut 2s ease-in-out infinite;
          animation: zoomInOut 2s ease-in-out infinite;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes triangleMove {
  0% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
  33% {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  66% {
    -webkit-transform: translate(30px, 30px);
            transform: translate(30px, 30px);
  }
  100% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
@keyframes triangleMove {
  0% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
  33% {
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
  66% {
    -webkit-transform: translate(30px, 30px);
            transform: translate(30px, 30px);
  }
  100% {
    -webkit-transform: translate(30px, 0);
            transform: translate(30px, 0);
  }
}
.wrapper {
  overflow: hidden;
}

.sec-title {
  position: relative;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 49px;
  max-width: 487px;
}
.sec-title .sub-title {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
  display: inline-block;
  font-weight: 500;
  /* Small devices */
}
@media (max-width: 767px) {
  .sec-title .sub-title {
    margin-bottom: 10px;
  }
}
.sec-title .title {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  color: var(--title-color);
  letter-spacing: -0.03em;
  margin-bottom: 21px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .sec-title .title {
    font-size: 42px;
    line-height: 51px;
    margin-bottom: 19px;
  }
}
.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;
  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 img {
  margin-top: 48px;
}

.sec-title.white .sub-title,
.sec-title.white .title,
.sec-title.white p {
  color: var(--white-color);
  border-color: #1f2329;
}

#scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background: var(--theme-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 {
  -webkit-box-shadow: none;
          box-shadow: none;
  bottom: 45px;
}
#scrollTopBtn {
  /* Medium devices */
}
@media (max-width: 992px) {
  #scrollTopBtn {
    position: fixed;
    left: auto;
    right: 20px;
    bottom: 20px;
  }
}

.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: 0;
  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: #000;
  border-radius: 4px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -315px;
  width: 310px;
  height: 100%;
  background: #fff;
  -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-left: 0;
  margin-bottom: 0;
  padding-top: 20px;
  display: unset;
  margin: 0;
}
.mobile-menu .main-menu11 ul {
  display: block;
}
.mobile-menu .main-menu11 ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.1019607843);
  margin-right: 0;
}
.mobile-menu .main-menu11 ul li::before {
  display: none;
}
.mobile-menu .main-menu11 ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--title-color);
  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;
}
.mobile-menu .main-menu11 ul li a:hover {
  color: var(--theme-color);
}
.mobile-menu .main-menu11 ul li a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-menu .main-menu11 ul li .active {
  color: var(--theme-color) !important;
}
.mobile-menu .main-menu11 ul .active {
  color: var(--theme-color) !important;
}
.mobile-menu .main-menu11 ul .active a {
  color: var(--theme-color) !important;
}
.mobile-menu .dropdown {
  display: none;
  padding: 0 0 0 15px;
}
.mobile-menu .dropdown li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.mobile-menu .dropdown li a::before {
  display: none;
}
.mobile-menu .has-dropdown > a img {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.mobile-menu .has-dropdown.active > a {
  color: var(--theme-color);
}
.mobile-menu .has-dropdown.active > a img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-menu .has-dropdown.active .dropdown {
  display: block;
}

.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;
  background-color: var(--bg-color);
}
.main-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg/bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* Medium devices */
}
@media (max-width: 992px) {
  .main-sec::before {
    display: none;
  }
}

.header-main {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-main {
    top: 0;
    background-color: var(--white-color);
  }
}
.header-main .row .col-lg-7 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-main .row .col-lg-7 {
    display: none;
  }
}

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

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

.header-bottom {
  position: relative;
  top: 20px;
  padding: 18px 22px 17px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--white-color);
  border-radius: 50px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-bottom {
    top: 0;
    background-color: unset;
    padding: 21px 0px;
  }
}
.header-bottom .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-menu11 {
  position: relative;
  margin-left: 130px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .main-menu11 {
    margin-left: 90px;
  }
}
.main-menu11 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11 {
    margin-left: 60px;
  }
}
.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;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.main-menu11 ul > li {
  position: relative;
  margin-right: 45px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11 ul > li {
    margin-right: 38px;
  }
}
.main-menu11 ul > li:last-child {
  margin-right: 0;
}
.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(--body-color);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: var(--title-font);
  /* Large devices */
}
@media (max-width: 1199px) {
  .main-menu11 ul > li > a {
    font-size: 16px;
  }
}
.main-menu11 ul > li > a:hover {
  color: var(--theme-color);
}
.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 > li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--title-color);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-menu11 ul > li.active {
  color: var(--theme-color) !important;
}
.main-menu11 ul > li.active::before {
  width: 100%;
  background-color: var(--theme-color);
}
.main-menu11 ul > li.active a {
  color: var(--theme-color) !important;
}
.main-menu11 ul > li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 5px 17px;
  width: 208px;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: clip-path 0.35s ease, opacity 0.2s ease;
  transition: clip-path 0.35s ease, opacity 0.2s ease;
}
.main-menu11 ul > li .dropdown-menu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
}
.main-menu11 ul > li .dropdown-menu li a::before {
  display: none;
}
.main-menu11 ul > li .dropdown-menu li a:hover {
  color: var(--theme-color);
}

.header-btn {
  text-align: right;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .header-btn {
    position: absolute;
    top: 21px;
    right: 0;
  }
}
.header-btn .btn-style1 {
  height: 40px;
  line-height: 40px;
  padding: 5px 5px 5px 21px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .header-btn .btn-style1 {
    display: none;
  }
}
.header-btn .btn-style1 span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-left: 11px;
}
.header-btn .btn-style1 span img {
  width: 13px;
}

.search-btn {
  display: none;
  margin: 2px 48px 0 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .search-btn {
    display: inline-block;
  }
}
.search-btn img {
  width: 25px;
}

.sign-btn {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  display: inline-block;
  font-family: var(--title-font);
  height: 44px;
  background-color: var(--title-color2);
  padding: 0 24px;
  border-radius: 10px;
  line-height: 44px;
  border: 0;
  outline: none;
  /* Medium devices */
}
@media (max-width: 992px) {
  .sign-btn {
    display: none;
  }
}
.sign-btn:hover {
  background-color: var(--theme-color2);
  color: var(--white-color);
}

.hero-style1 {
  position: relative;
}

.hero-info {
  position: relative;
  padding: 218px 0 127px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-info {
    padding: 160px 0 79px;
  }
}
.hero-info .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-content {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-content {
    margin-bottom: 50px;
  }
}
.hero-content .sub-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 17px;
}
.hero-content .sub-title img {
  margin-right: 11px;
}
.hero-content .sub-title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .hero-content .sub-title {
    font-size: 16px;
    line-height: 26px;
  }
}
.hero-content .title {
  font-size: 70px;
  line-height: 75px;
  font-weight: 700;
  color: var(--title-color);
  letter-spacing: -0.03em;
  margin-bottom: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .hero-content .title {
    font-size: 55px;
    line-height: 63px;
  }
}
.hero-content .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .hero-content .title {
    font-size: 48px;
    line-height: 57px;
  }
}
.hero-content .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .hero-content .title {
    font-size: 41px;
    line-height: 52px;
  }
}
.hero-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .hero-content .title {
    font-size: 34px;
    line-height: 45px;
  }
}

.hero-content-one {
  position: relative;
  margin: 0 16px 0 90px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .hero-content-one {
    margin: 0 16px 0 40px;
  }
}
.hero-content-one {
  /* Medium devices */
}
@media (max-width: 992px) {
  .hero-content-one {
    margin: 0;
    max-width: 600px;
  }
}
.hero-content-one .sub-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 26px;
}
.hero-content-one .sub-title img {
  margin-right: 16px;
}
.hero-content-one p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 29px;
}

.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: 14px;
}

.main-sec2 {
  position: relative;
}

.animation-icon {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .animation-icon {
    display: none;
  }
}
.animation-icon .icon1 {
  position: absolute;
  top: 130px;
  left: 68px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .animation-icon .icon1 {
    width: 247px;
  }
}
.animation-icon .icon1 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .animation-icon .icon1 {
    left: 30px;
  }
}
.animation-icon .icon2 {
  position: absolute;
  top: 100px;
  right: 93px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .animation-icon .icon2 {
    width: 247px;
  }
}
.animation-icon .icon2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .animation-icon .icon2 {
    right: 30px;
  }
}

.future-banner {
  position: relative;
}

.future-banner-content {
  position: relative;
  text-align: center;
}
.future-banner-content .title {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  color: var(--title-color);
  letter-spacing: -0.03em;
  max-width: 900px;
  margin: 0 auto;
  /* Medium devices */
}
@media (max-width: 992px) {
  .future-banner-content .title {
    font-size: 40px;
    line-height: 52px;
  }
}
.future-banner-content .title {
  /* Small devices */
}
@media (max-width: 767px) {
  .future-banner-content .title {
    font-size: 30px;
    line-height: 46px;
  }
}

.future-banner-icon {
  position: relative;
  padding: 40px;
  display: inline-block;
  margin-bottom: 51px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .future-banner-icon {
    margin-bottom: 30px;
  }
}
.future-banner-icon .one,
.future-banner-icon .two {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.future-banner-icon .one {
  -webkit-animation: rotateOne 9s linear infinite;
          animation: rotateOne 9s linear infinite;
  /* Medium devices */
}
@media (max-width: 992px) {
  .future-banner-icon .one {
    width: 250px;
  }
}
.future-banner-icon .two {
  -webkit-animation: rotateTwo 15s linear infinite;
          animation: rotateTwo 15s linear infinite;
  /* Medium devices */
}
@media (max-width: 992px) {
  .future-banner-icon .two {
    width: 170px;
  }
}

@-webkit-keyframes rotateOne {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rotateOne {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes rotateTwo {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes rotateTwo {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
            transform: translate(-50%, -50%) rotate(-360deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}
.brand-sec {
  position: relative;
}

.brand-content {
  position: relative;
  text-align: center;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  padding: 78px 70px 79px;
  border-radius: 14px;
  z-index: 0;
  overflow: hidden;
  /* Large devices */
}
@media (max-width: 1199px) {
  .brand-content {
    padding: 78px 30px 79px;
  }
}
.brand-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .brand-content {
    padding: 78px 30px 39px;
  }
}
.brand-content::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: cover;
  z-index: -1;
}
.brand-content .sub-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 46px;
  display: inline-block;
  color: var(--title-color);
}

.brand-info {
  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;
  /* Medium devices */
}
@media (max-width: 992px) {
  .brand-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 614px;
    margin: 0 auto;
  }
}
.brand-info {
  /* Small devices */
}
@media (max-width: 767px) {
  .brand-info {
    max-width: 433px;
  }
}
.brand-info {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .brand-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.brand-img {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .brand-img {
    margin: 0 20px 50px;
  }
}
.brand-img a {
  display: inline-block;
}

.brand-sec2 {
  position: relative;
}

.brand-content2 {
  position: relative;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 78px 70px 79px;
  border-radius: 14px;
  z-index: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .brand-content2 {
    padding: 78px 30px 79px;
  }
}
.brand-content2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .brand-content2 {
    padding: 78px 30px 39px;
  }
}
.brand-content2 .sub-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 46px;
  display: inline-block;
  color: var(--title-color);
}

.brand-info2 {
  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;
  /* Medium devices */
}
@media (max-width: 992px) {
  .brand-info2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 614px;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.brand-info2 {
  /* Small devices */
}
@media (max-width: 767px) {
  .brand-info2 {
    max-width: 433px;
  }
}
.brand-info2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .brand-info2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.brand-img2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .brand-img2 {
    margin: 0 20px 50px;
  }
}
.brand-img2 a {
  display: inline-block;
}
.brand-img2 a:hover img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.brand-img2 a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.feature-block {
  position: relative;
  border: 1px solid var(--border-color2);
  border-radius: 14px;
  padding: 10px 10px 29px;
  margin-bottom: 30px;
}

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

.feature-content {
  position: relative;
  padding: 23px 21px 0;
}
.feature-content .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.feature-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 421px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content p {
    max-width: 302px;
  }
}
.feature-content p {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content p {
    max-width: 421px;
  }
}

.feature-content.v2 p {
  max-width: 612px;
}

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

.feature-info2 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-info2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.feature-info2 {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-info2 {
    display: block;
  }
}

.feature-card2 {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 40px 40px 34px;
  margin-bottom: 30px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .feature-card2 {
    padding: 40px 27px 34px;
  }
}
.feature-card2:first-child {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-card2:first-child {
    margin-right: 10px;
  }
}
.feature-card2:first-child {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-card2:first-child {
    margin-right: 0;
  }
}
.feature-card2:last-child {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-card2:last-child {
    margin-left: 10px;
  }
}
.feature-card2:last-child {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-card2:last-child {
    margin-left: 0;
  }
}
.feature-card2 .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-card2 .title {
    font-size: 17px;
  }
}
.feature-card2 .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-card2 .title {
    font-size: 20px;
  }
}
.feature-card2 p {
  font-size: 16px;
  line-height: 26px;
  margin: 142px 0 0;
  font-weight: 400;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .feature-card2 p {
    margin: 116px 0 0;
  }
}
.feature-card2 p {
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-card2 p {
    font-size: 14px;
    line-height: 24px;
    margin: 78px 0 0;
  }
}
.feature-card2 p {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-card2 p {
    font-size: 17px;
    line-height: 27px;
  }
}
.feature-card2 p {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-card2 p {
    margin: 39px 0 0;
  }
}

.feature-icon2 {
  position: relative;
  margin-bottom: 18px;
}

.feature-card2-one {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  margin-bottom: 30px;
  text-align: center;
  padding: 33px 54px 70px;
  overflow: hidden;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-card2-one {
    padding: 33px 29px 38px;
  }
}
.feature-card2-one {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-card2-one {
    padding: 33px 23px 38px;
  }
}
.feature-card2-one::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/event/layer1-4.png);
}
.feature-card2-one p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  padding: 98px 51px 27px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .feature-card2-one p {
    padding: 47px 51px 27px;
  }
}
.feature-card2-one p {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-card2-one p {
    padding: 47px 5px 27px;
  }
}

.feature-list2 {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
  background-color: var(--bg-color);
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 14px;
  padding: 19px 50px 19px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-list2 {
    padding: 19px 22px 19px;
  }
}
.feature-list2 li {
  font-size: 16px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--title-color);
}

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

.feature-content3 {
  position: relative;
  margin-right: 116px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content3 {
    margin: 0;
  }
}
.feature-content3 .sec-title {
  text-align: left;
  margin: unset;
  margin-bottom: 49px;
}
.feature-content3 .sec-title .title {
  margin-bottom: 49px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content3 .sec-title .title {
    margin-bottom: 30px;
  }
}
.feature-content3 .accordion .accordion-item {
  border: 0;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 17px 20px 19px;
  margin-bottom: 10px;
}
.feature-content3 .accordion .accordion-item .accordion-button {
  background-color: unset;
  border: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  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;
}
.feature-content3 .accordion .accordion-item .accordion-button::after {
  display: none;
}
.feature-content3 .accordion .accordion-item .accordion-button {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .feature-content3 .accordion .accordion-item .accordion-button {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .feature-content3 .accordion .accordion-item .accordion-button img {
    margin-top: 10px;
  }
}
.feature-content3 .accordion .accordion-item .accordion-button:not(.collapsed) img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.feature-content3 .accordion .accordion-item .accordion-body {
  padding: 11px 0 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  max-width: 415px;
}

.feature-img3 {
  position: relative;
  text-align: center;
  padding: 73px 90px;
  border-radius: 14px;
  z-index: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-img3 {
    padding: 50px;
  }
}
.feature-img3 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-img3 {
    margin-top: 50px;
  }
}
.feature-img3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/feature/feature3-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  z-index: -1;
}
.feature-img3 img {
  width: 100%;
}

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

.feature-img4 {
  position: relative;
  text-align: center;
  padding: 73px 90px;
  border-radius: 14px;
  z-index: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-img4 {
    padding: 50px;
  }
}
.feature-img4 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-img4 {
    margin-bottom: 50px;
  }
}
.feature-img4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/feature/feature3-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  z-index: -1;
}
.feature-img4 img {
  width: 100%;
}

.feature-content4 {
  position: relative;
  margin-left: 110px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content4 {
    margin: 0;
  }
}
.feature-content4 .sec-title {
  text-align: left;
  margin: unset;
  margin-bottom: 65px;
  /* Small devices */
}
@media (max-width: 767px) {
  .feature-content4 .sec-title {
    margin-bottom: 30px;
  }
}
.feature-content4 .sec-title .title {
  margin-bottom: 49px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content4 .sec-title .title {
    margin-bottom: 30px;
  }
}

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

.feature-sec5 {
  position: relative;
  background-color: var(--bg-color);
}
.feature-sec5 .row {
  margin-bottom: -30px;
}

.feature-card5 {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color2);
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 30px;
}
.feature-card5::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 273px;
  height: 276px;
  background-image: url(../images/event/layer1-2.png);
  z-index: -1;
}

.feature-img5 {
  position: absolute;
  top: 10px;
  left: 10px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-img5 {
    position: static;
  }
  .feature-img5 img {
    width: 100%;
  }
}

.feature-content5 {
  position: relative;
  padding: 37px 47px 29px 301px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content5 {
    padding: 37px 34px 29px 279px;
  }
}
.feature-content5 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content5 {
    padding: 43px 34px 48px 279px;
  }
}
.feature-content5 {
  /* Small devices */
}
@media (max-width: 767px) {
  .feature-content5 {
    padding: 19px 34px 19px 279px;
  }
}
.feature-content5 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-content5 {
    padding: 20px 20px 40px;
  }
}
.feature-content5 .name {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 3px;
  /* Small devices */
}
@media (max-width: 767px) {
  .feature-content5 .name {
    font-size: 22px;
  }
}
.feature-content5 .designation {
  position: relative;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 22px;
}
.feature-content5 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 92px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content5 p {
    margin-bottom: 42px;
  }
}
.feature-content5 p {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content5 p {
    max-width: 349px;
  }
}

.feature-card5.v2 {
  padding: 47px 70px 39px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-card5.v2 {
    padding: 47px 61px 39px;
  }
}
.feature-card5.v2 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-card5.v2 {
    padding: 47px 34px 39px;
  }
}
.feature-card5.v2 .feature-content5 {
  padding: 0;
}

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

.price-card {
  position: relative;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 38px 40px 38px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-card {
    padding: 38px 33px 38px;
  }
}
.price-card .sub-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--title-color);
  display: inline-block;
  margin-bottom: 4px;
}
.price-card .price {
  position: relative;
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-card .price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-color);
  line-height: 26px;
  margin-bottom: 0;
  display: inline-block;
  margin-left: 10px;
}
.price-card p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 33px;
  color: var(--title-color);
}
.price-card .btn-style1 {
  background-color: var(--white-color);
  border: 1px solid var(--border-color2);
  color: var(--title-color);
  padding: 4px 5px 4px 70px;
  margin-bottom: 38px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .price-card .btn-style1 {
    padding: 4px 5px 4px 51px;
  }
}
.price-card .btn-style1 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-card .btn-style1 {
    padding: 4px 5px 4px 30px;
  }
}
.price-card .btn-style1:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.price-card .btn-style1:hover span {
  background-color: var(--white-color);
}
.price-card .btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.price-card .btn-style1 span {
  background-color: var(--theme-color);
  margin-left: 60px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .price-card .btn-style1 span {
    margin-left: 51px;
  }
}
.price-card .btn-style1 span {
  /* Large devices */
}
@media (max-width: 1199px) {
  .price-card .btn-style1 span {
    margin-left: 25px;
  }
}
.price-card .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.price-card .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 21px;
}

.price-list {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.price-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 18px;
  color: var(--title-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.price-list li:last-child {
  margin-bottom: 0;
}
.price-list li img {
  margin-right: 8px;
}

.price-card.v2 {
  background-color: var(--title-color);
  z-index: 0;
}
.price-card.v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/event/layer2-1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.price-card.v2 p,
.price-card.v2 h4,
.price-card.v2 span,
.price-card.v2 li {
  color: var(--white-color);
}
.price-card.v2 .btn-style1 {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.price-card.v2 .btn-style1:hover {
  background-color: var(--white-color);
  color: var(--title-color);
}
.price-card.v2 .btn-style1:hover span {
  background-color: var(--title-color);
}
.price-card.v2 .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.price-card.v2 .btn-style1 span {
  background-color: var(--white-color);
}
.price-card.v2 .btn-style1 span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

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

.faq-content {
  position: relative;
  margin-left: 60px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-content {
    margin: 0;
  }
}
.faq-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-content {
    margin-bottom: 50px;
  }
}
.faq-content .sec-title {
  text-align: left;
  margin: unset;
  margin-bottom: 49px;
}

.faq-box {
  position: relative;
}
.faq-box .accordion .accordion-item {
  border: 0;
  background-color: var(--white-color);
  border: 1px solid var(--border-color2);
  border-radius: 14px;
  padding: 17px 20px 16px 25px;
  margin-bottom: 10px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box .accordion .accordion-item {
    padding: 17px 22px 16px 18px;
  }
}
.faq-box .accordion .accordion-item .accordion-button {
  background-color: unset;
  border: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  /* Extra small devices */
}
@media (max-width: 416px) {
  .faq-box .accordion .accordion-item .accordion-button {
    font-size: 17px;
    line-height: 25px;
  }
}
.faq-box .accordion .accordion-item .accordion-button::after {
  display: none;
}
.faq-box .accordion .accordion-item .accordion-button span {
  position: absolute;
  top: -3px;
  right: 0;
  width: 35px;
  height: 35px;
  line-height: 29px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  display: inline-block;
}
.faq-box .accordion .accordion-item .accordion-button span img {
  -webkit-filter: brightness(1111);
          filter: brightness(1111);
}
.faq-box .accordion .accordion-item .accordion-button:not(.collapsed) img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq-box .accordion .accordion-item .accordion-body {
  margin: 20px 0 0;
  padding: 0;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  max-width: 506px;
}

.faq-img {
  position: relative;
  padding: 89px 55px 87px;
  margin-left: 106px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-img {
    padding: 50px;
    margin: 0;
  }
}
.faq-img {
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-img {
    margin-bottom: 50px;
  }
}
.faq-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/feature/feature3-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  z-index: -1;
}
.faq-img img {
  width: 100%;
}

.faq-info {
  position: relative;
  border: 1px solid var(--border-color2);
  padding: 10px;
  border-radius: 14px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .faq-info {
    border: 0;
    padding: 0;
  }
}

.footer-style1 {
  position: relative;
  background-image: url(../images/bg/footer1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-top-content {
  position: relative;
}
.footer-top-content .sec-title {
  position: relative;
  max-width: 580px;
}
.footer-top-content .sec-title p {
  margin-bottom: 29px;
}

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

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

.footer-logo {
  position: relative;
  margin-bottom: 30px;
}

.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 a {
  width: 44px;
  height: 44px;
  line-height: 40px;
  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: invert(1);
          filter: invert(1);
}
.social-link2 li a img {
  width: 20px;
}

.widget-title {
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}

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

.footer-content {
  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;
  padding-left: 62px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .footer-content {
    padding-left: 0;
  }
}
.footer-content {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .footer-content {
    display: block;
  }
}

.widget-area {
  position: relative;
  background-color: var(--white-color);
  padding: 70px 74px 47px;
  border-radius: 14px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .widget-area {
    padding: 70px 34px 47px;
  }
}

.copyright-area {
  position: relative;
}
.copyright-area p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
}

.terms-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;
  /* Small devices */
}
@media (max-width: 767px) {
  .terms-list {
    margin-top: 10px;
  }
}
.terms-list {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .terms-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.terms-list li {
  margin-right: 51px;
}
.terms-list li:last-child {
  margin: 0;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .terms-list li:last-child {
    margin-top: 10px;
  }
}
.terms-list li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--body-color);
}
.terms-list li a:hover {
  color: var(--theme-color);
}

.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;
  margin-top: 63px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* Large devices */
}
@media (max-width: 1199px) {
  .footer-bottom {
    margin-top: 20px;
  }
}

.main-sec3 {
  position: relative;
}
.main-sec3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1050px;
  background-color: var(--bg-color);
}

.page-banner {
  position: relative;
  padding: 213px 0 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-banner {
    padding: 160px 0 0;
  }
}

.page-content {
  position: relative;
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 69px;
}
.page-content .title {
  font-size: 48px;
  line-height: 55px;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 31px;
  /* Small devices */
}
@media (max-width: 767px) {
  .page-content .title {
    font-size: 43px;
    line-height: 48px;
  }
}
.page-content .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .page-content .title {
    margin-bottom: 20px;
    font-size: 35px;
    line-height: 41px;
  }
}
.page-content p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}

.bread-crumbs {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 11px;
  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 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--title-color);
  /* Small devices */
}
@media (max-width: 767px) {
  .bread-crumbs li {
    font-size: 18px;
    line-height: 28px;
  }
}
.bread-crumbs li a {
  color: var(--title-color);
}
.bread-crumbs li a:hover {
  color: var(--theme-color);
}
.bread-crumbs li:nth-child(2) {
  margin: 0 6px;
}

.funfact-sec {
  position: relative;
}

.display-none {
  display: none;
}

.funfact-info {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 14px;
}

.funfact-block {
  position: relative;
  padding: 53px 51px 61px;
  height: 100%;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .funfact-block {
    padding: 41px 32px 39px;
  }
}
.funfact-block {
  /* Small devices */
}
@media (max-width: 767px) {
  .funfact-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  }
}
.funfact-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1019607843);
  /* Small devices */
}
@media (max-width: 767px) {
  .funfact-block::before {
    display: none;
  }
}
.funfact-block .counter-box {
  position: relative;
  font-size: 65px;
  line-height: 75px;
  font-weight: 700;
  color: var(--title-color);
  font-family: var(--title-font);
  margin-bottom: 82px;
}
.funfact-block p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .funfact-block p {
    font-size: 16px;
    line-height: 24px;
  }
}

.funfact-block.v2 {
  border: 0;
}
.funfact-block.v2::before {
  display: none;
}

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

.feature-content6 {
  position: relative;
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-content6 {
    margin-bottom: 50px;
  }
}
.feature-content6 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-content6 {
    margin-bottom: 20px;
  }
}
.feature-content6 .sec-title {
  text-align: left;
  margin: 0 0 48px;
  max-width: 522px;
}

.feature-block6 {
  position: relative;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-block6 {
    margin-bottom: 30px;
  }
}
.feature-block6 .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 7px;
}
.feature-block6 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 245px;
}

.feature-icon6 {
  width: 50px;
  height: 50px;
  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;
  text-align: center;
  border-radius: 10px;
  background-color: var(--theme-color);
  margin-bottom: 28px;
}

.feature-img6 {
  position: relative;
  text-align: center;
  padding: 73px 65px;
  border-radius: 14px;
  z-index: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-img6 {
    padding: 50px;
  }
}
.feature-img6 {
  /* Medium devices */
}
@media (max-width: 992px) {
  .feature-img6 {
    margin-bottom: 50px;
  }
}
.feature-img6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/feature/feature3-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 14px;
  z-index: -1;
}
.feature-img6 img {
  width: 100%;
}

.main-sec4 {
  position: relative;
}
.main-sec4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 850px;
  background-color: var(--bg-color);
}

.page-banner2 {
  position: relative;
  padding: 213px 0 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-banner2 {
    padding: 160px 0 0;
  }
}

.page-content2 {
  position: relative;
  text-align: center;
  max-width: 947px;
  margin: 0 auto;
  margin-bottom: 69px;
}
.page-content2 .title {
  font-size: 48px;
  line-height: 55px;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 31px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-content2 .title {
    font-size: 39px;
    line-height: 49px;
  }
}
.page-content2 .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .page-content2 .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.page-content2 .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .page-content2 .title {
    font-size: 25px;
    line-height: 35px;
  }
}
.page-content2 p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}

.page-img {
  /* Medium devices */
}
@media (max-width: 992px) {
  .page-img {
    margin-bottom: 20px;
  }
}
.page-img img {
  width: 100%;
}

.bread-crumbs.v2 li {
  position: relative;
  font-weight: 400;
}
.bread-crumbs.v2 li:hover a {
  color: var(--title-color);
}
.bread-crumbs.v2 li:first-child {
  margin-right: -5px;
}
.bread-crumbs.v2 li:nth-child(2), .bread-crumbs.v2 li:nth-child(4) {
  padding: 0 20px;
}
.bread-crumbs.v2 li:nth-child(2)::before, .bread-crumbs.v2 li:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--title-color);
  border-radius: 50%;
}
.bread-crumbs.v2 li a {
  color: #696969;
}

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

.page-content2.v2 {
  max-width: 913px;
}

.who-we-are-sec {
  position: relative;
}

.who-we-are-info {
  position: relative;
}
.who-we-are-info .sec-title {
  text-align: left;
  margin: 0;
  max-width: unset;
}
.who-we-are-info .sec-title .title {
  /* Large devices */
}
@media (max-width: 1199px) {
  .who-we-are-info .sec-title .title {
    font-size: 41px;
    line-height: 50px;
  }
}
.who-we-are-info .sec-title .title {
  /* Medium devices */
}
@media (max-width: 992px) {
  .who-we-are-info .sec-title .title {
    margin-bottom: 30px;
  }
}
.who-we-are-info .sec-title .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .who-we-are-info .sec-title .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.who-we-are-info .sec-title .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .who-we-are-info .sec-title .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.who-we-are-content {
  position: relative;
  padding-left: 112px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .who-we-are-content {
    padding-left: 0;
  }
}
.who-we-are-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 0 0 30px;
}

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

.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;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
  visibility: hidden;
}
.social-link3 li {
  margin-right: 10px;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-link3 li:last-child {
  margin-right: 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;
  line-height: 36px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
  display: inline-block;
}
.social-link3 li a:hover {
  background-color: var(--theme-color);
}
.social-link3 li a:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.social-link3 li a img {
  width: 16px;
}

.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;
  text-align: center;
  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;
}

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

.goal-content {
  position: relative;
  padding-right: 80px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .goal-content {
    padding-right: 0;
  }
}
.goal-content {
  /* Medium devices */
}
@media (max-width: 992px) {
  .goal-content {
    margin-bottom: 50px;
  }
}
.goal-content .sec-title {
  text-align: left;
  max-width: unset;
  margin-bottom: 27px;
}

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

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

.feature-sec7 {
  position: relative;
}

.feature-card7 {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--border-color2);
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 100px;
}
.feature-card7::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 273px;
  height: 276px;
  background-image: url(../images/event/layer1-2.png);
  z-index: -1;
}

.feature-img7 {
  position: absolute;
  top: 10px;
  left: 10px;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-img7 {
    position: static;
  }
}
.feature-img7 img {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-img7 img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
}

.feature-content7 {
  position: relative;
  padding: 38px 40px 42px 300px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .feature-content7 {
    padding: 38px 10px 42px 274px;
  }
}
.feature-content7 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content7 {
    padding: 52px 10px 55px 274px;
  }
}
.feature-content7 {
  /* Small devices */
}
@media (max-width: 767px) {
  .feature-content7 {
    padding: 28px 10px 28px 274px;
  }
}
.feature-content7 {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .feature-content7 {
    padding: 30px 20px;
  }
}
.feature-content7 .name {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 3px;
}
.feature-content7 .designation {
  position: relative;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 22px;
}
.feature-content7 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 53px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .feature-content7 p {
    max-width: 503px;
  }
}

.feature-pagination .swiper-pagination-bullet {
  position: relative;
  background: rgba(255, 103, 51, 0.3019607843);
  width: 7px;
  height: 7px;
  opacity: unset;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 10px !important;
}
.feature-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 21px;
  height: 21px;
  border: 1px solid transparent;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.feature-pagination .swiper-pagination-bullet:hover {
  background-color: var(--theme-color);
}
.feature-pagination .swiper-pagination-bullet:hover::before {
  border-color: var(--theme-color);
}
.feature-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme-color);
}
.feature-pagination .swiper-pagination-bullet-active::before {
  border-color: var(--theme-color);
}

.main-sec5 {
  position: relative;
}
.main-sec5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
}

.contact-sec {
  position: relative;
}

.contact-content {
  position: relative;
  padding-right: 40px;
  /* Medium devices */
}
@media (max-width: 992px) {
  .contact-content {
    margin-bottom: 50px;
  }
}
.contact-content .title {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 55px;
  font-weight: 700;
  /* Medium devices */
}
@media (max-width: 992px) {
  .contact-content .title {
    margin-bottom: 30px;
  }
}
.contact-content .title {
  /* Extra small devices */
}
@media (max-width: 576px) {
  .contact-content .title {
    font-size: 29px;
    line-height: 39px;
  }
}
.contact-content .title {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .contact-content .title {
    font-size: 25px;
    line-height: 34px;
  }
}

.contact-info {
  position: relative;
  border: 1px solid #E7E8EA;
  border-radius: 14px;
  padding: 62px 70px 70px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .contact-info {
    padding: 50px 50px 50px;
  }
}
.contact-info {
  /* Small devices */
}
@media (max-width: 767px) {
  .contact-info {
    padding: 30px;
  }
}

.contacts {
  position: relative;
}
.contacts .gmail,
.contacts .nmbr,
.contacts .location {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  display: block;
  color: var(--title-color);
  max-width: 247px;
  margin-bottom: 15px;
}
.contacts .gmail:hover,
.contacts .nmbr:hover,
.contacts .location:hover {
  text-decoration: underline;
}
.contacts .location {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-info-one {
  position: relative;
  margin-left: 68px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .contact-info-one {
    margin: 0;
  }
}
.contact-info-one .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 6px;
}
.contact-info-one p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
  font-weight: 400;
}

.contact-form {
  position: relative;
  margin-top: 31px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  height: 56px;
  border: 1px solid #E7E8EA;
  border-radius: 28px;
  padding: 20px 30px;
  color: #a4a4a4;
}
.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: 150px;
}
.contact-form .form-group .btn-style1 {
  padding: 5px 5px 5px 71px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .contact-form .form-group .btn-style1 {
    padding: 5px 5px 5px 25px;
  }
}
.contact-form .form-group .btn-style1 span {
  margin-left: 51px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .contact-form .form-group .btn-style1 span {
    margin-left: 11px;
  }
}

.googel-map {
  margin-top: 70px;
}
.googel-map iframe {
  height: 550px;
  border-radius: 14px;
}

.blog-sec {
  position: relative;
}

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

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

.blog-content {
  position: relative;
  margin-top: 30px;
  max-width: 521px;
}
.blog-content .title {
  margin-bottom: 20px;
}
.blog-content .title a {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--title-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content .title a {
    font-size: 27px;
    line-height: 35px;
  }
}
.blog-content .title a {
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-content .title a {
    font-size: 24px;
    line-height: 35px;
  }
}
.blog-content .title a:hover {
  text-decoration: underline;
}
.blog-content p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

.blog-meta {
  position: relative;
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-meta li {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin-right: 31px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-meta li {
    margin-right: 23px;
  }
}
.blog-meta li:last-child {
  margin-right: 0;
}
.blog-meta li a {
  background-color: var(--bg-color);
  height: 34px;
  line-height: 34px;
  color: var(--theme-color);
  display: inline-block;
  padding: 0 20px;
  border-radius: 14px;
}

.blog-card-two {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 30px;
}

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

.blog-content2 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 32px 47px 27px 321px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .blog-content2 {
    padding: 32px 7px 27px 298px;
  }
}
.blog-content2 {
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content2 {
    position: static;
    padding: 20px;
  }
}
.blog-content2 .title {
  margin-bottom: 15px;
}
.blog-content2 .title a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: -0.03em;
  color: var(--title-color);
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-content2 .title a {
    max-width: 300px;
  }
}
.blog-content2 .title a {
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-content2 .title a {
    max-width: 100%;
  }
}
.blog-content2 .title a:hover {
  text-decoration: underline;
}
.blog-content2 p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}
.blog-content2 .btn-style1 {
  height: 44px;
  line-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  background-color: unset;
  color: var(--body-color);
}
.blog-content2 .btn-style1:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.blog-content2 .btn-style1:hover span {
  background-color: var(--white-color);
}
.blog-content2 .btn-style1:hover span img {
  -webkit-filter: blur(0);
          filter: blur(0);
}
.blog-content2 .btn-style1 span {
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: var(--theme-color);
}
.blog-content2 .btn-style1 span img {
  width: 14px;
  -webkit-filter: brightness(111);
          filter: brightness(111);
}

.blog-pagination {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 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%;
}
.blog-pagination .page-item .page-link:hover {
  background-color: var(--theme-color);
  border-color: transparent;
  color: var(--white-color);
}
.blog-pagination .page-item .page-link:hover img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}

.blog-img2 {
  position: relative;
  z-index: 9;
  display: inline-block;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-img2 {
    width: 100%;
  }
}
.blog-img2 a {
  display: inline-block;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-img2 a {
    width: 100%;
  }
  .blog-img2 a img {
    width: 100%;
    height: 319px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
}
.blog-img2 a {
  /* Medium devices */
}
@media (max-width: 992px) {
  .blog-img2 a img {
    height: 250px;
  }
}

.main-sec6 {
  position: relative;
  background-color: var(--bg-color);
}

.pricing-sec2 {
  position: relative;
}
.pricing-sec2 .container-fluid {
  max-width: 1526px;
  margin: 0 auto;
  padding: 0 15px;
}
.pricing-sec2 .row {
  margin-bottom: -30px;
}
.pricing-sec2 .sec-title {
  max-width: 560px;
}

.pricing-info {
  position: relative;
  background-color: var(--white-color);
  border-radius: 14px;
  padding: 100px 133px;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .pricing-info {
    padding: 100px 50px;
  }
}
.pricing-info {
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .pricing-info {
    padding: 100px 18px;
  }
}
.pricing-info {
  /* Medium devices */
}
@media (max-width: 992px) {
  .pricing-info {
    padding: 80px 18px;
  }
}

.faq-sec2 {
  position: relative;
}
.faq-sec2 .sec-title p {
  margin-bottom: 28px;
  padding-right: 60px;
}
.faq-sec2 .faq-content {
  margin: 0;
  /* Medium devices */
}
@media (max-width: 992px) {
  .faq-sec2 .faq-content {
    margin-bottom: 50px;
  }
}

.blog-detail-sec {
  position: relative;
}

.blog-detail-content {
  position: relative;
}
.blog-detail-content .blog-img {
  margin-bottom: 20px;
}
.blog-detail-content .paragraph {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  font-weight: 400;
}

.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: 20px;
  color: var(--white-color);
  /* Extra small devices */
}
@media (max-width: 416px) {
  .testimonial p {
    font-size: 16px;
    line-height: 29px;
  }
}
.testimonial .name {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  color: var(--white-color);
  display: inline-block;
  font-style: normal;
  font-family: var(--title-font);
  padding-left: 46px;
}
.testimonial .name::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--white-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%;
}

.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 5px;
  /* 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: 34px;
  background-color: var(--bg-color);
  border-radius: 50px;
  display: inline-block;
}
.tag-list li a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.auther-bio {
  position: relative;
  margin-top: 50px;
  padding: 30px 50px;
  background-color: var(--bg-color);
  border-radius: 14px;
  /* Small devices */
}
@media (max-width: 767px) {
  .auther-bio {
    padding: 30px 32px;
  }
}
.auther-bio .social-link2 li a {
  width: 38px;
  height: 38px;
  line-height: 34px;
}
.auther-bio .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;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 70px;
  padding-bottom: 50px;
}

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

.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;
}
.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;
  /* Extra small devices */
}
@media (max-width: 576px) {
  .comments-area {
    padding-top: 31px;
    margin: 50px 0 42px;
  }
}

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

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

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

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

.helpdesk-home.active {
  background-color: var(--title-color);
}
.helpdesk-home.active h1,
.helpdesk-home.active h2,
.helpdesk-home.active h3,
.helpdesk-home.active h4,
.helpdesk-home.active h5,
.helpdesk-home.active h6,
.helpdesk-home.active small,
.helpdesk-home.active span,
.helpdesk-home.active sub {
  color: var(--white-color);
}
.helpdesk-home.active p,
.helpdesk-home.active .sub-title,
.helpdesk-home.active li,
.helpdesk-home.active .designation {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active #preloader {
  background-color: var(--title-color);
}
.helpdesk-home.active .btn-style1:hover {
  background-color: var(--white-color) !important;
  color: var(--title-color) !important;
}
.helpdesk-home.active .btn-style1:hover span {
  background-color: var(--title-color);
}
.helpdesk-home.active .btn-style1:hover span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active .main-menu11 ul li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .main-menu11 ul li a:hover {
  color: var(--theme-color);
}
.helpdesk-home.active .main-sec {
  background-color: var(--title-color);
}
.helpdesk-home.active .light {
  display: none;
}
.helpdesk-home.active .dark {
  display: inline-block;
}
.helpdesk-home.active .header-main {
  /* Medium devices */
}
@media (max-width: 992px) {
  .helpdesk-home.active .header-main {
    background-color: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.0784313725);
  }
  .helpdesk-home.active .header-main .header-bottom {
    border: 0;
  }
}
.helpdesk-home.active .header-btn .search-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active .hamburger-btn span {
  background-color: var(--white-color);
}
.helpdesk-home.active .mobile-menu {
  background-color: #090D16;
}
.helpdesk-home.active .mobile-menu .main-menu11 li {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .mobile-menu .main-menu11 li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .close-btn img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active .header-bottom,
.helpdesk-home.active .feature-block,
.helpdesk-home.active .feature-card2,
.helpdesk-home.active .feature-list2 {
  background-color: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .hero-content .sub-title {
  color: var(--white-color);
}
.helpdesk-home.active .price-card.v2 .price-list li {
  color: var(--white-color);
}
.helpdesk-home.active .footer-link li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .footer-link li a:hover {
  color: var(--theme-color);
}
.helpdesk-home.active .logo {
  display: none;
}
.helpdesk-home.active .dark-logo {
  display: inline-block;
}
.helpdesk-home.active .header-main.sticky {
  background-color: unset;
  /* Medium devices */
}
@media (max-width: 992px) {
  .helpdesk-home.active .header-main.sticky {
    background-color: #0D0D0D;
  }
}
.helpdesk-home.active .brand-content {
  background-color: var(--title-color);
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .feature-sec2 {
  background-image: unset;
  padding: 0 !important;
}
.helpdesk-home.active .feature-card2-one,
.helpdesk-home.active .feature-img3 {
  background-color: var(--title-color);
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .feature-content3 .accordion .accordion-item {
  background-color: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .feature-content3 .accordion .accordion-item .accordion-button {
  color: var(--white-color);
}
.helpdesk-home.active .feature-content3 .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .feature-img3,
.helpdesk-home.active .feature-img4,
.helpdesk-home.active .faq-img,
.helpdesk-home.active .feature-img6 {
  z-index: 0;
}
.helpdesk-home.active .feature-img3::before,
.helpdesk-home.active .feature-img4::before,
.helpdesk-home.active .faq-img::before,
.helpdesk-home.active .feature-img6::before {
  background-image: url(../images/feature/feature3-2-dark.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.helpdesk-home.active .faq-img::before,
.helpdesk-home.active .feature-img6::before {
  background-size: cover;
}
.helpdesk-home.active .feature-sec4 {
  padding-bottom: 0 !important;
}
.helpdesk-home.active .feature-sec5 {
  background-color: unset;
  padding-bottom: 0 !important;
}
.helpdesk-home.active .feature-card5,
.helpdesk-home.active .price-card {
  background-color: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .price-card .btn-style1 {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
  color: var(--white-color);
}
.helpdesk-home.active .price-card.v2 .btn-style1 {
  background-color: var(--theme-color);
}
.helpdesk-home.active .faq-info,
.helpdesk-home.active .widget-area {
  background-color: #0D0D0D;
  border-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .faq-box .accordion .accordion-item {
  background-color: var(--title-color);
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .faq-box .accordion .accordion-item .accordion-button {
  color: var(--white-color);
}
.helpdesk-home.active .faq-box .accordion .accordion-item .accordion-body {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .footer-style1 {
  background-image: unset;
  padding-top: 0 !important;
}
.helpdesk-home.active .footer-style1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 530px;
  background-image: url(../images/bg/layer1-3.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.helpdesk-home.active .social-link2 li a {
  border-color: rgba(255, 255, 255, 0.0784313725);
  background-color: rgba(255, 255, 255, 0.0509803922);
}
.helpdesk-home.active .social-link2 li a:hover {
  background-color: var(--theme-color);
  border-color: transparent;
}
.helpdesk-home.active .social-link2 li a img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active .terms-list li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .terms-list li a:hover {
  color: var(--theme-color);
}
.helpdesk-home.active .main-sec4::before,
.helpdesk-home.active .main-sec3::before {
  background-color: unset;
}
.helpdesk-home.active .bread-crumbs li a {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .bread-crumbs li a:hover {
  color: var(--theme-color);
}
.helpdesk-home.active .brand-content2 {
  background-color: #0D0D0D;
  border-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .brand-img2 a img:hover {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
.helpdesk-home.active .team-content .name a {
  color: var(--white-color);
}
.helpdesk-home.active .goal-list li img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active .feature-card7,
.helpdesk-home.active .pricing-info,
.helpdesk-home.active .blog-card-two {
  background-color: #0D0D0D;
  border: 1px solid rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .funfact-info {
  border-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .funfact-block::before {
  background-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .funfact-block .counter-box {
  color: var(--white-color);
}
.helpdesk-home.active .main-sec6 {
  background-color: unset;
  padding-bottom: 0 !important;
}
.helpdesk-home.active .faq-sec2 .accordion-item {
  background-color: #0D0D0D !important;
}
.helpdesk-home.active .main-sec5 {
  padding: 0 !important;
}
.helpdesk-home.active .main-sec5::before {
  background-color: unset;
}
.helpdesk-home.active .blog-content .title a {
  color: var(--white-color);
}
.helpdesk-home.active .blog-content2 {
  border-radius: 14px;
  padding-bottom: 36px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .helpdesk-home.active .blog-content2 {
    padding-bottom: 20px;
  }
}
.helpdesk-home.active .blog-content2 .title a {
  color: var(--white-color);
}
.helpdesk-home.active .blog-content2 .btn-style1 {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .blog-content2 .btn-style1:hover {
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
}
.helpdesk-home.active .blog-content2 .btn-style1:hover span {
  background-color: var(--white-color);
}
.helpdesk-home.active .blog-content2 .btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.helpdesk-home.active .blog-meta2 li a {
  color: var(--white-color);
}
.helpdesk-home.active .blog-pagination .page-item .page-link {
  background-color: unset;
  border-color: rgba(255, 255, 255, 0.0784313725);
  color: var(--white-color);
}
.helpdesk-home.active .blog-pagination .page-item .page-link:hover {
  background-color: var(--theme-color);
}
.helpdesk-home.active .blog-pagination .page-item .page-link img {
  -webkit-filter: brightness(10);
          filter: brightness(10);
}
.helpdesk-home.active .contact-info {
  border-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .contact-form .form-group input,
.helpdesk-home.active .contact-form .form-group textarea,
.helpdesk-home.active .contact-form .form-group select {
  background-color: #0D0D0D;
  border-color: rgba(255, 255, 255, 0.0784313725);
}
.helpdesk-home.active .testimonial {
  background: rgba(255, 255, 255, 0.05);
}
.helpdesk-home.active .testimonial img {
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .testimonial p {
  color: var(--white-color);
}
.helpdesk-home.active .testimonial .name {
  color: #fffff7;
}
.helpdesk-home.active .testimonial .name::before {
  background-color: var(--white-color);
}
.helpdesk-home.active .tag-list li span {
  color: #a6a6a6;
}
.helpdesk-home.active .tag-list li a {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: var(--white-color);
  line-height: 32px;
}
.helpdesk-home.active .tag-list li a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.helpdesk-home.active .auther-bio,
.helpdesk-home.active .side-widget {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .comment-form2 .form-group input,
.helpdesk-home.active .comment-form3 .form-group input {
  background-color: rgba(255, 255, 255, 0.0509803922);
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .side-bar-title {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .side-bar-title::before {
  background-color: var(--white-color);
}
.helpdesk-home.active .categorie-widegt li::before {
  background-color: var(--white-color);
}
.helpdesk-home.active .categorie-widegt li a {
  color: var(--white-color);
}
.helpdesk-home.active .nav-text span {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .comments-area {
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .comment-meta .comment-time {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .comment-reply-link {
  color: var(--white-color);
}
.helpdesk-home.active .comment-reply-link:hover {
  color: #9ca6a6;
}
.helpdesk-home.active .comment-reply-link:hover img {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.helpdesk-home.active .comment-reply-link img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.helpdesk-home.active .comment-form .form-group input,
.helpdesk-home.active .comment-form .form-group select,
.helpdesk-home.active .comment-form .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .comment-form .form-group input::-webkit-input-placeholder, .helpdesk-home.active .comment-form .form-group select::-webkit-input-placeholder, .helpdesk-home.active .comment-form .form-group textarea::-webkit-input-placeholder {
  color: #686768;
}
.helpdesk-home.active .comment-form .form-group input::-moz-placeholder, .helpdesk-home.active .comment-form .form-group select::-moz-placeholder, .helpdesk-home.active .comment-form .form-group textarea::-moz-placeholder {
  color: #686768;
}
.helpdesk-home.active .comment-form .form-group input:-ms-input-placeholder, .helpdesk-home.active .comment-form .form-group select:-ms-input-placeholder, .helpdesk-home.active .comment-form .form-group textarea:-ms-input-placeholder {
  color: #686768;
}
.helpdesk-home.active .comment-form .form-group input::-ms-input-placeholder, .helpdesk-home.active .comment-form .form-group select::-ms-input-placeholder, .helpdesk-home.active .comment-form .form-group textarea::-ms-input-placeholder {
  color: #686768;
}
.helpdesk-home.active .comment-form .form-group input::placeholder,
.helpdesk-home.active .comment-form .form-group select::placeholder,
.helpdesk-home.active .comment-form .form-group textarea::placeholder {
  color: #686768;
}
.helpdesk-home.active .comment-form .radio-btn input {
  background-color: transparent;
}
.helpdesk-home.active .comment-form .radio-btn label {
  color: rgba(255, 255, 255, 0.6509803922);
}
.helpdesk-home.active .radio-btn input[type=radio] {
  display: none;
}
.helpdesk-home.active .radio-btn label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: #fff;
}
.helpdesk-home.active .radio-btn label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #95979a;
  background: transparent;
}
.helpdesk-home.active .radio-btn input[type=radio]:checked + label::before {
  background: var(--white-color);
}
.helpdesk-home.active .news-content .date {
  color: #a1aba1;
}
.helpdesk-home.active .news-content .title a {
  color: var(--white-color);
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1 {
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: var(--title-color);
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1:hover {
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1:hover span {
  background-color: var(--white-color);
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1:hover span img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1 span {
  background-color: var(--theme-color);
}
.helpdesk-home.active .comment-form3 .form-group .btn-style1 span img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.helpdesk-home.active #scrollTopBtn {
  background: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .bread-crumbs.v2 li {
  color: var(--white-color);
}
.helpdesk-home.active .bread-crumbs.v2 li::before {
  background-color: var(--white-color);
}
.helpdesk-home.active .bread-crumbs2 {
  background-color: rgba(9, 13, 22, 0.631372549);
  border-color: rgba(255, 255, 255, 0.1019607843);
}
.helpdesk-home.active .bread-crumbs2 li a {
  color: var(--white-color);
}

.footer-simple {
  background-image: url(../images/bg/footer1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-simple .footer-simple-content {
  text-align: center;
}

.footer-simple .footer-simple-content .sec-title {
  max-width: 760px;
  margin: 0 auto;
}

.footer-simple .footer-simple-content .sec-title .sub-title {
  background-color: var(--white-color);
}

.footer-simple .footer-simple-content .sec-title p {
  margin-bottom: 40px;
}

.footer-simple .footer-simple-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-simple .footer-simple-btn .btn-style1.v2 {
  margin-left: 10px;
  color: var(--title-color);
}

.footer-simple .footer-simple-btn .btn-style1.v2 span {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
}

.footer-simple .footer-simple-btn .btn-style1.v2 span img {
  filter: brightness(0);
}

.footer-simple .footer-simple-btn .btn-style1.v2:hover {
  color: var(--white-color);
}

.footer-simple .footer-simple-btn .btn-style1.v2:hover span {
  background-color: var(--white-color);
  border-color: transparent;
}

.footer-simple .footer-simple-shade {
  position: relative;
}

.footer-simple .footer-simple-shade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
  background-image: radial-gradient(at center center, rgba(255, 101, 43, 0.3) 0%, rgba(255, 101, 43, 0) 80%);
}

.footer-simple .footer-simple-bottom {
  padding: 57px 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-simple .footer-simple-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.footer-simple .footer-simple-links li {
  margin-right: 30px;
}

.footer-simple .footer-simple-links li:last-child {
  margin-right: 0;
}

.footer-simple .footer-simple-links li a {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--title-color);
}

.footer-simple .footer-simple-links li a:hover {
  color: var(--theme-color);
}

@media (max-width: 767px) {
  .footer-simple .copyright-area {
    margin-top: 20px;
  }
}

@media (max-width: 416px) {
  .footer-simple .footer-simple-btn .btn-style1.v2 {
    margin: 10px 0 0;
  }

  .footer-simple .footer-simple-links {
    flex-wrap: wrap;
  }

  .footer-simple .footer-simple-links li {
    margin-bottom: 10px;
  }
}

/* Remove decorative wavy background art */
.main-sec::before,
.feature-sec2,
.brand-content::before,
.helpdesk-home.active .footer-style1::before {
  background-image: none !important;
}

.footer-style1,
.footer-simple {
  background-image: none !important;
  background-color: var(--bg-color);
}
