@charset "UTF-8";
/*-----------------------------------------------------------------
Theme Name: Befox - Digital Agency & Creative Portfolio
Author: preoiT
Author URI: https://themeforest.net/user/preoit
Version: 1.0.0 
Description: Befox - Digital Agency & Creative Portfolio Html Template  <

/* ==========================================================================
   CSS TABLE OF CONTENTS
   ==========================================================================

   01. Base
       01. Mixins
       02. Variables
       03. Typography

   02. Components
       04. Buttons
       05. Gutter
       06. Container
       07. Animation
       08. Helping
       09. MeanMenu
       10. Preloader
       11. Title
       12. Common
       13. Text Slider
       14. Accordion
       15. Form
       16. Card
       17. Spacing

   03. Layout
       18. Header
       19. Footer

   04. Sections
       20. Contact
       21. Intro
       22. About
       23. Blog
       24. Feature
       25. FAQ
       26. Testimonials
       27. Brand
       28. Gallery
       29. Case Study
       30. How It Work
       31. Why Choose Us
       32. Team
       33. Pricing
       34. Process
       35. CTA
       36. Play Store
       37. Interactive
       38. Newsletter
       39. Broadcom
       40. Awards

   05. Pages
       41. Blog Page
       42. Project Page
       43. Services Page
       44. Page Details
       45. Auth
       46. Error

   ========================================================================== */
/* ==========================================================================
                                01. Base
   ========================================================================== */
/* ==========================================================================
   01. Mixins
   ========================================================================== */
/* ==========================================================================
   02. Variables
   ========================================================================== */
/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Outfit:wght@100..900&family=Phudu:wght@300..900&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #FF531F;
  --theme-2: #E85C30;
  --theme-3: #FF9D00;
  --theme-4: #C4F112;
  --theme-5: #0E0E0E;
  --theme-6: #1b1b1b;
  --header-color: #241442;
  --title-color: #131313;
  --text-color: #525252;
  --text-color-2: #555;
  --btn-text: #252525;
  --pra-text: #464646;
  --orange: #F74F22;
  --gray1: #F6F8F0;
  --gray2: #999;
  --gray3: #aaa;
  --gray4: #d9d9d9;
  --border: #D0D0D0;
  --border-2: #D4DCED;
  --bg-color: #F1F1F1;
  --bg-color-2: #F5F5F5;
  --bg-color-3: #f6f6f6;
  --border-color-1: #EBEDE2;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --font-primary: "Phudu", sans-serif;
  --font-secondary: "Funnel Display", sans-serif;
  --font-body: "Outfit", sans-serif;
  --fa: "Font Awesome 6 Pro";
}

/* ==========================================================================
   03. Typography
   ========================================================================== */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text-color);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text-color);
  outline: none;
}

input::placeholder {
  color: #767771;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  margin: 0px;
  padding: 0;
  color: var(--theme-5);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 120px;
  font-weight: 600;
  line-height: 130px;
}

h2 {
  font-size: 100px;
  font-weight: 600;
  line-height: 110px;
}

h3 {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
}

h4 {
  font-size: 52px;
  font-weight: 600;
  line-height: 62px;
}

h5 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}

h6 {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

h2 a {
  font-size: 100px;
  font-weight: 600;
  line-height: 110px;
  display: inline-block;
}
@media (max-width: 767px) {
  h2 a {
    font-size: 45px !important;
  }
}
@media (max-width: 575px) {
  h2 a {
    font-size: 28px !important;
  }
}

h3 a {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  display: inline-block;
}
@media (max-width: 767px) {
  h3 a {
    font-size: 16px;
  }
}

h4 a {
  font-size: 52px;
  font-weight: 600;
  line-height: 62px;
  display: inline-block;
}

h5 a {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  display: inline-block;
}

h6 a {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--black);
  transition: all 0.4s ease-in-out;
}
a:hover {
  color: var(--orange) !important;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

span a {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

/* ==========================================================================
                             02. Components
   ========================================================================== */
/* ==========================================================================
   04. Buttons
   ========================================================================== */
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.simple-btn .gt-btn-circle-2 {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  z-index: 1;
  border: 0;
  background: var(--black);
  border: 1px solid var(--white);
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
}
.simple-btn .gt-btn-circle-2.style-two {
  border: 0;
  border-radius: 15px;
  padding: 15px 35px;
  background: var(--theme);
  font-weight: 700;
  font-size: 16px;
  line-height: 163%;
  text-transform: uppercase;
  color: var(--white);
}
.simple-btn .gt-btn-circle-2.style-two .gt-btn-circle-dot {
  background-color: var(--black);
  z-index: 1;
}
.simple-btn .gt-btn-circle-2.style-two .gt-btn-circle-text-2 {
  position: relative;
  z-index: 2;
}
.simple-btn .gt-btn-circle-2.style-two:hover {
  background: var(--black) !important;
  border-color: transparent;
  box-shadow: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 163%;
  text-transform: uppercase;
  color: var(--white) !important;
}
.simple-btn .gt-btn-circle-2.style-two:hover .gt-btn-circle-dot {
  width: 520px;
  height: 520px;
}
.simple-btn .gt-btn-circle-2.style-three {
  border: 1px solid rgba(14, 14, 14, 0.1);
  background: var(--white);
  color: var(--black);
}
.simple-btn .gt-btn-circle-2.style-three .gt-btn-circle-dot {
  background-color: var(--theme);
}
.simple-btn .gt-btn-circle-2.style-three:hover {
  background: var(--theme) !important;
  color: var(--white) !important;
  border-color: transparent;
}
.simple-btn .gt-btn-circle-2.style-four {
  border: 0;
  border-radius: 999px;
  padding: 20px 35px;
  background: var(--theme-3);
  color: var(--black);
  font-family: var(--second-family);
  font-weight: 700;
}
.simple-btn .gt-btn-circle-2.style-four .text {
  font-size: 16px;
  line-height: 163%;
  text-transform: uppercase;
  color: inherit;
  transition: all 0.4s ease-in-out;
}
.simple-btn .gt-btn-circle-2.style-four .gt-btn-circle-dot {
  background-color: var(--black);
  z-index: 1;
}
.simple-btn .gt-btn-circle-2.style-four .gt-btn-circle-text-2 {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.simple-btn .gt-btn-circle-2.style-four .style-four-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  flex: 0 0 10px;
  transition: all 0.4s ease-in-out;
}
.simple-btn .gt-btn-circle-2.style-four:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: transparent;
}
.simple-btn .gt-btn-circle-2.style-four:hover .style-four-dot {
  background: var(--white);
}
.simple-btn .gt-btn-circle-2.style-four:hover .gt-btn-circle-dot {
  width: 620px;
  height: 620px;
}
.simple-btn .gt-btn-circle-2.no-round {
  border-radius: 6px;
  border: none;
  color: var(--white);
  font-family: var(--second-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
  display: inline-flex;
  height: 66px;
  padding: 17px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.simple-btn .gt-btn-circle-2.style-five {
  background: var(--black);
}
.simple-btn .gt-btn-circle-2:hover {
  color: var(--white) !important;
  background: var(--theme) !important;
}
.simple-btn .gt-btn-circle-2:hover .gt-btn-circle-dot {
  width: 350px;
  height: 350px;
}
.simple-btn .gt-btn-circle-2 .gt-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  line-height: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.simple-btn .gt-btn-circle-2 .gt-btn-circle-text-2 {
  display: block;
}
.simple-btn .gt-btn-circle-2 .gt-btn-circle-text-2:hover {
  color: var(--white) !important;
}

.gt-hover-btn-wrapper {
  display: inline-block;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  color: var(--theme-5);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  z-index: 1;
  width: 116px;
  height: 116px;
  border: 0;
  background: var(--white);
}
@media (max-width: 767px) {
  .gt-hover-btn-wrapper .gt-btn-circle-2 {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 500px) {
  .gt-hover-btn-wrapper .gt-btn-circle-2 {
    width: 80px;
    height: 80px;
  }
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover {
  color: var(--theme-5) !important;
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover .gt-btn-circle-dot {
  width: 320px;
  height: 320px;
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover.bg-2 {
  border: 1px solid var(--theme-2);
  background: var(--theme-2) !important;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  line-height: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot.bg-2 {
  background-color: var(--theme-2);
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2 {
  display: block;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2:hover {
  color: var(--theme-5) !important;
}

.card-btn {
  position: relative;
  z-index: 2;
  border-radius: 45px;
  border-top: 1px solid var(--theme-5);
  border-left: 1px solid var(--theme-5);
  border-bottom: 1px solid var(--theme-5);
  background: rgba(217, 217, 217, 0);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.card-btn a {
  color: var(--theme-5);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  padding: 8px 74px 8px 30px;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.card-btn .btn-cir {
  border-radius: 45px;
  border: 1px solid var(--theme-5);
  background: rgba(217, 217, 217, 0);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.card-btn .btn-cir span {
  width: 10px;
  height: 10px;
  background: var(--theme-5);
  border-radius: 100%;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.card-btn:hover {
  border-top: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  border-bottom: 1px solid var(--theme);
}
.card-btn:hover .btn-cir {
  border: 1px solid var(--theme);
}
.card-btn:hover .btn-cir span {
  background: var(--theme);
}

.arrow-big-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  overflow: visible;
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  text-transform: uppercase;
}
.arrow-big-btn.arrow-big-btn-two .arrow-big-btn-arrow,
.arrow-big-btn.arrow-big-btn-two .arrow-big-btn-pill {
  background: var(--white) !important;
}
.arrow-big-btn:hover .arrow-big-btn-arrow.arrow-big-btn-arrow-left {
  width: 66px;
  flex-basis: 66px;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.arrow-big-btn:hover .arrow-big-btn-arrow.arrow-big-btn-arrow-right {
  width: 0;
  flex-basis: 0;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
}
.arrow-big-btn .arrow-big-btn-pill,
.arrow-big-btn .arrow-big-btn-arrow {
  background: #ff9d00 !important;
  color: var(--black);
  transition: all 0.3s ease;
}
.arrow-big-btn .arrow-big-btn-pill {
  border-radius: 999px;
  padding: 17px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  white-space: nowrap;
}
.arrow-big-btn .arrow-big-btn-arrow {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.arrow-big-btn .arrow-big-btn-arrow i {
  display: inline-block;
  will-change: transform;
}
.arrow-big-btn .arrow-big-btn-arrow.arrow-big-btn-arrow-left {
  width: 0;
  flex-basis: 0;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.85);
  transition: width 0.35s ease, flex-basis 0.35s ease, margin-right 0.35s ease, opacity 0.25s ease, visibility 0.25s ease, transform 0.35s ease;
}
.arrow-big-btn .arrow-big-btn-arrow.arrow-big-btn-arrow-right {
  width: 66px;
  flex-basis: 66px;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: width 0.35s ease, flex-basis 0.35s ease, margin-left 0.35s ease, opacity 0.25s ease, visibility 0.25s ease, transform 0.35s ease;
}

.gt-hover-btn-wrapper {
  display: inline-block;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 {
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent !important;
  z-index: 1;
  width: 255px;
  height: 255px;
  border: 0;
}
@media (max-width: 767px) {
  .gt-hover-btn-wrapper .gt-btn-circle-2 {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 500px) {
  .gt-hover-btn-wrapper .gt-btn-circle-2 {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .gt-hover-btn-wrapper .gt-btn-circle-2 span {
    font-size: 12px !important;
  }
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover {
  color: var(--black) !important;
}
.gt-hover-btn-wrapper .gt-btn-circle-2:hover .gt-btn-circle-dot {
  width: 520px;
  height: 520px;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: var(--theme-4);
  line-height: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2 {
  display: block;
}
.gt-hover-btn-wrapper .gt-btn-circle-2 .gt-btn-circle-text-2:hover {
  color: var(--theme-4) !important;
}

/* ==========================================================================
   05. Gutter
   ========================================================================== */
/*----------------------------------------------
    # Gutter  style here
----------------------------------------------*/
@media (min-width: 1600px) {
  .gx-15 {
    --bs-gutter-x: 15px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-64 {
    --bs-gutter-x: 64px;
  }
  .gx-47 {
    --bs-gutter-x: 47px;
  }
  .gx-74 {
    --bs-gutter-x: 74px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-97 {
    --bs-gutter-x: 97px;
  }
  .gx-120 {
    --bs-gutter-x: 120px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-140 {
    --bs-gutter-x: 140px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
}
.gx-0 {
  --bs-gutter-x: 0px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-60 {
  --bs-gutter-y: 60px;
}

/* ==========================================================================
   06. Container
   ========================================================================== */
/*----------------------------------------------
    # Container  style here
----------------------------------------------*/
@media (min-width: 1400px) {
  .causes-wrapper.style1 .container {
    max-width: 1352px;
  }
}
@media (min-width: 1400px) {
  .about-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .service-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .brand-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .wcu-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .faq-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .blog-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1400px) {
  .footer-wrapper.style-five .container {
    max-width: 1601px;
  }
}
@media (min-width: 1600px) {
  .footer-widgets-wrapper.style1 .container {
    max-width: 1338px;
  }
}
/* ==========================================================================
   07. Animation
   ========================================================================== */
/*----------------------------------------------
    # All Animation style here
----------------------------------------------*/
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
.ripple-effect {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #F3E7E0;
  border: 1px solid var(--white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgb(255, 238, 211);
  box-shadow: 0 0 0 0 rgb(255, 217, 196);
  animation: rippleOne 2s infinite;
}
.ripple-effect .playerImg {
  width: 19px;
  height: 24px;
}

/*img-animation**********************/
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw3 {
  0% {
    stroke-dashoffset: 800;
    /* Hidden */
  }
  100% {
    stroke-dashoffset: 0;
    /* Fully visible */
  }
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drawPath {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 2s forwards;
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-fix {
  opacity: 0;
  /* Start invisible */
  animation: img-anim-tops 2s ease-out forwards;
  /* 2 seconds duration, ease-out effect */
}

@keyframes img-anim-tops {
  0% {
    opacity: 0;
    transform: translateY(30px);
    /* Start slightly below */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* End at original position */
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
.move-directions {
  -webkit-animation: move-directions 2s infinite;
  animation: move-directions 2s infinite;
}

@keyframes move-directions {
  0% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(10px);
  }
  66% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
.cir36 {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
  100% {
    width: var(--progress-width);
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation,
.play-btn:after,
.play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.wave-anim {
  width: 105px;
  height: 69px;
  background-repeat: repeat;
  background-size: auto;
  animation: wave 70s linear infinite;
}

@keyframes wave {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left -2000px;
  }
}
.fancy-animation {
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.movingCar {
  animation: movingCar 25s linear infinite;
}

@keyframes movingCar {
  0% {
    transform: translateX(0) rotateY(0deg);
  }
  50% {
    transform: translateX(calc(-100vw + 108%));
  }
  51% {
    transform: translateX(calc(-100vw + 108%)) rotateY(180deg);
  }
  100% {
    transform: translateX(0) rotateY(180deg);
  }
}
.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving2 {
  animation: moving2 8s linear infinite;
}

@keyframes moving2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.moving3 {
  animation: moving3 8s linear infinite;
}

@keyframes moving3 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bg-color-ani,
.color-animate {
  animation: bgColor 6s linear infinite;
}

@keyframes bgColor {
  0% {
    background-color: #F2BA4C;
  }
  25% {
    background-color: #81F24C;
  }
  50% {
    background-color: #41F27D;
  }
  75% {
    background-color: #0500FF;
  }
  100% {
    background-color: #F2BA4C;
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 1.3s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.spin2 {
  animation: spin2 10s linear infinite;
}

@keyframes spin2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*animation bubble****************/
.animation-bubble {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.animation-bubble div[class^=bubble-] {
  height: 1px;
  width: 1px;
  position: absolute;
  background: url(../img/shape/star.html) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .animation-bubble > :nth-child(even) {
    display: none;
  }
}
.bubble-1 {
  bottom: -5px;
  left: 68%;
  animation: bubble-animation 4.5s infinite ease-in -6.57s;
}

.bubble-2 {
  bottom: -71px;
  left: 97%;
  animation: bubble-animation 4.5s infinite ease-in -5.07s;
}

.bubble-3 {
  bottom: -71px;
  left: 43%;
  animation: bubble-animation 4.5s infinite ease-in -6.73s;
}

.bubble-4 {
  bottom: -3.8px;
  left: 82%;
  animation: bubble-animation 4.5s infinite ease-in -4.04s;
}

.bubble-5 {
  bottom: -73.4px;
  left: 29%;
  animation: bubble-animation 4.5s infinite ease-in -3.11s;
}

.bubble-6 {
  bottom: -71px;
  left: 41%;
  animation: bubble-animation 4.5s infinite ease-in -5.95s;
}

.bubble-7 {
  bottom: -79.4px;
  left: 14%;
  animation: bubble-animation 4.5s infinite ease-in -3.68s;
}

.bubble-8 {
  bottom: -115.4px;
  left: 90%;
  animation: bubble-animation 4.5s infinite ease-in -3.89s;
}

.bubble-9 {
  bottom: -44.6px;
  left: 33%;
  animation: bubble-animation 4.5s infinite ease-in -1.09s;
}

.bubble-10 {
  bottom: -6.2px;
  left: 59%;
  animation: bubble-animation 4.5s infinite ease-in -0.96s;
}

@keyframes bubble-animation {
  0% {
    transform: translate3d(-50%, 0, 0);
    height: 1px;
    width: 1px;
  }
  100% {
    transform: translate3d(-50%, -280px, 0);
    height: 30px;
    width: 30px;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes icon-anim {
  0% {
    top: 26px;
    right: 90px;
  }
  25% {
    top: 86px;
    right: 110px;
  }
  100% {
    top: 26px;
    right: 90px;
  }
}
.img-shine {
  position: relative;
}

.img-shine:after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-20deg);
}

.img-shine:hover:after {
  animation: imgShine 1s;
}

@keyframes imgShine {
  100% {
    left: 125%;
  }
}
.reveal {
  position: relative;
  display: -ms-inline-flexbox;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: left;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.splt-txt .whitespace {
  width: 8px;
}
.splt-txt.animated .char {
  -webkit-animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeInRight 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleAnimation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.scalePause {
  animation-duration: 2.5s;
}

.fadein,
.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.swiper-slide-active .fadein {
  --animation-name: fadein;
}

.swiper-slide-active .scalein {
  --animation-name: scalein;
}

.swiper-slide-active .slidetopleft {
  --animation-name: slidetopleft;
}

.swiper-slide-active .slidebottomright {
  --animation-name: slidebottomright;
}

.swiper-slide-active .slideinleft {
  --animation-name: slideinleft;
}

.scalePause {
  --animation-name: scalePause;
}

.swiper-slide-active .slideinright {
  --animation-name: slideinright;
}

.swiper-slide-active .slideinup {
  --animation-name: slideinup;
}

.swiper-slide-active .slideindown {
  --animation-name: slideindown;
}

.swiper-slide-active .rollinleft {
  --animation-name: rollinleft;
}

.swiper-slide-active .rollinright {
  --animation-name: rollinright;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scalein {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(180px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(120px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes scalePause {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  75% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}

.cwFadeInUp {
  opacity: 0;
  animation: cwFadeInUp 2s ease-out forwards;
}

@keyframes dash-3 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 10px 0;
  }
}
@keyframes dash-4 {
  from {
    background-position: 10px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes dash-vertical {
  from {
    background-position: 0 10px;
  }
  to {
    background-position: 0 0;
  }
}
.shape-move-ltr {
  position: relative;
  animation: moveLeftRight 3s ease-in-out infinite alternate;
}

@keyframes moveLeftRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(200px);
  }
}
.tp-image-distortion {
  position: relative;
  overflow: hidden;
}

.tp-image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  display: block;
}

.hover-move-img.thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.hover-move-img.thumb img {
  width: 100%;
  border-radius: 10px;
}
.hover-move-img.thumb .thumb-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  transition: all 0.5s ease-in-out;
  background-size: cover;
}
.hover-move-img.thumb:hover img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.hover-move-img.thumb:hover img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}

@keyframes introShapeFloat3 {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
}
@keyframes introShapePulse3 {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.14));
  }
}
.intro-area .intro-wrapper.style-two .intro-shape {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
  transform-origin: center center;
  will-change: transform;
}
.intro-area .intro-wrapper.style-two .intro-shape img {
  display: block;
}
.intro-area .intro-wrapper.style-three .intro-shape {
  animation: introShapeFloat3 6s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}
.intro-area .intro-wrapper.style-three .intro-shape img {
  display: block;
  animation: introShapePulse3 3.2s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  .intro-area .intro-wrapper.style-two .intro-shape,
  .intro-area .intro-wrapper.style-two .intro-shape img,
  .intro-area .intro-wrapper.style-three .intro-shape,
  .intro-area .intro-wrapper.style-three .intro-shape img {
    animation: none !important;
  }
}
@keyframes rollingTextLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .revel-text-marquee .wrapper-rolling-text {
    animation: none !important;
    transform: none !important;
  }
}
/* ==========================================================================
   08. Helping
   ========================================================================== */
/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--orange);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 75, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.mega-hover {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.mega-hover:after,
.mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}

.mega-hover:before {
  top: 0;
  right: 51%;
  bottom: 0;
  left: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mega-hover:after {
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(245, 255, 255, 0.3);
}

.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
}

.bg-cover-2 {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  background-position: center !important;
  width: 100% !important;
  height: 100% !important;
}

.box-shadow {
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.06);
}

.center {
  text-align: center;
  margin: 0 auto;
}

.fix {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto !important;
}

.no-cursor {
  pointer-events: auto;
  cursor: pointer;
}

.cursor-content {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  text-align: center;
  background: var(--white);
  border-radius: 100%;
  white-space: nowrap;
  z-index: 2;
}

.hover-item {
  position: relative;
  display: inline-block;
}

.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}
.tp-clip-anim.tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.tp-clip-anim.mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}
.tp-clip-anim > * {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

/* ==========================================================================
   09. MeanMenu
   ========================================================================== */
/*----------------------------------------------
    # Meanmenu style here
----------------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li .submenu li a {
  padding: 5px 5% !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-2);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* ==========================================================================
   10. Preloader
   ========================================================================== */
/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em var(--font-primary), var(--font-body);
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header-color);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: var(--font-primary);
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg-color);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
}

/* ==========================================================================
   11. Title
   ========================================================================== */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.border-title {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.border-title .border-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.border-title .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.border-title .border-wrap-2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.border-title .border-wrap-2 .line-shape-1 {
  margin-bottom: 4px;
}

.border-title {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.border-title .border-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.border-title .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.border-title .border-wrap-2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.border-title .border-wrap-2 .line-shape-1 {
  margin-bottom: 4px;
}

.section-top-content.style-two .sub-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  text-transform: uppercase;
  color: var(--theme-5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .section-top-content.style-two .sub-title {
    margin-bottom: 30px;
  }
}
.section-top-content.style-two .title {
  font-family: var(--font-secondary);
  font-style: normal;
  font-weight: 600;
  font-size: 52px;
  line-height: 62px;
  color: var(--theme-5);
  margin-bottom: 35px;
}
@media (max-width: 1600px) {
  .section-top-content.style-two .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .section-top-content.style-two .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-top-content.style-two .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .section-top-content.style-two .title {
    font-size: 22px;
  }
}
.section-top-content.style-three .sub-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 90px;
  padding: 5px 20px;
  display: inline-block;
}
.section-top-content.style-three .title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 52px;
  line-height: 119%;
  color: var(--black);
}
@media (max-width: 1600px) {
  .section-top-content.style-three .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .section-top-content.style-three .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-top-content.style-three .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .section-top-content.style-three .title {
    font-size: 22px;
  }
}
.section-top-content.title-flex {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.section-top-content.style-four .title {
  color: #000;
  text-align: center;
  font-family: "Funnel Display";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
}
@media (max-width: 1600px) {
  .section-top-content.style-four .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .section-top-content.style-four .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-top-content.style-four .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .section-top-content.style-four .title {
    font-size: 24px;
  }
}
.section-top-content.style-four .title.style-four {
  max-width: 970px;
  margin: 0 auto;
}
.section-top-content.style-four.between-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-top-content.style-four.between-content .title {
  color: #FFF;
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  text-align: start;
}
@media (max-width: 1600px) {
  .section-top-content.style-four.between-content .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .section-top-content.style-four.between-content .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-top-content.style-four.between-content .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .section-top-content.style-four.between-content .title {
    font-size: 22px;
  }
}
.section-top-content.style-four.between-content p {
  color: var(--gray2);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 501px;
}
@media (max-width: 1199px) {
  .section-top-content.style-five {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .section-top-content.style-five {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.section-top-content.style-five .title {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
}
@media (max-width: 1199px) {
  .section-top-content.style-five .title {
    font-size: 78px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .section-top-content.style-five .title {
    font-size: 50px;
    line-height: normal;
  }
}
.section-top-content.style-five .pra-text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 469px;
}
@media (max-width: 1199px) {
  .section-top-content.style-five .pra-text {
    font-size: 16px;
    line-height: normal;
  }
}
.section-top-content.style-five span {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 120px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
}
@media (max-width: 1199px) {
  .section-top-content.style-five span {
    font-size: 78px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .section-top-content.style-five span {
    font-size: 50px;
    line-height: normal;
  }
}
.section-top-content.style-page {
  padding: 0 75px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .section-top-content.style-page {
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
  }
}
.section-top-content.style-page .sub-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
}
.section-top-content.style-page .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  max-width: 1076px;
}
@media (max-width: 1700px) {
  .section-top-content.style-page .title {
    font-size: 40px;
    line-height: normal;
    max-width: 944px;
  }
}
@media (max-width: 1600px) {
  .section-top-content.style-page .title {
    max-width: 749px;
  }
}
@media (max-width: 1199px) {
  .section-top-content.style-page .title {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .section-top-content.style-page .title {
    font-size: 22px;
  }
}
@media (max-width: 450px) {
  .section-top-content.style-page .title {
    font-size: 20px;
  }
}
.section-top-content.style-page .clint-info {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 90px 6px 6px 90px;
  background: var(--white);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
  padding: 10px 20px;
  transform: rotate(40.136deg);
  margin-top: 65px;
}
@media (max-width: 1700px) {
  .section-top-content.style-page .clint-info {
    transform: rotate(27.136deg);
  }
}
.section-top-content.style-page .clint-info ul {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.section-top-content.style-page .clint-info ul li {
  margin-left: -25px;
}
.section-top-content.style-page .clint-info .content span {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}
.section-top-content.style-page .clint-info .content p {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* ==========================================================================
   12. Common
   ========================================================================== */
/*----------------------------------------------
    # All Common style here
----------------------------------------------*/
.star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.star ul li i {
  color: var(--orange);
}

.line-shape-1 {
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
  animation: dash-3 1s linear infinite;
}

.line-shape-2 {
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
  animation: dash-4 1s linear infinite;
}

.gt_text_invert_2 > div {
  background-image: linear-gradient(to right, #111013 50%, #e4e4e4 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gt_text_invert_3 > div {
  background-image: linear-gradient(to right, #111013 50%, #e4e4e4 50%);
  background-size: 200% 100%;
  background-position: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.progress-wrap {
  margin-bottom: 15px;
}
.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.progress-wrap .progress-meta .title {
  color: var(--theme);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.progress-wrap .progress-meta .percentage {
  color: var(--theme);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 500px) {
  .progress-wrap .progress-meta {
    gap: 210px;
  }
}
@media (max-width: 470px) {
  .progress-wrap .progress-meta {
    gap: 150px;
  }
}
.progress-wrap .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #D9DDFF !important;
  border-radius: 10px;
  overflow: visible;
}
.progress-wrap .progress-container .progress-bar {
  height: 5px;
  background-color: var(--theme);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 575px) {
  .progress-wrap .progress-container {
    width: 85%;
  }
}
.progress-wrap .progress-container:before, .progress-wrap .progress-container:after {
  position: absolute;
  top: -4px;
  content: "";
  width: 8px;
  height: 12px;
  background-color: var(--theme);
  z-index: 3;
  border-radius: 2px;
}
.progress-wrap .progress-container:before {
  left: 0;
}
.progress-wrap .progress-container:after {
  right: 30%;
}
.progress-wrap .progress-container.style2:before, .progress-wrap .progress-container.style2:after {
  background-color: var(--orange);
}

.arrow-button {
  position: absolute;
  z-index: 9;
}
.arrow-button .arrow-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin-right: 8px;
  background-color: var(--white);
  color: var(var(--title-color));
  border: 1px solid var(var(--title-color));
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(var(--title-color));
  border: 1px solid var(--theme-2);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
.arrow-button .arrow-next:hover,
.arrow-button .arrow-prev:hover {
  background-color: var(var(--title-color));
  color: var(--white);
  border: 1px solid var(var(--title-color));
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--orange);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--orange);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--orange);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.fix-visible {
  overflow: visible;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.mask-content {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-position: center center;
  -webkit-mask-position: center center;
  width: 100%;
}

.checklists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checklists li {
  display: flex;
  align-items: center;
  color: var(var(--title-color));
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.checklists li svg {
  margin-right: 20px;
}

.checklists {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checklists li {
  display: flex;
  align-items: center;
  color: var(--pra-text);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.checklists li .icon {
  width: 16px;
  height: 16px;
  line-height: 14px;
  margin-right: 15px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.checklists li .icon i {
  font-size: 10px;
  color: var(--theme-2);
}

.gt-funfact-panel-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  width: max-content;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .gt-funfact-panel-wrap {
    width: auto;
    display: block;
  }
}
.gt-funfact-panel-wrap .gt-funfact-panel-2 {
  display: flex;
  flex: 0 0 auto;
  width: 1410px;
}

.about__img-2 {
  margin: 0 auto;
  overflow: hidden;
  max-height: 800px;
}

.badge-wrap {
  padding: 30px;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 1.2px) 0 0/10px 10px, #f4f5f7;
}

.badge {
  width: 220px;
  aspect-ratio: 1;
  position: relative;
  z-index: 99;
}
.badge .badge-ring {
  width: 100%;
  height: 100%;
}
.badge .badge-ring circle {
  fill: #fff;
}
.badge .badge-ring text {
  fill: #5a5a5a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge .badge-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.badge .badge-center svg {
  width: 38px;
  height: auto;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px 0 29px;
}
.social-proof .avatars {
  display: flex;
  align-items: center;
}
.social-proof .avatars img {
  width: 52px;
  height: 52px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  background: var(--white);
}
.social-proof .avatars img:not(:first-child) {
  margin-left: -18px;
}

.circle-wrapper {
  position: absolute;
  z-index: 99;
  top: 510px;
  left: 77px;
  width: 130px;
  height: 130px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1700px) {
  .circle-wrapper {
    left: 40px;
  }
}
@media (max-width: 1600px) {
  .circle-wrapper {
    left: 0px;
  }
}
@media (max-width: 1600px) {
  .circle-wrapper {
    display: none;
  }
}
.circle-wrapper::before, .circle-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  transform: translateX(-50%);
  background: transparent;
  border-left: 1px solid rgba(14, 14, 14, 0.14);
  border-right: 1px solid rgba(14, 14, 14, 0.14);
}
.circle-wrapper::before {
  height: 228px;
  bottom: calc(100% + 30px);
}
.circle-wrapper::after {
  height: 228px;
  top: calc(100% + 30px);
}
.circle-wrapper .circle-text {
  width: 100%;
  height: 100%;
  animation: rotate 28s linear infinite;
}
.circle-wrapper .circle-text text {
  fill: rgba(14, 14, 14, 0.75);
  font-size: 21px;
  letter-spacing: 1.1px;
  font-weight: 600;
  text-transform: uppercase;
}
.circle-wrapper .circle-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: transparent;
  transform: none;
  border-radius: 50%;
}
.circle-wrapper .circle-image svg {
  width: 40px;
  height: auto;
}
@media (max-width: 1199px) {
  .circle-wrapper {
    display: none;
  }
}

.bg-white {
  background: #fff !important;
}

.revel-text-marquee {
  overflow: hidden;
  background: var(--bg-color-3);
  padding: clamp(22px, 2.8vw, 38px) 0;
}
@media (max-width: 767px) {
  .revel-text-marquee {
    padding: 30px 0 !important;
  }
}
.revel-text-marquee.style-four {
  background: var(--white);
  padding: 60px 0;
  position: relative;
}
.revel-text-marquee.style-four::before, .revel-text-marquee.style-four::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}
.revel-text-marquee.style-four::before {
  bottom: 5px;
  animation: dash-3 1s linear infinite;
}
.revel-text-marquee.style-four::after {
  bottom: 0;
  animation: dash-4 1s linear infinite;
}
.revel-text-marquee.style-four .wrapper-rolling-text {
  animation: none;
  display: flex;
  align-items: center;
  gap: 60px;
}
.revel-text-marquee.style-four .wrapper-rolling-text .rolling-text {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 767px) {
  .revel-text-marquee.style-four .wrapper-rolling-text .rolling-text {
    gap: 50px;
  }
}
.revel-text-marquee.style-four .wrapper-rolling-text .rolling-text .marquee-text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 70px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .revel-text-marquee.style-four .wrapper-rolling-text .rolling-text .marquee-text {
    font-size: 40px;
  }
}
.revel-text-marquee.style-four .wrapper-rolling-text .rolling-text .marquee-text::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--black);
  border-radius: 100%;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.revel-text-marquee .wrapper-rolling-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: rollingTextLoop 24s linear infinite;
  gap: 50px;
}
.revel-text-marquee .wrapper-rolling-text.is-gsap-marquee {
  animation: none;
}
.revel-text-marquee .wrapper-rolling-text .rolling-text {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  line-height: 83%;
  color: var(--black);
  gap: 30px;
}
@media (max-width: 767px) {
  .revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text {
    font-size: 60px;
  }
}
.revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text span {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--theme-5);
}
@media (max-width: 767px) {
  .revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text span {
    font-size: 60px;
  }
}
.revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text span small {
  font-family: var(--font-secondary) !important;
  font-size: 125px;
}
@media (max-width: 767px) {
  .revel-text-marquee .wrapper-rolling-text .rolling-text .marquee-text span small {
    font-size: 60px;
  }
}
.revel-text-marquee:hover .wrapper-rolling-text {
  animation-play-state: paused;
}
@media (max-width: 575px) {
  .revel-text-marquee {
    padding: 20px 0;
  }
  .revel-text-marquee .wrapper-rolling-text {
    animation-duration: 18s;
  }
  .revel-text-marquee .rolling-text {
    padding-right: 28px;
  }
  .revel-text-marquee .rolling-text .marquee-text {
    gap: 16px;
    -webkit-text-stroke: 1px var(--theme-5);
    text-stroke: 1px var(--theme-5);
  }
  .revel-text-marquee .rolling-text .marquee-text span {
    -webkit-text-stroke: 1px var(--theme-5);
    text-stroke: 1px var(--theme-5);
  }
}
.revel-text-marquee.style-four-two {
  background: transparent;
  margin: 0 -75px;
  margin-bottom: 120px;
  padding: 0;
}
.revel-text-marquee.style-four-two .wrapper-rolling-text .rolling-text .marquee-text {
  color: #FFF;
  font-family: Phudu;
  font-size: 280px;
  font-style: normal;
  font-weight: 600;
  line-height: 240px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .revel-text-marquee.style-four-two .wrapper-rolling-text .rolling-text .marquee-text {
    font-size: 150px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .revel-text-marquee.style-four-two .wrapper-rolling-text .rolling-text .marquee-text {
    font-size: 120px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .revel-text-marquee.style-four-two .wrapper-rolling-text .rolling-text .marquee-text {
    font-size: 70px;
    line-height: normal;
  }
}

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

.border-none {
  border: none !important;
}

.border-bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bg-set-btn {
  background: #E85C30 !important;
}

.counter-items {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 35px 45px;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 1600px) {
  .counter-items {
    padding: 37px 20px;
  }
}
@media (max-width: 575px) {
  .counter-items {
    padding: 20px;
  }
}
.counter-items::after {
  content: "";
  width: 12px;
  height: 12px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  background: var(--black);
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.counter-items:last-child {
  margin-bottom: 0;
}
.counter-items span {
  color: #000;
  font-family: var(--font-primary);
  font-size: 90px;
  font-style: normal;
  font-weight: 600;
  line-height: 90px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
@media (max-width: 991px) {
  .counter-items span {
    font-size: 50px;
    line-height: normal;
  }
}
.counter-items .counter-title {
  color: var(--black);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}
@media (max-width: 991px) {
  .counter-items .counter-title {
    font-size: 20px;
    line-height: normal;
  }
}
.counter-items.style-two {
  padding: 35px 35px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F6F6F6;
  height: 100%;
}
.counter-items.style-two .counter-title {
  color: var(--black) !important;
  font-size: 24px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 34px !important;
  text-transform: capitalize !important;
  text-align: start !important;
}
@media (max-width: 767px) {
  .counter-items.style-two .counter-title {
    font-size: 20px !important;
    line-height: normal !important;
  }
}

.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  display: block;
  border-radius: 50px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  mix-blend-mode: exclusion;
  background-color: var(--black);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 6 pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

/* ==========================================================================
   13. Text Slider
   ========================================================================== */
.scrolling-wrap.style1 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  border-radius: 4px;
  background: var(--white);
  padding: 17px 16px;
  position: relative;
  z-index: -1;
}
.scrolling-wrap.style1 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  cursor: pointer;
  gap: 35px;
}
.scrolling-wrap.style1 .comm .cmn-textslide-1 {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  min-width: 158px;
}
.scrolling-wrap.style1 .comm .cmn-textslide-2 {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  min-width: 158px;
}
.scrolling-wrap.style1:hover .comm {
  animation-play-state: paused;
}
.scrolling-wrap.style2 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  border-radius: 4px;
  background: var(--white);
  padding: 17px 16px;
  position: relative;
  z-index: 1;
}
.scrolling-wrap.style2 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  cursor: pointer;
  gap: 15px;
}
.scrolling-wrap.style2 .comm .cmn-textslide-1 {
  background: var(--bg-color-2) !important;
  padding: 74px 33px;
  border-radius: 10px;
  min-width: 257px;
  flex: 0 0 257px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .scrolling-wrap.style2 .comm .cmn-textslide-1 {
    padding: 30px;
  }
}
.scrolling-wrap.style2 .comm .cmn-textslide-2 {
  background: var(--bg-color-2) !important;
  padding: 74px 33px;
  border-radius: 10px;
  min-width: 257px;
  flex: 0 0 257px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .scrolling-wrap.style2 .comm .cmn-textslide-2 {
    padding: 30px;
  }
}
.scrolling-wrap.style2:hover .comm {
  animation-play-state: paused;
}
.scrolling-wrap.style3 {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background-color: var(--white);
  position: relative;
  z-index: 999;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 {
    padding-bottom: 40px;
  }
}
.scrolling-wrap.style3 .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 40px;
  cursor: pointer;
}
.scrolling-wrap.style3 .comm .cmn-textslide-1 {
  color: var(--white);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 8px;
}
@media (max-width: 575px) {
  .scrolling-wrap.style3 .comm .cmn-textslide-1 {
    font-size: 40px;
  }
}
.scrolling-wrap.style3 .comm .cmn-textslide-1:nth-child(2n) {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--white);
  color: transparent;
  background: transparent;
}
.scrolling-wrap.style3:hover .comm {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ==========================================================================
   14. Accordion
   ========================================================================== */
.accordion .accordion-item .accordion-header {
  line-height: 0;
  --bs-accordion-border-width: 0px;
}
.accordion .accordion-item .accordion-button {
  background: transparent;
}
.accordion .accordion-item .accordion-button::after {
  display: none;
}
.accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.accordion.style-four-one .accordion-item {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}
.accordion.style-four-one .accordion-item .accordion-button {
  padding: 35px 0;
  display: flex;
  align-items: center;
  gap: 57px;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 470px) {
  .accordion.style-four-one .accordion-item .accordion-button {
    gap: 15px;
    padding: 15px 0;
  }
}
.accordion.style-four-one .accordion-item .accordion-button:not(.collapsed) {
  padding-bottom: 15px;
}
.accordion.style-four-one .accordion-item .accordion-button span {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
.accordion.style-four-one .accordion-item .accordion-body {
  padding: 0;
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-left: 100px;
}
@media (max-width: 470px) {
  .accordion.style-four-one .accordion-item .accordion-body {
    margin-left: 0;
  }
}
.accordion.style-four-one .accordion-item .accordion-body:not(.collapsed) {
  padding-bottom: 35px;
}
@media (max-width: 470px) {
  .accordion.style-four-one .accordion-item .accordion-body:not(.collapsed) {
    padding-bottom: 15px;
  }
}
.accordion.style-five .accordion-item {
  margin-bottom: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 4px 10px 15px 0 rgba(0, 0, 0, 0.2);
}
.accordion.style-five .accordion-button {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  padding: 25px 30px;
}
@media (max-width: 991px) {
  .accordion.style-five .accordion-button {
    padding: 25px 66px 25px 30px;
  }
}
@media (max-width: 575px) {
  .accordion.style-five .accordion-button {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .accordion.style-five .accordion-button {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .accordion.style-five .accordion-button {
    padding: 15px 56px 15px 10px;
  }
}
.accordion.style-five .accordion-button::before {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  border-radius: 30px;
  border: 1px solid #000;
  background: rgba(217, 217, 217, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .accordion.style-five .accordion-button::before {
    right: 15px;
  }
}
.accordion.style-five .accordion-button:not(.collapsed)::before {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  border-radius: 30px;
  border: 1px solid #000;
  background: rgba(217, 217, 217, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  transition: 0.3s;
}
.accordion.style-five .accordion-body {
  padding: 0 30px 30px 30px;
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 575px) {
  .accordion.style-five .accordion-body {
    font-size: 16px;
    line-height: normal;
  }
}

/* ==========================================================================
   15. Form
   ========================================================================== */
.contact-form .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--theme-2) !important;
}
.contact-form.style-one .form-group .form-control {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1F1F1;
  padding: 20px 25px;
}
.contact-form.style-one .form-group textarea {
  min-height: 189px;
}
.contact-form.style-two .form-group .form-control {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  padding: 19px 30px;
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .contact-form.style-two .form-group .form-control {
    margin-bottom: 18px;
  }
}
@media (max-width: 450px) {
  .contact-form.style-two .form-group .form-control {
    padding: 10px;
  }
}
.contact-form.style-two .form-group textarea {
  min-height: 172px;
}
.contact-form.style-three .form-group .form-control {
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0);
  padding: 16px 30px;
  color: #424242;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .contact-form.style-three .form-group .form-control {
    padding: 10px 20px;
    font-size: 16px;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.contact-form.style-three .form-group .form-control::placeholder {
  color: #424242;
}
.contact-form.style-three .forget-pass {
  color: #424242;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  display: block;
  margin-bottom: 35px;
}
.contact-form.style-three .simple-btn {
  text-align: center;
}
.contact-form.style-three .simple-btn .gt-hover-btn {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  padding: 15px 65px;
}

/* ==========================================================================
   16. Card
   ========================================================================== */
/*----------------------------------------------
    # Card style here
----------------------------------------------*/
.about-card.style-one {
  margin-left: 118px;
  margin-right: 203px;
}
@media (max-width: 1600px) {
  .about-card.style-one {
    margin: 0 150px;
  }
}
@media (max-width: 1600px) {
  .about-card.style-one {
    margin: 0 150px;
  }
}
@media (max-width: 1399px) {
  .about-card.style-one {
    margin: 0 50px;
  }
}
@media (max-width: 1199px) {
  .about-card.style-one {
    margin: 0 10px;
  }
}
.about-card.style-one .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 115px;
  border-radius: 10px;
  background: var(--bg-color-2);
  padding: 60px 40px 60px 41px;
}
@media (max-width: 1899px) {
  .about-card.style-one .card-content {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .about-card.style-one .card-content {
    gap: 20px;
    padding: 25px;
  }
}
.about-card.style-one .card-content .list {
  color: var(--theme-5);
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}
.about-card.style-one .card-content .text {
  color: #464646;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 411px;
}
@media (max-width: 1600px) {
  .about-card.style-one .card-content .text {
    font-size: 15px;
    line-height: normal;
  }
}
.about-card.style-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}
.about-card.style-two .card-shape-1 {
  position: absolute;
  bottom: 45px;
  right: 27px;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
.about-card.style-two .card-shape-2 {
  position: absolute;
  bottom: 22px;
  right: 0;
  z-index: 2;
  transition: 800ms ease-in-out;
}
.about-card.style-two .card-shape-3 {
  position: absolute;
  bottom: 0;
  right: -23px;
  z-index: 2;
}
.about-card.style-two .card-content {
  display: inline-block;
  padding: 45px 30px;
  height: 100%;
}
@media (max-width: 1399px) {
  .about-card.style-two .card-content {
    padding: 20px;
  }
}
.about-card.style-two .card-content .list-number {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-5);
  margin-bottom: 20px;
  display: inline-block;
}
.about-card.style-two .card-content .card-bottom-content .title {
  margin-bottom: 20px;
}
.about-card.style-two .card-content .card-bottom-content .title a {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  color: var(--theme-5);
}
@media (max-width: 1399px) {
  .about-card.style-two .card-content .card-bottom-content .title a {
    font-size: 25px;
  }
}
@media (max-width: 1399px) {
  .about-card.style-two .card-content .card-bottom-content .title a {
    font-size: 22px;
  }
}
.about-card.style-two .card-content .card-bottom-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--pra-text);
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .about-card.style-two .card-content .card-bottom-content .text {
    margin-bottom: 20px;
  }
}
.about-card.style-two .card-content .card-bottom-content .list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-5);
  text-transform: capitalize;
  margin-bottom: 14px;
}
.about-card.style-two .card-content .card-bottom-content .list li:last-child {
  margin-bottom: 0;
}
.about-card.style-two .card-content .card-bottom-content .list li span {
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card.style-two:hover .card-shape-1 {
  position: absolute;
  top: 45px;
  right: 27px;
  z-index: 2;
}
.about-card.style-two:hover .card-shape-2 {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
}

.counter-area .counter-wrapper .counter-title {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}
.counter-area .counter-wrapper .counter-title .border-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.counter-area .counter-wrapper .counter-title .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.counter-area .counter-wrapper .counter-title .border-wrap-2 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: 399px;
}
.counter-area .counter-wrapper .counter-title .border-wrap-2 .line-shape-1 {
  margin-bottom: 4px;
}

.counter-card .counter-card-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .counter-card .counter-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.counter-card .counter-card-wrap .counter-card-items {
  width: 375px;
  height: 375px;
  border-radius: 375px;
  border: 4px solid #FFF;
  background: var(--bg-color-2);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-left: -68px;
}
@media (max-width: 1399px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 1199px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 991px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 575px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 470px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 450px) {
  .counter-card .counter-card-wrap .counter-card-items {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 575px) {
  .counter-card .counter-card-wrap .counter-card-items {
    margin-left: 0;
  }
}
.counter-card .counter-card-wrap .counter-card-items:first-child {
  margin-left: 0;
}
.counter-card .counter-card-wrap .counter-card-items .counter span {
  color: var(--theme-5);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 90px;
  font-weight: 600;
  line-height: 100px;
}
@media (max-width: 991px) {
  .counter-card .counter-card-wrap .counter-card-items .counter span {
    font-size: 70px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .counter-card .counter-card-wrap .counter-card-items .counter span {
    font-size: 36px;
    line-height: normal;
  }
}
.counter-card .counter-card-wrap .counter-card-items .text {
  color: var(--theme-5);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  width: 95px;
}
@media (max-width: 767px) {
  .counter-card .counter-card-wrap .counter-card-items .text {
    font-size: 16px;
    line-height: normal;
  }
}
.counter-card.style-three {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bg-color-3);
  padding: 45px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.counter-card.style-three .counter-number {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.counter-card.style-three .counter-number .counters-item {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 90px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 767px) {
  .counter-card.style-three .counter-number .counters-item {
    font-size: 60px;
  }
}
.counter-card.style-three .counter-number .suffix {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 90px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black);
}
@media (max-width: 767px) {
  .counter-card.style-three .counter-number .suffix {
    font-size: 60px;
  }
}
.counter-card.style-three .counter-text {
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--black);
}
@media (max-width: 1399px) {
  .counter-card.style-three .counter-text {
    font-size: 18px;
  }
}
.counter-card.style-three .card-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--black);
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.project-card .tp--hover-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .project-card.pb-60 {
    padding-bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .project-card.pr-30 {
    padding-right: 15px;
  }
}
@media (max-width: 1399px) {
  .project-card.pl-30 {
    padding-left: 15px;
  }
}
.project-card .tp--hover-img canvas {
  top: -50px;
  left: 0;
  width: 100% !important;
  height: 600px !important;
  position: absolute;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .project-card .tp--hover-img canvas {
    height: 640px !important;
  }
}
.project-card .thumb-content {
  overflow: hidden;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .project-card .thumb-content {
    display: block;
  }
}
.project-card .thumb-content img {
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .project-card .thumb-content img {
    width: 100%;
  }
}
.project-card .bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .project-card .bottom-content {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
.project-card .bottom-content .title {
  color: var(--theme-5);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .project-card .bottom-content .title {
    font-size: 18px;
    line-height: normal;
  }
}
.project-card .bottom-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.project-card .bottom-content ul li {
  border-radius: 90px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(217, 217, 217, 0);
  padding: 0 15px;
  color: var(--theme-5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 1399px) {
  .project-card .bottom-content ul li {
    padding: 0 8px;
    font-size: 12px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .project-card .bottom-content ul li {
    font-size: 16px;
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  .project-card .bottom-content ul li:first-child {
    display: none;
  }
}
@media (max-width: 470px) {
  .project-card .bottom-content ul li:nth-child(2) {
    display: none;
  }
}

.blog-card.style-one {
  padding: 30px;
  border-radius: 10px;
  background: var(--bg-color-2);
}
.blog-card.style-one .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .blog-card.style-one .card-meta {
    margin-bottom: 30px;
  }
}
.blog-card.style-one .card-meta span {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}
.blog-card.style-one .title a {
  color: var(--theme-5);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 30px;
  color: #0E0E0E;
  font-family: var(--font-primary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  display: inline-block;
}
@media (max-width: 991px) {
  .blog-card.style-one .title a {
    font-size: 24px;
    line-height: normal;
  }
}
.blog-card.style-one .text {
  color: var(--pra-text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .blog-card.style-one .text {
    margin-bottom: 20px;
  }
}
.blog-card.style-two {
  background: rgba(217, 217, 217, 0);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.blog-card.style-two .blog-card-image {
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .blog-card.style-two .blog-card-image {
    margin-bottom: 20px;
  }
}
.blog-card.style-two .blog-card-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.blog-card.style-two .blog-card-body {
  padding: 0 30px 30px 30px;
}
@media (max-width: 1199px) {
  .blog-card.style-two .blog-card-body {
    padding: 15px;
  }
}
.blog-card.style-two .blog-card-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.blog-card.style-two .blog-card-meta .tag {
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 90px;
  padding: 4px 15px;
  background: rgba(217, 217, 217, 0);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: var(--theme-5);
}
.blog-card.style-two .blog-card-title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
  color: var(--theme-5);
  margin-bottom: 45px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .blog-card.style-two .blog-card-title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .blog-card.style-two .blog-card-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 470px) {
  .blog-card.style-two .blog-card-title {
    font-size: 16px;
  }
}
.blog-card.style-two .blog-card-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}
.blog-card.style-two .blog-card-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card.style-two .blog-card-author strong {
  font-weight: 600;
  font-size: 18px;
  line-height: 156%;
  color: var(--theme-5);
  display: block;
}
.blog-card.style-two .blog-card-author span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: var(--pra-text);
  display: inline-block;
}

.how-it-works-card.style-one {
  background: var(--white);
  padding: 30px 25px 32px 25px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
}
.how-it-works-card.style-one .card-content .list-number {
  padding: 5px 25px;
  background: var(--bg-color-2);
  border-radius: 8px;
  margin-bottom: 30px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--black);
}
.how-it-works-card.style-one .card-content .title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .how-it-works-card.style-one .card-content .title {
    margin-bottom: 20px;
  }
}
.how-it-works-card.style-one .card-content .title a {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 30px;
  line-height: 133%;
  color: var(--black);
}
@media (max-width: 767px) {
  .how-it-works-card.style-one .card-content .title a {
    font-size: 18px;
  }
}
.how-it-works-card.style-one .card-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--pra-text);
}

/* ==========================================================================
   17. Spacing
   ========================================================================== */
/*----------------------------------------*/
/*  1.3 Default Spacing
/*----------------------------------------*/
/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-1 {
  margin-top: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Bottom --*/
.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

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

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

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

.mb-11 {
  margin-bottom: 11px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

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

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-17 {
  margin-bottom: 17px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-19 {
  margin-bottom: 19px !important;
}

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

.mb-21 {
  margin-bottom: 21px !important;
}

.mb-22 {
  margin-bottom: 22px !important;
}

.mb-23 {
  margin-bottom: 23px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

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

.mb-26 {
  margin-bottom: 26px !important;
}

.mb-27 {
  margin-bottom: 27px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-29 {
  margin-bottom: 29px !important;
}

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

.mb-31 {
  margin-bottom: 31px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-33 {
  margin-bottom: 33px !important;
}

.mb-34 {
  margin-bottom: 34px !important;
}

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

.mb-36 {
  margin-bottom: 36px !important;
}

.mb-37 {
  margin-bottom: 37px !important;
}

.mb-38 {
  margin-bottom: 38px !important;
}

.mb-39 {
  margin-bottom: 39px !important;
}

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

.mb-41 {
  margin-bottom: 41px !important;
}

.mb-42 {
  margin-bottom: 42px !important;
}

.mb-43 {
  margin-bottom: 43px !important;
}

.mb-44 {
  margin-bottom: 44px !important;
}

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

.mb-46 {
  margin-bottom: 46px !important;
}

.mb-47 {
  margin-bottom: 47px !important;
}

.mb-48 {
  margin-bottom: 48px !important;
}

.mb-49 {
  margin-bottom: 49px !important;
}

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

.mb-51 {
  margin-bottom: 51px !important;
}

.mb-52 {
  margin-bottom: 52px !important;
}

.mb-53 {
  margin-bottom: 53px !important;
}

.mb-54 {
  margin-bottom: 54px !important;
}

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

.mb-56 {
  margin-bottom: 56px !important;
}

.mb-57 {
  margin-bottom: 57px !important;
}

.mb-58 {
  margin-bottom: 58px !important;
}

.mb-59 {
  margin-bottom: 59px !important;
}

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

.mb-61 {
  margin-bottom: 61px !important;
}

.mb-62 {
  margin-bottom: 62px !important;
}

.mb-63 {
  margin-bottom: 63px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

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

.mb-66 {
  margin-bottom: 66px !important;
}

.mb-67 {
  margin-bottom: 67px !important;
}

.mb-68 {
  margin-bottom: 68px !important;
}

.mb-69 {
  margin-bottom: 69px !important;
}

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

.mb-71 {
  margin-bottom: 71px !important;
}

.mb-72 {
  margin-bottom: 72px !important;
}

.mb-73 {
  margin-bottom: 73px !important;
}

.mb-74 {
  margin-bottom: 74px !important;
}

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

.mb-76 {
  margin-bottom: 76px !important;
}

.mb-77 {
  margin-bottom: 77px !important;
}

.mb-78 {
  margin-bottom: 78px !important;
}

.mb-79 {
  margin-bottom: 79px !important;
}

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

.mb-81 {
  margin-bottom: 81px !important;
}

.mb-82 {
  margin-bottom: 82px !important;
}

.mb-83 {
  margin-bottom: 83px !important;
}

.mb-84 {
  margin-bottom: 84px !important;
}

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

.mb-86 {
  margin-bottom: 86px !important;
}

.mb-87 {
  margin-bottom: 87px !important;
}

.mb-88 {
  margin-bottom: 88px !important;
}

.mb-89 {
  margin-bottom: 89px !important;
}

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

.mb-91 {
  margin-bottom: 91px !important;
}

.mb-92 {
  margin-bottom: 92px !important;
}

.mb-93 {
  margin-bottom: 93px !important;
}

.mb-94 {
  margin-bottom: 94px !important;
}

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

.mb-96 {
  margin-bottom: 96px !important;
}

.mb-97 {
  margin-bottom: 97px !important;
}

.mb-98 {
  margin-bottom: 98px !important;
}

.mb-99 {
  margin-bottom: 99px !important;
}

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

.mb-101 {
  margin-bottom: 101px !important;
}

.mb-102 {
  margin-bottom: 102px !important;
}

.mb-103 {
  margin-bottom: 103px !important;
}

.mb-104 {
  margin-bottom: 104px !important;
}

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

.mb-106 {
  margin-bottom: 106px !important;
}

.mb-107 {
  margin-bottom: 107px !important;
}

.mb-108 {
  margin-bottom: 108px !important;
}

.mb-109 {
  margin-bottom: 109px !important;
}

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

.mb-111 {
  margin-bottom: 111px !important;
}

.mb-112 {
  margin-bottom: 112px !important;
}

.mb-113 {
  margin-bottom: 113px !important;
}

.mb-114 {
  margin-bottom: 114px !important;
}

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

.mb-116 {
  margin-bottom: 116px !important;
}

.mb-117 {
  margin-bottom: 117px !important;
}

.mb-118 {
  margin-bottom: 118px !important;
}

.mb-119 {
  margin-bottom: 119px !important;
}

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

.mb-121 {
  margin-bottom: 121px !important;
}

.mb-122 {
  margin-bottom: 122px !important;
}

.mb-123 {
  margin-bottom: 123px !important;
}

.mb-124 {
  margin-bottom: 124px !important;
}

.mb-125 {
  margin-bottom: 125px !important;
}

.mb-126 {
  margin-bottom: 126px !important;
}

.mb-127 {
  margin-bottom: 127px !important;
}

.mb-128 {
  margin-bottom: 128px !important;
}

.mb-129 {
  margin-bottom: 129px !important;
}

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

.mb-131 {
  margin-bottom: 131px !important;
}

.mb-132 {
  margin-bottom: 132px !important;
}

.mb-133 {
  margin-bottom: 133px !important;
}

.mb-134 {
  margin-bottom: 134px !important;
}

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

.mb-136 {
  margin-bottom: 136px !important;
}

.mb-137 {
  margin-bottom: 137px !important;
}

.mb-138 {
  margin-bottom: 138px !important;
}

.mb-139 {
  margin-bottom: 139px !important;
}

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

.mb-141 {
  margin-bottom: 141px !important;
}

.mb-142 {
  margin-bottom: 142px !important;
}

.mb-143 {
  margin-bottom: 143px !important;
}

.mb-144 {
  margin-bottom: 144px !important;
}

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

.mb-146 {
  margin-bottom: 146px !important;
}

.mb-147 {
  margin-bottom: 147px !important;
}

.mb-148 {
  margin-bottom: 148px !important;
}

.mb-149 {
  margin-bottom: 149px !important;
}

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

.mb-151 {
  margin-bottom: 151px !important;
}

.mb-152 {
  margin-bottom: 152px !important;
}

.mb-153 {
  margin-bottom: 153px !important;
}

.mb-154 {
  margin-bottom: 154px !important;
}

.mb-155 {
  margin-bottom: 155px !important;
}

.mb-156 {
  margin-bottom: 156px !important;
}

.mb-157 {
  margin-bottom: 157px !important;
}

.mb-158 {
  margin-bottom: 158px !important;
}

.mb-159 {
  margin-bottom: 159px !important;
}

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

.mb-161 {
  margin-bottom: 161px !important;
}

.mb-162 {
  margin-bottom: 162px !important;
}

.mb-163 {
  margin-bottom: 163px !important;
}

.mb-164 {
  margin-bottom: 164px !important;
}

.mb-165 {
  margin-bottom: 165px !important;
}

.mb-166 {
  margin-bottom: 166px !important;
}

.mb-167 {
  margin-bottom: 167px !important;
}

.mb-168 {
  margin-bottom: 168px !important;
}

.mb-169 {
  margin-bottom: 169px !important;
}

.mb-170 {
  margin-bottom: 170px !important;
}

.mb-171 {
  margin-bottom: 171px !important;
}

.mb-172 {
  margin-bottom: 172px !important;
}

.mb-173 {
  margin-bottom: 173px !important;
}

.mb-174 {
  margin-bottom: 174px !important;
}

.mb-175 {
  margin-bottom: 175px !important;
}

.mb-176 {
  margin-bottom: 176px !important;
}

.mb-177 {
  margin-bottom: 177px !important;
}

.mb-178 {
  margin-bottom: 178px !important;
}

.mb-179 {
  margin-bottom: 179px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-181 {
  margin-bottom: 181px !important;
}

.mb-182 {
  margin-bottom: 182px !important;
}

.mb-183 {
  margin-bottom: 183px !important;
}

.mb-184 {
  margin-bottom: 184px !important;
}

.mb-185 {
  margin-bottom: 185px !important;
}

.mb-186 {
  margin-bottom: 186px !important;
}

.mb-187 {
  margin-bottom: 187px !important;
}

.mb-188 {
  margin-bottom: 188px !important;
}

.mb-189 {
  margin-bottom: 189px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mb-191 {
  margin-bottom: 191px !important;
}

.mb-192 {
  margin-bottom: 192px !important;
}

.mb-193 {
  margin-bottom: 193px !important;
}

.mb-194 {
  margin-bottom: 194px !important;
}

.mb-195 {
  margin-bottom: 195px !important;
}

.mb-196 {
  margin-bottom: 196px !important;
}

.mb-197 {
  margin-bottom: 197px !important;
}

.mb-198 {
  margin-bottom: 198px !important;
}

.mb-199 {
  margin-bottom: 199px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-131 {
  padding-top: 131px;
}

.pt-132 {
  padding-top: 132px;
}

.pt-133 {
  padding-top: 133px;
}

.pt-134 {
  padding-top: 134px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-136 {
  padding-top: 136px;
}

.pt-137 {
  padding-top: 137px;
}

.pt-138 {
  padding-top: 138px;
}

.pt-139 {
  padding-top: 139px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-141 {
  padding-top: 141px;
}

.pt-142 {
  padding-top: 142px;
}

.pt-143 {
  padding-top: 143px;
}

.pt-144 {
  padding-top: 144px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-146 {
  padding-top: 146px;
}

.pt-147 {
  padding-top: 147px;
}

.pt-148 {
  padding-top: 148px;
}

.pt-149 {
  padding-top: 149px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-151 {
  padding-top: 151px;
}

.pt-152 {
  padding-top: 152px;
}

.pt-153 {
  padding-top: 153px;
}

.pt-154 {
  padding-top: 154px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-156 {
  padding-top: 156px;
}

.pt-157 {
  padding-top: 157px;
}

.pt-158 {
  padding-top: 158px;
}

.pt-159 {
  padding-top: 159px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-161 {
  padding-top: 161px;
}

.pt-162 {
  padding-top: 162px;
}

.pt-163 {
  padding-top: 163px;
}

.pt-164 {
  padding-top: 164px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-166 {
  padding-top: 166px;
}

.pt-167 {
  padding-top: 167px;
}

.pt-168 {
  padding-top: 168px;
}

.pt-169 {
  padding-top: 169px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-171 {
  padding-top: 171px;
}

.pt-172 {
  padding-top: 172px;
}

.pt-173 {
  padding-top: 173px;
}

.pt-174 {
  padding-top: 174px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-176 {
  padding-top: 176px;
}

.pt-177 {
  padding-top: 177px;
}

.pt-178 {
  padding-top: 178px;
}

.pt-179 {
  padding-top: 179px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-181 {
  padding-top: 181px;
}

.pt-182 {
  padding-top: 182px;
}

.pt-183 {
  padding-top: 183px;
}

.pt-184 {
  padding-top: 184px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-186 {
  padding-top: 186px;
}

.pt-187 {
  padding-top: 187px;
}

.pt-188 {
  padding-top: 188px;
}

.pt-189 {
  padding-top: 189px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-191 {
  padding-top: 191px;
}

.pt-192 {
  padding-top: 192px;
}

.pt-193 {
  padding-top: 193px;
}

.pt-194 {
  padding-top: 194px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-196 {
  padding-top: 196px;
}

.pt-197 {
  padding-top: 197px;
}

.pt-198 {
  padding-top: 198px;
}

.pt-199 {
  padding-top: 199px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-201 {
  padding-top: 201px;
}

.pt-202 {
  padding-top: 202px;
}

.pt-203 {
  padding-top: 203px;
}

.pt-204 {
  padding-top: 204px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-206 {
  padding-top: 206px;
}

.pt-207 {
  padding-top: 207px;
}

.pt-208 {
  padding-top: 208px;
}

.pt-209 {
  padding-top: 209px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-211 {
  padding-top: 211px;
}

.pt-212 {
  padding-top: 212px;
}

.pt-213 {
  padding-top: 213px;
}

.pt-214 {
  padding-top: 214px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-216 {
  padding-top: 216px;
}

.pt-217 {
  padding-top: 217px;
}

.pt-218 {
  padding-top: 218px;
}

.pt-219 {
  padding-top: 219px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-221 {
  padding-top: 221px;
}

.pt-222 {
  padding-top: 222px;
}

.pt-223 {
  padding-top: 223px;
}

.pt-224 {
  padding-top: 224px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-226 {
  padding-top: 226px;
}

.pt-227 {
  padding-top: 227px;
}

.pt-228 {
  padding-top: 228px;
}

.pt-229 {
  padding-top: 229px;
}

.pt-230 {
  padding-top: 230px;
}

.pt-231 {
  padding-top: 231px;
}

.pt-232 {
  padding-top: 232px;
}

.pt-233 {
  padding-top: 233px;
}

.pt-234 {
  padding-top: 234px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-236 {
  padding-top: 236px;
}

.pt-237 {
  padding-top: 237px;
}

.pt-238 {
  padding-top: 238px;
}

.pt-239 {
  padding-top: 239px;
}

.pt-240 {
  padding-top: 240px;
}

.pt-241 {
  padding-top: 241px;
}

.pt-242 {
  padding-top: 242px;
}

.pt-243 {
  padding-top: 243px;
}

.pt-244 {
  padding-top: 244px;
}

.pt-245 {
  padding-top: 245px;
}

.pt-246 {
  padding-top: 246px;
}

.pt-247 {
  padding-top: 247px;
}

.pt-248 {
  padding-top: 248px;
}

.pt-249 {
  padding-top: 249px;
}

.pt-250 {
  padding-top: 250px;
}

.pt-251 {
  padding-top: 251px;
}

.pt-252 {
  padding-top: 252px;
}

.pt-253 {
  padding-top: 253px;
}

.pt-254 {
  padding-top: 254px;
}

.pt-255 {
  padding-top: 255px;
}

.pt-256 {
  padding-top: 256px;
}

.pt-257 {
  padding-top: 257px;
}

.pt-258 {
  padding-top: 258px;
}

.pt-259 {
  padding-top: 259px;
}

.pt-260 {
  padding-top: 260px;
}

.pt-261 {
  padding-top: 261px;
}

.pt-262 {
  padding-top: 262px;
}

.pt-263 {
  padding-top: 263px;
}

.pt-264 {
  padding-top: 264px;
}

.pt-265 {
  padding-top: 265px;
}

.pt-266 {
  padding-top: 266px;
}

.pt-267 {
  padding-top: 267px;
}

.pt-268 {
  padding-top: 268px;
}

.pt-269 {
  padding-top: 269px;
}

.pt-270 {
  padding-top: 270px;
}

.pt-271 {
  padding-top: 271px;
}

.pt-272 {
  padding-top: 272px;
}

.pt-273 {
  padding-top: 273px;
}

.pt-274 {
  padding-top: 274px;
}

.pt-275 {
  padding-top: 275px;
}

.pt-276 {
  padding-top: 276px;
}

.pt-277 {
  padding-top: 277px;
}

.pt-278 {
  padding-top: 278px;
}

.pt-279 {
  padding-top: 279px;
}

.pt-280 {
  padding-top: 280px;
}

.pt-281 {
  padding-top: 281px;
}

.pt-282 {
  padding-top: 282px;
}

.pt-283 {
  padding-top: 283px;
}

.pt-284 {
  padding-top: 284px;
}

.pt-285 {
  padding-top: 285px;
}

.pt-286 {
  padding-top: 286px;
}

.pt-287 {
  padding-top: 287px;
}

.pt-288 {
  padding-top: 288px;
}

.pt-289 {
  padding-top: 289px;
}

.pt-290 {
  padding-top: 290px;
}

.pt-291 {
  padding-top: 291px;
}

.pt-292 {
  padding-top: 292px;
}

.pt-293 {
  padding-top: 293px;
}

.pt-294 {
  padding-top: 294px;
}

.pt-295 {
  padding-top: 295px;
}

.pt-296 {
  padding-top: 296px;
}

.pt-297 {
  padding-top: 297px;
}

.pt-298 {
  padding-top: 298px;
}

.pt-299 {
  padding-top: 299px;
}

.pt-300 {
  padding-top: 300px;
}

/*-- Padding Bottom --*/
.pb-1 {
  padding-bottom: 1px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-11 {
  padding-bottom: 11px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-13 {
  padding-bottom: 13px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-17 {
  padding-bottom: 17px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-19 {
  padding-bottom: 19px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-21 {
  padding-bottom: 21px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-23 {
  padding-bottom: 23px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-26 {
  padding-bottom: 26px;
}

.pb-27 {
  padding-bottom: 27px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pb-29 {
  padding-bottom: 29px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-31 {
  padding-bottom: 31px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-33 {
  padding-bottom: 33px;
}

.pb-34 {
  padding-bottom: 34px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pb-37 {
  padding-bottom: 37px;
}

.pb-38 {
  padding-bottom: 38px;
}

.pb-39 {
  padding-bottom: 39px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-41 {
  padding-bottom: 41px;
}

.pb-42 {
  padding-bottom: 42px;
}

.pb-43 {
  padding-bottom: 43px;
}

.pb-44 {
  padding-bottom: 44px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-46 {
  padding-bottom: 46px;
}

.pb-47 {
  padding-bottom: 47px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-49 {
  padding-bottom: 49px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-51 {
  padding-bottom: 51px;
}

.pb-52 {
  padding-bottom: 52px;
}

.pb-53 {
  padding-bottom: 53px;
}

.pb-54 {
  padding-bottom: 54px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pb-57 {
  padding-bottom: 57px;
}

.pb-58 {
  padding-bottom: 58px;
}

.pb-59 {
  padding-bottom: 59px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-61 {
  padding-bottom: 61px;
}

.pb-62 {
  padding-bottom: 62px;
}

.pb-63 {
  padding-bottom: 63px;
}

.pb-64 {
  padding-bottom: 64px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-66 {
  padding-bottom: 66px;
}

.pb-67 {
  padding-bottom: 67px;
}

.pb-68 {
  padding-bottom: 68px;
}

.pb-69 {
  padding-bottom: 69px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-71 {
  padding-bottom: 71px;
}

.pb-72 {
  padding-bottom: 72px;
}

.pb-73 {
  padding-bottom: 73px;
}

.pb-74 {
  padding-bottom: 74px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-76 {
  padding-bottom: 76px;
}

.pb-77 {
  padding-bottom: 77px;
}

.pb-78 {
  padding-bottom: 78px;
}

.pb-79 {
  padding-bottom: 79px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-81 {
  padding-bottom: 81px;
}

.pb-82 {
  padding-bottom: 82px;
}

.pb-83 {
  padding-bottom: 83px;
}

.pb-84 {
  padding-bottom: 84px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-86 {
  padding-bottom: 86px;
}

.pb-87 {
  padding-bottom: 87px;
}

.pb-88 {
  padding-bottom: 88px;
}

.pb-89 {
  padding-bottom: 89px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-91 {
  padding-bottom: 91px;
}

.pb-92 {
  padding-bottom: 92px;
}

.pb-93 {
  padding-bottom: 93px;
}

.pb-94 {
  padding-bottom: 94px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-96 {
  padding-bottom: 96px;
}

.pb-97 {
  padding-bottom: 97px;
}

.pb-98 {
  padding-bottom: 98px;
}

.pb-99 {
  padding-bottom: 99px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-101 {
  padding-bottom: 101px;
}

.pb-102 {
  padding-bottom: 102px;
}

.pb-103 {
  padding-bottom: 103px;
}

.pb-104 {
  padding-bottom: 104px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-106 {
  padding-bottom: 106px;
}

.pb-107 {
  padding-bottom: 107px;
}

.pb-108 {
  padding-bottom: 108px;
}

.pb-109 {
  padding-bottom: 109px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-111 {
  padding-bottom: 111px;
}

.pb-112 {
  padding-bottom: 112px;
}

.pb-113 {
  padding-bottom: 113px;
}

.pb-114 {
  padding-bottom: 114px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-116 {
  padding-bottom: 116px;
}

.pb-117 {
  padding-bottom: 117px;
}

.pb-118 {
  padding-bottom: 118px;
}

.pb-119 {
  padding-bottom: 119px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-121 {
  padding-bottom: 121px;
}

.pb-122 {
  padding-bottom: 122px;
}

.pb-123 {
  padding-bottom: 123px;
}

.pb-124 {
  padding-bottom: 124px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-126 {
  padding-bottom: 126px;
}

.pb-127 {
  padding-bottom: 127px;
}

.pb-128 {
  padding-bottom: 128px;
}

.pb-129 {
  padding-bottom: 129px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-131 {
  padding-bottom: 131px;
}

.pb-132 {
  padding-bottom: 132px;
}

.pb-133 {
  padding-bottom: 133px;
}

.pb-134 {
  padding-bottom: 134px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-136 {
  padding-bottom: 136px;
}

.pb-137 {
  padding-bottom: 137px;
}

.pb-138 {
  padding-bottom: 138px;
}

.pb-139 {
  padding-bottom: 139px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-141 {
  padding-bottom: 141px;
}

.pb-142 {
  padding-bottom: 142px;
}

.pb-143 {
  padding-bottom: 143px;
}

.pb-144 {
  padding-bottom: 144px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-146 {
  padding-bottom: 146px;
}

.pb-147 {
  padding-bottom: 147px;
}

.pb-148 {
  padding-bottom: 148px;
}

.pb-149 {
  padding-bottom: 149px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-151 {
  padding-bottom: 151px;
}

.pb-152 {
  padding-bottom: 152px;
}

.pb-153 {
  padding-bottom: 153px;
}

.pb-154 {
  padding-bottom: 154px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-156 {
  padding-bottom: 156px;
}

.pb-157 {
  padding-bottom: 157px;
}

.pb-158 {
  padding-bottom: 158px;
}

.pb-159 {
  padding-bottom: 159px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-161 {
  padding-bottom: 161px;
}

.pb-162 {
  padding-bottom: 162px;
}

.pb-163 {
  padding-bottom: 163px;
}

.pb-164 {
  padding-bottom: 164px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-166 {
  padding-bottom: 166px;
}

.pb-167 {
  padding-bottom: 167px;
}

.pb-168 {
  padding-bottom: 168px;
}

.pb-169 {
  padding-bottom: 169px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-171 {
  padding-bottom: 171px;
}

.pb-172 {
  padding-bottom: 172px;
}

.pb-173 {
  padding-bottom: 173px;
}

.pb-174 {
  padding-bottom: 174px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-176 {
  padding-bottom: 176px;
}

.pb-177 {
  padding-bottom: 177px;
}

.pb-178 {
  padding-bottom: 178px;
}

.pb-179 {
  padding-bottom: 179px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-181 {
  padding-bottom: 181px;
}

.pb-182 {
  padding-bottom: 182px;
}

.pb-183 {
  padding-bottom: 183px;
}

.pb-184 {
  padding-bottom: 184px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-186 {
  padding-bottom: 186px;
}

.pb-187 {
  padding-bottom: 187px;
}

.pb-188 {
  padding-bottom: 188px;
}

.pb-189 {
  padding-bottom: 189px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-191 {
  padding-bottom: 191px;
}

.pb-192 {
  padding-bottom: 192px;
}

.pb-193 {
  padding-bottom: 193px;
}

.pb-194 {
  padding-bottom: 194px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-196 {
  padding-bottom: 196px;
}

.pb-197 {
  padding-bottom: 197px;
}

.pb-198 {
  padding-bottom: 198px;
}

.pb-199 {
  padding-bottom: 199px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-201 {
  padding-bottom: 201px;
}

.pb-202 {
  padding-bottom: 202px;
}

.pb-203 {
  padding-bottom: 203px;
}

.pb-204 {
  padding-bottom: 204px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-206 {
  padding-bottom: 206px;
}

.pb-207 {
  padding-bottom: 207px;
}

.pb-208 {
  padding-bottom: 208px;
}

.pb-209 {
  padding-bottom: 209px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-211 {
  padding-bottom: 211px;
}

.pb-212 {
  padding-bottom: 212px;
}

.pb-213 {
  padding-bottom: 213px;
}

.pb-214 {
  padding-bottom: 214px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-216 {
  padding-bottom: 216px;
}

.pb-217 {
  padding-bottom: 217px;
}

.pb-218 {
  padding-bottom: 218px;
}

.pb-219 {
  padding-bottom: 219px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-221 {
  padding-bottom: 221px;
}

.pb-222 {
  padding-bottom: 222px;
}

.pb-223 {
  padding-bottom: 223px;
}

.pb-224 {
  padding-bottom: 224px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-226 {
  padding-bottom: 226px;
}

.pb-227 {
  padding-bottom: 227px;
}

.pb-228 {
  padding-bottom: 228px;
}

.pb-229 {
  padding-bottom: 229px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-231 {
  padding-bottom: 231px;
}

.pb-232 {
  padding-bottom: 232px;
}

.pb-233 {
  padding-bottom: 233px;
}

.pb-234 {
  padding-bottom: 234px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-236 {
  padding-bottom: 236px;
}

.pb-237 {
  padding-bottom: 237px;
}

.pb-238 {
  padding-bottom: 238px;
}

.pb-239 {
  padding-bottom: 239px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-241 {
  padding-bottom: 241px;
}

.pb-242 {
  padding-bottom: 242px;
}

.pb-243 {
  padding-bottom: 243px;
}

.pb-244 {
  padding-bottom: 244px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-246 {
  padding-bottom: 246px;
}

.pb-247 {
  padding-bottom: 247px;
}

.pb-248 {
  padding-bottom: 248px;
}

.pb-249 {
  padding-bottom: 249px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-251 {
  padding-bottom: 251px;
}

.pb-252 {
  padding-bottom: 252px;
}

.pb-253 {
  padding-bottom: 253px;
}

.pb-254 {
  padding-bottom: 254px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-256 {
  padding-bottom: 256px;
}

.pb-257 {
  padding-bottom: 257px;
}

.pb-258 {
  padding-bottom: 258px;
}

.pb-259 {
  padding-bottom: 259px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-261 {
  padding-bottom: 261px;
}

.pb-262 {
  padding-bottom: 262px;
}

.pb-263 {
  padding-bottom: 263px;
}

.pb-264 {
  padding-bottom: 264px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-266 {
  padding-bottom: 266px;
}

.pb-267 {
  padding-bottom: 267px;
}

.pb-268 {
  padding-bottom: 268px;
}

.pb-269 {
  padding-bottom: 269px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-271 {
  padding-bottom: 271px;
}

.pb-272 {
  padding-bottom: 272px;
}

.pb-273 {
  padding-bottom: 273px;
}

.pb-274 {
  padding-bottom: 274px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-276 {
  padding-bottom: 276px;
}

.pb-277 {
  padding-bottom: 277px;
}

.pb-278 {
  padding-bottom: 278px;
}

.pb-279 {
  padding-bottom: 279px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-281 {
  padding-bottom: 281px;
}

.pb-282 {
  padding-bottom: 282px;
}

.pb-283 {
  padding-bottom: 283px;
}

.pb-284 {
  padding-bottom: 284px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-286 {
  padding-bottom: 286px;
}

.pb-287 {
  padding-bottom: 287px;
}

.pb-288 {
  padding-bottom: 288px;
}

.pb-289 {
  padding-bottom: 289px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-291 {
  padding-bottom: 291px;
}

.pb-292 {
  padding-bottom: 292px;
}

.pb-293 {
  padding-bottom: 293px;
}

.pb-294 {
  padding-bottom: 294px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-296 {
  padding-bottom: 296px;
}

.pb-297 {
  padding-bottom: 297px;
}

.pb-298 {
  padding-bottom: 298px;
}

.pb-299 {
  padding-bottom: 299px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pb-301 {
  padding-bottom: 301px;
}

.pb-302 {
  padding-bottom: 302px;
}

.pb-303 {
  padding-bottom: 303px;
}

.pb-304 {
  padding-bottom: 304px;
}

.pb-305 {
  padding-bottom: 305px;
}

.pb-306 {
  padding-bottom: 306px;
}

.pb-307 {
  padding-bottom: 307px;
}

.pb-308 {
  padding-bottom: 308px;
}

.pb-309 {
  padding-bottom: 309px;
}

.pb-310 {
  padding-bottom: 310px;
}

.pb-311 {
  padding-bottom: 311px;
}

.pb-312 {
  padding-bottom: 312px;
}

.pb-313 {
  padding-bottom: 313px;
}

.pb-314 {
  padding-bottom: 314px;
}

.pb-315 {
  padding-bottom: 315px;
}

.pb-316 {
  padding-bottom: 316px;
}

.pb-317 {
  padding-bottom: 317px;
}

.pb-318 {
  padding-bottom: 318px;
}

.pb-319 {
  padding-bottom: 319px;
}

.pb-320 {
  padding-bottom: 320px;
}

.pb-321 {
  padding-bottom: 321px;
}

.pb-322 {
  padding-bottom: 322px;
}

.pb-323 {
  padding-bottom: 323px;
}

.pb-324 {
  padding-bottom: 324px;
}

.pb-325 {
  padding-bottom: 325px;
}

.pb-326 {
  padding-bottom: 326px;
}

.pb-327 {
  padding-bottom: 327px;
}

.pb-328 {
  padding-bottom: 328px;
}

.pb-329 {
  padding-bottom: 329px;
}

.pb-330 {
  padding-bottom: 330px;
}

.pb-331 {
  padding-bottom: 331px;
}

.pb-332 {
  padding-bottom: 332px;
}

.pb-333 {
  padding-bottom: 333px;
}

.pb-334 {
  padding-bottom: 334px;
}

.pb-335 {
  padding-bottom: 335px;
}

.pb-336 {
  padding-bottom: 336px;
}

.pb-337 {
  padding-bottom: 337px;
}

.pb-338 {
  padding-bottom: 338px;
}

.pb-339 {
  padding-bottom: 339px;
}

.pb-340 {
  padding-bottom: 340px;
}

.pb-341 {
  padding-bottom: 341px;
}

.pb-342 {
  padding-bottom: 342px;
}

.pb-343 {
  padding-bottom: 343px;
}

.pb-344 {
  padding-bottom: 344px;
}

.pb-345 {
  padding-bottom: 345px;
}

.pb-346 {
  padding-bottom: 346px;
}

.pb-347 {
  padding-bottom: 347px;
}

.pb-348 {
  padding-bottom: 348px;
}

.pb-349 {
  padding-bottom: 349px;
}

.pb-350 {
  padding-bottom: 350px;
}

.pb-351 {
  padding-bottom: 351px;
}

.pb-352 {
  padding-bottom: 352px;
}

.pb-353 {
  padding-bottom: 353px;
}

.pb-354 {
  padding-bottom: 354px;
}

.pb-355 {
  padding-bottom: 355px;
}

.pb-356 {
  padding-bottom: 356px;
}

.pb-357 {
  padding-bottom: 357px;
}

.pb-358 {
  padding-bottom: 358px;
}

.pb-359 {
  padding-bottom: 359px;
}

.pb-360 {
  padding-bottom: 360px;
}

.pb-361 {
  padding-bottom: 361px;
}

.pb-362 {
  padding-bottom: 362px;
}

.pb-363 {
  padding-bottom: 363px;
}

.pb-364 {
  padding-bottom: 364px;
}

.pb-365 {
  padding-bottom: 365px;
}

.pb-366 {
  padding-bottom: 366px;
}

.pb-367 {
  padding-bottom: 367px;
}

.pb-368 {
  padding-bottom: 368px;
}

.pb-369 {
  padding-bottom: 369px;
}

.pb-370 {
  padding-bottom: 370px;
}

.pb-371 {
  padding-bottom: 371px;
}

.pb-372 {
  padding-bottom: 372px;
}

.pb-373 {
  padding-bottom: 373px;
}

.pb-374 {
  padding-bottom: 374px;
}

.pb-375 {
  padding-bottom: 375px;
}

.pb-376 {
  padding-bottom: 376px;
}

.pb-377 {
  padding-bottom: 377px;
}

.pb-378 {
  padding-bottom: 378px;
}

.pb-379 {
  padding-bottom: 379px;
}

.pb-380 {
  padding-bottom: 380px;
}

.pb-381 {
  padding-bottom: 381px;
}

.pb-382 {
  padding-bottom: 382px;
}

.pb-383 {
  padding-bottom: 383px;
}

.pb-384 {
  padding-bottom: 384px;
}

.pb-385 {
  padding-bottom: 385px;
}

.pb-386 {
  padding-bottom: 386px;
}

.pb-387 {
  padding-bottom: 387px;
}

.pb-388 {
  padding-bottom: 388px;
}

.pb-389 {
  padding-bottom: 389px;
}

.pb-390 {
  padding-bottom: 390px;
}

.pb-391 {
  padding-bottom: 391px;
}

.pb-392 {
  padding-bottom: 392px;
}

.pb-393 {
  padding-bottom: 393px;
}

.pb-394 {
  padding-bottom: 394px;
}

.pb-395 {
  padding-bottom: 395px;
}

.pb-396 {
  padding-bottom: 396px;
}

.pb-397 {
  padding-bottom: 397px;
}

.pb-398 {
  padding-bottom: 398px;
}

.pb-399 {
  padding-bottom: 399px;
}

.pb-400 {
  padding-bottom: 400px;
}

/*-- Padding Left --*/
.pl-1 {
  padding-left: 1px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-11 {
  padding-left: 11px;
}

.pl-12 {
  padding-left: 12px;
}

.pl-13 {
  padding-left: 13px;
}

.pl-14 {
  padding-left: 14px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-17 {
  padding-left: 17px;
}

.pl-18 {
  padding-left: 18px;
}

.pl-19 {
  padding-left: 19px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-21 {
  padding-left: 21px;
}

.pl-22 {
  padding-left: 22px;
}

.pl-23 {
  padding-left: 23px;
}

.pl-24 {
  padding-left: 24px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-26 {
  padding-left: 26px;
}

.pl-27 {
  padding-left: 27px;
}

.pl-28 {
  padding-left: 28px;
}

.pl-29 {
  padding-left: 29px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-31 {
  padding-left: 31px;
}

.pl-32 {
  padding-left: 32px;
}

.pl-33 {
  padding-left: 33px;
}

.pl-34 {
  padding-left: 34px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-36 {
  padding-left: 36px;
}

.pl-37 {
  padding-left: 37px;
}

.pl-38 {
  padding-left: 38px;
}

.pl-39 {
  padding-left: 39px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-41 {
  padding-left: 41px;
}

.pl-42 {
  padding-left: 42px;
}

.pl-43 {
  padding-left: 43px;
}

.pl-44 {
  padding-left: 44px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-46 {
  padding-left: 46px;
}

.pl-47 {
  padding-left: 47px;
}

.pl-48 {
  padding-left: 48px;
}

.pl-49 {
  padding-left: 49px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-51 {
  padding-left: 51px;
}

.pl-52 {
  padding-left: 52px;
}

.pl-53 {
  padding-left: 53px;
}

.pl-54 {
  padding-left: 54px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-56 {
  padding-left: 56px;
}

.pl-57 {
  padding-left: 57px;
}

.pl-58 {
  padding-left: 58px;
}

.pl-59 {
  padding-left: 59px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-61 {
  padding-left: 61px;
}

.pl-62 {
  padding-left: 62px;
}

.pl-63 {
  padding-left: 63px;
}

.pl-64 {
  padding-left: 64px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-66 {
  padding-left: 66px;
}

.pl-67 {
  padding-left: 67px;
}

.pl-68 {
  padding-left: 68px;
}

.pl-69 {
  padding-left: 69px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-71 {
  padding-left: 71px;
}

.pl-72 {
  padding-left: 72px;
}

.pl-73 {
  padding-left: 73px;
}

.pl-74 {
  padding-left: 74px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-76 {
  padding-left: 76px;
}

.pl-77 {
  padding-left: 77px;
}

.pl-78 {
  padding-left: 78px;
}

.pl-79 {
  padding-left: 79px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-81 {
  padding-left: 81px;
}

.pl-82 {
  padding-left: 82px;
}

.pl-83 {
  padding-left: 83px;
}

.pl-84 {
  padding-left: 84px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-86 {
  padding-left: 86px;
}

.pl-87 {
  padding-left: 87px;
}

.pl-88 {
  padding-left: 88px;
}

.pl-89 {
  padding-left: 89px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-91 {
  padding-left: 91px;
}

.pl-92 {
  padding-left: 92px;
}

.pl-93 {
  padding-left: 93px;
}

.pl-94 {
  padding-left: 94px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-96 {
  padding-left: 96px;
}

.pl-97 {
  padding-left: 97px;
}

.pl-98 {
  padding-left: 98px;
}

.pl-99 {
  padding-left: 99px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-101 {
  padding-left: 101px;
}

.pl-102 {
  padding-left: 102px;
}

.pl-103 {
  padding-left: 103px;
}

.pl-104 {
  padding-left: 104px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-106 {
  padding-left: 106px;
}

.pl-107 {
  padding-left: 107px;
}

.pl-108 {
  padding-left: 108px;
}

.pl-109 {
  padding-left: 109px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-111 {
  padding-left: 111px;
}

.pl-112 {
  padding-left: 112px;
}

.pl-113 {
  padding-left: 113px;
}

.pl-114 {
  padding-left: 114px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-116 {
  padding-left: 116px;
}

.pl-117 {
  padding-left: 117px;
}

.pl-118 {
  padding-left: 118px;
}

.pl-119 {
  padding-left: 119px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-121 {
  padding-left: 121px;
}

.pl-122 {
  padding-left: 122px;
}

.pl-123 {
  padding-left: 123px;
}

.pl-124 {
  padding-left: 124px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-126 {
  padding-left: 126px;
}

.pl-127 {
  padding-left: 127px;
}

.pl-128 {
  padding-left: 128px;
}

.pl-129 {
  padding-left: 129px;
}

.pl-130 {
  padding-left: 130px;
}

/*-- Padding Right --*/
.pr-1 {
  padding-right: 1px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-11 {
  padding-right: 11px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-13 {
  padding-right: 13px;
}

.pr-14 {
  padding-right: 14px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-17 {
  padding-right: 17px;
}

.pr-18 {
  padding-right: 18px;
}

.pr-19 {
  padding-right: 19px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-21 {
  padding-right: 21px;
}

.pr-22 {
  padding-right: 22px;
}

.pr-23 {
  padding-right: 23px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-26 {
  padding-right: 26px;
}

.pr-27 {
  padding-right: 27px;
}

.pr-28 {
  padding-right: 28px;
}

.pr-29 {
  padding-right: 29px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-31 {
  padding-right: 31px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-33 {
  padding-right: 33px;
}

.pr-34 {
  padding-right: 34px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-36 {
  padding-right: 36px;
}

.pr-37 {
  padding-right: 37px;
}

.pr-38 {
  padding-right: 38px;
}

.pr-39 {
  padding-right: 39px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-41 {
  padding-right: 41px;
}

.pr-42 {
  padding-right: 42px;
}

.pr-43 {
  padding-right: 43px;
}

.pr-44 {
  padding-right: 44px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-46 {
  padding-right: 46px;
}

.pr-47 {
  padding-right: 47px;
}

.pr-48 {
  padding-right: 48px;
}

.pr-49 {
  padding-right: 49px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-51 {
  padding-right: 51px;
}

.pr-52 {
  padding-right: 52px;
}

.pr-53 {
  padding-right: 53px;
}

.pr-54 {
  padding-right: 54px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-56 {
  padding-right: 56px;
}

.pr-57 {
  padding-right: 57px;
}

.pr-58 {
  padding-right: 58px;
}

.pr-59 {
  padding-right: 59px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-61 {
  padding-right: 61px;
}

.pr-62 {
  padding-right: 62px;
}

.pr-63 {
  padding-right: 63px;
}

.pr-64 {
  padding-right: 64px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-66 {
  padding-right: 66px;
}

.pr-67 {
  padding-right: 67px;
}

.pr-68 {
  padding-right: 68px;
}

.pr-69 {
  padding-right: 69px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-71 {
  padding-right: 71px;
}

.pr-72 {
  padding-right: 72px;
}

.pr-73 {
  padding-right: 73px;
}

.pr-74 {
  padding-right: 74px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-76 {
  padding-right: 76px;
}

.pr-77 {
  padding-right: 77px;
}

.pr-78 {
  padding-right: 78px;
}

.pr-79 {
  padding-right: 79px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-81 {
  padding-right: 81px;
}

.pr-82 {
  padding-right: 82px;
}

.pr-83 {
  padding-right: 83px;
}

.pr-84 {
  padding-right: 84px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-86 {
  padding-right: 86px;
}

.pr-87 {
  padding-right: 87px;
}

.pr-88 {
  padding-right: 88px;
}

.pr-89 {
  padding-right: 89px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-91 {
  padding-right: 91px;
}

.pr-92 {
  padding-right: 92px;
}

.pr-93 {
  padding-right: 93px;
}

.pr-94 {
  padding-right: 94px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-96 {
  padding-right: 96px;
}

.pr-97 {
  padding-right: 97px;
}

.pr-98 {
  padding-right: 98px;
}

.pr-99 {
  padding-right: 99px;
}

.pr-100 {
  padding-right: 100px;
}

@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 40px;
  }
}

@media (max-width: 991px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 40px;
  }
}

@media (max-width: 991px) {
  .mb-100 {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 767px) {
  .mb-100 {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 991px) {
  .mt-120 {
    margin-top: 70px !important;
  }
}
@media (max-width: 767px) {
  .mt-120 {
    margin-top: 40px !important;
  }
}

@media (max-width: 767px) {
  .mb-60 {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 1199px) {
  .mb-50 {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .mb-50 {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .mt-60 {
    margin-top: 30px !important;
  }
}

@media (max-width: 1399px) {
  .pt-150 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-150 {
    padding-top: 70px;
  }
}
@media (max-width: 767px) {
  .pt-150 {
    padding-top: 50px;
  }
}

@media (max-width: 1399px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-150 {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .pb-150 {
    padding-bottom: 50px;
  }
}

@media (max-width: 1399px) {
  .mt-150 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-150 {
    margin-top: 70px;
  }
}
@media (max-width: 767px) {
  .mt-150 {
    margin-top: 50px;
  }
}

@media (max-width: 1399px) {
  .mb-150 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 991px) {
  .mb-150 {
    margin-bottom: 70px !important;
  }
}
@media (max-width: 767px) {
  .mb-150 {
    margin-bottom: 50px !important;
  }
}

@media (max-width: 767px) {
  .pb-75 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .pt-75 {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .mb-75 {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .mt-75 {
    margin-top: 30px !important;
  }
}

@media (max-width: 767px) {
  .mt-60 {
    margin-top: 30px !important;
  }
}

@media (max-width: 767px) {
  .pb-60 {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 1399px) {
  .pt-120 {
    padding-top: 100px !important;
  }
}
@media (max-width: 1199px) {
  .pt-120 {
    padding-top: 80px !important;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 60px !important;
  }
}
@media (max-width: 991px) {
  .mb-72 {
    margin-bottom: 40px !important;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 40px !important;
  }
}
@media (max-width: 1399px) {
  .pb-120 {
    padding-bottom: 100px !important;
  }
}
@media (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 1399px) {
  .mb-120 {
    margin-bottom: 100px !important;
  }
}
@media (max-width: 1199px) {
  .mb-120 {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 991px) {
  .mb-120 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 767px) {
  .mb-120 {
    margin-bottom: 40px !important;
  }
}
/* ==========================================================================
                                03. Layout
   ========================================================================== */
/* ==========================================================================
   18. Header
   ========================================================================== */
/*----------------------------------------------
    # Header style here
----------------------------------------------*/
.header-section-1 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-section-1.style-two {
  top: 0 !important;
}
.header-section-1.style-two .header-1 {
  background: var(--white);
}
.header-section-1.style-two .header-main {
  height: 120px !important;
}
@media (max-width: 1199px) {
  .header-section-1.style-two .header-main {
    height: 79px !important;
  }
}
.header-section-1.style-two-page .header-1 {
  background: transparent !important;
}

.header-section-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-section-4 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-section-5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1899px) {
  .main-header-wrapper {
    gap: 70px;
  }
}
@media (max-width: 1600px) {
  .main-header-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper {
    padding: 15px 0;
  }
}
.main-header-wrapper .main-header-items {
  width: 100%;
}
.main-header-wrapper .main-header-items .header-contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  border: 1px solid #d4dced;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    display: none;
  }
}
@media (max-width: 575px) {
  .main-header-wrapper .main-header-items .header-contact-info-area {
    gap: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  position: relative;
  padding: 30px 0;
  border-right: 1px solid #d4dced;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items {
    border-right: none;
    padding-right: 0;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--theme);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  position: relative;
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  content: "";
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid rgba(30, 32, 35, 0.1);
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .icon::before {
    width: 54px;
    height: 54px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content p {
  color: var(--text-color);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
  font-size: 20px;
  color: var(--title);
  text-transform: initial;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 {
    font-size: 18px;
  }
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items .content h3 a {
  color: var(--title);
}
.main-header-wrapper .main-header-items .header-contact-info-area .contact-info-items.style-2 {
  border: none;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .main-header-wrapper .main-header-items .header-contact-info-area .header-button .theme-btn {
    font-size: 14px;
    padding: 24px 27px;
  }
}

.header-1 {
  background-color: transparent;
}
.header-1 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  margin: 0 73px;
  background: transparent !important;
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 1199px) {
  .header-1 .mega-menu-wrapper .mean__menu-wrapper {
    display: none;
  }
}
@media (max-width: 991px) {
  .header-1 .mega-menu-wrapper .simple-btn {
    display: none;
  }
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    height: 45px;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-left .logo {
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  padding: 12px 35px;
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main .header-left .logo {
    padding: 5px 10px;
    text-align: center;
  }
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main .header-left .logo img {
    width: 80%;
  }
}
.header-1 .mega-menu-wrapper .header-main .main-menu {
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  padding: 17px 34px;
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
  padding: 0;
  color: var(--theme-5);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 12px;
  }
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-1 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-1 .mega-menu-wrapper .header-main .main-menu ul li .submenu a {
  padding: 12px 30px;
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 450px) {
  .header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle {
    margin-left: 0;
    gap: 5px;
    width: 45px;
    height: 45px;
  }
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle span {
  width: 24px;
  height: 1px;
  background: var(--theme-5);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  background: var(--theme-2);
}
.header-1 .mega-menu-wrapper .header-main .header-right .header__canvas__hamburger .sidebar__toggle:hover span {
  background: var(--white);
}
.header-1 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-1 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-1 .header-right {
    gap: 5px !important;
  }
}
.header-1 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-1 .header-right .header-button {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-right .header__canvas__hamburger .sidebar__toggle {
    display: none;
  }
}
.header-1 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-1 .header-right .sidebar__toggle {
    color: var(--theme);
  }
}

.header-2 {
  background-color: transparent;
}
.header-2.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.header-2 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 120px;
  margin: 0 75px;
}
@media (max-width: 470px) {
  .header-2 .mega-menu-wrapper {
    margin: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper {
    padding: 0;
  }
}
.header-2 .mega-menu-wrapper .header-main {
  height: 65px;
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-2 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1399px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 1899px) {
  .header-2 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-2 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-2 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-2 .header-right {
    gap: 5px !important;
  }
}
@media (min-width: 1200px) {
  .header-2 .header-right .header__canvas__hamburger {
    display: none;
  }
}
.header-2 .header-right .header__canvas__hamburger .sidebar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  border-radius: 90px;
  border: 1px solid var(--border-color-1);
  background: var(--white);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 450px) {
  .header-2 .header-right .header__canvas__hamburger .sidebar__toggle {
    margin-left: 0;
    gap: 5px;
    width: 45px;
    height: 45px;
  }
}
.header-2 .header-right .header__canvas__hamburger .sidebar__toggle span {
  width: 24px;
  height: 1px;
  background: var(--theme-5);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.header-2 .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  background: var(--theme-2);
}
.header-2 .header-right .header__canvas__hamburger .sidebar__toggle:hover span {
  background: var(--white);
}
.header-2 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-2 .header-right .header-button {
    display: none;
  }
}
.header-2 .header-right z .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-2 .header-right z .sidebar__toggle {
    color: var(--theme);
  }
}

.header-3 {
  background-color: transparent;
}
.header-3 .mega-menu-wrapper {
  position: relative;
  z-index: 1;
  background: transparent;
}
@media (max-width: 470px) {
  .header-3 .mega-menu-wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper {
    padding: 0;
  }
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .header-3 .mega-menu-wrapper .header-main {
    gap: 0;
  }
}
@media (max-width: 1199px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu {
    display: none;
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
  color: var(--white);
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li a i {
  color: var(--white);
}
@media (max-width: 1399px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li a {
    font-size: 14px;
    color: var(--white);
  }
}
.header-3 .mega-menu-wrapper .header-main .main-menu ul li .submenu li a {
  color: var(--text-color);
}
@media (max-width: 1899px) {
  .header-3 .mega-menu-wrapper .header-main .main-menu ul li .has-homemenu {
    left: -50px;
  }
}
.header-3 .header-right {
  gap: 5px !important;
}
@media (max-width: 1399px) {
  .header-3 .header-right {
    gap: 3px !important;
  }
}
@media (max-width: 450px) {
  .header-3 .header-right {
    gap: 5px !important;
  }
}
.header-3 .header-right .header-button {
  margin-left: 25px;
}
@media (max-width: 767px) {
  .header-3 .header-right .header-button {
    display: none;
  }
}
.header-3 .header-right .sidebar__toggle {
  color: var(--white);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-3 .header-right .sidebar__toggle svg path {
    fill: var(--theme);
  }
}

.header-4 {
  background-color: transparent;
}
.header-4 .header-main {
  height: 98px;
}
@media (max-width: 500px) {
  .header-4 .header-left .logo img {
    width: 70% !important;
  }
}
.header-4 .mega-menu-wrapper {
  margin: 0 30px;
  position: relative;
}
@media (max-width: 500px) {
  .header-4 .mega-menu-wrapper {
    margin: 0 10px;
  }
}
.header-4 .mega-menu-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: url("../images/shape/header4BottomBorder.svg") no-repeat center bottom;
  background-size: 100% 6px;
  pointer-events: none;
}
.header-4 .header-right {
  gap: 5px !important;
}
.header-4 .header-right .header__canvas__hamburger .sidebar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 500px) {
  .header-4 .header-right .header__canvas__hamburger .sidebar__toggle {
    font-size: 14px;
  }
}
.header-4 .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  color: var(--theme-3);
}
.header-4 .header-right .sidebar__toggle {
  color: var(--black);
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .header-4 .header-right .sidebar__toggle {
    color: var(--black);
  }
}
@media (max-width: 500px) {
  .header-4 .header-right .sidebar__toggle {
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .header-5 .header-left .logo img {
    width: 70% !important;
  }
}
.header-5 .header-main {
  height: 96px;
  margin: 0 75px;
  background-color: var(--white);
  border-radius: 0 0 15px 15px;
  padding: 0 35px;
}
@media (max-width: 767px) {
  .header-5 .header-main {
    margin: 0 20px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  .header-5 .header-main {
    padding: 0 10px;
  }
}
@media (max-width: 1199px) {
  .header-5 .header-main .header-middle {
    display: none;
  }
}
.header-5 .header-main .main-menu ul li a {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase !important;
}
.header-5 .header-main .main-menu ul li .submenu {
  top: 110% !important;
}
.header-5 .mega-menu-wrapper {
  position: relative;
}
.header-5 .header-right {
  gap: 5px !important;
}
.header-5 .header-right .meta-text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 35px;
}
@media (max-width: 767px) {
  .header-5 .header-right .meta-text {
    display: none;
  }
}
.header-5 .header-right .meta-text span {
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}
.header-5 .header-right .sign-up-btn {
  background: #C4F112;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  padding: 35px 15px;
}
@media (max-width: 767px) {
  .header-5 .header-right .sign-up-btn {
    padding: 18px 15px;
  }
}
@media (max-width: 450px) {
  .header-5 .header-right .sign-up-btn {
    display: none;
  }
}
.header-5 .header-right .header__canvas__hamburger .sidebar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.4s ease-in-out;
}
.header-5 .header-right .header__canvas__hamburger .sidebar__toggle:hover {
  color: var(--theme-3);
}
.header-5 .header-right .sidebar__toggle {
  color: var(--black);
  margin-left: 35px;
}
@media (max-width: 1399px) {
  .header-5 .header-right .sidebar__toggle {
    color: var(--black);
  }
}

.header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-right {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-right {
    gap: 5px;
  }
  .header-right .theme-btn {
    display: none;
  }
}
.header-right .search-icon {
  color: var(--title);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--title);
  font-size: 20px;
  font-weight: 900;
  border-right: 1px solid var(--title);
  padding-right: 25px;
}
.header-right .header__cart {
  padding: 0 8px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .header-right .header__cart {
    padding: 0px 10px;
  }
}
.header-right .header__cart:hover > a {
  color: var(--theme);
}
.header-right .header__cart:hover .header__right__dropdown__wrapper {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: 0.3s;
}
.header-right .header__cart > a {
  font-size: 18px;
  color: var(--text-color);
  padding: 15px 0;
  position: relative;
}
.header-right .header__cart > a::before {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  position: absolute;
  top: 0;
  right: -10px;
  width: 15px;
  height: 15px;
  padding: 0 4px;
  content: "3";
  text-align: center;
  border-radius: 100%;
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .header-right .header__cart > a::before {
    top: 7px;
    right: 11px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper {
  position: absolute;
  width: 300px;
  max-height: 700px;
  padding: 20px;
  border-bottom: 3px solid var(--border);
  background-color: var(--white);
  box-shadow: 0 0 50px 10px rgba(95, 45, 237, 0.15);
  top: 100%;
  left: -235px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
@media (max-width: 767px) {
  .header-right .header__cart .header__right__dropdown__wrapper {
    left: -220px;
  }
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close {
  position: absolute;
  right: 0;
  top: -10px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__close a :hover {
  color: var(--theme-2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner {
  border-bottom: 1px solid var(--border-2);
  margin-bottom: 30px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img {
  width: 30%;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img a {
  display: inline-block;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__img img {
  width: 100%;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content {
  text-align: left;
  width: 70%;
  margin-left: 15px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--title);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content a:hover {
  color: var(--theme-2);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p {
  color: var(--title);
  font-size: 14px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__inner .single__header__right__dropdown .header__right__dropdown__content p span {
  color: var(--theme);
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price {
  text-align: left;
  font-size: 17px;
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .dropdown__price span {
  float: right;
  color: var(--theme);
  font-weight: 700;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 10px 0px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color {
  border: 1px solid var(--theme-2);
  margin-bottom: 20px;
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.white__color:hover {
  background: var(--theme-2);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color {
  background: var(--title);
  color: var(--white);
}
.header-right .header__cart .header__right__dropdown__wrapper .header__right__dropdown__button a.blue__color:hover {
  background: var(--theme-2);
}

.sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--text-color);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  height: 90px;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 25px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  padding: 18px 0;
  text-align: left;
  position: relative;
  color: var(--title);
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px;
  /* 160% */
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li a {
    letter-spacing: 1px;
  }
}
.header-main .main-menu ul li a i {
  color: var(--title);
  font-family: var(--fa);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.header-main .main-menu ul li a:hover, .header-main .main-menu ul li a.active {
  color: var(--theme-2) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  width: max-content;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--title);
  border-top: 6px solid var(--theme);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 999;
  color: var(--title);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  color: var(--title);
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}
.header-main .main-menu ul li .submenu li a:hover {
  background-color: transparent !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  background: var(--white);
  color: var(--theme) !important;
  padding: 11px 35px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-2);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 565px;
  padding: 30px 24px 10px 24px;
  opacity: 0;
  left: -100px;
  visibility: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  position: relative;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--title) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--theme-2);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}
.header-main .main-menu ul li:hover > a {
  color: var(--title);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--title);
  font-size: 18px;
}
@media (max-width: 470px) {
  .header-main .header-right .search-icon {
    display: none;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--title);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.sticky-bg-dark {
  background-color: #161921;
}
.sticky.sticky-bg-dark .header-main .main-menu ul li a {
  color: var(--white) !important;
}
.sticky.header-1 .logo {
  display: block;
}
.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-1 .header-main .main-menu ul li a.active, .sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-1 {
    padding: 0;
  }
}
.sticky.header-1 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-2 {
  padding: 0 10px;
  background: var(--white);
}
.sticky.header-2 .logo {
  display: block;
}
.sticky.header-2 .header-main {
  padding-top: 0;
}
.sticky.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--title);
}
.sticky.header-2 .header-main .main-menu ul li a.active, .sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-2 {
    padding: 0;
  }
}
.sticky.header-2 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-3 {
  padding: 0 10px;
  background-color: #b8643e;
}
.sticky.header-3 .logo {
  display: block;
}
.sticky.header-3 .header-main {
  padding: 8px 0;
}
.sticky.header-3 .header-main .main-menu ul li .submenu li a {
  color: var(--title);
}
.sticky.header-3 .header-main .main-menu ul li a {
  color: var(--white);
}
.sticky.header-3 .header-main .main-menu ul li a.active, .sticky.header-3 .header-main .main-menu ul li a:hover {
  color: var(--title) !important;
}
@media (max-width: 450px) {
  .sticky.header-3 {
    padding: 0;
  }
}
.sticky.header-3 .theme-btn {
  background: var(--white);
  color: var(--title);
}
.sticky.header-4 .logo {
  display: none;
}
.sticky.header-4 .mega-menu-wrapper::after {
  display: none;
}
.sticky.header-4 .sidebar__toggle {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px !important;
  border-radius: 20px;
  background: #fff !important;
}
.sticky.header-5 .mega-menu-wrapper::after {
  display: none;
}
.sticky.header-5 .sidebar__toggle {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px !important;
  border-radius: 20px;
  background: #fff !important;
}

.offcanvas__info {
  background: var(--title) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  background: black;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
  background-color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .title {
  color: var(--theme-2);
  font-size: 24px;
  line-height: normal;
  font-family: var(--font-primary);
  margin: 0px;
  padding: 0;
  color: var(--theme-5);
  transition: all 0.4s ease-in-out;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme-2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: var(--theme);
  color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--title) !important;
}

.offcanvas-header-1 {
  width: 100% !important;
  height: 100vh;
  border-left: 0 !important;
  background: transparent !important;
  top: 0 !important;
  right: 0 !important;
  transform: translateY(0) !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.6s ease;
}
.offcanvas-header-1.info-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.offcanvas-header-1.info-open .offcanvas__wrapper .offcanvas__content .offcanvas-left {
  top: 0;
  transform: scale(1, 1);
}
.offcanvas-header-1.info-open .offcanvas__wrapper .offcanvas__content .offcanvas-right {
  top: 0;
}
.offcanvas-header-1 .offcanvas__wrapper {
  padding: 0 !important;
  background: transparent;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas__top {
  position: fixed;
  right: 35px;
  top: 35px;
  z-index: 100000;
  margin-bottom: 40px !important;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left {
  position: fixed;
  left: 0;
  top: -100%;
  width: 60%;
  height: 100vh;
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 80px 50px;
  background: var(--white);
  transform: scale(1, 0);
  transform-origin: top center;
  transition: transform 0.6s ease-in-out, top 0.6s ease-in-out;
}
@media (max-width: 1199px) {
  .offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left {
    padding: 30px;
  }
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .logo {
  margin-bottom: 120px;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu {
  width: 100%;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container {
  width: 100%;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container a.meanmenu-reveal {
  display: none !important;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: transparent;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav {
  margin-top: 0;
  background: transparent;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav > ul {
  display: block !important;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul {
  display: block !important;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li {
  float: none;
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li a {
  float: none;
  width: 100%;
  padding: 16px 0;
  color: var(--title-color) !important;
  font-family: var(--font-secondary);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-top: 0 !important;
  border-bottom: 1px solid var(--border) !important;
}
@media (max-width: 767px) {
  .offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li a {
    font-size: 22px;
    padding: 14px 0;
  }
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li a:hover, .offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li a.active {
  color: var(--theme) !important;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li a.mean-expand {
  width: 30px;
  height: 30px;
  line-height: 30px;
  top: 12px;
  right: 0;
  margin: 0;
  padding: 0 !important;
  color: var(--title-color) !important;
  border: 1px solid var(--border) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  background: var(--white);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li .submenu {
  margin-top: 8px;
  padding-bottom: 8px;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li .submenu li {
  margin-bottom: 0;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-left .mobile-menu .mean-container .mean-nav ul li .submenu li a {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-color) !important;
  border-bottom: 0 !important;
  padding: 8px 0 8px 16px;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right {
  position: fixed;
  right: 0;
  top: 100%;
  width: 40%;
  height: 100vh;
  z-index: 9999;
  padding: 50px 100px;
  background: var(--bg-color);
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  justify-content: center;
  transition: top 0.6s ease-in-out;
}
@media (max-width: 1199px) {
  .offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right {
    display: none;
  }
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .text {
  color: var(--text-color);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact h4 {
  color: var(--title-color);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact ul li a {
  color: var(--text-color);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact .gt-theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  margin-top: 10px;
  border: 1px solid var(--title-color);
  background: transparent;
  color: var(--title-color);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact .gt-theme-btn:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact .social-icon {
  justify-content: flex-start;
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact .social-icon a {
  background: var(--white);
  color: var(--title-color);
  border-color: var(--border);
}
.offcanvas-header-1 .offcanvas__wrapper .offcanvas__content .offcanvas-right .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
  color: var(--white) !important;
}

.offcanvas-header-1 .mean-container .mean-nav ul li a,
.offcanvas-header-1 .mean-container .mean-nav ul li a.mean-expand,
.offcanvas-header-1 .mean-container .mean-nav ul li .submenu li a {
  color: var(--black) !important;
}

.offcanvas-header-1:not(.info-open) {
  visibility: visible;
  transition-delay: 0s, 0.6s;
  pointer-events: none;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.search-form-wrapper {
  position: fixed;
  width: 100%;
  height: 0;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.search-form-wrapper.active {
  visibility: visible;
  opacity: 1;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.search-form-wrapper .search-form-inner {
  width: 768px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.search-form-wrapper .search-form-inner .search-content-filed {
  display: flex;
  align-items: center;
  gap: 30px;
}
.search-form-wrapper .search-form-inner .search-content-filed .search-close {
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
}
.search-form-wrapper .search-form-inner .search-form {
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(208, 225, 242, 0.3);
  padding: 15px 30px;
  border-radius: 15px;
  flex: 1;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input .theme-btn {
  display: inline-block;
  height: 100%;
  width: auto;
  padding: 12px 40px;
  background: var(--theme);
  border-radius: 10px;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input .search-icon {
  display: flex;
}
.search-form-wrapper .search-form-inner .search-form .search-form-input button.submit-search-btn {
  padding: 15px 24px !important;
}
.search-form-wrapper .search-form-inner .search-form input[type=search] {
  margin-top: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 15px 12px !important;
  flex-grow: 1;
}

.breadcumb {
  background-color: #efefef;
}
.breadcumb .breadcumb-wrapper {
  position: relative;
  z-index: 99;
}
.breadcumb .breadcumb-wrapper .breadcumb-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.breadcumb .breadcumb-wrapper .breadcumb-bg img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .breadcumb .breadcumb-wrapper .breadcumb-bg img {
    max-width: 100%;
    height: 403px;
  }
}
.breadcumb .breadcumb-wrapper .social-info {
  position: absolute;
  z-index: 99;
  left: 52px;
  bottom: 150px;
}
.breadcumb .breadcumb-wrapper .social-info ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left top;
  margin: 0;
  padding: 0;
}
.breadcumb .breadcumb-wrapper .social-info ul li {
  display: flex;
  align-items: center;
}
.breadcumb .breadcumb-wrapper .social-info ul li a {
  color: var(--title);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.breadcumb .breadcumb-wrapper .social-info ul li:not(:last-child)::after {
  content: "-";
  color: var(--title);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin: 0 12px;
}
@media (max-width: 1199px) {
  .breadcumb .breadcumb-wrapper .social-info {
    display: none;
  }
}
.breadcumb .breadcumb-wrapper .page-heading {
  padding: 290px 0 146px 0;
}
@media (max-width: 991px) {
  .breadcumb .breadcumb-wrapper .page-heading {
    padding: 185px 0 100px 0;
  }
}
.breadcumb .breadcumb-wrapper .page-heading h2 {
  color: var(--title);
  margin-bottom: 14px;
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
}
@media (max-width: 1399px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    font-size: 65.25px;
  }
}
@media (max-width: 991px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    font-size: 54.25px;
    line-height: 60px;
  }
}
@media (max-width: 767px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    font-size: 48.25px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    font-size: 39.25px;
    line-height: 43px;
  }
}
@media (max-width: 470px) {
  .breadcumb .breadcumb-wrapper .page-heading h2 {
    font-size: 34.25px;
    line-height: 40px;
  }
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  gap: 19px;
}
@media (max-width: 575px) {
  .breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--title);
  font-family: var(--font-primary);
  font-size: 23.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: -0.648px;
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--title);
  font-family: var(--font-primary);
  font-size: 23.625px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: -0.648px;
  transition: all 0.4s ease-in-out;
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-2);
}
.breadcumb .breadcumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--theme);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-left: 19px;
}

/* ==========================================================================
   19. Footer
   ========================================================================== */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer-wrapper.style-one .footer-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 75px 154px 75px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-one .footer-top-content {
    padding: 0 50px 154px 50px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-one .footer-top-content {
    flex-direction: column;
    align-items: start;
    padding: 0 50px 80px 50px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-one .footer-top-content {
    padding: 0 10px 40px 10px;
  }
}
@media (max-width: 1700px) {
  .footer-wrapper.style-one .footer-top-content .footer-title span svg {
    width: 100px;
    height: 150px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-one .footer-top-content .footer-title span svg {
    width: 80px;
    height: 120px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-one .footer-top-content .footer-title span svg {
    width: 50px;
    height: 80px;
  }
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .text {
  color: var(--theme-5);
  font-family: Outfit;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  max-width: 549px;
  margin-bottom: 35px;
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .form-group {
  position: relative;
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .form-control {
  width: 633px;
  height: 86px;
  border-radius: 15px;
  background: #fff;
  padding: 29px 90px 29px 30px;
  color: var(--theme-5);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .form-control {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .form-control {
    height: 63px;
    font-size: 20px;
  }
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .form-control:focus {
  box-shadow: none;
  border: 1px solid var(--theme);
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .form-control::placeholder {
  color: var(--theme-5);
}
.footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .icon {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .footer-wrapper.style-one .footer-top-content .footer-right-top .form-group .icon svg {
    width: 30px;
    height: 30px;
  }
}
.footer-wrapper.style-one .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.footer-wrapper.style-one .footer-bottom-content .row .col-xl-3 {
  position: relative;
}
.footer-wrapper.style-one .footer-bottom-content .row .col-xl-3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
}
.footer-wrapper.style-one .footer-bottom-content .row .col-xl-3:first-child::before {
  display: none;
}
.footer-wrapper.style-one .footer-bottom-content .row .col-xl-3::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 5px, transparent 5px, transparent 10px);
}
.footer-wrapper.style-one .footer-bottom-content .row .col-xl-3:first-child::after {
  display: none;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 130px;
  padding-bottom: 35px;
}
@media (max-width: 1199px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items.ml-131 {
    margin-left: 10px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items.ml-135 {
    margin-left: 10px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items.ml-75 {
    margin-left: 10px;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items.pt-35 {
    padding-top: 15px;
  }
}
@media (max-width: 991px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-one .footer-bottom-content .footer-items {
    padding-bottom: 15px;
  }
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .title {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content a {
  display: block;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content .text {
  color: var(--theme-5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content ul {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content ul li a {
  color: var(--theme-5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content .text-1 {
  max-width: 265px;
  color: var(--theme-5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.footer-wrapper.style-one .footer-bottom-content .footer-items .content .text-1 a {
  display: inline-block;
  color: var(--theme-5);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.footer-wrapper.style-three {
  background: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}
.footer-wrapper.style-three .footer-three-left {
  position: relative;
  min-height: 700px;
  z-index: 1;
  margin-left: 75px;
  margin-bottom: -130px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-three .footer-three-left {
    min-height: 450px;
    margin-left: 30px;
    margin-bottom: -90px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-three .footer-three-left {
    min-height: 800px;
  }
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-left {
    min-height: 571px;
  }
}
@media (max-width: 470px) {
  .footer-wrapper.style-three .footer-three-left {
    min-height: 790px;
  }
}
.footer-wrapper.style-three .footer-three-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr) minmax(0, 1.05fr);
  gap: 42px;
}
@media (max-width: 767px) {
  .footer-wrapper.style-three .footer-three-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-info-grid {
    gap: 10px;
    row-gap: 30px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-three .footer-three-info-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-wrapper.style-three .footer-three-widget .title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 45px;
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-widget .title {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.footer-wrapper.style-three .footer-three-widget p,
.footer-wrapper.style-three .footer-three-widget li,
.footer-wrapper.style-three .footer-three-widget a {
  color: var(--gray2);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-widget p,
  .footer-wrapper.style-three .footer-three-widget li,
  .footer-wrapper.style-three .footer-three-widget a {
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-three .footer-three-widget p,
  .footer-wrapper.style-three .footer-three-widget li,
  .footer-wrapper.style-three .footer-three-widget a {
    font-size: 16px;
  }
}
.footer-wrapper.style-three .footer-three-widget p {
  max-width: 361px;
  margin-bottom: 37px;
}
.footer-wrapper.style-three .footer-three-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-wrapper.style-three .footer-three-widget li {
  margin-bottom: 16px;
}
.footer-wrapper.style-three .footer-three-widget li:last-child {
  margin-bottom: 0;
}
.footer-wrapper.style-three .footer-three-widget a {
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-wrapper.style-three .footer-three-widget a:hover {
  color: var(--white);
}
.footer-wrapper.style-three .footer-three-contact li {
  margin-bottom: 0;
}
.footer-wrapper.style-three .footer-three-contact .contact-links {
  margin-bottom: 34px;
}
.footer-wrapper.style-three .footer-three-contact .contact-links a {
  display: block;
  margin-bottom: 6px;
  color: #b9bcc3;
}
.footer-wrapper.style-three .footer-three-contact .contact-links a:last-child {
  margin-bottom: 0;
}
.footer-wrapper.style-three .footer-three-contact .contact-links a:first-child {
  color: var(--white);
}
.footer-wrapper.style-three .footer-three-contact .footer-three-office h5 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 15px;
}
.footer-wrapper.style-three .footer-three-contact .footer-three-office p {
  max-width: 201px;
  margin-bottom: 0;
}
.footer-wrapper.style-three .footer-three-social {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-wrapper.style-three .footer-three-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.footer-wrapper.style-three .footer-three-social a svg path {
  fill: var(--white);
}
.footer-wrapper.style-three .footer-three-social a:hover {
  border-color: var(--theme-3);
  background: var(--theme-3);
}
.footer-wrapper.style-three .footer-big-logo {
  width: min(108%, 1176px);
  margin-top: 29px;
  margin-left: -8px;
  margin-bottom: -46px;
}
@media (max-width: 1700px) {
  .footer-wrapper.style-three .footer-big-logo {
    margin-top: 112px;
    width: min(100%, 1176px);
  }
}
@media (max-width: 1600px) {
  .footer-wrapper.style-three .footer-big-logo {
    margin-top: 112px;
    width: min(100%, 1176px);
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-three .footer-big-logo {
    margin-top: 161px;
  }
}
@media (max-width: 1199px) {
  .footer-wrapper.style-three .footer-big-logo {
    margin-top: 102px;
  }
}
@media (max-width: 991px) {
  .footer-wrapper.style-three .footer-big-logo {
    display: none;
  }
}
.footer-wrapper.style-three .footer-big-logo img,
.footer-wrapper.style-three .footer-big-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
.footer-wrapper.style-three .footer-three-right {
  border-radius: 0 35px 0 0;
  background: #0e0e0e;
  padding: 120px 75px 95px 113px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-three .footer-three-right {
    padding: 30px;
  }
}
.footer-wrapper.style-three .footer-three-subscribe-content .title {
  color: var(--white);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  font-family: var(--font-body);
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .footer-wrapper.style-three .footer-three-subscribe-content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.footer-wrapper.style-three .footer-three-subscribe-content p {
  color: var(--gray2);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 30px;
}
.footer-wrapper.style-three .footer-three-subscribe-form .form-control {
  height: 57px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  padding: 17px 25px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}
.footer-wrapper.style-three .footer-three-subscribe-form .form-control:focus {
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.25);
}
.footer-wrapper.style-three .footer-three-subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.68);
}
.footer-wrapper.style-three .footer-three-subscribe-form .theme-btn {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  border-radius: 10px;
  background: var(--theme-3);
  padding: 17px 45px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-subscribe-form .theme-btn {
    padding: 10px;
  }
}
.footer-wrapper.style-three .footer-three-subscribe-form .theme-btn:hover {
  background: var(--white);
  color: var(--black);
}
.footer-wrapper.style-three .footer-three-gallery {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 500px) {
  .footer-wrapper.style-three .footer-three-gallery {
    margin-top: 40px;
  }
}
.footer-wrapper.style-three .footer-three-gallery .thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  background: #0f1117;
}
.footer-wrapper.style-three .footer-three-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer-wrapper.style-three .footer-three-gallery .thumb .play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  transition: 0.3s;
}
.footer-wrapper.style-three .footer-three-gallery .thumb:hover .play {
  visibility: visible;
  opacity: 1;
}
.footer-wrapper.style-three .footer-three-copy {
  border-top: 1px dotted rgba(255, 255, 255, 0.1);
  border-radius: 35px 35px 0 0;
  background: var(--black);
  text-align: center;
  padding: 35px;
}
.footer-wrapper.style-three .footer-three-copy p {
  margin: 0;
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--white);
}
.footer-wrapper.style-three .footer-three-copy p a {
  color: var(--white);
}
.footer-wrapper.style-four {
  background: var(--black);
  position: relative;
}
.footer-wrapper.style-four .footer-top-content {
  padding: 35px 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .footer-top-content {
    padding: 20px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .footer-top-content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-four .footer-top-content {
    display: none;
  }
}
.footer-wrapper.style-four .footer-top-content .menu ul,
.footer-wrapper.style-four .footer-top-content .social-icon ul {
  display: flex;
  align-self: center;
  gap: 45px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-four .footer-top-content .menu ul,
  .footer-wrapper.style-four .footer-top-content .social-icon ul {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-four .footer-top-content .menu ul,
  .footer-wrapper.style-four .footer-top-content .social-icon ul {
    gap: 10px;
  }
}
.footer-wrapper.style-four .footer-top-content .menu ul li a,
.footer-wrapper.style-four .footer-top-content .social-icon ul li a {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .footer-top-content .menu ul li a,
  .footer-wrapper.style-four .footer-top-content .social-icon ul li a {
    font-size: 12px;
  }
}
.footer-wrapper.style-four .footer-main-content {
  margin: 130px 0;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-four .footer-main-content {
    margin: 80px 0;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-four .footer-main-content {
    margin: 40px 0;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-four .footer-main-content {
    margin-top: 0;
    padding-top: 40px;
  }
}
.footer-wrapper.style-four .footer-main-content .footer-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.footer-wrapper.style-four .footer-main-content .footer-title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px;
  max-width: 866px;
  margin: 0 auto;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .footer-main-content .footer-title {
    font-size: 48px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-four .footer-main-content .footer-title {
    font-size: 40px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-four .footer-main-content .footer-title {
    font-size: 26px;
  }
}
.footer-wrapper.style-four .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 75px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1600px) {
  .footer-wrapper.style-four .footer-bottom {
    padding: 20px;
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .footer-bottom {
    flex-direction: column;
  }
}
.footer-wrapper.style-four .right-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 196px;
}
@media (max-width: 1899px) {
  .footer-wrapper.style-four .right-content {
    gap: 90px;
  }
}
@media (max-width: 1700px) {
  .footer-wrapper.style-four .right-content {
    gap: 50px;
  }
}
@media (max-width: 1600px) {
  .footer-wrapper.style-four .right-content {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .right-content {
    flex-direction: column-reverse;
  }
}
.footer-wrapper.style-four .copy-text {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 450px) {
  .footer-wrapper.style-four .copy-text {
    text-align: center;
  }
}
.footer-wrapper.style-four .copy-text a {
  color: var(--white);
}
.footer-wrapper.style-four .contact {
  display: flex;
  align-items: center;
  gap: 196px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .contact {
    gap: 20px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-four .contact {
    flex-direction: column;
  }
}
.footer-wrapper.style-four .email p,
.footer-wrapper.style-four .phone p {
  color: #999;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-four .email p,
  .footer-wrapper.style-four .phone p {
    text-align: center;
  }
}
.footer-wrapper.style-four .email a,
.footer-wrapper.style-four .phone a {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-four .email a,
  .footer-wrapper.style-four .phone a {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-four .email a,
  .footer-wrapper.style-four .phone a {
    font-size: 18px;
  }
}
.footer-wrapper.style-five {
  background: var(--black);
  padding-top: 90px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-five .footer-top-content {
    padding: 0 20px;
  }
}
@media (max-width: 470px) {
  .footer-wrapper.style-five .footer-top-content {
    padding: 0;
  }
}
.footer-wrapper.style-five .footer-top-content .logo-icon {
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-top-content .logo-icon {
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  .footer-wrapper.style-five .footer-top-content .logo-icon img {
    max-width: 30%;
  }
}
.footer-wrapper.style-five .footer-top-content .footer-title {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  max-width: 653px;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-five .footer-top-content .footer-title {
    font-size: 46px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-five .footer-top-content .footer-title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-top-content .footer-title {
    font-size: 28px;
  }
}
.footer-wrapper.style-five .footer-top-content .social-icon ul {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-wrapper.style-five .footer-top-content .social-icon ul li a {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-wrapper.style-five .footer-top-content .social-icon ul li a:hover {
  background: var(--theme-4);
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap {
  border-radius: 10px;
  background: var(--white);
  padding: 60px;
  margin-bottom: 94px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap {
    padding: 20px;
  }
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content {
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content {
    font-size: 46px;
    line-height: normal;
    margin-bottom: 30px;
  }
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content .sub-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
}
@media (max-width: 1199px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content .title {
    font-size: 46px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .heading-content .title {
    font-size: 28px;
  }
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group {
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group {
    margin-bottom: 15px;
  }
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group:last-child {
  margin-bottom: 0;
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group .form-content {
  border-radius: 6px !important;
  background: #F1F1F1 !important;
  width: 100%;
  border: 1px solid transparent;
  padding: 19px 30px;
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group .form-content {
    padding: 10px 15px;
  }
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group .form-content::placeholder {
  color: #464646;
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group .form-content:focus {
  border: 1px solid var(--theme-4);
  box-shadow: none;
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group .form-content:focus-visible {
  outline: none;
}
.footer-wrapper.style-five .footer-top-content .form-content-wrap .form-group textarea {
  min-height: 172px;
}
.footer-wrapper.style-five .footer-modern-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  position: relative;
  padding: 0 160px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-five .footer-modern-grid {
    padding: 0 60px;
  }
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-modern-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (max-width: 575px) {
  .footer-wrapper.style-five .footer-modern-grid {
    padding: 0 20px;
  }
}
@media (max-width: 450px) {
  .footer-wrapper.style-five .footer-modern-grid {
    grid-template-columns: 1fr;
  }
}
.footer-wrapper.style-five .footer-modern-grid::before, .footer-wrapper.style-five .footer-modern-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;
  pointer-events: none;
}
.footer-wrapper.style-five .footer-modern-grid::before {
  top: 0;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 7px) top left/100% 1px no-repeat, repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 7px) bottom left/100% 1px no-repeat;
}
.footer-wrapper.style-five .footer-modern-grid::after {
  bottom: 0;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 7px) top left/100% 1px no-repeat, repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 7px) bottom left/100% 1px no-repeat;
}
.footer-wrapper.style-five .footer-modern-col {
  position: relative;
  padding-bottom: 49px;
  padding-top: 45px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-modern-col {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
.footer-wrapper.style-five .footer-modern-col.cs-col-2 {
  padding-left: 115px;
}
@media (max-width: 1600px) {
  .footer-wrapper.style-five .footer-modern-col.cs-col-2 {
    padding-left: 50px;
  }
}
@media (max-width: 1399px) {
  .footer-wrapper.style-five .footer-modern-col.cs-col-2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.footer-wrapper.style-five .footer-modern-col:not(:last-child)::before, .footer-wrapper.style-five .footer-modern-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18) 2px, transparent 2px, transparent 7px);
}
.footer-wrapper.style-five .footer-modern-col:not(:last-child)::before {
  right: 0;
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-modern-col:not(:last-child)::before {
    display: none;
  }
}
.footer-wrapper.style-five .footer-modern-col:not(:last-child)::after {
  right: 4px;
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-modern-col:not(:last-child)::after {
    display: none;
  }
}
.footer-wrapper.style-five .footer-modern-col .title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
  color: var(--white);
  margin-bottom: 45px;
  text-align: start;
}
@media (max-width: 991px) {
  .footer-wrapper.style-five .footer-modern-col .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper.style-five .footer-modern-col .title {
    font-size: 20px;
  }
}
.footer-wrapper.style-five .footer-modern-col p,
.footer-wrapper.style-five .footer-modern-col li,
.footer-wrapper.style-five .footer-modern-col a {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--gray3);
  text-align: start;
}
@media (max-width: 767px) {
  .footer-wrapper.style-five .footer-modern-col p,
  .footer-wrapper.style-five .footer-modern-col li,
  .footer-wrapper.style-five .footer-modern-col a {
    font-size: 16px;
  }
}
.footer-wrapper.style-five .footer-modern-col p {
  max-width: 361px;
}
.footer-wrapper.style-five .footer-modern-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-wrapper.style-five .footer-modern-col ul li {
  margin-bottom: 14px;
}
.footer-wrapper.style-five .footer-modern-col ul li:last-child {
  margin-bottom: 0;
}
.footer-wrapper.style-five .footer-modern-col:not(:first-child) {
  text-align: center;
}
.footer-wrapper.style-five .footer-modern-copy {
  padding: 35px;
  text-align: center;
}
.footer-wrapper.style-five .footer-modern-copy p {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--white);
}
.footer-wrapper.style-five .footer-modern-copy p a {
  color: var(--white);
}

.footer-area-modern .footer-modern-wrapper {
  background: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  overflow: hidden;
}
.footer-area-modern .footer-modern-top {
  display: grid;
  grid-template-columns: 150px 1fr 170px;
  gap: 212px;
  align-items: center;
  justify-items: center;
  padding: 120px 75px;
  position: relative;
}
@media (max-width: 1600px) {
  .footer-area-modern .footer-modern-top {
    gap: 60px;
    padding: 70px;
  }
}
@media (max-width: 1199px) {
  .footer-area-modern .footer-modern-top {
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-top {
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 767px) {
  .footer-area-modern .footer-modern-top {
    gap: 20px;
    padding: 40px 20px;
    grid-template-columns: 100px 1fr;
  }
}
@media (max-width: 450px) {
  .footer-area-modern .footer-modern-top {
    grid-template-columns: 1fr;
  }
}
.footer-area-modern .footer-modern-top::before, .footer-area-modern .footer-modern-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18) 2px, transparent 2px, transparent 7px);
}
.footer-area-modern .footer-modern-top::before {
  bottom: 0;
}
.footer-area-modern .footer-modern-top::after {
  bottom: 4px;
}
.footer-area-modern .footer-modern-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .footer-area-modern .footer-modern-social {
    margin-bottom: 20px;
  }
}
@media (max-width: 470px) {
  .footer-area-modern .footer-modern-social {
    justify-content: center;
  }
}
.footer-area-modern .footer-modern-social a {
  border-radius: 6px;
  width: 56px;
  height: 56px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .footer-area-modern .footer-modern-social a {
    width: 35px;
    height: 35px;
  }
}
.footer-area-modern .footer-modern-social a svg path {
  fill: var(--theme-5);
  transition: all 0.4s ease-in-out;
}
.footer-area-modern .footer-modern-social a:hover {
  background: var(--theme);
}
.footer-area-modern .footer-modern-social a:hover svg path {
  fill: var(--white);
}
.footer-area-modern .footer-modern-cta {
  width: min(100%, 880px);
  margin: 0 auto;
  text-align: left;
}
.footer-area-modern .footer-modern-cta .title {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 72px;
  line-height: 114%;
  color: var(--white);
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-cta .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .footer-area-modern .footer-modern-cta .title {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 470px) {
  .footer-area-modern .footer-modern-cta .title {
    text-align: center;
  }
}
.footer-area-modern .footer-modern-contact-wrap {
  display: inline-block;
}
@media (max-width: 1399px) {
  .footer-area-modern .footer-modern-contact-wrap {
    display: none !important;
  }
}
.footer-area-modern .footer-modern-contact {
  --contact-btn-size: 255px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  z-index: 1;
  width: var(--contact-btn-size);
  height: var(--contact-btn-size);
  background: transparent;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-area-modern .footer-modern-contact {
    --contact-btn-size: 90px;
  }
}
@media (max-width: 500px) {
  .footer-area-modern .footer-modern-contact {
    --contact-btn-size: 80px;
  }
}
.footer-area-modern .footer-modern-contact:hover {
  color: var(--theme-5) !important;
}
.footer-area-modern .footer-modern-contact:hover .gt-btn-circle-dot {
  transform: translate(-50%, -50%) scale(20);
}
.footer-area-modern .footer-modern-contact .footer-modern-contact-icon {
  font-size: 14px;
  position: relative;
  z-index: 2;
}
.footer-area-modern .footer-modern-contact .gt-btn-circle-text-2 {
  display: block;
  position: relative;
  z-index: 2;
}
.footer-area-modern .footer-modern-contact .gt-btn-circle-dot {
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(var(--contact-btn-size) * 0.16);
  height: calc(var(--contact-btn-size) * 0.16);
  background-color: var(--theme);
  line-height: 20px;
  border-radius: 50%;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate(-50%, -50%) scale(1);
  will-change: transform;
  z-index: -1;
}
@media (max-width: 450px) {
  .footer-area-modern .footer-modern-brand {
    display: none;
  }
}
.footer-area-modern .footer-modern-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  position: relative;
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .footer-area-modern .footer-modern-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-area-modern .footer-modern-grid::before, .footer-area-modern .footer-modern-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18) 2px, transparent 2px, transparent 7px);
}
.footer-area-modern .footer-modern-grid::before {
  bottom: 0;
}
.footer-area-modern .footer-modern-grid::after {
  bottom: 4px;
}
.footer-area-modern .footer-modern-col {
  padding: 45px 75px;
  position: relative;
}
@media (max-width: 1399px) {
  .footer-area-modern .footer-modern-col {
    padding: 15px;
  }
}
.footer-area-modern .footer-modern-col:not(:last-child)::before, .footer-area-modern .footer-modern-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18) 2px, transparent 2px, transparent 7px);
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-col:not(:last-child)::before, .footer-area-modern .footer-modern-col:not(:last-child)::after {
    display: none;
  }
}
.footer-area-modern .footer-modern-col:not(:last-child)::before {
  right: 0;
}
.footer-area-modern .footer-modern-col:not(:last-child)::after {
  right: 4px;
}
.footer-area-modern .footer-modern-col .title {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 26px;
  line-height: 138%;
  color: var(--white);
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-col .title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.footer-area-modern .footer-modern-col p,
.footer-area-modern .footer-modern-col li,
.footer-area-modern .footer-modern-col a {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--gray3);
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-col p,
  .footer-area-modern .footer-modern-col li,
  .footer-area-modern .footer-modern-col a {
    text-align: center;
  }
}
.footer-area-modern .footer-modern-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area-modern .footer-modern-col ul li {
  margin-bottom: 14px;
}
.footer-area-modern .footer-modern-col ul li:last-child {
  margin-bottom: 0;
}
.footer-area-modern .footer-modern-col:not(:first-child) {
  text-align: center;
}
.footer-area-modern .footer-modern-copy {
  padding: 45px;
  text-align: center;
}
@media (max-width: 991px) {
  .footer-area-modern .footer-modern-copy {
    padding: 20px;
  }
}
.footer-area-modern .footer-modern-copy p {
  font-family: var(--third-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 156%;
  color: var(--white);
}
.footer-area-modern .footer-modern-copy p a {
  color: var(--white);
}

/* ==========================================================================
                                04. Sections
   ========================================================================== */
/* ==========================================================================
   20. Contact
   ========================================================================== */
.contact-wrapper .left-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
.contact-wrapper .section-title .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  max-width: 453px;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .contact-wrapper .section-title .title {
    font-size: 28px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.contact-wrapper .section-title ul {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-wrapper .section-title ul li a {
  border-radius: 6px;
  background: #F1F1F1;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-wrapper .section-title ul li a:hover {
  border-radius: 6px;
  background: #E85C30;
}
.contact-wrapper .section-title ul li a:hover svg path {
  fill: var(--white);
}
@media (max-width: 991px) {
  .contact-wrapper .thumb {
    width: 100%;
  }
}
.contact-wrapper .thumb img {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .contact-wrapper .thumb img {
    width: 100%;
  }
}
.contact-wrapper .contact-inner {
  border-radius: 10px;
  background: #F1F1F1;
  padding: 60px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-inner {
    padding: 30px;
  }
}
@media (max-width: 450px) {
  .contact-wrapper .contact-inner {
    padding: 15px;
  }
}
.contact-wrapper .contact-title .sub-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 7px;
}
.contact-wrapper .contact-title .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .contact-wrapper .contact-title .title {
    font-size: 26px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
.contact-wrapper .contact-title .title span {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 575px) {
  .contact-wrapper .contact-title .title span {
    font-size: 26px;
    line-height: normal;
  }
}

.contact-cta-wrapper .left-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}
.contact-cta-wrapper .left-content .section-title .sub-title {
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(217, 217, 217, 0);
  display: inline-flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}
.contact-cta-wrapper .left-content .section-title .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
}
@media (max-width: 575px) {
  .contact-cta-wrapper .left-content .section-title .title {
    font-size: 38px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .contact-cta-wrapper .left-content .section-title .title {
    font-size: 30px;
  }
}
.contact-cta-wrapper .left-content .bottom-content .text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 569px;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .contact-cta-wrapper .left-content .bottom-content .text {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .contact-cta-wrapper .left-content .bottom-content .text {
    font-size: 14px;
    line-height: normal;
  }
}
.contact-cta-wrapper .left-content .bottom-content .contact a {
  display: inline-block;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 575px) {
  .contact-cta-wrapper .left-content .bottom-content .contact a {
    font-size: 26px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .contact-cta-wrapper .left-content .bottom-content .contact a {
    font-size: 18px;
  }
}
.contact-cta-wrapper .thumb img {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .contact-cta-wrapper .thumb img {
    width: 100%;
  }
}
.contact-cta-wrapper .container {
  position: relative;
}
.contact-cta-wrapper .container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  animation: dash-3 1s linear infinite;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}
.contact-cta-wrapper .container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  animation: dash-4 1s linear infinite;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}

/* ==========================================================================
   21. Intro
   ========================================================================== */
/*----------------------------------------------
    # Intro style here
----------------------------------------------*/
.intro-wrapper.style-one {
  padding-top: 210px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one {
    padding-top: 150px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-one {
    padding-top: 116px;
  }
}
.intro-wrapper.style-one .intro-top-content {
  text-align: center;
  margin-bottom: 11px;
  position: relative;
  z-index: 99;
}
.intro-wrapper.style-one .intro-top-content .intro-breadcumb {
  color: var(--theme);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  z-index: 1;
  margin-bottom: 45px;
  font-family: var(--font-body);
  font-size: 52px;
  font-weight: 800;
  line-height: 62px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb {
    margin-bottom: 5px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb {
    font-size: 36px;
  }
}
.intro-wrapper.style-one .intro-top-content .intro-breadcumb span {
  color: var(--theme-5);
  font-size: 52px;
  font-weight: 400;
  line-height: 62px;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 76px;
  font-family: var(--font-body);
}
@media (max-width: 991px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb span {
    font-size: 36px;
    margin-left: 0;
  }
}
.intro-wrapper.style-one .intro-top-content .intro-breadcumb::after {
  content: "";
  width: 60px;
  height: 8px;
  background: var(--theme);
  position: absolute;
  bottom: 12px;
  left: 443px;
  z-index: 9;
}
@media (max-width: 991px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb::after {
    height: 7px;
    bottom: 13px;
    left: 426px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-one .intro-top-content .intro-breadcumb::after {
    display: none;
  }
}
.intro-wrapper.style-one .intro-top-content .main-title {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 500px) {
  .intro-wrapper.style-one .intro-top-content .main-title {
    gap: 5px;
  }
}
@media (max-width: 1800px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 250px;
    height: 350px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 200px;
    height: 300px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 152px;
    height: 224px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 100px;
    height: 148px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 79px;
    height: 127px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 70px;
    height: 108px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-one .intro-top-content .main-title span svg {
    width: 53px;
    height: 78px;
  }
}
@media (max-width: 1800px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 271px;
    height: 356px;
  }
}
@media (max-width: 1800px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 250px;
    height: 350px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 225px;
    height: 329px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 182px;
    height: 307px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 122px;
    height: 243px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 105px;
    height: 205px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 93px;
    height: 190px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-one .intro-top-content .main-title span:nth-last-child(-n+2) svg {
    width: 60px;
    height: 141px;
  }
}
.intro-wrapper.style-one .intro-top-content .text-marque-area {
  position: absolute;
  z-index: 999;
  bottom: -20px;
  left: 0;
  right: 0;
}
.intro-wrapper.style-one .intro-bottom-content {
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0 75px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap {
    margin: 10px;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap {
    margin: 10px;
    gap: 10px;
    justify-content: space-between;
  }
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .left-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 248px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap .left-content {
    gap: 10px;
  }
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .left-content .arrow-content {
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 0 20px;
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap .left-content .arrow-content {
    display: none;
  }
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .left-content .arrow-content span svg {
  width: 30px;
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .right-content {
  margin-bottom: 30px;
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .right-content .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap .right-content .social-link {
    flex-direction: column;
    align-items: end;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-one .intro-bottom-content .content-wrap .right-content .social-link {
    display: none;
  }
}
.intro-wrapper.style-one .intro-bottom-content .content-wrap .right-content .social-link li a {
  color: var(--theme-5);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 0 20px;
}
.intro-wrapper.style-two {
  position: relative;
  padding-top: 210px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-two {
    padding-top: 120px;
  }
}
.intro-wrapper.style-two .intro-shape {
  position: absolute;
  z-index: 9;
  bottom: 120px;
  left: 318px;
}
@media (max-width: 767px) {
  .intro-wrapper.style-two .intro-shape {
    display: none;
  }
}
.intro-wrapper.style-two .circle-wrapper .circle-text {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}
.intro-wrapper.style-two .social-info {
  position: absolute;
  z-index: 99;
  right: 75px;
  bottom: 123px;
  width: 0;
  height: 0;
}
@media (max-width: 1600px) {
  .intro-wrapper.style-two .social-info {
    right: 35px;
  }
}
.intro-wrapper.style-two .social-info ul {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 46px;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left top;
  margin: 0;
  padding: 0;
}
.intro-wrapper.style-two .social-info ul li {
  display: flex;
  align-items: center;
  position: relative;
}
.intro-wrapper.style-two .social-info ul li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  color: var(--theme-5);
}
.intro-wrapper.style-two .social-info ul li::before {
  content: "";
  border-radius: 1px;
  width: 10px;
  height: 10px;
  background: #0e0e0e;
  transform: rotate(90deg);
  position: absolute;
  left: -20px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-two .social-info {
    display: none;
  }
}
.intro-wrapper.style-two .intro-top-content {
  position: relative;
  z-index: 99;
}
.intro-wrapper.style-two .intro-top-content .title {
  font-family: var(--font-secondary) !important;
  text-transform: uppercase;
  gap: 45px;
  margin-bottom: 45px;
  font-weight: 800;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-two .intro-top-content .title {
    font-size: 90px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-two .intro-top-content .title {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-two .intro-top-content .title {
    font-size: 75px;
    margin-bottom: 11px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-top-content .title {
    font-size: 65px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-two .intro-top-content .title {
    font-size: 55px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-two .intro-top-content .title {
    font-size: 40px;
  }
}
.intro-wrapper.style-two .intro-top-content .title.title-one {
  margin-left: 153px;
  margin-bottom: 30px;
  display: flex;
  align-items: normal;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    margin-left: 0;
    font-size: 90px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    font-size: 75px;
    margin-bottom: 11px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    font-size: 65px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    font-size: 55px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-two .intro-top-content .title.title-one {
    font-size: 40px;
  }
}
.intro-wrapper.style-two .intro-top-content .title .shape {
  width: 312px;
  max-width: 312px;
  position: relative;
}
@media (max-width: 470px) {
  .intro-wrapper.style-two .intro-top-content .title .shape {
    display: none;
  }
}
.intro-wrapper.style-two .intro-top-content .title .shape::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1.5px solid var(--theme-5);
  width: 312px;
  height: 0px;
}
.intro-wrapper.style-two .intro-top-content .title span {
  font-family: var(--font-secondary) !important;
  font-weight: 800;
  font-size: 120px;
  line-height: 83%;
  text-transform: uppercase;
  color: var(--theme);
}
@media (max-width: 1399px) {
  .intro-wrapper.style-two .intro-top-content .title span {
    font-size: 90px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-two .intro-top-content .title span {
    font-size: 75px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-top-content .title span {
    font-size: 65px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-two .intro-top-content .title span {
    font-size: 55px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-two .intro-top-content .title span {
    font-size: 40px;
  }
}
.intro-wrapper.style-two .intro-top-content p {
  font-family: var(--font-secondary) !important;
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--theme-5);
  max-width: 930px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .intro-wrapper.style-two .intro-top-content p {
    text-align: center;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-two .intro-top-content p {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-top-content p {
    font-size: 16px;
  }
}
.intro-wrapper.style-two .intro-counter-area {
  position: relative;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: end;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-left: 363px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-two .intro-counter-area {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-counter-area {
    flex-direction: column;
    align-items: start;
  }
}
.intro-wrapper.style-two .intro-counter-area .counter-item {
  padding: 35px 40px;
}
@media (max-width: 767px) {
  .intro-wrapper.style-two .intro-counter-area .counter-item {
    padding: 20px 10px;
  }
}
.intro-wrapper.style-two .intro-counter-area .counter-item:first-child {
  padding-left: 0;
}
@media (max-width: 500px) {
  .intro-wrapper.style-two .intro-counter-area .counter-item:first-child {
    padding: 20px 10px;
  }
}
.intro-wrapper.style-two .intro-counter-area .counter-item:last-child {
  padding-right: 0;
}
.intro-wrapper.style-two .intro-counter-area .counter-item span {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 70px;
  line-height: 86%;
  text-transform: uppercase;
  color: var(--theme-5);
}
@media (max-width: 767px) {
  .intro-wrapper.style-two .intro-counter-area .counter-item span {
    font-size: 40px;
  }
}
.intro-wrapper.style-two .intro-counter-area .counter-item p {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--theme-5);
}
@media (max-width: 991px) {
  .intro-wrapper.style-two .intro-counter-area .counter-item p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-two .intro-counter-area .counter-item p {
    font-size: 14px;
  }
}
.intro-wrapper.style-three {
  position: relative;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three {
    padding-top: 150px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-three {
    padding-top: 120px;
  }
}
.intro-wrapper.style-three .intro-shape {
  position: absolute;
  top: 360px;
  left: 442px;
  z-index: 99;
}
@media (max-width: 1800px) {
  .intro-wrapper.style-three .intro-shape {
    left: 300px;
  }
}
@media (max-width: 1600px) {
  .intro-wrapper.style-three .intro-shape {
    left: 200px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-three .intro-shape {
    left: 50px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .intro-shape {
    display: none;
  }
}
.intro-wrapper.style-three .social-info {
  position: absolute;
  z-index: 99;
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1600px) {
  .intro-wrapper.style-three .social-info {
    left: 10px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-three .social-info {
    top: 60%;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .social-info {
    display: none;
  }
}
.intro-wrapper.style-three .social-info::before, .intro-wrapper.style-three .social-info::after {
  content: "";
  display: block;
  width: 6px;
  border-right: 1px dashed rgba(0, 0, 0, 0.15);
  border-left: 1px dashed rgba(0, 0, 0, 0.15);
}
.intro-wrapper.style-three .social-info::before {
  height: 108px;
  margin-bottom: 18px;
}
.intro-wrapper.style-three .social-info::after {
  height: 108px;
  margin-top: 18px;
}
.intro-wrapper.style-three .social-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.intro-wrapper.style-three .social-info ul li {
  list-style: none;
}
.intro-wrapper.style-three .social-info ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.intro-wrapper.style-three .social-info ul li a:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}
.intro-wrapper.style-three .social-info ul li a:hover svg path,
.intro-wrapper.style-three .social-info ul li a:hover svg circle,
.intro-wrapper.style-three .social-info ul li a:hover svg rect {
  fill: var(--white) !important;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .social-info {
    display: none;
  }
}
.intro-wrapper.style-three .inner-content {
  position: relative;
  z-index: 99;
}
.intro-wrapper.style-three .inner-content .intro-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  line-height: 83%;
  text-transform: uppercase;
  color: var(--black);
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .inner-content .intro-title {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-three .inner-content .intro-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-three .inner-content .intro-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-three .inner-content .intro-title {
    font-size: 50px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-three .inner-content .intro-title {
    font-size: 35px;
  }
}
.intro-wrapper.style-three .inner-content .intro-title span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
  color: inherit;
}
.intro-wrapper.style-three .inner-content .intro-title .mask-thumb {
  width: 145px;
  height: 85px;
  max-width: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-left: 22px;
  -webkit-mask-image: url("../images/intro/introThumbMusk3_1.png");
  mask-image: url("../images/intro/introThumbMusk3_1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
@media (max-width: 767px) {
  .intro-wrapper.style-three .inner-content .intro-title .mask-thumb {
    display: none;
  }
}
.intro-wrapper.style-three .inner-content .intro-title .mask-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  display: block;
  pointer-events: none;
  will-change: transform;
  transform: translate(47px, -31px) scale(1.7, 1.9);
  transform-origin: center center;
}
@media (max-width: 767px) {
  .intro-wrapper.style-three .inner-content .intro-title .mask-thumb {
    width: 170px;
    height: 100px;
    max-width: none;
    margin-left: 10px;
  }
}
.intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  line-height: 83%;
  text-transform: uppercase;
  color: var(--black);
  text-align: end;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-three .inner-content .bottom-content .intro-title-two {
    font-size: 35px;
  }
}
.intro-wrapper.style-three .inner-content .bottom-content p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 142%;
  color: var(--black);
  margin-left: auto;
  margin-right: 213px;
  text-align: start;
  max-width: 744px;
  margin-bottom: 38px;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-three .inner-content .bottom-content p {
    margin-right: 0;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-three .inner-content .bottom-content p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 213px;
}
@media (max-width: 767px) {
  .intro-wrapper.style-three .inner-content .bottom-content .talkbar {
    margin-right: 0;
    gap: 15px;
  }
}
@media (max-width: 470px) {
  .intro-wrapper.style-three .inner-content .bottom-content .talkbar {
    flex-direction: column;
    align-items: start;
  }
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .cta {
  border: 0;
  background: #ffa100;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 18px 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .cta .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  flex: 0 0 10px;
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .cta .text {
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .cta:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .cta:active {
  transform: translateY(0);
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .social-proof {
  margin: 0 30px 0 29px;
}
@media (max-width: 575px) {
  .intro-wrapper.style-three .inner-content .bottom-content .talkbar .social-proof {
    display: none;
  }
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .rating {
  min-width: 220px;
  text-align: left;
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .rating .stars {
  color: #ffa100;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.intro-wrapper.style-three .inner-content .bottom-content .talkbar .rating .meta {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--black);
}
.intro-wrapper.style-four {
  background: var(--theme-4);
  border-radius: 0;
  padding: 128px 156px 204px;
  border-radius: 0 0 45px 45px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-four {
    padding: 128px 156px 100px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-four {
    padding: 136px 30px 60px;
  }
}
@media (max-width: 350px) {
  .intro-wrapper.style-four {
    border-radius: 0 0 15px 15px;
    padding: 100px 30px 60px;
  }
}
.intro-wrapper.style-four .intro-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .intro-wrapper.style-four .intro-shape {
    width: 400px;
    right: -80px;
    bottom: 200px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-four .intro-shape {
    display: none;
  }
}
.intro-wrapper.style-four .intro-header {
  position: absolute;
  z-index: 99;
  left: 60px;
  bottom: 139px;
  width: 0;
  height: 0;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-four .intro-header {
    display: none;
  }
}
.intro-wrapper.style-four .intro-header ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}
.intro-wrapper.style-four .intro-header ul li {
  display: flex;
  align-items: center;
}
.intro-wrapper.style-four .intro-header ul li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .intro-header {
    display: none;
  }
}
.intro-wrapper.style-four .intro-social-right {
  position: absolute;
  z-index: 99;
  right: 30px;
  top: 246px;
}
.intro-wrapper.style-four .intro-social-right ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.intro-wrapper.style-four .intro-social-right ul li {
  display: flex;
  align-items: center;
  list-style: none;
}
.intro-wrapper.style-four .intro-social-right ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.intro-wrapper.style-four .intro-social-right ul li a svg path {
  fill: var(--black);
}
.intro-wrapper.style-four .intro-social-right ul li a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.intro-wrapper.style-four .intro-social-right ul li a:hover svg path {
  fill: var(--white);
}
@media (max-width: 1199px) {
  .intro-wrapper.style-four .intro-social-right {
    right: 24px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .intro-social-right {
    display: none;
  }
}
.intro-wrapper.style-four .top-text {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 16px;
  line-height: 163%;
  text-transform: uppercase;
  color: var(--black);
  text-align: start;
  max-width: 318px;
  margin: 0 auto;
  margin-bottom: 27px;
}
@media (max-width: 575px) {
  .intro-wrapper.style-four .top-text {
    text-align: center;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-four .top-text {
    font-size: 14px;
  }
}
.intro-wrapper.style-four .main-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 432px;
  line-height: 380px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 50px;
}
@media (max-width: 1899px) {
  .intro-wrapper.style-four .main-title {
    font-size: 328px;
    line-height: 242px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .main-title {
    font-size: 274px;
    line-height: 215px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-four .main-title {
    font-size: 198px;
    line-height: 144px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-four .main-title {
    font-size: 166px;
    line-height: 100px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-four .main-title {
    font-size: 142px;
    line-height: 76px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-four .main-title {
    font-size: 95px;
    line-height: 36px;
  }
}
.intro-wrapper.style-four .intro-cta .intro-cta-stats {
  display: flex;
  align-items: stretch;
  flex: 1;
  gap: 45px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-stats {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-stats {
    gap: 20px;
  }
}
.intro-wrapper.style-four .intro-cta .intro-cta-stats .cta-counter {
  display: flex;
  align-items: center;
  gap: 45px;
}
.intro-wrapper.style-four .intro-cta .intro-cta-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-item {
    flex-direction: column;
    gap: 10px;
  }
}
.intro-wrapper.style-four .intro-cta .counter-wrap span {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .intro-cta .counter-wrap span {
    font-size: 60px;
    line-height: normal;
  }
}
.intro-wrapper.style-four .intro-cta .intro-cta-text {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
}
@media (max-width: 991px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-text {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-text {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-text {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-four .intro-cta .intro-cta-text {
    font-size: 14px;
  }
}
.intro-wrapper.style-five {
  position: relative;
}
.intro-wrapper.style-five .advantage-items-content {
  margin: 0 auto;
  width: 1770px;
}
@media (max-width: 1700px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 1500px;
  }
}
@media (max-width: 1600px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 1300px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 1150px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 950px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 750px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 550px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-five .advantage-items-content {
    width: 100%;
  }
}
.intro-wrapper.style-five .advantage-items-wrap {
  position: relative;
  height: 350px;
  pointer-events: auto;
  z-index: 999;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 95px;
}
.intro-wrapper.style-five .advantage-items-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  border-bottom: 1px solid #000;
}
@media (max-width: 1199px) {
  .intro-wrapper.style-five .advantage-items-wrap {
    margin-bottom: 30px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .advantage-items-wrap {
    height: 300px;
  }
}
.intro-wrapper.style-five .advantage-items-wrap .advantage-item {
  position: absolute;
  top: -5px;
  left: 0;
  user-select: none;
  pointer-events: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .advantage-items-wrap .advantage-item {
    top: -10px;
  }
}
.intro-wrapper.style-five .advantage-items-wrap .advantage-item .throwable-wrapper {
  position: relative;
  top: 0;
  left: 0;
  display: inline-flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 90px;
  border: 1px solid #000;
  background: rgba(217, 217, 217, 0);
  color: #000;
  font-family: var(--font-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .advantage-items-wrap .advantage-item .throwable-wrapper {
    padding: 5px 10px;
    font-size: 12px;
    line-height: normal;
  }
}
.intro-wrapper.style-five .advantage-items-wrap .advantage-item .throwable-wrapper span {
  font-weight: 500;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  cursor: none;
}
@media (max-width: 575px) {
  .intro-wrapper.style-five .advantage-items-wrap .advantage-item .throwable-wrapper .number {
    display: none !important;
  }
}
.intro-wrapper.style-five .intro-main-content {
  position: relative;
  z-index: 999;
  margin: 0 43px;
}
@media (max-width: 450px) {
  .intro-wrapper.style-five .intro-main-content {
    margin: 0 10px;
  }
}
.intro-wrapper.style-five .intro-main-content .title {
  color: #000;
  font-family: var(--font-primary);
  font-size: 370px;
  font-style: normal;
  font-weight: 300;
  line-height: 310px;
}
@media (max-width: 1899px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 320px;
    line-height: normal;
  }
}
@media (max-width: 1700px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 280px;
  }
}
@media (max-width: 1600px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 230px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 200px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 170px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 80px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 70px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 70px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-five .intro-main-content .title {
    font-size: 60px;
  }
}
.intro-wrapper.style-five .intro-main-content .title span {
  color: #000;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 370px;
  font-style: normal;
  font-weight: 600;
  line-height: 310px;
}
@media (max-width: 1899px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 320px;
    line-height: normal;
  }
}
@media (max-width: 1700px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 280px;
  }
}
@media (max-width: 1600px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 230px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 200px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 170px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 130px;
  }
}
@media (max-width: 767px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 90px;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 80px;
  }
}
@media (max-width: 500px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 70px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-five .intro-main-content .title span {
    font-size: 60px;
  }
}
.intro-wrapper.style-five .intro-bottom-content {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-bottom-content {
    margin-top: 80px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-bottom-content {
    margin-top: 5px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-five .intro-bottom-content {
    flex-direction: column;
    gap: 20px;
  }
}
.intro-wrapper.style-five .intro-bottom-content .meta-text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  max-width: 866px;
  position: relative;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-bottom-content .meta-text {
    font-size: 38px;
    line-height: normal;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-bottom-content .meta-text {
    font-size: 32px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .intro-wrapper.style-five .intro-bottom-content .meta-text {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .intro-wrapper.style-five .intro-bottom-content .meta-text {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.intro-wrapper.style-five .intro-bottom-content .meta-text .icon {
  position: absolute;
  top: 0;
  left: 0;
}
.intro-wrapper.style-five .intro-bottom-content .thumb {
  margin-top: -300px;
  position: relative;
  z-index: -1;
}
@media (max-width: 1600px) {
  .intro-wrapper.style-five .intro-bottom-content .thumb {
    margin-top: -250px;
  }
}
@media (max-width: 1399px) {
  .intro-wrapper.style-five .intro-bottom-content .thumb {
    margin-top: -200px;
  }
}
@media (max-width: 1199px) {
  .intro-wrapper.style-five .intro-bottom-content .thumb {
    margin-top: -66px;
  }
}
@media (max-width: 991px) {
  .intro-wrapper.style-five .intro-bottom-content .thumb {
    margin-top: 0;
  }
}

/* ==========================================================================
   22. About
   ========================================================================== */
/*----------------------------------------------
    # About style here
----------------------------------------------*/
.about-wrapper.about-one {
  position: relative;
  padding-top: 350px;
}
@media (max-width: 991px) {
  .about-wrapper.about-one {
    padding-top: 250px;
  }
}
@media (max-width: 350px) {
  .about-wrapper.about-one {
    padding-top: 200px;
  }
}
.about-wrapper.about-one .about-shape-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
}
@media (max-width: 991px) {
  .about-wrapper.about-one .about-shape-1 {
    top: 30px;
  }
}
.about-wrapper.about-one .about-shape-2 {
  position: absolute;
  right: 75px;
  top: 120px;
}
@media (max-width: 991px) {
  .about-wrapper.about-one .about-shape-2 {
    display: none;
  }
}
.about-wrapper.about-one .about-shape-3 {
  position: absolute;
  left: 75px;
  top: 120px;
}
@media (max-width: 991px) {
  .about-wrapper.about-one .about-shape-3 {
    display: none;
  }
}
.about-wrapper.about-one .about-title .title {
  color: var(--theme-5);
  text-align: center;
  text-transform: uppercase;
  max-width: 1296px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 1600px) {
  .about-wrapper.about-one .about-title .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .about-wrapper.about-one .about-title .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.about-one .about-title .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .about-wrapper.about-one .about-title .title {
    font-size: 18px;
  }
}
.about-wrapper.about-one .card-bottom-content .title a {
  color: #0E0E0E;
  font-family: var(--font-primary);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  text-transform: uppercase;
}
@media (max-width: 1899px) {
  .about-wrapper.about-one .card-bottom-content .title a {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper.about-one .card-bottom-content .title a {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.about-one .card-bottom-content .title a {
    font-size: 20px;
    line-height: normal;
  }
}
.about-wrapper.about-two {
  position: relative;
}
.about-wrapper.about-two .about-shape {
  position: absolute;
  top: 157px;
  left: 0;
  z-index: -1;
}
@media (max-width: 1600px) {
  .about-wrapper.about-two .about-shape img {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .about-wrapper.about-two .about-shape {
    display: none;
  }
}
.about-wrapper.about-two .section-top-content .title {
  margin-left: 430px;
}
@media (max-width: 1199px) {
  .about-wrapper.about-two .section-top-content .title {
    margin-left: 275px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.about-two .section-top-content .title {
    margin-left: 0;
  }
}
.about-wrapper.about-two .section-top-content p {
  margin-left: 430px;
}
@media (max-width: 1199px) {
  .about-wrapper.about-two .section-top-content p {
    margin-left: 275px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.about-two .section-top-content p {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper.about-two .section-top-content p {
    font-size: 14px;
    line-height: normal;
  }
}
.about-wrapper.about-three {
  background: var(--bg-color-3);
}
@media (max-width: 1399px) {
  .about-wrapper.about-three .section-top-content {
    flex-direction: column;
    gap: 10px;
  }
}
.about-wrapper.about-three .section-top-content .title {
  max-width: 1040px;
}
.about-wrapper.about-three .about-middle-content {
  margin-top: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
.about-wrapper.about-three .about-middle-content .about-insight-wrap {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 582px);
  align-items: end;
  gap: clamp(24px, 4vw, 70px);
}
.about-wrapper.about-three .about-middle-content .about-stat {
  display: flex;
  align-items: flex-start;
  color: var(--theme-5);
  min-width: 0;
}
.about-wrapper.about-three .about-middle-content .about-stat .value {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(140px, 28vw, 400px);
  line-height: 90%;
  color: var(--black);
}
.about-wrapper.about-three .about-middle-content .about-stat .suffix {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 100%;
  color: var(--black);
  margin-top: clamp(12px, 4vw, 52px);
  margin-left: 6px;
}
.about-wrapper.about-three .about-middle-content .about-proof-card {
  width: 100%;
  max-width: 582px;
  border-radius: 10px;
  background: var(--white);
  padding: 30px 40px;
  margin-left: auto;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .social-proof {
  justify-content: flex-start;
  margin: 0 0 30px 0;
  gap: 8px;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .social-proof > img {
  width: auto;
  height: 77px !important;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .social-proof .avatars img {
  width: 52px;
  height: 52px !important;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 19px;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating .stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--theme-3);
  line-height: 1;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating .stars svg {
  display: block;
}
.about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating .meta {
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--pra-text);
}
.about-wrapper.about-three .about-middle-content .about-proof-card p {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  color: var(--black);
  width: 100%;
  max-width: 478px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .about-wrapper.about-three .about-middle-content .about-insight-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 540px);
    gap: 32px;
  }
  .about-wrapper.about-three .about-middle-content .about-stat .value {
    font-size: clamp(128px, 24vw, 320px);
  }
  .about-wrapper.about-three .about-middle-content .about-stat .suffix {
    margin-top: clamp(10px, 2.8vw, 36px);
  }
}
@media (max-width: 1199px) {
  .about-wrapper.about-three .about-middle-content .about-insight-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    gap: 28px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card {
    padding: 26px 28px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.about-three .about-middle-content {
    justify-content: center;
  }
  .about-wrapper.about-three .about-middle-content .about-insight-wrap {
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }
  .about-wrapper.about-three .about-middle-content .about-stat {
    width: 100%;
  }
  .about-wrapper.about-three .about-middle-content .about-stat .value {
    font-size: clamp(120px, 30vw, 220px);
  }
  .about-wrapper.about-three .about-middle-content .about-stat .suffix {
    margin-top: 16px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .about-wrapper.about-three .about-middle-content .about-insight-wrap {
    gap: 24px;
  }
  .about-wrapper.about-three .about-middle-content .about-insight-wrap {
    flex-direction: column;
  }
  .about-wrapper.about-three .about-middle-content .about-stat .value {
    font-size: clamp(96px, 26vw, 160px);
  }
  .about-wrapper.about-three .about-middle-content .about-stat .suffix {
    font-size: clamp(26px, 7vw, 38px);
    margin-top: 10px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card {
    padding: 24px 20px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card p {
    font-size: 18px;
    line-height: 150%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .about-wrapper.about-three .about-middle-content {
    margin-top: 40px;
  }
  .about-wrapper.about-three .about-middle-content .about-stat .value {
    font-size: clamp(84px, 24vw, 110px);
  }
  .about-wrapper.about-three .about-middle-content .about-stat .suffix {
    font-size: 28px;
    margin-top: 8px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card {
    padding: 24px 16px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card .social-proof {
    margin-bottom: 16px;
    gap: 4px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card .social-proof > img {
    height: 50px !important;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card .social-proof .avatars img {
    width: 38px;
    height: 38px !important;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card .about-proof-rating .meta {
    font-size: 15px;
  }
  .about-wrapper.about-three .about-middle-content .about-proof-card p {
    font-size: 16px;
    line-height: 150%;
  }
}
.about-wrapper.about-three .about-card {
  position: relative;
}
.about-wrapper.about-three .about-card::before, .about-wrapper.about-three .about-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}
.about-wrapper.about-three .about-card::before {
  top: 0;
}
.about-wrapper.about-three .about-card::after {
  top: 6px;
}
.about-wrapper.about-three .about-card .about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .about-wrapper.about-three .about-card .about-card-grid {
    grid-template-columns: 1fr;
  }
}
.about-wrapper.about-three .about-card .about-card-item {
  min-height: 250px;
  padding: 0px 34px;
  padding-top: 60px;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper.about-three .about-card .about-card-item {
    padding-top: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper.about-three .about-card .about-card-item {
    padding: 0;
  }
  .about-wrapper.about-three .about-card .about-card-item:not(:last-child)::before, .about-wrapper.about-three .about-card .about-card-item:not(:last-child)::after {
    display: none;
  }
}
.about-wrapper.about-three .about-card .about-card-item:first-child {
  padding-left: 0;
}
.about-wrapper.about-three .about-card .about-card-item:not(:last-child)::before, .about-wrapper.about-three .about-card .about-card-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-right: 1px dashed rgba(0, 0, 0, 0.15);
}
.about-wrapper.about-three .about-card .about-card-item:not(:last-child)::before {
  right: 0;
}
.about-wrapper.about-three .about-card .about-card-item:not(:last-child)::after {
  right: 4px;
}
.about-wrapper.about-three .about-card .about-card-item:last-child {
  padding-right: 0;
}
.about-wrapper.about-three .about-card .about-card-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
  margin-bottom: 45px;
}
@media (max-width: 1399px) {
  .about-wrapper.about-three .about-card .about-card-item .icon {
    padding-top: 30px;
  }
}
.about-wrapper.about-three .about-card .about-card-item .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 128%;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 356px;
  font-family: var(--body-font);
}
@media (max-width: 1399px) {
  .about-wrapper.about-three .about-card .about-card-item .title {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.about-three .about-card .about-card-item .title {
    font-size: 19px;
  }
}
.about-wrapper.about-three .about-card .about-card-item .text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--pra-text);
  margin-bottom: 0;
  max-width: 370px;
}
.about-wrapper.style-four .about-card-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .about-wrapper.style-four .about-card-container.style-one {
    flex-direction: row;
  }
  .about-wrapper.style-four .about-card-container.style-one .about-card {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-four .about-card-container.style-one {
    flex-direction: column;
  }
  .about-wrapper.style-four .about-card-container.style-one .about-card {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-four .thumb {
    width: 100%;
  }
  .about-wrapper.style-four .thumb img {
    width: 100%;
  }
}
.about-wrapper.style-four .about-card {
  border-radius: 10px;
  background: var(--bg-color);
  padding: 30px;
  gap: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.about-wrapper.style-four .about-card__title {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-four .about-card__title {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .about-wrapper.style-four .about-card__title {
    font-size: 18px;
    line-height: normal;
  }
}
.about-wrapper.style-four .about-card__title.text-right {
  text-align: right;
}
.about-wrapper.style-four .about-card__content .stat-number {
  color: #000;
  font-family: var(--font-primary);
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 100px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (max-width: 575px) {
  .about-wrapper.style-four .about-card__content .stat-number {
    font-size: 50px;
    line-height: normal;
  }
}
.about-wrapper.style-four .about-card__content .stat-label {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.about-wrapper.style-four .about-card__rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.about-wrapper.style-four .about-card__rating .rating-text {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.about-wrapper.style-four .about-card__rating .stars {
  color: #FF9800;
  font-size: 18px;
  display: flex;
  gap: 4px;
}
.about-wrapper.style-four .about-card__avatars {
  display: flex;
  justify-content: flex-end;
}
.about-wrapper.style-four .about-card__avatars .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #ededed;
  margin-left: -15px;
  object-fit: cover;
}
.about-wrapper.style-four .about-card__avatars .avatar:first-child {
  margin-left: 0;
}
.about-wrapper.style-four .about-card__image-box {
  margin-top: 20px;
  margin-bottom: -40px;
  margin-left: -30px;
  margin-right: -30px;
}
.about-wrapper.style-four .about-card__image-box .handshake-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.about-wrapper.style-four .strategy-card {
  padding: 17px 27px 304px 27px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-four .strategy-card {
    padding: 17px 27px 242px 27px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-four .strategy-card {
    padding: 17px 27px 408px 27px;
  }
}
@media (max-width: 991px) {
  .about-wrapper.style-four .strategy-card {
    padding: 17px 27px 189px 27px;
  }
}
.about-wrapper.style-four .stats-card-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper.style-four .stats-card-container.style-two {
    display: flex;
    flex-direction: row;
  }
  .about-wrapper.style-four .stats-card-container.style-two .about-card {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-four .stats-card-container.style-two {
    flex-direction: column;
  }
  .about-wrapper.style-four .stats-card-container.style-two .about-card {
    width: 100%;
  }
}
.about-wrapper.style-four .retention-card {
  padding: 30px 27px 30px 27px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 130px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-four .retention-card {
    gap: 65px;
  }
}
.about-wrapper.style-four .trust-card {
  display: flex;
  gap: 86px;
}
.about-wrapper.style-five .section-top-content {
  margin-bottom: 70px;
}
.about-wrapper.style-five .section-top-content .sub-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}
.about-wrapper.style-five .section-top-content .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  max-width: 1320px;
}
@media (max-width: 1600px) {
  .about-wrapper.style-five .about-card {
    margin-right: 10px;
  }
}
.about-wrapper.style-five .about-card .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.about-wrapper.style-five .about-card .icon {
  width: 76px;
  height: 76px;
  background: var(--theme-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 25px;
  margin-top: 66px;
  position: relative;
}
@media (max-width: 575px) {
  .about-wrapper.style-five .about-card .icon {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.about-wrapper.style-five .about-card .icon::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-4px);
  width: 7px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.1490196078) 0 4px, transparent 4px 8px) left/1px 100% no-repeat, repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.1490196078) 0 4px, transparent 4px 8px) right/1px 100% no-repeat;
}
@media (max-width: 575px) {
  .about-wrapper.style-five .about-card .icon::before {
    height: 20px;
    top: -20px;
  }
}
.about-wrapper.style-five .about-card .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-five .about-card .title {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-five .about-card .title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .about-wrapper.style-five .about-card .title {
    margin-bottom: 10px;
  }
}
.about-wrapper.style-five .about-card p {
  color: var(--pra-text);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 329px;
}
@media (max-width: 1399px) {
  .about-wrapper.style-five .about-card p {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper.style-five .about-card p {
    font-size: 14px;
  }
}

.about-top-content .section-top-content .sub-title {
  min-width: 170px !important;
}
@media (max-width: 1399px) {
  .about-top-content .section-top-content .clint-info {
    display: none;
  }
}

.about-main-content {
  display: grid;
  grid-template-columns: 21.875% 54.1667% 21.875%;
  gap: 20px;
}
@media (max-width: 1600px) {
  .about-main-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1399px) {
  .about-main-content {
    grid-template-columns: 1fr 1.5fr;
  }
}
@media (max-width: 767px) {
  .about-main-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1600px) {
  .about-main-content .left-content {
    display: none;
  }
}
@media (max-width: 1600px) {
  .about-main-content .right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 1600px) {
  .about-main-content .thumb {
    height: 100%;
  }
  .about-main-content .thumb img {
    height: 100% !important;
  }
}
.about-main-content .right-content .card,
.about-main-content .left-content .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 100%;
  gap: 130px;
  padding: 40px;
  margin-bottom: 20px;
}
@media (max-width: 1899px) {
  .about-main-content .right-content .card,
  .about-main-content .left-content .card {
    gap: 53px;
  }
}
@media (max-width: 1700px) {
  .about-main-content .right-content .card,
  .about-main-content .left-content .card {
    gap: 24px;
  }
}
@media (max-width: 1600px) {
  .about-main-content .right-content .card,
  .about-main-content .left-content .card {
    padding: 25px;
  }
}
@media (max-width: 450px) {
  .about-main-content .right-content .card,
  .about-main-content .left-content .card {
    padding: 20px;
    padding-bottom: 20px;
  }
}
.about-main-content .right-content .card p,
.about-main-content .left-content .card p {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  max-width: 291px;
}
@media (max-width: 1600px) {
  .about-main-content .right-content .card p,
  .about-main-content .left-content .card p {
    font-size: 16px;
    line-height: normal;
  }
}
.about-main-content .right-content .card span,
.about-main-content .left-content .card span {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 100px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
}
@media (max-width: 1600px) {
  .about-main-content .right-content .card span,
  .about-main-content .left-content .card span {
    font-size: 75px;
    line-height: normal;
  }
}
.about-main-content .left-content .card {
  gap: 164px;
}
@media (max-width: 1899px) {
  .about-main-content .left-content .card {
    gap: 112px;
  }
}
@media (max-width: 1700px) {
  .about-main-content .left-content .card {
    gap: 92px;
  }
}
.about-main-content .social-card {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 40px;
  padding-bottom: 58px;
}
@media (max-width: 450px) {
  .about-main-content .social-card {
    padding: 20px;
    padding-bottom: 20px;
  }
}
.about-main-content .social-card p {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 15px;
}
.about-main-content .social-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.about-main-content .social-card ul li a {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-transform: uppercase;
  display: flex;
  padding: 3px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(217, 217, 217, 0);
}

.about-more-wrapper {
  display: flex;
  height: 100%;
  background: var(--black);
}
@media (max-width: 1199px) {
  .about-more-wrapper {
    flex-direction: column;
  }
}
.about-more-wrapper .right-content {
  width: 905px;
}
@media (max-width: 1399px) {
  .about-more-wrapper .right-content {
    width: 646px;
  }
}
@media (max-width: 1199px) {
  .about-more-wrapper .right-content {
    width: 100%;
  }
}
.about-more-wrapper .right-content img {
  max-width: max-content;
  height: auto !important;
}
@media (max-width: 1399px) {
  .about-more-wrapper .right-content img {
    max-width: stretch;
  }
}
@media (max-width: 1199px) {
  .about-more-wrapper .right-content img {
    width: 100%;
  }
}
.about-more-wrapper .left-content {
  height: 100%;
  padding: 120px 0 120px 120px;
  width: 100%;
}
@media (max-width: 1600px) {
  .about-more-wrapper .left-content {
    padding: 60px;
  }
}
@media (max-width: 1399px) {
  .about-more-wrapper .left-content {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  .about-more-wrapper .left-content {
    padding: 30px 20px;
  }
}
.about-more-wrapper .left-content .title {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  max-width: 540px;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .about-more-wrapper .left-content .title {
    font-size: 38px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .about-more-wrapper .left-content .title {
    font-size: 28px;
  }
}
.about-more-wrapper .left-content p {
  color: #999;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 554px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .about-more-wrapper .left-content p {
    margin-bottom: 20px;
  }
}
.about-more-wrapper .left-content ul {
  margin-bottom: 71px;
}
@media (max-width: 1399px) {
  .about-more-wrapper .left-content ul {
    margin-bottom: 20px;
  }
}
.about-more-wrapper .left-content ul li {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 450px) {
  .about-more-wrapper .left-content ul li {
    font-size: 16px;
    line-height: normal;
  }
}
.about-more-wrapper .left-content ul li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   23. Blog
   ========================================================================== */
.blog-wrapper.style-one .blog-title {
  text-align: center;
}
.blog-wrapper.style-one .blog-title .title {
  color: var(--theme-5);
  text-align: center;
  text-transform: uppercase;
  max-width: 919px;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 1600px) {
  .blog-wrapper.style-one .blog-title .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .blog-wrapper.style-one .blog-title .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .blog-wrapper.style-one .blog-title .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .blog-wrapper.style-one .blog-title .title {
    font-size: 18px;
  }
}
.blog-wrapper.style-one .blog-center-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 23, 23, 0.15);
  border-top: 1px solid rgba(23, 23, 23, 0.15);
  padding: 20px 0;
}
.blog-wrapper.style-one .blog-center-content span,
.blog-wrapper.style-one .blog-center-content a {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}
@media (max-width: 470px) {
  .blog-wrapper.style-one .blog-center-content span,
  .blog-wrapper.style-one .blog-center-content a {
    font-size: 14px;
  }
}
.blog-wrapper.style-two .section-top-content {
  margin-bottom: 120px;
  position: relative;
}
.blog-wrapper.style-two .section-top-content .title {
  margin-left: 430px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-two .section-top-content .title {
    margin-left: 250px;
  }
}
@media (max-width: 991px) {
  .blog-wrapper.style-two .section-top-content .title {
    margin-left: 0;
  }
}
.blog-wrapper.style-two .section-top-content p {
  margin-left: 430px;
}
.blog-wrapper.style-two .section-top-content .simple-btn {
  position: absolute;
  left: -27px;
  top: 163px;
  transform: rotate(-31deg);
  margin-right: 0;
}
@media (max-width: 991px) {
  .blog-wrapper.style-two .section-top-content .simple-btn {
    transform: rotate(0deg);
    left: 0;
    top: auto;
    margin-left: 0;
  }
}
.blog-wrapper.style-two .fast-card {
  margin-right: -50px;
}
@media (max-width: 991px) {
  .blog-wrapper.style-two .fast-card {
    margin: 0;
  }
}
.blog-wrapper.style-two .last-card {
  margin-left: -50px;
}
@media (max-width: 991px) {
  .blog-wrapper.style-two .last-card {
    margin: 0;
  }
}
.blog-wrapper.style-two .middle-card {
  margin: 0 50px;
}
@media (max-width: 991px) {
  .blog-wrapper.style-two .middle-card {
    margin: 0;
  }
}
.blog-wrapper.style-three {
  background: var(--bg-color-2);
}
.blog-wrapper.style-three .blog-main-content {
  max-width: 1240px;
  margin: 0 auto;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-wrapper.style-three .blog-main-content .featured-blog-head span {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  color: var(--black);
}
.blog-wrapper.style-three .blog-main-content .featured-blog-item {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-top: 1px solid rgba(14, 14, 14, 0.12);
}
@media (max-width: 991px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-item {
    padding: 15px;
  }
}
.blog-wrapper.style-three .blog-main-content .featured-blog-item:first-of-type {
  border-top: 0;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-thumb {
  border-radius: 10px;
  overflow: hidden;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-thumb img {
  width: 35%;
  object-fit: cover;
  min-height: 300px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-thumb img {
    width: 100%;
  }
}
.blog-wrapper.style-three .blog-main-content .blog-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .blog-wrapper.style-three .blog-main-content .blog-card {
    margin-bottom: 30px;
  }
}
.blog-wrapper.style-three .blog-main-content .blog-card .content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 428px;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-title {
  margin: 0;
  max-width: 428px;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-title a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 30px;
  line-height: 133%;
  color: var(--black);
}
@media (max-width: 1199px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-title a {
    font-size: 24px;
  }
}
@media (max-width: 500px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-title a {
    font-size: 20px;
  }
}
.blog-wrapper.style-three .blog-main-content .featured-blog-title a:hover {
  color: var(--theme-3) !important;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-meta .author {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: var(--black);
}
@media (max-width: 1199px) {
  .blog-wrapper.style-three .blog-main-content .featured-blog-meta .author {
    font-size: 18px;
  }
}
.blog-wrapper.style-three .blog-main-content .featured-blog-meta .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--pra-text);
}
.blog-wrapper.style-three .blog-main-content .featured-blog-action {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: var(--theme-5);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.blog-wrapper.style-three .blog-main-content .featured-blog-action:hover {
  background: var(--theme-3);
  color: var(--theme-5);
}
@media (max-width: 991px) {
  .blog-wrapper.style-four .section-top-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.blog-wrapper.style-four .blog-card .blog-thumb {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper.style-four .blog-card .blog-thumb img {
    width: 100%;
  }
}
.blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 470px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 350px) {
  .blog-wrapper.style-four .blog-card .blog-thumb .sub-thumb {
    width: 45px;
    height: 45px;
  }
}
.blog-wrapper.style-four .blog-card .blog-content .meta-text {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 15px;
}
.blog-wrapper.style-four .blog-card .blog-content .title {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 20px;
  display: inline-block;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .blog-card .blog-content .title {
    font-size: 22px;
    line-height: normal;
  }
}
.blog-wrapper.style-four .blog-card .simple-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-wrapper.style-four .blog-card.style-six {
  border-radius: 10px;
  background: #F1F1F1;
  margin-bottom: 35px;
}
.blog-wrapper.style-four .blog-card.style-six:last-child {
  margin-bottom: 0;
}
.blog-wrapper.style-four .blog-card.style-six .blog-thumb {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-thumb .sub-thumb {
    width: 40px !important;
    height: 40px !important;
  }
}
@media (max-width: 500px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-thumb .sub-thumb {
    width: 30px !important;
    height: 30px !important;
  }
}
.blog-wrapper.style-four .blog-card.style-six .blog-content {
  padding: 30px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content {
    padding: 20px;
  }
}
.blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text {
    margin-bottom: 20px;
  }
}
.blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text span {
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(217, 217, 217, 0);
  display: inline-flex;
  padding: 3px 18px;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text span {
    font-size: 15px !important;
  }
}
@media (max-width: 767px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text span:first-child {
    display: none;
  }
}
@media (max-width: 470px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .meta-text span:last-child {
    display: none;
  }
}
.blog-wrapper.style-four .blog-card.style-six .blog-content .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  max-width: 764px;
  margin-bottom: 25px;
  display: inline-block;
}
@media (max-width: 575px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .title {
    font-size: 26px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .title {
    font-size: 22px;
  }
}
.blog-wrapper.style-four .blog-card.style-six .blog-content .text {
  color: #424242;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 450px) {
  .blog-wrapper.style-four .blog-card.style-six .blog-content .text {
    margin-bottom: 16px;
    line-height: normal;
  }
}
.blog-wrapper.style-four .widget-wrap .widget-items {
  border-radius: 10px;
  background: #F1F1F1;
  padding: 35px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .widget-wrap .widget-items {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.blog-wrapper.style-four .widget-wrap .widget-items:last-child {
  margin-bottom: 0;
}
.blog-wrapper.style-four .widget-wrap .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 35px;
}
.blog-wrapper.style-four .widget-wrap .search-widget .form-group {
  position: relative;
}
.blog-wrapper.style-four .widget-wrap .search-widget .form-group .form-control {
  border-radius: 10px;
  background: #FFF;
  padding: 16px 25px;
  border: none;
  height: 60px;
}
.blog-wrapper.style-four .widget-wrap .search-widget .form-group .form-control:focus {
  border: 1px solid var(--theme-3);
  box-shadow: none;
}
.blog-wrapper.style-four .widget-wrap .search-widget .form-group button {
  width: 60px;
  height: 60px;
  border-radius: 0 10px 10px 0;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blog-wrapper.style-four .widget-wrap .categories-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-wrapper.style-four .widget-wrap .categories-widget ul li:last-child {
  margin-bottom: 0;
}
.blog-wrapper.style-four .widget-wrap .categories-widget ul li span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-wrapper.style-four .widget-wrap .recent-post-widget .post-items {
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.blog-wrapper.style-four .widget-wrap .recent-post-widget .post-items:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.blog-wrapper.style-four .widget-wrap .recent-post-widget span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}
.blog-wrapper.style-four .widget-wrap .recent-post-widget .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .blog-wrapper.style-four .widget-wrap .recent-post-widget .title {
    font-size: 16px;
    line-height: normal;
  }
}
.blog-wrapper.style-four .widget-wrap .tag-widget ul {
  display: flex;
  align-items: center;
  gap: 4px;
  row-gap: 12px;
  flex-wrap: wrap;
}
.blog-wrapper.style-four .widget-wrap .tag-widget ul li a {
  color: #424242;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 500px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0);
  display: inline-flex;
  padding: 3px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.blog-wrapper.style-four .widget-wrap .tag-widget ul li a:hover {
  border-radius: 500px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #E85C30;
  color: var(--white) !important;
}
.blog-wrapper.style-five .blog-card {
  border-radius: 15px;
  border: 1px solid #EAEAEA;
  background: #FFF;
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-wrapper.style-five .blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.blog-wrapper.style-five .blog-card__category, .blog-wrapper.style-five .blog-card__date {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}
.blog-wrapper.style-five .blog-card__dot {
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  flex: 0 0 auto;
}
.blog-wrapper.style-five .blog-card__title {
  margin-bottom: 25px;
}
.blog-wrapper.style-five .blog-card__title a {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}
@media (max-width: 767px) {
  .blog-wrapper.style-five .blog-card__title a {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .blog-wrapper.style-five .blog-card__title a {
    font-size: 26px;
  }
}
@media (max-width: 500px) {
  .blog-wrapper.style-five .blog-card__title a {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .blog-wrapper.style-five .blog-card__title a {
    font-size: 20px;
  }
}
.blog-wrapper.style-five .blog-card__title a:hover {
  color: var(--black) !important;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.blog-wrapper.style-five .blog-card__text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 90px;
}
@media (max-width: 1600px) {
  .blog-wrapper.style-five .blog-card__text {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .blog-wrapper.style-five .blog-card__text {
    font-size: 14px;
  }
}
.blog-wrapper.style-five .blog-card__thumb {
  width: 185px;
  height: 152px !important;
  overflow: hidden;
  border-radius: 18px;
  transition: width 0.5s ease;
  flex-shrink: 0;
}
.blog-wrapper.style-five .blog-card__thumb img {
  display: block;
  width: 100%;
  height: 152px !important;
  object-fit: fit;
}
.blog-wrapper.style-five .blog-card__thumb:hover {
  width: 100%;
}

/* ==========================================================================
   24. Feature
   ========================================================================== */
/* ==========================================================================
   25. FAQ
   ========================================================================== */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq-area .faq-wrapper .faq-title .title {
  color: var(--theme-5);
  text-transform: uppercase;
  margin-bottom: 60px;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
  text-transform: uppercase;
}
@media (max-width: 1600px) {
  .faq-area .faq-wrapper .faq-title .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .faq-area .faq-wrapper .faq-title .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .faq-area .faq-wrapper .faq-title .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .faq-area .faq-wrapper .faq-title .title {
    font-size: 18px;
  }
}
.faq-area .faq-wrapper .faq-title .title-bottom-content {
  margin-left: 424px;
}
@media (max-width: 991px) {
  .faq-area .faq-wrapper .faq-title .title-bottom-content {
    margin-left: 0;
  }
}
.faq-area .faq-wrapper .faq-title .title-bottom-content .text {
  max-width: 450px;
  margin-bottom: 35px;
  color: #464646;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.accordion.style1 .accordion-item .accordion-header button:after {
  display: none;
}
.accordion.style1 .accordion-item .accordion-button[aria-expanded=false]::before {
  content: "\f061";
  font-family: "Font Awesome 6 pro";
  right: 0;
  position: absolute;
  font-size: 20px;
  color: var(var(--title-color));
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion.style1 .accordion-item .accordion-button[aria-expanded=true]::before {
  content: "\f061";
  font-family: "Font Awesome 6 pro";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 10px;
  position: absolute;
  font-size: 20px;
}
.accordion.style1 .accordion-item {
  margin-bottom: 12px;
  background: transparent;
  border-bottom: 1px dotted;
}
.accordion.style1 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion.style1 .accordion-item .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.accordion.style1 .accordion-item button {
  gap: 54px;
  color: var(--theme-5);
  font-family: Outfit;
  font-size: 26px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  padding: 0 0 30px 0;
  margin-top: 30px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .accordion.style1 .accordion-item button {
    font-size: 20px !important;
    line-height: normal;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .accordion.style1 .accordion-item button {
    font-size: 18px !important;
    line-height: normal;
    padding: 0 30px 15px 0;
  }
}
.accordion.style1 .accordion-item button span {
  color: var(--theme-5);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.accordion.style1 .accordion-item button:not(.collapsed) {
  color: inherit !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none;
}
.accordion.style1 .accordion-item button:not(.collapsed) .icon-box {
  background-color: var(--theme);
}
.accordion.style1 .accordion-item button .accordion-button.collapsed {
  background: var(--white);
}
.accordion.style1 .accordion-item button .accordion-button.collapsed:after {
  display: none;
}
.accordion.style1 .accordion-item .accordion-body {
  padding: 0px 0 30px 95px;
  max-width: 1004px;
}
@media (max-width: 500px) {
  .accordion.style1 .accordion-item .accordion-body {
    padding: 0px 0 30px 0;
  }
}
.accordion.style1 .accordion-item .accordion-collapse .accordion-body p {
  color: var(--pra-text);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.accordion.style2 .accordion-item {
  margin-bottom: 25px;
  background: transparent;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
}
@media (max-width: 575px) {
  .accordion.style2 .accordion-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.accordion.style2 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion.style2 .accordion-item .accordion-button {
  position: relative;
  gap: 20px;
  background: transparent !important;
  border: none;
  margin-left: 46px;
  padding: 0;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 72px;
  line-height: 100%;
  color: var(--white);
  box-shadow: none;
}
@media (max-width: 767px) {
  .accordion.style2 .accordion-item .accordion-button {
    font-size: 42px;
  }
}
@media (max-width: 470px) {
  .accordion.style2 .accordion-item .accordion-button {
    font-size: 26px;
  }
}
.accordion.style2 .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.accordion.style2 .accordion-item .accordion-button::after {
  display: none;
}
.accordion.style2 .accordion-item .accordion-button[aria-expanded=false]::before {
  content: "+";
  position: absolute;
  left: -40px;
  font-size: 40px;
  color: var(--white);
}
.accordion.style2 .accordion-item .accordion-button[aria-expanded=true]::before {
  content: "−";
  position: absolute;
  left: -40px;
  font-size: 40px;
  color: var(--theme);
}
.accordion.style2 .accordion-item .accordion-button:not(.collapsed) {
  color: var(--theme);
}
.accordion.style2 .accordion-item .accordion-collapse .accordion-body {
  padding: 25px 0 0 46px;
  font-size: 18px;
  line-height: 156%;
  color: var(--gray2);
}
@media (max-width: 767px) {
  .accordion.style2 .accordion-item .accordion-collapse .accordion-body {
    padding: 25px 0 0 0;
  }
}

/* ==========================================================================
   26. Testimonials
   ========================================================================== */
.testimonials-area .testimonials-wrapper.style-one {
  border-radius: 20px;
  background: rgb(14, 14, 14);
  position: relative;
}
.testimonials-area .testimonials-wrapper.style-one .bg-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-area .testimonials-wrapper.style-one .title {
  color: rgb(255, 83, 31);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 54px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card {
  padding: 30px;
  box-shadow: inset 0px 1px 4px 0px rgba(181, 181, 181, 0.1);
  background: rgb(14, 14, 14);
  opacity: 0.4;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 29px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .card-meta ul {
  display: flex;
  align-items: center;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .card-meta ul li svg {
  width: 10px;
  height: 10px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .card-meta .icon svg {
  width: 23px;
  height: 23px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .text {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .reviewer .thumb img {
  height: 38px;
  width: 38px;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .reviewer .name {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0%;
}
.testimonials-area .testimonials-wrapper.style-one .testimonials-card .reviewer .title {
  color: rgb(153, 153, 153);
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0%;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-wrapper {
  align-items: center !important;
  justify-content: space-between !important;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card {
  padding: 54px;
  border-radius: 15px;
  box-shadow: inset 0px 1px 4px 0px rgba(181, 181, 181, 0.1);
  background: rgb(14, 14, 14);
  opacity: 1;
}
@media (max-width: 500px) {
  .testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card {
    padding: 24px;
  }
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .card-meta ul {
  display: flex;
  align-items: center;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .text {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0%;
  padding-bottom: 37px;
  margin-bottom: 45px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .text {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .text {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .reviewer .name {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0%;
}
.testimonials-area .testimonials-wrapper.style-one .swiper-slide.swiper-slide-active .testimonials-card .reviewer .title {
  color: rgb(153, 153, 153);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 0;
}
.testimonials-area .testimonials-wrapper.style-two {
  background: var(--theme-5);
  border-radius: 35px;
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-two {
    border-radius: 15px;
  }
}
.testimonials-area .testimonials-wrapper.style-two .section-top-content .sub-title {
  color: var(--white);
  border-bottom: 1px solid;
}
.testimonials-area .testimonials-wrapper.style-two .testimonial-card {
  padding: 45px 30px;
  position: relative;
  border-radius: 10px;
  background: var(--theme-6);
}
.testimonials-area .testimonials-wrapper.style-two .testimonial-card .quote-icon {
  margin-bottom: 45px;
  display: inline-block;
}
.testimonials-area .testimonials-wrapper.style-two .testimonial-card .testimonial-text {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-two .testimonial-card .testimonial-text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.testimonials-area .testimonials-wrapper.style-two .testimonial-card .author-name {
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonials-area .testimonials-wrapper.style-two .testimonial-card .author-role {
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: var(--white);
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom {
  width: 100%;
  max-width: 705px;
  margin: 36px auto 0;
  padding-top: 16px;
  overflow: hidden;
  position: relative;
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .active-icon {
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-wrapper {
  align-items: center;
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide .thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--white);
  opacity: 0.65;
  transform: scale(0.85);
  transition: all 0.35s ease;
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide .thumb {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 450px) {
  .testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide .thumb {
    width: 50px;
    height: 50px;
  }
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials-area .testimonials-wrapper.style-two .testimonials-inner .testimonials-active-two-bottom .swiper-slide.swiper-slide-active .thumb {
  opacity: 1;
  transform: scale(1);
  border-color: var(--theme);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media {
  position: relative;
  margin-right: 70px;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .testimonial-tag {
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 2;
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 90px;
  padding: 5px 20px;
}
@media (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .testimonial-tag {
    padding: 5px 10px;
    font-size: 12px;
    top: -5px;
  }
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .thumb {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  height: 510px;
  -webkit-mask-image: url("../images/testimonials/testimonialMusk1_3.png");
  mask-image: url("../images/testimonials/testimonialMusk1_3.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
}
@media (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .thumb {
    height: auto;
  }
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .rating-badge {
  position: absolute;
  right: 0;
  bottom: -5px;
  border-radius: 90px;
  background: rgba(217, 217, 217, 0);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 20px;
}
@media (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .rating-badge {
    padding: 3px;
    bottom: -12px;
  }
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .rating-badge .stars {
  display: inline-flex;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-content {
  margin-left: -40px;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .quote-icon {
  display: inline-block;
  margin-bottom: 45px;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .testimonial-text {
  font-weight: 500;
  font-size: 36px;
  line-height: 128%;
  color: var(--black);
  margin-bottom: 45px;
  max-width: 779px;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .author-info .author-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
  margin-bottom: 8px;
}
.testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .author-info .author-role {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--pra-text);
}
@media (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-grid {
    gap: 40px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .testimonial-text {
    font-size: 40px;
  }
}
@media (max-width: 1199px) and (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .testimonial-text {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .quote-icon {
    margin-bottom: 22px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .quote-icon svg {
    width: 46px;
    height: 36px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .testimonial-text {
    font-size: 32px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .author-info .author-name {
    font-size: 22px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .author-info .author-role {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .thumb {
    height: 360px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-media .rating-badge .stars {
    font-size: 16px;
  }
  .testimonials-area .testimonials-wrapper.style-three .testimonials-three-content .testimonial-text {
    font-size: 26px;
  }
}
.testimonials-area .testimonials-wrapper.style-five {
  position: relative;
}
.testimonials-area .testimonials-wrapper.style-five .section-title {
  color: #FFF;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  position: absolute;
  left: 160px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .testimonials-area .testimonials-wrapper.style-five .section-title {
    left: 40px;
  }
}
@media (max-width: 991px) {
  .testimonials-area .testimonials-wrapper.style-five .section-title {
    left: 5px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-five .section-title {
    display: none;
  }
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 534px;
  margin: 0 auto;
  border-radius: 10px;
  background: #FFF;
  padding: 15px 15px 60px 15px;
}
@media (max-width: 575px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card {
    width: 450px;
    padding: 15px;
  }
}
@media (max-width: 500px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card {
    width: 400px;
  }
}
@media (max-width: 450px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card {
    width: 300px;
  }
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .thumb {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card .thumb {
    margin-bottom: 30px;
  }
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .thumb img {
  border-radius: 10px;
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .star-wrap {
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card .star-wrap {
    margin-bottom: 15px;
  }
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .text {
  color: #141414;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card .text {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 15px;
  }
}
@media (max-width: 450px) {
  .testimonials-area .testimonials-wrapper.style-five .testimonials-card .text {
    font-size: 16px;
  }
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .name {
  color: #141414;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 10px;
}
.testimonials-area .testimonials-wrapper.style-five .testimonials-card .title {
  color: #464646;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five {
  position: absolute;
  top: 50%;
  right: 60px;
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 999;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 64px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  z-index: 99;
}
@media (max-width: 991px) {
  .testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five {
    right: 5px;
  }
}
@media (max-width: 767px) {
  .testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five {
    display: none !important;
  }
}
.testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  background: transparent;
  border-radius: 50%;
  opacity: 1;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  height: 26px;
  width: 10px;
}
.testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
}
.testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five .swiper-pagination-bullet-active {
  color: #C9F31D;
}
.testimonials-area .testimonials-wrapper.style-five .swiper-pagination.style-five .swiper-pagination-bullet-active::after {
  transform: translate(-50%, -50%) scale(1);
}

.testimonials-slider-wrapper {
  position: relative;
}
.testimonials-slider-wrapper.style-three {
  padding: 75px;
  background-color: var(--bg-color-3);
}
@media (max-width: 500px) {
  .testimonials-slider-wrapper.style-three {
    padding: 20px;
  }
}
.testimonials-slider-wrapper.style-three .testimonials-slider-active-three {
  overflow: hidden;
}
.testimonials-slider-wrapper.style-three .swiper-wrapper {
  align-items: stretch;
}
.testimonials-slider-wrapper.style-three .swiper-slide {
  height: auto;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item {
  background: var(--white);
  border-radius: 14px;
  padding: 45px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 500px) {
  .testimonials-slider-wrapper.style-three .testimonial-slide-item {
    padding: 20px;
  }
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .rating {
  margin-bottom: 28px;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .slide-title {
  margin-bottom: 25px;
}
@media (max-width: 500px) {
  .testimonials-slider-wrapper.style-three .testimonial-slide-item .slide-title {
    margin-bottom: 15px;
  }
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .slide-title a {
  font-weight: 600;
  font-size: 24px;
  line-height: 142%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--black);
  max-width: 271px;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .slide-text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--pra-text);
  margin-bottom: 45px;
  max-width: 351px;
}
@media (max-width: 1199px) {
  .testimonials-slider-wrapper.style-three .testimonial-slide-item .slide-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .reviewer .thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .reviewer .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .reviewer .name {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--black);
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item .reviewer .role {
  font-weight: 400;
  font-size: 15px;
  line-height: 147%;
  color: var(--black);
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item.has-media .media-thumb {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 45px;
  height: auto;
}
@media (max-width: 1600px) {
  .testimonials-slider-wrapper.style-three .testimonial-slide-item.has-media .media-thumb {
    margin-bottom: 10;
  }
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item.has-media .media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials-slider-wrapper.style-three .testimonial-slide-item.has-media .media-thumb .play-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 24px;
}
.testimonials-slider-wrapper.style-three .testimonials-slider-pagination {
  margin-top: 60px;
  line-height: 1;
  border-radius: 90px;
  background: var(--white);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content !important;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
}
@media (max-width: 500px) {
  .testimonials-slider-wrapper.style-three .testimonials-slider-pagination {
    margin-top: 30px;
  }
}
.testimonials-slider-wrapper.style-three .testimonials-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  opacity: 1;
  background: #cfcfcf;
}
.testimonials-slider-wrapper.style-three .testimonials-slider-pagination .swiper-pagination-bullet-active {
  background: var(--theme-3);
}
.testimonials-slider-wrapper .shape-circle {
  position: absolute;
  top: 121px;
  right: 137px;
  width: 69px;
  height: 69px;
}
@media (max-width: 470px) {
  .testimonials-slider-wrapper .shape-circle {
    display: none;
  }
}

/* ==========================================================================
   27. Brand
   ========================================================================== */
.brand-wrapper.style-one .brand-title .title {
  color: var(--theme-5);
  text-transform: uppercase;
  margin-bottom: 60px;
  font-family: var(--font-primary);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 1600px) {
  .brand-wrapper.style-one .brand-title .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .brand-wrapper.style-one .brand-title .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .brand-wrapper.style-one .brand-title .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .brand-wrapper.style-one .brand-title .title {
    font-size: 18px;
  }
}
.brand-wrapper.style-one .brand-title .title-bottom-content {
  margin-left: 424px;
}
@media (max-width: 991px) {
  .brand-wrapper.style-one .brand-title .title-bottom-content {
    margin-left: 0;
  }
}
.brand-wrapper.style-one .brand-title .title-bottom-content .text {
  max-width: 450px;
  margin-bottom: 35px;
}
.brand-wrapper.style-one .brand-logo-wrap {
  margin: 0 78px;
}
@media (max-width: 991px) {
  .brand-wrapper.style-one .brand-logo-wrap {
    margin: 0 20px;
  }
}
.brand-wrapper.style-one .brand-logo-wrap .brand-logo-items {
  width: 1772px;
}
@media (max-width: 1199px) {
  .brand-wrapper.style-one .brand-logo-wrap .brand-logo-items {
    width: 100%;
  }
}
.brand-wrapper.style-one .brand-logo-wrap .brand-logo-items .logo-card {
  box-sizing: border-box;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 10px 10px 0px 0px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  width: 100%;
}
@media (max-width: 991px) {
  .brand-wrapper.style-one .brand-logo-wrap .brand-logo-items .logo-card {
    border-radius: 10px;
  }
}
.brand-wrapper.style-one .brand-logo-wrap .brand-logo-items .logo-card-2 {
  box-sizing: border-box;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 0px 0px 10px 10px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  width: 100%;
}
@media (max-width: 991px) {
  .brand-wrapper.style-one .brand-logo-wrap .brand-logo-items .logo-card-2 {
    border-radius: 10px;
  }
}
.brand-wrapper.style-three {
  background: var(--bg-color-3);
}
.brand-wrapper.style-three .border-title {
  margin-bottom: 60px;
}
.brand-wrapper.style-three .scrolling-wrap {
  background: transparent;
}
.brand-wrapper.style-three .scrolling-wrap .comm .cmn-textslide-1 {
  background-color: var(--white);
}
.brand-wrapper.style-three .scrolling-wrap .comm .cmn-textslide-2 {
  background-color: var(--white);
}
.brand-wrapper.style-three .scrolling-wrap.style2 .comm .cmn-textslide-1 {
  background-color: var(--white) !important;
}
.brand-wrapper.style-three .scrolling-wrap.style2 .comm .cmn-textslide-2 {
  background-color: var(--white) !important;
}
.brand-wrapper.style-four {
  background: var(--black);
  border-radius: 0 0 45px 45px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .brand-wrapper.style-four {
    border-radius: 0 0 15px 15px;
  }
}
.brand-wrapper.style-four .cir {
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
@media (max-width: 767px) {
  .brand-wrapper.style-four .cir {
    display: none;
  }
}
.brand-wrapper.style-four .between-content .title {
  max-width: 546px;
}
@media (max-width: 1199px) {
  .brand-wrapper.style-four .between-content .title {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-four .between-content .right-title p {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .brand-wrapper.style-four .between-content .right-title p {
    max-width: 100%;
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-four .section-top-content.style-four.between-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.brand-wrapper.style-four .brand-card-wrap {
  display: grid;
  grid-template-columns: repeat(5, 240px);
  gap: 24px;
  justify-content: center;
}
@media (max-width: 1399px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(5, 200px);
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(5, 150px);
  }
}
@media (max-width: 991px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(5, 120px);
  }
}
@media (max-width: 767px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(4, 110px);
  }
}
@media (max-width: 575px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(3, 130px);
  }
}
@media (max-width: 500px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(3, 120px);
  }
}
@media (max-width: 470px) {
  .brand-wrapper.style-four .brand-card-wrap {
    grid-template-columns: repeat(2, 120px);
  }
}
.brand-wrapper.style-four .brand-card-wrap .brand-card-shape {
  grid-column: span 2;
  width: 100%;
  height: auto;
}
.brand-wrapper.style-four .brand-card-wrap .brand-card {
  width: 240px;
  height: 220px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .brand-wrapper.style-four .brand-card-wrap .brand-card {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1199px) {
  .brand-wrapper.style-four .brand-card-wrap .brand-card {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 991px) {
  .brand-wrapper.style-four .brand-card-wrap .brand-card {
    width: 120px;
    height: 120px;
  }
}
.brand-wrapper.style-five {
  background: var(--theme-4);
}
.brand-wrapper.style-five .brand-title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  max-width: 931px;
  margin: 0 auto;
  margin-bottom: 70px;
}
@media (max-width: 1600px) {
  .brand-wrapper.style-five .brand-title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .brand-wrapper.style-five .brand-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .brand-wrapper.style-five .brand-title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .brand-wrapper.style-five .brand-title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .brand-wrapper.style-five .custom-mb {
    margin-bottom: 20px;
  }
}
.brand-wrapper.style-five .brand-logo-wrap {
  margin: 0 78px;
}
@media (max-width: 1199px) {
  .brand-wrapper.style-five .brand-logo-wrap {
    margin: 0;
  }
}
.brand-wrapper.style-five .logo-card,
.brand-wrapper.style-five .logo-card-2 {
  background: transparent !important;
  height: 170px !important;
  border: 1px solid #000 !important;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1) !important;
}
.brand-wrapper.style-page .scrolling-wrap.style2 .cmn-textslide-1 {
  background: #fff !important;
}
.brand-wrapper.style-page .scrolling-wrap.style2 .cmn-textslide-2 {
  background: #fff !important;
}
.brand-wrapper.brand-wrapper .scrolling-wrap {
  background: transparent;
  padding: 0;
}
.brand-wrapper.brand-wrapper .scrolling-wrap .cmn-textslide-1,
.brand-wrapper.brand-wrapper .scrolling-wrap .cmn-textslide-2 {
  background: #FFF;
}

/* ==========================================================================
   28. Gallery
   ========================================================================== */
@media (max-width: 991px) {
  .gallery-area {
    display: none;
  }
}

.gallery-wrapper {
  position: relative;
  overflow: visible;
}
.gallery-wrapper.fix {
  overflow: visible;
}
.gallery-wrapper .gallery-thumb {
  border-radius: 35px;
}
.gallery-wrapper .gallery-thumb img {
  border-radius: 35px;
}
.gallery-wrapper .gallery-thumb.style-four {
  border-radius: 0 0 45px 45px;
}
.gallery-wrapper .gallery-thumb.style-four img {
  border-radius: 0 0 45px 45px;
}
.gallery-wrapper .circle-wrapper.circle-two {
  position: absolute;
  top: -83px !important;
  right: 75px !important;
  left: auto !important;
  z-index: 99;
  border: none;
  box-shadow: none;
}
.gallery-wrapper .circle-wrapper.circle-two::before, .gallery-wrapper .circle-wrapper.circle-two::after {
  display: none;
}
.gallery-wrapper .circle-wrapper.circle-two .circle-text {
  animation: cir36 20s linear infinite;
  -webkit-animation: cir36 20s linear infinite;
}
.gallery-wrapper .circle-wrapper.circle-two .circle-image svg path {
  fill: var(--black);
}

/* ==========================================================================
   29. Case Study
   ========================================================================== */
.case-study-wrapper.style-two .section-top-content {
  margin-bottom: 120px;
  position: relative;
}
.case-study-wrapper.style-two .section-top-content .title {
  margin-left: 430px;
}
@media (max-width: 1199px) {
  .case-study-wrapper.style-two .section-top-content .title {
    margin-left: 280px;
  }
}
@media (max-width: 991px) {
  .case-study-wrapper.style-two .section-top-content .title {
    margin-left: 0;
  }
}
.case-study-wrapper.style-two .section-top-content .simple-btn {
  position: absolute;
  left: -27px;
  top: 163px;
  transform: rotate(-31deg);
  margin-right: 0;
}
@media (max-width: 991px) {
  .case-study-wrapper.style-two .section-top-content .simple-btn {
    transform: rotate(0deg);
    left: 0;
    top: auto;
    margin-left: 0;
  }
}
.case-study-wrapper.style-two .case-study-cards {
  display: flex;
  gap: 18px;
  height: 600px;
  min-height: 600px;
}
.case-study-wrapper.style-two .case-study-item {
  flex: 1;
  height: 600px;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--black);
  transition: flex 0.45s ease, transform 0.45s ease;
}
@media (max-width: 767px) {
  .case-study-wrapper.style-two .case-study-item:first-child {
    display: none;
  }
}
@media (max-width: 450px) {
  .case-study-wrapper.style-two .case-study-item:nth-child(2) {
    display: none;
  }
}
.case-study-wrapper.style-two .case-study-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.case-study-wrapper.style-two .case-study-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.05) 35%, rgba(14, 14, 14, 0.72) 100%);
  opacity: 0.8;
  transition: opacity 0.35s ease;
}
.case-study-wrapper.style-two .case-study-item .case-study-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
@media (max-width: 1199px) {
  .case-study-wrapper.style-two .case-study-item .case-study-content {
    gap: 5px !important;
  }
}
@media (max-width: 500px) {
  .case-study-wrapper.style-two .case-study-item .case-study-content {
    padding: 5px;
  }
}
.case-study-wrapper.style-two .case-study-item .case-study-content h3 {
  margin: 0;
  color: var(--theme-5);
  font-size: 28px;
  line-height: 1.35;
  max-width: 80%;
}
@media (max-width: 1700px) {
  .case-study-wrapper.style-two .case-study-item .case-study-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .case-study-wrapper.style-two .case-study-item .case-study-content h3 {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .case-study-wrapper.style-two .case-study-item .case-study-content h3 {
    font-size: 16px;
  }
}
.case-study-wrapper.style-two .case-study-item .case-study-content a {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--theme);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.case-study-wrapper.style-two .case-study-item.is-active {
  flex: 1.95;
}
.case-study-wrapper.style-two .case-study-item.is-active .case-study-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.case-study-wrapper.style-two .case-study-cards:hover .case-study-item {
  flex: 1;
}
.case-study-wrapper.style-two .case-study-cards:hover .case-study-item .case-study-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition-delay: 0s;
}
.case-study-wrapper.style-two .case-study-cards:hover .case-study-item:hover {
  flex: 1.95;
}
.case-study-wrapper.style-two .case-study-cards:hover .case-study-item:hover .case-study-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.14s;
}
@media (max-width: 991px) {
  .case-study-wrapper.style-two .case-study-wrapper .section-top-content {
    margin-bottom: 60px;
  }
  .case-study-wrapper.style-two .case-study-wrapper .section-top-content .title {
    margin-left: 0;
  }
  .case-study-wrapper.style-two .case-study-wrapper .case-study-cards {
    flex-direction: column;
    min-height: unset;
  }
  .case-study-wrapper.style-two .case-study-wrapper .case-study-item {
    height: 340px;
    flex: 1 !important;
  }
  .case-study-wrapper.style-two .case-study-wrapper .case-study-item .case-study-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .case-study-wrapper.style-two .case-study-wrapper .case-study-item .case-study-content h3 {
    font-size: 22px;
  }
}

/* ==========================================================================
   30. How It Work
   ========================================================================== */
.how-it-works-wrapper.style-one {
  background: var(--bg-color-2);
  position: relative;
  overflow: hidden;
}
.how-it-works-wrapper.style-one .shape-1 {
  position: absolute;
  top: -299px;
  right: -299px;
  z-index: 1;
}
.how-it-works-wrapper.style-one .section-top-content {
  position: relative;
  z-index: 9;
}
.how-it-works-wrapper.style-one .section-top-content .sub-title {
  border: none;
  padding: 0;
  margin-bottom: 30px;
}
.how-it-works-wrapper.style-one .section-top-content .title {
  max-width: 897px;
}
.how-it-works-wrapper.style-four {
  background: var(--black);
  position: relative;
  z-index: 1;
}
.how-it-works-wrapper.style-four .animation-shape {
  position: absolute;
  left: 75px;
  top: 75px;
  z-index: -1;
}
@media (max-width: 1700px) {
  .how-it-works-wrapper.style-four .animation-shape {
    top: 10px;
  }
}
@media (max-width: 991px) {
  .how-it-works-wrapper.style-four .animation-shape {
    display: none;
  }
}
.how-it-works-wrapper.style-four .thumb {
  margin-right: -320px;
  position: relative;
}
@media (max-width: 991px) {
  .how-it-works-wrapper.style-four .thumb {
    margin-right: 0;
  }
}
.how-it-works-wrapper.style-four .thumb .thumb-content {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 575px) {
  .how-it-works-wrapper.style-four .thumb .thumb-content svg {
    width: 100px;
    height: 100px;
  }
}

/* ==========================================================================
   31. Why Choose Us
   ========================================================================== */
.why-choose-us-wrapper {
  position: relative;
}
.why-choose-us-wrapper .section-top-content .title {
  max-width: 794px;
}
.why-choose-us-wrapper .section-top-content .sub-title {
  border-bottom: none;
}
.why-choose-us-wrapper .shape-content {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .why-choose-us-wrapper .shape-content img {
    display: none;
  }
}
.why-choose-us-wrapper .thumb {
  margin-left: -15px;
}
@media (max-width: 991px) {
  .why-choose-us-wrapper .thumb {
    display: none;
  }
}
.why-choose-us-wrapper .right-content {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .why-choose-us-wrapper .right-content {
    margin-left: 0;
  }
}
.why-choose-us-wrapper .right-content .items-wrap .item {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid rgba(14, 14, 14, 0.1);
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.why-choose-us-wrapper .right-content .items-wrap .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.why-choose-us-wrapper .right-content .items-wrap .item:first-child {
  border-top: 1px solid rgba(14, 14, 14, 0.1);
  padding-top: 25px;
}
.why-choose-us-wrapper .right-content .items-wrap .item .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 450px) {
  .why-choose-us-wrapper .right-content .items-wrap .item .icon {
    width: 50px;
    height: 50px;
  }
}
.why-choose-us-wrapper .right-content .items-wrap .item .content h3 {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 36px;
  line-height: 128%;
  color: var(--theme-5);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .why-choose-us-wrapper .right-content .items-wrap .item .content h3 {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .why-choose-us-wrapper .right-content .items-wrap .item .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.why-choose-us-wrapper .right-content .items-wrap .item .content p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--pra-text);
}
@media (max-width: 450px) {
  .why-choose-us-wrapper .right-content .items-wrap .item .content p {
    font-size: 14px;
  }
}

.why-choose-us-wave .right-content .items-wrap .item .icon svg path {
  animation: wcuPathWave 2.6s ease-in-out infinite;
  will-change: opacity;
}
.why-choose-us-wave .right-content .items-wrap .item .icon svg path:nth-child(2n) {
  animation-delay: 0.2s;
}
.why-choose-us-wave .right-content .items-wrap .item .icon svg path:nth-child(3n) {
  animation-delay: 0.4s;
}
.why-choose-us-wave .right-content .items-wrap .item:nth-child(2) .icon svg path {
  animation-delay: 0.3s;
}
.why-choose-us-wave .right-content .items-wrap .item:nth-child(3) .icon svg path {
  animation-delay: 0.55s;
}

.wcu-wrapper.style-five {
  background: #F1F1F1;
}
.wcu-wrapper.style-five .left-content {
  margin-right: -60px;
}
@media (max-width: 1600px) {
  .wcu-wrapper.style-five .left-content {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .wcu-wrapper.style-five .left-content {
    display: flex;
    align-items: stretch;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .wcu-wrapper.style-five .left-content {
    flex-direction: column;
    gap: 0;
  }
}
.wcu-wrapper.style-five .left-content .counter-items {
  flex: 1;
  height: 100%;
}
@media (max-width: 767px) {
  .wcu-wrapper.style-five .counter-title {
    font-size: 15px;
    line-height: normal;
  }
}
.wcu-wrapper.style-five .thumb {
  text-align: center;
}
@media (max-width: 991px) {
  .wcu-wrapper.style-five .thumb {
    width: 100%;
  }
  .wcu-wrapper.style-five .thumb img {
    width: 100%;
  }
}
.wcu-wrapper.style-five .right-content {
  margin-left: -60px;
}
@media (max-width: 1600px) {
  .wcu-wrapper.style-five .right-content {
    margin: 0;
  }
}
.wcu-wrapper.style-five .right-content .content-items {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .wcu-wrapper.style-five .right-content .content-items {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.wcu-wrapper.style-five .right-content .content-items:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.wcu-wrapper.style-five .right-content .content-items .right-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .wcu-wrapper.style-five .right-content .content-items .right-title {
    margin-bottom: 5px;
  }
}
.wcu-wrapper.style-five .right-content .content-items P {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 470px) {
  .wcu-wrapper.style-five .right-content .content-items P {
    font-size: 16px;
  }
}

@keyframes wcuPathWave {
  0%, 100% {
    opacity: 1;
  }
  40% {
    opacity: 0.55;
  }
  75% {
    opacity: 0.85;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-choose-us-wave .right-content .items-wrap .item .icon svg path {
    animation: none;
  }
}
/* ==========================================================================
   32. Team
   ========================================================================== */
.team-wrapper.style-three .left-content {
  position: relative;
}
.team-wrapper.style-three .left-content .shape {
  position: absolute;
  bottom: -100px;
  right: 200px;
}
@media (max-width: 1199px) {
  .team-wrapper.style-three .left-content .shape {
    right: 0;
  }
}
.team-wrapper.style-three .section-top-content .title {
  max-width: 729px;
}
.team-wrapper.style-three .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  background: var(--gray4);
}
.team-wrapper.style-three .team-card .thumb img {
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
@media (max-width: 575px) {
  .team-wrapper.style-three .team-card .thumb img {
    width: 100%;
  }
}
.team-wrapper.style-three .team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0) 55%, rgba(14, 14, 14, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.team-wrapper.style-three .team-card .member-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 37px;
  z-index: 2;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
@media (max-width: 1199px) {
  .team-wrapper.style-three .team-card .member-content {
    padding: 12px;
  }
}
.team-wrapper.style-three .team-card .member-content .name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 24px;
  line-height: 142%;
  color: var(--black);
}
@media (max-width: 1399px) {
  .team-wrapper.style-three .team-card .member-content .name {
    font-size: 14px;
  }
}
.team-wrapper.style-three .team-card .member-content .role {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-transform: uppercase;
  color: var(--pra-text);
}
@media (max-width: 1199px) {
  .team-wrapper.style-three .team-card .member-content .role {
    font-size: 10px;
  }
}
.team-wrapper.style-three .team-card:hover .thumb img, .team-wrapper.style-three .team-card.is-hover .thumb img {
  transform: scale(1.04);
  filter: blur(20px);
}
.team-wrapper.style-three .team-card:hover::after, .team-wrapper.style-three .team-card.is-hover::after {
  opacity: 1;
}
.team-wrapper.style-three .team-card:hover .member-content, .team-wrapper.style-three .team-card.is-hover .member-content {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   33. Pricing
   ========================================================================== */
.pricing-wrapper .pricing-card {
  border-radius: 10px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  background: var(--bg-color);
  padding: 60px 35px;
  height: 100%;
}
@media (max-width: 991px) {
  .pricing-wrapper .pricing-card {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  .pricing-wrapper .pricing-card {
    padding: 35px;
  }
}
@media (max-width: 470px) {
  .pricing-wrapper .pricing-card {
    padding: 20px 15px;
  }
}
.pricing-wrapper .pricing-card .plan-tag {
  display: inline-block;
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 5px 24px;
  margin-bottom: 25px;
}
@media (max-width: 450px) {
  .pricing-wrapper .pricing-card .plan-tag {
    margin-bottom: 10px;
  }
}
.pricing-wrapper .pricing-card .price {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  display: block;
  margin-bottom: 25px;
}
@media (max-width: 450px) {
  .pricing-wrapper .pricing-card .price {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.pricing-wrapper .pricing-card .price span {
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.pricing-wrapper .pricing-card .desc {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 390px;
  margin-bottom: 32px;
}
.pricing-wrapper .pricing-card .simple-btn {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .pricing-wrapper .pricing-card .simple-btn {
    margin-bottom: 30px;
  }
}
.pricing-wrapper .pricing-card .simple-btn .gt-hover-btn {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--theme-4);
}
@media (max-width: 470px) {
  .pricing-wrapper .pricing-card .simple-btn .gt-hover-btn {
    padding: 10px 20px;
  }
}
.pricing-wrapper .pricing-card .simple-btn .gt-hover-btn .text {
  color: var(--black) !important;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 24px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
  border-radius: 90px;
  text-transform: capitalize !important;
}
@media (max-width: 470px) {
  .pricing-wrapper .pricing-card .simple-btn .gt-hover-btn .text {
    font-size: 18px !important;
  }
}
.pricing-wrapper .pricing-card .simple-btn .gt-hover-btn:hover .text {
  color: var(--white) !important;
}
.pricing-wrapper .pricing-card .divider {
  border: none;
  border-top: 1px solid #e2e0db;
  margin: 0 0 1.4rem;
}
.pricing-wrapper .pricing-card .features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 470px) {
  .pricing-wrapper .pricing-card .features {
    gap: 10px;
  }
}
.pricing-wrapper .pricing-card .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .pricing-wrapper .pricing-card .feature {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .pricing-wrapper .pricing-card .feature {
    font-size: 18px;
  }
}
@media (max-width: 470px) {
  .pricing-wrapper .pricing-card .feature {
    font-size: 14px;
  }
}
.pricing-wrapper .pricing-card .feature svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

/* ==========================================================================
   34. Process
   ========================================================================== */
.process-wrapper .left-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 155px;
}
@media (max-width: 1700px) {
  .process-wrapper .left-content {
    gap: 264px;
  }
}
@media (max-width: 1600px) {
  .process-wrapper .left-content {
    gap: 24px;
  }
}
@media (max-width: 1199px) {
  .process-wrapper .left-content .thumb {
    width: 100%;
  }
  .process-wrapper .left-content .thumb img {
    width: 100%;
  }
}
.process-wrapper .right-content {
  margin-left: 58px;
}
@media (max-width: 1199px) {
  .process-wrapper .right-content {
    margin-left: 0;
  }
}
.process-wrapper .right-content .accordion .accordion-item {
  padding: 20px 40px 55px 30px;
  border-radius: 15px 15px 0 0;
  border: 1px solid #DFDFDF;
  border-bottom: none;
  background: #F1F1F1;
  margin-bottom: -10px;
}
@media (max-width: 767px) {
  .process-wrapper .right-content .accordion .accordion-item {
    padding: 20px 40px 25px 30px;
  }
}
.process-wrapper .right-content .accordion .accordion-item:last-child {
  border-bottom: 1px solid #DFDFDF;
  border-radius: 15px;
  padding: 20px 40px 45px 30px;
}
@media (max-width: 767px) {
  .process-wrapper .right-content .accordion .accordion-item:last-child {
    padding: 20px 40px 25px 30px;
  }
}
.process-wrapper .right-content .accordion .accordion-item .accordion-header {
  --bs-accordion-border-width: 0px;
}
.process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button {
  display: flex;
  align-items: center;
  gap: 120px;
  color: #000;
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  padding: 0;
  background: transparent;
}
@media (max-width: 1399px) {
  .process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button {
    gap: 57px;
  }
}
@media (max-width: 470px) {
  .process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button {
    gap: 20px;
    font-size: 26px;
  }
}
.process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button span {
  color: #000;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
}
@media (max-width: 470px) {
  .process-wrapper .right-content .accordion .accordion-item .accordion-header .accordion-button span {
    gap: 20px;
    font-size: 26px;
  }
}
.process-wrapper .right-content .accordion .accordion-item .accordion-body {
  color: #424242;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding: 0;
  margin-top: 45px;
  padding-left: 156px;
}
@media (max-width: 1399px) {
  .process-wrapper .right-content .accordion .accordion-item .accordion-body {
    margin-top: 15px;
    padding-left: 95px;
  }
}
@media (max-width: 470px) {
  .process-wrapper .right-content .accordion .accordion-item .accordion-body {
    font-size: 16px;
    line-height: normal;
    padding-left: 0;
  }
}
.process-wrapper .right-content .accordion-link {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  border-radius: 15px;
  background: var(--black);
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 20px;
  margin-top: 10px;
}

/* ==========================================================================
   35. CTA
   ========================================================================== */
.cta-wrapper.style-one {
  border-radius: 20px;
  background: var(--theme-5);
  padding: 250px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .cta-wrapper.style-one {
    padding: 150px 0px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper.style-one {
    padding: 100px 0px;
  }
}
@media (max-width: 500px) {
  .cta-wrapper.style-one {
    padding: 50px 0px;
  }
}
.cta-wrapper.style-one .cta-shape-1 {
  position: absolute;
  top: 90px;
  left: 100px;
}
.cta-wrapper.style-one .cta-shape-2 {
  position: absolute;
  bottom: 60px;
  right: 100px;
}
.cta-wrapper.style-one .cta-shape-3 {
  position: absolute;
  top: 0;
  right: 251px;
}
.cta-wrapper.style-one .cta-shape-4 {
  position: absolute;
  bottom: 0;
  left: 261px;
}
.cta-wrapper.style-one .cta-title {
  position: relative;
  z-index: 99;
}
.cta-wrapper.style-one .cta-title .title {
  color: #FFF;
  text-align: center;
  text-transform: uppercase;
  max-width: 797px;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 991px) {
  .cta-wrapper.style-one .cta-title .title {
    font-size: 40px;
    line-height: normal;
    max-width: 897px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper.style-one .cta-title .title {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .cta-wrapper.style-one .cta-title .title {
    font-size: 22px;
  }
}
.cta-wrapper.style-one .cta-title .title span {
  color: var(--theme);
  font-family: var(--font-primary);
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 62px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .cta-wrapper.style-one .cta-title .title span {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .cta-wrapper.style-one .cta-title .title span {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .cta-wrapper.style-one .cta-title .title span {
    font-size: 22px;
  }
}
.cta-wrapper.style-three {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 246px 0 243px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-wrapper.style-three .center-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-wrapper.style-three .center-content .sub-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 30px;
}
.cta-wrapper.style-three .center-content .title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 120px;
  line-height: 83%;
  color: var(--black);
  margin-bottom: 15px;
}
.cta-wrapper.style-three .center-content .title:last-child {
  margin-bottom: 0;
}
.cta-wrapper.style-three .thumb-content {
  position: absolute;
  top: 120px;
}
.cta-wrapper.style-three .thumb-content .thumb-group {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(1) {
  gap: 435px;
  margin-bottom: 70px;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(2) {
  gap: 919px;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(3) {
  gap: 435px;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(4) {
  gap: 435px;
  margin-top: 70px;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(5) {
  gap: 919px;
}
.cta-wrapper.style-three .thumb-content .thumb-group:nth-of-type(6) {
  gap: 435px;
}

/* ==========================================================================
   36. Play Store
   ========================================================================== */
.play-store-wrapper {
  background: var(--theme-4);
  position: relative;
  z-index: 2;
}
.play-store-wrapper .left-content {
  margin-right: -33px;
}
.play-store-wrapper .play-store-area-bg-thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1600px) {
  .play-store-wrapper .play-store-area-bg-thumb {
    width: 754px;
    height: 567px;
  }
}
@media (max-width: 1399px) {
  .play-store-wrapper .play-store-area-bg-thumb {
    width: 754px;
    height: 567px;
  }
}
@media (max-width: 1199px) {
  .play-store-wrapper .play-store-area-bg-thumb {
    width: 463px;
    height: 346px;
  }
}
@media (max-width: 991px) {
  .play-store-wrapper .play-store-area-bg-thumb {
    display: none;
  }
}
.play-store-wrapper .play-store-area-bg-thumb-two {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.play-store-wrapper .border-wrap .line-shape-1 {
  margin-bottom: 4px;
}
.play-store-wrapper .meta-title {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}
@media (max-width: 450px) {
  .play-store-wrapper .meta-title {
    max-width: 400px;
  }
}
@media (max-width: 470px) {
  .play-store-wrapper .mb-40 {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 470px) {
  .play-store-wrapper .mb-35 {
    margin-bottom: 20px !important;
  }
}
.play-store-wrapper .store-link {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .play-store-wrapper .store-link {
    flex-direction: column;
  }
}
.play-store-wrapper .store-items {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--black);
  padding: 15px 24px;
  border-radius: 10px;
  width: 219px;
}
@media (max-width: 470px) {
  .play-store-wrapper .store-items {
    padding: 13px 14px;
    width: 200px;
  }
}
@media (max-width: 450px) {
  .play-store-wrapper .store-items {
    max-width: 100%;
  }
}
.play-store-wrapper .content span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
  display: inline-block;
}
.play-store-wrapper .content .name-store {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
  display: inline-block;
}

/* ==========================================================================
   37. Interactive
   ========================================================================== */
.interactive-process-layout {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .interactive-process-layout {
    display: none;
  }
}

.interactive-process-layout.masked-img.style-two {
  width: 1920px;
  height: 900px;
  object-fit: none;
  transform: scalex(1.08);
  transform-origin: left top;
  clip-path: path("M162.857 0C212.563 0.000189671 252.857 40.2945 252.857 90L252.865 88.8369C253.488 39.6674 293.54 5.31906e-05 342.857 0H415.715C465.396 0.00013188 505.674 40.2549 505.714 89.9268C505.753 40.2549 546.033 0.000159029 595.714 0H668.571C718.277 2.66561e-05 758.571 40.2944 758.571 90C758.571 40.2945 798.866 0.000193818 848.571 0H921.429C971.134 0 1011.43 40.2944 1011.43 90L1011.44 88.8369C1012.06 39.6673 1052.11 0 1101.43 0H1174.29C1223.99 0 1264.29 40.2944 1264.29 90V810C1264.29 859.706 1223.99 900 1174.29 900H1101.43C1052.11 900 1012.06 860.333 1011.44 811.163L1011.43 810C1011.43 859.706 971.134 900 921.429 900H848.571C799.254 900 759.202 860.333 758.579 811.163L758.571 810C758.571 859.706 718.277 900 668.571 900H595.714C546.033 900 505.753 859.745 505.714 810.072C505.675 859.745 465.396 900 415.715 900H342.857C293.54 900 253.488 860.333 252.865 811.163L252.857 810C252.857 859.706 212.563 900 162.857 900H90C40.2944 900 0 859.706 0 810V90C1.23699e-05 40.2944 40.2944 0 90 0H162.857ZM1427.14 0C1476.85 0 1517.14 40.2944 1517.14 90L1517.15 88.8369C1517.77 39.6673 1557.83 0 1607.14 0H1680C1729.71 0.000255643 1770 40.2945 1770 90V810C1770 859.706 1729.71 900 1680 900H1607.14C1557.83 900 1517.77 860.333 1517.15 811.163L1517.14 810C1517.14 859.706 1476.85 900 1427.14 900H1354.29C1304.58 900 1264.29 859.706 1264.29 810V90C1264.29 40.2944 1304.58 0 1354.29 0H1427.14Z");
}

.interactive-process-layout.masked-img.style-three {
  width: 1920px;
  height: 900px;
  object-fit: none;
  transform: scalex(1);
  transform-origin: left top;
  clip-path: path("M162.857 0C212.563 0.000189671 252.857 40.2945 252.857 90L252.865 88.8369C253.488 39.6674 293.54 5.31906e-05 342.857 0H415.715C465.396 0.00013188 505.674 40.2549 505.714 89.9268C505.753 40.2549 546.033 0.000159029 595.714 0H668.571C718.277 2.66561e-05 758.571 40.2944 758.571 90C758.571 40.2945 798.866 0.000193818 848.571 0H921.429C971.134 0 1011.43 40.2944 1011.43 90L1011.44 88.8369C1012.06 39.6673 1052.11 0 1101.43 0H1174.29C1223.99 0 1264.29 40.2944 1264.29 90V810C1264.29 859.706 1223.99 900 1174.29 900H1101.43C1052.11 900 1012.06 860.333 1011.44 811.163L1011.43 810C1011.43 859.706 971.134 900 921.429 900H848.571C799.254 900 759.202 860.333 758.579 811.163L758.571 810C758.571 859.706 718.277 900 668.571 900H595.714C546.033 900 505.753 859.745 505.714 810.072C505.675 859.745 465.396 900 415.715 900H342.857C293.54 900 253.488 860.333 252.865 811.163L252.857 810C252.857 859.706 212.563 900 162.857 900H90C40.2944 900 0 859.706 0 810V90C1.23699e-05 40.2944 40.2944 0 90 0H162.857ZM1427.14 0C1476.85 0 1517.14 40.2944 1517.14 90L1517.15 88.8369C1517.77 39.6673 1557.83 0 1607.14 0H1680C1729.71 0.000255643 1770 40.2945 1770 90V810C1770 859.706 1729.71 900 1680 900H1607.14C1557.83 900 1517.77 860.333 1517.15 811.163L1517.14 810C1517.14 859.706 1476.85 900 1427.14 900H1354.29C1304.58 900 1264.29 859.706 1264.29 810V90C1264.29 40.2944 1304.58 0 1354.29 0H1427.14Z");
}
@media (max-width: 1899px) {
  .interactive-process-layout.masked-img.ml-75 {
    margin-left: 0;
  }
}
@media (max-width: 1899px) {
  .interactive-process-layout.masked-img.mr-75 {
    margin-right: 0;
  }
}

.interactive-process-layout.masked-img {
  width: 1920px;
  height: 800px;
  aspect-ratio: 1920/800;
  object-fit: none;
  transform: scalex(1);
  transform-origin: left top;
  -webkit-clip-path: path("M157 0C176.33 0 192 15.67 192 35C192 15.67 207.67 0 227 0H349C368.33 0 384 15.67 384 35C384 15.67 399.67 0 419 0H541C560.33 0 576 15.67 576 35C576 15.67 591.67 0 611 0H733C752.33 0 768 15.67 768 35C768 15.67 783.67 0 803 0H925C944.33 0 960 15.67 960 35C960 15.67 975.67 0 995 0H1117C1136.33 0 1152 15.67 1152 35C1152 15.67 1167.67 0 1187 0H1309C1328.33 0 1344 15.67 1344 35C1344 15.67 1359.67 0 1379 0H1501C1520.33 0 1536 15.67 1536 35C1536 15.67 1551.67 0 1571 0H1693C1712.33 0 1728 15.67 1728 35C1728 15.67 1743.67 0 1763 0H1885C1904.33 0 1920 15.67 1920 35V765C1920 784.33 1904.33 800 1885 800H1763C1743.67 800 1728 784.33 1728 765C1728 784.33 1712.33 800 1693 800H1571C1551.67 800 1536 784.33 1536 765C1536 784.33 1520.33 800 1501 800H1379C1359.67 800 1344 784.33 1344 765C1344 784.33 1328.33 800 1309 800H1187C1167.67 800 1152 784.33 1152 765C1152 784.33 1136.33 800 1117 800H995C975.67 800 960 784.33 960 765C960 784.33 944.33 800 925 800H803C783.67 800 768 784.33 768 765C768 784.33 752.33 800 733 800H611C591.67 800 576 784.33 576 765C576 784.33 560.33 800 541 800H419C399.67 800 384 784.33 384 765C384 784.33 368.33 800 349 800H227C207.67 800 192 784.33 192 765C192 784.33 176.33 800 157 800H35C15.67 800 0 784.33 0 765V35C0 15.67 15.67 0 35 0H157Z");
  clip-path: path("M157 0C176.33 0 192 15.67 192 35C192 15.67 207.67 0 227 0H349C368.33 0 384 15.67 384 35C384 15.67 399.67 0 419 0H541C560.33 0 576 15.67 576 35C576 15.67 591.67 0 611 0H733C752.33 0 768 15.67 768 35C768 15.67 783.67 0 803 0H925C944.33 0 960 15.67 960 35C960 15.67 975.67 0 995 0H1117C1136.33 0 1152 15.67 1152 35C1152 15.67 1167.67 0 1187 0H1309C1328.33 0 1344 15.67 1344 35C1344 15.67 1359.67 0 1379 0H1501C1520.33 0 1536 15.67 1536 35C1536 15.67 1551.67 0 1571 0H1693C1712.33 0 1728 15.67 1728 35C1728 15.67 1743.67 0 1763 0H1885C1904.33 0 1920 15.67 1920 35V765C1920 784.33 1904.33 800 1885 800H1763C1743.67 800 1728 784.33 1728 765C1728 784.33 1712.33 800 1693 800H1571C1551.67 800 1536 784.33 1536 765C1536 784.33 1520.33 800 1501 800H1379C1359.67 800 1344 784.33 1344 765C1344 784.33 1328.33 800 1309 800H1187C1167.67 800 1152 784.33 1152 765C1152 784.33 1136.33 800 1117 800H995C975.67 800 960 784.33 960 765C960 784.33 944.33 800 925 800H803C783.67 800 768 784.33 768 765C768 784.33 752.33 800 733 800H611C591.67 800 576 784.33 576 765C576 784.33 560.33 800 541 800H419C399.67 800 384 784.33 384 765C384 784.33 368.33 800 349 800H227C207.67 800 192 784.33 192 765C192 784.33 176.33 800 157 800H35C15.67 800 0 784.33 0 765V35C0 15.67 15.67 0 35 0H157Z");
}

.interactive {
  position: relative;
  overflow: hidden;
}

.interactive-con {
  position: relative;
  z-index: 2;
}

.interactive-con-inner {
  display: flex;
  min-height: 700px;
}

.interactive-process-item {
  flex: 1;
}

.interactive-process-item:last-child {
  border-right: 0;
}

.interactive-inner-process {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 50px 30px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.process-content-wap {
  width: 100%;
}

.interactive-process-item-wap {
  transform: translateY(80px);
  transition: 0.4s;
}

.interactive-inner-process.activate .interactive-process-item-wap {
  transform: translateY(0);
}

.interactive-process-item-btn {
  opacity: 0;
  visibility: hidden;
  margin-top: 25px;
  transition: 0.4s;
}

.interactive-inner-process.activate .interactive-process-item-btn {
  opacity: 1;
  visibility: visible;
}

/*==============================
 Background Images
==============================*/
.interactive-process-list-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.interactive-process-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.8s ease;
}

.interactive-process-image.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1.05);
}

/* Dark Overlay */
.interactive-process-list-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  z-index: 5;
}

.interactive-con {
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   38. Newsletter
   ========================================================================== */
.newsletter-wrapper.style-five {
  border-radius: 25px;
  background: #000;
  padding-left: 330px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1700px) {
  .newsletter-wrapper.style-five {
    padding-left: 150px;
  }
}
@media (max-width: 1700px) {
  .newsletter-wrapper.style-five {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .newsletter-wrapper.style-five {
    padding-left: 20px;
  }
}
.newsletter-wrapper.style-five .newsletter-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.newsletter-wrapper.style-five .title {
  color: #FFF;
  font-family: var(--font-secondary);
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  max-width: 573px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .newsletter-wrapper.style-five .title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .newsletter-wrapper.style-five .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 470px) {
  .newsletter-wrapper.style-five .title {
    font-size: 30px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .newsletter-wrapper.style-five .title {
    font-size: 25px;
    line-height: normal;
  }
}
.newsletter-wrapper.style-five .form-group {
  border-radius: 10px;
  background: #141414;
  padding: 30px 200px 30px 30px;
  width: 572px;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .newsletter-wrapper.style-five .form-group {
    width: 535px;
    padding: 30px 155px 30px 30px;
  }
}
@media (max-width: 575px) {
  .newsletter-wrapper.style-five .form-group {
    width: 460px;
  }
}
@media (max-width: 500px) {
  .newsletter-wrapper.style-five .form-group {
    width: 420px;
    padding: 10px 128px 10px 10px;
  }
}
@media (max-width: 470px) {
  .newsletter-wrapper.style-five .form-group {
    width: 400px;
  }
}
@media (max-width: 450px) {
  .newsletter-wrapper.style-five .form-group {
    width: 320px;
  }
}
@media (max-width: 350px) {
  .newsletter-wrapper.style-five .form-group {
    width: 300px;
  }
}
.newsletter-wrapper.style-five .form-group .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 !important;
  padding-bottom: 21px;
  color: #999;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.newsletter-wrapper.style-five .form-group .form-control:focus {
  border-bottom: 1px solid var(--theme-4);
  box-shadow: none;
}
.newsletter-wrapper.style-five .form-group .form-control::placeholder {
  color: #999;
}
.newsletter-wrapper.style-five .form-group .submit-btn {
  color: #000;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 65px;
  background: #C4F112;
  padding: 15px 35px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-65%);
}
@media (max-width: 575px) {
  .newsletter-wrapper.style-five .form-group .submit-btn {
    padding: 8px 15px;
  }
}
@media (max-width: 575px) {
  .newsletter-wrapper.style-five .form-group .submit-btn {
    font-size: 14px;
    right: 10px;
  }
}
.newsletter-wrapper.style-five .slider-one {
  position: absolute;
  top: -140px;
  right: 380px;
  transform: rotate(30deg);
  z-index: -1;
}
@media (max-width: 1600px) {
  .newsletter-wrapper.style-five .slider-one {
    top: -47px;
  }
}
@media (max-width: 991px) {
  .newsletter-wrapper.style-five .slider-one {
    display: none;
  }
}
.newsletter-wrapper.style-five .slider-two {
  position: absolute;
  top: -140px;
  right: 0px;
  transform: rotate(30deg);
  z-index: -1;
}
@media (max-width: 1600px) {
  .newsletter-wrapper.style-five .slider-two {
    top: -47px;
  }
}
.newsletter-wrapper.style-five .newsletter-slider-five,
.newsletter-wrapper.style-five .newsletter-slider-five-two {
  height: 885px;
}
.newsletter-wrapper.style-five .newsletter-slider-five .swiper-slide,
.newsletter-wrapper.style-five .newsletter-slider-five-two .swiper-slide {
  height: auto;
}

/* ==========================================================================
   39. Broadcom
   ========================================================================== */
.main-broadcom-wrapper.style-one {
  padding-top: 290px;
  padding-bottom: 169px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-broadcom-wrapper.style-one {
    padding-top: 170px;
    padding-bottom: 60px;
  }
}
.main-broadcom-wrapper.style-one .social-info {
  position: absolute;
  z-index: 99;
  left: 86px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1600px) {
  .main-broadcom-wrapper.style-one .social-info {
    display: none;
  }
}
.main-broadcom-wrapper.style-one .social-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-broadcom-wrapper.style-one .social-info ul li {
  list-style: none;
}
.main-broadcom-wrapper.style-one .social-info ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.main-broadcom-wrapper.style-one .social-info ul li a:hover {
  background: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}
.main-broadcom-wrapper.style-one .social-info ul li a:hover svg path,
.main-broadcom-wrapper.style-one .social-info ul li a:hover svg circle,
.main-broadcom-wrapper.style-one .social-info ul li a:hover svg rect {
  fill: var(--white) !important;
}
.main-broadcom-wrapper.style-one .title {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 113px;
}
@media (max-width: 1600px) {
  .main-broadcom-wrapper.style-one .title {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .main-broadcom-wrapper.style-one .title {
    margin-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-one .title {
    font-size: 46px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-one .title {
    font-size: 35px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-one .title {
    font-size: 32px;
  }
}
.main-broadcom-wrapper.style-one .meta-page-link a {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.main-broadcom-wrapper.style-one .meta-page-link span {
  color: #E85C30;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.main-broadcom-wrapper.style-one .text {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin-top: 200px;
}
@media (max-width: 1199px) {
  .main-broadcom-wrapper.style-one .text {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-one .text {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-one .text {
    font-size: 16px;
    line-height: normal;
  }
}
.main-broadcom-wrapper.style-two {
  padding-top: 150px;
  padding-bottom: 85px;
  margin: 0 75px;
  margin-bottom: 75px;
}
@media (max-width: 1399px) {
  .main-broadcom-wrapper.style-two {
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-two {
    margin: 0 20px;
  }
}
.main-broadcom-wrapper.style-two::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  animation: dash-3 1s linear infinite;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}
.main-broadcom-wrapper.style-two::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  animation: dash-4 1s linear infinite;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 6px, transparent 6px, transparent 12px);
  pointer-events: none;
}
.main-broadcom-wrapper.style-two span {
  color: #000;
  font-family: var(--font-primary);
  font-size: 350px;
  font-style: normal;
  font-weight: 700;
  line-height: 300px;
  display: block;
  text-align: center;
}
@media (max-width: 1899px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 300px;
    line-height: normal;
  }
}
@media (max-width: 1600px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 236px;
  }
}
@media (max-width: 1399px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 180px;
  }
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 109px;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 75px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-two span {
    font-size: 45px;
  }
}
.main-broadcom-wrapper.style-three {
  padding-top: 210px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-three {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-three {
    padding-top: 130px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-three {
    padding-top: 120px;
  }
}
.main-broadcom-wrapper.style-three .broadcom-content .head-title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-three .broadcom-content .head-title {
    font-size: 48px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-three .broadcom-content .head-title {
    font-size: 36px;
    line-height: normal;
  }
}
.main-broadcom-wrapper.style-three .broadcom-content ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-three .broadcom-content ul {
    flex-wrap: wrap;
  }
}
@media (max-width: 470px) {
  .main-broadcom-wrapper.style-three .broadcom-content ul {
    gap: 10px;
  }
}
.main-broadcom-wrapper.style-three .broadcom-content ul li {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
@media (max-width: 1399px) {
  .main-broadcom-wrapper.style-three .broadcom-content ul li {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .main-broadcom-wrapper.style-three .broadcom-content ul li {
    font-size: 14px;
    line-height: normal;
  }
}
.main-broadcom-wrapper.style-three .broadcom-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.main-broadcom-wrapper.style-four {
  padding-top: 210px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-four {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-four {
    padding-top: 130px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-four {
    padding-top: 120px;
  }
}
.main-broadcom-wrapper.style-four .broadcom-content {
  text-align: center;
}
.main-broadcom-wrapper.style-four .broadcom-content .sub-title {
  color: #0E0E0E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 90px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(217, 217, 217, 0);
  display: inline-flex;
  justify-content: center;
  height: 26px;
  padding: 4px 15px;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.main-broadcom-wrapper.style-four .broadcom-content .head-title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 82px;
  margin-bottom: 35px;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta {
  border: 1px dashed #ddd;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta li {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-right: 1px dashed #ddd;
}
@media (max-width: 500px) {
  .main-broadcom-wrapper.style-four .broadcom-content .project-meta li {
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-four .broadcom-content .project-meta li {
    flex-direction: column;
    align-items: start;
    padding: 10px;
  }
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta li:first-child {
  border-bottom: 1px dashed #ddd;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta li:nth-child(2) {
  border-bottom: 1px dashed #ddd;
  border-right: none;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta li:last-child {
  border-right: 0;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta .label {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.main-broadcom-wrapper.style-four .broadcom-content .project-meta .value {
  color: var(--black);
  text-align: right;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-four .broadcom-content .project-meta .value {
    text-align: left;
  }
}
.main-broadcom-wrapper.style-five {
  padding-top: 210px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-five {
    padding-top: 150px;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-five {
    padding-top: 130px;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-five {
    padding-top: 120px;
  }
}
.main-broadcom-wrapper.style-five .meta-brigid {
  margin-bottom: 30px;
}
.main-broadcom-wrapper.style-five .meta-brigid ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.main-broadcom-wrapper.style-five .meta-brigid ul li {
  display: inline-flex;
  padding: 3px 18px;
  align-items: center;
  gap: 8px;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(217, 217, 217, 0);
}
@media (max-width: 575px) {
  .main-broadcom-wrapper.style-five .meta-brigid ul li {
    padding: 3px 10px;
  }
}
.main-broadcom-wrapper.style-five .head-title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  max-width: 919px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .main-broadcom-wrapper.style-five .head-title {
    font-size: 48px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .main-broadcom-wrapper.style-five .head-title {
    font-size: 32px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .main-broadcom-wrapper.style-five .head-title {
    font-size: 26px;
  }
}
.main-broadcom-wrapper.style-five .author-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-broadcom-wrapper.style-five .author-content .author {
  display: flex;
  align-items: center;
  padding: 6px 34px 6px 6px;
  gap: 20px;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0);
}

/* ==========================================================================
   40. Awards
   ========================================================================== */
.awards-wrapper .top-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}
@media (max-width: 991px) {
  .awards-wrapper .top-section-title {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .awards-wrapper .top-section-title {
    margin-bottom: 30px;
  }
}
.awards-wrapper .top-section-title .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  max-width: 1040px;
}
@media (max-width: 1700px) {
  .awards-wrapper .top-section-title .title {
    font-size: 40px;
    line-height: normal;
    max-width: 944px;
  }
}
@media (max-width: 1199px) {
  .awards-wrapper .top-section-title .title {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .awards-wrapper .top-section-title img {
    display: none;
  }
}
.awards-wrapper .awards-list .awards-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #000;
  padding-top: 35px;
  padding-bottom: 35px;
  gap: 30px;
}
.awards-wrapper .awards-list .awards-list-item:last-child {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .awards-wrapper .awards-list .awards-list-item {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 575px) {
  .awards-wrapper .awards-list .awards-list-item {
    gap: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.awards-wrapper .awards-list .awards-list-item:first-child {
  border-top: 1px dashed #000;
}
.awards-wrapper .awards-list .awards-list-item .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 62px;
  min-width: 207px;
}
@media (max-width: 991px) {
  .awards-wrapper .awards-list .awards-list-item .title {
    font-size: 26px;
    line-height: normal;
    min-width: 160px;
  }
}
.awards-wrapper .awards-list .awards-list-item p {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 714px;
}
@media (max-width: 991px) {
  .awards-wrapper .awards-list .awards-list-item p {
    font-size: 16px;
    line-height: normal;
  }
}

/* ==========================================================================
                             05. Pages
   ========================================================================== */
/* ==========================================================================
   41. Blog Page
   ========================================================================== */
/* ==========================================================================
   42. Project Page
   ========================================================================== */
.projects-wrapper.style-one .projects-title {
  text-align: center;
}
.projects-wrapper.style-one .projects-title .title {
  color: var(--theme-5);
  text-align: center;
  text-transform: uppercase;
  max-width: 1225px;
  margin: 0 auto;
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
}
@media (max-width: 1600px) {
  .projects-wrapper.style-one .projects-title .title {
    font-size: 40px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .projects-wrapper.style-one .projects-title .title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .projects-wrapper.style-one .projects-title .title {
    font-size: 24px;
  }
}
@media (max-width: 350px) {
  .projects-wrapper.style-one .projects-title .title {
    font-size: 18px;
  }
}
.projects-wrapper.style-one .project-center-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 23, 23, 0.15);
  border-top: 1px solid rgba(23, 23, 23, 0.15);
  padding: 20px 0;
}
.projects-wrapper.style-one .project-center-content span,
.projects-wrapper.style-one .project-center-content a {
  color: var(--theme-5);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}
@media (max-width: 470px) {
  .projects-wrapper.style-one .project-center-content span,
  .projects-wrapper.style-one .project-center-content a {
    font-size: 14px;
  }
}
.projects-wrapper.style-three .project-card {
  transition: all 0.4s ease-in-out;
  position: relative;
}
.projects-wrapper.style-three .project-card .project-link {
  display: block;
  text-decoration: none;
}
.projects-wrapper.style-three .project-card .project-media {
  overflow: hidden;
  background: #ECECEC;
  position: relative;
  margin-bottom: 15px;
  min-height: 520px;
}
@media (max-width: 1399px) {
  .projects-wrapper.style-three .project-card .project-media {
    min-height: 433px;
  }
}
@media (max-width: 991px) {
  .projects-wrapper.style-three .project-card .project-media {
    min-height: 412px;
  }
}
@media (max-width: 470px) {
  .projects-wrapper.style-three .project-card .project-media {
    min-height: 390px;
  }
}
@media (max-width: 450px) {
  .projects-wrapper.style-three .project-card .project-media {
    min-height: 350px;
  }
}
.projects-wrapper.style-three .project-card .project-media .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, visibility 0.45s ease, filter 0.45s ease;
  background: var(--gray4);
}
.projects-wrapper.style-three .project-card .project-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px;
  background: var(--white);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transition: all 0.3s ease;
}
.projects-wrapper.style-three .project-card .project-meta .project-year {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-color-2);
}
.projects-wrapper.style-three .project-card .project-meta .project-year svg {
  margin-right: 8px;
}
.projects-wrapper.style-three .project-card .project-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  color: var(--black);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.projects-wrapper.style-three .project-card .project-details-panel {
  position: absolute;
  inset: 0;
  background: #ECECEC;
  padding: 0 50px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  will-change: clip-path;
}
@media (max-width: 991px) {
  .projects-wrapper.style-three .project-card .project-details-panel {
    padding: 0 20px 0 20px;
  }
}
@media (max-width: 767px) {
  .projects-wrapper.style-three .project-card .project-details-panel {
    padding: 0 50px 0 40px;
  }
}
@media (max-width: 575px) {
  .projects-wrapper.style-three .project-card .project-details-panel {
    padding: 0 20px 0 20px;
  }
}
.projects-wrapper.style-three .project-card .project-details-panel .details-logo {
  margin-bottom: 35px;
  display: inline-block;
}
.projects-wrapper.style-three .project-card .project-details-panel .details-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  color: var(--black);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .projects-wrapper.style-three .project-card .project-details-panel .details-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .projects-wrapper.style-three .project-card .project-details-panel .details-text {
    font-size: 24px;
    margin-bottom: 60px;
  }
}
@media (max-width: 500px) {
  .projects-wrapper.style-three .project-card .project-details-panel .details-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.projects-wrapper.style-three .project-card .project-details-panel .details-btn {
  border-radius: 100px;
  background: #FFA500;
  padding: 21px 34px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--black);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.projects-wrapper.style-three .project-card .project-details-panel .details-btn .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--black);
}
.projects-wrapper.style-three .project-card.is-leaving .project-details-panel {
  animation: detailsPanelOutTop 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.projects-wrapper.style-three .project-card:hover .project-image, .projects-wrapper.style-three .project-card:focus-within .project-image {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  filter: blur(2px);
}
.projects-wrapper.style-three .project-card:hover .project-details-panel, .projects-wrapper.style-three .project-card:focus-within .project-details-panel {
  clip-path: inset(0 0 0 0);
}
.projects-wrapper.style-three .project-card:hover .project-details-panel .details-logo, .projects-wrapper.style-three .project-card:focus-within .project-details-panel .details-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.projects-wrapper.style-three .project-card:hover .project-details-panel .details-text, .projects-wrapper.style-three .project-card:focus-within .project-details-panel .details-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}
.projects-wrapper.style-three .project-card:hover .project-details-panel .details-btn, .projects-wrapper.style-three .project-card:focus-within .project-details-panel .details-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}
.projects-wrapper.style-three .project-card:hover .project-details-panel .details-work, .projects-wrapper.style-three .project-card:focus-within .project-details-panel .details-work {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.projects-wrapper.style-three .project-card:hover .project-title, .projects-wrapper.style-three .project-card:focus-within .project-title {
  visibility: hidden;
  opacity: 0;
}
.projects-wrapper.style-four {
  padding: 120px 75px;
  border-radius: 45px;
  background: var(--black);
  position: relative;
}
@media (max-width: 767px) {
  .projects-wrapper.style-four {
    border-radius: 15px;
  }
}
@media (max-width: 575px) {
  .projects-wrapper.style-four {
    padding: 50px 10px;
  }
}
.projects-wrapper.style-four .animation-shape {
  position: absolute;
  left: 100px;
  bottom: 150px;
}
@media (max-width: 1199px) {
  .projects-wrapper.style-four .animation-shape {
    bottom: 81px;
  }
}
@media (max-width: 470px) {
  .projects-wrapper.style-four .animation-shape {
    bottom: 81px;
    left: 20px;
  }
}
@media (max-width: 1199px) {
  .projects-wrapper.style-four .revel-text-marquee {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
.projects-wrapper.style-four .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}
.projects-wrapper.style-four .top-content p {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.projects-wrapper.style-four .projects-inner {
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(217, 217, 217, 0);
}
.projects-wrapper.style-four .project-card {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.projects-wrapper.style-four .project-card .bottom-content .title {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 470px) {
  .projects-wrapper.style-four .project-card .bottom-content .title {
    font-size: 22px;
  }
}
.projects-wrapper.style-four .project-card .bottom-content ul li {
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 90px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(217, 217, 217, 0);
  display: inline-flex;
  padding: 5px 18px;
  justify-content: center;
  align-items: center;
}
.projects-wrapper.style-four .gt-hover-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
}
.projects-wrapper.style-five .swiper-wrapper {
  align-items: stretch;
}
.projects-wrapper.style-five .swiper-slide {
  height: auto;
  display: flex;
}
.projects-wrapper.style-five .card-one,
.projects-wrapper.style-five .card-two {
  width: 100%;
  height: 100%;
}
.projects-wrapper.style-five .card-one .thumb {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 25px;
}
.projects-wrapper.style-five .card-one .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.projects-wrapper.style-five .card-two {
  border-radius: 25px;
  background: #5011FF;
  padding: 35px 35px 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 241px;
}
@media (max-width: 1899px) {
  .projects-wrapper.style-five .card-two {
    gap: 210px;
  }
}
@media (max-width: 1800px) {
  .projects-wrapper.style-five .card-two {
    gap: 179px;
  }
}
@media (max-width: 1700px) {
  .projects-wrapper.style-five .card-two {
    gap: 149px;
  }
}
@media (max-width: 1600px) {
  .projects-wrapper.style-five .card-two {
    gap: 90px;
  }
}
@media (max-width: 1399px) {
  .projects-wrapper.style-five .card-two {
    gap: 45px;
  }
}
@media (max-width: 991px) {
  .projects-wrapper.style-five .card-two {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .projects-wrapper.style-five .card-two {
    gap: 112px;
  }
}
@media (max-width: 575px) {
  .projects-wrapper.style-five .card-two {
    gap: 60px;
  }
}
@media (max-width: 500px) {
  .projects-wrapper.style-five .card-two {
    gap: 40px;
  }
}
@media (max-width: 450px) {
  .projects-wrapper.style-five .card-two {
    padding: 20px;
    gap: 18px;
  }
}
.projects-wrapper.style-five .card-two .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.projects-wrapper.style-five .card-two .top-content span {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 46px;
}
.projects-wrapper.style-five .card-two .top-content .arrow-link {
  width: 76px;
  height: 76px;
  background: var(--white);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .projects-wrapper.style-five .card-two .top-content .arrow-link {
    width: 50px;
    height: 50px;
  }
  .projects-wrapper.style-five .card-two .top-content .arrow-link svg {
    width: 15px;
    height: 15px;
  }
}
.projects-wrapper.style-five .card-two .bottom-content span {
  margin-bottom: 20px;
  display: block;
}
.projects-wrapper.style-five .card-two .bottom-content .card-title {
  color: var(--white);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}
@media (max-width: 470px) {
  .projects-wrapper.style-five .card-two .bottom-content .card-title {
    font-size: 30px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .projects-wrapper.style-five .card-two .bottom-content .card-title {
    font-size: 22px;
    line-height: normal;
  }
}

@keyframes detailsPanelOutTop {
  from {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
/* ==========================================================================
   43. Services Page
   ========================================================================== */
.service-wrapper.style-one {
  border-radius: 20px;
  background: var(--theme-5);
}
.service-wrapper.style-one .service-title {
  color: var(--theme);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.service-wrapper.style-one .service-content .service-items {
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 575px) {
  .service-wrapper.style-one .service-content .service-items {
    margin-bottom: 19px;
  }
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content .service-items {
    margin-right: 30px;
  }
}
.service-wrapper.style-one .service-content .service-items .top-content {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 19px;
}
.service-wrapper.style-one .service-content .service-items .top-content span {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 90px;
  font-weight: 500;
  line-height: 80px;
  text-transform: uppercase;
  margin-right: 120px;
}
@media (max-width: 991px) {
  .service-wrapper.style-one .service-content .service-items .top-content span {
    font-size: 45px;
    line-height: normal;
  }
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content .service-items .top-content span {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content .service-items .top-content span {
    margin-right: 30px;
  }
}
.service-wrapper.style-one .service-content .service-items .top-content .title {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 90px;
  font-weight: 500;
  line-height: 80px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .service-wrapper.style-one .service-content .service-items .top-content .title {
    font-size: 65px;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  .service-wrapper.style-one .service-content .service-items .top-content .title {
    font-size: 45px;
    line-height: normal;
  }
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content .service-items .top-content .title {
    font-size: 32px;
  }
}
.service-wrapper.style-one .service-content .service-items .bottom-content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 200px;
}
@media (max-width: 991px) {
  .service-wrapper.style-one .service-content .service-items .bottom-content ul {
    margin-left: 60px;
  }
}
@media (max-width: 767px) {
  .service-wrapper.style-one .service-content .service-items .bottom-content ul {
    margin-left: 0;
  }
}
.service-wrapper.style-one .service-content .service-items .bottom-content ul li {
  border-radius: 90px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(217, 217, 217, 0);
  padding: 0 20px;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-one .service-content .service-items .bottom-content ul li {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content .service-items .bottom-content ul li {
    padding: 0 10px;
  }
  .service-wrapper.style-one .service-content .service-items .bottom-content ul li:first-child {
    display: none;
  }
}
.service-wrapper.style-one .service-content .service-items .thumb {
  position: absolute;
  top: 0;
  left: 0;
  position: absolute;
  width: 478.681px;
  height: 570px;
  opacity: 0;
  z-index: 9;
  overflow: hidden;
  pointer-events: none;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(0.4);
  margin: -260px 0 0 -150px;
}
.service-wrapper.style-one .service-content .service-items:hover {
  cursor: pointer;
}
.service-wrapper.style-one .service-content .service-items:hover .thumb {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .service-wrapper.style-one .service-content .service-items:hover .thumb {
    display: none;
  }
}
.service-wrapper.style-one .service-content .service-items:hover .top-content .title {
  color: var(--theme);
}
.service-wrapper.style-one .service-content.style-two .service-items {
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .service-wrapper.style-one .service-content.style-two .service-items {
    margin-right: 0 !important;
  }
}
.service-wrapper.style-one .service-content.style-two .service-items .thumb {
  width: 170px;
  height: 170px;
  top: 160px;
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap:last-child {
  margin-bottom: 0;
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 35px;
  padding-bottom: 35px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .left-content {
  display: flex;
  align-items: center;
  gap: 73px;
}
@media (max-width: 767px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .left-content {
    gap: 15px;
  }
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .left-content span {
  margin-right: 0;
  text-transform: capitalize !important;
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content span {
  color: var(--black);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize !important;
}
@media (max-width: 1199px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content span {
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content span {
    font-size: 15px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content span {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content span {
    font-size: 10px;
  }
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .title {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-transform: capitalize !important;
}
@media (max-width: 575px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .title {
    font-size: 20px;
    line-height: normal;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .title {
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 350px) {
  .service-wrapper.style-one .service-content.style-two .service-items-wrap .top-content .title {
    font-size: 13px;
  }
}
.service-wrapper.style-one .service-content.style-two .service-items-wrap .date {
  color: var(--black);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.service-wrapper.style-two {
  background: var(--theme-5);
  border-radius: 35px;
}
@media (max-width: 767px) {
  .service-wrapper.style-two {
    border-radius: 15px;
  }
}
.service-wrapper.style-two .section-top-content .sub-title {
  color: var(--white);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}
.service-wrapper.style-two .thumb {
  text-align: center;
}
.service-wrapper.style-three {
  background: var(--black);
  border-radius: 35px;
}
@media (max-width: 991px) {
  .service-wrapper.style-three {
    border-radius: 15px;
  }
}
.service-wrapper.style-three .section-top-content {
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 10px;
}
.service-wrapper.style-three .section-top-content .sub-title {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.service-wrapper.style-three .section-top-content .simple-btn .gt-hover-btn-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 90px;
  padding: 5px 20px;
  background: transparent;
  color: var(--theme-3);
}
.service-wrapper.style-three .service-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.service-wrapper.style-three .service-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .service-wrapper.style-three .service-card {
    flex-direction: column;
    gap: 30px;
  }
}
.service-wrapper.style-three .service-card:first-child {
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-wrapper.style-three .left {
  display: flex;
  align-items: start;
  gap: 120px;
}
.service-wrapper.style-three .left .main-content {
  display: flex;
  align-items: start;
  gap: 120px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-three .left .main-content {
    gap: 20px;
  }
}
.service-wrapper.style-three .left .main-content .number {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);
}
.service-wrapper.style-three .left .main-content .title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 52px;
  line-height: 119%;
  color: var(--white);
  margin-bottom: 25px;
  display: inline-block;
}
@media (max-width: 500px) {
  .service-wrapper.style-three .left .main-content .title {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .service-wrapper.style-three .left .main-content .title {
    font-size: 20px;
  }
}
.service-wrapper.style-three .left .main-content .title:hover {
  color: var(--theme-3) !important;
}
.service-wrapper.style-three .left .main-content .description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--gray2);
  max-width: 403px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-three .left .main-content .description {
    margin-bottom: 30px;
  }
}
.service-wrapper.style-three .left .main-content .buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 500px) {
  .service-wrapper.style-three .left .main-content .buttons {
    gap: 10px;
  }
}
.service-wrapper.style-three .left .main-content .buttons .service-badge {
  font-weight: 500;
  font-size: 15px;
  line-height: 147%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 90px;
  padding: 5px 20px;
  display: inline-block;
}
@media (max-width: 500px) {
  .service-wrapper.style-three .left .main-content .buttons .service-badge {
    font-size: 10px;
    padding: 5px 10px;
  }
}
.service-wrapper.style-three .right-content {
  display: flex;
  align-items: start;
  gap: 35px;
}
.service-wrapper.style-three .right-content .thumb {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .service-wrapper.style-three .right-content .thumb {
    width: 100%;
  }
}
.service-wrapper.style-three .right-content .thumb img {
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-three .right-content .thumb img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .service-wrapper.style-three .right-content .thumb:last-child {
    display: none;
  }
}
.service-wrapper.style-four {
  position: relative;
  z-index: 1;
}
.service-wrapper.style-four .service-card {
  border-radius: 12px;
  padding: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  transition: all 0.3s ease;
}
@media (max-width: 1600px) {
  .service-wrapper.style-four .service-card {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .service-wrapper.style-four .service-card {
    gap: 10px;
  }
}
.service-wrapper.style-four .service-card:hover {
  transform: translateY(-5px);
}
.service-wrapper.style-four .service-card.color-purple {
  background-color: #E4DAF5;
}
.service-wrapper.style-four .service-card.color-green {
  background-color: #CFFFB3;
}
.service-wrapper.style-four .service-card.color-red {
  background-color: #FFC9C9;
}
.service-wrapper.style-four .service-card.color-yellow {
  background-color: #FDDCA6;
}
.service-wrapper.style-four .service-card__number {
  font-family: var(--font-secondary);
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.service-wrapper.style-four .service-card__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 5px;
}
.service-wrapper.style-four .service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-wrapper.style-four .service-card__title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}
@media (max-width: 1600px) {
  .service-wrapper.style-four .service-card__title {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .service-wrapper.style-four .service-card__title {
    font-size: 20px;
  }
}
.service-wrapper.style-four .service-card__text {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 500px) {
  .service-wrapper.style-four .service-card__text {
    font-size: 16px;
  }
}
.service-wrapper.style-four .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.service-wrapper.style-four .service-card__link .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.service-wrapper.style-four .service-card__link:hover {
  color: var(--black);
}
.service-wrapper.style-four .service-card__link:hover .arrow-icon {
  transform: translateX(5px);
}
.service-wrapper.style-four .service-card__link:hover .arrow-icon svg path {
  stroke: var(--orange) !important;
}
.service-wrapper.style-four .border-title {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 236px;
}
.service-wrapper.style-four .border-wrap {
  position: relative !important;
}
.service-wrapper.style-four .border-wrap-2 {
  position: relative !important;
}
.service-wrapper.style-five .service-card .right-content {
  display: flex;
  align-items: start;
  gap: 72px;
}
@media (max-width: 575px) {
  .service-wrapper.style-five .service-card .right-content {
    gap: 30px;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-five .service-card .right-content {
    gap: 10px;
  }
}
.service-wrapper.style-five .service-card .right-content span {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
}
@media (max-width: 1600px) {
  .service-wrapper.style-five .service-card .right-content span {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .service-wrapper.style-five .service-card .right-content span {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-five .service-card .right-content span {
    font-size: 20px;
  }
}
.service-wrapper.style-five .service-card .right-content .card-title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 25px;
}
@media (max-width: 1600px) {
  .service-wrapper.style-five .service-card .right-content .card-title {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .service-wrapper.style-five .service-card .right-content .card-title {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media (max-width: 450px) {
  .service-wrapper.style-five .service-card .right-content .card-title {
    font-size: 20px;
  }
}
.service-wrapper.style-five .service-card .right-content .card-text {
  color: var(--pra-text);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 45px;
  max-width: 411px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-five .service-card .right-content .card-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.service-wrapper.style-five .service-card .right-content .items li {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .service-wrapper.style-five .service-card .right-content .items li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.service-wrapper.style-five .service-card .right-content .items li:last-child {
  margin-bottom: 0;
}
.service-wrapper.style-five .service-card .thumb img {
  border-radius: 6px;
}
.service-wrapper .swiper {
  padding-bottom: 72px;
}
.service-wrapper .slider-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.service-wrapper .slider-navigation .slider-prev-four,
.service-wrapper .slider-navigation .slider-next-four {
  background: var(--bg-color);
  padding: 8px 24px;
  border-radius: 90px;
  transition: all 0.4s ease-in-out;
}
.service-wrapper .slider-navigation .slider-prev-four svg path,
.service-wrapper .slider-navigation .slider-next-four svg path {
  transition: all 0.4s ease-in-out;
}
.service-wrapper .slider-navigation .slider-prev-four:hover,
.service-wrapper .slider-navigation .slider-next-four:hover {
  background: var(--black);
}
.service-wrapper .slider-navigation .slider-prev-four:hover svg path,
.service-wrapper .slider-navigation .slider-next-four:hover svg path {
  stroke: var(--white);
  fill: var(--white);
}

/* ==========================================================================
   44. Page Details
   ========================================================================== */
@media (max-width: 767px) {
  .details-info .single-thumb.ml-75 {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .details-info .single-thumb.mr-75 {
    margin-right: 20px;
  }
}
.details-info .single-thumb img {
  border-radius: 10px;
}
.details-info .comment {
  margin: 0 500px;
  margin-bottom: 120px;
}
@media (max-width: 1899px) {
  .details-info .comment {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .details-info .comment {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .details-info .comment {
    margin: 0 50px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .details-info .comment {
    margin: 0 20px;
    margin-bottom: 20px !important;
  }
}
.details-info .comment .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 35px;
}
@media (max-width: 500px) {
  .details-info .comment .title {
    font-size: 27px;
    line-height: normal;
    margin-bottom: 20px;
  }
}
.details-info .tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 500px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  margin-bottom: 60px;
}
@media (max-width: 1899px) {
  .details-info .tag {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .details-info .tag {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .details-info .tag {
    margin: 0 50px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .details-info .tag {
    margin: 0 20px;
    margin-bottom: 20px !important;
  }
}
.details-info .tag .title {
  display: flex;
  align-items: center;
  gap: 17px;
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.details-info .tag .title ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.details-info .tag .title ul li {
  color: #101010;
  font-family: var(--font-secondary);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  display: inline-flex;
  padding: 3px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1F1F1;
}
.details-info .tag .title-meta {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.details-info .tag .title-meta ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.details-info .tag .title-meta ul li a {
  width: 35.714px !important;
  height: 35.714px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border-radius: 35.714px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1F1F1;
}
.details-info .tag .title-meta ul li a:hover {
  background: var(--theme-2);
}
.details-info .tag .title-meta ul li a:hover svg path {
  fill: var(--white);
}
.details-info .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 500px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1F1F1;
  padding: 30px;
  margin-bottom: 60px;
}
@media (max-width: 1899px) {
  .details-info .btn-wrap {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .details-info .btn-wrap {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .details-info .btn-wrap {
    margin: 0 50px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .details-info .btn-wrap {
    margin: 0 20px;
    margin-bottom: 20px !important;
    padding: 10px;
  }
}
.details-info .btn-wrap .btn {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .details-info .btn-wrap .btn {
    font-size: 14px;
  }
}
.details-info .btn-wrap .btn:hover svg path {
  fill: #FF531F;
}

.group-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .group-thumb.ml-75 {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .group-thumb.mr-75 {
    margin-right: 20px;
  }
}
@media (max-width: 1899px) {
  .group-thumb {
    flex-wrap: wrap;
  }
}
.group-thumb img {
  border-radius: 10px;
}
@media (max-width: 1899px) {
  .group-thumb img {
    width: 100%;
  }
}

.note {
  margin: 0 500px;
  border-radius: 10px;
  background: #F1F1F1;
  padding: 35px;
  margin-bottom: 60px;
}
@media (max-width: 1899px) {
  .note {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .note {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .note {
    margin: 0 50px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .note {
    margin: 0 20px;
    margin-bottom: 20px !important;
    padding: 20px;
  }
}
.note p {
  margin-top: 35px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}
@media (max-width: 767px) {
  .note p {
    margin-top: 20px;
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 500px) {
  .note p {
    font-size: 15px;
  }
}

.content-group {
  margin: 0 500px;
  margin-bottom: 60px !important;
}
@media (max-width: 1899px) {
  .content-group {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .content-group {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .content-group {
    margin: 0 50px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 500px) {
  .content-group {
    margin: 0 20px;
    margin-bottom: 20px !important;
  }
}
.content-group .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .content-group .title {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 575px) {
  .content-group .title {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .content-group .title {
    font-size: 22px;
  }
}
.content-group .desc {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 575px) {
  .content-group .desc {
    font-size: 16px;
    line-height: normal;
  }
}
.content-group ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
@media (max-width: 575px) {
  .content-group ul li {
    font-size: 16px;
    line-height: normal;
  }
}

.services-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.services-btn-wrap .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid #000;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) {
  .services-btn-wrap .btn {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 500px) {
  .services-btn-wrap .btn {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 450px) {
  .services-btn-wrap .btn {
    width: 100px;
    height: 100px;
  }
}
.services-btn-wrap .btn:hover {
  background: var(--theme-2);
  color: var(--white);
  border: 1px solid var(--theme-2);
}
.services-btn-wrap .btn:hover svg path {
  stroke: var(--white);
}

.quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0 500px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #F1F1F1;
  padding: 45px;
  margin-bottom: 60px;
}
@media (max-width: 1899px) {
  .quote {
    margin: 0 250px;
  }
}
@media (max-width: 1399px) {
  .quote {
    margin: 0 100px;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px) {
  .quote {
    margin: 0 50px;
    margin-bottom: 30px !important;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .quote {
    margin: 0 20px;
    margin-bottom: 20px !important;
    padding: 10px;
  }
}
.quote .thumb {
  min-width: 130px;
  height: 130px;
  aspect-ratio: 1/1;
}
.quote .thumb img {
  border-radius: 100%;
}
.quote .content .name {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .quote .content .name {
    text-align: center;
  }
}
.quote .content p {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 991px) {
  .quote .content p {
    font-size: 16px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .quote .content p {
    text-align: center;
  }
}

.team-details-wrapper .team-details-inner {
  border-radius: 10px;
  background: #F1F1F1;
  padding-bottom: 20px;
}
.team-details-wrapper .team-details-inner .thumb {
  margin-right: -60px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-inner .thumb {
    margin-right: 0;
  }
}
.team-details-wrapper .team-details-inner .thumb img {
  border-radius: 10px;
  height: 100% !important;
  object-fit: cover;
}
.team-details-wrapper .team-details-inner .team-member-wrap {
  border-radius: 10px;
  background: #FFF;
  margin: 20px;
  margin-left: 80px;
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 113px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-inner .team-member-wrap {
    gap: 10px;
  }
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-inner .team-member-wrap {
    padding: 40px 29px;
  }
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-inner .team-member-wrap {
    margin-left: 20px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-inner .team-member-wrap {
    padding: 20px;
    margin: 10px;
  }
}
.team-details-wrapper .team-details-inner .info {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-inner .info {
    flex-direction: column;
  }
}
.team-details-wrapper .team-details-inner .info .vector img {
  border-radius: 100%;
}
.team-details-wrapper .team-details-inner .info .content .name {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 8px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-details-inner .info .content .name {
    font-size: 26px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-inner .info .content .name {
    text-align: center;
  }
}
.team-details-wrapper .team-details-inner .info .content .title {
  color: #464646;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-inner .info .content .title {
    text-align: center;
  }
}
.team-details-wrapper .team-details-inner .text {
  color: #464646;
  font-family: var(--font-secondary);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  max-width: 448px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .team-details-inner .text {
    font-size: 20px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-inner .text {
    text-align: center;
    font-size: 16px;
    line-height: normal;
  }
}
.team-details-wrapper .team-social-icon {
  margin: 25px;
  margin-left: 80px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-social-icon {
    margin-left: 20px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-social-icon {
    margin: 10px;
  }
}
.team-details-wrapper .team-social-icon ul li {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-social-icon ul li {
    margin-bottom: 8px;
  }
}
.team-details-wrapper .team-social-icon ul li:last-child {
  margin-bottom: 0;
}
.team-details-wrapper .team-social-icon ul li a {
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 35px;
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .team-social-icon ul li a {
    padding: 15px 20px;
    font-size: 14px;
    line-height: normal;
  }
}
.team-details-wrapper .team-details-info {
  border-radius: 10px;
  background: #FFF;
  margin: 20px;
  padding: 50px 35px;
  margin-bottom: 0;
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-info {
    padding: 20px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-info {
    margin: 10px;
  }
}
@media (max-width: 450px) {
  .team-details-wrapper .team-details-info {
    text-align: center;
    font-size: 14px;
    line-height: normal;
  }
}

/* ==========================================================================
   45. Auth
   ========================================================================== */
.auth-wrapper {
  min-height: 100vh;
  height: auto;
}
.auth-wrapper > .row {
  display: flex;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
}
.auth-wrapper > .row > .col-xl-5,
.auth-wrapper > .row > .col-xl-7 {
  display: flex;
  flex-direction: column;
}
.auth-wrapper > .row > .col-xl-5 {
  padding-left: 0;
  padding-right: 0;
}
.auth-wrapper > .row > .col-xl-5 .thumb {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  display: flex;
  margin-right: 20px;
}
.auth-wrapper > .row > .col-xl-5 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .auth-wrapper > .row > .col-xl-5 .thumb img {
    display: none;
  }
}
.auth-wrapper > .row > .col-xl-7 {
  padding-left: 0;
  padding-right: 0;
}
.auth-wrapper .auth-header {
  margin: 0 208px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
.auth-wrapper .auth-header a.index-link {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.auth-wrapper .contact-form {
  margin: 0 208px;
  margin-top: 181px;
}
@media (max-width: 1899px) {
  .auth-wrapper .contact-form {
    margin-left: 150px;
    margin-right: 150px;
  }
}
@media (max-width: 1399px) {
  .auth-wrapper .contact-form {
    margin-left: 80px;
    margin-right: 80px;
  }
}
.auth-wrapper .contact-form .auth-section-heading {
  margin-bottom: 35px;
}
@media (max-width: 500px) {
  .auth-wrapper .contact-form .auth-section-heading {
    margin-bottom: 20px;
  }
}
.auth-wrapper .contact-form .auth-section-heading .title {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 500px) {
  .auth-wrapper .contact-form .auth-section-heading .title {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: normal;
  }
}
.auth-wrapper .contact-form .auth-section-heading .text {
  color: #6D6D6D;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 500px) {
  .auth-wrapper .contact-form .auth-section-heading .text {
    font-size: 14px;
    line-height: normal;
  }
}
.auth-wrapper .auth-footer {
  margin-top: 181px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 1899px) {
  .auth-wrapper .auth-footer {
    margin-top: 50px;
  }
}
@media (max-width: 1800px) {
  .auth-wrapper .auth-footer {
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .auth-wrapper .auth-footer {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.auth-wrapper .auth-footer .text {
  color: #424242;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.auth-wrapper .auth-footer .switch-btn {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.auth-wrapper .partition-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (max-width: 1700px) {
  .auth-wrapper .partition-wrap {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.auth-wrapper .partition-hr {
  color: var(--black);
  font-family: var(--font-secondary);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 13px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  background: #F9F9F9;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.auth-wrapper .partition-hr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 736px;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .auth-wrapper .partition-hr::before {
    width: 530px;
  }
}
@media (max-width: 1199px) {
  .auth-wrapper .partition-hr::before {
    width: 390px;
  }
}
@media (max-width: 575px) {
  .auth-wrapper .partition-hr::before {
    min-width: 100%;
  }
}
.auth-wrapper .auto-auth-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
@media (max-width: 500px) {
  .auth-wrapper .auto-auth-wrap {
    gap: 10px;
  }
}
.auth-wrapper .auto-auth-wrap button {
  border-radius: 90px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0);
  width: 50%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
@media (max-width: 500px) {
  .auth-wrapper .auto-auth-wrap button {
    padding: 10px 20px;
  }
}
.auth-wrapper.style-two .auth-footer,
.auth-wrapper.style-two .contact-form {
  margin-top: 85px;
}
@media (max-width: 1899px) {
  .auth-wrapper.style-two .auth-footer,
  .auth-wrapper.style-two .contact-form {
    margin-top: 50px;
  }
}
@media (max-width: 1800px) {
  .auth-wrapper.style-two .auth-footer,
  .auth-wrapper.style-two .contact-form {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .auth-wrapper {
    min-height: auto;
  }
  .auth-wrapper > .row {
    display: block;
  }
  .auth-wrapper > .row > .col-xl-5,
  .auth-wrapper > .row > .col-xl-7 {
    display: block;
  }
  .auth-wrapper > .row > .col-xl-5 .thumb {
    height: auto;
    margin-right: 0;
    display: block;
  }
  .auth-wrapper > .row > .col-xl-5 .thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .auth-wrapper .auth-header {
    margin: 0 50px;
  }
  .auth-wrapper .contact-form {
    margin-left: 200px;
    margin-right: 200px;
  }
  .auth-wrapper .auth-footer {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 991px) {
  .auth-wrapper .contact-form {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media (max-width: 767px) {
  .auth-wrapper .auth-header {
    margin: 0 25px;
    padding-top: 20px;
  }
  .auth-wrapper .auth-footer {
    margin-left: 25px;
    margin-right: 25px;
  }
  .auth-wrapper .auth-section-heading .title {
    font-size: 45px;
    line-height: 55px;
  }
  .auth-wrapper .auth-section-heading .text {
    font-size: 16px;
    line-height: 25px;
  }
  .auth-wrapper .auto-auth-wrap {
    flex-direction: column;
  }
  .auth-wrapper .auto-auth-wrap button {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .auth-wrapper .auth-header {
    margin: 0 15px;
  }
  .auth-wrapper .auth-header .logo img {
    max-width: 130px;
  }
  .auth-wrapper .auth-header a.index-link {
    font-size: 15px;
    line-height: 22px;
  }
  .auth-wrapper .contact-form {
    margin-left: 15px;
    margin-right: 15px;
  }
  .auth-wrapper .auth-footer {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) and (max-width: 500px) {
  .auth-wrapper .auth-footer.style-three {
    margin-top: 65px;
    margin-bottom: 65px;
  }
}
@media (max-width: 575px) {
  .auth-wrapper .auth-section-heading .title {
    font-size: 36px;
    line-height: 45px;
  }
}

/* ==========================================================================
   46. Error
   ========================================================================== */
.error-wrapper {
  padding-top: 210px;
}
@media (max-width: 767px) {
  .error-wrapper {
    margin: 0 20px;
  }
}
@media (max-width: 575px) {
  .error-wrapper {
    padding-top: 160px;
  }
}
.error-wrapper .error-text {
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 575px) {
  .error-wrapper .error-text {
    margin-bottom: 20px;
  }
}
.error-wrapper .content {
  text-align: center;
}
.error-wrapper .content .title {
  color: #0D051E;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 72px;
  font-weight: 700;
  line-height: 82px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .error-wrapper .content .title {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .error-wrapper .content .title {
    font-size: 24px;
  }
}
.error-wrapper .content .text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .error-wrapper .content .text {
    font-size: 16px;
    line-height: normal;
  }
}
.error-wrapper .content .simple-btn {
  margin-top: 35px;
}/*# sourceMappingURL=main.css.map */