/*CSS Table Of Content Ends Here*/
/*
--------------------------------------------------------------
[Table of Contents]
--------------------------------------------------------------
01. Variables & Mixins
02. Typography
03. Buttons
04. About 
05. Animation 
06. Brand 
07. Contact
08. Cta
09. Event
10. Faq
11. Feature
12. Footer
13. Header
14. Helping
15. Hero
16. Horse
17. Meanmenu
18. News
19. Preloader
20. Pricing
21. Section
22. Service
23. Shop
24. Team
25. Testimonial



--------------------------------------------------------------
*/ 
:root {
  --body: #fff; 
  --black: #000;
  --white: #fff;
  --theme: #C79C65;
  --header: #4A3F35;
  --text: #65625E;
  --border: #D1D0CE;
  --bg: #F5F5F5;
  --bg-2: #4A3F35;
  --bg-3: #F3EDE4;
  --bg-4: #FAF8F8;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position: relative;
  display: inline-block;
  padding: 16px 35px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s ease-in-out 0.1s;
  background-color: var(--theme);
  overflow: hidden;
}
.theme-btn::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 14px;
  background-color: var(--white);
  left: 8px;
  bottom: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transition: all 0.3s ease-in-out 0.1s;
}
.theme-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: var(--header);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.5, 1);
  transform: scale(0.5, 1);
}
.theme-btn:hover {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.theme-btn:hover::before {
  opacity: 1;
  z-index: -1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.theme-btn:hover::after {
  background-color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

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

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

input {
  color: var(--white);
}

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

h1 {
  font-size: 72px;
  font-weight: 400;
  line-height: 111%;
}
@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 117%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 133%;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}

h6 {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

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

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

span {
  margin: 0px;
}

.about-wrapper .about-content .about-text {
  margin-top: 20px;
  max-width: 636px;
}
.about-wrapper .about-content .list {
  margin-top: 30px;
}
.about-wrapper .about-content .list li {
  display: flex;
  gap: 16px;
}
.about-wrapper .about-content .list li:not(:last-child) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(177, 178, 182, 0.16);
  padding-bottom: 20px;
}
.about-wrapper .about-content .list li span {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  font-family: "Cinzel", serif;
}
.about-wrapper .about-content .list li .content h4 {
  margin-bottom: 5px;
}
.about-wrapper .about-content .list li .content p {
  max-width: 514px;
}
.about-wrapper .about-content .list li:not(:last-child) {
  margin-bottom: 16px;
}
.about-wrapper .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-button {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.about-wrapper .about-content .about-button .call-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-wrapper .about-content .about-button .call-info .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: #F5F5F5;
  color: #65625E;
}
.about-wrapper .about-content .about-button .call-info h4 {
  font-size: 20px;
  font-family: "DM Sans", sans-serif;
}
.about-wrapper .about-content .about-button .call-info h4 a {
  color: var(--theme);
}
.about-wrapper .about-image {
  text-align: right;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image {
    text-align: left;
  }
  .about-wrapper .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper .about-image .about-image-2 {
  left: -30px;
  top: 20%;
  transform: translateY(-50%);
  position: absolute;
}
@media (max-width: 1399px) {
  .about-wrapper .about-image .about-image-2 {
    left: 0;
    top: initial;
    bottom: 0;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-2 {
    max-width: 200px;
  }
}
.about-wrapper .about-image .about-image-2::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 244px;
  height: 314px;
  border: 3px solid var(--theme);
}
@media (max-width: 575px) {
  .about-wrapper .about-image .about-image-2::before {
    display: none;
  }
}

.about-section {
  position: relative;
}
.about-section .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .about-section .left-shape {
    display: none;
  }
}
.about-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .about-section .right-shape {
    display: none;
  }
}

.about-wrapper-2 .about-thumb {
  margin-left: -310px;
  max-width: 863px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-thumb {
    margin-left: 0;
  }
}
.about-wrapper-2 .about-thumb img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-content {
  margin-left: 30px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
    margin-top: 0;
  }
}
.about-wrapper-2 .about-content .text {
  margin-top: 20px;
  max-width: 678px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-content .text {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.about-wrapper-2 .about-content .about-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .about-wrapper-2 .about-content .about-info-item {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-2 .about-content .about-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(74, 63, 53, 0.2);
  padding-right: 20px;
}
.about-wrapper-2 .about-content .about-info-item .info-item .content span {
  color: var(--theme);
  display: inline-block;
  margin-top: 5px;
}
.about-wrapper-2 .about-content .about-info-item p {
  max-width: 327px;
}
.about-wrapper-2 .about-content .about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 991px) {
  .about-wrapper-2 .about-content .about-bottom {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-2 .about-content .about-bottom .about-box-image {
  position: relative;
  overflow: hidden;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 9;
  padding: 30px;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box .shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box .shape img {
  border-radius: 0;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box h2 {
  color: var(--white);
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box h6 {
  color: var(--white);
  margin-bottom: 5px;
}
.about-wrapper-2 .about-content .about-bottom .about-box-image .box .star {
  color: var(--theme);
}

.about-section-3 {
  position: relative;
  margin: 0 60px;
  z-index: 9;
}
@media (max-width: 1600px) {
  .about-section-3 {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .about-section-3 {
    margin: 0 30px;
  }
}
@media (max-width: 575px) {
  .about-section-3 {
    margin: 0 15px;
  }
}
.about-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(74, 63, 53, 0.9);
  z-index: -1;
}
.about-section-3 .horse-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
@media (max-width: 1600px) {
  .about-section-3 .horse-shape {
    left: -70px;
    max-width: 445px;
  }
}
@media (max-width: 1399px) {
  .about-section-3 .horse-shape {
    display: none;
  }
}
.about-section-3 .horse-shape img {
  width: 100%;
  height: 100%;
}

.about-wrapper-3 .about-content {
  margin-bottom: 360px;
}
@media (max-width: 1600px) {
  .about-wrapper-3 .about-content {
    margin-bottom: 300px;
  }
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-content {
    margin-bottom: 0;
  }
}
.about-wrapper-3 .about-content .text {
  margin-top: 20px;
  color: var(--white);
  max-width: 570px;
}
.about-wrapper-3 .about-item {
  display: flex;
  align-items: end;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-3 .about-item .about-image {
  margin-left: -180px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-item .about-image {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-item .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-item .content {
  margin-bottom: -80px;
  margin-left: -140px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-item .content {
    margin-bottom: 0;
    margin-left: 0;
  }
}
.about-wrapper-3 .about-item .content .group-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-item .content .group-item {
    flex-wrap: wrap;
  }
}
.about-wrapper-3 .about-item .content .group-item span {
  color: var(--theme);
}
.about-wrapper-3 .about-item .content p {
  max-width: 450px;
  color: var(--white);
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper-3 .about-item .content p {
    margin-bottom: 30px;
  }
}
.about-wrapper-3 .about-item .content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.about-wrapper-3 .about-item .content .theme-btn::after {
  background-color: var(--theme);
}
.about-wrapper-3 .about-item .content .theme-btn::before {
  background-color: var(--theme);
}
.about-wrapper-3 .about-item .content .theme-btn:hover {
  color: var(--white);
}
.about-wrapper-3 .about-item .content .theme-btn:hover::after {
  background-color: var(--white);
}

.about-wrapper-4 .about-item-1 {
  margin-bottom: -120px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-item-1 {
    margin-bottom: 0;
  }
}
.about-wrapper-4 .about-item-1.style-top {
  margin-bottom: 0;
  margin-top: -120px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-item-1.style-top {
    margin-top: 0;
  }
}
.about-wrapper-4 .about-item-1 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-4 .about-item-1 .about-image.style-2 {
  margin-top: 30px;
}
.about-wrapper-4 .about-content {
  margin-left: 20px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-4 .about-content .text {
  max-width: 600px;
  margin-top: 10px;
}
.about-wrapper-4 .about-content .text-2 {
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  padding-top: 28px;
  margin-top: 28px;
  max-width: 690px;
}
.about-wrapper-4 .about-content .bottom-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 1399px) {
  .about-wrapper-4 .about-content .bottom-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-wrapper-4 .about-content .bottom-item .theme-btn {
  background-color: var(--header);
}
.about-wrapper-4 .about-content .bottom-item .theme-btn::before {
  background-color: var(--theme);
}
.about-wrapper-4 .about-content .bottom-item .theme-btn::after {
  background-color: var(--white);
}
.about-wrapper-4 .about-content .bottom-item span {
  text-transform: uppercase;
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-4 .about-content .bottom-item .call-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper-4 .about-content .bottom-item .call-items .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
}
.about-wrapper-4 .about-content .bottom-item .call-items .content span {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--header);
}
.about-wrapper-4 .about-content .bottom-item .call-items .content h6 {
  font-weight: 800;
  font-family: "DM Sans", sans-serif;
}
.about-wrapper-4 .about-content .bottom-item .call-items .content h6 a {
  color: var(--header);
}

.about-inner-wrapper .about-left-item {
  position: relative;
}
.about-inner-wrapper .about-left-item .rating-box {
  transform: rotate(-30deg);
  padding: 20px 25px;
  position: absolute;
  top: 235px;
  left: 235px;
  z-index: 999;
}
@media (max-width: 1399px) {
  .about-inner-wrapper .about-left-item .rating-box {
    display: none;
  }
}
.about-inner-wrapper .about-left-item .rating-box h2 {
  text-transform: uppercase;
  color: var(--white);
}
.about-inner-wrapper .about-left-item .rating-box p {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.about-inner-wrapper .about-left-item .rating-box .star i {
  color: var(--white);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.about-inner-wrapper .about-left-item .about-image {
  position: relative;
  overflow: hidden;
}
.about-inner-wrapper .about-left-item .about-image.style-2 {
  margin-top: 200px;
}
@media (max-width: 991px) {
  .about-inner-wrapper .about-left-item .about-image.style-2 {
    margin-top: 0;
  }
}
.about-inner-wrapper .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.about-inner-wrapper .about-left-item .about-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transition: all 0.8s ease;
}
.about-inner-wrapper .about-left-item .about-image:hover img {
  transform: scale(1.05);
}
.about-inner-wrapper .about-left-item .about-image:hover::after {
  left: 120%;
}
.about-inner-wrapper .about-content .nav {
  display: flex;
  margin-bottom: 30px;
  margin-top: 30px;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .about-inner-wrapper .about-content .nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-inner-wrapper .about-content .nav li .nav-link {
  transition: all 0.4s ease-in-out;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(74, 63, 53, 0.2);
  line-height: 1;
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
}
.about-inner-wrapper .about-content .nav li .nav-link.active {
  position: relative;
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.about-inner-wrapper .about-content .about-bootom-item span {
  font-weight: 600;
  color: rgb(101, 98, 94);
  max-width: 690px;
}
.about-inner-wrapper .about-content .about-bootom-item .text {
  max-width: 690px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 25px;
  margin-bottom: 40px;
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item {
  display: flex;
  align-items: center;
  gap: 75px;
}
@media (max-width: 1399px) {
  .about-inner-wrapper .about-content .about-bootom-item .about-button-item {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1399px) {
  .about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item {
    gap: 25px;
  }
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item .info-item::after {
  position: absolute;
  content: "";
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item .info-item .cont p {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--header);
}
.about-inner-wrapper .about-content .about-bootom-item .about-button-item .right-info-item .info-item .cont span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  text-transform: uppercase;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

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

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

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

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

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

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes borderAnim {
  0% {
    width: 0;
  }
  100% {
    width: 44px;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }
  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(30);
    opacity: 0;
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes scale {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
@keyframes moveTruck {
  0% {
    right: -100px;
  }
  100% {
    right: 100%;
  }
}
@keyframes moveHorse {
  0% {
    left: -100px;
  }
  100% {
    left: 100%;
  }
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes horseRunFront {
  0% {
    transform: translateZ(0) scale(1) rotateX(0deg);
  }
  40% {
    transform: translateZ(120px) scale(1.08) rotateX(-3deg);
  }
  70% {
    transform: translateZ(200px) scale(1.15) rotateX(-5deg);
  }
  100% {
    transform: translateZ(0) scale(1) rotateX(0deg);
  }
}
.brand-item {
  position: relative;
  overflow: hidden;
}
.brand-item .brand-three-active-media {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.brand-item .brand-three-active-media img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) contrast(100%);
  mix-blend-mode: multiply;
}
.brand-item .brand-three-hover-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30%);
  transition: all 0.6s ease-in-out;
  z-index: 2;
}
@media (max-width: 1399px) {
  .brand-item .brand-three-hover-media img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .brand-item .brand-three-hover-media img {
    width: initial;
  }
}
.brand-item:hover .brand-three-active-media {
  opacity: 0;
  visibility: hidden;
}
.brand-item:hover .brand-three-hover-media {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.brand-item:hover .brand-three-hover-media img {
  filter: none;
}

.brand-section .brand-slider {
  margin-left: -125px;
}
.brand-section .top-text {
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .brand-section .top-text {
    margin-bottom: 30px;
  }
}
.brand-section .top-text h2 {
  text-transform: uppercase;
}

.contact-info-box {
  text-align: center;
}
.contact-info-box .icon {
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--header);
}
.contact-info-box .content h3 {
  margin-bottom: 10px;
}
.contact-info-box .content .info-list li:not(:last-child) {
  margin-bottom: 5px;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 724px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}

.contact-form {
  background-color: var(--white);
  padding: 80px 100px 60px 100px;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1399px) {
  .contact-form {
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .contact-form {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 30px;
  }
}
.contact-form .title {
  margin-bottom: 30px;
  font-size: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-form .title {
    font-size: 30px;
  }
}
.contact-form .form-clt input, .contact-form .form-clt textarea {
  border-radius: 4px;
  border: none;
  background-color: #F5F5F5;
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
  outline: none;
}
.contact-form .form-clt textarea {
  padding-bottom: 0px;
  resize: none;
}

@media (max-width: 1399px) {
  .contact-form-section {
    overflow: hidden;
  }
}

.contact-map iframe {
  width: 100%;
  height: 680px;
}
@media (max-width: 1399px) {
  .contact-map iframe {
    height: 630px;
  }
}
@media (max-width: 991px) {
  .contact-map iframe {
    height: 600px;
  }
}

.map-area {
  position: relative;
}
.map-area .map-box {
  background-color: var(--white);
  position: absolute;
  top: 120px;
  left: 255px;
}
@media (max-width: 1899px) {
  .map-area .map-box {
    left: 180px;
  }
}
@media (max-width: 1600px) {
  .map-area .map-box {
    left: 20px;
  }
}
@media (max-width: 1399px) {
  .map-area .map-box {
    left: 30px;
    top: 100px;
  }
}
@media (max-width: 991px) {
  .map-area .map-box {
    top: 80px;
  }
}
@media (max-width: 575px) {
  .map-area .map-box {
    left: 15px;
  }
}
.map-area .map-box .top-ber {
  background-color: var(--theme);
  padding: 20px 40px;
}
@media (max-width: 1399px) {
  .map-area .map-box .top-ber {
    padding: 20px 20px;
  }
}
.map-area .map-box .top-ber h3 {
  color: var(--white);
}
.map-area .map-box .dat-top-item {
  padding: 0px 40px 0;
}
@media (max-width: 1399px) {
  .map-area .map-box .dat-top-item {
    padding: 0px 20px 0;
  }
}
.map-area .map-box .dat-top-item .date-item {
  display: flex;
  align-items: center;
  gap: 90px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (max-width: 1399px) {
  .map-area .map-box .dat-top-item .date-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.map-area .map-box .dat-top-item .date-item.style-2 {
  border-bottom: none;
}
.map-area .map-box .dat-top-item .date-item .start-date.style-1 {
  margin-left: 62px;
}
@media (max-width: 1399px) {
  .map-area .map-box .dat-top-item .date-item .start-date.style-1 {
    margin-left: 48px;
  }
}
@media (max-width: 767px) {
  .map-area .map-box .dat-top-item .date-item .start-date.style-1 {
    margin-left: 28px;
  }
}
.map-area .map-box .dat-top-item .date-item .start-date.style-3 {
  margin-left: 40px;
}
.map-area .map-box .dat-top-item .date-item .start-date p {
  font-size: 30px;
  font-weight: 600;
  color: rgb(74, 63, 53);
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .map-area .map-box .dat-top-item .date-item .start-date p {
    font-size: 25px;
  }
}
.map-area .map-box .dat-top-item .date-item .start-date span {
  font-size: 20px;
  font-weight: 600;
  color: #65625E;
}
@media (max-width: 1399px) {
  .map-area .map-box .dat-top-item .date-item .start-date span {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .map-area .map-box .dat-top-item .date-item .start-date span {
    font-size: 14px;
  }
}
.map-area .map-box .dat-top-item .date-item .start-date span a {
  color: #65625E;
}

.instagram-image {
  position: relative;
  overflow: hidden;
}
.instagram-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  top: 30px;
  bottom: 0px;
  right: 0;
  background: rgba(183, 142, 95, 0.6);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  z-index: 9;
}
.instagram-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.instagram-image .icon {
  display: inline-block;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.instagram-image:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.instagram-image:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.instagram-image:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

@media (max-width: 1399px) {
  .instagram-section .instagram-slider {
    margin-top: 30px;
  }
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cta-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.cta-wrapper .cta-logo {
  background-color: var(--theme);
  padding: 32px 95px;
  text-align: center;
}
@media (max-width: 1399px) {
  .cta-wrapper .cta-logo {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper h3 br {
    display: none;
  }
}
.cta-wrapper form {
  max-width: 400px;
  width: 100%;
}
.cta-wrapper .form-clt {
  position: relative;
}
.cta-wrapper .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: var(--text);
  line-height: 1;
  padding: 25px 0px 25px 25px;
  max-width: 400px;
}
.cta-wrapper .form-clt input::placeholder {
  color: var(--text);
}
.cta-wrapper .form-clt .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}
@media (max-width: 575px) {
  .cta-wrapper .form-clt .theme-btn {
    padding: 0 16px;
  }
}

.cta-section {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .cta-section {
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.cta-section .line-shape-animation {
  height: 28px;
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  background-size: cover;
}
@media (max-width: 1399px) {
  .cta-section .line-shape-animation {
    display: none;
  }
}

.instagram-section-4 .instagram-slider {
  margin-left: -100px;
  margin-right: -100px;
}
@media (max-width: 1399px) {
  .instagram-section-4 .instagram-slider {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.instagram-image-4 {
  position: relative;
  overflow: hidden;
}
.instagram-image-4.style-2 {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .instagram-image-4.style-2 {
    margin-top: 0;
  }
}
.instagram-image-4::before, .instagram-image-4::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(183, 142, 95, 0.6);
  transition: transform 0.6s ease;
  z-index: 2;
}
.instagram-image-4::before {
  top: 0;
  transform: translateY(-100%);
}
.instagram-image-4::after {
  bottom: 0;
  transform: translateY(100%);
}
.instagram-image-4 img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: transform 1.5s ease-out;
}
.instagram-image-4 .icon {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 999;
  font-size: 32px;
}
.instagram-image-4:hover::before {
  transform: translateY(0);
}
.instagram-image-4:hover::after {
  transform: translateY(0);
}
.instagram-image-4:hover img {
  transform: scale(1.1);
}
.instagram-image-4:hover .icon {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.event-wrapper {
  padding-top: 330px;
  margin-top: -320px;
  position: relative;
}
.event-wrapper .line-shape-animation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  animation: ShapeAnim 50s linear infinite;
  overflow: hidden;
}
.event-wrapper .event-items-wrap {
  padding: 60px 0 100px;
}
.event-wrapper .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .event-wrapper .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.event-wrapper .date-list li {
  color: #FCFCFC;
}
.event-wrapper .date-list li i {
  margin-right: 10px;
}
.event-wrapper .timer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .event-wrapper .timer-wrap {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.event-wrapper .timer-wrap .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .event-wrapper .timer-wrap .coming-soon-time {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .event-wrapper .timer-wrap .coming-soon-time {
    margin-top: 30px;
  }
}
.event-wrapper .timer-wrap .coming-soon-time .timer-content {
  text-align: center;
  width: 98px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px);
}
@media (max-width: 1399px) {
  .event-wrapper .timer-wrap .coming-soon-time .timer-content {
    padding-top: 20px;
  }
}
.event-wrapper .timer-wrap .coming-soon-time .timer-content h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
}
@media (max-width: 1399px) {
  .event-wrapper .timer-wrap .coming-soon-time .timer-content h3 {
    font-size: 40px;
  }
}
.event-wrapper .timer-wrap .coming-soon-time .timer-content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 5px;
}
.event-wrapper .timer-wrap .coming-soon-time span {
  color: var(--white);
  font-size: 60px;
}

.event-section-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1899px) {
  .event-section-2 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .event-section-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .event-section-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .event-section-2 .container-fluid {
    padding: 0 15px;
  }
}
.event-section-2 .text {
  text-align: center;
  text-transform: uppercase;
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  display: block;
  margin-bottom: 48px;
}
@media (max-width: 1399px) {
  .event-section-2 .text {
    margin-bottom: 30px;
    font-size: 90px;
  }
}
@media (max-width: 991px) {
  .event-section-2 .text {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .event-section-2 .text {
    font-size: 45px;
  }
}

.event-card-items-2 {
  max-width: 450px;
}
.event-card-items-2.style-2 {
  margin-top: 160px;
}
@media (max-width: 1399px) {
  .event-card-items-2.style-2 {
    margin-top: 30px;
  }
}
.event-card-items-2.style-3 {
  margin-top: 250px;
}
@media (max-width: 1399px) {
  .event-card-items-2.style-3 {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .event-card-items-2.style-3 {
    margin-top: 0px;
  }
}
.event-card-items-2 .event-image {
  position: relative;
  overflow: hidden;
}
.event-card-items-2 .event-image img {
  width: 100%;
  height: 100%;
}
.event-card-items-2 .event-image span {
  font-size: 40px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
}
.event-card-items-2 .event-image .event-content {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #4A3F35;
  padding: 30px 20px;
}
.event-card-items-2 .event-image .event-content::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  transition: 0.5s;
  background: var(--theme);
  z-index: -1;
}
.event-card-items-2 .event-image .event-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.event-card-items-2 .event-image .event-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.event-card-items-2 .event-image .event-content p {
  color: var(--white);
  max-width: 286px;
  margin: 0 auto;
  text-align: center;
}
.event-card-items-2:hover .event-image .event-content h3 {
  position: relative;
  z-index: 999;
}
.event-card-items-2:hover .event-image .event-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.event-card-items-2:hover .event-image .event-content h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.event-card-items-2:hover .event-image .event-content p {
  position: relative;
  z-index: 999;
}
.event-card-items-2:hover .event-image .event-content::before {
  width: 100%;
  z-index: 9;
}

.our-event-items-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  margin-top: 30px;
}
@media (max-width: 991px) {
  .our-event-items-4 {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}
.our-event-items-4 .left-item {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1399px) {
  .our-event-items-4 .left-item {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .our-event-items-4 .left-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.our-event-items-4 .left-item .event-image {
  position: relative;
}
.our-event-items-4 .left-item .event-image span {
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--white);
  background-color: var(--theme);
  padding: 4px 12px;
  font-family: "Cinzel", serif;
}
.our-event-items-4 .left-item .event-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .our-event-items-4 .left-item .event-image {
    flex-basis: 100%;
  }
}
.our-event-items-4 .left-item .event-content .event-list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .our-event-items-4 .left-item .event-content .event-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.our-event-items-4 .left-item .event-content .event-list li {
  font-weight: 400;
  color: rgb(101, 98, 94);
}
.our-event-items-4 .left-item .event-content .event-list li i {
  margin-right: 5px;
  color: var(--theme);
}
.our-event-items-4 .left-item .event-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.our-event-items-4 .left-item .event-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.our-event-items-4 .left-item .event-content span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--theme);
  display: inline-block;
  margin-top: 15px;
}
.our-event-items-4 .right-item {
  display: flex;
  align-items: center;
  gap: 65px;
  padding-right: 60px;
  border-left: 1px solid rgba(101, 98, 94, 0.2);
  padding-left: 60px;
  height: 94px;
}
@media (max-width: 1399px) {
  .our-event-items-4 .right-item {
    height: initial;
    padding-left: 0;
    padding-right: 30px;
    border-left: none;
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .our-event-items-4 .right-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.our-event-items-4 .right-item p {
  max-width: 333px;
  border-right: 1px solid rgba(101, 98, 94, 0.2);
  padding-right: 25px;
  height: 94px;
}
@media (max-width: 1399px) {
  .our-event-items-4 .right-item p {
    padding-right: 0;
    border-right: none;
    height: initial;
  }
}
.our-event-items-4 .right-item .icon {
  color: var(--header);
  font-size: 30px;
  transition: all 0.4s ease-in-out;
}
.our-event-items-4 .right-item .icon:hover {
  color: var(--theme);
}

.event-section-4 .nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 30px;
  gap: 70px;
  justify-content: center;
  position: relative;
}
@media (max-width: 991px) {
  .event-section-4 .nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.event-section-4 .nav li .nav-link {
  transition: all 0.4s ease-in-out;
  padding: 12px 15px;
  border-radius: 100px;
  background: rgba(199, 156, 101, 0.2);
  line-height: 1;
  color: var(--header);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.event-section-4 .nav li .nav-link::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 2px;
  background-color: rgb(199, 156, 101);
  top: 20px;
  left: -58px;
}
@media (max-width: 1399px) {
  .event-section-4 .nav li .nav-link::before {
    display: none;
  }
}
.event-section-4 .nav li .nav-link.style-1::before {
  display: none;
}
.event-section-4 .nav li .nav-link.active {
  position: relative;
  border-radius: 100px;
  background: var(--theme);
  color: var(--white);
}

.countdown-wrapper {
  background-color: var(--theme);
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .countdown-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.countdown-wrapper .right-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .countdown-wrapper .right-image {
    display: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.countdown-wrapper .right-image img {
  width: 100%;
  height: 100%;
}
.countdown-wrapper .shape {
  position: absolute;
  right: 28px;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.countdown-wrapper .shape img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .countdown-wrapper .shape {
    display: none;
  }
}
.countdown-wrapper .shape-2 {
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.countdown-wrapper .shape-2 img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .countdown-wrapper .shape-2 {
    display: none;
  }
}
.countdown-wrapper .countdown-content {
  padding: 90px 0px 90px 70px;
}
@media (max-width: 1399px) {
  .countdown-wrapper .countdown-content {
    padding: 30px;
  }
}
.countdown-wrapper .countdown-content h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.countdown-wrapper .countdown-content .rejister-btn {
  font-size: 50px;
  font-weight: 400;
  font-family: "Cinzel", serif;
  text-decoration: underline;
}
@media (max-width: 1399px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .countdown-wrapper .countdown-content .rejister-btn {
    font-size: 25px;
  }
}
.countdown-wrapper .countdown-content .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .countdown-wrapper .countdown-content .coming-soon-time {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .countdown-wrapper .countdown-content .coming-soon-time {
    margin-top: 30px;
  }
}
.countdown-wrapper .countdown-content .coming-soon-time .timer-content {
  text-align: center;
  width: 98px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .countdown-wrapper .countdown-content .coming-soon-time .timer-content {
    padding-top: 20px;
  }
}
.countdown-wrapper .countdown-content .coming-soon-time .timer-content h3 {
  font-size: 50px;
  font-weight: 700;
  color: var(--header);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
}
@media (max-width: 1399px) {
  .countdown-wrapper .countdown-content .coming-soon-time .timer-content h3 {
    font-size: 40px;
  }
}
.countdown-wrapper .countdown-content .coming-soon-time .timer-content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--header);
  margin-top: 25px;
}
.countdown-wrapper .countdown-content .coming-soon-time span {
  color: var(--white);
  font-size: 60px;
}

.program-details-section {
  position: relative;
}
.program-details-section .top-details-image {
  margin-top: 120px;
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
}
@media (max-width: 575px) {
  .program-details-section .top-details-image {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.program-details-section .top-details-image img {
  width: 100%;
  height: 100%;
}
.program-details-section .array-items-4 {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 12.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .program-details-section .array-items-4 {
    display: none;
  }
}
.program-details-section .array-items-4 .array-prev, .program-details-section .array-items-4 .array-next {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  position: relative;
  z-index: 999;
}

.program-details-wrapper .program-details-content .program-details-box {
  background: var(--white);
  box-shadow: 0px 4px 80px rgba(74, 63, 53, 0.15);
  padding: 30px;
  margin-top: -80px;
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .program-details-box {
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.program-details-wrapper .program-details-content .program-details-box .left-list .list {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .program-details-box .left-list .list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.program-details-wrapper .program-details-content .program-details-box .left-list .list li {
  font-weight: 400;
  color: rgb(101, 98, 94);
}
.program-details-wrapper .program-details-content .program-details-box .left-list .list li i {
  margin-right: 5px;
  color: var(--theme);
}
.program-details-wrapper .program-details-content .program-details-box .left-list span {
  color: rgb(101, 98, 94);
}
.program-details-wrapper .program-details-content .program-details-box .left-list span i {
  margin-right: 5px;
  color: var(--theme);
}
.program-details-wrapper .program-details-content .program-details-box .content {
  position: relative;
}
.program-details-wrapper .program-details-content .program-details-box .content::before {
  position: absolute;
  content: "";
  left: -30px;
  top: 10px;
  background-color: rgba(74, 63, 53, 0.2);
  width: 1px;
  height: 51px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .program-details-box .content::before {
    display: none;
  }
}
.program-details-wrapper .program-details-content .program-details-box .content h3 {
  font-size: 30px;
  text-transform: uppercase;
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.program-details-wrapper .program-details-content .program-details-box .content span {
  color: var(--theme);
  font-size: 20px;
  font-weight: 600;
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time::before {
  position: absolute;
  content: "";
  left: -35px;
  top: 30px;
  background-color: rgba(74, 63, 53, 0.2);
  width: 1px;
  height: 51px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .program-details-box .coming-soon-time::before {
    display: none;
  }
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-details-content .program-details-box .coming-soon-time {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time .timer-content {
  text-align: center;
  width: 75px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(250, 248, 248);
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time .timer-content h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--header);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  border: none;
  padding-top: 0;
  margin-top: 0;
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time .timer-content p {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  background-color: var(--theme);
  margin-top: 20px;
}
.program-details-wrapper .program-details-content .program-details-box .coming-soon-time span {
  color: rgb(217, 217, 217);
  font-size: 40px;
}
.program-details-wrapper .program-details-content .program-details-box .theme-btn {
  background-color: var(--header);
}
.program-details-wrapper .program-details-content .program-details-box .theme-btn::before {
  background-color: var(--theme);
}
.program-details-wrapper .program-details-content .program-details-box .theme-btn:hover::after {
  background-color: var(--white);
}
.program-details-wrapper .program-details-content h3 {
  font-size: 30px;
  text-transform: uppercase;
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  padding-top: 40px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content h3 {
    padding-top: 30px;
    margin-top: 30px;
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .program-details-wrapper .program-details-content h3 {
    font-size: 22px;
  }
}
.program-details-wrapper .program-details-content .details-image {
  margin-top: 50px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .details-image {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.program-details-wrapper .program-details-content .details-image img {
  width: 100%;
  height: 100%;
}
.program-details-wrapper .program-details-content .list-item li {
  color: #65625E;
  position: relative;
  padding-left: 10px;
}
.program-details-wrapper .program-details-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}
.program-details-wrapper .program-details-content .list-item li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--text);
  border-radius: 20px;
  top: 10px;
  left: 0;
}
.program-details-wrapper .program-details-content .sideber-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background-color: var(--header);
  margin-bottom: 60px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .sideber-box {
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
.program-details-wrapper .program-details-content .sideber-box p {
  color: var(--white);
  font-size: 24px;
  font-style: italic;
  line-height: 150%;
  max-width: 940px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .sideber-box p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .program-details-wrapper .program-details-content .sideber-box p {
    font-size: 16px;
  }
}
.program-details-wrapper .program-details-content .sideber-box .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.program-details-wrapper .program-details-content .sideber-box .info-item::before {
  position: absolute;
  content: "";
  left: -70px;
  top: -20px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 125px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .sideber-box .info-item::before {
    display: none;
  }
}
.program-details-wrapper .program-details-content .sideber-box .info-item .cont p {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  font-style: normal;
}
.program-details-wrapper .program-details-content .sideber-box .info-item .cont span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  text-transform: uppercase;
}
.program-details-wrapper .program-details-content .thumb img {
  width: 100%;
  height: 100%;
}
.program-details-wrapper .program-details-content h4 {
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content h4 {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .program-details-wrapper .program-details-content h4 {
    font-size: 22px;
  }
}
.program-details-wrapper .program-details-content .tag-share-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding: 30px 0;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .tag-share-wrap {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.program-details-wrapper .program-details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  margin-right: 20px;
  color: rgb(74, 63, 53);
  font-family: "Cinzel", serif;
}
@media (max-width: 1399px) {
  .program-details-wrapper .program-details-content .tag-share-wrap .tagcloud span {
    margin-right: 10px;
  }
}
.program-details-wrapper .program-details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 8px 12px;
  line-height: 1;
  background: rgb(243, 237, 228);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-details-content .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
  }
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.program-details-wrapper .program-details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.program-details-wrapper .program-details-content .tag-share-wrap .social-share span {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  margin-right: 20px;
  color: rgb(74, 63, 53);
  font-family: "Cinzel", serif;
}
.program-details-wrapper .program-details-content .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(101, 98, 94, 0.2);
}
.program-details-wrapper .program-details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.program-details-wrapper .program-details-content .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}

.faq-wrapper .faq-content .text {
  max-width: 590px;
  margin-top: 20px;
}
.faq-wrapper .faq-content .faq-button {
  display: flex;
  align-items: center;
  margin-top: 48px;
  gap: 24px;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-content .faq-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.faq-wrapper .faq-content .faq-button .theme-btn.theme-border {
  border: 1px solid var(--header);
  color: var(--header);
  background-color: transparent;
}
.faq-wrapper .faq-content .faq-button .theme-btn.theme-border::before {
  background-color: var(--theme);
}
.faq-wrapper .faq-content .faq-button .theme-btn.theme-border::after {
  background-color: var(--header);
}
.faq-wrapper .faq-content .faq-button .theme-btn.theme-border:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.faq-wrapper .faq-content .faq-button .theme-btn.theme-border:hover::after {
  background-color: var(--white);
}
.faq-wrapper .faq-items {
  background-color: var(--white);
  padding: 48px;
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-items {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .faq-wrapper .faq-items {
    padding: 20px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--bg);
  padding: 0;
}
.faq-wrapper .faq-items .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 24px 30px;
  font-family: "Cinzel", serif;
  color: var(--header);
}
@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
}
.faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
}
.faq-wrapper .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\e093";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  transform: rotate(90deg);
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-wrapper .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq-wrapper .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-wrapper .faq-items .accordion .accordion-button.collapsed::before {
  content: "\e09f";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme);
  transform: rotate(0);
}

.faq-section {
  position: relative;
  z-index: 9;
}
.faq-section .faq-shape {
  position: absolute;
  bottom: 50px;
  left: 46%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 1399px) {
  .faq-section .faq-shape {
    display: none;
  }
}

.faq-wrapper-2 .faq-image {
  max-width: 394px;
  z-index: 9;
  position: relative;
}
@media (max-width: 1600px) {
  .faq-wrapper-2 .faq-image {
    margin-left: 80px;
  }
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-image {
    max-width: initial;
    margin-left: 0;
  }
}
.faq-wrapper-2 .faq-image img {
  width: 100%;
  height: 100%;
}
.faq-wrapper-2 .faq-image .faq-image-2 {
  position: absolute;
  top: 200px;
  left: -130px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .faq-wrapper-2 .faq-image .faq-image-2 {
    left: -80px;
  }
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-image .faq-image-2 {
    display: none;
  }
}
.faq-wrapper-2 .faq-image .faq-image-3 {
  position: absolute;
  top: 70px;
  right: -140px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .faq-wrapper-2 .faq-image .faq-image-3 {
    right: -102px;
  }
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-image .faq-image-3 {
    display: none;
  }
}
.faq-wrapper-2 .faq-content {
  margin-left: 60px;
}
@media (max-width: 1600px) {
  .faq-wrapper-2 .faq-content {
    margin-left: 70px;
  }
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-content {
    margin-left: 0;
  }
}
.faq-wrapper-2 .faq-content .faq-items {
  margin-top: 20px;
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: #F3EDE4;
  padding: 0;
  border-radius: 0 !important;
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 24px 20px;
  font-family: "Cinzel", serif;
  color: var(--header);
}
@media (max-width: 575px) {
  .faq-wrapper-2 .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 575px) {
  .faq-wrapper-2 .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\e093";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  transform: rotate(90deg);
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-wrapper-2 .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\e09f";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme);
  transform: rotate(0);
}

.faq-wrapper-3 .faq-content {
  margin-left: 0px;
}
@media (max-width: 1600px) {
  .faq-wrapper-3 .faq-content {
    margin-left: 70px;
  }
}
@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content {
    margin-left: 0;
  }
}
.faq-wrapper-3 .faq-content .faq-items {
  margin-top: 20px;
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: var(--white);
  padding: 0;
  border-radius: 0 !important;
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 24px 20px;
  font-family: "Cinzel", serif;
  color: var(--header);
}
@media (max-width: 575px) {
  .faq-wrapper-3 .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 16px;
    padding: 24px 16px;
  }
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  line-height: 32px;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 575px) {
  .faq-wrapper-3 .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button {
  background-color: var(--theme);
  color: var(--white) !important;
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\e093";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  transform: rotate(90deg);
  top: 13px;
  right: 22px;
  font-size: 14px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button::before {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header) !important;
}
.faq-wrapper-3 .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\e09f";
  font-family: "Font Awesome 6 Pro";
  color: var(--white);
  background-color: var(--theme);
  transform: rotate(0);
}

.faq-section-3 {
  position: relative;
  z-index: 9;
}
.faq-section-3 .faq-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1899px) {
  .faq-section-3 .faq-image {
    max-width: 760px;
  }
}
@media (max-width: 1399px) {
  .faq-section-3 .faq-image {
    display: none;
  }
}
.faq-section-3 .faq-image img {
  width: 100%;
  height: 100%;
}
.faq-section-3 .faq-shape {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .faq-section-3 .faq-shape {
    display: none;
  }
}

.video-wrapper {
  height: 530px;
  position: relative;
  z-index: 9;
  background-attachment: fixed;
}
@media (max-width: 575px) {
  .video-wrapper {
    height: 450px;
  }
}
.video-wrapper .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrapper .video-btn::before {
  position: absolute;
  content: "";
  width: 120px;
  border-radius: 100%;
  height: 120px;
  border: 1px solid var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-section {
  position: relative;
  z-index: 9;
}
.video-section .horse-shape {
  position: absolute;
  right: 0;
  top: -190px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .video-section .horse-shape {
    display: none;
  }
}
.video-section .dot-shape {
  position: absolute;
  left: 0;
  top: -490px;
  z-index: -1;
  left: -332px;
  top: -330px;
}
@media (max-width: 1199px) {
  .video-section .dot-shape {
    display: none;
  }
}

.our-facilities-content {
  overflow: hidden;
}
.our-facilities-content .text {
  margin-top: 20px;
  max-width: 720px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .our-facilities-content .text {
    margin-bottom: 30px;
  }
}
.our-facilities-content .our-facilities-box-item {
  background-color: #F3EDE4;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  z-index: 999;
}
@media (max-width: 991px) {
  .our-facilities-content .our-facilities-box-item {
    padding: 30px 16px;
  }
}
@media (max-width: 767px) {
  .our-facilities-content .our-facilities-box-item {
    padding: 30px 20px;
  }
}
.our-facilities-content .our-facilities-box-item::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  height: 14px;
  width: 13px;
  background-color: var(--theme);
  z-index: -1;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: all 0.4s;
}
.our-facilities-content .our-facilities-box-item .icon {
  margin-bottom: 25px;
}
.our-facilities-content .our-facilities-box-item h4 {
  font-weight: 400;
}
@media (max-width: 991px) {
  .our-facilities-content .our-facilities-box-item h4 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .our-facilities-content .our-facilities-box-item h4 {
    font-size: 20px;
  }
}
.our-facilities-content .our-facilities-box-item p {
  max-width: 314px;
  margin-top: 5px;
}
.our-facilities-content .our-facilities-box-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.our-facilities-content .our-facilities-box-item:hover h4 {
  color: var(--white);
}
.our-facilities-content .our-facilities-box-item:hover p {
  color: var(--white);
}
.our-facilities-content .our-facilities-box-item:hover::before {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  clip-path: initial;
  right: 0;
  top: 0;
}

.book-lesson-wrapper {
  padding: 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .book-lesson-wrapper {
    padding: 100px 30px;
  }
}
@media (max-width: 991px) {
  .book-lesson-wrapper {
    padding: 80px 30px;
  }
}
.book-lesson-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #4A3F35 0%, rgba(74, 63, 53, 0.575132) 42.49%, rgba(199, 156, 101, 0.2) 100%);
  z-index: -1;
}
.book-lesson-wrapper .line-shape {
  position: absolute;
  top: 70px;
  left: 30px;
}
.book-lesson-wrapper .line-shape img {
  width: 1239px;
}
@media (max-width: 1399px) {
  .book-lesson-wrapper .line-shape {
    display: none;
  }
}
@media (max-width: 1399px) {
  .book-lesson-wrapper .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.choose-us-wrapper-2 .choose-us-image {
  height: 580px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image {
    height: initial;
  }
}
.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image img {
    object-fit: initial;
  }
}
.choose-us-wrapper-2 .choose-us-content {
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .choose-us-content .text {
  margin-top: 10px;
  max-width: 690px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-item {
  display: flex;
  align-items: start;
  gap: 40px;
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-item .icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-item .icon-item .icon {
  border-radius: 100px;
  background-color: var(--theme);
  text-align: center;
  color: var(--white);
  width: 58px;
  height: 58px;
  line-height: 58px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-item .icon-item .content p {
  max-width: 242px;
  margin-top: 5px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-button {
    flex-wrap: wrap;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button span {
  font-weight: 500;
  color: var(--header);
  text-transform: uppercase;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button .call-button {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 28px;
  background-color: var(--header);
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button .call-button i {
  color: var(--theme);
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button .call-button h6 {
  font-weight: 500;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-button .call-button h6 a {
  color: var(--white);
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .left-image {
  position: absolute;
  bottom: 120px;
  left: 84px;
}
.choose-us-section-2 .left-image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media (max-width: 1600px) {
  .choose-us-section-2 .left-image {
    display: none;
  }
}
.choose-us-section-2 .right-image {
  position: absolute;
  top: 120px;
  right: 30px;
}
.choose-us-section-2 .right-image img {
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
@media (max-width: 1600px) {
  .choose-us-section-2 .right-image {
    display: none;
  }
}

.feature-wrapper {
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 120px;
}
@media (max-width: 1399px) {
  .feature-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .feature-wrapper {
    padding-bottom: 80px;
  }
}
.feature-wrapper .feature-image {
  max-width: 615px;
  height: 643px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .feature-wrapper .feature-image {
    max-width: initial;
  }
}
@media (max-width: 991px) {
  .feature-wrapper .feature-image {
    height: initial;
  }
}
.feature-wrapper .feature-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
  object-fit: cover;
}
.feature-wrapper .feature-content .text {
  max-width: 690px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 30px;
}
.feature-wrapper .feature-content .feature-content-main-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 30px;
}
@media (max-width: 1399px) {
  .feature-wrapper .feature-content .feature-content-main-item {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .feature-wrapper .feature-content .feature-content-main-item {
    flex-wrap: wrap;
  }
}
.feature-wrapper .feature-content .feature-content-main-item .feature-content-item .icon {
  margin-bottom: 10px;
}
.feature-wrapper .feature-content .feature-content-main-item .feature-content-item p {
  margin-top: 5px;
}

@media (max-width: 767px) {
  .program-wrapper {
    margin-top: 30px;
  }
}
.program-wrapper .programe-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .program-wrapper .programe-card-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.program-wrapper .programe-card-item .programe-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .program-wrapper .programe-card-item .programe-content {
    margin-left: 20px;
    margin-top: 20px;
  }
}
.program-wrapper .programe-card-item .programe-content span {
  color: var(--theme);
  font-weight: 600;
  text-transform: uppercase;
}
.program-wrapper .programe-card-item .programe-content h3 {
  font-size: 40px;
  margin-top: 5px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .program-wrapper .programe-card-item .programe-content h3 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .program-wrapper .programe-card-item .programe-content h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .program-wrapper .programe-card-item .programe-content h3 {
    font-size: 25px;
  }
}
.program-wrapper .programe-card-item .programe-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.program-wrapper .programe-card-item .programe-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.program-wrapper .programe-card-item .programe-content p {
  text-transform: uppercase;
  color: var(--header);
  font-weight: 600;
}
.program-wrapper .programe-card-item .programe-content h2 {
  font-size: 40px;
  margin-top: 320px;
  color: var(--theme);
}
@media (max-width: 991px) {
  .program-wrapper .programe-card-item .programe-content h2 {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .program-wrapper .programe-card-item .programe-image {
    flex-basis: 100%;
  }
}
.program-wrapper .programe-card-item .programe-image img {
  width: 100%;
  height: 100%;
}

.our-process-wrapper .our-process-content .text {
  max-width: 537px;
  margin-top: 10px;
}
.our-process-wrapper .our-process-box {
  border: 1px solid rgba(74, 63, 53, 0.2);
  padding: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .our-process-wrapper .our-process-box {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .our-process-wrapper .our-process-box {
    padding: 30px;
  }
}
.our-process-wrapper .our-process-box::before {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  transition: all ease 0.5s;
  z-index: -1;
  top: 0;
  background: linear-gradient(90deg, var(--theme) 2.34%, var(--theme) 100%);
}
.our-process-wrapper .our-process-box .icon {
  margin-bottom: 20px;
  transition: all 0.4s ease;
  display: inline-block;
}
.our-process-wrapper .our-process-box .icon img {
  transition: all 0.4s ease;
}
@media (max-width: 1399px) {
  .our-process-wrapper .our-process-box h4 {
    font-size: 18px;
  }
  .our-process-wrapper .our-process-box h4 br {
    display: none;
  }
}
@media (max-width: 991px) {
  .our-process-wrapper .our-process-box h4 {
    font-size: 20px;
  }
  .our-process-wrapper .our-process-box h4 br {
    display: block;
  }
}
.our-process-wrapper .our-process-box:hover .icon {
  transform: translateY(-8px);
}
.our-process-wrapper .our-process-box:hover .icon img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) invert(1);
}
.our-process-wrapper .our-process-box:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.our-process-wrapper .our-process-box:hover h4 {
  color: var(--white);
}

.why-choose-us-wrapper-4 .why-choose-us-image {
  position: relative;
  z-index: 9;
}
.why-choose-us-wrapper-4 .why-choose-us-image .shape {
  position: absolute;
  top: -305px;
  left: -312px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .why-choose-us-wrapper-4 .why-choose-us-image .shape {
    left: -267px;
  }
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-image .shape {
    display: none;
  }
}
.why-choose-us-wrapper-4 .why-choose-us-image .shape img {
  width: initial;
  height: initial;
}
.why-choose-us-wrapper-4 .why-choose-us-image img {
  width: 100%;
  height: 100%;
}
.why-choose-us-wrapper-4 .why-choose-us-image img.horse-run {
  width: 100%;
  transform-origin: center;
  animation: horseRunFront 2.5s ease-in-out infinite;
}
.why-choose-us-wrapper-4 .why-choose-us-content {
  margin-left: 85px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-content {
    margin-left: 0;
  }
}
.why-choose-us-wrapper-4 .why-choose-us-content .text {
  margin-top: 15px;
  max-width: 690px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-content .text {
    margin-bottom: 30px;
  }
}
.why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items {
    flex-wrap: wrap;
  }
}
.why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items.style-2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items .icon {
  width: 79px;
  height: 79px;
  line-height: 79px;
  text-align: center;
  background: #F3EDE4;
}
.why-choose-us-wrapper-4 .why-choose-us-content .why-choose-us-items .content p {
  max-width: 450px;
}
.why-choose-us-wrapper-4 .why-choose-us-content .theme-btn {
  margin-top: 60px;
  background-color: var(--header);
}
@media (max-width: 1399px) {
  .why-choose-us-wrapper-4 .why-choose-us-content .theme-btn {
    margin-top: 30px;
  }
}
.why-choose-us-wrapper-4 .why-choose-us-content .theme-btn::before {
  background-color: var(--theme);
}
.why-choose-us-wrapper-4 .why-choose-us-content .theme-btn::after {
  background-color: var(--white);
}

.feature-section-4 .section-title-area .section-title p {
  max-width: 555px;
  margin-top: 15px;
}
.feature-section-4 .section-title-area .right-info-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1399px) {
  .feature-section-4 .section-title-area .right-info-item {
    gap: 25px;
  }
}
.feature-section-4 .section-title-area .right-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.feature-section-4 .section-title-area .right-info-item .info-item .cont p {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--header);
}
.feature-section-4 .section-title-area .right-info-item .info-item .cont span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme);
  text-transform: uppercase;
}

.feature-wrapper-4 {
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  margin-top: 30px;
}
.feature-wrapper-4 .feature-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .feature-wrapper-4 .feature-list {
    padding-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.feature-wrapper-4 .feature-list li {
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}
@media (max-width: 1399px) {
  .feature-wrapper-4 .feature-list li {
    font-size: 20px;
  }
}
.feature-wrapper-4 .feature-list li i {
  color: var(--header);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.feature-wrapper-4 .feature-list li a {
  color: var(--header);
}
.feature-wrapper-4 .feature-list li a i {
  color: var(--theme);
  margin-left: 15px;
  clip-path: none;
}
.feature-wrapper-4 .horse-video video {
  width: 100%;
  height: 573px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .feature-wrapper-4 .horse-video video {
    height: initial;
    object-fit: initial;
  }
}

.our-history-wrapper {
  background-color: rgb(255, 255, 255);
  padding-bottom: 150px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .our-history-wrapper {
    margin-bottom: 30px;
    padding-bottom: 40px;
  }
}
.our-history-wrapper .our-history-image img {
  width: 100%;
  height: 100%;
}
.our-history-wrapper .history-wrap {
  margin-top: 50px;
  padding: 0 50px;
}
@media (max-width: 1399px) {
  .our-history-wrapper .history-wrap {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .our-history-wrapper .history-wrap {
    padding: 0 15px;
  }
}
.our-history-wrapper .history-wrap .progress-bar-wrapper {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(74, 63, 53, 0.2);
}
.our-history-wrapper .history-wrap .dots-container {
  display: flex;
  width: 100%;
  z-index: 999;
  justify-content: space-between;
  padding-left: 210px;
  padding-right: 210px;
}
@media (max-width: 1399px) {
  .our-history-wrapper .history-wrap .dots-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.our-history-wrapper .history-wrap .dots-container .dot {
  width: 26px;
  height: 26px;
  background-color: var(--header);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: -15px;
  z-index: 999;
  position: relative;
}
.our-history-wrapper .history-wrap .dots-container .dot::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  width: 10px;
  height: 10px;
  border-radius: 100px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.our-history-wrapper .history-wrap .dots-container .dot.active {
  transform: scale(1.2);
}
.our-history-wrapper .history-wrap .dots-container .dot.active::before {
  background-color: var(--theme);
}
.our-history-wrapper .history-wrap .history-item {
  text-align: center;
  margin-top: 30px;
}
.our-history-wrapper .history-wrap .history-item h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.our-history-wrapper .history-wrap .history-item p {
  max-width: 350px;
  margin: 0 auto;
}
.our-history-wrapper .history-wrap .swiper-slide-next .history-item {
  opacity: 20%;
}
.our-history-wrapper .history-wrap .swiper-slide-prev .history-item {
  opacity: 20%;
}
.our-history-wrapper .history-wrap .swiper-slide-active .history-item {
  opacity: none;
}

.our-history-section {
  position: relative;
  z-index: 999;
}
.our-history-section .swiper-dot-2 {
  position: absolute;
  bottom: 36%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .our-history-section .swiper-dot-2 {
    display: none;
  }
}
.our-history-section .swiper-dot-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(74, 63, 53, 0.2);
  width: 44px;
  height: 1px;
  top: 12px;
  left: -80%;
}
@media (max-width: 1399px) {
  .our-history-section .swiper-dot-2::before {
    display: none;
  }
}
.our-history-section .swiper-dot-2::after {
  position: absolute;
  content: "";
  background-color: rgba(74, 63, 53, 0.2);
  width: 44px;
  height: 1px;
  top: 12px;
  right: -80%;
}
@media (max-width: 1399px) {
  .our-history-section .swiper-dot-2::after {
    display: none;
  }
}

.counter-inner-box {
  background-color: var(--white);
  text-align: center;
  padding: 80px 70px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .counter-inner-box {
    padding: 44px;
  }
}
@media (max-width: 991px) {
  .counter-inner-box {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .counter-inner-box {
    padding: 30px;
  }
}
.counter-inner-box::before {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  height: 45px;
  width: 46px;
  background-color: var(--theme);
  z-index: -1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.4s;
}
@media (max-width: 1399px) {
  .counter-inner-box::before {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}
.counter-inner-box h2 {
  color: var(--theme);
  font-size: 60px;
  margin-bottom: 40px;
}
.counter-inner-box p {
  color: var(--header);
  margin: 0 auto;
  font-weight: 600;
  text-transform: uppercase;
}
.counter-inner-box:hover::before {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  clip-path: initial;
  right: 0;
  bottom: 0;
}
.counter-inner-box:hover h2 {
  position: relative;
  color: var(--white);
}
.counter-inner-box:hover p {
  position: relative;
  color: var(--white);
}

.footer-widget-wrapper {
  padding: 70px 0 100px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(183, 142, 95, 0.12);
  width: 510px;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper::before {
    display: none;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget.style-2 {
  margin-left: 30px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget.style-2 {
    margin-left: 0;
  }
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title h3 {
  color: var(--white);
  font-weight: 700;
  padding-bottom: 15px;
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .wid-title h3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 72px;
  height: 2px;
  bottom: 0;
  left: 0;
  top: initial;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
  max-width: 427px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .contact-list {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .contact-list {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .contact-list li {
    font-size: 18px;
  }
}
.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li .icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li .icon span {
  font-size: 18px;
  color: #FCFCFC;
  opacity: 0.7;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .footer-content .contact-list li a {
    font-size: 18px;
  }
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  opacity: 0.7;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .footer-gallery {
  margin-top: 40px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(230, 57, 70, 0.5);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widget-wrapper .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(159, 160, 162, 0.16);
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .footer-bottom .footer-wrapper {
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .footer-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-bottom .footer-wrapper .footer-list {
    justify-content: center;
  }
}
.footer-bottom .footer-wrapper .footer-list li a {
  color: var(--white);
}
.footer-bottom .footer-wrapper .footer-list li a:hover {
  color: var(--theme);
}
.footer-bottom .footer-wrapper p {
  color: var(--white);
}
.footer-bottom .footer-wrapper p span {
  text-transform: uppercase;
  color: var(--theme);
}
.footer-bottom .footer-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom .footer-wrapper .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.footer-bottom .footer-wrapper .social-icon a:hover {
  background-color: var(--theme);
}

.footer-section-2 {
  position: relative;
  z-index: 9;
}
.footer-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(74, 63, 53, 0.95);
  z-index: -1;
}

.footer-widget-wrapper-2 {
  padding: 70px 0 40px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper-2 {
    padding: 50px 0 40px;
  }
}
.footer-widget-wrapper-2 .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper-2 .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper-2 .single-footer-widget .wid-title h4 {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
}
.footer-widget-wrapper-2 .single-footer-widget .wid-title h4 span {
  color: var(--theme);
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li a {
  color: var(--white);
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li a i {
  margin-right: 8px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper-2 .single-footer-widget .list-area li:hover a i {
  color: var(--theme);
}
.footer-widget-wrapper-2 .single-footer-widget .contact-list li {
  color: var(--white);
  text-transform: uppercase;
}
.footer-widget-wrapper-2 .single-footer-widget .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-2 .single-footer-widget .contact-list li i {
  color: var(--theme);
  margin-right: 8px;
}
.footer-widget-wrapper-2 .single-footer-widget .contact-list li a {
  color: var(--white);
}
.footer-widget-wrapper-2 .single-footer-widget .date-list li {
  color: var(--white);
}
.footer-widget-wrapper-2 .single-footer-widget .date-list li i {
  color: var(--theme);
  margin-right: 8px;
}
.footer-widget-wrapper-2 .single-footer-widget .date-list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-bottom-2 {
  padding: 30px 0 0;
  border-top: 1px solid rgba(159, 160, 162, 0.16);
}
.footer-bottom-2 .footer-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .footer-bottom-2 .footer-wrapper-2 {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .footer-bottom-2 .footer-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom-2 .footer-wrapper-2 .logo {
  position: relative;
  z-index: 999;
}
.footer-bottom-2 .footer-wrapper-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  z-index: -1;
}
.footer-bottom-2 .footer-wrapper-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 365px;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .footer-bottom-2 .footer-wrapper-2::after {
    width: 328px;
  }
}
@media (max-width: 991px) {
  .footer-bottom-2 .footer-wrapper-2::after {
    height: 100px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-wrapper-2::after {
    height: 95px;
    width: 100%;
  }
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content h3 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content form {
  max-width: 547px;
  width: 100%;
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt {
  position: relative;
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: var(--text);
  line-height: 1;
  padding: 25px 0px 18px 25px;
  max-width: 547px;
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt input::placeholder {
  color: var(--text);
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt .icon {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--header);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt .icon:hover {
  background-color: var(--theme);
}
@media (max-width: 575px) {
  .footer-bottom-2 .footer-wrapper-2 .newsletter-content .form-clt .icon {
    padding: 0 16px;
  }
}
.footer-bottom-2 .footer-wrapper-2 .social-item h6 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
}
.footer-bottom-2 .footer-wrapper-2 .social-item .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-2 .footer-wrapper-2 .social-item .social-icon a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.footer-bottom-2 .footer-wrapper-2 .social-item .social-icon a:hover {
  background-color: var(--header);
  border: 1px solid var(--header);
}
.footer-bottom-2 p {
  color: #C7C7C7;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
.footer-bottom-2 p.style-bottom {
  margin-bottom: 190px;
}
@media (max-width: 1399px) {
  .footer-bottom-2 p.style-bottom {
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
@media (max-width: 1399px) {
  .footer-bottom-2 p {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.footer-bottom-2 p span {
  color: var(--theme);
}

.header-top-section-2 {
  background-color: var(--header);
  position: relative;
  margin-bottom: 30px;
}
.header-top-section-2 .container-fluid {
  padding: 0 30px;
}
@media (max-width: 575px) {
  .header-top-section-2 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-2 {
    display: none;
  }
}
.header-top-section-2 .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  background: #F3EDE4;
}
.header-top-section-2 .line-shape img {
  width: 100%;
  height: 100%;
}

.header-top-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}
.header-top-wrapper-2 .header-left .list {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-top-wrapper-2 .header-left .list li {
  color: var(--white);
}
.header-top-wrapper-2 .header-left .list li a {
  color: var(--white);
}
.header-top-wrapper-2 .header-left .list li i {
  margin-right: 6px;
  color: var(--white);
}
.header-top-wrapper-2 p {
  color: var(--white);
}
.header-top-wrapper-2 p span {
  color: var(--theme);
}
.header-top-wrapper-2 .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-top-wrapper-2 .social-icon a {
  color: var(--white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.header-top-wrapper-2 .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}

.header-top-section-3 {
  background-color: var(--header);
  position: relative;
  z-index: 999;
}
.header-top-section-3 .container-fluid {
  padding: 0 124px;
}
@media (max-width: 1600px) {
  .header-top-section-3 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-3 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-top-section-3 .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 1399px) {
  .header-top-section-3 {
    display: none;
  }
}
.header-top-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  width: 617px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.header-top-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}
.header-top-wrapper-3 .header-left .list {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-top-wrapper-3 .header-left .list li {
  color: var(--white);
}
.header-top-wrapper-3 .header-left .list li a {
  color: var(--white);
}
.header-top-wrapper-3 .header-left .list li i {
  margin-right: 6px;
  color: var(--white);
}
.header-top-wrapper-3 .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-top-wrapper-3 .social-icon a {
  color: var(--white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.header-top-wrapper-3 .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid var(--theme);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}
@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #4A3F35;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  background-color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.34px;
  color: #4A3F35;
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white) !important;
  position: relative;
  background-color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--header);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  height: 550%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 150px;
  position: relative;
  z-index: 999;
}
@media (max-width: 1600px) {
  .header-main .header-right {
    gap: 30px;
  }
}
.header-main .header-right .header-btn {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1600px) {
  .header-main .header-right .header-btn {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .header-main .header-right .header-btn .header-button {
    display: none;
  }
}
.header-main .header-right .header-btn .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: #4A3F35;
  width: 56px;
  height: 56px;
  text-align: center;
  line-height: 56px;
  background-color: var(--bg);
}
.header-main .header-right .header-btn .sidebar__toggle.style-color {
  background-color: var(--header);
  color: var(--white);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .header-1 {
    top: 0;
  }
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1 .header-main {
  background-color: var(--white);
  padding: 10px 20px;
}
.header-1.header-2 {
  position: initial;
  margin-top: 0;
  background-color: #F3EDE4;
  position: relative;
  z-index: 9999;
}
.header-1.header-2 .container-fluid {
  padding: 0 8px;
}
@media (max-width: 575px) {
  .header-1.header-2 .container-fluid {
    padding: 0 8px;
  }
}
.header-1.header-2 .header-main {
  background-color: #F3EDE4;
}
.header-1.header-2 .header-main .header-right {
  gap: 100px;
}
@media (max-width: 1899px) {
  .header-1.header-2 .header-main .header-right {
    gap: 50px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-right {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .header-1.header-2 .header-main .header-right {
    gap: 20px;
  }
}
.header-1.header-2.header-3 {
  background-color: var(--white) !important;
}
.header-1.header-2.header-3 .header-main {
  background-color: var(--white);
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
}
.header-1.header-2.header-3.header-4 {
  background-color: var(--bg-3) !important;
}
.header-1.header-2.header-3.header-4 .container-fluid {
  padding: 0 124px;
}
@media (max-width: 1600px) {
  .header-1.header-2.header-3.header-4 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-2.header-3.header-4 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-1.header-2.header-3.header-4 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-2.header-3.header-4 .header-main {
  background-color: var(--bg-3) !important;
  border-bottom: none;
  padding: 10px 0;
}

/* .sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky.header-1 {
  margin-top: 0;
} */

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    display: none;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.style-offcanvas-2 .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 30px;
  left: 20px !important;
  right: initial !important;
  cursor: pointer;
  color: #767676 !important;
}
.style-offcanvas-2 .offcanvas__close i {
  color: #fff !important;
}
@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__close {
    top: 25px;
    right: 25px;
  }
}
.style-offcanvas-2 .offcanvas__logo {
  position: absolute;
  top: 30px;
  left: 30px;
}
@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__logo {
    top: 25px;
    left: 25px;
  }
}
.style-offcanvas-2 .offcanvas__info {
  width: 210px !important;
  padding: 50px 0;
  background-color: var(--white) !important;
  height: 100%;
}
.style-offcanvas-2 .offcanvas__info::before {
  display: none;
}
.style-offcanvas-2 .mean-container .mean-nav ul li a.mean-expand {
  top: 5px !important;
}
.style-offcanvas-2 .offcanvas__close {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: absolute;
  top: 14px;
  right: 15px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__close {
    top: 25px;
    right: 25px;
  }
}
.style-offcanvas-2 .offcanvas__logo {
  left: 115px;
  top: 10px;
}
.style-offcanvas-2 .offcanvas__logo img {
  width: 60px;
}
.style-offcanvas-2 .mean-container .mean-nav ul li > a.mean-expand i {
  font-size: 14px !important;
}
.style-offcanvas-2 .mobile-menus .submenu a {
  font-size: 14px !important;
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  margin-top: 83px;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper {
    margin-top: 80px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    margin-top: 75px;
  }
}
.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(74, 63, 53, 0.8);
  z-index: -1;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 200px 0 200px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 50px;
  position: relative;
  text-transform: uppercase;
  z-index: 9;
  font-weight: 400;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-content {
  text-align: center;
}
.error-content .title {
  font-size: 250px;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .error-content .title {
    font-size: 200px;
  }
}
@media (max-width: 991px) {
  .error-content .title {
    font-size: 150px;
  }
}
@media (max-width: 767px) {
  .error-content .title {
    font-size: 100px;
  }
}
.error-content h3 {
  font-size: 55px;
  line-height: 1.1;
}
@media (max-width: 1399px) {
  .error-content h3 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .error-content h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .error-content h3 {
    font-size: 30px;
  }
}
.error-content .theme-btn {
  margin-top: 50px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .error-content .theme-btn {
    margin-top: 30px;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

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

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}
.array-buttons-2 .array-prev {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--header);
  color: #00E5FF;
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}
.array-buttons-2 .array-prev:hover {
  background: var(--theme);
  color: var(--white);
}
.array-buttons-2 .array-next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background: #2ADDC8;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.array-buttons-2 .array-next:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .array-buttons-4 {
    flex-wrap: wrap;
  }
}
.array-buttons-4 .array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}
.array-buttons-4 .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-buttons-4 .array-next:hover {
  background: var(--bg);
  border: 1px none;
  color: var(--white);
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1720px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1410px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.nice-select {
  background-color: transparent;
  width: unset;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.nice-select .current {
  margin-right: 12px;
}

.nice-select.open .list {
  background: var(--bg);
  margin-top: 16px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.nice-select .option.selected.focus {
  background: var(--bg);
  outline: none;
  color: var(--text);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  border: none;
}

.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}
.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}
.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}
.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}
.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}
.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}
.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}
.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}
.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}
.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}
.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.swiper-dot-1 {
  position: relative;
  z-index: 999;
  margin-top: 60px;
}
.swiper-dot-1 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: #D9D9D9;
  opacity: 1;
  position: relative;
}
.swiper-dot-1 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 30px;
}
.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}
.swiper-dot-1.style-team .swiper-pagination-bullet {
  background-color: var(--header);
}
.swiper-dot-1.style-team .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.array-buttons .array-prev {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-buttons .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #F7F3EE;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  font-family: "Cinzel", serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.split {
  display: inline-block;
  overflow: hidden;
}

.array-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.array-items .array-prev {
  background-color: #F5F5F5;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: var(--header);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.array-items .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.array-items .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.array-items .array-next:hover {
  background-color: var(--header);
}

.swiper-dot {
  position: absolute;
  right: -94%;
  transform: translateY(-50%);
  top: 50%;
  z-index: 1;
  width: auto !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  margin: 0 8px !important;
  height: 10px;
  transition: 0.6s;
  background: var(--white);
  opacity: 1;
  border-radius: 0px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 34px;
  height: 34px;
  line-height: 34px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background-color: transparent;
  border: 2px solid var(--theme);
  content: "";
}
@media (max-width: 1399px) {
  .swiper-dot {
    display: none !important;
  }
}

.swiper-dot-2 {
  position: relative;
  z-index: 999;
  margin-top: 60px;
  text-align: center;
}
.swiper-dot-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: #8F8C89;
  opacity: 1;
  position: relative;
  border-radius: 0;
}
.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
}
.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-dot-3 {
  position: relative;
  z-index: 999;
}
.swiper-dot-3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: transparent;
  border: 1px solid rgba(74, 63, 53, 0.2);
  opacity: 1;
  position: relative;
  border-radius: 0;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--header);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-1 {
  position: relative;
  z-index: 9;
  padding: 350px 0 150px;
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 190px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 160px 0 80px;
  }
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(270.43deg, rgba(45, 41, 36, 0.56) 0.35%, #2D2924 98.08%);
  z-index: -1;
}
.hero-1 .line-shape-animation {
  height: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
}
@media (max-width: 1399px) {
  .hero-1 .line-shape-animation {
    display: none;
  }
}
.hero-1 .hero-content {
  text-align: center;
}
.hero-1 .hero-content h4 {
  color: var(--theme);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-1 .hero-content p {
  max-width: 615px;
  color: var(--white);
  margin: 0 auto;
}
.hero-1 .hero-content .theme-btn {
  margin-top: 48px;
}

.hero-2 {
  margin-top: 160px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1399px) {
  .hero-2 {
    margin-top: 75px;
  }
}
.hero-2 .slider .swiper-slide {
  overflow: hidden;
  position: relative;
  padding: 200px 0 180px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1399px) {
  .hero-2 .slider .swiper-slide {
    padding: 150px 0 120px;
  }
}
@media (max-width: 991px) {
  .hero-2 .slider .swiper-slide {
    padding: 100px 0 90px;
  }
}
.hero-2 .slider .swiper-slide .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero-2 .slider .swiper-slide .slide-inner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(99.69deg, #4A3F35 0%, rgba(74, 63, 53, 0.9) 35.75%, rgba(74, 63, 53, 0) 100%);
  z-index: 9;
}
.hero-2 .slider .swiper-slide .slide-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hero-2 .swiper-container {
  width: 100%;
  height: initial;
  position: relative;
}
.hero-2 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1899px) {
  .hero-2 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}
.hero-2 .horizontal-hero-content {
  max-width: 898px;
}
.hero-2 .horizontal-hero-content .radius-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 100px;
  padding: 5px 20px 5px 3px;
  margin-bottom: 25px;
  position: relative;
  max-width: 415px;
}
.hero-2 .horizontal-hero-content .radius-box h6 {
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.hero-2 .horizontal-hero-content h1 {
  font-size: 60px;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  opacity: 0;
}
@media (max-width: 1399px) {
  .hero-2 .horizontal-hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .hero-2 .horizontal-hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-2 .horizontal-hero-content h1 {
    font-size: 30px;
  }
}
.hero-2 .horizontal-hero-content h1 span {
  color: var(--theme);
}
.hero-2 .horizontal-hero-content p {
  color: var(--white);
  max-width: 723px;
  margin-bottom: 48px;
  position: relative;
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .horizontal-hero-content p {
    margin-bottom: 30px;
  }
}
.hero-2 .horizontal-hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .hero-2 .horizontal-hero-content .hero-button {
    flex-wrap: wrap;
  }
}
.hero-2 .horizontal-hero-content .hero-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgba(199, 156, 101, 0.2);
}
.hero-2 .horizontal-hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme);
}
.hero-2 .horizontal-hero-content .hero-button .theme-btn.style-2::before {
  background-color: var(--theme);
}
.hero-2 .horizontal-hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--white);
}
.hero-2 .swiper-slide-active .horizontal-hero-content h1 {
  opacity: 1;
  transform: translateY(0px);
}

.hero-3 {
  padding: 120px 0 120px;
  margin-top: 85px;
}
@media (max-width: 1399px) {
  .hero-3 {
    margin-top: 55px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .hero-3 {
    margin-top: 30px;
    padding-bottom: 80px;
  }
}
.hero-3 .hero-content {
  text-align: center;
  position: relative;
  z-index: 999;
}
.hero-3 .hero-content p {
  color: var(--theme);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 1199px) {
  .hero-3 .hero-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 470px) {
  .hero-3 .hero-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .coverflow-slider-wrap {
    margin-top: 30px;
  }
}
.hero-3 .coverflow-slider-wrap .swiper-container {
  width: 100%;
}
@media (max-width: 1399px) {
  .hero-3 .coverflow-slider-wrap .swiper-container .swiper-slide .slide-image {
    height: 380px;
  }
}
.hero-3 .coverflow-slider-wrap .swiper-container .swiper-slide .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-3 .top-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 55px;
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-3 .top-shape {
    top: 100px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .top-shape {
    display: none;
  }
}
.hero-3 .top-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .bottom-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 590px;
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-3 .bottom-shape {
    top: 510px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .bottom-shape {
    display: none;
  }
}
.hero-3 .bottom-shape img {
  width: 100%;
  height: 100%;
}
.hero-3 .hero-bottom {
  text-align: center;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .hero-3 .hero-bottom {
    margin-top: 30px;
  }
}
.hero-3 .hero-bottom p {
  text-align: center;
  margin: 0 auto;
  max-width: 723px;
}
.hero-3 .hero-bottom .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-bottom .hero-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.hero-3 .hero-bottom .hero-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgba(199, 156, 101, 0.2);
  color: var(--header);
}
.hero-3 .hero-bottom .hero-button .theme-btn.style-2::after {
  background-color: var(--theme);
}
.hero-3 .hero-bottom .hero-button .theme-btn.style-2::before {
  background-color: var(--theme);
}
.hero-3 .hero-bottom .hero-button .theme-btn.style-2:hover {
  color: var(--white);
}
.hero-3 .hero-bottom .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--white);
}

.hero-4 {
  position: relative;
  z-index: 9;
  padding: 145px 0 65px 0px;
}
@media (max-width: 1600px) {
  .hero-4 {
    padding: 240px 0 65px 0px;
  }
}
@media (max-width: 1399px) {
  .hero-4 {
    padding: 130px 0 65px 0px;
  }
}
.hero-4 .shape {
  position: absolute;
  left: -100px;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1899px) {
  .hero-4 .shape {
    left: -340px;
  }
}
@media (max-width: 1399px) {
  .hero-4 .shape {
    display: none;
  }
}
.hero-4 .shape img {
  width: 100%;
  height: 100%;
}
.hero-4 .container-fluid {
  padding: 0 60px 0 0;
}
@media (max-width: 1399px) {
  .hero-4 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-4 .container-fluid {
    padding: 0 15px;
  }
}
.hero-4 .hero-image {
  margin-bottom: -65px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-bottom: 0;
  }
}
.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-4 .hero-content span {
  text-transform: uppercase;
  color: rgb(199, 156, 101);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0;
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button .theme-btn {
  background-color: var(--header);
}
.hero-4 .hero-content .hero-button .theme-btn::before {
  background-color: var(--theme);
}
.hero-4 .hero-content .hero-button .theme-btn::after {
  background-color: var(--white);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid rgba(199, 156, 101, 0.2);
  color: var(--header);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2::before {
  background-color: var(--theme);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover {
  color: var(--white);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--white);
}
.hero-4 .hero-content .hero-bottom-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-bottom-item {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content .hero-bottom-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-4 .hero-content .hero-bottom-item .content .group-image-item {
  display: flex;
  align-items: center;
}
.hero-4 .hero-content .hero-bottom-item .content .group-image-item .group-image img {
  margin-left: 0;
  width: initial;
  height: initial;
  border: 2px solid var(--white);
  border-radius: 100px;
}
.hero-4 .hero-content .hero-bottom-item .content .group-image-item .group-image.style-2 {
  margin-left: -15px;
}
.hero-4 .hero-content .hero-bottom-item .content .group-image-item .icon {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: -15px;
  background-color: var(--header);
}
.hero-4 .hero-content .hero-bottom-item .content p {
  max-width: 371px;
  margin-top: 15px;
}
.hero-4 .hero-content .hero-bottom-item .hero-thumb {
  position: relative;
}
.hero-4 .hero-content .hero-bottom-item .hero-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  left: 10px;
  width: 93%;
  height: 90%;
  top: 10px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-content .hero-bottom-item .hero-thumb::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content .hero-bottom-item .hero-thumb {
    flex-basis: 100%;
  }
}
.hero-4 .hero-content .hero-bottom-item .hero-thumb img {
  width: 100%;
  height: 100%;
}

.horse-wrapper {
  position: relative;
}
.horse-wrapper .section-title {
  position: absolute;
  top: 470px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .horse-wrapper .section-title {
    display: none;
  }
}
.horse-wrapper .section-title h2 {
  font-size: 46px;
}
.horse-wrapper .horse-card-item.style-2 {
  margin-top: 270px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-2 {
    margin-top: 0;
  }
}
.horse-wrapper .horse-card-item.style-3 {
  margin-top: 170px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-3 {
    margin-top: 0;
  }
}
.horse-wrapper .horse-card-item.style-4 {
  margin-top: 100px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-4 {
    margin-top: 0;
  }
}
.horse-wrapper .horse-card-item.style-5 {
  margin-top: -30px;
  margin-left: 50px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-5 {
    margin-top: 0;
    margin-left: 0;
  }
}
.horse-wrapper .horse-card-item.style-6 {
  margin-top: 100px;
  margin-left: 31px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-6 {
    margin-top: 0;
    margin-left: 0;
  }
}
.horse-wrapper .horse-card-item.style-7 {
  margin-top: 170px;
  margin-left: 31px;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item.style-7 {
    margin-top: 0;
    margin-left: 0;
  }
}
.horse-wrapper .horse-card-item .horse-image {
  max-width: 300px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .horse-wrapper .horse-card-item .horse-image {
    max-width: initial;
  }
}
.horse-wrapper .horse-card-item .horse-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(74, 63, 53, 0) 0%, rgba(74, 63, 53, 0.5) 53.37%, #4A3F35 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.horse-wrapper .horse-card-item .horse-image img {
  width: 100%;
  height: 100%;
}
.horse-wrapper .horse-card-item .horse-image .horse-content {
  text-align: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.horse-wrapper .horse-card-item .horse-image .horse-content h3 {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.horse-wrapper .horse-card-item .horse-image .horse-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.horse-wrapper .horse-card-item .horse-image .horse-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.horse-wrapper .horse-card-item .horse-image .horse-content p {
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.horse-wrapper .horse-card-item:hover .horse-image::before {
  opacity: 1;
  visibility: visible;
}
.horse-wrapper .horse-card-item:hover .horse-image .horse-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}
.horse-wrapper.style-2 {
  gap: 75px;
  display: flex;
  align-items: start;
}
@media (max-width: 1399px) {
  .horse-wrapper.style-2 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
  }
}

.horse-section {
  position: relative;
}
.horse-section .line-shape-animation {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  background-size: cover;
}
@media (max-width: 1399px) {
  .horse-section .line-shape-animation {
    display: none;
  }
}
.horse-section .line-shape {
  position: absolute;
  bottom: -30px;
  height: 175px;
  left: 0;
  right: 0;
  background-size: cover;
}
@media (max-width: 1399px) {
  .horse-section .line-shape {
    display: none;
  }
}
.horse-section .logo-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 420px;
  opacity: 0.1;
}
@media (max-width: 1399px) {
  .horse-section .logo-shape {
    display: none;
  }
}
.horse-section .text-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 440px;
  opacity: 0.1;
}
@media (max-width: 1600px) {
  .horse-section .text-shape {
    bottom: 320px;
  }
}
@media (max-width: 1399px) {
  .horse-section .text-shape {
    display: none;
  }
}

.horse-image-item {
  margin-left: 65px;
}
@media (max-width: 1399px) {
  .horse-image-item {
    margin-left: 0;
  }
}
.horse-image-item.style-2 {
  margin-top: 120px;
  margin-left: 88px;
}
@media (max-width: 1399px) {
  .horse-image-item.style-2 {
    margin-left: 0;
    margin-top: 0;
  }
}
.horse-image-item.style-3 {
  margin-top: 240px;
  margin-left: 117px;
}
@media (max-width: 1399px) {
  .horse-image-item.style-3 {
    margin-left: 0;
    margin-top: 0;
  }
}
.horse-image-item.style-4 {
  margin-top: 130px;
}
@media (max-width: 1399px) {
  .horse-image-item.style-4 {
    margin-top: 0;
  }
}
.horse-image-item.style-5 {
  margin-top: 235px;
  margin-left: 88px;
}
@media (max-width: 1399px) {
  .horse-image-item.style-5 {
    margin-left: 0;
    margin-top: 0;
  }
}
.horse-image-item.style-6 {
  margin-top: 355px;
  margin-left: 117px;
}
@media (max-width: 1399px) {
  .horse-image-item.style-6 {
    margin-left: 0;
    margin-top: 0;
  }
}
.horse-image-item .horse-image {
  max-width: 300px;
}
@media (max-width: 1399px) {
  .horse-image-item .horse-image {
    max-width: initial;
  }
}
.horse-image-item .horse-image img {
  width: 100%;
  height: 100%;
}

.horse-section-3 {
  position: relative;
}
.horse-section-3 .horse-content-3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .horse-section-3 .horse-content-3 {
    display: none;
  }
}
.horse-section-3 .horse-content-3 .btn-wrap {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 1399px) {
  .horse-section-3 .horse-content-3 .btn-wrap {
    margin-top: 30px;
  }
}
.horse-section-3 .horse-content-3 .btn-wrap .theme-btn {
  border: 1px solid rgba(199, 156, 101, 0.2);
  color: var(--header);
  background-color: transparent;
}
.horse-section-3 .horse-content-3 .btn-wrap .theme-btn::before {
  background-color: var(--theme);
}
.horse-section-3 .horse-content-3 .btn-wrap .theme-btn::after {
  background-color: var(--header);
}
.horse-section-3 .horse-content-3 .btn-wrap .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.horse-section-3 .horse-content-3 .btn-wrap .theme-btn:hover::after {
  background-color: var(--white);
}
.horse-section-3 .top-title {
  display: none;
}
@media (max-width: 1399px) {
  .horse-section-3 .top-title {
    display: block;
    margin-bottom: 30px;
  }
}
.horse-section-3 .left-shape {
  position: absolute;
  left: 0;
  top: 40%;
}
@media (max-width: 1600px) {
  .horse-section-3 .left-shape {
    display: none;
  }
}
.horse-section-3 .right-shape {
  position: absolute;
  top: 50%;
  right: 0;
}
@media (max-width: 1600px) {
  .horse-section-3 .right-shape {
    display: none;
  }
}

@media (max-width: 1399px) {
  .horse-inner-section {
    margin-top: -30px;
  }
}
.horse-inner-section .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1399px) {
  .horse-inner-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .horse-inner-section .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 1399px) {
  .horse-inner-card-item {
    margin-top: 30px;
  }
}
.horse-inner-card-item.style-2 {
  margin-top: 147px;
}
@media (max-width: 1399px) {
  .horse-inner-card-item.style-2 {
    margin-top: 30px;
  }
}
.horse-inner-card-item .horse-image {
  max-width: 500px;
  position: relative;
}
.horse-inner-card-item .horse-image img {
  width: 100%;
  height: 100%;
}
.horse-inner-card-item .horse-image .horse-content {
  text-align: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.horse-inner-card-item .horse-image .horse-content h3 {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}
.horse-inner-card-item .horse-image .horse-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.horse-inner-card-item .horse-image .horse-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.horse-inner-card-item .horse-image .horse-content p {
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}
.horse-inner-card-item:hover .horse-image .horse-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

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

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

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

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

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

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

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

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

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

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

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

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

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

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

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  overflow: hidden;
  position: relative;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items .news-image .news-layer-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.5s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image {
  width: 25%;
  height: 100%;
  transition: 0.5s;
  background-size: cover;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(1) {
  background-position: 0;
  transition-delay: 0;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(2) {
  background-position: 33.33%;
  transition-delay: 0.1s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(3) {
  background-position: 66.66%;
  transition-delay: 0.2s;
}
.news-card-items .news-image .news-layer-wrapper .news-layer-image:nth-child(4) {
  background-position: 100%;
  transition-delay: 0.3s;
}
.news-card-items .news-content {
  background-color: #F5F5F5;
  padding: 24px;
}
.news-card-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-card-items .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-card-items .news-content .date-list li i {
  margin-right: 10px;
}
.news-card-items .theme-btn {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background-color: var(--header);
}
.news-card-items .theme-btn::before {
  background-color: var(--theme);
}
.news-card-items .theme-btn:hover::after {
  background-color: var(--white);
}
.news-card-items:hover .news-image .news-layer-wrapper .news-layer-image {
  transform: translateY(-100%);
}

.news-card-item-3 {
  margin-top: 30px;
}
.news-card-item-3 .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-item-3 .news-image img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  transform: scale(1.05);
}
.news-card-item-3 .news-image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.news-card-item-3 .news-image .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: rgba(199, 156, 101, 0.3);
  transform: perspective(400px) rotateY(90deg);
  transform-origin: left;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}
.news-card-item-3 .news-image .overlay-content .button {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding-bottom: 20px;
}
.news-card-item-3 .news-content {
  margin-top: 30px;
}
.news-card-item-3 .news-content .meta-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.news-card-item-3 .news-content .meta-info li {
  position: relative;
  display: inline-block;
  line-height: 24px;
}
.news-card-item-3 .news-content .meta-info li.style-2::before {
  position: absolute;
  top: 0;
  left: -11px;
  bottom: 0;
  width: 2px;
  height: 14px;
  background: var(--text);
  content: "";
  margin: 5px 0;
}
.news-card-item-3 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-item-3 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-item-3:hover .news-image img {
  transform: scale(1);
}
.news-card-item-3:hover .news-image::before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}
.news-card-item-3:hover .news-image .overlay-content {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg);
  transition: all 700ms linear;
  transition-delay: 0.2s;
}

.news-standard-item {
  margin-bottom: 30px;
}
.news-standard-item .news-image img {
  width: 100%;
  height: 100%;
}
.news-standard-item .news-content {
  margin-top: 30px;
}
.news-standard-item .news-content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.news-standard-item .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-item .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-standard-item .news-content .theme-btn {
  margin-top: 30px;
}

.news-main-sideber .news-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--bg-3);
  padding: 50px 30px;
}
.news-main-sideber .news-sideber-widget .search_form {
  position: relative;
  overflow: hidden;
}
.news-main-sideber .news-sideber-widget .search_form input[type=text] {
  width: 100%;
  font-weight: 400;
  color: var(--text);
  padding: 16px 65px 16px 20px;
  line-height: 1;
  outline: none;
  border: none;
}
.news-main-sideber .news-sideber-widget .search_form button[type=submit] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.news-main-sideber .news-sideber-widget .search_form button[type=submit]:hover {
  background-color: var(--header);
}
.news-main-sideber .news-sideber-widget .widget-title h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.news-main-sideber .news-sideber-widget .widget-title h3::before {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--header);
  width: 60px;
  height: 2px;
  content: "";
}
.news-main-sideber .news-sideber-widget .categories-list li {
  text-transform: uppercase;
}
.news-main-sideber .news-sideber-widget .categories-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-main-sideber .news-sideber-widget .categories-list li a:hover {
  color: var(--theme);
}
.news-main-sideber .news-sideber-widget .categories-list li:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news-main-sideber .news-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .news-main-sideber .news-sideber-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}
.news-main-sideber .news-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.news-main-sideber .news-sideber-widget .recent-post-area .recent-items .recent-content h5 {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .news-main-sideber .news-sideber-widget .recent-post-area .recent-items .recent-content h5 {
    font-size: 16px;
  }
}
.news-main-sideber .news-sideber-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
}
.news-main-sideber .news-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-weight: 500;
}
.news-main-sideber .news-sideber-widget .tagcloud a {
  font-size: 16px !important;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 500;
  background-color: var(--theme);
}
.news-main-sideber .news-sideber-widget .tagcloud a:hover {
  background-color: var(--header);
}

.news-details-post .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-post .details-content {
  margin-top: 30px;
}
.news-details-post .details-content .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .meta {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-details-post .details-content .sideber {
  display: flex;
  align-items: end;
  justify-content: space-between;
  background-color: var(--header);
  padding: 50px 40px;
  margin-top: 50px;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .sideber {
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-details-post .details-content .sideber .left-content p {
  font-style: italic;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 140%;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .sideber .left-content p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .news-details-post .details-content .sideber .left-content p {
    font-size: 16px;
  }
}
.news-details-post .details-content .sideber .left-content h4 {
  color: var(--white);
}
.news-details-post .details-content .sideber .icon {
  font-size: 50px;
  color: var(--theme);
}
.news-details-post .details-content .thumb img {
  width: 100%;
  height: 100%;
}
.news-details-post .details-content .tag-share-wrap {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  border-bottom: 1px solid rgba(2, 6, 10, 0.08);
  padding: 30px 0;
}
.news-details-post .details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: #F3EDE4;
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .tag-share-wrap .tagcloud a {
    padding: 12px 20px;
  }
}
@media (max-width: 575px) {
  .news-details-post .details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-post .details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-post .details-content .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-post .details-content .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-post .details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-post .details-content .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-post .details-content .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background: #F3EDE4;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .comments-area {
    padding: 50px 30px;
  }
}
.news-details-post .details-content .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-post .details-content .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-post .details-content .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .news-details-post .details-content .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-post .details-content .comments-area .blog-single-comment {
  border-bottom: 1px solid #e5e5e5;
}
.news-details-post .details-content .comments-area .blog-single-comment.bb-none {
  border: none;
}
@media (max-width: 575px) {
  .news-details-post .details-content .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-post .details-content .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-post .details-content .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-post .details-content .comments-area .blog-single-comment .content .reply {
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}
.news-details-post .details-content .comment-form-wrap {
  background: #F3EDE4;
  padding: 50px 40px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .comment-form-wrap {
    padding: 30px;
    margin-top: 30px;
  }
}
.news-details-post .details-content .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .news-details-post .details-content .comment-form-wrap h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.news-details-post .details-content .comment-form-wrap .form-clt input, .news-details-post .details-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  border: none;
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 5px;
}
.news-details-post .details-content .comment-form-wrap .form-clt input::placeholder, .news-details-post .details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-post .details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.news-card-items-4 {
  margin-top: 30px;
}
.news-card-items-4.style-2 {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .news-card-items-4.style-2 {
    flex-wrap: wrap;
  }
}
.news-card-items-4.style-2 .news-image {
  height: 246px;
}
@media (max-width: 1399px) {
  .news-card-items-4.style-2 .news-image {
    height: 232px;
  }
}
@media (max-width: 575px) {
  .news-card-items-4.style-2 .news-image {
    flex-basis: 100%;
  }
  .news-card-items-4.style-2 .news-image img {
    object-fit: cover;
  }
}
.news-card-items-4.style-2 .news-top-content {
  padding-top: 30px;
}
@media (max-width: 575px) {
  .news-card-items-4.style-2 .news-top-content {
    padding-top: 15px;
  }
}
.news-card-items-4.style-2 .news-top-content .news-content span {
  margin-top: 40px;
  display: inline-block;
}
.news-card-items-4 .news-image {
  position: relative;
  overflow: hidden;
}
.news-card-items-4 .news-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.news-card-items-4 .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.news-card-items-4 .news-top-content {
  background-color: var(--white);
  padding-top: 23px;
}
.news-card-items-4 .news-top-content .news-content {
  padding: 0 24px 30px;
}
.news-card-items-4 .news-top-content .news-content h3 {
  text-transform: uppercase;
}
.news-card-items-4 .news-top-content .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-4 .news-top-content .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.news-card-items-4 .news-top-content .news-content span {
  color: #02060A;
  font-weight: 500;
  display: inline-block;
  margin-top: 30px;
}
.news-card-items-4 .news-top-content .read-button {
  border-top: 1px solid rgba(2, 6, 10, 0.08);
  padding: 15px 30px;
  text-transform: uppercase;
}
.news-card-items-4 .news-top-content .read-button .link-btn {
  transition: all 0.4s ease-in-out;
}
.news-card-items-4 .news-top-content .read-button .link-btn i {
  margin-left: 5px;
}
.news-card-items-4 .news-top-content .read-button .link-btn:hover {
  color: var(--theme);
}
.news-card-items-4:hover .news-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.news-card-items-4:hover .news-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999;
}

.spinner {
  display: block;
  position: relative;
  left: 46%;
  top: 46%;
  width: 70px;
  height: 70px;
}

.spinner.large-icon {
  width: 90px;
}

#preloader #disable-preloader {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

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

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

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

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

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--header);
  z-index: 100;
  padding-top: 70px;
  padding-bottom: 100px;
  opacity: 0;
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: all 0.6s ease;
}
.search_popup.search-opened {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 999999;
}
.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}
@media (max-width: 575px) {
  .search_popup {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.search_wrapper .search_top {
  margin-bottom: 80px;
}
.search_wrapper .search_top .search_logo {
  max-width: 200px;
}
.search_wrapper .search_top .search_logo a {
  display: block;
}
@media (max-width: 575px) {
  .search_wrapper .search_top .search_logo {
    max-width: 150px;
  }
}
.search_wrapper .search_top .search_close {
  margin-left: auto;
  margin-top: 10px;
}
.search_wrapper .search_top .search_close .search_close_btn {
  display: inline-block;
  width: 35px;
  height: 35px;
  font-size: 35px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
}
.search_wrapper .search_top .search_close .search_close_btn svg {
  width: 30px;
  height: 30px;
}
.search_wrapper .search_top .search_close .search_close_btn:hover {
  color: var(--white);
  transform: rotate(90deg);
}
@media (max-width: 575px) {
  .search_wrapper .search_top {
    margin-bottom: 50px;
  }
}
@media (max-width: 500px) {
  .search_wrapper .search_top {
    margin-bottom: 40px;
  }
}
.search_wrapper .search_form .search_input {
  position: relative;
  height: 80px;
  transform: translateY(-40px);
  transition: all 0.4s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}
.search_wrapper .search_form .search_input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition-delay: 0.3s;
  transition: all 0.4s ease-in-out;
}
.search_wrapper .search_form .search_input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}
.search_wrapper .search_form .search_input input::placeholder {
  font-size: 24px;
}
.search_wrapper .search_form .search_input input ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: all 0.5s;
}
.search_wrapper .search_form .search_input input:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}
@media (max-width: 575px) {
  .search_wrapper .search_form .search_input input {
    font-size: 20px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .search_wrapper .search_form .search_input input {
    font-size: 18px;
  }
  .search_wrapper .search_form .search_input input::placeholder {
    font-size: 18px;
  }
}
.search_wrapper .search_form .search_input button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--white);
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  cursor: zoom-out;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.8;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.pricing-box-items {
  background-color: #F2F2F2;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 9;
  margin-top: 30px;
}
@media (max-width: 470px) {
  .pricing-box-items {
    padding: 30px 24px;
  }
}
.pricing-box-items .nexella-hover-bx {
  background: var(--theme);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}
.pricing-box-items .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-box-items .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-box-items .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-box-items .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pricing-box-items .price-tag {
  padding: 4px 12px;
  display: inline-block;
  background-color: var(--header);
  font-size: 14px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(40.012deg);
  width: 185px;
}
@media (max-width: 470px) {
  .pricing-box-items .price-tag {
    font-size: 10px;
    top: 13px;
    right: -43px;
  }
}
.pricing-box-items .pricing-header {
  border-bottom: 1px solid rgba(191, 191, 191, 0.56);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.pricing-box-items .pricing-header h2 {
  font-size: 48px;
  color: var(--theme);
  margin-top: 10px;
}
.pricing-box-items .pricing-header h2 sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin-left: -10px;
  color: var(--text);
}
.pricing-box-items .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--header);
}
.pricing-box-items .theme-btn::before {
  background-color: var(--theme);
}
.pricing-box-items .theme-btn::after {
  background-color: var(--theme);
}
.pricing-box-items .theme-btn:hover {
  color: var(--white);
}
.pricing-box-items .pricing-list-items {
  margin-top: 25px;
}
.pricing-box-items .pricing-list-items li {
  color: var(--header);
}
@media (max-width: 470px) {
  .pricing-box-items .pricing-list-items li {
    font-size: 14px;
  }
}
.pricing-box-items .pricing-list-items li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .pricing-box-items .pricing-list-items li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.pricing-box-items .pricing-list-items li i {
  margin-right: 10px;
}
.pricing-box-items:hover {
  transform: translateY(-10px);
}
.pricing-box-items:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pricing-box-items:hover .pricing-header {
  border-bottom: 1px solid var(--white);
}
.pricing-box-items:hover .pricing-header h3 {
  color: var(--white);
}
.pricing-box-items:hover .pricing-header h2 {
  color: var(--white);
}
.pricing-box-items:hover .pricing-header h2 sub {
  color: var(--white);
}
.pricing-box-items:hover .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.pricing-box-items:hover .theme-btn::before {
  background-color: var(--header);
}
.pricing-box-items:hover .theme-btn::after {
  background-color: var(--white) !important;
}
.pricing-box-items:hover .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.pricing-box-items:hover .pricing-list-items li {
  color: var(--white);
}

.pricing-section {
  position: relative;
}
.pricing-section .horse-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: moveTruck 15s linear infinite;
}
@media (max-width: 1399px) {
  .pricing-section .horse-shape {
    display: none;
  }
}

.pricing-wrapper-2 {
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  padding-top: 48px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .pricing-wrapper-2 {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.pricing-wrapper-2 .pricing-image {
  max-width: 360px;
}
@media (max-width: 1399px) {
  .pricing-wrapper-2 .pricing-image {
    max-width: initial;
  }
}
.pricing-wrapper-2 .pricing-image img {
  width: 100%;
  height: 100%;
}
.pricing-wrapper-2 .pricing-box-items {
  background-color: #F2F2F2;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 9;
}
@media (max-width: 470px) {
  .pricing-wrapper-2 .pricing-box-items {
    padding: 30px 24px;
  }
}
.pricing-wrapper-2 .pricing-box-items .nexella-hover-bx {
  background: var(--theme);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}
.pricing-wrapper-2 .pricing-box-items .hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-wrapper-2 .pricing-box-items .hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-wrapper-2 .pricing-box-items .hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.pricing-wrapper-2 .pricing-box-items .hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.pricing-wrapper-2 .pricing-box-items .price-tag {
  padding: 4px 12px;
  display: inline-block;
  background-color: var(--header);
  font-size: 14px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(40.012deg);
  width: 185px;
}
@media (max-width: 470px) {
  .pricing-wrapper-2 .pricing-box-items .price-tag {
    font-size: 10px;
    top: 13px;
    right: -43px;
  }
}
.pricing-wrapper-2 .pricing-box-items .pricing-header {
  border-bottom: 1px solid rgba(191, 191, 191, 0.56);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.pricing-wrapper-2 .pricing-box-items .pricing-header h2 {
  font-size: 48px;
  color: var(--theme);
  margin-top: 10px;
}
.pricing-wrapper-2 .pricing-box-items .pricing-header h2 sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin-left: -10px;
  color: var(--text);
}
.pricing-wrapper-2 .pricing-box-items .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--header);
}
.pricing-wrapper-2 .pricing-box-items .theme-btn::before {
  background-color: var(--theme);
}
.pricing-wrapper-2 .pricing-box-items .theme-btn::after {
  background-color: var(--theme) !important;
}
.pricing-wrapper-2 .pricing-box-items .theme-btn:hover {
  color: var(--white);
}
.pricing-wrapper-2 .pricing-box-items .pricing-list-items {
  margin-top: 25px;
}
.pricing-wrapper-2 .pricing-box-items .pricing-list-items li {
  color: var(--header);
}
@media (max-width: 470px) {
  .pricing-wrapper-2 .pricing-box-items .pricing-list-items li {
    font-size: 14px;
  }
}
.pricing-wrapper-2 .pricing-box-items .pricing-list-items li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .pricing-wrapper-2 .pricing-box-items .pricing-list-items li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.pricing-wrapper-2 .pricing-box-items .pricing-list-items li i {
  margin-right: 10px;
}
.pricing-wrapper-2 .pricing-box-items:hover {
  transform: translateY(-10px);
}
.pricing-wrapper-2 .pricing-box-items:hover .nexella-hover-bx {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pricing-wrapper-2 .pricing-box-items:hover .pricing-header {
  border-bottom: 1px solid var(--white);
}
.pricing-wrapper-2 .pricing-box-items:hover .pricing-header h3 {
  color: var(--white);
}
.pricing-wrapper-2 .pricing-box-items:hover .pricing-header h2 {
  color: var(--white);
}
.pricing-wrapper-2 .pricing-box-items:hover .pricing-header h2 sub {
  color: var(--white);
}
.pricing-wrapper-2 .pricing-box-items:hover .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}
.pricing-wrapper-2 .pricing-box-items:hover .theme-btn::before {
  background-color: var(--header);
}
.pricing-wrapper-2 .pricing-box-items:hover .theme-btn::after {
  background-color: var(--white) !important;
}
.pricing-wrapper-2 .pricing-box-items:hover .theme-btn:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}
.pricing-wrapper-2 .pricing-box-items:hover .pricing-list-items li {
  color: var(--white);
}

.pricing-section-2 {
  position: relative;
  z-index: 999;
}
.pricing-section-2 .bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pricing-section-2 .bg-shape img {
  width: 100%;
  height: 100%;
}
.pricing-section-2 .section-title-area .nav {
  display: inline-flex;
  align-items: center;
  border: 1.2px solid var(--theme);
}
.pricing-section-2 .section-title-area .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--header);
  text-transform: uppercase;
  padding: 12px 32px;
}
@media (max-width: 575px) {
  .pricing-section-2 .section-title-area .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}
.pricing-section-2 .section-title-area .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--white);
}
.pricing-section-2 .section-title-area.style-3 .nav {
  display: inline-flex;
  align-items: center;
  border: 1.2px solid var(--theme);
}
.pricing-section-2 .section-title-area.style-3 .nav .nav-item .nav-link {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  color: var(--header);
  text-transform: uppercase;
  padding: 12px 32px;
  background-color: var(--white);
}
@media (max-width: 575px) {
  .pricing-section-2 .section-title-area.style-3 .nav .nav-item .nav-link {
    padding: 12px 15px;
  }
}
.pricing-section-2 .section-title-area.style-3 .nav .nav-item .nav-link.active {
  background-color: var(--header);
  color: var(--white);
}
.pricing-section-2 .shape-1 {
  position: absolute;
  top: 142px;
  left: 0;
}
@media (max-width: 1600px) {
  .pricing-section-2 .shape-1 {
    display: none;
  }
}
.pricing-section-2 .shape-2 {
  position: absolute;
  right: 0;
  bottom: 107px;
}
@media (max-width: 1600px) {
  .pricing-section-2 .shape-2 {
    display: none;
  }
}

.pricing-box-items-3 {
  background-color: #F2F2F2;
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 9;
  margin-top: 30px;
}
@media (max-width: 470px) {
  .pricing-box-items-3 {
    padding: 30px 24px;
  }
}
.pricing-box-items-3 .horse-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .pricing-box-items-3 .horse-shape {
    display: none;
  }
}
.pricing-box-items-3 .price-tag {
  padding: 4px 12px;
  display: inline-block;
  background-color: var(--header);
  font-size: 14px;
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 24px;
  right: -40px;
  transform: rotate(40.012deg);
  width: 185px;
}
@media (max-width: 470px) {
  .pricing-box-items-3 .price-tag {
    font-size: 10px;
    top: 13px;
    right: -43px;
  }
}
.pricing-box-items-3 .pricing-header {
  border-bottom: 1px solid rgba(191, 191, 191, 0.56);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.pricing-box-items-3 .pricing-header h2 {
  font-size: 48px;
  color: var(--theme);
  margin-top: 10px;
}
.pricing-box-items-3 .pricing-header h2 sub {
  font-size: 16px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin-left: -10px;
  color: var(--text);
}
.pricing-box-items-3 .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background-color: transparent;
  border: 1px solid var(--theme);
  color: var(--header);
}
.pricing-box-items-3 .theme-btn::before {
  background-color: var(--theme);
}
.pricing-box-items-3 .theme-btn::after {
  background-color: var(--theme);
}
.pricing-box-items-3 .theme-btn:hover {
  color: var(--white);
}
.pricing-box-items-3 .theme-btn:hover::after {
  background-color: var(--white);
}
.pricing-box-items-3 .pricing-list-items {
  margin-top: 25px;
}
.pricing-box-items-3 .pricing-list-items li {
  color: var(--header);
}
@media (max-width: 470px) {
  .pricing-box-items-3 .pricing-list-items li {
    font-size: 14px;
  }
}
.pricing-box-items-3 .pricing-list-items li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 470px) {
  .pricing-box-items-3 .pricing-list-items li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.pricing-box-items-3 .pricing-list-items li i {
  margin-right: 10px;
}
.pricing-box-items-3:hover {
  transform: translateY(-10px);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  line-height: 1;
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
}
.section-title .sub-title.style-2 img {
  filter: brightness(0) invert(1);
}
.section-title h2 {
  color: #4A3F35;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .section-title h2 br {
    display: none;
  }
}
.section-title h2 span {
  color: var(--theme);
}
.section-title p {
  max-width: 509px;
  margin-top: 30px;
  margin: 0 auto;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}
.section-title-area p {
  max-width: 523px;
}

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

.section-bg {
  background-color: var(--bg);
}

.section-bg-3 {
  background-color: var(--bg-3);
}

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

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

.header-bg {
  background-color: var(--header);
}

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

.news-bg {
  background: #F8F8F8;
}

.hero-bg {
  background-color: #F7F3EE;
}

.faq-bg {
  background-color: #F4F4F4;
}

.s-bg {
  background-color: #CECECE;
}

.event-bg {
  background-color: #FAF8F8;
}

.section-padding {
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-box-items {
  position: relative;
  z-index: 9;
  padding: 48px 32px;
  padding-bottom: 0;
  position: relative;
  z-index: 99;
}
@media (max-width: 1399px) {
  .service-box-items {
    margin-top: 30px;
  }
}
.service-box-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme);
  font-size: 34px;
  color: var(--white);
  position: absolute;
  z-index: 9;
  top: 0;
  right: 75px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-box-items .icon {
    right: 0;
  }
}
.service-box-items .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.service-box-items .link-btn {
  display: inline-block;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(90deg);
  z-index: 9;
  background-color: var(--theme);
  right: -36px;
  top: 68px;
  padding: 11px 27px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1399px) {
  .service-box-items .link-btn {
    display: none;
  }
}
.service-box-items .link-btn i {
  margin-left: 8px;
  color: var(--white);
}
.service-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--white);
  width: 82%;
  height: 73%;
}
@media (max-width: 1399px) {
  .service-box-items::before {
    width: 100%;
  }
}
.service-box-items .content h3 {
  margin-bottom: 10px;
  font-size: 21px;
  text-transform: uppercase;
}
.service-box-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-box-items .content p {
  max-width: 280px;
}
.service-box-items .thumb {
  overflow: hidden;
  margin-top: 24px;
  position: relative;
}
.service-box-items .thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
  background-color: rgba(183, 142, 95, 0.7);
}
.service-box-items .thumb::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
  background-color: rgba(183, 142, 95, 0.7);
}
.service-box-items .thumb img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.service-box-items:hover .thumb::before {
  opacity: 1;
  transform: scaleY(1);
}
.service-box-items:hover .thumb::after {
  opacity: 1;
  transform: scaleY(1);
}
.service-box-items:hover .thumb img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.service-box-items:hover .icon {
  background-color: var(--header);
}
.service-box-items:hover .link-btn {
  opacity: 1;
  visibility: visible;
}

.service-wrapper-3 {
  position: relative;
  margin-top: 77px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 {
    margin-top: 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-3 {
    margin-bottom: 80px;
  }
}
.service-wrapper-3 .text {
  text-transform: uppercase;
  font-size: 200px;
  position: absolute;
  right: 0;
  top: -85px;
  text-align: center;
  z-index: 9;
  line-height: 90%;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .text {
    display: none;
  }
}
.service-wrapper-3 .service-left-item {
  position: relative;
  height: 710px;
  max-width: 690px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .service-left-item {
    max-width: initial;
    height: 530px;
  }
}
@media (max-width: 991px) {
  .service-wrapper-3 .service-left-item {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .service-wrapper-3 .service-left-item {
    height: 400px;
  }
}
.service-wrapper-3 .service-left-item .service-image {
  position: absolute;
  left: 0;
  bottom: 0;
}
.service-wrapper-3 .service-left-item .service-image img {
  width: 100%;
  height: 100%;
}
.service-wrapper-3 .right-image {
  max-width: 450px;
  margin-top: 280px;
  margin-bottom: -60px;
}
@media (max-width: 1399px) {
  .service-wrapper-3 .right-image {
    margin-top: 0;
    max-width: initial;
    margin-bottom: 0;
  }
}
.service-wrapper-3 .right-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 1000px;
  border-top-right-radius: 1000px;
}

.service-bottom-wrapper {
  position: relative;
}
.service-bottom-wrapper.style-top {
  margin-top: 48px;
}
.service-bottom-wrapper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 0;
  height: 100%;
  content: "";
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../assets/img/home-3/service/bg.jpg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.service-bottom-wrapper .service-main-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding: 40px 0;
}
@media (max-width: 991px) {
  .service-bottom-wrapper .service-main-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-bottom-wrapper .service-main-item.style-2 {
  border-top: 1px none;
}
.service-bottom-wrapper .service-main-item .content {
  flex-basis: 36%;
}
@media (max-width: 991px) {
  .service-bottom-wrapper .service-main-item .content {
    flex-basis: initial;
  }
}
.service-bottom-wrapper .service-main-item .content h3 {
  font-size: 40px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .service-bottom-wrapper .service-main-item .content h3 {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .service-bottom-wrapper .service-main-item .content h3 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .service-bottom-wrapper .service-main-item .content h3 {
    font-size: 24px;
  }
}
.service-bottom-wrapper .service-main-item .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: rgb(101, 98, 94);
  opacity: 0.4;
}
.service-bottom-wrapper .service-main-item .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-bottom-wrapper .service-main-item .content span {
  color: rgba(74, 63, 53, 0.4);
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.service-bottom-wrapper .service-main-item .content span b {
  color: rgb(199, 156, 101);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
.service-bottom-wrapper .service-main-item .text {
  color: rgb(101, 98, 94);
  max-width: 450px;
  opacity: 0.4;
  transition: all 0.4s ease-in-out;
}
.service-bottom-wrapper .service-main-item .arrow-icon {
  border: 1px solid rgba(74, 63, 53, 0.1);
  display: inline-block;
  width: 53px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  color: rgb(74, 63, 53);
  opacity: 0.4;
  transition: all 0.4s ease-in-out;
}
.service-bottom-wrapper:hover::before {
  width: 100%;
  z-index: 9;
}
.service-bottom-wrapper:hover .service-main-item {
  position: relative;
  z-index: 999;
}
.service-bottom-wrapper:hover .service-main-item .content h3 a {
  opacity: initial;
  color: var(--white);
}
.service-bottom-wrapper:hover .service-main-item .content span {
  opacity: initial;
  color: var(--white);
}
.service-bottom-wrapper:hover .service-main-item .content span b {
  color: var(--white);
}
.service-bottom-wrapper:hover .service-main-item .text {
  color: var(--white);
  opacity: initial;
}
.service-bottom-wrapper:hover .service-main-item .arrow-icon {
  opacity: initial;
  color: var(--theme);
  background-color: var(--white);
  border: 1px solid var(--white);
}

.service-details-wrapper .service-details-post .service-details-content .top-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .service-details-content .top-list {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .top-list li {
  color: var(--header);
  font-weight: 600;
}
.service-details-wrapper .service-details-post .service-details-content .top-list li span {
  color: var(--theme);
}
.service-details-wrapper .service-details-post .service-details-content h2 {
  text-transform: uppercase;
}
.service-details-wrapper .service-details-post .service-details-content h3 {
  border-top: 1px solid rgba(74, 63, 53, 0.2);
  margin-top: 40px;
  padding-top: 40px;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .service-details-content h3 {
    font-size: 22px;
    padding-top: 30px;
    margin-top: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content h6 {
  text-transform: capitalize;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 20px;
}
.service-details-wrapper .service-details-post .service-details-content .list-item li {
  color: #65625E;
  position: relative;
  padding-left: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .service-details-post .service-details-content .list-item li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--text);
  border-radius: 20px;
  top: 10px;
  left: 0;
}
.service-details-wrapper .service-details-post .service-details-content .details-image {
  margin-top: 48px;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-details-post .service-details-content .details-image {
    margin-top: 30px;
  }
}
.service-details-wrapper .service-details-post .service-details-content .details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .service-main-sideber .service-single-widget {
  margin-bottom: 30px;
  background-color: #FAF8F8;
  padding: 20px;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li {
  text-transform: uppercase;
  background-color: var(--white);
  padding: 16px 20px;
  position: relative;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 5px;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li a:hover {
  color: var(--theme);
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li:hover a {
  color: var(--white);
  z-index: 999;
  position: relative;
}
.service-details-wrapper .service-main-sideber .service-single-widget .service-categories li:hover::before {
  width: 100%;
}
.service-details-wrapper .service-main-sideber .service-contact-bg {
  position: relative;
  z-index: 9;
}
.service-details-wrapper .service-main-sideber .service-contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(74, 63, 53, 0.9);
  z-index: -1;
}
.service-details-wrapper .service-main-sideber .service-contact-bg::after {
  position: absolute;
  content: "";
  width: 396px;
  height: 445px;
  border: 1px solid var(--white);
  top: 10px;
  left: 10px;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg::after {
    display: none;
  }
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content {
  padding: 70px 50px;
  text-align: center;
  position: relative;
  z-index: 999;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content {
    padding: 50px 29px;
  }
}
@media (max-width: 767px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content {
    padding: 30px;
  }
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content h3 {
  color: var(--white);
  font-size: 30px;
  text-transform: uppercase;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content h3 {
    font-size: 24px;
  }
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content span {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 60px;
  display: inline-block;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content span {
    margin-bottom: 30px;
  }
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
  margin: 0 auto;
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content h3 {
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-top: 10px;
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content h3 a {
  color: var(--white);
}
.service-details-wrapper .service-main-sideber .service-contact-bg .contact-content .btn {
  color: var(--theme);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-top: 50px;
  text-decoration: underline;
}
@media (max-width: 1399px) {
  .service-details-wrapper .service-main-sideber .service-contact-bg .contact-content .btn {
    margin-top: 30px;
  }
}

.service-main-items-4 {
  position: relative;
  margin-top: 30px;
}
.service-main-items-4::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 132.29px;
  height: 133px;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.service-main-items-4 .service-card-items-4 {
  background-color: var(--white);
  padding: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 69%, 65% 100%, 0 100%, 0% 50%);
}
@media (max-width: 1399px) {
  .service-main-items-4 .service-card-items-4 {
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 100%, 0% 50%);
  }
}
@media (max-width: 991px) {
  .service-main-items-4 .service-card-items-4 {
    clip-path: polygon(0 0, 100% 0, 100% 66%, 58% 100%, 0 100%, 0% 50%);
  }
}
.service-main-items-4 .service-card-items-4 .service-image {
  position: relative;
  overflow: hidden;
}
.service-main-items-4 .service-card-items-4 .service-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.service-main-items-4 .service-card-items-4 .service-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.service-main-items-4 .service-card-items-4 .service-content {
  margin-top: 30px;
}
.service-main-items-4 .service-card-items-4 .service-content h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-main-items-4 .service-card-items-4 .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-main-items-4 .service-card-items-4 .service-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-main-items-4 .service-card-items-4 .service-content p {
  max-width: 370px;
}
.service-main-items-4 .service-card-items-4 .service-content .view-btn {
  color: var(--header);
  font-weight: 600;
  color: rgb(74, 63, 53);
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  margin-top: 40px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.service-main-items-4 .service-card-items-4 .service-content .view-btn i {
  margin-left: 5px;
}
.service-main-items-4 .service-card-items-4 .service-content .view-btn:hover {
  color: var(--theme);
}
.service-main-items-4 .service-card-items-4:hover .service-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.service-main-items-4 .service-card-items-4:hover .service-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}

.service-section-4 .service-slider-4 {
  margin-right: -530px;
}
@media (max-width: 1399px) {
  .service-section-4 .service-slider-4 {
    margin-right: 0;
  }
}
.service-section-4 .array-button {
  position: absolute;
  bottom: 310px;
  left: 200px;
  display: grid;
  gap: 20px;
}
@media (max-width: 1600px) {
  .service-section-4 .array-button {
    display: none;
  }
}
.service-section-4 .array-button .array-prev {
  background-color: var(--theme);
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.service-section-4 .array-button .array-prev:hover {
  background-color: var(--white);
  color: var(--header);
}
.service-section-4 .array-button .array-next {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.service-section-4 .array-button .array-next:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.top-image {
  margin-top: 84px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .top-image {
    margin-top: 75px;
    margin-bottom: 30px;
  }
}
.top-image img {
  width: 100%;
  height: 100%;
}

.service-main-items-inner {
  position: relative;
}
.service-main-items-inner::before {
  position: absolute;
  content: "";
  background-color: var(--header);
  width: 132.29px;
  height: 133px;
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 0.4s ease-in-out;
}
.service-main-items-inner .service-card-items-inner {
  background-color: var(--bg-4);
  padding: 30px 26px;
  clip-path: polygon(0 0, 100% 0, 100% 69%, 65% 100%, 0 100%, 0% 50%);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .service-main-items-inner .service-card-items-inner {
    clip-path: polygon(0 0, 100% 0, 100% 70%, 66% 100%, 0 100%, 0% 50%);
  }
}
@media (max-width: 991px) {
  .service-main-items-inner .service-card-items-inner {
    clip-path: polygon(0 0, 100% 0, 100% 66%, 58% 100%, 0 100%, 0% 50%);
    padding: 30px 15px;
  }
}
.service-main-items-inner .service-card-items-inner .service-image {
  position: relative;
  overflow: hidden;
}
.service-main-items-inner .service-card-items-inner .service-image img {
  width: 100%;
  height: 100%;
  display: inline-block;
  transition: all 500ms ease;
}
.service-main-items-inner .service-card-items-inner .service-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.service-main-items-inner .service-card-items-inner .service-content {
  margin-top: 30px;
}
.service-main-items-inner .service-card-items-inner .service-content h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-main-items-inner .service-card-items-inner .service-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.service-main-items-inner .service-card-items-inner .service-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.service-main-items-inner .service-card-items-inner .service-content p {
  max-width: 370px;
}
.service-main-items-inner .service-card-items-inner .service-content .view-btn {
  color: var(--header);
  font-weight: 600;
  color: rgb(74, 63, 53);
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  margin-top: 40px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}
.service-main-items-inner .service-card-items-inner .service-content .view-btn i {
  margin-left: 5px;
}
.service-main-items-inner .service-card-items-inner .service-content .view-btn:hover {
  color: var(--theme);
}
.service-main-items-inner .service-card-items-inner:hover .service-image img:first-child {
  transform: translateX(0) scaleX(1);
  opacity: 1;
  filter: blur(0);
}
.service-main-items-inner .service-card-items-inner:hover .service-image img:nth-child(2) {
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  filter: blur(10px);
}
.service-main-items-inner:hover::before {
  background-color: var(--theme);
}
.service-main-items-inner:hover .service-card-items-inner {
  background-color: var(--header);
}
.service-main-items-inner:hover .service-card-items-inner .service-content h3 a {
  color: var(--white);
}
.service-main-items-inner:hover .service-card-items-inner .service-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}
.service-main-items-inner:hover .service-card-items-inner .service-content p {
  max-width: 370px;
  color: var(--white);
}
.service-main-items-inner:hover .service-card-items-inner .service-content .view-btn {
  color: var(--white);
}

.shop-card-items {
  margin-top: 30px;
  background-color: #F5F5F5;
}
.shop-card-items .shop-image {
  position: relative;
  overflow: hidden;
}
.shop-card-items .shop-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.shop-card-items .shop-image .shop-icon {
  gap: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  right: 5%;
}
.shop-card-items .shop-image .shop-icon li {
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}
.shop-card-items .shop-image .shop-icon li a, .shop-card-items .shop-image .shop-icon li button {
  background-color: var(--theme);
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: var(--white);
  text-align: center;
  transition: all 0.4s ease-in-out;
}
.shop-card-items .shop-image .shop-icon li a:hover, .shop-card-items .shop-image .shop-icon li button:hover {
  background-color: var(--header);
}
.shop-card-items .shop-image .discount {
  display: inline-block;
  padding: 6px 8px;
  line-height: 1;
  background-color: #405C37;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  font-family: "Cinzel", serif;
  position: absolute;
  top: 16px;
  left: 16px;
}
.shop-card-items .shop-content {
  padding: 30px 24px;
  padding-top: 24px;
}
.shop-card-items .shop-content .star-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.shop-card-items .shop-content .star-list .star {
  color: #FCD554;
}
.shop-card-items .shop-content .star-list span {
  font-size: 14px;
  font-weight: 500;
}
.shop-card-items .shop-content h3 {
  font-size: 20px;
}
.shop-card-items .shop-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.shop-card-items .shop-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.shop-card-items .shop-content .price-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.shop-card-items .shop-content .price-list li {
  font-weight: 500;
}
.shop-card-items:hover .shop-image .shop-icon li {
  transform: scaleX(1);
}
.shop-card-items:hover .shop-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.shop-card-items.style-2 {
  background-color: transparent;
  border: 1px solid #F3EDE4;
  transition: all 0.4s ease-in-out;
}
.shop-card-items.style-2 .shop-image .discount {
  background-color: var(--theme);
}
.shop-card-items.style-2:hover {
  background-color: #F3EDE4;
}

.shop-details-wrapper .shop-details-image {
  position: relative;
}
.shop-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 20px;
}
.shop-details-wrapper .shop-details-image .nav img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 109px;
}
.shop-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
}
.shop-details-wrapper .product-details-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .shop-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.shop-details-wrapper .product-details-content h3 {
  font-size: 30px;
  font-weight: 500;
}
.shop-details-wrapper .product-details-content .star a {
  color: var(--theme);
  font-size: 16px;
  font-weight: 600;
}
.shop-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}
.shop-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.shop-details-wrapper .product-details-content .price-list h3 {
  font-size: 22px;
  font-weight: 500;
}
.shop-details-wrapper .product-details-content .cart-wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity {
  padding-right: 15px;
  margin-right: 15px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input {
  width: 50px;
  height: 38px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  margin-top: 2px;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity input:hover {
  background: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .minus {
  color: var(--header);
  font-weight: 700;
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .plus {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .cart-quantity .qty {
  color: var(--header);
}
.shop-details-wrapper .product-details-content .cart-wrp .icon {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  line-height: 40px;
}
.shop-details-wrapper .product-details-content .cart-wrp .icon:hover {
  background: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile {
  z-index: 2;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul {
  transform: translateX(-100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a {
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: transparent;
  border: 1px solid var(--border);
  border-left: 0 px solid var(--border);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 12px;
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile ul li a:hover {
  color: var(--white);
  background-color: var(--theme);
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile .plus-btn {
  width: 50px;
  height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--header);
  line-height: 40px;
  cursor: pointer;
}
.shop-details-wrapper .product-details-content .cart-wrp .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
  padding: 20px 35px;
}
@media (max-width: 575px) {
  .shop-details-wrapper .product-details-content .cart-wrp .theme-btn {
    padding: 15px 40px;
  }
}
.shop-details-wrapper .product-details-content .shop-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.shop-details-wrapper .product-details-content .shop-btn .theme-btn {
  padding: 20px 50px;
}
.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2) {
  background-color: var(--header);
}
.shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::before, .shop-details-wrapper .product-details-content .shop-btn .theme-btn:nth-child(2)::after {
  background-color: var(--theme);
}
.shop-details-wrapper .product-details-content .details-info {
  position: relative;
  margin-top: 20px;
}
.shop-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 5px;
  font-family: "DM Sans", sans-serif;
}
.shop-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-transform: capitalize;
}
.shop-details-wrapper .product-details-content .details-info.style-2 a b {
  border: 1px solid #e6e6e6;
  padding: 4px 12px 6px;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
.shop-details-wrapper .product-details-content .details-info.style-2 a b:hover {
  background-color: var(--theme);
  color: var(--white);
}

.single-tab {
  padding-top: 80px;
}
@media (max-width: 575px) {
  .single-tab {
    padding-top: 50px;
  }
}
.single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.single-tab .nav .nav-link.active {
  position: relative;
}
.single-tab .nav .nav-link.active h6 {
  color: var(--theme);
}
.single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}
@media (max-width: 575px) {
  .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--theme);
  font-weight: 500;
}
.single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
.single-tab .description-items .description-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.single-tab .review-items .admin-items .content .head-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: start;
}
@media (max-width: 1399px) {
  .single-tab .review-items .admin-items .content .head-content {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.single-tab .review-items .admin-items .content .head-content .content1 {
  margin-bottom: 10px;
}
.single-tab .review-items .admin-items .content .head-content .content1 .star {
  margin-top: 5px;
}
.single-tab .review-items .admin-items .content .head-content .content1 .star i {
  font-size: 16px;
  color: #ff9200;
}
.single-tab .review-items .admin-items .content .head-content span {
  font-size: 14px;
  margin-left: 30px;
}
.single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: uppercase;
}
.single-tab .review-title .rate-now i {
  font-size: 16px;
  color: #ff9200;
}
.single-tab .review-form {
  margin-top: 40px;
}
.single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 14px;
  border: none;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
  border-radius: 0;
}
.cart-list-area .top-content {
  margin-bottom: 60px;
}
.cart-list-area .top-content .list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.cart-list-area .top-content .list li {
  position: relative;
}
.cart-list-area .top-content .list li:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 50px;
  top: 13px;
  border-radius: 30px;
  background-color: #A8ACB0;
}
.cart-list-area .common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.cart-list-area .common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .cart-list-area .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.cart-list-area .common-table .cart-item-thumb .head {
  color: var(--header);
  font-size: 20px;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-weight: 600;
}
.cart-list-area .common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}
.cart-list-area .common-table tr {
  border-bottom: 1px solid #E4E4E5;
}
.cart-list-area .common-table thead,
.cart-list-area .common-table tbody {
  width: 100%;
}
.cart-list-area .common-table thead tr,
.cart-list-area .common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}
.cart-list-area .common-table thead tr th,
.cart-list-area .common-table thead tr td,
.cart-list-area .common-table tbody tr th,
.cart-list-area .common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}
.cart-list-area .common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}
.cart-list-area .common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
  text-transform: uppercase;
}
.cart-list-area .common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}
.cart-list-area .quantity button i {
  font-size: 16px;
}
.cart-list-area .quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
  background-color: transparent;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--text);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--text);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select {
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  background-color: transparent;
  padding: 4px 15px;
  height: 49px;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .single-select .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  margin-bottom: 24px;
}
.checkout-single-wrapper .checkout-single-bg .theme-btn {
  border-radius: 0;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border: 1px solid #E4E4E5;
  background-color: var(--theme);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: uppercase;
}
.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 0px;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--text);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}

.shop-grid-section .shop-notices-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .shop-grid-section .shop-notices-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.shop-grid-section .shop-notices-wrapper .shop-showing p {
  color: var(--header);
  text-transform: uppercase;
}
.shop-grid-section .shop-notices-wrapper .form .single-select {
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  line-height: 1;
  height: initial;
  border: 1px solid var(--theme);
  background: var(--bg);
  color: var(--header);
  border-radius: 0;
}
.shop-grid-section .shop-notices-wrapper .form .single-select::after {
  right: 20px;
  border-bottom: 2px solid var(--border);
  border-right: 2px solid var(--border);
  margin-top: -5px;
  width: 8px;
  height: 8px;
}
.shop-grid-section .shop-notices-wrapper .form .single-select .option {
  color: var(--text);
}
.shop-grid-section .shop-notices-wrapper .form .list {
  width: 100%;
}
.shop-grid-section .shop-notices-wrapper .form-clt {
  max-width: 300px;
  width: 100%;
}

.team-card-item {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.team-card-item img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  overflow: hidden;
  position: relative;
}
.team-card-item .social-icon {
  display: grid;
  align-items: center;
  position: absolute;
  right: -100px;
  bottom: 19.8%;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  z-index: 99;
}
.team-card-item .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 99;
}
.team-card-item .social-icon a:hover {
  background-color: var(--white);
  color: var(--header);
}
.team-card-item .team-content {
  background-color: var(--header);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 78%, 100% 100%, 0 100%, 0 77%, 0 151%, 20% 0);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: 30px;
  padding-left: 90px;
}
@media (max-width: 1199px) {
  .team-card-item .team-content {
    padding-left: 30px;
    clip-path: none;
  }
}
.team-card-item .team-content .team-title h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}
.team-card-item .team-content .team-title h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-card-item .team-content .team-title p {
  color: #FCFCFC;
  opacity: 0.7;
}
.team-card-item .team-content .arrow-icon {
  font-size: 24px;
  color: var(--white);
}
.team-card-item:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}
.team-card-item:hover .social-icon {
  opacity: 1;
  right: 0;
}
.team-card-item:hover .team-content .arrow-icon {
  transform: rotate(-90deg);
  color: var(--theme);
}

.team-section {
  position: relative;
}
.team-section .horse-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: moveHorse 15s linear infinite;
}
@media (max-width: 1399px) {
  .team-section .horse-shape {
    display: none;
  }
}
.team-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .team-section .right-shape {
    display: none;
  }
}
.team-section .team-slider {
  margin-left: -200px;
  margin-right: -200px;
}
@media (max-width: 1399px) {
  .team-section .team-slider {
    margin-left: 0;
    margin-right: 0;
  }
}
.team-section .swiper-dot-2 {
  position: relative;
}
.team-section .swiper-dot-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(74, 63, 53, 0.2);
  width: 535px;
  height: 1px;
  top: 12px;
  left: 18%;
}
@media (max-width: 1899px) {
  .team-section .swiper-dot-2::before {
    width: 380px;
  }
}
@media (max-width: 1399px) {
  .team-section .swiper-dot-2::before {
    display: none;
  }
}
.team-section .swiper-dot-2::after {
  position: absolute;
  content: "";
  background-color: rgba(74, 63, 53, 0.2);
  width: 535px;
  height: 1px;
  top: 12px;
  right: 18%;
}
@media (max-width: 1899px) {
  .team-section .swiper-dot-2::after {
    width: 380px;
  }
}
@media (max-width: 1399px) {
  .team-section .swiper-dot-2::after {
    display: none;
  }
}

.team-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .details-content {
  margin-left: 40px;
}
@media (max-width: 1399px) {
  .team-details-wrapper .details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .details-content h2 {
  margin-bottom: 10px;
}
.team-details-wrapper .details-content span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}
.team-details-wrapper .details-content .list {
  margin-top: 30px;
}
.team-details-wrapper .details-content .list li {
  color: var(--header);
}
.team-details-wrapper .details-content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.team-details-wrapper .details-content .list li i {
  color: var(--header);
  margin-right: 5px;
}
.team-details-wrapper .details-content .social-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-details-wrapper .details-content .social-icon a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  color: var(--header);
  background-color: #F4F4F4;
  transition: all 0.4s ease-in-out;
}
.team-details-wrapper .details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.team-experience-wrapper .team-experience-content .progress-area {
  margin-top: 40px;
  max-width: 550px;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .progress {
  background: rgba(170, 132, 83, 0.5);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.team-experience-wrapper .contact-form-items h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .team-experience-wrapper .contact-form-items h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .team-experience-wrapper .contact-form-items h3 {
    font-size: 25px;
  }
}
.team-experience-wrapper .contact-form-items .form-clt input, .team-experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
}
.team-experience-wrapper .contact-form-items .form-clt input::placeholder, .team-experience-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.team-experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}

.testimonial-box {
  background-color: #F2F2F2;
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 48px 88px;
  text-align: center;
  position: relative;
  z-index: 99;
}
@media (max-width: 767px) {
  .testimonial-box {
    padding: 30px 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-box {
    padding: 30px 25px;
  }
}
.testimonial-box .star {
  color: #FCD554;
  text-align: center;
  margin-bottom: 15px;
}
.testimonial-box h3 {
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 575px) {
  .testimonial-box h3 {
    font-size: 16px;
  }
}
.testimonial-box .testimonial-slider-thumb2 {
  max-width: 360px;
  height: 100px;
}
@media (max-width: 575px) {
  .testimonial-box .testimonial-slider-thumb2 {
    max-width: 100px;
  }
}
.testimonial-box .testimonial-slider-thumb2 img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.testimonial-box .testimonial-slider-thumb2 .swiper-wrapper {
  display: flex;
  gap: 0px;
}
.testimonial-box .testimonial-slider-thumb2 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: auto;
}
.testimonial-box .testimonial-slider-thumb2 .swiper-slide-thumb-active img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  position: relative;
  z-index: 9;
  border: 2px solid var(--theme);
}
.testimonial-box .array-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 0;
  max-width: 660px;
}
.testimonial-box .array-items .array-prev {
  background-color: var(--white);
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: var(--header);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.testimonial-box .array-items .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-box .array-items .array-next {
  width: 56px;
  height: 56px;
  line-height: 56px;
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.testimonial-box .array-items .array-next:hover {
  background-color: var(--header);
}
.testimonial-box .client-info {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .testimonial-box .client-info {
    gap: 15px;
  }
}
.testimonial-box .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .testimonial-box .client-info h4 {
    font-size: 16px;
  }
}
.testimonial-box .client-info p {
  color: #595959;
  line-height: 1;
}
@media (max-width: 767px) {
  .testimonial-box .client-info p {
    font-size: 14px;
  }
}
.testimonial-box .array-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 660px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
}
.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--white);
  top: 70%;
}
.testimonial-section .line-shape-animation {
  height: 28px;
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  z-index: -1;
  background-size: cover;
}
@media (max-width: 1399px) {
  .testimonial-section .line-shape-animation {
    display: none;
  }
}
.testimonial-section .horse-shape {
  position: absolute;
  bottom: -20px;
  left: 0;
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  right: 60px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .testimonial-section-2 .bg-image {
    left: 0;
    right: 0;
  }
}
.testimonial-section-2 .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(74, 63, 53, 0.6);
}
.testimonial-section-2 .bg-image img {
  width: 100%;
  height: 100%;
}
.testimonial-section-2 .testimonial-bottom {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .testimonial-section-2 .testimonial-bottom {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.testimonial-section-2 .testimonial-bottom .radius-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border-radius: 100px;
  padding: 5px 20px 5px 5px;
  margin-bottom: 25px;
  position: relative;
  max-width: 413px;
  gap: 10px;
}
.testimonial-section-2 .testimonial-bottom .radius-box h6 {
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.testimonial-section-2 .testimonial-bottom .array-items {
  position: relative;
  margin-top: 0;
}
.testimonial-section-2 .testimonial-slider-3 {
  margin-top: 48px;
  margin-left: -45px;
  margin-right: -45px;
}
@media (max-width: 1399px) {
  .testimonial-section-2 .testimonial-slider-3 {
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}

.testimonial-box-item {
  padding: 40px;
  background-color: #F3EDE4;
}
@media (max-width: 1399px) {
  .testimonial-box-item {
    padding: 30px;
  }
}
.testimonial-box-item .star {
  color: #F4BB00;
  margin-bottom: 5px;
}
.testimonial-box-item p {
  font-size: 20px;
  font-weight: 500;
  color: var(--header);
  max-width: 564px;
  margin-bottom: 24px;
  line-height: 150%;
  font-style: italic;
}
@media (max-width: 1399px) {
  .testimonial-box-item p {
    font-size: 16px;
  }
}
.testimonial-box-item .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .testimonial-box-item .client-info-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.testimonial-box-item .client-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1399px) {
  .testimonial-box-item .client-info-item .info-item {
    flex-wrap: wrap;
  }
}
.testimonial-box-item .client-info-item .info-item .content h4 {
  text-transform: uppercase;
}

.testimonial-bg-box-item {
  background-color: var(--white);
}
.testimonial-bg-box-item .top-items {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .testimonial-bg-box-item .top-items {
    padding: 24px;
    gap: 22px;
  }
}
.testimonial-bg-box-item .top-items .client-image {
  position: relative;
}
.testimonial-bg-box-item .top-items .client-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--white);
  left: 6px;
  width: 91%;
  height: 91%;
  top: 5px;
}
@media (max-width: 1399px) {
  .testimonial-bg-box-item .top-items .client-image::before {
    display: none;
  }
}
.testimonial-bg-box-item .top-items .client-image img {
  width: 100%;
  height: 100%;
}
.testimonial-bg-box-item .top-items .info-cont h4 {
  color: var(--white);
  margin-top: 10px;
  text-transform: uppercase;
}
.testimonial-bg-box-item .top-items .info-cont span {
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}
.testimonial-bg-box-item .top-items::before {
  position: absolute;
  content: "";
  right: 70px;
  bottom: -14px;
  width: 28px;
  height: 28px;
  background-color: var(--theme);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.testimonial-bg-box-item .top-items::after {
  position: absolute;
  content: "";
  right: 70px;
  bottom: -20px;
  width: 28px;
  height: 28px;
  background-color: var(--white);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  z-index: -1;
}
.testimonial-bg-box-item .bottom-item {
  background-color: var(--header);
  padding: 30px;
  margin-top: 6px;
}
@media (max-width: 1600px) {
  .testimonial-bg-box-item .bottom-item {
    padding: 24px;
  }
}
.testimonial-bg-box-item .bottom-item .star {
  color: #F4BB00;
  margin-bottom: 15px;
}
.testimonial-bg-box-item .bottom-item p {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  font-size: 18.5px;
  line-height: 150%;
}

.testimonial-section-4 .testimonial-slider-4 {
  margin-left: -160px;
  margin-right: -160px;
  margin-top: 30px;
}
@media (max-width: 1600px) {
  .testimonial-section-4 .testimonial-slider-4 {
    margin-left: -360px;
    margin-right: -360px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-4 .testimonial-slider-4 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-4 .testimonial-slider-4 {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.testimonial-inner-wrapper {
  border-bottom: 1px solid rgba(74, 63, 53, 0.2);
  padding-bottom: 120px;
}
@media (max-width: 1399px) {
  .testimonial-inner-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial-inner-wrapper {
    padding-bottom: 80px;
  }
}
.testimonial-inner-wrapper .testimonial-content .array-button {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .testimonial-inner-wrapper .testimonial-content .array-button {
    margin-top: 30px;
  }
}
.testimonial-inner-wrapper .testimonial-content .array-button .array-prev {
  width: 53px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  border: 1px solid rgba(74, 63, 53, 0.1);
  text-align: center;
  color: rgba(74, 63, 53, 0.5);
  transition: all 0.4s ease-in-out;
}
.testimonial-inner-wrapper .testimonial-content .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-inner-wrapper .testimonial-content .array-button .array-next {
  width: 53px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  border: 1px solid rgba(74, 63, 53, 0.1);
  text-align: center;
  color: rgba(74, 63, 53, 0.5);
  transition: all 0.4s ease-in-out;
}
.testimonial-inner-wrapper .testimonial-content .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}
.testimonial-inner-wrapper .testimonial-slider-5 {
  margin-right: -420px;
}
@media (max-width: 1399px) {
  .testimonial-inner-wrapper .testimonial-slider-5 {
    margin-right: 0;
  }
}/*# sourceMappingURL=main.css.map */