/* **********************************************************

*********************************************************** */

/* ***************** COLORS **********************************
1.                  #FCC41B
2.                  #FFE07A
3.                  #D9A900
3.                  #7A5B00
3.                  #FFF6D6
3.                  #1E1E1C
3.                  #858585
3.                  #CDCBCB
3.                  #FFFFFF
4.                  rgba(220,142,107,0.3)
font-family:        'Red Hat Display', sans-serif;
*********************************************************** */

html, body {
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  scroll-padding-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  list-style: none;
  word-wrap: break-word;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  color: #1E1E1C;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden !important;
  background: #FFF6D6;
}

/* ===== TYPOGRAPHY & TEXT STYLES ===== */

h1, h2, h3, h4, h5, h6 {
  font-family: "Red Hat Display", sans-serif;
  color: #1E1E1C;
  font-style: normal;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

h1, .h1 {
  line-height: 1.16;
  font-size: 62px;
}

h2, .h2 {
  line-height: 1.1;
  font-size: 45px;
}

h3, .h3 {
  line-height: 1.1;
  font-size: 35px;
}

h4, .h4 {
  line-height: 1.35;
  font-size: 28px;
}

h5, .h5, .tab-style-one .nav-link {
  font-size: 24px;
  line-height: 1.4;
}

h6, .h6 {
  line-height: 1.3;
  font-size: 18px;
}

/* ===== LINKS & INTERACTIVE ELEMENTS ===== */

a {
  color: #064d2c;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:hover {
  color: #66CC00;
  text-decoration: none;
}

/* ===== LIST STYLEs ===== */

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

p {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.625;
  color: #1E1E1C;
  margin-bottom: 1rem;
  margin-top: 0;
}

input[type=submit]:active, input[type=submit]:focus {
  box-shadow: none;
  outline: none;
}

img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

b {
  font-weight: 400;
  color: #fff;
}

hr {
  margin: 14px 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #fdfcf8;
}

ol {
  padding: 0;
  margin: 0;
}

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

li {
  list-style: none;
}

button, .btn, input, optgroup, select {
  outline: none;
  transition: all 0.3s ease-in-out;
}

input:hover, input:focus {
  outline: none;
}

input[type="password"]:focus, input[type="email"]:focus, input[type="text"]:focus, input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, textarea:focus, textarea:active, textarea::placeholder {
  outline: none;
  color: #858585;
}

textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], .uneditable-input {
  outline: none;
}

input[type="submit"], input[type="reset"], input[type="button"], button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color .15s ease-out;
  transition: background-color .15s ease-out;
  background: #fff;
  border: none;
}

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  border: none;
  background-color: #1E1E1C;
  color: #fff;
}

table, th, tr, td {
  border: 0px solid #858585;
}

th, tr, td {
  padding: 10px;
}

input[type="radio"], input[type="checkbox"] {
  display: inline;
}

/* ===== PLACEHOLDER ===== */

::-webkit-input-placeholder {
  color: #858585;
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 400;
}

::-moz-selection {
  color: #1E1E1C;
  background-color: #66CC00;
}

::selection {
  color: #1E1E1C;
  background-color: #66CC00;
}

::-webkit-input-placeholder {
  color: #858585;
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 400;
}

::-moz-selection {
  color: #1E1E1C;
  background-color: #66CC00;
}

::selection {
  color: #1E1E1C;
  background-color: #dbf784;
}

/* ===== MY CONTAINER ===== */

@media (min-width: 1600px) {
  .container, .container-xxl {
    max-width: 1600px;
  }
}

/* ===== LINE TOP & BOTTOM ===== */

.line-b:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: clamp(2px, 0.3vw, 4px);
  background: linear-gradient(90deg, transparent 0%, #dbf784 20%, #064d2c 50%, #dbf784 80%, transparent 100%);
}

.line-a:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: clamp(2px, 0.3vw, 4px);
  background: linear-gradient(90deg, transparent 0%, #dbf784 20%, #064d2c 50%, #dbf784, transparent 100%);
}

/* ===== INAGE BACKGROUND - DARK ===== */

.dark-bg-img {
  position: relative;
  overflow: hidden;
  background-color: rgb(53 153 26 / 83%);
  background-image: url('../../assets/img/bc-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  isolation: isolate;
}

.dark-bg-img:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(252, 196, 27, 0.15) 0%, rgba(30, 30, 28, 0.7) 100%);
  z-index: -1;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 SECTION TITLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section-title {
  position: relative;
  display: block;
  margin-top: 0;
  padding-bottom: 20px;
  z-index: 1;
}

.section-tagline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.section-tagline .line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: #609B3C;
  margin-right: 10px;
  top: -4px;
}

.section-tagline .sub-title {
  position: relative;
  display: block;
}

.section-tagline .sub-title h2 {
  color: #1E1E1C;
  font-size: 16px;
  line-height: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title.title-dark .section-tagline .sub-title h2 {
  color: #ffffff;
}

.section-title.title-dark .section-tagline .line {
  background: #fdfcf8;
}

.section-title.title-dark .section-tagline .section-icon svg {
  color: #fdfcf8;
}

.section-title.title-dark h3 {
  color: #fdfcf8;
}

.section-tagline .section-icon {
  position: relative;
  display: inline-block;
}

.section-tagline .section-icon svg {
  position: relative;
  display: inline-block;
  color: #609B3C;
  font-size: 20px;
  top: -5px;
  margin-left: 15px;
}

.section-title h3 {
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
  text-transform: none;
}

.section-title h2 svg {
  position: relative;
  display: inline-block;
  color: #B7FF20;
  text-transform: uppercase;
}

.section-title h2 svg::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 9px;
  right: 3px;
  height: 2px;
  background-color: #B7FF20;
}

@media only screen and (max-width: 767px) {
  .section-title h3 {
    font-size: 28px;
    line-height: 40px;
  }
}

.section-icon svg {
  -webkit-animation-name: float-bob-x3;
  animation-name: float-bob-x3;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 PROGRESS WRAP / BACK TO TOP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10000;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  display: block;
  cursor: pointer;
  box-shadow: inset 0 0 0 2px #CDCBCB;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 46px;
  height: 46px;
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  line-height: 46px;
  color: #7A5B00;
  cursor: pointer;
  display: block;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: #FFF6D6;
}

.progress-wrap svg.progress-circle path {
  stroke: #7A5B00;
  stroke-width: 4;
  transition: all 200ms linear;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 BRAND CLIENTS / SWIPE SLIDER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.clients {
  box-shadow: 0 4px 15px rgba(0, 13, 68, 0.1);
  background-color: #f4f4f4;
  padding: 70px 10px 60px 10px;
  position: relative;
  z-index: 1;
}

.clients .brand-logo img {
  width: auto;
  max-height: 35px;
  opacity: .4;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 BREADCRUMBS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.breadcumb-area {
  background: url('../../assets/img/bc-bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: smoothBackground 40s infinite alternate ease-in-out;
}

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

.breadcumb-area .breadcumb-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.breadcumb-area .breadcumb-content h4 {
  font-size: 50px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcumb-area .breadcumb-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcumb-area .breadcumb-content ul li {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding-right: 10px;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.breadcumb-area .breadcumb-content ul li:last-child {
  padding-right: 0;
}

.breadcumb-area .breadcumb-content ul li a {
  color: #FCC41B;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcumb-area .breadcumb-content ul li a:hover {
  color: #FFE07A;
  text-shadow: 0 0 8px rgba(255, 224, 122, 0.5);
}

@media (max-width: 991px) {
  .breadcumb-area {
    padding: 150px 0 100px;
  }
}

@media (max-width: 767px) {
  .breadcumb-area .breadcumb-content h4 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .breadcumb-area .breadcumb-content ul li {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .breadcumb-area {
    padding: 150px 10px 75px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 PAGES - SINGLE CONTENT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-single {
  position: relative;
  margin-top: 70px;
}

.page-single .page-content {
  padding: 20px;
  transition: box-shadow 0.3s ease;
  background-color: #FFF;
  box-shadow: 0 0 0 2px #74571D;
  border: 8px solid rgba(0,0,0,0.6);
  border-radius: 30px;
}

.page-single .page-content .page-title {
  text-align: center;
}

.page-single .page-content .page-title h2 {
  font-weight: bold;
  font-size: 40px;
  margin: 10px 0 35px 0;
}

.page-single .page-content .page-image {
  margin-bottom: 35px;
}

.page-single .page-content .text-area {
  padding: 20px;
}

.page-single .page-content .text-area p {
  font-size: 18px;
}

.page-single .page-content .text-area ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 40px;
}

.page-single .page-content .text-area ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  font-size: 18px;
}

.page-single .page-content .text-area ul li::before {
  font-size: 14px;
  color: #1E1E1C;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,224,122,0.39);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.page-single .page-content .text-area hr {
  color: rgba(255,255,255,0.25);
  margin: 25px 10%;
}

@media (max-width: 576px) {
  .page-single .page-content .text-area {
    padding: 20px 0;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 HEADER - MAIN NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
}

.main-header .header-top {
  z-index: 5;
  width: 100%;
  position: absolute;
  transition: all 500ms ease;
}

.main-header .logo-area {
  flex: none;
}

@media only screen and (max-width: 991px) {
  .main-header .logo-area {
    display: none;
  }
}

.main-header .logo {
  z-index: 9;
  padding: 2px 0;
  position: relative;
}

.main-header.menu-absolute .header-top {
  position: absolute;
}

.main-header.fixed-header .header-top {
  top: 0;
  left: 0;
  position: fixed;
  background: #242421;
  animation: sticky 1s;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}

@media only screen and (min-width: 992px) {
  .main-header.fixed-header .main-menu .navbar-collapse > ul > li {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .nav-outer {
    width: 100%;
  }
}

/* Header Main Menu */

@media only screen and (max-width: 991px) {
  .main-menu {
    width: 100%;
  }
}

.main-menu .mobile-logo {
  margin-right: auto;
}

@media only screen and (max-width: 575px) {
  .main-menu .mobile-logo {
    max-width: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .main-menu .collapse {
    overflow: auto;
  }
}

.main-menu .navbar-collapse {
  padding: 0px;
}

.main-menu .navbar-collapse > ul {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse > ul {
    display: block;
    padding: 25px 0;
    background: #FFFFFF;
  }
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse > ul > li:last-child {
    border-bottom: 1px solid rgba(205,203,203,0.3);
  }
}

@media only screen and (min-width: 992px) {
  .main-menu .navbar-collapse > ul > li > a {
    position: relative;
    padding-bottom: 8px;
  }
}

@media only screen and (min-width: 992px) {
  .main-menu .navbar-collapse > ul > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #74571D;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
}

@media only screen and (min-width: 992px) {
  .main-menu .navbar-collapse > ul > li > a:hover:after {
    width: 100%;
  }
}

.main-menu .navbar-collapse > ul > li > a {
  text-transform: capitalize;
}

@media only screen and (min-width: 992px) {
  .main-menu .navbar-collapse > ul > li > a {
    color: #FFFFFF;
  }
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse {
    left: 0;
    width: 100%;
    position: absolute;
    max-height: calc(100vh - 80px);
  }
}

.main-menu .navbar-collapse li {
  padding: 35px 20px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .main-menu .navbar-collapse li {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li {
    display: block;
    padding: 0 15px;
    border-top: 1px solid rgba(205,203,203,0.3);
  }
}

.main-menu .navbar-collapse li.dropdown {
  position: relative;
  padding-right: 20px;
}

.main-menu .navbar-collapse li.dropdown::after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 4px;
  top: 48%;
  color: #fff;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li.dropdown::after {
    right: 25px;
    color: #202022;
    top: 20px;
  }
}

.main-menu .navbar-collapse li a {
  display: block;
  opacity: 1;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
  transition: all 500ms ease;
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li a {
    padding: 10px 10px;
    line-height: 22px;
  }
}

.main-menu .navbar-collapse li.current > a, .main-menu .navbar-collapse li.current-menu-item > a {
  font-weight: 500;
  color: #74571D;
}

.main-menu .navbar-collapse li li {
  border-top: 1px solid rgba(205,203,203,0.3);
}

.main-menu .navbar-collapse li li a {
  text-transform: capitalize;
}

.main-menu .navbar-collapse li li a:before {
  display: none;
}

.main-menu .navbar-collapse li .megamenu {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  padding: 20px 0;
  background: #FFFFFF;
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05), -2px 0px 5px 1px rgba(0,0,0,0.05);
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li .megamenu {
    position: relative;
    box-shadow: none;
    width: 100%;
  }
}

.main-menu .navbar-collapse li ul {
  position: absolute;
  left: inherit;
  top: 100%;
  min-width: 200px;
  z-index: 100;
  display: none;
  background: #FFFFFF;
  box-shadow: 2px 2px 5px 1px rgba(0,0,0,0.05), -2px 0px 5px 1px rgba(0,0,0,0.05);
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li ul {
    position: relative;
    display: none;
    width: 100%;
    box-shadow: none;
  }
}

.main-menu .navbar-collapse li ul li {
  width: 100%;
  padding: 10px 20px;
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-collapse li ul li {
    padding: 0 15px;
  }
}

.main-menu .navbar-header {
  display: none;
}

@media only screen and (max-width: 991px) {
  .main-menu .navbar-header {
    display: flex;
    align-items: center;
    justify-content: start;
  }
}

.main-menu .navbar-header .navbar-toggle {
  width: 46px;
  height: 46px;
  float: right;
  border-radius: 50px;
  cursor: pointer;
  padding: 5px 14px;
  background: #B7FF20;
}

.main-menu .navbar-header .navbar-toggle .icon-bar {
  background: #1E1E1C;
  height: 2px;
  display: block;
  margin: 4px 0;
}

.header-btn .btn-border {
  color: #ffffcc;
  border: 1px solid #ffffcc !important;
}

@media only screen and (max-width: 991px) {
  .header-btn .btn-border {
    display: none;
  }
}

.menu-btns .theme-btn {
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #064d2c;
  color: #1E1E1C;
}

.menu-btns .theme-btn:hover {
  background-color: #064d2c;
  color: #FFFFFF;
}

.main-header.menu-white .nav-search > button {
  color: #FFFFFF;
}

@media only screen and (min-width: 992px) {
  .main-header.menu-white .main-menu .navigation > li > a, .main-header.menu-white .main-menu .navigation > .dropdown > .dropdown-btn {
    color: #FFFFFF;
  }
}

.main-header.menu-white .main-menu .navigation li li a:hover {
  color: #000;
}

.main-header.menu-white .menu-sidebar button .icon-bar, .main-header.menu-white .main-menu .navbar-toggle .icon-bar {
  background: #FFFFFF;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 SLIDER SWIPER - ANIM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main-slider {
  position: relative;
  background: #000;
  margin: 0;
  height: 850px;
}

.main-slider .hero-slider-container {
  height: 100%;
  margin-bottom: 0;
}

.main-slider .hero-slide-item {
  height: 850px;
  padding: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.main-slider .hero-slide-item .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: zoomin 15s ease-in infinite;
}

.hero-slide-item .hero-bg.bg-1 {
  background-image: url(../../assets/img/slider/banner-01.jpg);
}

.hero-slide-item .hero-bg.bg-2 {
  background-image: url(../../assets/img/slider/banner-02.jpg);
}

.hero-slide-item .hero-bg.bg-3 {
  background-image: url(../../assets/img/slider/banner-03.jpg);
}

.main-slider .hero-slide-item .hero-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 28, 0.5);
  z-index: 1;
}

.main-slider .hero-slide-item .hero-content {
  max-width: 750px;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 0 34px;
}

.main-slider .hero-slide-item .hero-content h1 {
  font-size: 52px;
  line-height: 62px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.main-slider .hero-slide-item .hero-content .hero-description {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.section-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #E3C991;
  padding: 0 15px;
  position: relative;
  margin-bottom: 15px;
}

.section-subtitle:before, .section-subtitle:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #FCC41B;
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-subtitle:before {
  left: 0;
}

.section-subtitle:after {
  right: 0;
}

.main-slider .hero-slider-container .btn-border {
  color: #ffffff;
  border: 2px solid #DFD58A;
}

.main-slider .hero-slider-container .btn-border:hover {
  color: #000000;
}

.swiper-slide:not(.swiper-slide-active) .hero-content > * {
  opacity: 0 !important;
  animation: none !important;
}

/* Animationen nur für aktiven Slide */

.swiper-slide-active .hero-content h6 {
  animation: fadeInDown 0.8s ease-out both;
}

.swiper-slide-active .hero-content h1 {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.swiper-slide-active .hero-content p {
  animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.swiper-slide-active .banner-btn-area {
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.slider-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  color: rgba(255,224,122,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff3cd;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.slider-nav-btn:hover {
  background: #66CC00;
  color: #1E1E1C;
}

.slider-nav-btn i {
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .main-slider, .main-slider .hero-slide-item {
    height: 650px;
  }
}

@media only screen and (max-width: 992px) {
  .main-slider .hero-slide-item .hero-content {
    padding: 0 55px;
  }
}

@media only screen and (max-width: 767px) {
  .main-slider .hero-slide-item .hero-content {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .main-slider .hero-slide-item .hero-content h1 {
    font-size: 28px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .main-slider .hero-slide-item .hero-content .hero-description {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-buttons button, .hero-buttons .btn {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .slider-nav {
    top: auto;
    bottom: 20px;
    transform: none;
    justify-content: center;
    gap: 15px;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slider-nav-btn {
    width: 40px;
    height: 40px;
    position: static;
  }
}

@media only screen and (max-width: 767px) {
  .slider-nav-btn i {
    font-size: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider, .main-slider .hero-slide-item {
    height: 600px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider .hero-slide-item .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (min-width: 1400px) {
  .main-slider .hero-slide-item .hero-content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 MARQUEE - ANIMATION TEXT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.marquee-taxi {
  position: relative;
  background-color: #FCC41B;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(122,91,0,0.22);
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.2);
}

.marquee-taxi:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: repeating-linear-gradient( 120deg, #ffd700 0 12px, #232323 12px 24px );
  opacity: .25;
  z-index: 1;
  pointer-events: none;
}

.marquee-taxi:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: repeating-linear-gradient( 120deg, #ffd700 0 12px, #232323 12px 24px );
  opacity: .25;
  z-index: 1;
  pointer-events: none;
}

.marquee-taxi .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.marquee-taxi ul {
  padding-left: 0;
  margin-bottom: 0;
  white-space: nowrap;
  transform: translateX(-100px);
  animation: horizontally 22s linear infinite alternate;
}

.marquee-taxi ul:hover {
  animation-play-state: paused;
}

.marquee-taxi ul li, .marquee-taxi ul li a {
  list-style-type: none;
  display: inline-block;
  font-size: 28px;
  color: #594300;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 1px rgb(255,246,214);
  margin-left: 25px;
  margin-right: 25px;
}

.marquee-taxi ul li a span {
  position: relative;
  font-size: 28px;
  margin-right: 3px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  display: inline-block;
}

.marquee-taxi ul li a:hover span {
  transform: rotate(15deg) scale(1.2);
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.marquee-taxi ul li:first-child {
  margin-left: 0;
}

.marquee-taxi ul li:last-child {
  margin-right: 0;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 BLOG - POST - NEWS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.blog-grid {
  position: relative;
  padding: 100px 0 80px;
}

.blog-grid .tj-section-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.blog-grid-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(30,30,28,0.1);
  background: #fffcef;
  overflow: hidden;
}

.blog-grid-wrapper:hover .blog-grid-img img {
  transform: scale(1.15);
}

.blog-grid-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-grid-img img {
  transition: transform 0.5s ease-in-out;
}

.blog-grid-content {
  padding: 30px 30px 30px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-grid-btn {
  margin-top: auto;
}

.blog-grid-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 18px;
}

.blog-grid-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-right: 1px solid #CDCBCB;
}

.blog-grid-meta span:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.blog-grid-meta span i {
  display: inline-flex;
  margin-right: 10px;
  color: #FCC41B;
  line-height: 1;
}

.blog-grid-meta span a {
  padding-left: 4px;
  color: #7A5B00;
}

.blog-grid-meta span a:hover {
  color: #1E1E1C;
}

.blog-grid-title a {
  font-size: 30px;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #1E1E1C;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-grid-title a:hover {
  color: #7A5B00;
}

.blog-grid-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-grid-date {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  width: 65px;
  height: 72px;
  background: linear-gradient(110deg, #ffd700 0%, #ffb300 100%);
  border-radius: 8px 20px 40px 8px;
  line-height: 1.1;
  transition: all 0.6s;
}

.blog-grid-date span {
  display: block;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #1E1E1C;
  margin-bottom: 0;
  transform: translateY(10px);
  transition: all 0.6s;
}

.blog-grid-date span.two {
  font-size: 14px;
}

@media only screen and (max-width: 1399px) {
  .blog-grid-text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-grid-content {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-grid {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 575px) {
  .blog-grid-content {
    padding: 30px 15px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 BLOG DETAILS - POST - NEWS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.blog-details {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #FFFFFF;
}

.blog-details .blog-details-wrapper {
  position: relative;
  z-index: 1;
}

.blog-details .blog-item {
  margin-bottom: 60px;
}

.blog-details .blog-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-details .blog-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.blog-details .blog-image a:hover img {
  transform: scale(1.05);
}

.blog-details .blog-details-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  color: #858585;
}

.blog-details .blog-details-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1;
}

.blog-details .blog-details-meta i {
  color: #FCC41B;
}

.blog-details .blog-details-meta a {
  color: #1E1E1C;
  transition: color 0.3s ease;
}

.blog-details .blog-details-meta a:hover {
  color: #FCC41B;
}

.blog-details .details-title .title {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1E1E1C;
  font-weight: 700;
  line-height: 1.4;
}

.blog-details .post-excerpt {
  margin-bottom: 20px;
  color: #1E1E1C;
  line-height: 1.8;
}

.blog-details .blog-quote {
  background: #FFF6D6;
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  position: relative;
  border-left: 4px solid #FCC41B;
}

.blog-details .blog-quote p {
  font-size: 20px;
  font-weight: 600;
  color: #1E1E1C;
  margin-bottom: 0;
  font-style: italic;
}

.blog-details .blog-image-gallery {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.blog-details .blog-image-gallery img {
  border-radius: 10px;
  width: 50%;
}

.blog-details .blog-tags-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  margin: 50px 0;
  border-top: 1px solid #CDCBCB;
  border-bottom: 1px solid #CDCBCB;
}

.blog-details .blog-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-details .tag-title {
  font-weight: 600;
  color: #1E1E1C;
}

.blog-details .blog-tags a {
  display: inline-block;
  padding: 6px 15px;
  background: #FFF6D6;
  color: #1E1E1C;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-details .blog-tags a:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

.blog-details .blog-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details .social-list {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details .social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF6D6;
  color: #1E1E1C;
  transition: all 0.3s ease;
}

.blog-details .social-list a:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

.blog-details .blog-comments-section {
  margin-top: 60px;
}

.blog-details .comments-title .title {
  font-size: 30px;
  margin-bottom: 30px;
  color: #1E1E1C;
}

.blog-details .comments-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details .comment-item {
  margin-bottom: 30px;
}

.blog-details .comment-content {
  display: flex;
  flex-direction: column;
}

.blog-details .comment-header {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-details .comment-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-details .comment-avatar img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-details .comment-author {
  flex: 1;
}

.blog-details .author-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.blog-details .author-meta {
  display: flex;
  flex-direction: column;
}

.blog-details .author-name {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1E1E1C;
}

.blog-details .author-name a {
  color: inherit;
  transition: color 0.3s ease;
}

.blog-details .author-name a:hover {
  color: #FCC41B;
}

.blog-details .comment-date {
  font-size: 14px;
  color: #858585;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-details .comment-date i {
  color: #FCC41B;
}

.blog-details .comment-reply .reply-btn {
  background: #1E1E1C;
  color: #FFFFFF;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-details .comment-reply .reply-btn:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

.blog-details .comment-text {
  color: #1E1E1C;
  line-height: 1.8;
}

.blog-details .children {
  padding-left: 60px;
  margin-top: 30px;
  list-style: none;
}

.blog-details .comment-form-section {
  margin-top: 60px;
  background: #FFF6D6;
  padding: 40px;
  border-radius: 10px;
}

.blog-details .comment-header .title {
  font-size: 30px;
  margin-bottom: 15px;
  color: #1E1E1C;
}

.blog-details .form-description {
  color: #858585;
  margin-bottom: 25px;
}

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

.blog-details .form-group input, .blog-details .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #CDCBCB;
  border-radius: 5px;
  background: #FFFFFF;
  color: #1E1E1C;
  transition: all 0.3s ease;
}

.blog-details .form-group input:focus, .blog-details .form-group textarea:focus {
  border-color: #FCC41B;
  outline: none;
}

.blog-details .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.blog-details .form-submit .btn-primary {
  background: #1E1E1C;
  color: #FFFFFF;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-details .form-submit .btn-primary:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

.blog-sidebar {
  position: sticky;
}

.blog-sidebar .sidebar-widget {
  background: #FFF6D6;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-sidebar .widget-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1E1E1C;
  position: relative;
  padding-bottom: 15px;
}

.blog-sidebar .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FCC41B;
}

.blog-sidebar .sidebar-search form {
  position: relative;
}

.blog-sidebar .sidebar-search input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 1px solid #CDCBCB;
  border-radius: 5px;
  background: #FFFFFF;
  color: #1E1E1C;
}

.blog-sidebar .sidebar-search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: transparent;
  border: none;
  color: #1E1E1C;
  cursor: pointer;
}

/* Emergency Service Widget Styles */

.service-widget {
  background: #FFE07A;
  margin-bottom: 24px;
  padding: 30px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-widget {
    padding: 30px 15px;
  }
}

.service-widget::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 75px;
  left: 0;
  background: #1E1E1C;
  opacity: 0.1;
}

.service-widget:last-child::before {
  display: none;
}

/* Straßenlinien-Effekt */

.service-widget-title {
  font-size: 30px;
  color: #1E1E1C;
  margin-bottom: 20px;
  position: relative;
  font-weight: 700;
  line-height: 1.3;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-widget-title {
    font-size: 25px;
  }
}

.service-widget-icon span {
  color: #1E1E1C;
  font-size: 58px;
  display: inline-flex;
  line-height: 1;
  margin-bottom: 15px;
}

.service-widget-details span {
  display: block;
  font-size: 16px;
  color: #1E1E1C;
  margin-bottom: 5px;
}

.service-widget-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #1E1E1C;
  display: inline-block;
  margin: 10px 0 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-widget-phone:hover {
  color: #1E1E1C;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-widget-phone {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

.service-widget-description {
  margin-bottom: 25px;
}

.service-widget-description p {
  color: #1E1E1C;
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-sidebar .categories-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-sidebar .categories-widget li {
  margin-bottom: 10px;
}

.blog-sidebar .categories-widget li:last-child {
  margin-bottom: 0;
}

.blog-sidebar .categories-widget a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  background: #FFFFFF;
  color: #1E1E1C;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.blog-sidebar .categories-widget a:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

.blog-sidebar .categories-widget span {
  background: #FFF6D6;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
}

.blog-sidebar .recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-sidebar .recent-post-item {
  display: flex;
  gap: 15px;
}

.blog-sidebar .post-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-sidebar .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-sidebar .recent-post-item:hover .post-thumbnail img {
  transform: scale(1.1);
}

.blog-sidebar .post-info {
  flex: 1;
}

.blog-sidebar .post-date {
  font-size: 13px;
  color: #858585;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}

.blog-sidebar .post-date i {
  color: #FCC41B;
}

.blog-sidebar .post-title {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.5;
}

.blog-sidebar .post-title a {
  color: #1E1E1C;
  transition: color 0.3s ease;
}

.blog-sidebar .post-title a:hover {
  color: #7A5B00;
}

.blog-sidebar .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-sidebar .tag-item {
  display: inline-block;
  padding: 10px 20px;
  background: #FFFFFF;
  color: #1E1E1C;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.blog-sidebar .tag-item:hover {
  background: #FCC41B;
  color: #1E1E1C;
}

@media (max-width: 991px) {
  .blog-sidebar .blog-details {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .blog-sidebar .details-title .title {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar .blog-quote p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .blog-sidebar .comment-form-section {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .blog-image-gallery {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .blog-image-gallery img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .blog-tags-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .children {
    padding-left: 30px;
  }
}

@media (max-width: 767px) {
  .blog-sidebar .comment-form-section {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .blog-details {
    padding: 60px 0;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .details-title .title {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .comment-header {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .comment-avatar {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .comment-form-section {
    padding: 20px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 PAGINATION - BLOG
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pagination {
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 0;
}

.pagination .page-item {
  margin-right: 10px;
}

.pagination .page-item .page-link {
  padding: 0;
  height: 44px;
  width: 44px;
  line-height: 44px;
  border: none;
  font-weight: 600;
  color: #1E1E1C;
  background-color: #ffffff;
  text-align: center;
  border-radius: 50%;
  position: relative;
  transition: 0.6s;
}

.pagination .page-item .page-link:hover {
  color: #000000;
  background-color: #FCC41B;
}

.pagination .page-item .page-link.active {
  color: #000000;
  background-color: #FCC41B;
}

.pagination .page-item .page-link:focus {
  box-shadow: unset;
}

.pagination .page-item .page-link i {
  line-height: 1;
  position: relative;
}

.pagination .page-item .page-link .flaticon-left-arrow {
  top: 2px;
  right: 1px;
}

.pagination .page-item .page-link .flaticon-right-chevron {
  top: 2px;
}

.pagination .page-item:last-child {
  margin-right: 0;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 CONTACT INFO TRIPLE BOX
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-info {
  position: relative;
  z-index: 1;
  display: block;
  padding: 7.5rem 0 5.625rem;
}

.contact-info-box {
  position: relative;
  display: block;
  text-align: center;
  padding: 30px;
  background-color: rgba(252, 196, 27, 0.2);
  background: linear-gradient(110deg, #C59A05 0%, #9C7D01 100%);
  border-radius: 1.25rem;
  box-shadow: 0 0 0 2px #7A5B00;
  border: 8px solid #ffffff;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 4.375rem;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 50%;
}

.contact-info-icon::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #7A5B00;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.contact-info-box:hover .contact-info-icon::before {
  transform: scale(1);
}

.contact-info-icon svg {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: #7A5B00;
  transform: scale(1);
  transition: all 500ms linear 0.05s;
}

.contact-info-box:hover .contact-info-icon svg {
  color: #FFFFFF;
  transform: scale(0.9);
}

.contact-info-box p {
  margin: 1.25rem 0 0.3125rem;
}

.contact-info-box h3 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2rem;
  color: #1E1E1C;
}

.contact-info-box h3 a {
  color: #1E1E1C;
  transition: color 0.3s ease;
}

.contact-info-box h3 a:hover {
  color: #7A5B00;
}

@media (prefers-reduced-motion: reduce) {
  .contact-info-icon::before, .contact-info-icon svg, .contact-info-box h3 a {
    transition: none;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 CONTACT FORM - EMAIL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.contact-page {
  z-index: 1;
  position: relative;
  display: block;
  padding: 100px 0 110px;
}

.contact-page-inner {
  display: block;
  position: relative;
  padding: 60px 0;
  border-radius: 20px;
  box-shadow: 0 0 0 2px #7A5B00, 0 10px 30px rgba(252, 196, 27, 0.4) !important;
  border: 8px solid rgba(0,0,0,0.6);
  background: linear-gradient(163deg, #dbf784 0%, #064d2c 100%);
}

.contact-page-map {
  display: block;
  position: relative;
  margin: 0 10px 0 60px;
}

.google-map {
  display: block;
  position: relative;
  width: 100%;
  height: 505px;
  border: none;
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .google-map {
    height: 559px;
  }
}

@media (max-width: 1199px) {
  .contact-page-map {
    display: block;
    position: relative;
    margin: auto;
  }
}

.contact-page-right {
  display: block;
  position: relative;
  margin: 0 40px 0 20px;
}

.contact-page-right-title {
  margin-bottom: 10px;
  color: #1E1E1C;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -1.44px;
}

.contact-page-form {
  display: block;
  position: relative;
}

.contact-form-input {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.contact-form-input input[type="text"], .contact-form-input input[type="email"], .contact-form-input input[type="number"], .contact-form-input input[type="date"], .contact-form-input input[type="time"], .contact-form-input input[type="tel"] {
  display: block;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  border: 2px solid rgba(102,79,12,0.5);
  border-radius: 5px;
  background-color: #FFF6D6;
  color: #1E1E1C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-form-input textarea {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 20px 30px;
  border: 2px solid rgba(102,79,12,0.5);
  border-radius: 5px;
  background-color: #FFF6D6;
  color: #1E1E1C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.contact-form-input input[name="name"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.contact-form-input input[name="pickup"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.contact-form-input input[name="email"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.contact-form-input input[name="phone"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.contact-form-input input[type="time"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  .contact-form-input input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
  }
}

.contact-page-btn {
  display: block;
  position: relative;
  text-align: center;
}

.contact-page-btn .btn-dark {
  border: 2px solid #1E1E1C !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-box {
    padding: 40px 20px 41px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-box h3 {
    font-size: 19px;
    line-height: 29px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-page-left {
    margin: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-page-right {
    margin: 50px 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-page-inner {
    padding: 60px 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-page-left {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-page-right {
    margin: 50px 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-page-inner {
    padding: 60px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-box {
    padding: 40px 15px 41px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-box h3 {
    font-size: 19px;
    line-height: 29px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-info {
    padding: 80px 0 50px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-left {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-right {
    margin: 50px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-inner {
    padding: 30px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-right-title {
    font-size: 35px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 BOOKING FORM 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.booking-now {
  position: relative;
  background-color: #fdfcf8;
  padding: 35px 0 55px 0;
}

.booking-now .section-title.booking-title h4 {
  font-size: 30px;
  line-height: 30px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .booking-now .section-title.booking-title h4 {
    font-size: 17px;
    line-height: 30px;
  }
}

.booking-now .section-title.booking-title {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .booking-now .section-title .section-tagline .section-icon, .booking-now .section-title .section-tagline .line {
    display: none;
  }
}

.booking-page-inner {
  display: block;
  position: relative;
  padding: 30px 10px 20px 10px;
  border-radius: 20px;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.5), 0 10px 30px rgba(252, 196, 27, 0.4) !important;
  border: 8px solid rgb(252,196,27);
  background: linear-gradient(110deg, #333331 0%, #1e1e1c 100%);
}

.booking-form-input {
  display: block;
  position: relative;
  margin-bottom: 15px;
}

.booking-form-input input[name="name"], .booking-form-input input[name="pickup"], .booking-form-input input[name="email"], .booking-form-input input[name="phone"], .booking-form-input input[name="date"], .booking-form-input input[name="time"], .booking-form-input input[name="dropoff"] {
  display: block;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  border: 2px solid rgba(102,79,12,0.5);
  border-radius: 5px;
  background-color: #FFF6D6;
  color: #1E1E1C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.select-form-input select {
  display: block;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  border: 2px solid rgba(102,79,12,0.5);
  border-radius: 5px;
  background-color: #FFF6D6;
  color: #1E1E1C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A5B00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.booking-form-input textarea {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 20px 30px;
  border: 2px solid rgba(102,79,12,0.5);
  border-radius: 5px;
  background-color: #FFF6D6;
  color: #1E1E1C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
}

.booking-form-input input[name="name"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.booking-form-input input[name="pickup"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.booking-form-input input[name="email"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.booking-form-input input[name="phone"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

.booking-form-input input[type="time"] {
  Firefox: Hintergrund-Icon hinzufügen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231E1E1C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

/* Dropoff-Input mit Location-Icon */

input[type="text"][name="dropoff"], input.dropoff {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A5B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 45px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  .booking-form-input input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
  }
}

.select-form-input:hover {
  border-color: #FCC41B;
  background-color: #FFE07A;
}

.select-form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(252, 196, 27, 0.3);
}

.select-form-input option {
  padding: 12px 15px;
  background-color: #FFFFFF;
  color: #1E1E1C;
  border-bottom: 1px solid #CDCBCB;
  transition: all 0.2s ease;
}

.select-form-input option:hover {
  background-color: #FFE07A !important;
  color: #1E1E1C;
}

.select-form-input option:checked {
  background-color: #FCC41B;
  color: #1E1E1C;
  font-weight: bold;
}

.select-form-input optgroup {
  font-weight: bold;
  color: #7A5B00;
  background-color: #FFF6D6;
  padding: 5px;
}

.booking-btn {
  display: block;
  position: relative;
}

.booking-btn .btn-dark {
  border: 2px solid #1E1E1C !important;
  width: 100%;
}

.booking-btn .btn-primary {
  border: 2px solid #1E1E1C !important;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .booking-btn .btn-primary {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 400;
  }
}

@media (max-width: 576px) {
  .booking-btn {
    margin-top: 15px;
  }
}

@media (max-width: 992px) {
  .booking-btn .btn-dark {
    font-size: 14px;
    font-weight: 400;
    padding: 13px 0;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 AI TAXI - BASIC BUTTONs
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
  display: inline-block;
  position: relative;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  white-space: nowrap;
  transition: all 0.5s ease;
  z-index: 1;
  padding: 14px 18px;
  font-size: 16px;
  margin-right: 15px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-xl {
  padding: 18px 44px;
  font-size: 18px;
}

.btn-primary {
  background-color: #85ab0e !important;
  color: #000000 !important;
  border: none !important;
}

.btn-border {
  background: transparent;
  color: #1E1E1C;
  border: 2px solid #1E1E1C;
}

.btn-dark {
  background-color: #1E1E1C;
  color: #FFFFFF;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 5px;
  z-index: -1;
  transition: all 0.5s ease;
}

.btn:hover::before {
  height: 100%;
}

.btn-primary::before {
  background-color: #FFF6D6;
}

.btn-border::before {
  background-color: #FFF6D6;
}

.btn-dark::before {
  background-color: #FFF6D6;
}

.btn.btn-primary:hover {
  background-color: #85ab0e !important;
  color: #000000 !important;
}

.btn-border:hover {
  border-color: transparent;
  color: #1E1E1C;
  border: 2px solid #1E1E1C;
}

.btn-dark:hover {
  color: #1E1E1C;
}

.btn i, .btn svg {
  display: inline-block;
  font-size: 16px;
  line-height: 0.8;
  margin-left: 8px;
  transition: all 0.5s ease;
}

.btn svg {
  max-width: 18px;
  position: relative;
  top: -1px;
}

.button-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.button-group {
  padding: 40px 20px;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 ABOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.about {
  position: relative;
  padding: 50px 0 100px 0;
  background-color: #f8f9fa;
}

.about-image {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.about-image img {
  width: 100%;
  height: 700px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.about .about-image .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.about .about-image .video-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: rgba(30, 30, 28, 0.9);
  border-radius: 50%;
  color: #E3C991;
  font-size: 36px;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 0 15px rgba(252, 196, 27, 0.2);
  animation: pulse-border 2.5s infinite;
}

.about .about-image .video-play::before {
  content: '';
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  border: 2px solid #FCC41B;
  border-radius: 50%;
  animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
}

.about .about-image .video-play::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(252, 196, 27, 0.1);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
}

.about .about-image .video-play:hover {
  background: rgba(30, 30, 28, 1);
  color: #FFE07A;
}

.about .about-image .video-play:hover::before {
  animation: pulse-ring-hover 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.about .about-image .video-play:hover::after {
  transform: scale(1.3);
  opacity: 0;
}

.about .about-image .video-btn span {
  display: none;
}

.about-grid {
  border-radius: 20px;
  padding: 10px 0;
  background: linear-gradient(163deg, #dbf784 0%, #064d2c 100%);
  box-shadow: 0 0 0 2px #609B3C;
  border: 8px solid rgba(0,0,0,0.6);
}

.about-content {
  margin-bottom: 30px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content .about-list {
  margin: 0;
  padding: 0 0 5px;
  list-style-type: none;
}

.about-content .about-list li {
  display: flex;
  justify-items: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  color: #1E1E1C;
}

.about-content .about-list li i {
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  background-color: #064d2c;
  color: #fcc41b;
  border-radius: 5px;
  margin-right: 15px;
  font-size: 20px;
  transition: .5s;
}

.about-content .about-list li a {
  color: #1E1E1C;
  font-weight: bolder;
  transition: .5s;
}

.about-content .about-list li:hover i {
  background-color: #1E1E1C;
}

.about-content .about-list li:hover a {
  color: #1E1E1C;
}

.about-btn .btn-dark {
  border: 2px solid #1E1E1C;
}

.about-btn .btn-border {
  border: 2px solid #1E1E1C;
}

.about-btn .btn-border:hover {
  background-color: #1E1E1C;
  color: #ffffff;
}

.about-btn .btn-border:before {
  background-color: #1E1E1C;
}

@media only screen and (max-width: 767px) {
  .about-content .section-title {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .about-content .about-list li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .about-content .about-list li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .section-title {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-list li {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-list li i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 5px;
    margin-right: 10px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 GDPR NOTICE - COOKIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.cookies .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #4c8117;
  border-top: 1px solid #fdfcf8;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1000;
  display: none;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookies .cookie-banner.show {
  display: block;
}

.cookies .cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookies .cookie-text {
  flex: 1;
  min-width: 300px;
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.5;
}

.cookies .cookie-text a {
  color: #fdfcf8;
  text-decoration: none;
}

.cookies .cookie-text a:hover {
  text-decoration: underline;
}

.cookies .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookies .cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookies .cookie-btn-accept {
  background: #85ab0e;
  color: #fff;
}

.cookies .cookie-btn-accept:hover {
  background: #DFD58A;
}

.cookies .cookie-btn-essential {
  background: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid #7A5B00;
}

.cookies .cookie-btn-essential:hover {
  background: #3d3300;
}

.cookies .cookie-settings {
  background: transparent;
  color: #CDCBCB;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
  padding: 5px 10px;
}

.cookies .cookie-settings:hover {
  color: #4c8117;
}

/* Responsive Design */

@media (max-width: 768px) {
  .cookies .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .cookies .cookie-text {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .cookies .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .cookies .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Cookie Settings Modal */

.cookies .cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
}

.cookies .cookie-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1E1E1C;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  color: #FFFFFF;
}

.cookies .cookie-modal h3 {
  margin-top: 0;
  color: #fdfcf8;
  font-weight: 600;
  font-size: 30px;
}

.cookies .cookie-category {
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255,193,7,0.03);
  border-radius: 4px;
}

.cookies .cookie-category h4 {
  margin: 0 0 10px 0;
  color: #FFC107;
  font-weight: 600;
  font-size: 20px;
}

.cookies .cookie-category p {
  margin: 0;
  color: #CDCBCB;
  font-size: 13px;
}

.cookies .cookie-toggle {
  float: right;
  margin-top: -5px;
}

.cookies .cookie-toggle input[type="checkbox"] {
  margin-right: 5px;
}

.cookies .cookie-modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
}

.cookies .cookie-modal-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookies .btn-save {
  background: #FFD700;
  color: #1A1A1A;
}

.cookies .btn-save:hover {
  background: #FFC107;
}

.cookies .btn-cancel {
  background: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid #7A5B00;
}

.cookies .btn-cancel:hover {
  background: #3d3300;
}

.cookies .cookie-btn, .cookies .cookie-modal-buttons button {
  transition: all 0.2s ease;
}

.cookies .cookie-btn-accept:hover, .cookies .btn-save:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cookies .cookie-btn-essential:hover, .cookies .btn-cancel:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 COUNTER STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.counter-area {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url('../../assets/img/bc-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.counter-area::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(252, 196, 27, 0.15) 0%, rgba(252, 196, 27, 0) 70%);
  border-radius: 50%;
}

.single-counter-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px 50px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px #FCC41B !important;
  border: 8px solid rgba(0,0,0,0.6);
  transition: all 0.3s ease;
  background-position: 0 0, 10px 10px;
  background-color: rgba(30,30,28,0.81);
  background: linear-gradient(110deg, #ffd700 0%, #ffb300 100%);
}

.single-counter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 2px #FCC41B;
  border: 8px solid rgba(0,0,0,0.6);
}

.single-counter-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FCC41B 0%, #D9A900 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.single-counter-item:hover::after {
  transform: scaleX(1);
}

.single-counter-item h2 {
  font-size: 50px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.2;
}

.single-counter-item h2 .counter {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #FCC41B 0%, #FFE07A 100%);
  -webkit-background-clip: text;
  display: inline-block;
  color: #1E1E1C !important;
}

.single-counter-item h2 .target {
  color: #1E1E1C;
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 2px;
}

.single-counter-item p {
  color: #1E1E1C;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.single-counter-item p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, #000000 0%, transparent 100%);
}

.counter {
  animation: counterGlow 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .single-counter-item h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .single-counter-item {
    padding: 25px 20px;
  }
}

@media (max-width: 991px) {
  .single-counter-item h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .single-counter-item {
    margin-bottom: 30px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 PRICING SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pricing {
  position: relative;
  padding: 100px 0;
}

.pricing .pricing-wraper {
  margin-inline: auto;
}

.pricing .pricing-box {
  position: relative;
  height: 100%;
}

@media (max-width: 1399.98px) {
  .pricing .pricing-box {
    padding-right: 1.5rem;
  }
}

@media (max-width: 1199.98px) {
  .pricing .pricing-box {
    padding-right: 0;
  }
}

.pricing .inner-box {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  height: 100%;
  margin-bottom: 2.5rem;
  padding: 3rem 2.375rem;
  overflow: hidden;
  background-color: rgba(252,196,27,0.2);
  box-shadow: 0 0 0 2px #74571D;
  border: 8px solid rgba(0,0,0,0.6);
  border-radius: 30px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing .inner-box:hover {
  transform: translateY(-0.625rem);
}

.pricing .pricing-box.active .inner-box {
  /*background-color: rgba(252, 196, 27, 0.8);*/
  background: linear-gradient(110deg, #C59A05 0%, #9C7D01 100%);
}

@media (max-width: 1199.98px) {
  .pricing .inner-box {
    padding: 3rem 0.9375rem;
  }
}

@media (max-width: 991.98px) {
  .pricing .inner-box {
    padding: 3rem 1.875rem;
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 575.98px) {
  .pricing .inner-box {
    padding: 3rem 0.9375rem;
  }
}

.pricing .price-tag {
  position: absolute;
  right: 3.125rem;
  top: 1.5625rem;
  z-index: 2;
  width: 6.375rem;
  height: 3.25rem;
  line-height: 3.25rem;
  background-color: #1E1E1C;
  color: #74571d;
  border-radius: 1.625rem 0 0 1.625rem;
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  font-weight: 600;
  text-align: center;
  transform: rotate(-90deg);
}

.pricing .title {
  margin-bottom: 0.625rem;
  color: #1E1E1C;
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing .text {
  margin-bottom: 1.8125rem;
  padding-bottom: 2.5rem;
  color: rgba(30, 30, 28, 0.8);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}

.pricing .text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(30, 30, 28, 0.3) 0%, rgba(30, 30, 28, 0.1) 70%);
}

.pricing .text:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #000000, #93834e, #000000);
  border-radius: 2px;
  animation: gold-slide 3s ease-in-out infinite alternate;
  display: block;
  will-change: left;
  backface-visibility: hidden;
}

.pricing .price-box {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 2.3125rem;
}

.pricing .price {
  color: #1E1E1C;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.pricing .price sup {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 3.75rem;
  vertical-align: top;
}

.pricing .validaty {
  color: rgba(30, 30, 28, 0.7);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.875rem;
}

.pricing .list-title {
  color: #1E1E1C;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.8125rem;
}

.pricing .features {
  padding: 0;
  list-style: none;
}

.pricing .features li {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 0.1875rem;
  color: #1E1E1C;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.625rem;
}

.pricing .features li .icon {
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #1E1E1C;
}

.pricing .features li.disable {
  color: rgba(30, 30, 28, 0.4);
}

.pricing .features li.disable .icon {
  color: rgba(30, 30, 28, 0.4);
}

.pricing .pricing-box .btn-box {
  margin-top: auto;
  text-align: center;
}

.pricing .pricing-box .btn-box .btn {
  padding: 14px 50px;
  border: 2px solid #1E1E1C !important;
}

@media (max-width: 767.98px) {
  .pricing {
    padding: 5rem 0;
  }
}

@media (max-width: 767.98px) {
  .pricing .price {
    font-size: 3.75rem;
  }
}

@media (max-width: 767.98px) {
  .pricing .price sup {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .pricing {
    padding: 3.75rem 0;
  }
}

@media (max-width: 575.98px) {
  .pricing .price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

@media (max-width: 575.98px) {
  .pricing .validaty {
    margin-left: 0;
  }
}

.pricing .btn-dark {
  border: 2px solid #1E1E1C;
}

.pricing .btn-border {
  background: transparent;
  color: #1E1E1C;
  border: 2px solid #1E1E1C;
}

.pricing .btn-border:hover {
  color: #FFFFFF;
}

.pricing .btn-border::before {
  background-color: #1E1E1C;
  color: #FFFFFF;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 SERVICES SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.services {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px 0;
}

.services .service-box {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px 50px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 2px #66CC00 !important;
  border: 8px solid rgba(0,0,0,0.6);
  background: linear-gradient(163deg, #dbf784 0%, #064d2c 100%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  z-index: 1;
  text-align: center;
}

.services .service-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 122, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Effects - Enhanced */

.services .service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 0 2px #FCC41B, 0 10px 30px rgba(252, 196, 27, 0.4) !important;
  border: 8px solid rgba(0,0,0,0.6);
  background: linear-gradient(110deg, #ffdc2a 0%, #ffbe1a 100%);
}

.services .service-box:hover::after {
  opacity: 1;
  animation: goldShine 2s infinite;
}

.services .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  background: rgba(30, 30, 28, 0.9);
  border: 2px solid #1E1E1C;
  box-shadow: inset 0 0 0 1px #FCC41B;
  color: #FCC41B;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.services .service-box:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: inset 0 0 0 2px #FCC41B, 0 0 15px rgba(252, 196, 27, 0.5);
}

.services .service-box h5 {
  color: #1E1E1C;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(255, 224, 122, 0.5);
  position: relative;
  display: inline-block;
}

.services .service-box h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #1E1E1C;
  transition: all 0.3s ease;
}

.services .service-box:hover h5::after {
  width: 60px;
  background: #FCC41B;
}

.services .service-box p {
  color: #7A5B00 !important;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.services .service-box:hover p {
  color: #5a4200 !important;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 TEAM - DRIVERS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.team {
  position: relative;
  padding: 60px 0 100px 0;
  background-color: #FFF6D6;
}

.team .section-btn {
  text-align: right;
}

.team .team-box {
  overflow: hidden;
  background: #FFF6D6;
  border-radius: 6px;
  border-radius: 20px;
  box-shadow: 0 0 0 2px #FCC41B, 0 10px 30px rgba(252, 196, 27, 0.4) !important;
  border: 8px solid rgba(0, 0, 0, 0.6);
}

.team .team-box .team-img {
  overflow: hidden;
}

.team .team-box .team-img img {
  transition: transform 0.3s linear;
}

.team .team-box .team-content {
  position: relative;
  z-index: 10;
  padding: 14px 20px;
  background: linear-gradient(110deg, #ffdc2a 0%, #ffbe1a 100%);
}

.team .team-box .team-content a {
  display: block;
  color: #1E1E1C;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.team .team-box .team-content span {
  font-size: 14px;
  color: #1E1E1C;
}

.team .team-box .team-content .team-social {
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #7A5B00;
  color: #ffffff;
  cursor: pointer;
  transform: translateY(-50%);
}

.team .team-box .team-content .team-social ul {
  position: absolute;
  bottom: 60px;
  left: 224%;
  padding: 13px 0;
  background: linear-gradient(110deg, #ffdc2a 0%, #ffbe1a 100%);
  border-radius: 20px 0 0 0;
  transition: left 0.3s ease;
}

.team .team-box .team-content .team-social ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
}

.team .team-box .team-content .team-social ul li a {
  font-weight: 400;
  font-size: 14px;
}

.team .team-box .team-content .team-social:hover ul {
  left: 25%;
}

.team .team-box:hover .team-img img {
  transform: scale(1.1);
}

@media only screen and (max-width: 767px) {
  .team .section-btn {
    text-align: left;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team .section-btn {
    text-align: left;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team .team-box .team-content {
    padding: 14px 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team .team-box .team-content a {
    font-size: 17px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url('../../assets/img/bc-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.testimonials .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1E1E1C;
  margin-bottom: 15px;
  position: relative;
}

.testimonials .section-subtitle {
  font-size: 1.1rem;
  color: #858585;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials .swiper {
  width: 100%;
  height: auto;
  padding: 15px 26px 100px 26px;
}

.testimonials .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials .testimonial-card {
  background: #7A5B00;
  border-radius: 12px;
  padding: 30px 25px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 1.25rem;
  box-shadow: 0 0 0 2px #FCC41B !important;
  border: 8px solid rgba(0,0,0,0.6);
  transition: all 0.3s ease;
}

.testimonials .swiper-slide-active .testimonial-card {
  border-color: #FCC41B;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(252, 196, 27, 0.15);
  background: linear-gradient(110deg, #ffd700 0%, #ffb300 100%);
  border-radius: 1.25rem;
  box-shadow: 0 0 0 2px #FCC41B;
  border: 8px solid rgba(0,0,0,0.6);
}

.testimonials .swiper-slide-active .client-role {
  color: #7A5B00;
}

.testimonials .swiper-slide-active .testimonial-text {
  color: #1E1E1C;
  font-weight: 600;
}

.testimonials .swiper-slide-active .quote-icon {
  color: #7A5B00;
}

.testimonials .swiper-slide:not(.swiper-slide-active) .testimonial-card {
  opacity: 1;
}

.testimonials .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 2px #FCC41B;
  border: 8px solid rgba(0,0,0,0.6);
}

.testimonials .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #FFE07A;
  opacity: 0.8;
}

.testimonials .client-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid #FCC41B;
  object-fit: cover;
  background: linear-gradient(135deg, #FCC41B, #FFE07A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #7A5B00;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonials .swiper-slide-active .client-photo {
  background: linear-gradient(135deg, #FCC41B, #7A5B00);
  color: #FFFFFF;
}

.testimonials .swiper-slide-active .client-name {
  color: #1E1E1C;
}

.testimonials .swiper-slide-active .star.filled {
  color: #7A5B00;
}

.testimonials .client-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #CDCBCB;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.testimonials .client-role {
  font-size: 0.9rem;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testimonials .testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-style: italic;
  display: flex;
  align-items: center;
}

.testimonials .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: auto;
  flex-shrink: 0;
}

.testimonials .star {
  font-size: 1.2rem;
  color: #CDCBCB;
  transition: color 0.3s ease;
}

.testimonials .star.filled {
  color: #FCC41B;
}

.testimonials .swiper-button-next, .testimonials .swiper-button-prev {
  color: #1E1E1C;
  font-size: 1.5rem;
  font-weight: bold;
  background: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(30, 30, 28, 0.1);
  transition: all 0.3s ease;
  top: 41%;
  transform: translateY(-50%);
}

.testimonials .swiper-button-prev {
  left: 5px;
}

.testimonials .swiper-button-next {
  right: 5px;
}

.testimonials .swiper-button-next:hover, .testimonials .swiper-button-prev:hover {
  color: #FCC41B;
  background: #FFF6D6;
  transform: translateY(-50%) scale(1.1);
}

.testimonials .swiper-button-next::after, .testimonials .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 900;
}

.testimonials .swiper-pagination {
  bottom: 10px;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #CDCBCB;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination-bullet-active {
  background: #FCC41B;
  opacity: 1;
  transform: scale(1.2);
}

.testimonials .swiper-pagination {
  position: relative;
  z-index: 10;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .testimonials .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-card {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .testimonials .swiper {
    padding: 30px 15px 70px 15px;
  }
}

@media (max-width: 768px) {
  .testimonials .swiper-button-next, .testimonials .swiper-button-prev {
    top: 43%;
  }
}

@media (max-width: 768px) {
  .testimonials .swiper-button-next, .testimonials .swiper-button-prev {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials .swiper-button-next::after, .testimonials .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonials .section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonial-card {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .testimonials .client-photo {
    width: 70px;
    height: 70px;
    font-size: 1.7rem;
  }
}

.testimonials .testimonials {
  animation: fadeInUp 0.8s ease-out;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 COMING SOON - PAGE 
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.coming-soon-area {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.d-table, .d-table-cell {
  display: block !important;
  width: 100%;
}

.coming-logo {
  margin-bottom: 30px;
}

.coming-logo img {
  width: auto;
}

.coming-soon-content {
  max-width: 700px;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding: 60px;
  background-color: #FFF6D6;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin: auto;
  border-radius: 30px;
  box-shadow: 0 0 0 2px #FCC41B;
  border: 8px solid rgb(122,91,0);
}

.coming-soon-content h2 {
  font-size: 40px;
  margin-top: -10px;
  margin-bottom: 0;
}

.coming-soon-content #timer div {
  color: #7A5B00;
  border: 3px solid rgba(122,91,0,0.1);
  text-shadow: 0 2px 1px rgb(255,246,214);
  width: 100px;
  height: 100px;
  border-radius: 20px;
  font-size: 30px;
  font-weight: 800;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  background: linear-gradient(110deg, #ffd700 0%, #ffb300 100%);
}

.coming-soon-content #timer div:last-child {
  margin-bottom: 0;
}

.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 14px;
  font-weight: 500;
}

.coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #7A5B00;
}

.coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  transition: all ease .5s;
  top: 9px;
  font-size: 22px;
}

.coming-soon-content form .form-group .label-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: all ease .5s;
  background: #FCC41B;
}

.coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: 1px solid #D9A900;
  padding: 10px 20px;
  color: #7A5B00;
  height: 56px;
  display: block;
  width: 100%;
  transition: all ease .5s;
  font-size: 16px;
  font-weight: 400;
  background-color: #ffffff;
}

.coming-soon-content form .form-group .input-newsletter::-moz-placeholder {
  color: #858585;
  -moz-transition: all ease .5s;
  transition: all ease .5s;
}

.coming-soon-content form .form-group .input-newsletter:-ms-input-placeholder {
  color: #858585;
  -ms-transition: all ease .5s;
  transition: all ease .5s;
}

.coming-soon-content form .form-group .input-newsletter::placeholder {
  color: #858585;
  transition: all ease .5s;
}

.coming-soon-content form .form-group .input-newsletter:focus {
  border-color: #FCC41B;
  outline: 0 !important;
}

.coming-soon-content form .form-group .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}

.coming-soon-content form .form-group .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.coming-soon-content form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: #7A5B00;
}

.coming-soon-content form .validation-success {
  margin-top: 15px;
}

.coming-soon-content form p {
  margin-bottom: 0;
  margin-top: 20px;
}

.coming-soon-content .newsletter-form .default-btn {
  margin-top: 0;
  position: absolute;
  top: 1px;
  right: 1px;
  border: none;
  border-radius: 0;
  padding: 12px 30px;
  background-color: #FCC41B;
}

@media only screen and (max-width: 767px) {
  .coming-soon-content {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .coming-soon-content .text-start {
    text-align: center !important;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .coming-soon-content h2 {
    font-size: 25px;
    line-height: normal !important;
  }
}

@media only screen and (max-width: 767px) {
  .coming-soon-content .col-lg-3.col-sm-4 {
    order: 1;
  }
}

@media only screen and (max-width: 767px) {
  .coming-soon-content .newsletter-form .default-btn {
    padding: 17px 15px;
    border-radius: 0;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 ERROR PAGE - 404
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.error-page {
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.error-page .error-icon-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 2rem;
  animation: bounce 3s ease infinite;
}

.error-page .error-icon-taxi {
  font-size: 3.5rem;
  color: #FCC41B;
  margin-right: 1rem;
  transform: rotate(-15deg);
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.error-page .error-icon-wrap span span {
  font-size: 2.1rem;
  font-family: 'Poppins', sans-serif;
  color: #1E1E1C;
  vertical-align: middle;
  font-weight: 700;
}

.error-page .error-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #1E1E1C;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.error-page .error-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #FCC41B;
  border-radius: 2px;
}

.error-page .error-subheading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #858585;
  font-weight: 400;
}

.error-page .error-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #1E1E1C;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-page .error-alt-message {
  font-style: italic;
  color: #858585;
  margin-bottom: 2.5rem;
}

.error-page .error-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background: #FCC41B;
  color: #1E1E1C;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 196, 27, 0.2);
  margin-bottom: 3rem;
}

.error-page .error-btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.error-page .error-btn:hover {
  background: #FFE07A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(252, 196, 27, 0.3);
}

.error-page .error-btn:hover i {
  transform: translateX(-5px);
}

.error-page .error-search-block {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #CDCBCB;
  border-radius: 50px;
  overflow: hidden;
}

.error-page .error-search-input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  background-color: #FFFFFF;
  color: #1E1E1C;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.error-page .error-search-input:focus {
  outline: none;
}

.error-page .error-search-input::placeholder {
  color: #CDCBCB;
}

.error-page .error-search-btn {
  background: #FCC41B;
  color: #1E1E1C;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page .error-search-btn:hover {
  background: #FFE07A;
}

@media (max-width: 768px) {
  .error-page .error-page {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .error-page .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .error-page .error-subheading {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .error-page .error-icon-wrap {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .error-page .error-icon-taxi {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .error-page .error-btn {
    padding: 10px 20px;
  }
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
  position: relative;
  background-color: #f4f4f4;
}

.footer .footer-top {
  position: relative;
  padding: 120px 0 70px;
  overflow: hidden;
  background: linear-gradient(110deg, #000 0%, #436400 100%);
  background-position: 0 0, 10px 1px;
  box-shadow: inset 0 0 30px rgba(252, 196, 27, 0.1), inset 0 0 60px rgba(30, 30, 28, 0.8);
  z-index: 1;
}

.footer .contact-box {
  background: linear-gradient(163deg, #dbf784 0%, #064d2c 100%);
  border-radius: 15px;
  padding: 52px 45px;
  margin-bottom: 120px;
  box-shadow: 0 0 0 2px #7A5B00;
  border: 8px solid #26241C;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer .contact-icon {
  width: 50px;
  height: 50px;
  background-color: #064d2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .contact-icon i {
  color: #fcc41b;
}

.footer .footer-contact-info {
  margin-left: 20px;
}

.footer .footer-contact-info span {
  position: relative;
  display: block;
  color: #064d2c;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer .footer-contact-info span:before {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 78%;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

.footer .footer-contact-info span:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 3px;
  background: #7A5B00;
  border-radius: 2px;
  animation: gold-slide 3s ease-in-out infinite alternate;
  display: block;
  will-change: left;
  backface-visibility: hidden;
}

.footer .contact-link, .footer-contact-info p {
  color: #1E1E1C;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
}

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

.footer .logo {
  display: block;
  margin-bottom: 32px;
}

.footer .logo img {
  height: 50px;
  width: auto;
}

.footer .about-text {
  color: #FFFFFF;
  font-size: 14px;
  margin-bottom: 22px;
}

.footer .widget-title {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
  overflow: hidden;
}

.footer .widget-title:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 224, 122, 0.3);
}

.footer .widget-title:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #FCC41B, #FFE07A, #D9A900);
  border-radius: 2px;
  animation: gold-slide 3s ease-in-out infinite alternate;
  display: block;
  will-change: left;
  backface-visibility: hidden;
}

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

.footer .footer-menu li {
  margin-bottom: 11px;
}

.footer .menu-link {
  height: 20px;
  display: inline-flex;
}

.footer .link-container {
  position: relative;
  overflow: hidden;
}

.footer .link-title1, .link-title2 {
  display: block;
  line-height: 1;
  transition: transform 0.4s ease;
}

.footer .link-title1 {
  color: #FFFFFF;
}

.footer .link-title2 {
  color: #FCC41B;
  transform: translateY(5px);
}

.footer .menu-link:hover .link-title1 {
  transform: translateY(-26px);
}

.footer .menu-link:hover .link-title2 {
  transform: translateY(-15px);
}

.footer .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer .social-links span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer .social-icons {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #7A5B00;
  color: #D9A900;
  border: 1px solid #FFE07A;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.footer .social-link::after {
  content: '';
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #FCC41B, #D9A900);
  z-index: 0;
  border-radius: 0 50% 50% 0;
}

.footer .social-link i {
  font-size: 15px;
  z-index: 2;
  transition: color 0.3s;
  color: #1E1E1C;
}

.footer .social-link:hover {
  transform: translateY(-4px) scale(1.05);
  /*box-shadow: 0 6px 12px rgba(124, 91, 0, 0.15);*/
}

.footer .social-link:hover::after {
  opacity: 0;
}

.footer .social-link[aria-label="Facebook"]:hover {
  background: #3b5998;
  border-color: #3b5998;
}

.footer .social-link[aria-label="Twitter"]:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.footer .social-link[aria-label="Instagram"]:hover {
  background: #e1306c;
  border-color: #e1306c;
}

.footer .social-link:hover i {
  color: #FFFFFF;
}

.footer .post-content {
  flex: 1;
}

.footer .post-date {
  font-size: 14px;
  color: #CDCBCB;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.footer .post-date i {
  margin-right: 5px;
}

.footer .post-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.footer .post-title a {
  color: #333333;
  transition: color 0.3s ease;
}

.footer .footer-recent-posts {
  margin-top: 5px;
}

.footer .footer-post + .footer-post {
  margin-top: 22px;
}

.footer .footer-post {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}

.footer .footer-post:hover .post-thumbnail img {
  transform: scale(1) rotate(0deg);
}

.footer .footer-post:hover .post-thumbnail:after {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.footer .post-thumbnail {
  max-width: 78px;
  height: 79px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0 0 2px #FCC41B;
  border: 5px solid #26241C;
}

.footer .post-thumbnail img {
  object-fit: cover;
  width: 100%;
  border-radius: 15px;
  transform: scale(1.1) rotate(5deg);
  transition: all 0.4s ease-in-out;
}

.footer .post-thumbnail:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transform: translateY(-30px);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.footer .footer-widget p {
  color: #FFFFFF;
}

.footer .newsletter-form {
  display: flex;
}

.footer .newsletter-form input {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  padding: 12px 15px;
  height: 56px;
  width: calc(100% - 76px);
  color: #FFFFFF;
  font-size: 15px;
}

.footer .newsletter-form input::placeholder {
  color: #FFFFFF;
}

.footer .newsletter-form button {
  width: 56px;
  height: 56px;
  background-color: #FCC41B;
  border: none;
  border-radius: 10px;
  margin-left: 20px;
}

.footer .footer-bottom {
  position: relative;
  padding: 28px 0 22px 0;
  background-color: #000000;
}

.footer .footer-bottom:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: clamp(2px, 0.3vw, 4px);
  background: linear-gradient(90deg, transparent 0%, #7a5b00 20%, #7a5b00 50%, #7a5b00 80%, transparent 100%);
}

.footer .copyright {
  color: #fdfcf8;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.footer .footer-links li {
  margin-left: 15px;
  padding-left: 15px;
  position: relative;
}

.footer .footer-links li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fdfcf8;
  transform: translateY(-50%);
}

.footer .footer-links li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.footer .footer-links li:first-child:after {
  display: none;
}

.footer .footer-links a {
  color: #fdfcf8;
  font-size: 14px;
  font-weight: 600;
}

.footer .footer-links a:hover {
  color: #FCC41B;
}

@media (max-width: 991px) {
  .footer .footer-top {
    padding: 60px 0 40px;
  }
}

@media (max-width: 991px) {
  .footer .contact-box {
    padding: 30px;
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .footer .footer-links {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .footer .copyright {
    text-align: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .footer .contact-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer .footer-contact-info {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .footer .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .footer .footer-links li {
    margin: 0 0 10px 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .footer .footer-links li:after {
    display: none;
  }
}

.footer {
  background-color: #f4f4f4;
}

.footer .footer-top {
  position: relative;
  background-color: #1E1E1C;
  padding: 120px 0 70px;
  overflow: hidden;
  z-index: 1;
}

.footer .footer-top {
  box-shadow: inset 0 0 30px rgba(252, 196, 27, 0.05), inset 0 0 60px rgba(30, 30, 28, 0.8);
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 PRELOADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 28, 0.95);
}

.preloader-center {
  width: 100%;
  height: 100%;
  position: relative;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.preloader-object {
  position: absolute;
  border-radius: 50%;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid transparent;
  animation: spin-scale 2s infinite;
}

#object-1 {
  width: 50px;
  height: 50px;
  top: 75px;
  left: 75px;
  border-top-color: #FCC41B;
  border-left-color: #FCC41B;
}

#object-2 {
  width: 70px;
  height: 70px;
  top: 65px;
  left: 65px;
  border-top-color: #FFE07A;
  border-left-color: #FFE07A;
  animation-delay: 0.2s;
}

#object-3 {
  width: 90px;
  height: 90px;
  top: 55px;
  left: 55px;
  border-top-color: #D9A900;
  border-left-color: #D9A900;
  animation-delay: 0.4s;
}

#object-4 {
  width: 110px;
  height: 110px;
  top: 45px;
  left: 45px;
  border-top-color: #7A5B00;
  border-left-color: #7A5B00;
  animation-delay: 0.6s;
}

/* ◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉
   🔸 KEYFRAMES / ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@keyframes horizontally {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(252, 196, 27, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(252, 196, 27, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(252, 196, 27, 0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pulse-ring-hover {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes counterGlow {
  0% {
    text-shadow: 0 0 5px rgba(252, 196, 27, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(252, 196, 27, 0.6);
  }
  100% {
    text-shadow: 0 0 5px rgba(252, 196, 27, 0.3);
  }
}

@keyframes particle-drift {
  0% {
    background-position: 0 0, 100px 150px, 50px 300px;
  }
  100% {
    background-position: 200px 300px, 300px 450px, 250px 600px;
  }
}

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

/* Keyframes für Animationen */

@keyframes line-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 122, 1) 50%, transparent);
  }
}

@keyframes gold-slide {
  0% {
    left: 0;
  }
  100% {
    left: calc(20% - 20px);
  }
}

@keyframes goldShine {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

@keyframes sticky {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

@keyframes float-bob-x3 {
  0% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(-15px);
  }
}

@keyframes smoothBackground {
  0% {
    background-position: 0% 50%;
    background-size: 100%;
  }
  50% {
    background-position: 100% 50%;
    background-size: 102%;
  }
  100% {
    background-position: 50% 100%;
    background-size: 100%;
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes particle-drift {
  0% {
    background-position: 0 0, 100px 150px, 50px 300px;
  }
  100% {
    background-position: 200px 300px, 300px 450px, 250px 600px;
  }
}

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

@keyframes particle-drift {
  0% {
    background-position: 0 0, 100px 150px, 50px 300px;
  }
  100% {
    background-position: 200px 300px, 300px 450px, 250px 600px;
  }
}

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

@keyframes gold-slide {
  0% {
    left: 0;
  }
  100% {
    left: calc(20% - 20px);
  }
}

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

@keyframes spin-scale {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(0.8);
  }
}



