/*-----------------------------------------------------------------

-------------------------------------------------------------------
 CSS TABLE OF CONTENTS
------------------------------------------------------------------- 
1. Common
2. Header
3. Hero
4. About
5. Meanmenu
6. Title
7. Service
8. Project
9. Testimonial
10. Contact
11. Blog
12. Pricing
13. WCU
14. Team
15. FAQ
16. Timeline
17. Error
18. Footer
------------------------------------------------------------------*/
/* 1. Common */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
 @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*----------------------------------------------
    # All Variables here
----------------------------------------------*/
:root {
  --body: #fff;
  --black: #000;
  --white: #FEFEFE;
  --theme: #e61d25;
  --title: #262626;
  --title2: #595959;
  --gray1: #F9F9F9;
  --gray2: #F6F6F6;
  --text: #636363;
  --border: #F8F8F8;
  --border-2: #D4DCED;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --icon-font: "Font Awesome 6 Pro";
  --primary-font: "Kanit", sans-serif;
  --secondary-font: "Nunito", sans-serif;
}

/*-- Global Font Family --*/
body {
  font-family: var(--primary-font);
}

/*-- Apply Kanit Font to All Elements --*/
* {
  font-family: var(--primary-font) !important;
}

/*-- Exclude Icons from Kanit Font - Higher Specificity --*/
i, .fa, .fas, .far, .fab, .fal, .fad, .icon, [class*="icon-"], [class*="fa-"], 
.dropdown-icon, .dropdown-icon i, .dropdown-icon img,
.slider-nav-btn i, .back-to-top i,
.social-link i, .social-list i, .footer2-wrapper-logoInfo-social i,
[class*="social"] i, .social-list a i,
.fab, .fas, .far, .fal, .fad {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Pro", "Font Awesome 6 Free", var(--icon-font) !important;
}

/*-- Ensure dropdown icon is visible --*/
.dropdown-icon {
  display: inline-block !important;
  margin-left: 5px;
}

.dropdown-icon i {
  font-family: var(--icon-font) !important;
  font-size: 12px;
}

/*-- Ensure all Font Awesome icons are visible --*/
.fab, .fas, .far, .fal, .fad {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/*-- Social media icons specific styling --*/
.social-link i, .social-list i, .footer2-wrapper-logoInfo-social i,
.social-link .fab, .social-list .fab, .footer2-wrapper-logoInfo-social .fab,
[class*="social"] .fab, .social-list a .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  display: inline-block !important;
}

/*-- Force Font Awesome icons to display --*/
.fab:before, .fas:before, .far:before, .fal:before, .fad:before {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
}

/*-- Specific targeting for social media icons in header and footer --*/
.social-list .fab, .footer2-wrapper-logoInfo-social .fab,
.social-list a .fab, .footer2-wrapper-logoInfo-social__item .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  display: inline-block !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/*-- Override any conflicting styles for social icons --*/
.social-link i.fab, .social-list i.fab, .footer2-wrapper-logoInfo-social i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  display: inline-block !important;
}

/*-- Ultimate fix for Font Awesome icons --*/
i[class*="fa-"], i[class*="fab"], i[class*="fas"], i[class*="far"], i[class*="fal"], i[class*="fad"] {
  font-family: "Font Awesome 6 Brands", "Font Awesome 6 Pro", "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  display: inline-block !important;
}

/*-- Specific for brand icons (social media) --*/
i.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/*-- Specific overrides for better typography --*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font) !important;
  font-weight: 400;
}

.section-top__title,
.section-top__subtitle,
.hero1-content__title h1,
.hero1-content__desc h4 {
  font-family: var(--primary-font) !important;
  font-weight: 400;
}

/*-- Menu items font weight --*/
.main-menu a, .main-menu2 a, .global-mobile-menu a {
  font-weight: 400 !important;
}

/*-- All titles and descriptions font weight --*/
.title, .section-title, .content-title, .card-title, .product-title,
.description, .content-desc, .card-desc, .product-desc, p {
  font-weight: 400 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  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);
  outline: none;
}

input::placeholder {
  color: #767771;
}

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

h1 {
  color: var(--Text-Colour, #041319);
  font-family: "Nunito", serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-family: "Nunito", serif;
  color: var(--title);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: 0px;
  
}
@media (max-width: 1399px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

h3 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0px;
  
}
@media (max-width: 1199px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
 
}
@media (max-width: 1399px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
  
}

h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 145%;
}

h2 a {
  font-family: "Nunito", serif;
  font-size: 70px;
  line-height: 124%;
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 767px) {
  h2 a {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h2 a {
    font-size: 28px;
  }
}

h3 a {
  font-family: "Nunito", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 122%;
  display: inline-block;
}
@media (max-width: 767px) {
  h3 a {
    font-size: 16px;
  }
}

h4 a {
  font-family: "Nunito", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 122%;
  display: inline-block;
}
@media (max-width: 375px) {
  h4 a {
    font-size: 20px;
  }
}

h5 a {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  display: inline-block;
}

h6 a {
  font-size: 16px;
  font-weight: 400;
  line-height: 145%;
}

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

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
  font-family: "Nunito", serif;
  color: var(--text);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span a {
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/*----------------------------------------------
    # Container  style here
----------------------------------------------*/
@media (min-width: 1400px) {
  .causes-wrapper.style1 .container {
    max-width: 1352px;
  }
}
@media (min-width: 1600px) {
  .footer-widgets-wrapper.style1 .container {
    max-width: 1338px;
  }
}
/*----------------------------------------------
    # Gutter  style here
----------------------------------------------*/
@media (min-width: 1600px) {
  .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-80 {
    --bs-gutter-x: 80px;
  }
  .gx-120 {
    --bs-gutter-x: 120px;
  }
  .gx-134 {
    --bs-gutter-x: 134px;
  }
  .gx-140 {
    --bs-gutter-x: 140px;
  }
  .gx-165 {
    --bs-gutter-x: 165px;
  }
  .gy-60 {
    --bs-gutter-y: 60px;
  }
}
.gx-0 {
  --bs-gutter-x: 0px;
}

/*----------------------------------------------
    # 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-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 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  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;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@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 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::before {
  background-color: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 500ms linear;
  z-index: 22;
}
.img-shine:hover::before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 500ms linear;
}

.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);
  }
}
.rotate360 {
  animation: rotate360 10s linear infinite;
  -webkit-animation: rotate360 10s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.theme-btn.style1 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--theme);
  padding: 22px 28px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .theme-btn.style1 {
    padding: 15px 28px;
  }
}
.theme-btn.style1 a {
  color: var(--white) !important;
  display: inline-block;
}
.theme-btn.style1 i {
  margin-left: 6px;
}
.theme-btn.style1:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--title);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn.style1:hover {
  color: var(--theme) !important;
  border: 1px solid var(--text);
}
.theme-btn.style1:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.theme-btn.style1:hover:before {
  top: -96%;
}

.theme-btn.style2 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--theme);
  padding: 17px 28px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .theme-btn.style2 {
    padding: 15px 28px;
  }
}
.theme-btn.style2 a {
  color: var(--white) !important;
  display: inline-block;
}
.theme-btn.style2 i {
  margin-left: 6px;
}
.theme-btn.style2:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: #ffff00;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn.style2:hover {
  color: var(--theme) !important;
  border: 1px solid var(--text);
}
.theme-btn.style2:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.theme-btn.style2:hover:before {
  top: -96%;
}

.theme-btn.style3 {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  border-radius: 6px;
  background: var(--white);
  padding: 22px 39px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .theme-btn.style3 {
    padding: 15px 28px;
  }
}
.theme-btn.style3 a {
  color: var(--white) !important;
  display: inline-block;
}
.theme-btn.style3 i {
  margin-left: 6px;
}
.theme-btn.style3:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--title);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.theme-btn.style3:hover {
  color: var(--theme) !important;
  border: 1px solid var(--text);
}
.theme-btn.style3:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.theme-btn.style3:hover:before {
  top: -96%;
}

.global-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background: var(--title);
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 20px 16px 20px 25px;
  min-width: 160px;
  cursor: pointer;
  border-radius: 12px;
}
.global-btn:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.global-btn:hover {
  color: var(--theme) !important;
}
.global-btn:hover i {
  color: var(--white);
}
.global-btn:hover:before {
  top: -96%;
}

/*----------------------------------------------
    # Helping  style here
----------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  height: 4px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  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;
}

.section-padding {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-padding-140 {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .section-padding-140 {
    padding: 140px 0;
  }
}

.section-padding-100 {
  padding: 80px 0;
}
@media (min-width: 992px) {
  .section-padding-100 {
    padding: 100px 0;
  }
}

@media (min-width: 992px) {
  .fix-header {
    padding-top: 0px;
  }
}
@media (min-width: 1200px) {
  .mt-xl-100 {
    margin-top: 100px;
  }
}

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

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

.pb-32 {
  padding-bottom: 32px !important;
}

.pb-38 {
  padding-bottom: 38px !important;
}

.pb-133 {
  padding-bottom: 80px !important;
}
@media (min-width: 768px) {
  .pb-133 {
    padding-bottom: 133px !important;
  }
}

.pl-500 {
  padding-left: 350px;
}
@media (min-width: 1400px) {
  .pl-500 {
    padding-left: 500px;
  }
}

.pr-380 {
  padding-right: 20px;
}
@media (min-width: 1400px) {
  .pr-380 {
    padding-right: 40px;
  }
}

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

.pt-60 {
  padding-top: 30px !important;
}
@media (min-width: 768px) {
  .pt-60 {
    padding-top: 60px !important;
  }
}

.pt-70 {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .pt-70 {
    padding-top: 70px;
  }
}

.pt-77 {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .pt-77 {
    padding-top: 77px;
  }
}

.pt-128 {
  padding-top: 25px;
}
@media (min-width: 1400px) {
  .pt-128 {
    padding-top: 25px;
  }
}

.bg-theme {
  background-color: var(--theme) !important;
}

.bg-theme2 {
  background-color: var(--title) !important;
}

.bg-gray-1 {
  background-color: var(--gray1);
}

.bg-gray-2 {
  background-color: var(--gray2);
}

.bg-dark-1 {
  background-color: var(--title);
}

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

.bg-mask {
  mask-size: cover;
  mask-position: center;
  background-size: cover;
  background-position: center;
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
}

.truncate-text {
  display: block;
  max-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  white-space: normal;
  word-break: break-word;
}

.navigation-controls {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.navigation-controls .nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  position: relative;
}
.navigation-controls .nav-item .icon i {
  font-size: 20px;
  color: var(--title);
}
.navigation-controls .nav-item h4 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

.preview-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(38, 38, 38, 0.2);
  padding: 40px 0 0;
}
.preview-area .preview-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 450px) {
  .preview-area .preview-item {
    gap: 4px;
  }
}
.preview-area .preview-item .icon {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--title);
  background: var(--gray1);
}
.preview-area .preview-item .content p {
  color: #262626;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 767px) {
  .preview-area .preview-item .content p {
    font-size: 14px;
  }
}
.preview-area .preview-item .content h5 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .preview-area .preview-item .content h5 {
    font-size: 16px;
  }
}
@media (max-width: 450px) {
  .preview-area .preview-item .content h5 {
    font-size: 14px;
  }
}
.preview-area .preview-item .content.text-right {
  text-align: right;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-item {
  display: flex;
  align-items: center;
}
.checklist-item:not(:last-child) {
  margin-bottom: 10px;
}
.checklist-item__icon {
  padding-right: 8px;
}
.checklist-item__text {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.map-container {
  width: 100%;
  height: 380px;
}
@media (min-width: 768px) {
  .map-container {
    height: 600px;
  }
}
@media (min-width: 1200px) {
  .map-container {
    height: 550px;
  }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container2 {
  width: 100%;
  height: 380px;
}
@media (min-width: 768px) {
  .map-container2 {
    height: 570px;
  }
}
@media (min-width: 1200px) {
  .map-container2 {
    height: 680px;
  }
}
.map-container2 iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.global-social2 {
  padding-top: 11px;
  display: flex;
  gap: 15px;
}
.global-social2__item a {
  display: flex;
  width: 34px;
  height: 34px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--title);
}
.global-social2__item a svg path {
  fill: var(--title);
}
.global-social2__item a i {
  color: var(--black);
}
.global-social2__item a:hover {
  background: var(--theme);
  border: 1px solid var(--theme);
}
.global-social2__item a:hover svg path {
  fill: var(--white);
}
.global-social2__item a:hover i {
  color: var(--white);
}

.form__group span {
  color: var(--title);
  font-weight: 400;
  text-transform: capitalize;
}
.form__group input,
.form__group textarea {
  border: 1px solid rgba(38, 38, 38, 0.1);
  color: var(--title);
  background-color: transparent;
  padding: 15px 20px;
  border-radius: 6px;
  width: 100%;
  outline: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--title);
}
.form__group textarea {
  padding-top: 18px;
  height: 178px;
  border-radius: 5px;
}
.form__group--large textarea {
  height: 189px;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--title);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.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(--theme);
  -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(--title2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -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;
}

/*----------------------------------------------
    # Preloader style here
----------------------------------------------*/
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999999;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader-logo {
  margin-bottom: 30px;
  animation: logoFade 2s ease-in-out infinite alternate;
}

.loader-logo img {
  max-width: 200px;
  height: auto;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--theme);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes logoFade {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

@media (max-width: 767px) {
  .loader-logo img {
    max-width: 150px;
  }
  
  .loader-spinner {
    width: 40px;
    height: 40px;
  }
}

.preloader.loaded {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 991px) {
  .counter-item {
    justify-content: center;
  }
}
.counter-item-box {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  border: 1px dashed white;
  width: 250px;
  height: 250px;
}
@media (max-width: 991px) {
  .counter-item-box {
    width: 220px;
    height: 220px;
  }
}
.counter-item-box__value {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 86px;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .counter-item-box__value {
    font-size: 60px;
  }
}
.counter-item-box__label p {
  color: var(--white);
}

/*----------------------------------------------
    # Buttons style here
----------------------------------------------*/
.slider-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-btn .style1 {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 42px;
  border: 1px solid rgba(38, 38, 38, 0.3);
}
.slider-btn .style1 img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  max-width: fit-content;
}
@media (max-width: 575px) {
  .slider-btn .style1 {
    width: 50px;
    height: 50px;
  }
}
.slider-btn :hover {
  background: var(--theme);
  border: 1px solid transparent;
}
.slider-btn :hover svg path {
  fill: var(--white);
}

.fancy-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .fancy-box--col {
    align-items: start;
    flex-direction: column;
  }
}
.fancy-box__profile img {
  border-radius: 100px;
}
.fancy-box__profile--img2 {
  margin-left: -42px;
}
.fancy-box-content__value h5 {
  color: var(--theme);
  padding-bottom: 8px;
}
.fancy-box-content__title {
  text-transform: uppercase;
  padding-bottom: 8px;
}
.fancy-box-content__desc {
  font-size: 16px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1200px) {
  .rating-box {
    justify-content: end;
  }
}
.rating__details {
  text-align: start;
}
@media (min-width: 1200px) {
  .rating__details {
    text-align: end;
  }
}

.progress-wrap:not(:last-child) {
  padding-bottom: 27px;
}
.progress-wrap .progress-meta {
  display: flex;
  justify-content: space-between;
  max-width: 430px;
  padding-bottom: 10px;
}
@media (min-width: 500px) {
  .progress-wrap .progress-meta {
    max-width: 470px;
  }
}
@media (min-width: 768px) {
  .progress-wrap .progress-meta {
    max-width: 575px;
  }
}
@media (min-width: 992px) {
  .progress-wrap .progress-meta {
    max-width: 415px;
  }
}
@media (min-width: 1400px) {
  .progress-wrap .progress-meta {
    max-width: 480px;
  }
}
.progress-wrap .progress-meta .title {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.progress-wrap .progress-meta .title2 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.progress-wrap .progress-meta .percentage {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.progress-wrap .progress-meta .percentage2 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.progress-wrap .progress-meta.mxw-424 {
  max-width: 375px;
}
@media (min-width: 500px) {
  .progress-wrap .progress-meta.mxw-424 {
    max-width: 420px;
  }
}
@media (min-width: 768px) {
  .progress-wrap .progress-meta.mxw-424 {
    max-width: 510px;
  }
}
@media (min-width: 992px) {
  .progress-wrap .progress-meta.mxw-424 {
    max-width: 370px;
  }
}
@media (min-width: 1400px) {
  .progress-wrap .progress-meta.mxw-424 {
    max-width: 424px;
  }
}
.progress-wrap .progress-meta.mxw-375 {
  max-width: 340px;
}
@media (min-width: 500px) {
  .progress-wrap .progress-meta.mxw-375 {
    max-width: 370px;
  }
}
@media (min-width: 768px) {
  .progress-wrap .progress-meta.mxw-375 {
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .progress-wrap .progress-meta.mxw-375 {
    max-width: 325px;
  }
}
@media (min-width: 1400px) {
  .progress-wrap .progress-meta.mxw-375 {
    max-width: 375px;
  }
}
.progress-wrap .progress-container {
  position: relative;
  max-width: 630px;
  height: 10px;
  border-radius: 2px;
  background: rgba(243, 96, 76, 0.3);
  overflow: visible;
}
.progress-wrap .progress-container .progress-bar {
  height: 10px;
  border-radius: 2px;
  background: #e61d25;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  z-index: 1;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  height: 185px;
  padding-top: 60px;
  background: var(--theme);
  z-index: 9;
}
.marquee-wrapper.style-1 {
  background-color: transparent;
  line-height: 55px;
}
@media (max-width: 1399px) {
  .marquee-wrapper.style-1 {
    margin-bottom: 0px;
    margin: 30px 0;
  }
}
@media (max-width: 767px) {
  .marquee-wrapper.style-1 {
    margin-bottom: -50px;
    margin: 0px 0px;
  }
}
.marquee-wrapper.style-1.text-slider {
  height: auto;
}

.text-slider {
  font-family: var(--title);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 57.6px;
  color: var(--white);
}
@media (max-width: 767px) {
  .text-slider {
    font-size: 36px;
  }
}
.text-slider img {
  margin-bottom: 10px;
  margin-right: 8px;
  margin-left: 10px;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-list {
  float: left;
  width: 50%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}
.marquee-item.style1 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  color: transparent;
  -webkit-text-stroke: 1px #bcb8b1;
  font-family: "Nunito", serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.marquee-item.style1 .text-style:hover {
  color: var(--theme);
  background-size: 100% 3px;
  opacity: 1;
}
.marquee-item.style-2 .text-slider {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .marquee-item.style-2 .text-slider {
    font-size: 36px;
  }
}
.marquee-item.style-2 .text-style {
  transition: all 0.4s ease-in-out;
  background-image: linear-gradient(var(--title), var(--title));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  padding-right: 27px;
}
.marquee-item.style-2 .text-style:hover {
  color: #f7e77e;
  background-size: 100% 3px;
  opacity: 1;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.marquee-inner.to-right {
  animation: marqueeRight 25s linear infinite;
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}
/*----------------------------------------------
    # Video style here
----------------------------------------------*/
.video-box-area {
  position: relative;
  z-index: 3;
}
.video-box-area .video-wrap.style1 {
  padding: 0;
}
.video-box-area .video-wrap.style1 .video-box {
  position: relative;
  z-index: 5;
  padding: 400px 0 400px;
}
@media (max-width: 991px) {
  .video-box-area .video-wrap.style1 .video-box {
    padding: 300px 0 300px;
  }
}
@media (max-width: 575px) {
  .video-box-area .video-wrap.style1 .video-box {
    padding: 250px 0 250px;
  }
}
.video-box-area .video-wrap.style1 .video-box.background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-box-area .video-wrap.style1 .video-box .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.video-box-area .video-wrap.style1 .video-box .play-btn svg {
  width: 80px;
  height: 80px;
}
@media (min-width: 576px) {
  .video-box-area .video-wrap.style1 .video-box .play-btn svg {
    width: 120px;
    height: 120px;
  }
}
.video-box-area .video-wrap.style1 .video-box .play-btn svg :hover {
  fill: var(--title);
}

/*----------------------------------------------
    # Popup Search style here
----------------------------------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 50px;
  height: 50px;
  line-height: 52px;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--theme);
  font-size: 22px;
  border-radius: 10px;
  transform: rotate(0);
  transition: all ease 0.4s;
  color: var(--white);
  border: 0;
}
.popup-search-box button.searchClose:hover {
  color: var(--title);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}
@media (min-width: 992px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: none;
  background-color: var(--white);
  border: 2px solid var(--theme);
  padding: 0 80px 0 30px;
  color: var(--title);
  border-radius: 50px;
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: var(--theme);
  font-size: 24px;
  right: 12px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

/*----------------------------------------------
    # Sidemenu style here
----------------------------------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
}
.sidemenu-wrapper .closeButton:hover {
  color: var(--theme);
  border-color: var(--theme);
  transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow-y: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  transition-delay: 1s;
  transition: right ease 1s;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}
.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 40px;
}
.sidemenu-wrapper .newsletter-form .as-btn:hover {
  background: var(--theme);
}
.sidemenu-wrapper .newsletter-form .as-btn:hover:before, .sidemenu-wrapper .newsletter-form .as-btn:hover::after {
  display: none;
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  -ms-transition: all ease 0.8s;
  -o-transition: all ease 0.8s;
}
.sidemenu-wrapper .global-social a {
  box-shadow: none;
}
.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  -ms-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
}
.sidemenu-wrapper .closeButton:hover {
  color: var(--theme);
  border-color: var(--theme);
  transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  transition-delay: 1s;
  transition: right ease 1s;
  -webkit-transition: right ease 1s;
  -moz-transition: right ease 1s;
  -ms-transition: right ease 1s;
  -o-transition: right ease 1s;
}
.sidemenu-wrapper .sidemenu-content:-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
}
.sidemenu-wrapper .sidemenu-content:-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f5;
}
.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 40px;
}
.sidemenu-wrapper .recent-post .post-title {
  color: var(--title);
}
.sidemenu-wrapper .widget_title {
  color: var(--title);
  margin: -0.12em 0 30px 0;
}
.sidemenu-wrapper .newsletter-widget .newsletter-form {
  max-width: none;
}
.sidemenu-wrapper .newsletter-widget .newsletter-form .form-group {
  position: relative;
}
.sidemenu-wrapper .newsletter-widget .newsletter-form .form-group button {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 80px;
}
.sidemenu-wrapper .newsletter-widget .newsletter-form .form__group {
  position: relative;
}
.sidemenu-wrapper .newsletter-widget .newsletter-form .form__group button {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 80px;
  height: 100%;
}
.sidemenu-wrapper .global-widget-contact .info-box_text .icon img {
  filter: none;
}
.sidemenu-wrapper .global-social {
  padding-top: 11px;
  display: flex;
  gap: 15px;
}
.sidemenu-wrapper .global-social__item a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--title);
}
.sidemenu-wrapper .global-social__item a:hover {
  background: var(--theme);
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 500px) {
  .sidemenu-wrapper {
    background: transparent;
  }
  .sidemenu-wrapper .sidemenu-content {
    width: 100%;
  }
  .sidemenu-wrapper .sidemenu-content .widget_shopping_cart .global-btn {
    margin-bottom: 10px;
  }
}
.info-box {
  display: flex;
  margin-bottom: 11px;
}
.info-box:last-child {
  margin-bottom: 0;
}

.info-box_icon {
  font-size: 16px;
  background-color: transparent;
  color: var(--theme);
  text-align: center;
  margin-right: 10px;
}

.info-box_text {
  display: block;
  color: var(--title);
  margin-top: -0.45em;
  margin-bottom: -0.45em;
  align-self: center;
}

.info-box_link {
  display: inline-block;
  color: var(--title);
}
.info-box_link:hover {
  color: var(--theme);
}

.global-widget-about {
  max-width: 354px;
  margin-bottom: -0.5em;
}
.global-widget-about .about-logo {
  margin-bottom: 35px;
}
.global-widget-about .text {
  margin-bottom: 30px;
  margin-top: -0.5em;
  color: var(--title);
}

.global-widget-contact {
  max-width: 260px;
  margin-bottom: -0.4em;
}
.global-widget-contact .info-box_text {
  line-height: 1.75em;
  margin-top: 0;
  display: flex;
  gap: 16px;
}
.global-widget-contact .info-box_text:not(:last-child) {
  margin-bottom: 18px;
}
.global-widget-contact .info-box_text .icon {
  color: var(--title);
  flex: none;
  width: 40px;
  height: 40px;
  line-height: 37px;
  border: 1px solid var(--title);
  border-radius: 50%;
  text-align: center;
}
.global-widget-contact .info-box_text .icon img {
  filter: contrast(0) brightness(2) opacity(0.7);
}
.global-widget-contact .info-box_text .details {
  margin-top: -0.3em;
}
.global-widget-contact .info-box_text .details p {
  margin-bottom: 0;
}
.global-widget-contact .info-box_text a {
  color: inherit;
}
.global-widget-contact .info-box_text a:hover {
  color: var(--theme);
}

/* Style the pagination container */
.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 48px;
  padding-bottom: 5px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--title);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-color: var(--theme);
  border: 4px solid var(--white);
  width: 16px;
  height: 16px;
  box-shadow: 0 0 0 2px var(--theme);
}

.page-nav-wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.page-nav-wrap ul li .page-numbers {
  display: flex;
  width: 60px;
  height: 64px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--title);
  border-radius: 6px;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.page-nav-wrap ul li .page-numbers.current {
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  font-size: 14px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background: var(--theme);
  color: var(--white);
}

.breadcrumb {
  overflow: hidden;
  background-color: var(--title);
  /*padding: 282px 0 180px 0;*/
  height: 320px;
  margin: 0 auto;
  position: relative;
  background-size: cover;
    background-position: center;
}
@media (max-width: 767px) {
  .breadcrumb {
    padding: 180px 0 80px 0;
  }
}
.breadcrumb-heading {
  position: relative;
  z-index: 6;
}
.breadcrumb-heading h1 {
  color: #e7232b;
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 80px;
  font-style: normal;
  line-height: 86px;
  letter-spacing: -1.6px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .breadcrumb-heading h1 {
    font-size: 42px;
  }
}
.breadcrumb-heading__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  gap: 14px;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .breadcrumb-heading__items {
    margin-top: 15px;
  }
}
.breadcrumb-heading__items li {
  color: var(--theme);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 767px) {
  .breadcrumb-heading__items li {
    font-size: 20px;
  }
}
.breadcrumb-heading__items li:hover {
  color: var(--theme);
}
.breadcrumb-heading__items li a {
  color: var(--gray1);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-heading__items li a:hover {
  color: var(--theme);
}
.breadcrumb-heading__items li i {
  color: var(--gray1);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.widget-card {
  padding: 40px 30px;
  border-radius: 20px;
  background: var(--gray1);
}
.widget-card:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 500px) {
  .widget-card {
    padding: 30px 20px;
  }
}
.widget-card__title {
  padding-bottom: 25px;
}
.widget-card-search form {
  position: relative;
}
.widget-card-search form input {
  padding: 17px 20px 17px 46px;
  width: 100%;
  color: var(--title2);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(38, 38, 38, 0.1);
  background-color: var(--white);
}
.widget-card-search form button {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  font-size: 18px;
  color: var(--theme);
  text-align: center;
}
.widget-card-services ul li {
  border-radius: 6px;
  border: 1px solid rgba(38, 38, 38, 0.1);
  background: var(--white);
}
.widget-card-services ul li:not(:last-child) {
  margin-bottom: 12px;
}
.widget-card-services ul li:hover {
  background: var(--theme);
}
.widget-card-services ul li:hover a {
  color: var(--white);
}
.widget-card-services ul li:hover a i {
  color: var(--white);
}
.widget-card-services ul li a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--title);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.widget-card-services ul li a i {
  color: var(--title);
}
.widget-card-services ul li.active {
  background-color: var(--theme);
}
.widget-card-services ul li.active a {
  color: var(--white);
}
.widget-card-services ul li.active a i {
  color: var(--white);
}
.widget-card-post-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.widget-card-post-items:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(38, 38, 38, 0.1);
}
.widget-card-post-items__thumb {
  border-radius: 20px;
}
.widget-card-post-items__thumb img {
  max-width: fit-content;
  border-radius: 20px;
}
.widget-card-post-items-content h5 {
  padding-bottom: 12px;
}
.widget-card-post-items-content p {
  color: var(--theme);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-top: 4px;
}
.widget-card-tagcloud__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.widget-card-tagcloud__list li {
  color: var(--title);
  font-family: "Nunito";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  position: relative;
}
.widget-card-tagcloud__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background: var(--title);
  margin-left: 10px;
  vertical-align: middle;
}
.widget-getTouch {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  background: linear-gradient(180deg, #e61d25 0%, #262626 100%);
  height: 470px;
}
@media (max-width: 500px) {
  .widget-getTouch {
    height: 430px;
  }
}
.widget-getTouch__icon {
  margin-top: 60px;
  display: flex;
  width: 90px;
  height: 90px;
  padding: 21.336px 20.666px 20.664px 21.334px;
  align-items: center;
  border-radius: 10px;
  background: var(--white);
}
.widget-getTouch__title {
  margin-top: 25px;
  max-width: 300px;
}
@media (max-width: 1199px) {
  .widget-getTouch__title {
    max-width: 255px;
  }
}
@media (max-width: 991px) {
  .widget-getTouch__title {
    max-width: 300px;
  }
}
.widget-getTouch__title h3 {
  color: var(--white);
  text-align: center;
}
.widget-getTouch__text {
  margin-top: 5px;
  max-width: 300px;
}
.widget-getTouch__text p {
  color: var(--gray1);
  text-align: center;
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.widget2-card {
  padding-left: 85px;
}
@media (max-width: 1399px) {
  .widget2-card {
    padding-left: 0;
  }
}
.widget2-card-header {
  padding: 16px 30px;
  border-radius: 20px 20px 0px 0px;
  background: var(--theme);
}
.widget2-card-header__title h5 {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
}
.widget2-card-body {
  padding: 24px 30px 40px;
  border-radius: 0px 0px 20px 20px;
  background: var(--title);
}
.widget2-card-body-items {
  display: flex;
  align-items: center;
  gap: 12px;
}
.widget2-card-body-items:not(:last-child) {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.widget2-card-body-items__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50px;
  width: 50px;
  height: 50px;
}
.widget2-card-body-items-content__label {
  padding-bottom: 6px;
  color: var(--white);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
.widget2-card-body-items-content__value {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 111.111% */
  letter-spacing: -0.36px;
  text-transform: uppercase;
}

/* 2. Header */
.sidebar-btn .line {
  display: block;
  height: 2px;
  width: 10px;
  background: var(--title);
  margin: auto;
  transition: 0.4s;
}
.sidebar-btn .line:not(:last-child) {
  margin-bottom: 9px;
}
.sidebar-btn .line:nth-child(2) {
  width: 20px;
}
.sidebar-btn:hover .line:nth-child(2) {
  width: 32px;
}
.sidebar-btn.style2 .line {
  margin-right: 0;
}
.sidebar-btn.style2 .line:first-child {
  width: 20px;
}
.sidebar-btn.style2 .line:nth-child(2) {
  width: 27px;
}
.sidebar-btn.style2:hover .line:first-child {
  width: 32px;
}
.sidebar-btn.style2:hover .line:nth-child(2) {
  width: 32px;
}
.sidebar-btn.style3 .line:first-child {
  width: 17px;
  margin-right: 8px;
}
.sidebar-btn.style3 .line:nth-child(2) {
  width: 27px;
}
.sidebar-btn.style3 .line:nth-child(3) {
  width: 17px;
  margin-left: 8px;
}
.sidebar-btn.style3:hover .line:first-child {
  width: 32px;
  margin-right: 3px;
}
.sidebar-btn.style3:hover .line:nth-child(2) {
  width: 32px;
}
.sidebar-btn.style3:hover .line:nth-child(3) {
  width: 32px;
  margin-left: 3px;
}

.header-top-section.style1 {
  padding: 14px 0;
  position: relative;
  z-index: 999;
  background: #ffff00;
  box-shadow: 0px 2px 10px 2px rgba(243, 96, 76, 0.04);
}
.header-top-section.style1 .header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-section.style1 .header-top-wrapper .contact-list {
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 42px;
}
.header-top-section.style1 .header-top-wrapper .contact-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top-section.style1 .header-top-wrapper .contact-list li p {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

/* Social Media Icons Styling */
.header-top-section.style1 .header-top-wrapper .social-list {
  list-style-type: none;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-section.style1 .header-top-wrapper .social-list li {
  display: flex;
  align-items: center;
}

.header-top-section.style1 .header-top-wrapper .social-list .social-link {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.header-top-section.style1 .header-top-wrapper .social-list .social-link:hover {
  transform: translateY(-2px);
}

.header-top-section.style1 .header-top-wrapper .social-list .social-link i {
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
}

.header-top-section.style1 .header-top-wrapper .social-list .social-link:hover i {
  color: #f3604c;
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .header-top-section.style1 {
    display: none;
  }
}

.global-header {
  position: relative;
  z-index: 41;
}

.header-bg-1 {
  background-color: transparent !important;
}

.header-border {
  border-bottom: 1px solid rgba(38, 38, 38, 0.05) !important;
}

.header-layout {
  
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  background-color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .header-layout {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
  }
}
.header-layout .menu-area {
  background: transparent;
  padding: 0;
}
.header-layout .menu-area .header-logo {
  padding-top: 2px;
  padding-bottom: 2px;
}
.header-layout .menu-area .header-logo a img {
  position: relative;
  z-index: 3;
  width: 75%;
}
@media (max-width: 1199px) {
  .header-layout .menu-area .header-logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.header-layout .main-menu > ul > li > a:before {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  background: var(--title);
  width: 0%;
  margin-top: 30px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: 5;
}
.header-layout .main-menu > ul > li > a:hover:before {
  width: 100%;
}

.main-menu a {
  display: block;
  position: relative;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
.main-menu a:hover, .main-menu a.active {
  color: #e61d25;
}
.main-menu > ul > li {
  margin: 0 15px;
}
.main-menu > ul > li > a {
  padding: 40px 0;
}
.main-menu > ul > li > a:hover {
  color: var(--theme);
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a.active:after {
  color: var(--title);
}
.main-menu ul li:last-child {
  margin-right: 0 !important;
}
.main-menu ul li:first-child {
  margin-left: 0 !important;
}
.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1) translateY(0);
  z-index: 9;
  animation: submenuGlow 0.6s ease forwards;
}
.main-menu ul .sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: #dc3545;
  visibility: hidden;
  min-width: 230px;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  transform: scaleY(0) translateY(-10px);
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 19px 11px 17px 11px;
  left: -27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.main-menu ul .sub-menu a {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.main-menu ul .sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
  animation: slideInFromLeft 0.6s ease forwards;
  opacity: 0;
  transform: translateX(-20px) translateY(10px);
}

.main-menu ul .sub-menu li:nth-child(1) { animation-delay: 0.1s; }
.main-menu ul .sub-menu li:nth-child(2) { animation-delay: 0.15s; }
.main-menu ul .sub-menu li:nth-child(3) { animation-delay: 0.2s; }
.main-menu ul .sub-menu li:nth-child(4) { animation-delay: 0.25s; }
.main-menu ul .sub-menu li:nth-child(5) { animation-delay: 0.3s; }
.main-menu ul .sub-menu li:nth-child(6) { animation-delay: 0.35s; }
.main-menu ul .sub-menu li:nth-child(7) { animation-delay: 0.4s; }
.main-menu ul .sub-menu li:nth-child(8) { animation-delay: 0.45s; }
.main-menu ul .sub-menu li:nth-child(9) { animation-delay: 0.5s; }
.main-menu ul .sub-menu li:nth-child(10) { animation-delay: 0.55s; }
.main-menu ul .sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}
.main-menu ul .sub-menu li.menu-item-has-children > a:after {
  display: none;
}
.main-menu ul .sub-menu li.menu-item-has-children > a :hover:after {
  display: none;
}
.main-menu ul .sub-menu li a {
  position: relative;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px 12px;
  display: block;
}
.main-menu ul .sub-menu li a:before {
  display: none;
}
.main-menu ul .sub-menu li a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.main-menu ul .sub-menu li a:hover {
  color: #000000;
  background-color: #ffff00;
  padding: 8px 12px;
  transform: translateX(8px);
  border-radius: 4px;
}
.main-menu ul .sub-menu li a:hover:before {
  display: none;
}
.main-menu ul .sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 8px;
}
.main-menu ul .sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu2 a {
  display: block;
  position: relative;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
.main-menu2 a:hover, .main-menu2 a.active {
  color: #e61d25;
}
.main-menu2 > ul > li {
  margin: 0 15px;
}
.main-menu2 > ul > li > a {
  padding: 30px 0;
}
.main-menu2 > ul > li > a:hover {
  color: var(--theme);
}
.main-menu2 ul {
  margin: 0;
  padding: 0;
}
.main-menu2 ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu2 ul li.menu-item-has-children > a.active:after {
  color: var(--title);
}
.main-menu2 ul li:last-child {
  margin-right: 0 !important;
}
.main-menu2 ul li:first-child {
  margin-left: 0 !important;
}
.main-menu2 ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}
.main-menu2 ul .sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: #dc3545;
  visibility: hidden;
  min-width: 230px;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s ease 0s;
  padding: 19px 11px 17px 11px;
  left: -27px;
}
.main-menu2 ul .sub-menu a {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.main-menu2 ul .sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
  animation: slideInFromLeft 0.6s ease forwards;
  opacity: 0;
  transform: translateX(-20px) translateY(10px);
}

.main-menu2 ul .sub-menu li:nth-child(1) { animation-delay: 0.1s; }
.main-menu2 ul .sub-menu li:nth-child(2) { animation-delay: 0.15s; }
.main-menu2 ul .sub-menu li:nth-child(3) { animation-delay: 0.2s; }
.main-menu2 ul .sub-menu li:nth-child(4) { animation-delay: 0.25s; }
.main-menu2 ul .sub-menu li:nth-child(5) { animation-delay: 0.3s; }
.main-menu2 ul .sub-menu li:nth-child(6) { animation-delay: 0.35s; }
.main-menu2 ul .sub-menu li:nth-child(7) { animation-delay: 0.4s; }
.main-menu2 ul .sub-menu li:nth-child(8) { animation-delay: 0.45s; }
.main-menu2 ul .sub-menu li:nth-child(9) { animation-delay: 0.5s; }
.main-menu2 ul .sub-menu li:nth-child(10) { animation-delay: 0.55s; }
.main-menu2 ul .sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}
.main-menu2 ul .sub-menu li.menu-item-has-children > a:after {
  display: none;
}
.main-menu2 ul .sub-menu li.menu-item-has-children > a :hover:after {
  display: none;
}
.main-menu2 ul .sub-menu li a {
  position: relative;
  text-transform: capitalize;
}
.main-menu2 ul .sub-menu li a:before {
  display: none;
}
.main-menu2 ul .sub-menu li a.active {
  color: #ffffff;
 
  border-radius: 8px;
}
.main-menu2 ul .sub-menu li a:hover {
  color: #000000;
  background-color: #ffff00;
  padding: 8px 12px;
  transform: translateX(8px);
  border-radius: 4px;
}
.main-menu2 ul .sub-menu li a:hover:before {
  display: none;
}
.main-menu2 ul .sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 8px;
}
.main-menu2 ul .sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

@media (max-width: 1899px) {
  .main-menu > ul > li {
    margin: 0 13px;
  }
  .main-menu2 > ul > li {
    margin: 0 13px;
  }
}
@media (max-width: 1399px) {
  .main-menu > ul > li {
    margin: 0 10px;
  }
  .main-menu2 > ul > li {
    margin: 0 10px;
  }
}
.sticky-wrapper {
  transition: 0.4s ease-in-out;
}
.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  animation: stickyAni 0.4s ease-in-out;
  z-index: 999;
}

.sticky-wrapper2 {
  transition: 0.4s ease-in-out;
}
.sticky-wrapper2.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  animation: stickyAni 0.4s ease-in-out;
  z-index: 999;
}
.sticky-wrapper2.sticky .main-menu2 a {
  display: block;
  position: relative;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
.sticky-wrapper2.sticky .main-menu2 a:hover, .sticky-wrapper2.sticky .main-menu2 a.active {
  color: var(--theme);
}
.sticky-wrapper2.sticky .main-menu2 > ul > li {
  margin: 0 15px;
}
.sticky-wrapper2.sticky .main-menu2 > ul > li > a {
  padding: 30px 0;
}
.sticky-wrapper2.sticky .main-menu2 > ul > li > a:hover {
  color: var(--theme);
}
.sticky-wrapper2.sticky .main-menu2 ul {
  margin: 0;
  padding: 0;
}
.sticky-wrapper2.sticky .main-menu2 ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.sticky-wrapper2.sticky .main-menu2 ul li.menu-item-has-children > a.active:after {
  color: var(--title);
}
.sticky-wrapper2.sticky .main-menu2 ul li.menu-item-has-children > a .svg path {
  fill: #000;
}
.sticky-wrapper2.sticky .main-menu2 ul li:last-child {
  margin-right: 0 !important;
}
.sticky-wrapper2.sticky .main-menu2 ul li:first-child {
  margin-left: 0 !important;
}
.sticky-wrapper2.sticky .main-menu2 ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1) translateY(0);
  z-index: 9;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: #dc3545;
  visibility: hidden;
  min-width: 230px;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 10px;
  transform: scaleY(0) translateY(-10px);
  transform-origin: top center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 19px 11px 17px 11px;
  left: -27px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu a {
  font-size: 16px;
  line-height: 30px;
  color: #ffffff;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li:not(:last-child) {
  margin-bottom: 5px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li.menu-item-has-children > a:after {
  display: none;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li.menu-item-has-children > a :hover:after {
  display: none;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li a {
  position: relative;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 8px 12px;
  display: block;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li a:before {
  display: none;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li a:hover {
  color: #000000;
  background-color: #ffff00;
  padding: 8px 12px;
  transform: translateX(8px);
  border-radius: 4px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li a:hover:before {
  display: none;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 8px;
}
.sticky-wrapper2.sticky .main-menu2 ul .sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.sticky-wrapper2.sticky .header-button .search-icon2 {
  color: var(--title);
}
.sticky-wrapper2.sticky .header-logo .svg path {
  fill: var(--title);
}
.sticky-wrapper2.sticky .header-logo .svg path:nth-of-type(4) {
  fill: var(--theme);
}

.header-button {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-button .search-icon {
  color: var(--title);
  font-size: 24px;
  padding: 10px;
  width: 60px;
  height: 60px;
}
.header-button .search-icon2 {
  color: var(--white);
  font-size: 24px;
  padding: 10px;
  width: 60px;
  height: 60px;
}
.header-button .simple-icon {
  padding: 10px;
  width: 60px;
  height: 60px;
  line-height: 36px;
  text-align: center;
  color: var(--title);
}
.header-button .simple-icon.sidebar-btn {
  border-radius: 6px;
  border: 1px solid #262626;
}

.global-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.global-menu-wrapper .mobile-logo {
  padding-bottom: 10px;
  padding-top: 10px;
  display: block;
  text-align: center;
  background-color: var(--title);
}
.global-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.global-menu-wrapper .global-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 36px;
  font-size: 18px;
  z-index: 1;
  color: var(--white);
  background-color: var(--theme);
  border-radius: 50%;
}
.global-menu-wrapper .global-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.global-menu-wrapper.global-body-visible {
  opacity: 1;
  visibility: visible;
}
.global-menu-wrapper.global-body-visible .global-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.global-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.global-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.global-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}
.global-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}
.global-mobile-menu ul li.menu-item-has-children {
  position: relative;
}
.global-mobile-menu ul li.menu-item-has-children:before {
  opacity: 1;
  visibility: visible;
  position: absolute;
  content: "+";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
  color: var(--title);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.global-mobile-menu ul li.menu-item-has-children.global-active:before {
  opacity: 0;
  visibility: hidden;
}
.global-mobile-menu ul li.menu-item-has-children.global-active:after {
  opacity: 1;
  visibility: visible;
}
.global-mobile-menu ul li.menu-item-has-children:after {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  content: "\f068";
  font-family: var(--icon-font);
  position: absolute;
  right: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
  color: var(--title);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
.global-mobile-menu ul li.menu-item-has-children a {
  padding-right: 18px;
}
.global-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title);
}
.global-mobile-menu ul li.global-active > a {
  color: var(--theme);
}
.global-mobile-menu ul li.global-active > a:before {
  transform: rotate(90deg);
}
.global-mobile-menu ul li ul li {
  padding-left: 20px;
}
.global-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.global-mobile-menu ul .global-item-has-children > a .global-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--gray1);
  color: var(--title);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.global-mobile-menu ul .global-item-has-children > a .global-mean-expand:before {
  content: "\f067";
}
.global-mobile-menu ul .global-item-has-children > a:after {
  content: "\f067";
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--gray1);
  float: right;
  margin-top: 1px;
}
.global-mobile-menu ul .global-item-has-children.global-active > a .global-mean-expand:before {
  content: "\f068";
}
.global-mobile-menu ul .global-item-has-children.global-active > a:after {
  content: "\f068";
}
.global-mobile-menu > ul {
  padding: 0 40px;
}
.global-mobile-menu > ul > li:last-child {
  border-bottom: none;
}
.global-mobile-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.global-mobile-menu::-webkit-scrollbar-track {
  background: rgba(252, 0, 18, 0.1);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.global-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 25%, transparent 20%, transparent 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 75%, transparent 75%, transparent);
}

.global-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  line-height: 52px;
  border: none;
  background-color: var(--theme);
  color: var(--title);
  display: inline-block;
  border-radius: 5px;
}
.global-menu-toggle:hover {
  background-color: var(--white);
}
.global-menu-toggle.style-text, .global-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title);
  font-size: 20px;
}
.global-menu-toggle.style-text i, .global-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.global-menu-toggle.style-text-white {
  color: var(--white);
}
@media (max-width: 1199px) {
  .global-menu-toggle {
    background-color: var(--white);
  }
}

@media (max-width: 400px) {
  .global-menu-wrapper .global-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .global-mobile-menu > ul {
    padding: 0 20px;
  }
}
/* 3. Hero */
.hero1 {
  position: relative;
  padding: 0;
  min-height: 600px;
  width: 100%;
  /* Swiper Pagination (Numbered) */
}
@media (min-width: 768px) {
  .hero1 {
    padding: 0;
    min-height: 600px;
  }
}
@media (min-width: 1200px) {
  .hero1 {
    padding: 0px 0 0px;
    min-height: 600px;
  }
}
.hero1-background-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.hero1-background-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, rgba(38, 38, 38, 0) 11.59%, #26262624 99.15%);
  z-index: 1;
}

/* Responsive slider background styling for 1659x600 images */
@media (max-width: 575px) {
  .hero1 {
    min-height: 200px;
  }
  .hero1-background-image {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hero1 {
    min-height: 300px;
  }
  .hero1-background-image {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero1 {
    min-height: 400px;
  }
  .hero1-background-image {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero1 {
    min-height: 500px;
  }
  .hero1-background-image {
    background-size: cover;
    background-position: center;
  }
}

@media (min-width: 1200px) {
  .hero1 {
    min-height: 600px;
  }
  .hero1-background-image {
    background-size: cover;
    background-position: center;
  }
}
.hero1-content {
  position: relative;
  z-index: 1;
  height: 380px;
}
.hero1-content__title {
  padding-bottom: 20px;
}
.hero1-content__title h1 {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero1-content__title h1 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (min-width: 992px) {
  .hero1-content__title h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 1400px) {
  .hero1-content__title h1 {
    font-size: 100px;
    line-height: 106px;
  }
}
.hero1-content__desc {
  padding-right: 0px;
}
@media (min-width: 1400px) {
  .hero1-content__desc {
    padding-right: 80px;
  }
}
.hero1-content__desc h4 {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}
.hero1 .swiper-pagination {
  display: none !important;
}
.hero1 .swiper-pagination-bullet {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
}
.hero1 .swiper-pagination-bullet:not(:first-child):not(:last-child)::before, .hero1 .swiper-pagination-bullet:not(:first-child):not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: linear-gradient(91deg, #e61d25 -1.28%, rgba(255, 255, 255, 0) 96.61%);
  left: 50%;
  transform: translateX(-50%);
}
.hero1 .swiper-pagination-bullet:not(:first-child):not(:last-child)::before {
  bottom: 100%;
}
.hero1 .swiper-pagination-bullet:not(:first-child):not(:last-child)::after {
  top: 100%;
}
.hero1 .swiper-pagination-bullet-active {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e61d25;
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.hero1 .swiper-horizontal > .swiper-pagination-bullets,
.hero1 .swiper-pagination-bullets.swiper-pagination-horizontal,
.hero1 .swiper-pagination-custom,
.hero1 .swiper-pagination-fraction {
  bottom: 10px;
  width: 0;
  right: 0;
  left: inherit;
}

/* Hero Global Slider Container */
.hero-global-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.hero-global-slider .swiper-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero Navigation Arrows */
.hero1 .swiper-button-next,
.hero1 .swiper-button-prev {
  position: absolute;
  display: flex;
  width: 60px;
  height: 60px;
  background: rgba(230, 29, 37, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  z-index: 10;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero1 .swiper-button-next:hover,
.hero1 .swiper-button-prev:hover {
  background: rgba(230, 29, 37, 1);
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 20px rgba(230, 29, 37, 0.5);
}

.hero1 .swiper-button-next::after,
.hero1 .swiper-button-prev::after {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
}

.hero1 .swiper-button-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.hero1 .swiper-button-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .hero1 .swiper-button-next,
  .hero1 .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  .hero1 .swiper-button-next::after,
  .hero1 .swiper-button-prev::after {
    font-size: 16px;
  }
  .hero1 .swiper-button-next {
    right: 15px;
  }
  .hero1 .swiper-button-prev {
    left: 15px;
  }
}

@media (max-width: 480px) {
  .hero1 .swiper-button-next,
  .hero1 .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .hero1 .swiper-button-next::after,
  .hero1 .swiper-button-prev::after {
    font-size: 14px;
  }
  .hero1 .swiper-button-next {
    right: 10px;
  }
  .hero1 .swiper-button-prev {
    left: 10px;
  }
}

.hero2 {
  padding: 105px 0 50px;
  position: relative;
}
@media (min-width: 768px) {
  .hero2 {
    padding: 105px 0 90px;
  }
}
@media (min-width: 1200px) {
  .hero2 {
    padding: 55px 0 0;
  }
}
@media (min-width: 1400px) {
  .hero2 {
    padding: 105px 0 0px;
  }
}
@media (min-width: 1600px) {
  .hero2 {
    padding: 105px 0 124px;
  }
}
.hero2-shape__three {
  display: none;
}
@media (min-width: 1200px) {
  .hero2-shape__three {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .hero2-shape__three img {
    width: 100%;
  }
}
.hero2-content {
  position: relative;
  z-index: 9;
}
@media (min-width: 1200px) {
  .hero2-content {
    padding-top: 163px;
  }
}
.hero2-content__title {
  padding-bottom: 20px;
}
.hero2-content__title h1 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero2-content__title h1 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (min-width: 992px) {
  .hero2-content__title h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 1400px) {
  .hero2-content__title h1 {
    font-size: 100px;
    line-height: 106px;
  }
}
.hero2-content__desc {
  padding-right: 0px;
}
@media (min-width: 1400px) {
  .hero2-content__desc {
    padding-right: 80px;
  }
}
.hero2-content__desc h4 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}
.hero2-thumb {
  position: relative;
  z-index: 9;
}
@media (min-width: 1200px) {
  .hero2-thumb {
    padding-top: 97px;
  }
}
.hero2-thumb-counter {
  display: none;
}
@media (min-width: 576px) {
  .hero2-thumb-counter {
    display: block;
    position: absolute;
    bottom: 2%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #e61d25;
    width: 160px;
    height: 160px;
    border-radius: 50%;
  }
}
.hero2-thumb-counter__number {
  color: var(--white);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.hero2-thumb-counter__text {
  color: var(--gray1);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.hero2-thumb-shape__one {
  display: none;
}
@media (min-width: 768px) {
  .hero2-thumb-shape__one {
    display: block;
    position: absolute;
    top: 27%;
  }
}
@media (min-width: 1200px) {
  .hero2-thumb-shape__one {
    top: 36%;
  }
}
.hero2-thumb-shape__two {
  display: none;
}
@media (min-width: 576px) {
  .hero2-thumb-shape__two {
    display: block;
    position: absolute;
    top: -3%;
    left: 43%;
  }
}
@media (min-width: 1200px) {
  .hero2-thumb-shape__two {
    top: 10%;
  }
}

.hero3 {
  position: relative;
  padding: 120px 0 50px;
}
@media (min-width: 768px) {
  .hero3 {
    padding: 130px 0 90px;
  }
}
@media (min-width: 992px) {
  .hero3 {
    padding: 160px 0 112px;
  }
}
@media (min-width: 1200px) {
  .hero3 {
    padding: 90px 0 60px;
  }
}
.hero3__shape1 {
  position: absolute;
  border-radius: 461.675px;
  background: #e61d25;
  filter: blur(400px);
  width: 450px;
  height: 461.675px;
  top: 20%;
  left: 5%;
  z-index: 1;
}
.hero3__shape2 {
  position: absolute;
  border-radius: 461.675px;
  background: #e61d25;
  filter: blur(400px);
  width: 450px;
  height: 461.675px;
  bottom: 15%;
  right: 10%;
  z-index: 1;
}
.hero3__title {
  position: relative;
  z-index: 3;
  padding-right: 0px;
}
@media (min-width: 1400px) {
  .hero3__title {
    padding-right: 30px;
  }
}
.hero3__title h1 {
  color: #262626;
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero3__title h1 {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (min-width: 992px) {
  .hero3__title h1 {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (min-width: 1400px) {
  .hero3__title h1 {
    font-size: 70px;
    line-height: 85px;
  }
}
.hero3-content {
  position: relative;
  z-index: 5;
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 1200px) {
  .hero3-content {
    padding-left: 67px;
    padding-right: 0px;
  }
}
@media (min-width: 1400px) {
  .hero3-content {
    padding-left: 97px;
    padding-right: 45px;
  }
}
.hero3-content-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
}
.hero3-content-profile__title h6 {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.hero3-thumb {
  padding-top: 15px;
  position: relative;
  z-index: 9;
  border-radius: 20px;
}
@media (min-width: 1200px) {
  .hero3-thumb {
    padding-top: 70px;
  }
}
.hero3-thumb img {
  border-radius: 20px;
}
.hero3-brandLogo {
  padding-top: 15px;
}
@media (min-width: 768px) {
  .hero3-brandLogo {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .hero3-brandLogo {
    padding-top: 73px;
  }
}
.hero3-brandLogo__title {
  padding-bottom: 22px;
}
.hero3-brandLogo__title h6 {
  color: var(--title);
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* 4. About */
.about1-thumb {
  position: relative;
}
.about1-thumb__one {
  position: relative;
  padding-top: 0px;
  z-index: 9;
}
.about1-thumb__one img {
  border-radius: 20px;
}
.about1-thumb__two {
  padding-top: 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .about1-thumb__two {
    padding-top: 20px;
  }
}
.about1-thumb__two img {
  border-radius: 20px;
}
.about1-thumb__shape1 {
  display: none;
}
@media (min-width: 576px) {
  .about1-thumb__shape1 {
    display: block;
    position: absolute;
    top: 0px;
    right: 15px;
    z-index: 9;
  }
}
@media (min-width: 768px) {
  .about1-thumb__shape1 {
    right: 84px;
  }
}
@media (min-width: 992px) {
  .about1-thumb__shape1 {
    top: 32px;
    right: 32px;
    left: 40px;
  }
}
@media (min-width: 1200px) {
  .about1-thumb__shape1 {
    top: 0px;
    right: 46px;
    left: 46px;
  }
}
@media (min-width: 1400px) {
  .about1-thumb__shape1 {
    top: 0px;
    left: 55px;
  }
}
.about1-thumb__shape2 {
  display: none;
}
@media (min-width: 576px) {
  .about1-thumb__shape2 {
    display: block;
    position: absolute;
    top: 100px;
    left: 10px;
    right: 7px;
  }
}
@media (min-width: 768px) {
  .about1-thumb__shape2 {
    top: 100px;
    left: 22px;
  }
}
@media (min-width: 992px) {
  .about1-thumb__shape2 {
    top: 100px;
    left: 10px;
  }
}
@media (min-width: 1200px) {
  .about1-thumb__shape2 {
    left: 25px;
    right: 15px;
  }
}
.about1-thumb__shape3 {
  display: none;
}
@media (min-width: 576px) {
  .about1-thumb__shape3 {
    display: block;
    position: absolute;
    bottom: -129px;
    right: 14px;
    left: 16px;
  }
}
@media (min-width: 768px) {
  .about1-thumb__shape3 {
    position: absolute;
    bottom: -129px;
    right: 14px;
    left: 22px;
  }
}
@media (min-width: 992px) {
  .about1-thumb__shape3 {
    position: absolute;
    bottom: -103px;
    right: 14px;
    left: 22px;
  }
}
@media (min-width: 1200px) {
  .about1-thumb__shape3 {
    bottom: -129px;
    right: 30px;
  }
}
.about1-thumb__shape4 {
  display: none;
}
@media (min-width: 576px) {
  .about1-thumb__shape4 {
    display: block;
    position: absolute;
    bottom: -73px;
    right: 36px;
    left: 40px;
  }
}
@media (min-width: 768px) {
  .about1-thumb__shape4 {
    position: absolute;
    bottom: -75px;
    right: 83px;
  }
}
@media (min-width: 992px) {
  .about1-thumb__shape4 {
    position: absolute;
    bottom: -61px;
    right: 35px;
  }
}
@media (min-width: 1200px) {
  .about1-thumb__shape4 {
    bottom: -75px;
    right: 55px;
  }
}
.about1-content {
  padding: 30px 0 30px 30px;
}
@media (max-width: 1199px) {
  .about1-content {
    padding-top: 35px;
  }
}
.about1-content-checklist {
  padding-top: 10px;
  padding-bottom:10px;
}
.about1-content-checklist-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 8px;
}
.about1-content-checklist-item__text {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.about2-thumb {
  position: relative;
}
.about2-thumb__one {
  position: relative;
}
.about2-thumb__one img {
  border-radius: 20px;
}
.about2-thumb__shape {
  position: absolute;
  top: 0px;
  right: -55px;
}
@media (min-width: 375px) {
  .about2-thumb__shape {
    top: -9px;
    right: -50px;
  }
}
@media (min-width: 450px) {
  .about2-thumb__shape {
    top: -9px;
    right: -25px;
  }
}
@media (min-width: 768px) {
  .about2-thumb__shape {
    top: 9px;
    right: 90px;
  }
}
@media (min-width: 992px) {
  .about2-thumb__shape {
    top: 9px;
    right: 36%;
  }
}
@media (min-width: 1200px) {
  .about2-thumb__shape {
    top: -20px;
    right: -3px;
  }
}
@media (min-width: 1400px) {
  .about2-thumb__shape {
    top: 6px;
    right: 36px;
  }
}
.about2-thumb__shape img {
  width: 50%;
}
@media (min-width: 375px) {
  .about2-thumb__shape img {
    width: 60%;
  }
}
@media (min-width: 450px) {
  .about2-thumb__shape img {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .about2-thumb__shape img {
    width: 100%;
  }
}
.about2-content {
  padding-top: 95px;
}
@media (max-width: 1199px) {
  .about2-content {
    padding-top: 45px;
  }
}
.about2-slider {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.about2-slider__title {
  color: var(--title);
  max-width: 216px;
}
.about2-slider__number {
  color: var(--theme);
}
.about2-slider__thumb img {
  width: 100%;
  height: 140px;
  object-fit: contain;
}

.about3-thumb {
  position: relative;
  display: flex;
  gap: 15px;
}
@media (min-width: 576px) {
  .about3-thumb {
    gap: 24px;
  }
}
.about3-thumb__one {
  position: relative;
  z-index: 9;
  border-radius: 20px;
}
.about3-thumb__one img {
  border-radius: 20px;
}
.about3-thumb__two {
  position: relative;
  z-index: 9;
  border-radius: 20px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .about3-thumb__two {
    padding-top: 100px;
  }
}
.about3-thumb__two img {
  border-radius: 20px;
}
.about3-thumb__shape1 {
  display: none;
}
@media (min-width: 992px) {
  .about3-thumb__shape1 {
    display: block;
    position: absolute;
    top: 19px;
    left: 18%;
  }
}
@media (min-width: 1200px) {
  .about3-thumb__shape1 {
    position: absolute;
    top: 1px;
    left: 19%;
  }
}
@media (min-width: 1400px) {
  .about3-thumb__shape1 {
    position: absolute;
    top: 32px;
    left: 25%;
  }
}
.about3-thumb__videoIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .about3-thumb__videoIcon {
    left: 46%;
  }
}
@media (min-width: 992px) {
  .about3-thumb__videoIcon {
    left: 34%;
  }
}
@media (min-width: 1200px) {
  .about3-thumb__videoIcon {
    left: 50%;
  }
}
.about3-thumb__videoIcon svg {
  width: 80px;
  height: 80px;
}
@media (min-width: 576px) {
  .about3-thumb__videoIcon svg {
    width: 120px;
    height: 120px;
  }
}
.about3-thumb__videoIcon svg :hover {
  fill: var(--title);
}
.about3-content-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}
@media (max-width: 1199px) {
  .about3-content-box {
    padding-top: 35px;
  }
}
@media (max-width: 575px) {
  .about3-content-box {
    flex-wrap: wrap;
  }
}
.about3-content-box__thumb {
  border-radius: 20px;
}
.about3-content-box__thumb img {
  border-radius: 20px;
  max-width: fit-content;
}
.about3-content-box-details-text {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
}
.about3-content-box-details-text__numb {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
.about3-content-box-details-text__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}
.about3-content-box p {
  color: var(--title2);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* Company Story Section */
.company-story-section {
  position: relative;
  background-image: url('../images/bg-about.jpg');
  background-size: contain;
  background-position: center;
 
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}

.company-story-section .story-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.company-story-section .story-paragraph {
  font-size: 18px;
  line-height: 24px;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

.company-story-section .story-paragraph span {
  color: #e74c3c;
  font-weight: bold;
}

.company-story-section .vision-title,
.company-story-section .mission-title {
  color: #e74c3c;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.company-story-section .vision-line,
.company-story-section .mission-line {
  height: 3px;
  background: #e74c3c;
  width: 100px;
  margin: 0 auto 20px;
}

.company-story-section .vision-text {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  width: 100%;
  margin: 0;
}

.company-story-section .mission-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin: 0;
}

.company-story-section .mission-item {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.company-story-section .mission-item span {
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
}

/* Philosophy & Core Values Section */
.philosophy-values-section {
  position: relative;
    background-color: #dec31b;
  background-size: contain;
  background-position: center;

  background-attachment: fixed;
  padding: 80px 0;
  overflow: hidden;
}

.philosophy-card {

  padding: 60px 40px;


  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.philosophy-title {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Nunito", serif;
}

.philosophy-line {
  height: 3px;
  background: #e74c3c;
  width: 100px;
  margin: 0 auto;
  border-radius: 2px;
}

.philosophy-text {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  font-family: "Nunito", serif;

  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 45px 30px;
  margin: 20px 0;
  background: white;
  border-radius: 25px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: #ff6b35;
  background: linear-gradient(135deg, #ffffff, #fefefe);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #fff5f0, #fff);
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid rgba(255, 107, 53, 0.1);
}

.value-item:hover .value-icon {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25);
  border-color: rgba(255, 107, 53, 0.3);
  background: linear-gradient(135deg, #fff8f0, #fff);
}

.value-title {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Nunito", serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  line-height: 1.2;
}

.value-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.value-description {
  font-size: 17px;
  line-height: 1.8;
  color: #5a6c7d;
  font-family: "Nunito", serif;
  max-width: 300px;
  margin: 0 auto;
  font-weight: 500;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

/* Center the second row */
.core-values-grid .row:last-child {
  justify-content: center;
}

.core-values-grid .row:last-child .col-md-6 {
  flex: 0 0 auto;
  width: calc(50% - 1rem);
  max-width: 350px;
}

/* Enhanced grid spacing */
.core-values-grid .row {
  margin: 0 -15px;
}

.core-values-grid .col-md-4,
.core-values-grid .col-md-6 {
  padding: 0 15px;
}

/* Add some breathing room between rows */
.core-values-grid .row:first-child {
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .philosophy-card {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .philosophy-title {
    font-size: 28px;
  }
  
  .philosophy-text {
    font-size: 18px;
  }
  
  .value-title {
    font-size: 22px;
  }
  
  .value-description {
    font-size: 15px;
  }
}

/* Team Members Section */
.team-members-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.team-title {
  color: #333;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: "Nunito", serif;
}

.team-member-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.team-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-photo {
  margin-bottom: 20px;
  text-align: center;
}

.member-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f8f9fa;
  transition: all 0.3s ease;
}

.team-member-card:hover .member-photo img {
  border-color: #e74c3c;
  transform: scale(1.05);
}

.member-info {
  text-align: center;
}

.member-name {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: "Nunito", serif;
}

.member-title {
  color: #666;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Nunito", serif;
}

.team-cta {
  text-align: center;
}

.btn-outline-primary {
  color: #e74c3c;
  border-color: #e74c3c;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-primary:hover {
  background-color: #e74c3c;
  color: white;
  border-color: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Team section responsive */
@media (max-width: 768px) {
  .team-title {
    font-size: 28px;
  }
  
  .team-member-card {
    padding: 25px 15px;
    margin-bottom: 20px;
  }
  
  .member-photo img {
    width: 100px;
    height: 100px;
  }
  
  .member-name {
    font-size: 20px;
  }
  
  .member-title {
    font-size: 14px;
  }
}

/* Additional styles for inline elements */
.company-story-section .story-card[style*="background: rgba(255, 255, 255, 0.95)"] {
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 60px 40px !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px) !important;
}

.company-story-section .story-paragraph[style*="font-size: 18px"] {
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #333 !important;
  margin-bottom: 25px !important;
}

.company-story-section .story-paragraph span[style*="color: #e74c3c"] {
  color: #e74c3c !important;
  font-weight: bold !important;
}

.company-story-section .vision-title[style*="color: #e74c3c"],
.company-story-section .mission-title[style*="color: #e74c3c"] {
  color: #e74c3c !important;
  font-size: 28px !important;
  font-weight: bold !important;
  margin-bottom: 15px !important;
  text-transform: uppercase !important;
}

.company-story-section .vision-line[style*="background: #e74c3c"],
.company-story-section .mission-line[style*="background: #e74c3c"] {
  height: 3px !important;
  background: #e74c3c !important;
  width: 100px !important;
  margin: 0 auto 20px !important;
}

.company-story-section .vision-text[style*="font-size: 20px"] {
  font-size: 20px !important;
  line-height: 1.6 !important;
  color: #333 !important;
  font-style: italic !important;
}

.company-story-section .mission-list[style*="list-style: none"] {
  list-style: none !important;
  padding: 0 !important;
  text-align: left !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

.company-story-section .mission-item[style*="font-size: 18px"] {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #333 !important;
  margin-bottom: 15px !important;
  padding-left: 30px !important;
  position: relative !important;
}

.company-story-section .mission-item span[style*="position: absolute"] {
  position: absolute !important;
  left: 0 !important;
  color: #e74c3c !important;
  font-weight: bold !important;
}

.company-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.company-story-content {
  position: relative;
  z-index: 2;
}

.story-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.story-paragraph {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  font-family: "Nunito", serif;
}

.story-paragraph strong {
  font-weight: 400;
  color: #333;
}

.story-paragraph span {
  color: #e74c3c;
  font-weight: bold;
}

.vision-mission-section {
  margin-top: 0px;
}

.vision-section,
.mission-section {
  margin-bottom: 40px;
}

.vision-title,
.mission-title {
  color: #e74c3c;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-family: "Nunito", serif;
}

.vision-line,
.mission-line {
  height: 3px;
  background: #e74c3c;
  width: 100px;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.vision-text {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
  font-family: "Nunito", serif;
  max-width: 700px;
  margin: 0 auto;
}

.mission-list {
  list-style: none;
  padding: 0;
  text-align: left;
  
  margin: 0 auto;
}

.mission-item {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-family: "Nunito", serif;
}

.mission-item span {
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
  font-size: 20px;
}

/* Responsive adjustments for company story section */
@media (max-width: 768px) {
  .company-story-section {
    padding: 60px 0;
    background-size: cover;
  }
  
  .story-card {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .story-paragraph {
    font-size: 16px;
  }
  
  .vision-title,
  .mission-title {
    font-size: 24px;
  }
  
  .vision-text {
    font-size: 18px;
  }
  
  .mission-item {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .story-card {
    padding: 30px 20px;
  }
  
  .vision-title,
  .mission-title {
    font-size: 22px;
  }
  
  .vision-text {
    font-size: 16px;
  }
}

/* 5. 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 a {
  width: 100%;
  padding: 10px 0;
  color: var(--white) !important;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  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(--title);
}

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

/* 6. Title */
/*----------------------------------------------
    # Title style here
----------------------------------------------*/
.section-top__subtitle {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
 
  margin-bottom: 12px;
}
.section-top__subtitle2 {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
 
  margin-bottom: 12px;
}
.section-top__title {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 36px;
  font-style: normal;
  font-weight:400;
  line-height: 44px;
  letter-spacing: 0px;
  
}
@media (max-width: 1199px) {
  .section-top__title {
    font-size: 45px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .section-top__title {
    font-size: 42px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .section-top__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.section-top__title2 {
  color: var(--white);
}
.section-top__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}
.section-top__desc2 {
  color: var(--white);
}
.section-top__desc3 {
  color: var(--title2);
}

/* 7. Service */
.service1-card {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.service1-card__icon {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: rgba(243, 96, 76, 0.1);
  margin-bottom: 60px;
  transition: all 0.4s ease-in-out;
}
.service1-card__title {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;

  margin-bottom: 12px;
}
.service1-card__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}
.service1-card__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}
.service1-card--bg {
  background: var(--gray1);
}
.service1-card:hover .service1-card__icon {
  background-color: #f7e67d;
}
.service1-card:hover .service1-card__icon svg path {
  stroke: var(--white);
}
.service1-card:hover .service1-card__icon--fill svg path {
  fill: var(--white);
}
.service1-view {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service1-view {
    padding-top: 55px;
  }
}
.service1-view__icon {
  padding-bottom: 21px;
  text-align: center;
}
.service1-view__icon svg {
  background: var(--theme);
  border-radius: 50px;
  padding: 21px;
  width: 74px;
  height: 74px;
}
.service1-view__icon svg:hover {
  background: var(--title);
}
.service1-view__title {
  color: var(--title);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.48px;
  
}

.service2-card {
  padding: 30px;
  border-radius: 20px;
  background-color: var(--gray1);
  transition: all 0.4s ease-in-out;
}
.service2-card__icon {
  display: flex;
  width: 70px;
  height: 70px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: rgba(243, 96, 76, 0.1);
  margin-bottom: 60px;
  transition: all 0.4s ease-in-out;
}
.service2-card__title {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service2-card__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}
.service2-card__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}
.service2-card:hover .service2-card__icon {
  background-color: var(--theme);
}
.service2-card:hover .service2-card__icon svg path {
  stroke: var(--white);
}
.service2-card:hover .service2-card__icon--fill svg path {
  fill: var(--white);
}

.service3-card {
  margin-bottom: 24px;
  padding: 30px;
  border-radius: 20px;
  background-color: var(--gray1);
  transition: all 0.4s ease-in-out;
}
.service3-card__icon {
  display: flex;
  width: 80px;
  height: 80px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background-color: rgba(243, 96, 76, 0.1);
  margin-bottom: 60px;
  transition: all 0.4s ease-in-out;
}
.service3-card__title {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service3-card__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
}
.service3-card__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}
.service3-card:hover .service3-card__icon {
  background-color: var(--theme);
}
.service3-card:hover .service3-card__icon svg path {
  stroke: var(--white);
}
.service3-card:hover .service3-card__icon--fill svg path {
  fill: var(--white);
}

@media (min-width: 1600px) {
  .service4-details {
    padding-right: 22px;
  }
}
.service4-details__thumb {
  padding-bottom: 40px;
  border-radius: 20px;
}
.service4-details__thumb img {
  border-radius: 20px;
}
.service4-details-content__title {
  padding-bottom: 23px;
}
.service4-details-content__desc {
  padding-bottom: 25px;
}
.service4-details-content-thumb {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 40px;
}
.service4-details-content-thumb img {
  border-radius: 20px;
}
.service4-details-content__desc2 {
  padding-bottom: 61px;
}
.service4-details-content__title2 {
  padding-bottom: 18px;
}

/* 8. Project */
.project1-card1 {
  padding-top: 0px;
  padding-bottom: 75px;
}
@media (min-width: 768px) {
  .project1-card1 {
    padding-top: 80px;
    padding-bottom: 75px;
  }
}
@media (min-width: 768px) {
  .project1-card1 {
    padding-top: 138px;
    padding-bottom: 133px;
  }
}
.project1-card1__thumb {
  padding-bottom: 22px;
  border-radius: 20px;
}
.project1-card1__thumb img {
  border-radius: 20px;
}
.project1-card1__category {
  padding-bottom: 7px;
}
.project1-card1__title {
  text-transform: uppercase;
  max-width: 535px;
}
.project1-card2 {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .project1-card2 {
    padding-bottom: 0px;
  }
}
.project1-card2__thumb {
  padding-bottom: 22px;
  border-radius: 20px;
}
.project1-card2__thumb img {
  border-radius: 20px;
}
.project1-card2__category {
  padding-bottom: 7px;
}
.project1-card2__title {
  text-transform: uppercase;
}
.project1-card3 {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .project1-card3 {
    padding-bottom: 133px;
  }
}
.project1-card3__thumb {
  padding-bottom: 22px;
  border-radius: 20px;
}
.project1-card3__thumb img {
  border-radius: 20px;
}
.project1-card3__category {
  padding-bottom: 7px;
}
.project1-card3__title {
  text-transform: uppercase;
  max-width: 535px;
}
.project1-card4 {
  padding-left: 0px;
}
@media (min-width: 1200px) {
  .project1-card4 {
    padding-left: 108px;
  }
}
.project1-card4__thumb {
  padding-bottom: 22px;
  text-align: end;
  border-radius: 20px;
}
.project1-card4__thumb img {
  border-radius: 20px;
}
.project1-card4__category {
  padding-bottom: 7px;
}
.project1-card4__title {
  text-transform: uppercase;
  max-width: 535px;
}
.project1-card5 {
  display: flex;
  justify-content: center;
  padding-left: 0px;
  padding-top: 45px;
}
@media (min-width: 768px) {
  .project1-card5 {
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .project1-card5 {
    padding-left: 108px;
  }
}
.project1-card5__button {
  color: var(--white);
  background-color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.project1-card5 :hover .project1-card5__button {
  background-color: var(--title);
}

.project2-card {
  position: relative;
}
.project2-card__thumb {
  position: relative;
  border-radius: 20px;
}
.project2-card__thumb img {
  border-radius: 20px;
}
.project2-card-content {
  visibility: hidden;
  opacity: 0;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--white);
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  transition: all 0.4s ease-in-out;
}
.project2-card-content__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project2-card-content__link p {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.project2-card:hover .project2-card-content {
  visibility: visible;
  opacity: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  transition: all 0.4s ease-in-out;
}

.project3-card {
  position: relative;
}
.project3-card__thumb {
  position: relative;
  border-radius: 20px;
}
.project3-card__thumb img {
  border-radius: 20px;
}
.project3-card-content {
  visibility: hidden;
  opacity: 0;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--white);
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 384px;
  transition: all 0.4s ease-in-out;
}
.project3-card-content__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project3-card-content__link p {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.project3-card:hover .project3-card-content {
  visibility: visible;
  opacity: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  transition: all 0.4s ease-in-out;
}

.project4-details {
  padding-bottom: 35px;
}
.project4-details__thumb {
  border-radius: 20px;
}
.project4-details__thumb img {
  border-radius: 20px;
}
.project4-details-content__title {
  padding-bottom: 23px;
}
.project4-details-content__desc {
  padding-bottom: 25px;
}
.project4-details-content-thumb {
  display: flex;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 40px;
}
.project4-details-content-thumb img {
  border-radius: 20px;
}
.project4-details-content__desc2 {
  padding-bottom: 61px;
}
.project4-details-content__title2 {
  padding-bottom: 20px;
}

/* 9. Testimonial */
.testimonial1-shape {
  display: none;
}
@media (min-width: 992px) {
  .testimonial1-shape {
    display: block;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
.testimonial1-shape__line {
  margin-left: 10px;
  background: #262626;
  width: 1.5px;
  height: 287.828px;
}
.testimonial1-card {
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--theme);
  padding: 37px 30px;
}
.testimonial1-card__text {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  padding-bottom: 34px;
}
@media (min-width: 992px) {
  .testimonial1-card__text {
    font-size: 23px;
  }
}
@media (min-width: 1200px) {
  .testimonial1-card__text {
    font-size: 28px;
  }
}
.testimonial1-card-author__name {
  padding-bottom: 5px;
}
.testimonial1-card__quote {
  position: absolute;
  right: 34px;
  bottom: 45px;
}
.testimonial1-profile {
  display: none;
}
@media (min-width: 992px) {
  .testimonial1-profile {
    display: block;
    padding-left: 35px;
  }
}
@media (min-width: 1200px) {
  .testimonial1-profile {
    padding-left: 0px;
  }
}
.testimonial1-profile-items {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
}
.testimonial1-profile-items:not(:last-child) {
  padding-bottom: 50px;
}
.testimonial1-profile-items__shape {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  display: none;
}
@media (min-width: 1200px) {
  .testimonial1-profile-items__shape {
    display: block;
    position: absolute;
    left: 1%;
  }
}
@media (min-width: 1400px) {
  .testimonial1-profile-items__shape {
    left: 18%;
  }
}
.testimonial1-profile-items__shape.active {
  opacity: 1;
  visibility: visible;
}
.testimonial1-profile-items__one {
  border-radius: 80px;
}
.testimonial1-profile-items__one img {
  border-radius: 80px;
  max-width: fit-content;
}

.testimonial2__desc {
  max-width: 463px;
}
.testimonial2-card {
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--gray1);
}
@media (max-width: 767px) {
  .testimonial2-card {
    padding: 20px;
  }
}
.testimonial2-card-icon__star {
  display: flex;
}
.testimonial2-card__desc {
  padding-top: 16px;
  padding-bottom: 37px;
}
.testimonial2-card--bg {
  background: var(--white);
}

.testimonial3-card {
  position: relative;
  display: flex;
  background: var(--white);
  border-radius: 20px;
}
.testimonial3-card-thumb {
  position: relative;
}
.testimonial3-card-thumb img {
  max-width: fit-content;
  border-radius: 20px 0px 0px 20px;
}
.testimonial3-card-thumb__videoIcon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.testimonial3-card-thumb__videoIcon :hover svg circle {
  fill: var(--title);
}
.testimonial3-card-thumb__videoIcon :hover svg path {
  fill: var(--white);
}
@media (max-width: 1199px) {
  .testimonial3-card-thumb {
    display: none;
  }
}
.testimonial3-card-content {
  padding: 30px;
}
.testimonial3-card-content__icon {
  padding-bottom: 15px;
}
.testimonial3-card-content__desc p {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-bottom: 25px;
}
.testimonial3-card-content__name {
  padding-bottom: 9px;
}
.testimonial3-card-content__title p {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

/* 10. Contact */
@media (min-width: 1200px) {
  .contact1-content {
    padding-right: 80px;
  }
}
.contact1-content__formCtrl span {
  color: var(--title);
  font-weight: 400;
  text-transform: capitalize;
}
.contact1-content__formCtrl input {
  border: 1px solid rgba(38, 38, 38, 0.1);
  color: var(--title);
  background: var(--white);
  padding: 15px 20px;
  border-radius: 6px;
  width: 100%;
}
.contact1-content__formCtrl input::placeholder {
  color: var(--title);
}
.contact1-content__formCtrl textarea {
  border: 1px solid rgba(38, 38, 38, 0.1);
  color: var(--title);
  background: var(--white);
  padding: 18px 20px;
  border-radius: 5px;
  padding-bottom: 150px;
  height: 178px;
  padding: 18px 20px;
  width: 100%;
  outline: none;
}
.contact1-content__formCtrl textarea::placeholder {
  color: var(--title);
}
.contact1-thumb {
  position: relative;
}
.contact1-thumb__one {
  position: relative;
}
.contact1-thumb__one img {
  border-radius: 20px;
}
.contact1-thumb__shape {
  position: absolute;
  top: -5px;
  left: 16px;
}
@media (min-width: 375px) {
  .contact1-thumb__shape {
    top: -9px;
    right: -50px;
  }
}
@media (min-width: 450px) {
  .contact1-thumb__shape {
    top: -9px;
    right: -25px;
  }
}
@media (min-width: 768px) {
  .contact1-thumb__shape {
    top: 0px;
    right: 90px;
  }
}
@media (min-width: 992px) {
  .contact1-thumb__shape {
    top: 9px;
    right: 36%;
  }
}
@media (min-width: 1200px) {
  .contact1-thumb__shape {
    top: 0px;
    right: -3px;
  }
}
@media (min-width: 1400px) {
  .contact1-thumb__shape {
    top: 6px;
    right: 36px;
  }
}
.contact1-thumb__shape img {
  width: 50%;
}
@media (min-width: 375px) {
  .contact1-thumb__shape img {
    width: 25%;
  }
}
@media (min-width: 450px) {
  .contact1-thumb__shape img {
    width: 27%;
  }
}
@media (min-width: 768px) {
  .contact1-thumb__shape img {
    max-width: 100%;
  }
}



.contact3-card {
  padding: 35px 30px;
  border-radius: 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  gap: 25px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.contact3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e61d25, #c41e3a, #e61d25);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(230, 29, 37, 0.3);
}

.contact3-card:hover::before {
  transform: scaleX(1);
}
@media (max-width: 991px) {
  .contact3-card {
    padding: 25px 20px;
    gap: 18px;
    border-radius: 20px;
  }
  
  .contact3-card__icon {
    width: 70px;
    height: 70px;
    padding: 18px;
    border-radius: 15px;
  }
  
  .contact3-card__info {
    font-size: 20px;
  }
  
  .contact3-card__info a {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact3-card {
    padding: 20px 15px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .contact3-card__icon {
    width: 65px;
    height: 65px;
    padding: 16px;
  }
  
  .contact3-card__content {
    align-items: center;
  }
  
  .contact3-card:hover .contact3-card__content {
    transform: translateY(5px);
  }
}
.contact3-card__icon {
  display: flex;
  width: 85px;
  height: 85px;
  padding: 22px;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 29, 37, 0.1) 0%, rgba(196, 30, 58, 0.08) 100%);
  margin-bottom: 0;
  flex-shrink: 0;
  border: 2px solid rgba(230, 29, 37, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.contact3-card__icon i {
  font-size: 28px;
  color: #e61d25;
  transition: all 0.3s ease;
  font-weight: 300;
}

.contact3-card__icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #e61d25, #c41e3a);
  border-radius: 18px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact3-card:hover .contact3-card__icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(230, 29, 37, 0.3);
  box-shadow: 0 10px 30px rgba(230, 29, 37, 0.2);
}

.contact3-card:hover .contact3-card__icon i {
  color: #ffffff;
  transform: scale(1.1);
}

.contact3-card:hover .contact3-card__icon::after {
  opacity: 1;
}
.contact3-card__icon svg path {
  fill: var(--title);
}
@media (max-width: 991px) {
  .contact3-card__icon {
    width: 60px;
    height: 60px;
    padding: 16px;
  }
}
.contact3-card__label {
  color: #6c757d;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.contact3-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact3-card:hover .contact3-card__content {
  transform: translateX(5px);
}
.contact3-card__info {
  color: #2c3e50;
  font-family: "Nunito", serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  transition: color 0.3s ease;
}

.contact3-card:hover .contact3-card__info {
  color: #e61d25;
}
.contact3-card__info a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact3-card__info a:hover {
  color: #e61d25;
  text-decoration: none;
}

.contact3-card__info a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e61d25, #c41e3a);
  transition: width 0.3s ease;
}

.contact3-card__info a:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .contact3-card__info {
    font-size: 20px;
  }
}
.contact3-card:hover .contact3-card__icon {
  background: var(--theme);
}
.contact3-card:hover .contact3-card__icon svg g rect {
  fill: var(--white);
  stroke: var(--white);
}
.contact3-card:hover .contact3-card__icon svg path {
  fill: var(--white);
}

/* 11. Blog */
.blog1-card {
  border-radius: 20px;
  background: var(--gray1);
}
.blog1-card__thumb {
  border-radius: 20px 20px 0px 0px;
}
.blog1-card__thumb img {
  border-radius: 20px 20px 0px 0px;
  width: 100%;
}
.blog1-card-content {
  padding: 18px 28px 26px;
}
.blog1-card-content-meta {
  padding-bottom: 6px;
}
.blog1-card-content-meta__date {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.blog1-card-content__title {
  padding-bottom: 36px;
}
.blog1-card-content__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog2-card {
  display: flex;
  border-radius: 20px;
  background: var(--gray1);
}
.blog2-card:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .blog2-card {
    flex-direction: column;
  }
}
.blog2-card__thumb {
  border-radius: 20px 0px 0px 20px;
  overflow: hidden;
  flex: none;
}
.blog2-card__thumb img {
  border-radius: 20px 0px 0px 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .blog2-card__thumb {
    border-radius: 20px;
  }
}
.blog2-card-content {
  padding: 36px;
}
@media (max-width: 767px) {
  .blog2-card-content {
    padding: 20px;
  }
}
.blog2-card-content-meta {
  display: flex;
  gap: 12px;
  padding-bottom: 7px;
}
.blog2-card-content-meta__date {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blog2-card-content-meta__dot {
  width: 4px;
  height: 4px;
}
.blog2-card-content-meta__category {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.blog2-card-content__title {
  padding-bottom: 75px;
}
@media (max-width: 767px) {
  .blog2-card-content__title {
    padding-bottom: 30px;
  }
}
.blog2-card-content__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog3-card {
  border-radius: 20px;
}
.blog3-card__thumb {
  border-radius: 20px 20px 0px 0px;
}
.blog3-card__thumb img {
  border-radius: 20px 20px 0px 0px;
}
.blog3-card-content-meta {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 6px;
}
.blog3-card-content-meta__date {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.blog3-card-content-meta__dot {
  width: 4px;
  height: 4px;
}
.blog3-card-content-meta__category {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.blog3-card-content__title {
  padding-bottom: 25px;
}
.blog3-card-content__link {
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: underline;
}

.blog4-card {
  padding-bottom: 52px;
}
.blog4-card__thumb {
  border-radius: 20px;
}
.blog4-card__thumb img {
  border-radius: 20px;
}
.blog4-card-content-meta {
  display: flex;
  gap: 25px;
  padding-top: 24px;
  padding-bottom: 6px;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 500px) {
  .blog4-card-content-meta {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.blog4-card-content-meta img {
  padding-right: 6px;
}
.blog4-card-content__title {
  padding-bottom: 15px;
}
.blog4-card-content__desc {
  padding-right: 5px;
}

.blog5-details {
  padding-bottom: 52px;
}
.blog5-details__thumb {
  border-radius: 20px;
}
.blog5-details__thumb img {
  border-radius: 20px;
}
.blog5-details-content-meta {
  display: flex;
  gap: 25px;
  padding-top: 24px;
  padding-bottom: 6px;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 500px) {
  .blog5-details-content-meta {
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.blog5-details-content-meta img {
  padding-right: 6px;
}
.blog5-details-content__title {
  padding-bottom: 15px;
}
.blog5-details-content__desc {
  padding-right: 5px;
}
.blog5-details-content__desc:not(:last-child) {
  padding-bottom: 25px;
}
.blog5-details-content__quote {
  display: flex;
  padding: 28px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  border-radius: 20px;
  margin-top: 60px;
  background: var(--theme);
  margin-bottom: 38px;
  color: #ffffff;
}
@media (max-width: 500px) {
  .blog5-details-content__quote {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.blog5-details-content__title2 {
  padding-bottom: 18px;
}
.blog5-details-content__desc2 {
  padding-bottom: 25px;
}
.blog5-details-content-thumb {
  display: flex;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 37px;
}
.blog5-details-content-thumb img {
  border-radius: 20px;
}
.blog5-details-tagShare {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
  padding: 10px 0;
}
@media (max-width: 767px) {
  .blog5-details-tagShare {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.blog5-details-tagShare-tags__title {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  padding-right: 5px;
}
.blog5-details-tagShare-tags__name {
  padding-right: 10px;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: none;
}
.blog5-details-tagShare-shareicon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog5-details-tagShare-shareicon__title {
  padding-top: 10px;
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  padding-right: 5px;
}
.blog5-details-profile {
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767px) {
  .blog5-details-profile {
    flex-direction: column;
    align-items: start;
  }
}
.blog5-details-profile__thumb {
  border-radius: 20px;
}
.blog5-details-profile__thumb img {
  border-radius: 20px;
  max-width: fit-content;
}
.blog5-details-profile-content {
  padding-right: 22px;
}
.blog5-details-profile-content__name {
  padding-bottom: 15px;
}
.blog5-details-comment__title {
  padding-bottom: 30px;
}
.blog5-details-comment-profile {
  display: flex;
  gap: 24px;
}
@media (max-width: 500px) {
  .blog5-details-comment-profile {
    flex-direction: column;
  }
}
.blog5-details-comment-profile:nth-of-type(2) {
  padding-bottom: 35px;
  padding-right: 17px;
}
.blog5-details-comment-profile:nth-of-type(3) {
  padding-left: 111px;
}
@media (max-width: 767px) {
  .blog5-details-comment-profile:nth-of-type(3) {
    padding-left: 0px;
  }
}
.blog5-details-comment-profile__thumb {
  border-radius: 20px;
}
.blog5-details-comment-profile__thumb img {
  border-radius: 20px;
  max-width: fit-content;
}
.blog5-details-comment-profile-content__desc {
  padding-bottom: 14px;
}
.blog5-details-comment-profile-content__author {
  padding-bottom: 5px;
}
.blog5-details-comment-profile-content__date {
  padding-bottom: 8px;
}
.blog5-details-comment-profile-content__reply {
  display: flex;
  color: var(--theme);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
}
.blog5-details-comment-profile-content__reply span {
  cursor: pointer;
}
.blog5-details-comment-profile-content__reply span img {
  padding-right: 5px;
}
.blog5-details-comment-form {
  padding-top: 78px;
}
@media (max-width: 767px) {
  .blog5-details-comment-form {
    padding-top: 40px;
  }
}
.blog5-details-comment-form__title {
  padding-bottom: 13px;
}
.blog5-details-comment-form__desc {
  padding-bottom: 30px;
}

/* 12. Pricing */
.pricing1-item {
  position: relative;
}
.pricing1-item:not(:last-child) {
  padding-bottom: 48px;
}
.pricing1-item-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 20px;
  background: var(--white);
  gap: 40px;
  padding: 30px 40px;
}
@media (min-width: 992px) {
  .pricing1-item-card {
    gap: 78px;
    padding: 49px 60px 51px;
  }
}
.pricing1-item-card--bg {
  background: var(--gray1);
}
.pricing1-item-card-price__value {
  color: var(--title);
  text-align: right;
  font-family: "Nunito", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 66px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
.pricing1-item-card-price__unit {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pricing1-item-card-content {
  flex: 1;
}
@media (min-width: 1200px) {
  .pricing1-item-card-content {
    padding-right: 120px;
  }
}
@media (min-width: 1400px) {
  .pricing1-item-card-content {
    padding-right: 225px;
  }
}
.pricing1-item-card-content__title {
  color: var(--theme);
  text-transform: uppercase;
  padding-bottom: 16px;
}
.pricing1-item__thumb {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -9%;
  right: 23%;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.pricing1-item__thumb img {
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .pricing1-item__thumb {
    display: none;
  }
}
.pricing1-item:hover .pricing1-item__thumb {
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.pricing1-item .theme-btn.style1 {
  background: var(--title);
  border: none;
}
.pricing1-item .theme-btn.style1 a {
  color: var(--white) !important;
  display: inline-block;
}
.pricing1-item .theme-btn.style1 i {
  margin-left: 6px;
}
.pricing1-item .theme-btn.style1:before {
  transition-duration: 800ms;
  position: absolute;
  width: 210%;
  height: 290%;
  content: "";
  top: 162%;
  left: 50%;
  background: var(--theme);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%) rotate(-8deg);
  border-radius: 80%;
  z-index: -1;
}
.pricing1-item .theme-btn.style1:hover {
  color: var(--white) !important;
  border: none;
}
.pricing1-item .theme-btn.style1:hover.gt-btn-icon-1::after {
  color: var(--theme);
}
.pricing1-item .theme-btn.style1:hover:before {
  top: -96%;
}
.pricing1-item:hover .theme-btn.style1 {
  background: var(--theme);
}

/* 13. WCU */
.wcu1-thumb {
  position: relative;
}
.wcu1-thumb__one {
  position: relative;
  z-index: 9;
}
.wcu1-thumb__one img {
  border-radius: 20px;
}
.wcu1-thumb__two {
  padding-top: 0;
  position: relative;
  z-index: 9;
}
@media (min-width: 576px) {
  .wcu1-thumb__two {
    padding-top: 180px;
  }
}
.wcu1-thumb__two img {
  border-radius: 20px;
}
.wcu1-thumb__shape1 {
  display: none;
}
@media (min-width: 576px) {
  .wcu1-thumb__shape1 {
    display: block;
    position: absolute;
    top: 112px;
    right: 35px;
    left: 35px;
    z-index: 9;
  }
}
@media (min-width: 768px) {
  .wcu1-thumb__shape1 {
    position: absolute;
    top: 105px;
    right: 35px;
    left: 44px;
    z-index: 9;
  }
}
@media (min-width: 992px) {
  .wcu1-thumb__shape1 {
    position: absolute;
    top: 123px;
    right: 35px;
    left: 44px;
    z-index: 9;
  }
}
@media (min-width: 1200px) {
  .wcu1-thumb__shape1 {
    position: absolute;
    top: 100px;
    right: 50px;
    z-index: 9;
  }
}
.wcu1-thumb__shape2 {
  display: none;
}
@media (min-width: 576px) {
  .wcu1-thumb__shape2 {
    display: block;
    position: absolute;
    top: 62px;
    left: 15px;
    right: 15px;
  }
}
@media (min-width: 768px) {
  .wcu1-thumb__shape2 {
    position: absolute;
    top: 62px;
    left: 22px;
    right: 15px;
  }
}
@media (min-width: 992px) {
  .wcu1-thumb__shape2 {
    position: absolute;
    top: 83px;
    left: 22px;
    right: 15px;
  }
}
@media (min-width: 1200px) {
  .wcu1-thumb__shape2 {
    position: absolute;
    top: 50px;
    left: 25px;
  }
}
.wcu1-thumb__shape3 {
  display: none;
}
@media (min-width: 576px) {
  .wcu1-thumb__shape3 {
    display: block;
    position: absolute;
    bottom: -112px;
    right: 15px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .wcu1-thumb__shape3 {
    display: block;
    position: absolute;
    bottom: -112px;
    right: 15px;
    left: 22px;
  }
}
@media (min-width: 992px) {
  .wcu1-thumb__shape3 {
    display: block;
    position: absolute;
    bottom: -95px;
    right: 15px;
    left: 22px;
  }
}
@media (min-width: 1200px) {
  .wcu1-thumb__shape3 {
    position: absolute;
    bottom: -129px;
    left: 22px;
    right: 22px;
  }
}
.wcu1-thumb__shape4 {
  display: none;
}
@media (min-width: 576px) {
  .wcu1-thumb__shape4 {
    display: block;
    position: absolute;
    bottom: -67px;
    right: 35px;
    left: 35px;
  }
}
@media (min-width: 768px) {
  .wcu1-thumb__shape4 {
    position: absolute;
    bottom: -74px;
    right: 35px;
    left: 44px;
  }
}
@media (min-width: 992px) {
  .wcu1-thumb__shape4 {
    position: absolute;
    bottom: -57px;
    right: 35px;
    left: 44px;
  }
}
@media (min-width: 1200px) {
  .wcu1-thumb__shape4 {
    position: absolute;
    bottom: -75px;
    right: 55px;
  }
}
.wcu1-content {
  padding-top: 66px;
}
@media (max-width: 1199px) {
  .wcu1-content {
    padding-top: 35px;
  }
}
.wcu1-content-checklist {
  padding-top: 27px;
  padding-bottom: 20px;
}
.wcu1-content-checklist-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 20px;
}
.wcu1-content-checklist-item__text {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

/* 14. Team */
.team1-card {
  position: relative;
}
@media (max-width: 575px) {
  .team1-card {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.team1-card__title {
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
}
.team1-card__desc {
  color: var(--title);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-top: 2px;
}
.team1-card-thumb {
  position: relative;
}
.team1-card-thumb__one {
  border-radius: 20px;
  background: rgb(255, 248, 246);
}
.team1-card-thumb__one img {
  border-radius: 20px;
}
.team1-card-thumb__icon {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.team1-card-thumb__icon img {
  background: #FFF;
  padding: 12px;
  border-radius: 12px;
}
.team1-card-thumb:hover .team1-card-thumb__one {
  transition: all 0.4s ease-in-out;
  background: var(--theme);
  border-radius: 20px;
}
.team1-card-thumb:hover .team1-card-thumb__one img {
  border-radius: 20px;
}
.team1-card-thumb:hover .team1-card-thumb__icon {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

.team2-card {
  position: relative;
}
.team2-card-box {
  position: relative;
}
.team2-card-box__bg {
  border-radius: 20px;
  background: var(--gray1);
  width: 306px;
  height: 350px;
}
.team2-card-box-thumb__one {
  position: absolute;
  top: 24px;
  right: -2px;
  border-radius: 20px;
}
.team2-card-box-thumb__one img {
  border-radius: 20px;
  width: 282px;
  height: 350px;
}
.team2-card-box-thumb__icon {
  visibility: visible;
  opacity: 1;
  position: absolute;
  bottom: -24px;
  right: -31px;
  transform: translateX(-53%);
  z-index: 10;
  display: flex;
  width: 54px;
  height: 54px;
  padding: 18px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0px 0px 20px 0px;
  background: var(--theme);
}
.team2-card-box-thumb__icon img {
  border-radius: 0px 0px 20px 0px;
  max-width: fit-content;
}
.team2-card-box-thumb:hover .team2-card-box-thumb__icon {
  background: var(--title);
}
.team2-card-box:hover .team2-card-box__bg {
  background: var(--theme);
}
.team2-card__title {
  text-transform: uppercase;
  text-align: center;
  padding-top: 48px;
}
.team2-card__desc {
  color: var(--title);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  padding-top: 2px;
}

.team3__thumb {
  border-radius: 34.379px;
}
.team3__thumb img {
  border-radius: 34.379px;
}
.team3-content {
  padding-left: 0px;
}
@media (min-width: 1200px) {
  .team3-content {
    padding-left: 84px;
  }
}
.team3-content .section-top__title {
  padding-bottom: 10px;
}
.team3-content .section-top__subtitle {
  margin-bottom: 25px;
}
.team3-content .section-top__desc {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.team3-content-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 9px;
}
.team3-content-contact-item__text {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.team3-content-social {
  padding-top: 11px;
  display: flex;
  gap: 8px;
}
.team3-content-social__item a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--title);
}
.team3-content-social__item a:hover {
  background: var(--theme);
}
.team3-content-form {
  padding-top: 78px;
}
@media (max-width: 767px) {
  .team3-content-form {
    padding-top: 40px;
  }
}
.team3-content-form__title {
  padding-bottom: 13px;
}
.team3-content-form__desc {
  padding-bottom: 30px;
}

/* 15. FAQ */
/*----------------------------------------------
    # Faq style here
----------------------------------------------*/
.faq1-content {
  position: relative;
}
.faq1-content__thumb {
  border-radius: 20px;
}
.faq1-content__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, #262626 121%);
}
.faq1-content__thumb img {
  border-radius: 20px;
  width: 100%;
}
.faq1-content__phone {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 38px;
  left: 6%;
}
.faq1-content__phone h3 {
  color: var(--white);
}

.faq-content {
  margin-top: 35px;
}
.faq-content .accordion-item {
  background-color: var(--gray1);
  border: none;
  border-top: 1px solid rgba(38, 38, 38, 0.3);
}
.faq-content .accordion-item:last-child {
  border-bottom: 1px solid rgba(38, 38, 38, 0.3);
}
.faq-content .accordion-item:not(:last-child) {
  border-bottom: none;
}
.faq-content .accordion-item .accordion-header .accordion-button {
  padding: 25px 0px 10px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
  color: var(--title);
  background-color: var(--gray1);
  font-size: 20px;
  font-family: "Nunito", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}
.faq-content .accordion-item .accordion-header .accordion-button:after {
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  background-image: url(../images/icon/plus-icon.svg);
  color: var(--theme);
}
.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed):after {
  font-weight: 400;
  color: var(--theme);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  padding: 25px 0px;
  color: var(--title);
}
.faq-content .accordion-item .accordion-header .accordion-button--bg {
  font-size: 24px;
  background-color: var(--white);
}
.faq-content .accordion-item .accordion-collapse {
  border: none;
}
.faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-right: 30px;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 23px;
  color: var(--title2);
  font-family: "Nunito", serif;
  font-size: 16px;
  background-color: var(--gray1);
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 1399px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 30px;
  }
}
.faq-content .accordion-item .accordion-collapse .accordion-body--bg {
  background-color: var(--white);
}

/* 16. Timeline */
.timeline1-wrap {
  position: relative;
}
.timeline1-wrap-step {
  position: relative;
  z-index: 9;
  text-align: center;
}
.timeline1-wrap-step__numb {
  color: var(--title);
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.timeline1-wrap-step__icon {
  padding-bottom: 17px;
}
.timeline1-wrap-step__title {
  padding-bottom: 14px;
}
.timeline1-wrap-step__desc {
  color: var(--title);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.timeline1-wrap__shape {
  display: none;
}
@media (min-width: 992px) {
  .timeline1-wrap__shape {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 37%;
    z-index: -9;
  }
}
@media (min-width: 1200px) {
  .timeline1-wrap__shape {
    left: 61px;
    bottom: 31%;
  }
}
@media (min-width: 1400px) {
  .timeline1-wrap__shape {
    left: 150px;
    bottom: 31%;
  }
}

/* 17. Error */
.error__thumb {
  padding-bottom: 30px;
}
.error-content {
  max-width: 585px;
  text-align: center;
}
.error-content__text h6 {
  color: var(--title);
  text-align: center;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  text-transform: none;
}

/* 18. Footer */
/*----------------------------------------------
    # Footer style here
----------------------------------------------*/
.footer1 {
  position: relative;
}
.footer1-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer1-wrapper-logoInfo__logo {
  padding-bottom: 15px;
}
.footer1-wrapper-logoInfo__desc {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.footer1-wrapper-logoInfo-social {
  padding-top: 23px;
  display: flex;
  gap: 8px;
}
.footer1-wrapper-logoInfo-social__item a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--white);
}
.footer1-wrapper-logoInfo-social__item a:hover {
  background: var(--theme);
}
.footer1-wrapper-logoInfo-social__item a:hover svg path {
  fill: var(--white);
}
@media (min-width: 1200px) {
  .footer1-wrapper-link {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer1-wrapper-link {
    padding-left: 60px;
  }
}
.footer1-wrapper-link__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer1-wrapper-link-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer1-wrapper-link-list__item a {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer1-wrapper-link-list__item a:hover {
  color: var(--gray1);
}
@media (min-width: 1200px) {
  .footer1-wrapper-service {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer1-wrapper-service {
    padding-left: 67px;
  }
}
.footer1-wrapper-service__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer1-wrapper-service-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer1-wrapper-service-list__item a {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer1-wrapper-service-list__item a:hover {
  color: var(--gray1);
}
.footer1-wrapper-subscribe {
  border-radius: 10px;
  background: rgba(254, 254, 254, 0.1);
  padding: 38px 25px;
  height: 200px;
}
@media (min-width: 1200px) {
  .footer1-wrapper-subscribe {
    margin-left: 85px;
  }
}
.footer1-wrapper-subscribe__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
  letter-spacing: -0.4px;
  text-transform: uppercase;
  padding-bottom: 26px;
}
.footer1-wrapper-subscribe-form {
  position: relative;
}
.footer1-wrapper-subscribe-form__input {
  border-radius: 6px;
  background: var(--white);
  width: 100%;
  height: 44px;
  padding: 21px 16px;
  border: none;
  outline: none;
  box-sizing: border-box;
  color: var(--title2);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer1-wrapper-subscribe-form__button {
  position: absolute;
  right: 2px;
  top: 2px;
}
.footer1-wrapper-subscribe-form__button img {
  border-radius: 4px;
  background: var(--theme);
  padding: 8px;
}
.footer1-wrapper-subscribe-form__button :hover {
  background: var(--title);
}
.footer1__verticalLine {
  position: absolute;
  background: rgba(254, 254, 254, 0.3);
  width: 1px;
  height: 470px;
  top: 0;
  display: none;
}
@media (min-width: 1400px) {
  .footer1__verticalLine {
    display: block;
    left: 34.7%;
  }
}
@media (min-width: 1600px) {
  .footer1__verticalLine {
    left: 37%;
  }
}
@media (min-width: 1700px) {
  .footer1__verticalLine {
    left: 38.7%;
  }
}
.footer1-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(254, 254, 254, 0.3);
  padding-top: 21px;
}
@media (min-width: 768px) {
  .footer1-bottom {
    flex-direction: row;
  }
}
.footer1-bottom p {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 768px) {
  .footer1-bottom p {
    font-size: 18px;
  }
}
.footer1-bottom__links a {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media (min-width: 768px) {
  .footer1-bottom__links a {
    font-size: 18px;
  }
}
.footer1-bottom__links a:not(:last-child) {
  padding-right: 20px;
}
.footer1-bottom__links a:hover {
  color: white;
}

.footer2 {
  position: relative;
}
.footer2-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer2-wrapper-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 80px;
}
@media (min-width: 576px) {
  .footer2-wrapper-content {
    gap: 35px;
  }
}
@media (min-width: 768px) {
  .footer2-wrapper-content {
    flex-direction: row;
    gap: 100px;
  }
}
@media (min-width: 992px) {
  .footer2-wrapper-content {
    padding-bottom: 114px;
  }
}
.footer2-wrapper-content__text {
  padding-bottom: 14px;
}
.footer2-wrapper-content__text h2 {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer2-wrapper-content__text h2 {
    font-size: 60px;
    line-height: 86px;
  }
}
@media (min-width: 1200px) {
  .footer2-wrapper-content__text h2 {
    font-size: 80px;
    line-height: 86px;
  }
}
.footer2-wrapper-content__text p {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer2-wrapper-content__cta {
  display: flex;
  justify-content: end;
  align-items: center;
}
.footer2-wrapper-content__cta a {
  color: var(--white);
  background-color: #e61d25;
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 180px;
  height: 180px;
}
.footer2-wrapper-logoInfo__logo {
  padding-bottom: 15px;
}
.footer2-wrapper-logoInfo__desc {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.footer2-wrapper-logoInfo-social {
  padding-top: 23px;
  display: flex;
  gap: 8px;
}
.footer2-wrapper-logoInfo-social__item a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  background: var(--white);
}
.footer2-wrapper-logoInfo-social__item a:hover {
  background: var(--theme);
}
.footer2-wrapper-logoInfo-social__item a:hover svg path {
  fill: var(--white);
}
@media (min-width: 1200px) {
  .footer2-wrapper-link {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer2-wrapper-link {
    padding-left: 100px;
  }
}
.footer2-wrapper-link__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer2-wrapper-link-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer2-wrapper-link-list__item a {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer2-wrapper-link-list__item a:hover {
  color: var(--gray1);
}
@media (min-width: 1200px) {
  .footer2-wrapper-service {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer2-wrapper-service {
    padding-left: 38px;
  }
}
.footer2-wrapper-service__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer2-wrapper-service-list__item:not(:last-child) {
  padding-bottom: 13px;
}
.footer2-wrapper-service-list__item a {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
.footer2-wrapper-service-list__item a:hover {
  color: var(--gray1);
}
@media (min-width: 1200px) {
  .footer2-wrapper-contact {
    padding-left: 44px;
  }
}
@media (min-width: 1400px) {
  .footer2-wrapper-contact {
    padding-left: 80px;
  }
}
.footer2-wrapper-contact__title {
  color: #FFF;
  font-family: "Nunito", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.footer2-wrapper-contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer2-wrapper-contact-list__item:not(:last-child) {
  padding-bottom: 13px;
}

.footer2-wrapper-contact-list__item i {
  color: #e61d25;
  font-size: 16px;
  margin-top: 3px;
  min-width: 16px;
}

.footer2-wrapper-contact-list__item span {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer2-wrapper-contact-list__item a {
  color: var(--gray1);
  font-family: "Nunito", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
}

.footer2-wrapper-contact-list__item a:hover {
  color: #e61d25;
}
.footer2-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(254, 254, 254, 0.3);
  padding-top: 21px;
}
.footer2-bottom p {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
@media (min-width: 768px) {
  .footer2-bottom p {
    font-size: 18px;
  }
}

.footer3 {
  position: relative;
}
.footer3-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.footer3-wrapper-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0px;
  padding-bottom: 30px;
}
@media (min-width: 576px) {
  .footer3-wrapper-content {
    gap: 35px;
    padding-bottom: 45px;
  }
}
@media (min-width: 768px) {
  .footer3-wrapper-content {
    gap: 0px;
  }
}
@media (min-width: 992px) {
  .footer3-wrapper-content {
    flex-direction: row;
    padding-bottom: 20px;
  }
}
.footer3-wrapper-content__text {
  padding-bottom: 14px;
}
.footer3-wrapper-content__text h2 {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer3-wrapper-content__text h2 {
    font-size: 60px;
    line-height: 86px;
  }
}
@media (min-width: 1200px) {
  .footer3-wrapper-content__text h2 {
    font-size: 100px;
    line-height: 106px;
  }
}
.footer3-wrapper-content__text p {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer3-wrapper-content-cta {
  max-width: 500px;
  padding-top: 10px;
}
.footer3-wrapper-content-cta__text {
  color: var(--gray1);
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  padding-bottom: 35px;
}
.footer3-wrapper-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(254, 254, 254, 0.3);
  padding-bottom: 21px;
}
@media (min-width: 992px) {
  .footer3-wrapper-bottom {
    flex-direction: row;
    gap: 15px;
  }
}
.footer3-wrapper-bottom__menu {
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer3-wrapper-bottom__menu {
    padding-bottom: 0px;
  }
}
.footer3-wrapper-bottom__menu ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .footer3-wrapper-bottom__menu ul li {
    margin-right: 38px;
  }
}
.footer3-wrapper-bottom__menu ul li a {
  display: inline-block;
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.footer3-wrapper-bottom__menu ul li a i {
  margin-left: 8px;
}
.footer3-wrapper-bottom__links a {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
@media (min-width: 768px) {
  .footer3-wrapper-bottom__links a {
    font-size: 18px;
  }
}
.footer3-wrapper-bottom__links a:not(:last-child) {
  padding-right: 40px;
}
.footer3-wrapper-bottom__links a:hover {
  color: white;
}
.footer3-wrapper-logoInfo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer3-wrapper-logoInfo {
    flex-direction: row;
  }
}
.footer3-wrapper-logoInfo p {
  color: var(--white);
  font-family: "Nunito", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
.footer3-wrapper-logoInfo-social {
  display: flex;
  gap: 8px;
}
.footer3-wrapper-logoInfo-social__item a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--white);
}
.footer3-wrapper-logoInfo-social__item a:hover {
  background: var(--theme);
}
.footer3-wrapper-logoInfo-social__item a:hover i {
  color: var(--white);
}

.footer3-wrapper-logoInfo-social__item a i {
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
}

/* ===========================================
   Dropdown Icon Styling - Removed
=========================================== */

/* ===========================================
   Patidar Agro Section Styles
=========================================== */
.patidar-agro {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.patidar-background {
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  bottom: 0;
  background-image: url('../images/banner1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid #dc3545;
}



.patidar-content {
  position: relative;
  z-index: 3;
  background: #ffff00;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.patidar-icon {
  text-align: center;
  margin-bottom: 30px;
}

.jar-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.patidar-text {
  color: #131212;
}

.gujarati-text {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #131212;
  text-align: center;
 
}

.company-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #131212;
  text-align: center;
 
}

.btn-wrapper {
  text-align: center;
}

.btn-wrapper .theme-btn {
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 400;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-wrapper .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===========================================
   Product Tabs Section Styles
=========================================== */
.product-tabs {
  background: #b9bbbe;
}

.product-tabs-nav {
  
  text-align: center;
}

.product-tabs-nav .nav-tabs {
  border: none;
  gap: 10px;
  justify-content: center;
  display: flex;
}

.product-tabs-nav .nav-link {
  border: none;
  background: transparent;
  color: #6c757d;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 25px 25px 0 0;
  transition: all 0.3s ease;
  position: relative;
  min-width: 150px;
  text-align: center;
}

.product-tabs-nav .nav-link:hover {
  color: #f3604c;
  background: rgba(243, 96, 76, 0.1);
}

.product-tabs-nav .nav-link.active {
  color: #fff;
  background: #f3604c;
  box-shadow: 0 4px 15px rgba(243, 96, 76, 0.3);
}

.product-tabs-nav .nav-link i {
  margin-right: 8px;
}

/* Product Slider Styles */
.product-slider-container {
  position: relative;
  padding: 20px 0;
}

.product-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-slider {
  display: flex;
  gap: 31px;
  transition: transform 0.3s ease;
  padding: 0 20px 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.product-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.product-item {
  flex: 0 0 auto;
  width: 290px;
  max-width: 290px;
  margin-right: 0;
}

/* Slider Navigation */
.slider-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #f3604c;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(243, 96, 76, 0.3);
  z-index: 100;
}

.slider-nav-btn:hover {
  background: #d54a3a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(243, 96, 76, 0.4);
}

.slider-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: -65px;
}

.next-btn {
  right: -55px;
}



.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
  outline: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 10px;
  text-align: center;
}

.product-card__title {
  font-size: 18px;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 14px;
  line-height: 1.3;
  text-align: center;
}

.product-card__sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-badge {
  background: #f3604c;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
}

.tab-content {
  min-height: 400px;
}

.tab-pane {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes submenuGlow {
  0% {
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  }
  50% {
    box-shadow: 0px 8px 25px rgba(220, 53, 69, 0.3);
  }
  100% {
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes submenuSlideLeft {
  0% {
    transform: translateX(-10px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===========================================
   About Us Intro Section Styles
=========================================== */
.about-intro-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.about-intro-content {
  max-width: 100%;
}

.about-intro-title {
  font-size: 42px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.about-intro-text {
  text-align: left;
  max-width: 100%;
}

.about-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-intro-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-intro-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .about-intro-text p {
    font-size: 15px;
  }
}

/* ===========================================
   Footer Read More Link Styles
=========================================== */
.read-more-link {
  color: #e61d25;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.read-more-link:hover {
  color: #ffffff;
  text-decoration: underline;
  transform: translateX(2px);
}

/* ===========================================
   Domestic Page Custom Styles
=========================================== */

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #fef7f0 0%, #fef7f0 75%, #f8ef83   75%, #f8ef83   80%);
  
}

.hero-top {
  background: transparent;
  padding: 80px 0 0px;
  position: relative;
  z-index: 2;
}

.hero-bottom {
  background: #f8ef83  ;
  padding: 0px 0 0px;
  position: relative;
}

.hero-content {
  margin-bottom: 60px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 400;
  color: #d32f2f;
  margin-bottom: 20px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  text-align: center;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 20px;
}

.main-hero-image {
  max-width: 75%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.main-hero-image:hover {
  transform: scale(1.02);
}

.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #ff6b35;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 50%, 50% 0, 25% 50%, 0 0);
  z-index: 1;
}

.chili-graphic {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.chili-graphic img {
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Product Categories */
.product-categories {
  background: #f8f9fa;
  padding: 80px 0;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 20px 20px;
  text-align: center;
 
  transition: box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-card:hover .category-icon img {
  transform: translateY(-8px);
}

.category-icon {
  position: relative;
  margin-bottom: 20px;
}

.category-icon img {
  width: 70%;
 
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.category-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin: 0;
}

/* Different background colors for each category */
.category-card:nth-child(1) {
  background: linear-gradient(177deg, #ffffff 0%, #fce4ec 100%) !important;
}

.category-card:nth-child(2) {
  background: linear-gradient(177deg, #e3f2fd 0%, #e1f5fe 100%) !important;
}

.category-card:nth-child(3) {
  background: linear-gradient(177deg, #e8f5e8 0%, #f1f8e9 100%) !important;
}

.category-card:nth-child(4) {
  background: linear-gradient(177deg, #fff8e1 0%, #fffde7 100%) !important;
}

.category-card:nth-child(5) {
  background: linear-gradient(177deg, #fce4ec 0%, #f3e5f5 100%) !important;
}

.category-card:nth-child(6) {
  background: linear-gradient(177deg, #fff3e0 0%, #fff8e1 100%) !important;
}

.category-card:nth-child(7) {
  background: linear-gradient(177deg, #e0f2f1 0%, #e8f5e8 100%) !important;
}

.category-card:nth-child(8) {
  background: linear-gradient(177deg, #e8eaf6 0%, #e3f2fd 100%) !important;
}

.category-card:nth-child(9) {
  background: linear-gradient(177deg, #f9fbe7 0%, #f0f4c3 100%) !important;
}

.category-card:nth-child(10) {
  background: linear-gradient(177deg, #fdf2f8 0%, #fcf4ff 100%) !important;
}

/* Product Tabs Section */
.product-tabs-section {
  background: #f8f4ee;
  padding: 80px 0;
}

.product-tabs-nav {
  margin: 50px 0 40px;
}

.product-tabs-nav .nav-pills {
  gap: 10px;
  flex-wrap: wrap;
}

.product-tabs-nav .nav-link {
  background: transparent;
  border: 2px solid #e0e0e0;
  color: #666;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-tabs-nav .nav-link:hover {
  border-color: #d32f2f;
  color: #d32f2f;
}

.product-tabs-nav .nav-link.active {
  background: #d32f2f;
  border-color: #d32f2f;
  color: white;
}

.product-card-tab {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card-tab .product-image {
  margin-bottom: 0px;
}

.product-card-tab .product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card-tab:hover .product-image img {
  transform: scale(1.05);
}

.product-card-tab h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-tab .product-sizes {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card-tab .size {
  background: transparent;
  color: #666;
  padding: 0;
  border-radius: 15px;
  font-size: 0.85rem;
}

.tab-content {
  min-height: auto;
}

/* Quality Section New Design */
.quality-section {
  background: #fff;
  padding: 0;
  min-height: 70vh;
}

.quality-video-container {
  height: 85vh;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-icon:hover {
  background: white;
  transform: scale(1.1);
}

.play-icon i {
  font-size: 24px;
  color: #d32f2f;
  margin-left: 5px;
}

.video-nav-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
  pointer-events: none;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.nav-arrow:hover {
  background: white;
  transform: scale(1.1);
}

.nav-arrow i {
  font-size: 16px;
  color: #333;
}

.quality-content-new {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.quality-content-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  background-size: 200px 200px, 300px 300px;
  opacity: 0.3;
}

.content-inner {
  position: relative;
  z-index: 3;
  text-align: left;
  color: white;
}

.hindi-text {
  margin-bottom: 0px;
  position: relative;
  z-index: 4;
  padding-top: 30px;
}

.hindi-text h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 5px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  font-family: 'Arial', sans-serif;
}

.english-text {
  margin-bottom: 25px;
  position: relative;
  z-index: 4;
  text-align: center;
    font-weight: 400;
}

.english-text h2 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 5px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.description {
  position: relative;
  z-index: 4;
}

.description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .quality-section {
    min-height: auto;
  }
  
  .quality-video-container,
  .quality-content-new {
    height: 50vh;
    min-height: 400px;
  }
  
  .hindi-text h1 {
    font-size: 2.8rem;
  }
  
  .english-text h2 {
    font-size: 1.8rem;
  }
  
  .content-inner {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hindi-text h1 {
    font-size: 2.2rem;
  }
  
  .english-text h2 {
    font-size: 1.5rem;
  }
  
  .play-icon {
    width: 60px;
    height: 60px;
  }
  
  .play-icon i {
    font-size: 18px;
  }
}

/* Statistics Section */
.statistics-section {
  background: #2c3e50;
  color: white;
  padding: 60px 0;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 400;
  color: #e74c3c;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ecf0f1;
}

/* Product List Section */
.product-list-section {
  padding: 80px 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 300px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 0px;
}

.product-info h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}

.product-sizes {
  margin-bottom: 10px;
}

.size {
  display: inline-block;
  background: #e74c3c;
  color: white;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-right: 5px;
  margin-bottom: 5px;
}

.product-category {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Quality Section */
.quality-section {
  background: #f8f9fa;
  padding: 0px 0;
}

.quality-content h2 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 20px;
}

.quality-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.quality-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Newsletter Section */
.newsletter-section {
  background: #d32f2f;
  color: white;
  padding: 60px 0;
}

.newsletter-content h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 15px 20px;
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 15px 30px;
  background: #333;
  border: none;
  font-weight: 400;
}

.newsletter-form .btn:hover {
  background: #555;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-image {
    bottom: -20px;
  }
  
  .main-hero-image {
    max-width: 85%;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .quality-content h2 {
    font-size: 2rem;
  }
  
  .newsletter-content h3 {
    font-size: 1.5rem;
  }
  
  .breadcrumb-heading h1 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-image {
    bottom: -15px;
  }
  
  .main-hero-image {
    max-width: 90%;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .quality-content h2 {
    font-size: 1.8rem;
  }
  
  .breadcrumb-heading h1 {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=main.css.map */

.mandala-art {
}

/* Highlighted Snacks Category Styles */
.highlighted-category {
    text-align: center;
    margin-top: 20px;
}

.snacks-box {
    display: inline-block;
    border: 2px solid #8B5CF6;
    border-radius: 8px;
    padding: 8px 16px;
    background: transparent;
    transition: all 0.3s ease;
}

.snacks-box:hover {
    background: #8B5CF6;
    color: white;
}

.snacks-text {
    color: #636363;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.snacks-box:hover .snacks-text {
    color: white;
}

/* Flours Tab Content Styles */
.flour-content {
    padding: 20px 0;
}

.flour-title {
    color: #8B5CF6;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.flour-divider {
    border: 1px solid #E5E7EB;
    margin: 20px 0 30px 0;
    opacity: 0.6;
}

.flour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flour-list li {
    color: #374151;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.flour-list li:before {
  content: "■";
  color: #d32f2f;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 6px;
}

.flour-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.circular-flour-image {
   
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.circular-flour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .flour-title {
        font-size: 2rem;
    }
    
    .circular-flour-image {
        width: 250px;
        height: 250px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .flour-title {
        font-size: 1.8rem;
    }
    
    .circular-flour-image {
        width: 200px;
        height: 200px;
    }
    
    .flour-list li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 18px;
    }
}

/* ===========================================
   About Us Page Styles
=========================================== */

/* About Us Page Background */
.about-page-wrapper {
    background: linear-gradient(135deg, #f8f6f2 0%, #f5f3ef 50%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
}

.about-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #f8f6f2 0%, #f5f3ef 100%);
    z-index: 1;
}

/* White Content Container */
.about-content-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* About Company Section */
.about-company {
    background: #ffffff;
}

.about-company-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-company-content {
    padding: 40px 30px;
}

.about-company-content .section-top__title {
    color: #333;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
}

.about-company-content .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.about-company-content .section-top__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.about-company-content .section-top__desc strong {
    color: #ff6b35;
    font-weight: 400;
}

/* Leadership Section */
.leadership {
    background: #f8f9fa;
}

.leadership .section-top__title {
    color: #333;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

.leadership .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.leadership .section-top__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.leadership-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leadership-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.leadership-card__icon i {
    font-size: 32px;
    color: #fff;
}

.leadership-card__title {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.leadership-card__desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Products & Capacity Section */
.products-capacity {
    background: #ffffff;
}

.products-capacity .section-top__title {
    color: #333;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
}

.products-capacity .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.capacity-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.capacity-stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.capacity-stat__number {
    font-size: 36px;
    font-weight: 400;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 8px;
}

.capacity-stat__label {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

.products-capacity-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Global Presence Section */
.global-presence {
    background: #f8f9fa;
}

.global-presence .section-top__title {
    color: #333;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
}

.global-presence .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.global-presence .section-top__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.global-presence-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.global-presence-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.global-presence-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.global-presence-card__icon i {
    font-size: 24px;
    color: #fff;
}

.global-presence-card__title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

/* Vision Section */
.vision-section {
    background: #ffffff;
}

.vision-section .section-top__title {
    color: #ff6b35;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
    position: relative;
}

.vision-section .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
    border-radius: 1px;
}

.vision-text {
    font-size: 24px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    padding: 25px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.vision-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission-section {
    background: #f8f9fa;
}

.mission-section .section-top__title {
    color: #ff6b35;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
}

.mission-section .section-top__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #ff6b35;
    border-radius: 1px;
}

.mission-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-card__icon i {
    font-size: 28px;
    color: #fff;
}

.mission-card__number {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 400;
}

.mission-card__title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.mission-card__desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Legacy Statement Section */
.legacy-statement {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
}

.legacy-content {
    padding: 60px 40px;
}

.legacy-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.legacy-text {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.legacy-signature {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-page-wrapper::before {
        width: 100%;
        height: 30%;
        top: 0;
    }
    
    .about-content-container {
        margin: 20px 0;
    }
    
    .about-company-content {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .capacity-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .capacity-stat {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .vision-text {
        font-size: 20px;
        padding: 15px;
    }
    
    .legacy-content {
        padding: 40px 20px;
    }
    
    .legacy-text {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .leadership-card,
    .mission-card,
    .global-presence-card {
        padding: 20px 15px;
    }
    
    .leadership-card__icon,
    .mission-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .leadership-card__icon i {
        font-size: 24px;
    }
    
    .mission-card__icon i {
        font-size: 20px;
    }
}

/* Product Tabs Section Styles */
.product-title-box {
  background: white;
  color: #dc3545;
  padding: 5px 15px;
  border-radius: 8px;
  margin: 15px auto;
  text-align: center;
  border: 2px solid #dc3545;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: auto;
}

.product-title-box h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #dc3545;
}

.product-sizes {
    text-align: center;
    font-size: 14px;
    color: #333;
}

.product-sizes .size {
    font-weight: 500;
}

/* Export Inquiry Modal Styles */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.inquiry-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.inquiry-modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    color:#fff
}

.inquiry-modal-close {
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.inquiry-modal-close:hover,
.inquiry-modal-close:focus {
    color: #ffebee;
    transform: scale(1.1);
}

.inquiry-modal-body {
    padding: 30px;
}

.inquiry-modal-body .form-group {
    margin-bottom: 20px;
}

.inquiry-modal-body label {
    display: block;
    font-weight: 400;
    color: #333;
    font-size: 14px;
}

.inquiry-modal-body .required {
    color: #dc3545;
}

.inquiry-modal-body .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.inquiry-modal-body .form-control:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.inquiry-modal-body textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.inquiry-modal-body .theme-btn {
    padding: 12px 40px;
    margin-top: 10px;
}

/* Header button adjustments */
.btn-wrapper.gap-3 {
    gap: 15px;
}

.btn-wrapper button.theme-btn {
    border: none;
    cursor: pointer;
}

/* Ensure header menu stays in one line */
.menu-area .row {
    flex-wrap: nowrap;
}

.menu-area .col-auto {
    flex-shrink: 0;
}

.header-button {
    white-space: nowrap;
}

.main-menu2 {
    flex-shrink: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .inquiry-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .inquiry-modal-header {
        padding: 20px;
    }
    
    .inquiry-modal-header h3 {
        font-size: 20px;
    }
    
    .inquiry-modal-body {
        padding: 20px;
    }
}

/* Header responsive adjustments */
@media (max-width: 1399px) {
    .main-menu2 > ul > li {
        margin: 0 8px;
    }
    
    .btn-wrapper.gap-3 {
        gap: 10px;
    }
    
    .btn-wrapper .theme-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 1199px) {
    .main-menu2 > ul > li {
        margin: 0 5px;
    }
    
    .btn-wrapper .theme-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Values Section Styles */
.values-section {
    margin-top: 50px;
    width: -webkit-fill-available;
    position: relative;
    z-index: 10;
    padding-bottom: 15px;
}

.value-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(20, 12, 18, 0.5);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.value-icon {
 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    margin-bottom: 25px;
}

.value-content {
    text-align: left;
}

.value-content h3 {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.value-content p {
    color: #333;
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .values-section {
        padding: 40px 0;
    }
    
    .value-card {
        padding: 25px 15px;
        margin-bottom: 15px;
    }
}

/* Product Category Cards Styles */
.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content h4 {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.category-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .category-card {
        margin-bottom: 20px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .category-content h4 {
        font-size: 16px;
    }
}

/* Dealership Section Styles */
.dealership-section {
    background: #f8f9fa;
    
}

.dealership-banner {
    background: #ffff00;
    padding: 30px 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(222, 195, 27, 0.3);
    width: 100%;
}

.dealership-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #dc3545;
    
}

.dealership-content h3 {
    color: #151414;
    font-size: 38px;
    
    margin: 0;
}

.dealership-whatsapp {
    text-align: right;
}

.whatsapp-btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 60px;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .dealership-banner {
        padding: 20px;
        text-align: center;
    }
    
    .dealership-content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .dealership-whatsapp {
        text-align: center;
    }
}

/* Contact Page Styles */
.contact2-content {
    background: transparent;
    padding: 30px;
    position: relative;
}

/* Specific contact page button styles to override general button styles */
.contact2 .theme-btn.style1,
.contact2-section .theme-btn.style1 {
    background: linear-gradient(135deg, #e61d25 0%, #c41e3a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 15px 35px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: none !important;
    font-family: "Nunito", serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 25px rgba(230, 29, 37, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact2 .theme-btn.style1::before,
.contact2-section .theme-btn.style1::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    transition: none !important;
    z-index: 1 !important;
    opacity: 0 !important;
}

.contact2 .theme-btn.style1 span,
.contact2-section .theme-btn.style1 span {
    position: relative !important;
    z-index: 2 !important;
    transition: none !important;
}

.contact2 .theme-btn.style1:hover,
.contact2-section .theme-btn.style1:hover {
  background: #fff !important;
    border: 1px solid #e61d25 !important;
}

.contact2 .theme-btn.style1:hover::before,
.contact2-section .theme-btn.style1:hover::before {
    opacity: 1 !important;
}

.contact2 .theme-btn.style1:hover span,
.contact2-section .theme-btn.style1:hover span {
    color: #e61d25 !important;
}

/* Enhanced contact section background */
.contact2.section-padding {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.contact2.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e61d25" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact2-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e61d25, #c41e3a);
    border-radius: 2px;
    opacity: 0.7;
}

.inquiry-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e61d25, #c41e3a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.inquiry-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.inquiry-section:hover::before {
    transform: scaleX(1);
}

.inquiry-title {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.inquiry-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e61d25, #c41e3a);
    border-radius: 2px;
}

.form__group input,
.form__group textarea {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 18px;
    width: 100%;
    background: #ffffff;
    font-size: 15px;
    font-family: "Nunito", serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #e61d25;
    box-shadow: 0 0 0 3px rgba(230, 29, 37, 0.1);
    transform: translateY(-1px);
}

.form__group input:focus,
.form__group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form__group--large textarea {
    min-height: 100px;
    resize: vertical;
}

.file-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form__group input[type="file"] {
    padding: 8px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    cursor: pointer;
}

.form__group input[type="file"]:hover {
    border-color: #007bff;
    background: #f0f8ff;
}

.form__group input[type="file"]:focus {
    outline: none;
    border-color: #007bff;
    background: white;
}



@media (max-width: 991px) {
    .inquiry-section {
        margin-bottom: 20px;
    }
}

/* Brochure Download Section Styles */
.brochure-download {
    background: #f8f9fa;
    padding: 60px 0;
}

.brochure-content h3 {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.brochure-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    font-family: "Nunito", serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    transition: left 0.4s ease;
    z-index: 1;
}

.download-btn span {
    position: relative;
    z-index: 2;
}

.download-btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
}

.download-btn:hover::before {
    left: 0;
}

.download-btn i {
    font-size: 18px;
}

.text-left
{
  text-align: left !important;
}

.text-upparcase
{
  text-transform: uppercase !important;
}


.text-justify
{
  text-align: justify !important;
}

.mission-icon {
  font-size: 80px;
  color: #ffffff;
}

/* ===========================================
   Vision & Mission Section Styles
=========================================== */
.vision-mission-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.vision-mission-card {
  background-color: #ffffff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  transition: none;
}

.vision-mission-card:hover {
  transform: none;
}

.vision-mission-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}

.vision-mission-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px dashed #e61d25;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  flex-shrink: 0;
}

.vision-icon {
  font-size: 50px;
  color: #e61d25;
}

.vision-mission-text {
  flex: 1;
}

.vision-mission-title {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vision-mission-content {
  padding-left: 0;
  text-align: left;
}

.vision-mission-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .vision-mission-header {
    flex-direction: column;
    text-align: center;
  }
  
  .vision-mission-icon {
    margin-bottom: 15px;
  }
  
  .vision-mission-content {
    text-align: center;
  }
  
  .vision-mission-card {
    padding: 0;
  }
}

/* Philosophy & Core Values Section Styles */

.philosophy-intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #636363;
  margin: 20px 0 0 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-values-section .vision-mission-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f4;
  transition: all 0.3s ease;
  height: 100%;
}

.philosophy-values-section .vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-values-section .vision-mission-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.philosophy-values-section .vision-mission-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 5px;
}

.philosophy-values-section .value-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-values-section .vision-mission-title {
  font-size: 20px;
  font-weight: 400;
  color: #262626;
  margin-bottom: 0px;
  letter-spacing: 0.5px;
}

.philosophy-values-section .vision-mission-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #636363;
  margin: 0;
}

.philosophy-values-section .core-values-section {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .philosophy-intro-text {
    font-size: 16px;
    padding: 0 20px;
  }
  
  .philosophy-values-section .vision-mission-card {
    padding: 25px 20px;
  }
  
  .philosophy-values-section .vision-mission-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ========================================
   Custom Styles - Moved from HTML files
   ======================================== */

/* Hero Slider Navigation Arrows */
.hero1 .swiper-button-next,
.hero1 .swiper-button-prev {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Certificate Slider Navigation Arrows */
.certificate-slider-container .swiper-button-next,
.certificate-slider-container .swiper-button-prev {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    user-select: none !important;
}

.certificate-slider-container {
    position: relative;
    padding: 0 50px;
}

.certificate-slider-container .swiper-button-next,
.certificate-slider-container .swiper-button-prev {
    position: absolute;
    display: flex;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    z-index: 10;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.certificate-slider-container .swiper-button-next:hover,
.certificate-slider-container .swiper-button-prev:hover {
    background: transparent;
    transform: translateY(-50%) scale(1.2);
}

.certificate-slider-container .swiper-button-next::after,
.certificate-slider-container .swiper-button-prev::after {
    font-size: 22px;
    color: #e61d25;
    font-weight: 700;
}

.certificate-slider-container .swiper-button-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.certificate-slider-container .swiper-button-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Certificate Slider Responsive Styles */
@media (max-width: 767px) {
    .certificate-slider-container {
        padding: 0 30px;
    }
    .certificate-slider-container .swiper-button-next,
    .certificate-slider-container .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    .certificate-slider-container .swiper-button-next::after,
    .certificate-slider-container .swiper-button-prev::after {
        font-size: 16px;
    }
    .certificate-slider-container .swiper-button-next {
        right: 15px;
    }
    .certificate-slider-container .swiper-button-prev {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .certificate-slider-container {
        padding: 0 25px;
    }
    .certificate-slider-container .swiper-button-next,
    .certificate-slider-container .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    .certificate-slider-container .swiper-button-next::after,
    .certificate-slider-container .swiper-button-prev::after {
        font-size: 14px;
    }
    .certificate-slider-container .swiper-button-next {
        right: 10px;
    }
    .certificate-slider-container .swiper-button-prev {
        left: 10px;
    }
}

/* About.html specific certificate slider positioning */
.certificate-slider-container .swiper-button-next.about-page {
    right: -20px;
}

.certificate-slider-container .swiper-button-prev.about-page {
    left: -20px;
}

/* Export Inquiry Modal Styles */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.inquiry-modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.inquiry-modal-content.xl-size {
    width: 95%;
    max-width: 1200px;
    margin: 1% auto;
}

.inquiry-modal-header {
    background: #e61d25;
    color: white;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.inquiry-modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    transition: color 0.3s;
}

.inquiry-modal-close:hover {
    color: #ffcc00;
}

.inquiry-modal-body {
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.section-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mandatory-note {
    color: #e74c3c;
    font-size: 14px;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b, #e8851a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .inquiry-modal-content.xl-size {
        width: 95%;
        margin: 5% auto;
    }
    
    .inquiry-modal-body {
        padding: 20px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Additional inline styles moved from HTML */
.hero1 .swiper-button-next,
.hero1 .swiper-button-prev {
    display: flex !important;
}

.breadcrumb.about-breadcrumb {
    background-image: url(assets/images/about-us.jpg);
}

.team-members-section.white-bg {
    background-color: #ffffff;
}

/* Section Title with Border Matching Text Width */
.section-title.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.section-title.text-center h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.section-title.text-center h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #e61d25 100%);
    border-radius: 2px;
}

/* Header Inquiry Buttons Hover Style */
.header-button .theme-btn.style2:hover,
.header-button .theme-btn.style2:focus {
    background-color: #ffff00 !important;
    color: #000 !important;
}

/* Export Inquiry Button Eye-Catching Animation */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 29, 37, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 8px rgba(230, 29, 37, 0.8);
    }
}

@keyframes color-shift {
    0% {
        background-color: var(--theme);
    }
    50% {
        background-color: #ff4444;
    }
    100% {
        background-color: var(--theme);
    }
}

/* Apply eye-catching animation only to EXPORT INQUIRY button (not DOMESTIC INQUIRY link) */
.header-button button.theme-btn.style2 {
    animation: pulse-glow 2s ease-in-out infinite, color-shift 3s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

/* Stop animation on hover */
.header-button button.theme-btn.style2:hover {
    animation: none;
    transform: scale(1) !important;
    box-shadow: none !important;
    opacity: 1 !important;
}