
:root {
  --theme-color: #85BF18;
  --theme-shade-color: #99EF68;
  --theme-color-2: #FFE175;
  --theme-color-3: #004540;
  --title-color: #15161C;
  --body-color: #868681;
  --gray-color: #383838;
  --warning-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --light-color: #f5f5f5;
  --dark-color: #15161C;
  --white-color: #fff;
  --black-color: #000;
  --hr-color: #000;
  --outfit-font: "Outfit", sans-serif;
  --dm-sans-font: "DM Sans", sans-serif;
  --albert-sans-font: "Albert Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --body-fz: 16px;
}

/* 01 Default CSS */
html, body {
  scroll-behavior: smooth !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
html::-webkit-scrollbar-thumb:active, body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

body {
  color: var(--body-color);
  font-size: var(--body-fz);
  font-family: var(--dm-sans-font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
a:active, a:hover {
  text-decoration: none;
}

button,
.btn {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
button:active, button:hover, button:focus,
.btn:active,
.btn:hover,
.btn:focus {
  outline: 0;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.form-control:focus {
  color: var(--title-color);
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn:hover,
.btn:focus {
  outline: 0;
  box-shadow: none;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--outfit-font);
  color: var(--title-color);
  font-weight: 700;
  margin-bottom: 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 48px;
  line-height: 1.3;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
}

hr {
  margin: 20px 0;
  border-color: var(--hr-color);
}

ol {
  list-style: decimal;
}

p:last-child {
  margin-bottom: 0;
}

/* Form */
label {
  color: var(--gray-color);
  cursor: pointer;
  font-size: var(--body-fz);
  font-weight: 400;
}

*::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--theme-color);
  color: #fff;
  text-shadow: none;
}

/* Placeholder */
*::-moz-placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: var(--body-fz);
  opacity: 1;
}

/* Button */
.btn-theme {
  color: #fff;
  border-color: var(--theme-color);
  background: var(--theme-color);
}
.btn-theme:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

.btn-rounded {
  border-radius: 100% !important;
}

.btn-square {
  border-radius: 0 !important;
}

/* Bg Color */
.bg-gray {
  background: var(--gray-color);
}

.bg-white {
  background: #fff;
}

.bg-cream {
  background: #f8f7f0;
}

.bg-black {
  background: #000;
}

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

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

.bg-off-white {
  background-color: #f7f7f7;
}

.bg-off-white-2 {
  background-color: #f1f8ff;
}

.bg-blue {
  background-color: #4c87ff !important;
}

.bg-yellow {
  background-color: #fea116 !important;
}

.bg-pink {
  background-color: #fc4557 !important;
}

.bg-egg-blue {
  background-color: #1cb5a3 !important;
}

.bg-purple {
  background-color: #5851a7 !important;
}

/* Text Color */
.gray-color {
  background: var(--gray-color);
}

.white-color {
  color: #fff;
}

.black-color {
  color: #000;
}

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

/* Others Common Css Here :) */
.table-row {
  display: table;
  width: 100%;
  height: 100%;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

.separator {
  border-top: 1px solid #f2f2f2;
}

.overflow-x-clip {
  overflow-x: clip;
}

.overflow-y-clip {
  overflow-y: clip;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  40% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  80% {
    box-shadow: 0 0 0 50px rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
  font-family: inherit;
  line-height: inherit;
}

.common-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .common-subtitle {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 14px;
  }
}
.common-subtitle.style-color-white {
  color: var(--white-color);
}
.common-subtitle.style-color-2 {
  color: var(--theme-color-2);
}
.common-subtitle.style-color-3 {
  color: var(--theme-color-3);
}
.common-subtitle.m-b-0 {
  margin-bottom: 0;
}

.common-title {
  text-align: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .common-title {
    margin-bottom: 20px;
  }
}
.common-title h2 {
  font-weight: 600;
  font-size: 52px;
  line-height: 60px;
  color: var(--theme-color-3);
  margin-bottom: 0 !important;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .common-title h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .common-title h2 {
    font-size: 42px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .common-title h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .common-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.common-title.style-color-white h2 {
  color: var(--white-color);
}
.common-title.style-color-light h2 {
  color: var(--light-color);
}
.common-title.style-color-2 h2 {
  color: var(--theme-color-2);
}
.common-title.style-color-3 h2 {
  color: var(--theme-color-3);
}
.common-title.m-b-0 {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1392px;
  }
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

/*====================================================================
    Components
====================================================================*/
/* 02 Preloader CSS */
.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: 999999;
}

.preloader {
  width: 200px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader img {
  width: 100%;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: var(--theme-color-3);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
/* 03 Button CSS */
.e-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--theme-color-3);
  padding: 16px 25px;
  background: var(--theme-color-2);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn {
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    padding: 5px 5px 5px 20px;
  }
}
.e-primary-btn:before {
  content: "";
  position: absolute;
  left: -110%;
  top: 50%;
  width: 200%;
  height: 200%;
  background: var(--theme-color-3);
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 200px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.has-icon {
  padding: 5px 5px 5px 25px;
  gap: 15px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn.has-icon {
    gap: 10px;
  }
}
.e-primary-btn .icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: var(--theme-color-3);
  color: var(--white-color);
  border-radius: 100%;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (max-width: 1399px) {
  .e-primary-btn .icon-wrap {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap {
    font-size: 15px;
  }
}
.e-primary-btn .icon-wrap .icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 15px;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .e-primary-btn .icon-wrap .icon {
    width: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .e-primary-btn .icon-wrap .icon {
    width: 10px;
  }
}
.e-primary-btn .icon-wrap .icon i {
  flex: none;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.e-primary-btn.is-hover-white:before {
  background: var(--white-color);
}
.e-primary-btn.is-hover-white:hover {
  color: var(--theme-color-3);
}
.e-primary-btn.is-hover-white:hover .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.e-primary-btn:hover {
  color: var(--white-color);
}
.e-primary-btn:hover:before {
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.e-primary-btn:hover .icon-wrap {
  background: var(--white-color);
  color: var(--theme-color-3);
}
.e-primary-btn:hover .icon-wrap .icon i {
  transform: translateX(100%);
}
.e-primary-btn.has-small .icon-wrap {
  width: 34px;
  height: 34px;
}
@media (max-width: 991px) {
  .e-primary-btn.has-small .icon-wrap {
    width: 40px;
    height: 40px;
  }
}

/* 04 Header Css */
.logo-wrap img {
  width: 100%;
  max-width: 165px;
}

.logo-wrap-2 {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 0;
  padding: 20px 52px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 1399px) {
  .logo-wrap-2 {
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .logo-wrap-2 {
    padding: 15px 25px;
  }
}
@media (max-width: 767px) {
  .logo-wrap-2 {
    padding: 15px 20px;
  }
}
.logo-wrap-2 img {
  max-width: 165px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .logo-wrap-2 img {
    max-width: 125px;
  }
}

.header-bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom {
    padding: 10px 0;
  }
}

.header-bottom-2 {
  padding-left: 85px;
  padding-right: 85px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 2;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-bottom-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bottom-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header-bottom-2 {
    padding: 10px 0;
  }
}

.header-bottom-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom-layout-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left {
    gap: 10px;
  }
}

.header-left-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-2 {
    gap: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-2 {
    gap: 10px;
  }
}

.header-left-4 {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-left-4 {
    gap: 100px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-4 {
    gap: 10px;
  }
}

.header-left-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 69%;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-left-3 {
    width: 66%;
  }
}

.header-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 16px 16px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-middle {
    padding: 10px 12px;
  }
}
.header-middle .header-info-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-right {
    gap: 10px;
  }
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  display: inline-block;
}
.main-menu ul li:hover a {
  background: rgba(0, 69, 64, 0.1);
}
.main-menu ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--theme-color-3);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--theme-color-2);
}

.main-menu-2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-2 ul li {
  display: inline-block;
}
.main-menu-2 ul li:hover a {
  color: var(--theme-color-2);
  background: rgba(217, 217, 217, 0.16);
}
.main-menu-2 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
  gap: 5px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-2 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-2 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-2 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-2 ul .has-dropdown > a:after {
  content: "\f0d7";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
}
.main-menu-2 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-2 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-2 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-2 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-2 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--theme-color-2);
}

.main-menu-3 {
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}
.main-menu-3 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-3 ul li {
  display: inline-flex;
  align-items: center;
}
.main-menu-3 ul li:hover a {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.main-menu-3 ul li:first-child:before {
  width: 0;
  margin: 0;
}
.main-menu-3 ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin-right: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
.main-menu-3 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 167%;
  color: var(--white-color);
  border-radius: 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .main-menu-3 ul li a {
    padding: 5px 12px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-3 ul li a {
    padding: 4px 10px;
    font-size: 16px;
  }
}
.main-menu-3 ul .has-dropdown {
  position: relative;
  z-index: 1;
}
.main-menu-3 ul .has-dropdown > a:after {
  content: "+";
  font-family: var(--icon-font);
  font-weight: 900;
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown:hover > a:after {
  transform: rotate(180deg);
  content: "\f068";
}
.main-menu-3 ul .has-dropdown:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.main-menu-3 ul .has-dropdown .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.main-menu-3 ul .has-dropdown .sub-menu li {
  display: block;
}
.main-menu-3 ul .has-dropdown .sub-menu li:before {
  display: none;
}
.main-menu-3 ul .has-dropdown .sub-menu li a {
  display: block;
  color: #383838;
  font-size: 16px;
  border-radius: 0;
  background: none;
  padding: 5px 20px;
}
.main-menu-3 ul .has-dropdown .sub-menu li a:hover {
  color: #383838;
  background: var(--theme-color-2);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info {
    gap: 5px;
  }
}
.header-info .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  color: var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-icon-2 {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(0, 69, 64, 0.1);
  border: 1.5px solid rgba(0, 69, 64, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--theme-color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-icon-2 {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(56, 56, 56, 0.8);
}
.header-info .header-info-content p {
  font-family: var(--outfit-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--theme-color-3);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info .header-info-content p {
    font-size: 16px;
  }
}
.header-info .header-info-content p a {
  color: var(--theme-color-3);
}
.header-info .header-info-content p a:hover {
  color: var(--theme-color);
}

.header-info-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 {
    gap: 10px;
  }
}
.header-info-2 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: #f8f7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-2 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-2 .header-info-content p {
  font-family: var(--outfit-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-2 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-2 .header-info-content p a {
  color: var(--white-color);
}
.header-info-2 .header-info-content p a:hover {
  color: var(--theme-color-2);
}

.header-info-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 {
    gap: 10px;
  }
}
.header-info-3 .header-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgba(217, 217, 217, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  color: var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-icon {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.header-info-3 .header-info-content span {
  font-size: 14px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.header-info-3 .header-info-content p {
  font-family: var(--outfit-font);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--white-color);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-info-3 .header-info-content p {
    font-size: 16px;
  }
}
.header-info-3 .header-info-content p a {
  color: var(--white-color);
}
.header-info-3 .header-info-content p a:hover {
  color: var(--theme-color-2);
}

.header-bar {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(0, 69, 64, 0.1);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar {
    width: 45px;
    height: 45px;
  }
}
.header-bar .bar {
  background: var(--theme-color-3);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar .bar {
    width: 18px;
  }
}
.header-bar .bar-1 {
  margin-top: -6px;
}
.header-bar .bar-3 {
  margin-top: 6px;
}
.header-bar.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar.active .bar {
  background: var(--white-color);
}
.header-bar.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar.active .bar-2 {
  left: 200%;
}
.header-bar.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-2 {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4.1px);
  border-radius: 100%;
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 {
    width: 45px;
    height: 45px;
  }
}
.header-bar-2 .bar {
  background: var(--white-color);
  width: 20px;
  height: 1.6px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2 .bar {
    width: 18px;
  }
}
.header-bar-2 .bar-1 {
  margin-top: -6px;
}
.header-bar-2 .bar-3 {
  margin-top: 6px;
}
.header-bar-2.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar-2.active .bar {
  background: var(--white-color);
}
.header-bar-2.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-2.active .bar-2 {
  left: 200%;
}
.header-bar-2.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-2.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-bar-3 {
  width: 81px;
  height: 81px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14.75px);
  border-radius: 0 0 0 16px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  flex: none;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
@media (max-width: 767px) {
  .header-bar-3 {
    width: 70px;
    height: 71px;
  }
}
.header-bar-3 .bar {
  background: var(--white-color);
  width: 22px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3 .bar {
    width: 18px;
  }
}
.header-bar-3 .bar-1 {
  margin-top: -6px;
}
.header-bar-3 .bar-3 {
  margin-top: 6px;
}
.header-bar-3.active {
  background: var(--theme-color-3);
  border-color: var(--theme-color-3);
}
.header-bar-3.active .bar {
  background: var(--white-color);
}
.header-bar-3.active .bar-1 {
  transform: rotate(45deg) translate(-50%, -50%);
  top: 78%;
  left: 44%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-1 {
    top: 81%;
    left: 45%;
  }
}
.header-bar-3.active .bar-2 {
  left: 200%;
}
.header-bar-3.active .bar-3 {
  transform: rotate(-45deg) translate(-50%, -50%);
  top: 22%;
  left: 45%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .header-bar-3.active .bar-3 {
    top: 20%;
    left: 45%;
  }
}

.header-divider-bar {
  width: 30px;
  height: 1.6px;
  opacity: 0.15;
  border: 1px solid #004540;
  transform: rotate(90deg);
}

.header-section {
  position: relative;
  z-index: 99;
}

.header-section-1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.header-section-3 {
  position: relative;
  z-index: 10;
}
.header-section-3 .e-primary-btn {
  background: var(--theme-color-3);
  border: none;
  color: var(--theme-color-2);
}
.header-section-3 .e-primary-btn:before {
  background: var(--theme-color-2);
}
.header-section-3 .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.header-section-3 .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.header-section-3 .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}

.header-section-4 .e-primary-btn .icon-wrap {
  color: var(--theme-color-2);
}
.header-section-4 .e-primary-btn:hover .icon-wrap {
  color: var(--theme-color-3);
}

.header-section-5 {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-section-5 .e-primary-btn .icon-wrap {
  color: var(--theme-color-2);
}
.header-section-5 .e-primary-btn:hover .icon-wrap {
  color: var(--theme-color-3);
}

/* 05 OffCanvas Css */
.off-canvas-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-sidebar .off-canvas-sidebar-close {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--theme-color-3);
  color: var(--white-color);
  font-size: 20px;
  cursor: pointer;
  border-radius: 0 0 4px 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover {
  background: var(--error-color);
}
.off-canvas-sidebar .off-canvas-sidebar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-sidebar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

.off-canvas-sidebar-body {
  position: fixed;
  right: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  padding: 24px;
  padding-top: 70px;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-sidebar-body {
    max-width: 100%;
  }
}
.off-canvas-sidebar-body.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-sidebar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-sidebar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-sidebar-body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

.off-canvas-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-thumb img {
  width: 100%;
  border-radius: 10px;
}

.off-canvas-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.off-canvas-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.off-canvas-contact-item:hover .icon {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.off-canvas-contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--theme-color-3);
  color: var(--white-color);
  font-size: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-contact-item .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--title-color);
  margin-bottom: 4px;
}
.off-canvas-contact-item .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
}

.off-canvas-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.off-canvas-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: var(--theme-color-3);
  border-radius: 50px;
}
.off-canvas-social-links a:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}

.off-canvas-menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar.active {
  visibility: visible;
  opacity: 1;
}
.off-canvas-menubar .off-canvas-head {
  padding: 0 0 0 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.off-canvas-menubar .off-canvas-menubar-close {
  padding: 20px 30px 20px 30px;
  border-left: 1px solid #E5E5E5;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close i {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menubar .off-canvas-menubar-close:hover {
  color: var(--white-color);
  background: var(--error-color);
}
.off-canvas-menubar .off-canvas-menubar-close:hover i {
  transform: rotate(180deg);
}
.off-canvas-menubar .off-canvas-logo img {
  width: 100%;
  max-width: 165px;
}

.off-canvas-menubar-body {
  position: fixed;
  left: -100%;
  top: 0;
  width: 400px;
  background: #fff;
  z-index: 30;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 767px) {
  .off-canvas-menubar-body {
    max-width: 100%;
  }
}
.off-canvas-menubar-body.active {
  left: 0;
  visibility: visible;
  opacity: 1;
  z-index: 99999;
  -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.6s;
}
.off-canvas-menubar-body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.off-canvas-menubar-body::-webkit-scrollbar-track {
  background: #c1c1c1;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb {
  background-color: #222;
  outline: none;
}
.off-canvas-menubar-body::-webkit-scrollbar-thumb:active {
  background: var(--theme-color-2);
}

.off-canvas-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  text-align: left;
  padding: 20px 30px 40px;
}
.off-canvas-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.off-canvas-menu ul li {
  display: block;
  border-bottom: 1px solid #fdedf1;
}
.off-canvas-menu ul li:hover > a {
  color: var(--theme-color-3);
}
.off-canvas-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 0px;
}
.off-canvas-menu ul .has-dropdown > a:after {
  content: "\f078";
  font-family: var(--icon-font);
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.off-canvas-menu ul .has-dropdown.active > a {
  color: var(--theme-color-3);
}
.off-canvas-menu ul .has-dropdown.active > a:after {
  transform: translateY(-50%) rotate(180deg);
}
.off-canvas-menu ul .has-dropdown li {
  padding-left: 20px;
}
.off-canvas-menu ul .has-dropdown li:first-child {
  border-top: 1px solid #fdedf1;
}
.off-canvas-menu ul .has-dropdown li:last-child {
  border-bottom: 0;
}
.off-canvas-menu ul .has-dropdown li a {
  font-size: 14px;
  padding: 10px 0;
}
.off-canvas-menu ul .has-dropdown .sub-menu {
  display: none;
}

.off-canvas-menubar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
  cursor: pointer;
}

/* 06 Footer Css */
.footer-section {
  background-color: var(--theme-color-3);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom-layout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px 3px 3px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-layout .top-btn {
  border-radius: 100px;
  gap: 5px;
  padding: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .top-btn {
    padding: 8px 14px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .top-btn {
    position: absolute;
    padding: 8px 14px;
    bottom: -60px;
  }
}
.footer-bottom-layout .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
}
.footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  display: inline-flex;
  margin: 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-layout .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #F8F7F0;
}
.footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}

.footer-widget .w-title {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
  margin-bottom: 32px;
}
@media (max-width: 1399px) {
  .footer-widget .w-title {
    font-size: 20px;
  }
}
.footer-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget ul li {
  display: block;
  margin-bottom: 10px;
}
.footer-widget ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 1399px) {
  .footer-widget ul li a {
    font-size: 16px;
  }
}
.footer-widget ul li a:after {
  content: "\e09f";
  font-family: var(--icon-font);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-left: 5px;
  line-height: 1;
}
.footer-widget ul li a:hover {
  color: var(--theme-color-2);
}
.footer-widget ul li a:hover:after {
  margin-left: 0;
  opacity: 1;
}

.about-widget .footer-logo {
  margin-bottom: 25px;
}
.about-widget .footer-logo img {
  max-width: 165px;
}
.about-widget .text p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 1399px) {
  .about-widget .text p {
    font-size: 16px;
  }
}
.about-widget .info p {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 4px;
}
@media (max-width: 1399px) {
  .about-widget .info p {
    font-size: 16px;
  }
}
.about-widget .info p span {
  color: var(--theme-color-2);
}
.about-widget .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.about-widget .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}
.about-widget .social-links a:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}

.subscribe-form .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form .input-wrap input {
  width: 100%;
  height: 66px;
  background: rgba(0, 69, 64, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 53px;
  padding: 10px 24px;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.subscribe-form .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form .input-button button {
  border: 0;
}
.subscribe-form .input-checkbox {
  margin-top: 20px;
}
.subscribe-form .input-checkbox input {
  display: none;
}
.subscribe-form .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.subscribe-form-2 .input-wrap {
  margin-bottom: 15px;
}
.subscribe-form-2 .input-wrap input {
  width: 100%;
  height: 66px;
  background: rgba(0, 69, 64, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 53px;
  padding: 10px 24px;
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  color: var(--white-color);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.subscribe-form-2 .input-wrap input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.subscribe-form-2 .input-wrap input:focus {
  border-color: var(--theme-color-2);
}
.subscribe-form-2 .input-wrap input:focus::-webkit-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-form-2 .input-wrap input:focus:-ms-input-placeholder {
  color: transparent;
}
.subscribe-form-2 .policy-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.subscribe-form-2 .policy-wrap .input-button button {
  border: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox {
  margin-bottom: 0;
}
.subscribe-form-2 .policy-wrap .input-checkbox input {
  display: none;
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark {
  background: var(--theme-color-2);
}
.subscribe-form-2 .policy-wrap .input-checkbox input:checked + label .check-mark:after {
  opacity: 1;
}
.subscribe-form-2 .policy-wrap .input-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--theme-color-2);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 3px;
}
.subscribe-form-2 .policy-wrap .input-checkbox label .check-mark:after {
  content: "\f00c";
  font-family: var(--icon-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-color-3);
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.footer-section-2 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-2 .footer-bottom {
  border-radius: 12px;
  background-color: var(--theme-color-2);
  margin: 0 50px;
  padding: 18px 0;
}
@media (max-width: 1700px) {
  .footer-section-2 .footer-bottom {
    margin: 0 20px;
  }
}
.footer-section-2 .footer-bottom .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--white-color);
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-section-2 .footer-bottom .footer-bottom-layout .footer-bottom-menu ul li:last-child:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address, .get-in-touch .email, .get-in-touch .phone {
    gap: 8px;
  }
}
.get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon, .get-in-touch .email .icon, .get-in-touch .phone .icon {
    width: 40px;
    height: 40px;
  }
}
.get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
  color: var(--theme-color-2);
  font-size: 20px;
}
@media (max-width: 1399px) {
  .get-in-touch .footer-address .icon i, .get-in-touch .email .icon i, .get-in-touch .phone .icon i {
    font-size: 16px;
  }
}
.get-in-touch .text h6 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.get-in-touch .text p {
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section-3 {
  padding: 80px 70px 86px 80px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .footer-section-3 {
    padding: 40px 20px;
  }
}

.footer-bottom-2 {
  border-radius: 0;
  background-color: transparent;
  margin: 0;
  padding: 40px 0;
}
.footer-bottom-2 .footer-bottom-layout {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
@media (max-width: 991px) {
  .footer-bottom-2 .footer-bottom-layout {
    flex-direction: column;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-copyright {
  color: var(--theme-color-3);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
  color: var(--theme-color-3);
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a {
    font-size: 14px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li a:hover {
  color: var(--theme-color-2);
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  width: 0;
  margin: 0;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li i {
  color: var(--theme-color-3);
  margin-left: 10px;
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: inline-flex;
  margin: 0 20px;
  background: var(--theme-color-3);
  opacity: 0.5;
}
@media (max-width: 767px) {
  .footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-2 .footer-bottom-layout .footer-bottom-menu ul li:first-child:before {
  width: 0;
  margin: 0;
}

.footer-bottom-3 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer-bottom-3 {
    padding: 20px 0;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 {
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  gap: 20px;
  display: flex;
  background: transparent;
  padding: 0;
  border: none;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 {
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: visible;
    padding: 15px 30px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-copyright {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li {
  display: inline-flex;
  align-items: center;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:first-child:before {
  margin-left: 0;
  width: 0;
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
  content: "";
  display: inline-flex;
  margin: 0 20px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0.5;
  width: 2px;
  height: 14px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li:before {
    margin: 0 10px;
  }
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white-color);
}
.footer-bottom-3 .footer-bottom-layout-2 .footer-bottom-menu ul li a:hover {
  color: var(--body-color);
}

.footer-section-5 {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 69, 64, 0.9) 0%, rgba(0, 51, 47, 0.95) 86.79%, rgba(0, 47, 43, 0.9) 107.82%);
}
.footer-section-5 .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-1 {
    width: 80%;
  }
}
.footer-section-5 .shape-2 {
  position: absolute;
  bottom: 23%;
  right: 8%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-section-5 .shape-2 {
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 10%;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .shape-2 {
    right: 0;
    bottom: 11%;
  }
}
@media (max-width: 1700px) {
  .footer-section-5 .shape-2 img {
    width: 80%;
  }
}
.footer-section-5 .footer-widget .w-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 0;
}
.footer-section-5 .footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1199px) {
  .footer-section-5 .footer-top {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer-section-5 .footer-top {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.footer-section-5 .footer-top .left {
  max-width: 712px;
  width: 100%;
}
.footer-section-5 .footer-top .left .common-title {
  margin-bottom: 0;
}
.footer-section-5 .footer-top .left .common-title h2 {
  color: var(--light-color);
  margin-bottom: 0;
}
.footer-section-5 .footer-top .right {
  max-width: 460px;
  width: 100%;
}

.adjusted-width {
  width: 20%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .adjusted-width {
    width: 33.33333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .adjusted-width {
    width: 41.66666667%;
  }
}
@media (max-width: 767px) {
  .adjusted-width {
    width: 100%;
  }
}

/*====================================================================
    Template
====================================================================*/
/* 07 Topbar Css */
.top-bar {
  background: var(--theme-color-3);
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-bar-content {
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}
.top-bar-content .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media (max-width: 767px) {
  .top-bar-content .text-wrap {
    align-items: flex-start;
  }
}

.top-btn {
  padding: 7px 10px;
  border-radius: 6px;
}

.top-btn-2 {
  background: #85BF18;
  color: var(--white-color);
}

/* 08 Breadcrumb Css */
.breadcrumb-section {
  padding-left: 85px;
  padding-right: 85px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .breadcrumb-section {
    padding-left: 0;
    padding-right: 0;
  }
}

.breadcrumb-thumb {
  overflow: hidden;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -15px;
  border-radius: 0 10px 10px 0;
  position: relative;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-thumb {
    margin-left: -10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-thumb {
    margin-left: -10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-thumb {
    margin-left: -8px;
  }
}
.breadcrumb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.breadcrumb-thumb .video-play-btn {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(28px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  animation: animate-pulse 3s linear infinite;
}
.breadcrumb-thumb .video-play-btn:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}

.breadcrumb-content {
  background-color: var(--theme-color-3);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 180px;
  padding-right: 100px;
  position: relative;
  z-index: 1;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  margin-right: -15px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-content {
    margin-right: -10px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-content {
    margin-right: -10px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content {
    margin-right: -8px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content {
    margin-right: 0;
    padding: 60px 20px;
    clip-path: none;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-content {
    margin-right: 0;
    padding: 60px 20px;
    clip-path: none;
    border-radius: 10px;
  }
}
.breadcrumb-content .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.breadcrumb-content:before {
  content: "";
  height: 100%;
  width: 40px;
  background: var(--theme-color-2);
  position: absolute;
  right: 0;
  top: 0;
  transform: skewX(-5deg);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .breadcrumb-content:before {
    width: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-content:before {
    width: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content:before {
    width: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .breadcrumb-content:before {
    display: none;
  }
}

.breadcrumb-nav ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul {
    margin-bottom: 10px;
  }
}
.breadcrumb-nav ul li {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #F8F7F0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul li {
    font-size: 16px;
    line-height: 1.2;
  }
}
.breadcrumb-nav ul li:after {
  content: "\f178";
  font-family: var(--icon-font);
  font-weight: 400;
  margin-right: 8px;
  margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-nav ul li:after {
    font-size: 14px;
  }
}
.breadcrumb-nav ul li:last-child:after {
  display: none;
}
.breadcrumb-nav ul li a {
  color: #F8F7F0;
}
.breadcrumb-nav ul li a:hover {
  color: var(--theme-color-2);
}

.breadcrumb-title h2 {
  font-weight: 600;
  font-size: 62px;
  line-height: 60px;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-title h2 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title h2 {
    font-size: 32px;
    line-height: 1.2;
  }
}

/* 09 Hero Css */
.hero-side {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 344px;
  padding-bottom: 244px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-side {
    padding-top: 230px;
    padding-bottom: 170px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-side {
    padding-top: 230px;
    padding-bottom: 170px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-side {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-side {
    padding-top: 260px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .hero-side {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-side .group-shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-side .group-shape-1 img {
  width: 100%;
  height: 100%;
}
.hero-side .s-shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hero-side .s-shape-1 {
    height: 20px;
  }
}
.hero-side .s-shape-1 img {
  width: 100%;
}

.hero-content-1 .subtitle {
  padding: 9px 15px;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-1 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .subtitle span {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .subtitle span {
    line-height: 20px;
  }
}
.hero-content-1 .title {
  max-width: 774px;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .title {
    max-width: 674px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .title {
    max-width: 474px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .title {
    max-width: 324px;
  }
}
.hero-content-1 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--light-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-1 .title h1 {
    font-size: 74px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .title h1 {
    font-size: 68px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .title h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .title h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
.hero-content-1 .title span {
  color: var(--theme-color-2);
}
.hero-content-1 .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text {
    max-width: 520px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text {
    max-width: 420px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-1 .text p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-1 .text p {
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}
.hero-content-1 .join-us {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.hero-content-1 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}
.hero-content-1 .join-us .e-primary-btn:before {
  background: var(--theme-color-2);
}
.hero-content-1 .join-us .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-1 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-1 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}
.hero-content-1 .join-us .author-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap {
    gap: 10px;
  }
}
.hero-content-1 .join-us .author-wrap img {
  max-width: 118px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap img {
    max-width: 90px;
  }
}
.hero-content-1 .join-us .author-wrap .author-info h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--light-color);
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info h5 {
    font-size: 18px;
  }
}
.hero-content-1 .join-us .author-wrap .author-info p {
  line-height: 22px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .hero-content-1 .join-us .author-wrap .author-info p {
    font-weight: 300;
    line-height: 1;
  }
}

.hero-slider-active-1 {
  position: relative;
  z-index: 1;
}
.hero-slider-active-1 .hero-slider-pagination-1 {
  position: absolute;
  left: auto;
  right: 90px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-pagination-1 {
    left: 20px;
    right: auto;
    bottom: 20px;
  }
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.47);
  border: 1px solid #F8F7F0;
  backdrop-filter: blur(4.75px);
}
.hero-slider-active-1 .hero-slider-pagination-1 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}
.hero-slider-active-1 .hero-slider-social {
  position: absolute;
  right: 90px;
  bottom: 50%;
  z-index: 99;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-1 .hero-slider-social {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-1 .hero-slider-social {
    display: none;
  }
}
.hero-slider-active-1 .hero-slider-social .text {
  transform: rotate(-180deg);
  width: auto;
  font-size: 18px;
  line-height: 167%;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-slider-active-1 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-1 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(255, 255, 255, 0.33);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.5px);
}
.hero-slider-active-1 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.hero-slide-2 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 508px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 {
    padding-top: 340px;
    padding-bottom: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 {
    padding-top: 308px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 {
    padding-top: 208px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.hero-slide-2 .s-shape-1 {
  position: absolute;
  right: 17%;
  bottom: 15%;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 {
    right: 7%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 {
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-1 img {
    width: 70%;
  }
}
.hero-slide-2 .s-shape-2 {
  position: absolute;
  left: 13%;
  top: 30%;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 {
    left: 0;
    top: 35%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .s-shape-2 img {
    width: 60%;
  }
}
.hero-slide-2 .blur-circle {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 100%;
  background: rgba(0, 69, 64, 0.02);
  border-radius: 50%;
  z-index: -2;
  backdrop-filter: blur(8px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-2 .blur-circle {
    width: 76%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-2 .blur-circle {
    width: 88%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-2 .blur-circle {
    width: 90%;
    transform: translate(-50%, -55%);
  }
}
@media (max-width: 767px) {
  .hero-slide-2 .blur-circle {
    width: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-content-2 .title {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title {
    max-width: 810px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title {
    max-width: 480px;
  }
}
.hero-content-2 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--light-color);
  margin-bottom: 30px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-2 .title h1 {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-2 .title h1 {
    font-size: 58px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-2 .title h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-2 .title h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
}
.hero-content-2 .title span {
  color: var(--theme-color-2);
}
.hero-content-2 .join-us {
  display: flex;
  justify-content: center;
}
.hero-content-2 .join-us .e-primary-btn {
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(248, 247, 240, 0.6);
  backdrop-filter: blur(9.2px);
  color: var(--white-color);
}
.hero-content-2 .join-us .e-primary-btn:before {
  background: var(--theme-color-2);
}
.hero-content-2 .join-us .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-2 .join-us .e-primary-btn:hover {
  border: 1.5px solid var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-content-2 .join-us .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}

.services-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .services-2 {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .services-2 {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 70%;
    margin: 0 auto 40px;
  }
}
.services-2 .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-2 .service i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
@media (max-width: 767px) {
  .services-2 .service i {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}
.services-2 .service p {
  color: var(--light-color);
}

.hero-slider-active-2 {
  position: relative;
  z-index: 1;
}
.hero-slider-active-2 .hero-slider-pagination-2 {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 20px;
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-2 .hero-slider-pagination-2 {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #868681;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #F8F7F0;
}
.hero-slider-active-2 .hero-slider-pagination-2 .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #FFE175;
}

.hero-slide-3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 219px;
  padding-bottom: 219px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow-x: clip;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-3 {
    padding-top: 145px;
    padding-bottom: 145px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-3 {
    padding-top: 116px;
    padding-bottom: 175px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-3 {
    padding-top: 80px;
    padding-bottom: 175px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-3 {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .hero-slide-3 {
    padding-top: 60px;
    padding-bottom: 140px;
  }
}
.hero-slide-3 .banner-thumb {
  position: absolute;
  top: -12%;
  right: 0;
  z-index: -1;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slide-3 .banner-thumb {
    width: 1088px;
    height: 100%;
    top: 0;
    right: -4%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slide-3 .banner-thumb {
    width: 900px;
    height: 100%;
    top: auto;
    right: -3%;
    bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slide-3 .banner-thumb {
    width: 600px;
    height: 100%;
    top: auto;
    right: -3%;
    bottom: 0;
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slide-3 .banner-thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-slide-3 .banner-thumb {
    display: none;
  }
}
.hero-slide-3 .shape-1 {
  height: 100%;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: -2;
  pointer-events: none;
}
.hero-slide-3 .shape-1 img {
  height: 100%;
}
.hero-slide-3 .shape-2 {
  position: absolute;
  top: 0;
  right: 80px;
  z-index: -2;
  pointer-events: none;
}

@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-3 {
    width: 52%;
    margin-left: 5%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-3 {
    width: 58%;
    margin-left: 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .hero-content-3 {
    width: 90%;
  }
}
.hero-content-3 .subtitle {
  padding: 0;
  background: transparent;
  gap: 10px;
  backdrop-filter: blur(2px);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-3 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--light-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .subtitle span {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .subtitle span {
    line-height: 20px;
  }
}
.hero-content-3 .title {
  max-width: 774px;
  width: 100%;
  margin-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .title {
    max-width: 674px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title {
    max-width: 474px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title {
    max-width: 324px;
  }
}
.hero-content-3 .title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 80px;
  line-height: 82px;
  color: var(--light-color);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-3 .title h1 {
    font-size: 74px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .title h1 {
    font-size: 68px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title h1 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .title img {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .title img {
    width: 40px;
  }
}
.hero-content-3 .text {
  max-width: 550px;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .text {
    max-width: 520px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .text {
    max-width: 420px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-3 .text p {
  font-size: 18px;
  line-height: 30px;
  color: var(--light-color);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-3 .text p {
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-3 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-3 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.services-3 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .services-3 {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 30px;
  }
}
.services-3 .service {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-3 .service i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  background: var(--theme-color);
  color: var(--white-color);
}
.services-3 .service p {
  color: var(--light-color);
}

.hero-slider-active-3 {
  position: relative;
  z-index: 1;
  margin: 0 100px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .hero-slider-active-3 {
    margin: 0 15px;
  }
}
.hero-slider-active-3 .swiper {
  overflow: visible;
  overflow-x: clip;
}
.hero-slider-active-3 .hero-slider-pagination-3 {
  position: absolute;
  left: 6%;
  top: 219px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  width: auto;
  bottom: auto;
  transform: translate(0);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    left: 20px;
    top: 176px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    left: 20px;
    top: 116px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-pagination-3 {
    display: none;
  }
}
.hero-slider-active-3 .hero-slider-pagination-3 .swiper-pagination-bullet {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  opacity: 0.6;
  background: none;
  width: auto;
  height: auto;
}
.hero-slider-active-3 .hero-slider-pagination-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #fff;
  opacity: 1;
}
.hero-slider-active-3 .hero-slider-social {
  position: absolute;
  right: 50px;
  bottom: 50%;
  z-index: 99;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-social {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-social {
    display: none;
  }
}
.hero-slider-active-3 .hero-slider-social .text {
  transform: rotate(-180deg);
  width: auto;
  font-size: 18px;
  line-height: 167%;
  color: #FFFFFF;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-slider-active-3 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-3 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(255, 255, 255, 0.33);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8.5px);
}
.hero-slider-active-3 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.hero-slider-active-3 .hero-slider-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 99;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-slider-active-3 .hero-slider-navigation {
    left: 20px;
    bottom: 40px;
  }
}
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-prev-3,
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-next-3 {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2.35px);
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-prev-3:hover,
.hero-slider-active-3 .hero-slider-navigation .hero-slider-button-next-3:hover {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
  border-color: var(--theme-color-2);
}

.hero-section-4 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  position: relative;
}
.hero-section-4 .thumb {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-4 .thumb {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .hero-section-4 .thumb {
    position: static;
  }
}
.hero-section-4 .thumb img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.hero-section-4 .hero-slider-social {
  position: absolute;
  left: 90px;
  bottom: 50%;
  z-index: 999;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transform: translateY(50%);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-4 .hero-slider-social {
    left: 30px;
  }
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-section-4 .hero-slider-social {
    left: 0px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .hero-slider-social {
    left: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
@media (max-width: 767px) {
  .hero-section-4 .hero-slider-social {
    display: none;
  }
}
.hero-section-4 .hero-slider-social .social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.hero-section-4 .hero-slider-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  color: var(--theme-color-3);
  background: rgba(0, 69, 64, 0.1);
  border: 1.5px solid rgba(0, 69, 64, 0.05);
  backdrop-filter: blur(8.5px);
}
@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-section-4 .hero-slider-social .social-links a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 .hero-slider-social .social-links a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
.hero-section-4 .hero-slider-social .social-links a:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.hero-content-4 {
  padding: 170px 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-4 {
    padding: 80px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-4 {
    padding: 80px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 {
    padding: 80px 0 40px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 {
    padding: 60px 0 30px;
  }
}
.hero-content-4 .subtitle {
  padding: 9px 15px;
  gap: 10px;
  background: rgba(0, 69, 64, 0.06);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  backdrop-filter: blur(4.2px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .subtitle {
    margin-bottom: 10px;
  }
}
.hero-content-4 .subtitle span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--theme-color-3);
}
.hero-content-4 .common-title {
  margin-bottom: 30px;
}
.hero-content-4 .common-title h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 74px;
  line-height: 82px;
  color: var(--theme-color-3);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-4 .common-title h1 {
    font-size: 70px;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-4 .common-title h1 {
    font-size: 56px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .common-title h1 {
    font-size: 46px;
    line-height: 1.1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .common-title h1 {
    font-size: 42px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .common-title h1 {
    font-size: 38px;
    line-height: 1.1;
  }
}
.hero-content-4 .text {
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .text {
    max-width: 420px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .text {
    max-width: 95%;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .text {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.hero-content-4 .text p {
  font-size: 18px;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .hero-content-4 .text p {
    font-size: 16px;
    line-height: 1.3;
  }
}

.hero-rating-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero-rating-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}
.hero-rating-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-rating-wrap .annual-donation p {
  margin-bottom: 5px;
}
.hero-rating-wrap .annual-donation h5 {
  margin-bottom: 0;
}
.hero-rating-wrap .annual-donation img {
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}

.hero-section-5 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 1;
  padding-top: 300px;
  padding-bottom: 210px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-section-5 {
    padding-top: 280px;
    padding-bottom: 160px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-5 {
    padding-top: 280px;
    padding-bottom: 160px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-section-5 {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section-5 {
    padding-top: 240px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .hero-section-5 {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
.hero-section-5::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 51, 47, 0.1) 0%, #00332f 107.37%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.hero-section-5 .shape {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.hero-section-5 .shape img {
  height: 100%;
  width: 100%;
}

.hero-content-5 {
  max-width: 940px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
}
.hero-content-5 .title {
  margin-bottom: 12px;
}
.hero-content-5 .title h1 {
  font-family: "Philosopher";
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 90%;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .title h1 {
    font-size: 80px;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .title h1 {
    width: 70%;
    margin: 0 auto;
    font-size: 60px;
    line-height: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .title h1 {
    font-size: 54px;
    margin: 0 auto;
    line-height: 1.1;
    width: 60%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .title h1 {
    width: 70%;
    margin: 0 auto;
    font-size: 48px;
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .title h1 {
    width: 100%;
    margin: 0 auto;
    font-size: 36px;
    line-height: 1.1;
  }
}
.hero-content-5 .text {
  max-width: 480px;
  width: 100%;
  margin-bottom: 36px;
  text-align: center;
  color: #f8f7f0;
}
.hero-content-5 .icon-1 {
  position: absolute;
  left: -16%;
  bottom: 16%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .icon-1 {
    left: -4%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .icon-1 {
    left: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .icon-1 {
    left: 15%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .icon-1 {
    left: 7%;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .icon-1 {
    left: 6%;
    bottom: 88%;
  }
}
@media (max-width: 1399px) {
  .hero-content-5 .icon-1 img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-content-5 .icon-1 img {
    width: 60%;
  }
}
.hero-content-5 .icon-2 {
  position: absolute;
  right: -25%;
  bottom: 8%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .hero-content-5 .icon-2 {
    right: -10%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-5 .icon-2 {
    right: 2%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-content-5 .icon-2 {
    right: 7%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-content-5 .icon-2 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .hero-content-5 .icon-2 {
    right: -2%;
    bottom: -20%;
  }
}
@media (max-width: 1399px) {
  .hero-content-5 .icon-2 img {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .hero-content-5 .icon-2 img {
    width: 60%;
  }
}

/* 10 Camping Css */
.our-camping-section {
  background-color: #f8f7f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.our-camping-section-3 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.our-camping-section-3 .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1700px) {
  .our-camping-section-3 .shape img {
    width: 80%;
  }
}
.our-camping-section-3 .icon-1 {
  position: absolute;
  top: 18%;
  right: 6%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-camping-section-3 .icon-1 {
    top: 10%;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-camping-section-3 .icon-1 {
    top: 10%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .our-camping-section-3 .icon-1 {
    top: 8%;
    right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-camping-section-3 .icon-1 img {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-camping-section-3 .icon-1 img {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .our-camping-section-3 .icon-1 img {
    width: 60%;
  }
}

.camping-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  padding: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card.active .thumb a img, .camping-card:hover .thumb a img {
  transform: scale(1.1);
}
.camping-card.active .content .donation-wrap, .camping-card:hover .content .donation-wrap {
  background: var(--theme-color-3);
}
.camping-card.active .content .donation-wrap .d-top p, .camping-card:hover .content .donation-wrap .d-top p {
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .progress, .camping-card:hover .content .donation-wrap .progress {
  background: rgba(255, 225, 117, 0.1);
}
.camping-card.active .content .donation-wrap .progress .progress-bar, .camping-card:hover .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .fund p, .camping-card:hover .content .donation-wrap .fund p {
  color: var(--white-color);
}
.camping-card.active .content .donation-wrap .fund p span, .camping-card:hover .content .donation-wrap .fund p span {
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn, .camping-card:hover .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn:before, .camping-card:hover .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.camping-card.active .content .donation-wrap .d-bottom .d-btn .icon-wrap, .camping-card:hover .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-card.active .content .donation-wrap .d-bottom .d-wishlist, .camping-card:hover .content .donation-wrap .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.camping-card .thumb {
  position: relative;
  overflow: hidden;
}
.camping-card .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.camping-card .thumb img {
  width: 100%;
  border-radius: 10px;
}
.camping-card .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.camping-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.camping-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.camping-card .content .content-top {
  padding: 20px;
}
.camping-card .content .date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  background: #f8f7f0;
  border: 2px solid var(--white-color);
  box-shadow: 0px 6px 30px rgba(0, 69, 64, 0.09);
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: #868681;
}
.camping-card .content .date img {
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .camping-card .content .date span {
    font-size: 16px;
  }
}
.camping-card .content .title h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-card .content .title h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .camping-card .content .title h3 {
    line-height: 1.4;
    font-size: 20px;
  }
}
.camping-card .content .title h3 a {
  color: var(--theme-color-3);
}
.camping-card .content .text p {
  font-size: 17px;
  line-height: 28px;
}
.camping-card .content .donation-wrap {
  padding: 16px 20px 25px;
  background-color: #f8f7f0;
  border-radius: 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.camping-card .content .donation-wrap .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .progress {
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  gap: 20px;
}
.camping-card .content .donation-wrap .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card .content .donation-wrap .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.camping-card .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-card .content .donation-wrap .d-bottom .d-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.camping-card-2 {
  background-color: #f8f7f0;
  border-radius: 10px;
  padding: 10px;
}
.camping-card-2.widget-style {
  padding: 0;
  background: none !important;
  box-shadow: none !important;
}
.camping-card-2.widget-style .content .donation-wrap {
  padding-bottom: 0;
}
.camping-card-2.active, .camping-card-2:hover {
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.camping-card-2.active .thumb a img, .camping-card-2:hover .thumb a img {
  transform: scale(1.1);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn:before, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.camping-card-2.active .content .donation-wrap .d-bottom .d-btn .icon-wrap, .camping-card-2:hover .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-card-2 .thumb {
  position: relative;
  overflow: hidden;
}
.camping-card-2 .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.camping-card-2 .thumb img {
  width: 100%;
  border-radius: 10px;
}
.camping-card-2 .thumb .date {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.camping-card-2 .thumb .date:hover {
  background: var(--white-color);
  color: var(--theme-color-3);
}
.camping-card-2 .thumb .date span {
  line-height: 0;
}
@media (max-width: 767px) {
  .camping-card-2 .thumb .date span {
    font-size: 16px;
  }
}
.camping-card-2 .content .title {
  margin-bottom: 15px;
}
.camping-card-2 .content .title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-card-2 .content .title h3 {
    font-size: 22px;
    line-height: 1.5;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-card-2 .content .title h3 {
    font-size: 21px;
    line-height: 1.5;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-card-2 .content .title h3 {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .camping-card-2 .content .title h3 {
    line-height: 1.4;
    font-size: 20px;
  }
}
.camping-card-2 .content .title h3 a {
  color: var(--theme-color-3);
}
.camping-card-2 .content .text p {
  font-size: 17px;
  line-height: 28px;
}
.camping-card-2 .content .donation-wrap {
  padding: 16px 20px 25px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .d-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.camping-card-2 .content .donation-wrap .d-top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .progress {
  background: rgba(0, 69, 64, 0.1);
  height: 8px;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-3);
  border-radius: 100px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .fund {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  gap: 20px;
}
.camping-card-2 .content .donation-wrap .fund p {
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  color: #868681;
  margin-bottom: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .fund p span {
  color: var(--theme-color-3);
  font-weight: 600;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-card-2 .content .donation-wrap .d-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
  background: var(--theme-color-2);
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
}
.camping-card-2 .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--light-color);
}

.recent-course-slider-active {
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .recent-course-slider-active {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.recent-course-slider-active .recent-course-pagination {
  position: absolute;
  right: 24px;
  left: auto;
  top: -70px;
  bottom: auto;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  width: auto;
  padding: 0;
}
@media (max-width: 767px) {
  .recent-course-slider-active .recent-course-pagination {
    right: 10px;
  }
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid transparent;
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--theme-color-3);
}
.recent-course-slider-active .recent-course-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}

.camping-slider-active-3 {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 {
    padding-bottom: 80px;
  }
}
.camping-slider-active-3 .camping-button-prev-3 {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 .camping-button-prev-3 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-3 .camping-button-prev-3:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.camping-slider-active-3 .camping-button-next-3 {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active-3 .camping-button-next-3 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-3 .camping-button-next-3:hover {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

.section-top-7 {
  text-align: center;
}
.section-top-7 .common-subtitle span {
  color: var(--theme-color-2);
}
.section-top-7 .common-title h2 {
  color: var(--white-color);
}

.camping-slider-active {
  position: relative;
  z-index: 1;
}
.camping-slider-active .camping-button-prev {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -80px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active .camping-button-prev {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active .camping-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-prev {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active .camping-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active .camping-button-prev {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active .camping-button-prev:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active .camping-button-next {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #FFFFFF;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  margin-top: -80px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active .camping-button-next {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active .camping-button-next {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active .camping-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active .camping-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .camping-slider-active .camping-button-next {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active .camping-button-next:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active .camping-pagination-wrap {
  display: flex;
  justify-content: center;
}
.camping-slider-active .camping-pagination-wrap .camping-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
  margin-top: 50px;
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  backdrop-filter: blur(4.75px);
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--theme-color-3);
}
.camping-slider-active .camping-pagination-wrap .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}

.camping-slider-active-2 {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .camping-slider-active-2 {
    padding-bottom: 80px;
  }
}
.camping-slider-active-2 .camping-button-prev-2 {
  position: absolute;
  left: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #F8F7F0;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: -25px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-2 .camping-button-prev-2 {
    left: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-2 .camping-button-prev-2:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active-2 .camping-button-next-2 {
  position: absolute;
  right: -82px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #F8F7F0;
  color: #868681;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: -25px;
  }
}
@media (max-width: 767px) {
  .camping-slider-active-2 .camping-button-next-2 {
    right: 0;
    top: auto;
    bottom: 0;
    margin-top: 0;
    transform: translateY(0);
  }
}
.camping-slider-active-2 .camping-button-next-2:hover {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.camping-slider-active-2 .camping-pagination-wrap-2 {
  display: flex;
  justify-content: center;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8.5px);
  border-radius: 100px;
  width: auto;
  padding: 10px 16px;
  margin-top: 50px;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  backdrop-filter: blur(4.75px);
  margin: 0;
  opacity: 1;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #868681;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--theme-color-3);
}
.camping-slider-active-2 .camping-pagination-wrap-2 .camping-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}
.camping-slider-active-2 .swiper {
  overflow: visible;
  overflow-x: clip;
}

.swiper-slide-active .camping-card .thumb a img {
  transform: scale(1.1);
}
.swiper-slide-active .camping-card .content .donation-wrap {
  background: var(--theme-color-3);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-top p {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .progress {
  background: rgba(255, 225, 117, 0.1);
}
.swiper-slide-active .camping-card .content .donation-wrap .progress .progress-bar {
  background: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .fund p {
  color: var(--white-color);
}
.swiper-slide-active .camping-card .content .donation-wrap .fund p span {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-3);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card .content .donation-wrap .d-bottom .d-wishlist {
  color: var(--theme-color-2);
  border-color: rgba(255, 225, 117, 0.1);
}
.swiper-slide-active .camping-card-2 {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.swiper-slide-active .camping-card-2 .thumb a img {
  transform: scale(1.1);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn {
  color: var(--theme-color-2);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn:before {
  background: var(--theme-color-3);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.swiper-slide-active .camping-card-2 .content .donation-wrap .d-bottom .d-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}

/* 11 Camping Css */
.contact-info-section {
  position: relative;
  z-index: 1;
}

.contact-info-layout {
  background: var(--theme-color-2);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: -45px;
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .contact-info-layout {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info-layout {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .contact-info-layout {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
}

.contact-info {
  padding: 30px;
  border-radius: 12px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.contact-info .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-info .icon-wrap .icon-shape {
  flex: 1;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, var(--theme-color-3) 100%);
}
.contact-info .icon-wrap .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--theme-color-3);
  background: rgba(0, 69, 64, 0.1);
  flex: none;
}
.contact-info h3 {
  font-family: var(--outfit-font);
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .contact-info h3 {
    font-size: 18px;
  }
}
.contact-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--theme-color-3);
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .contact-info p {
    font-size: 16px;
  }
}
.contact-info.active {
  background: var(--theme-color-3);
  transform: translateY(-20px);
  box-shadow: 0px 33px 50.3px -27px rgba(0, 69, 64, 0.3);
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-info.active {
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .contact-info.active {
    transform: translateY(0);
  }
}
.contact-info.active .icon-wrap .icon-shape {
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, var(--theme-color-2) 100%);
}
.contact-info.active .icon-wrap .icon {
  color: var(--theme-color-2);
  background: rgba(255, 225, 117, 0.1);
}
.contact-info.active h3 {
  color: var(--white-color);
}
.contact-info.active p {
  color: var(--white-color);
}

.contact-form-wrap {
  background: #f8f7f0;
  border-radius: 24px;
  padding: 40px 50px 50px;
  text-align: center;
}
.contact-form-wrap h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  color: #010a15;
  margin-bottom: 7px;
}
.contact-form-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #868681;
  margin-bottom: 32px;
}
.contact-form-wrap .input-wrap input {
  background: #ffffff;
}
.contact-form-wrap .input-wrap input:focus {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea {
  background: #ffffff;
}
.contact-form-wrap .input-wrap textarea:focus {
  background: #ffffff;
}
.contact-form-wrap .select-wrap select {
  background: #ffffff;
}
.contact-form-wrap .select-wrap select:focus {
  background: #ffffff;
}

.contact-section {
  position: relative;
  z-index: 1;
}
.contact-section .c-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.contact-section .c-shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.contact-map {
  width: 100%;
  height: 650px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.map-section {
  margin-bottom: -165px;
}

/* 12 Blog Css */
.latest-blog-section {
  position: relative;
  background-color: #f8f7f0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow-x: clip;
}
.latest-blog-section .blog-btn .e-primary-btn {
  background: var(--theme-color-3);
  border: none;
  color: var(--theme-color-2);
}
.latest-blog-section .blog-btn .e-primary-btn:before {
  background: var(--theme-color-2);
}
.latest-blog-section .blog-btn .e-primary-btn .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.latest-blog-section .blog-btn .e-primary-btn:hover {
  color: var(--theme-color-3);
}
.latest-blog-section .blog-btn .e-primary-btn:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--theme-color-2);
}
.latest-blog-section .shape {
  position: absolute;
  bottom: -2%;
  width: 100%;
  height: 63px;
}
@media (max-width: 1199px) {
  .latest-blog-section .shape {
    height: 30px;
    bottom: -1%;
  }
}
.latest-blog-section .shape img {
  width: 100%;
  height: 100%;
}

.latest-blog-row-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(37.93deg, rgba(255, 225, 117, 0) 40.36%, rgba(255, 225, 117, 0.2) 97.89%), rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7.75px);
  border-radius: 14px;
  padding: 0 50px;
  height: 350px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-blog-row-bottom {
    height: 320px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .latest-blog-row-bottom {
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom {
    height: 280px;
    padding: 0 20px;
  }
}
.latest-blog-row-bottom .common-title {
  gap: 20px;
  margin-bottom: 10px;
}
.latest-blog-row-bottom .common-title span img {
  width: 42px;
  height: 42px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .common-title span img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .common-title span img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
  }
}
.latest-blog-row-bottom .common-title i {
  font-size: 32px;
  font-weight: 300;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .common-title i {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .common-title i {
    font-size: 18px;
  }
}
.latest-blog-row-bottom .row-bottom-thumb {
  max-width: 480px;
  width: 100%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    width: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .latest-blog-row-bottom .row-bottom-thumb {
    display: none;
  }
}
.latest-blog-row-bottom .row-bottom-thumb .thumb {
  width: 100%;
}

.form-1 {
  margin-left: 50px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .form-1 {
    margin-left: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .form-1 {
    margin-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .form-1 {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .form-1 {
    margin-left: 0;
  }
}
.form-1 input {
  width: 100%;
  background: var(--theme-color-3);
  border: 1px solid var(--theme-color-2);
  border-radius: 100px;
  padding: 5px 24px;
  color: var(--white-color);
  line-height: 1;
  font-size: 17px;
  height: 60px;
  font-family: var(--albert-sans-font);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.2), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
}
.form-1 input::-webkit-input-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:-moz-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input::-moz-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:-ms-input-placeholder {
  color: var(--light-color);
  opacity: 0.8;
}
.form-1 input:focus {
  border-color: var(--theme-color-3);
}
.form-1 input:focus::-webkit-input-placeholder {
  color: transparent;
}
.form-1 input:focus:-moz-placeholder {
  color: transparent;
}
.form-1 input:focus::-moz-placeholder {
  color: transparent;
}
.form-1 input:focus:-ms-input-placeholder {
  color: transparent;
}
.form-1 button {
  border: none;
}

@media (max-width: 767px) {
  .latest-blog-content {
    margin-bottom: 40px;
  }
}
.latest-blog-content .text {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .latest-blog-content .text {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .latest-blog-content .text {
    margin-bottom: 20px;
  }
}

.blog-card {
  background-color: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  overflow: hidden;
}
.blog-card:hover .thumb a img {
  transform: scale(1.1);
}
.blog-card:hover .content .content-bottom .e-primary-btn:hover {
  border: 2px solid var(--theme-color-2);
}
.blog-card .thumb {
  position: relative;
}
.blog-card .thumb > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog-card .thumb img {
  border-radius: 10px 10px 0 0;
}
.blog-card .thumb .category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.blog-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.blog-card .event-date {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 89px;
  position: absolute;
  right: 20px;
  bottom: -25px;
  z-index: 2;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  background-color: var(--theme-color-3);
}
.blog-card .event-date h2 {
  color: var(--theme-color-2);
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .event-date h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .blog-card .event-date h2 {
    line-height: 1.2;
    font-size: 30px;
  }
}
.blog-card .event-date h5 {
  color: var(--light-color);
  line-height: 22px;
  margin-bottom: 4px;
  font-weight: 400;
}
.blog-card .event-date span {
  color: var(--theme-color-3);
  border-radius: 4px;
  background-color: var(--theme-color-2);
  padding: 4px 16px 4px 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.36em;
}
.blog-card .content {
  padding: 25px;
}
.blog-card .content .title h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blog-card .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card .content .title h3 a {
  color: var(--theme-color-3);
}
.blog-card .content .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card .content .content-bottom {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .blog-card .content .content-bottom {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
.blog-card .content .content-bottom .e-primary-btn {
  color: var(--theme-color-3);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card .content .content-bottom .e-primary-btn:before {
  background-color: var(--theme-color-2);
}
.blog-card .content .content-bottom .e-primary-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}
.blog-card .content .social-share {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-card .content .social-share.active .social-links {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.blog-card .content .social-share.active .total-shared {
  visibility: hidden;
  opacity: 0;
}
.blog-card .content .social-share .total-shared {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1.5px solid rgba(0, 24, 25, 0.1);
  border-radius: 10px;
  padding: 10px;
  background: none;
  color: var(--theme-color-3);
  font-family: var(--albert-sans-font);
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card .content .social-share .social-links {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card .content .social-share .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: rgba(0, 69, 64, 0.1);
  color: var(--body-color);
}
.blog-card .content .social-share .social-links a:hover {
  color: var(--theme-color-2);
  background: var(--theme-color-3);
}

.blog-card-2 {
  background-color: #f8f7f0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 56.5px rgba(0, 0, 0, 0.06);
  z-index: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.blog-card-2:hover {
  background-color: var(--white-color);
  box-shadow: 0 35px 41.5px -16px rgba(0, 69, 64, 0.08);
}
.blog-card-2:hover .thumb a img {
  transform: scale(1.1);
}
.blog-card-2:hover .content .content-bottom .read-more-btn {
  border: 2px solid var(--theme-color-2);
}
.blog-card-2:hover .content .content-bottom .read-more-btn::before {
  background-color: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-2 .thumb {
  position: relative;
}
.blog-card-2 .thumb > a {
  display: block;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog-card-2 .thumb > a img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.blog-card-2 .thumb .event-date {
  display: inline-block;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 80px;
  padding: 4px 18px;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  text-align: center;
  border-radius: 4px;
  background-color: var(--theme-color-3);
}
.blog-card-2 .thumb .event-date h2 {
  color: var(--theme-color-2);
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-2 .thumb .event-date h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .blog-card-2 .thumb .event-date h2 {
    line-height: 1.2;
    font-size: 30px;
  }
}
.blog-card-2 .thumb .event-date h5 {
  color: var(--light-color);
  line-height: 22px;
  margin-bottom: 4px;
}
.blog-card-2 .thumb .event-date span {
  color: var(--theme-color-3);
  border-radius: 4px;
  background-color: var(--theme-color-2);
  padding: 4px 16px 4px 16px;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.36em;
}
.blog-card-2 .content {
  padding: 25px;
}
.blog-card-2 .content .content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-2 .content .content-bottom .read-more-btn {
  line-height: 102%;
  color: var(--theme-color-3);
  background-color: transparent;
  border: 2px solid rgba(0, 69, 64, 0.1);
}
.blog-card-2 .content .content-bottom .read-more-btn::before {
  background-color: transparent;
}
.blog-card-2 .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}
.blog-card-2 .content .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.blog-card-2 .content .author .admin,
.blog-card-2 .content .author .solar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-2 .content .title h3 {
  font-weight: 600;
  font-size: 23px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card-2 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-2 .content .title h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-2 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .blog-card-2 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card-2 .content .title h3 a {
  color: var(--theme-color-3);
}

.blog-card-3 {
  background-color: var(--theme-color-3);
  padding: 10px;
  border-radius: 10px;
}
.blog-card-3:hover .thumb a img {
  transform: scale(1.1);
}
.blog-card-3:hover .content .content-bottom .read-more-btn {
  color: var(--theme-color-3);
  border-color: var(--theme-color-2);
}
.blog-card-3:hover .content .content-bottom .read-more-btn::before {
  background-color: var(--theme-color-2);
  left: -10%;
  transform: translateX(0%) translateY(-50%);
}
.blog-card-3:hover .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-3);
  color: var(--theme-color-2);
}
.blog-card-3 .thumb {
  position: relative;
  overflow: hidden;
}
.blog-card-3 .thumb a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.blog-card-3 .thumb a img {
  border-radius: 10px;
}
.blog-card-3 .date {
  width: 70px;
  height: 70px;
  background: var(--theme-color-2);
  border: 2px solid var(--theme-color-3);
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 5px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  .blog-card-3 .date {
    width: 60px;
    height: 60px;
    top: 5px;
    right: 5px;
  }
}
.blog-card-3 .date h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .blog-card-3 .date h4 {
    font-size: 20px;
  }
}
.blog-card-3 .date p {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  color: var(--gray-color);
}
@media (max-width: 1399px) {
  .blog-card-3 .date p {
    font-size: 16px;
    line-height: 1;
  }
}
.blog-card-3 .content {
  padding: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-card-3 .content {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .blog-card-3 .content {
    padding: 10px;
  }
}
.blog-card-3 .content .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}
.blog-card-3 .content .author .admin,
.blog-card-3 .content .author .solar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-card-3 .content .author .admin i,
.blog-card-3 .content .author .solar i {
  color: var(--theme-color-2);
}
.blog-card-3 .content .author .admin span,
.blog-card-3 .content .author .solar span {
  color: var(--white-color);
}
.blog-card-3 .content .title h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--white-color);
}
@media (max-width: 1399px) {
  .blog-card-3 .content .title h3 {
    font-size: 18px;
    line-height: 1.4;
  }
}
.blog-card-3 .content .content-bottom .read-more-btn {
  line-height: 102%;
  color: var(--theme-color-2);
  background-color: transparent;
  border: 2px solid rgba(248, 247, 240, 0.1);
}
.blog-card-3 .content .content-bottom .read-more-btn::before {
  background-color: transparent;
}
.blog-card-3 .content .content-bottom .read-more-btn .icon-wrap {
  background-color: var(--theme-color-2);
  color: var(--theme-color-3);
}

.blog-slider-active {
  margin-right: -280px;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .blog-slider-active {
    margin-right: -180px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-slider-active {
    margin-right: 0;
  }
}
.blog-slider-active .blog-pagination {
  height: 5px;
  border-radius: 10px;
  margin-top: 60px;
  background: rgba(0, 69, 64, 0.5);
  display: flex;
  width: calc(100% - 280px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .blog-slider-active .blog-pagination {
    width: calc(100% - 180px);
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .blog-slider-active .blog-pagination {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-slider-active .blog-pagination {
    margin-top: 30px;
    width: 100%;
  }
}
.blog-slider-active .blog-pagination .swiper-pagination-bullet {
  flex: 1;
  border-radius: 10px;
  height: 100%;
  opacity: 1;
  background: none;
  margin: 0;
}
.blog-slider-active .blog-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme-color-3);
}

/* 13 Event Css */
.event-card {
  background: #f8f7f0;
  padding: 10px;
  border-radius: 10px;
}
.event-card.active .thumb a img, .event-card:hover .thumb a img {
  transform: scale(1.1);
}
.event-card .card-content {
  padding: 20px;
}
.event-card .event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .event-card .event-card-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.event-card .event-card-top .top-left {
  display: flex;
  gap: 20px;
  align-items: start;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left {
    gap: 14px;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left {
    align-items: center;
    gap: 14px;
  }
}
.event-card .event-card-top .top-left .event-date {
  text-align: start;
}
.event-card .event-card-top .top-left .event-date h3 {
  color: var(--theme-color-3);
  font-weight: 500;
  font-size: 40px;
  line-height: 14px;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 28px;
    line-height: 0.8;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 24px;
    line-height: 0.8;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left .event-date h3 {
    font-size: 24px;
    line-height: 0.8;
  }
  .event-card .event-card-top .top-left .event-date h3 br {
    display: none;
  }
}
.event-card .event-card-top .top-left .event-date h3 span {
  color: var(--body-color);
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card .event-card-top .top-left .event-date h3 span {
    font-size: 16px;
    line-height: 1;
  }
}
.event-card .thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.event-card .thumb > a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.event-card .thumb img {
  width: 100%;
  border-radius: 10px;
}
.event-card .thumb .category {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.event-card .thumb .category a {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.01);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0px 4px 11px rgba(255, 255, 255, 0.4), inset -1px -4px 23.1px rgba(0, 24, 25, 0.28);
  backdrop-filter: blur(23.9px);
  border-radius: 53px;
  color: var(--white-color);
}
.event-card .thumb .category a:hover {
  color: var(--theme-color-3);
  background: var(--white-color);
}
.event-card .thumb .shape-3 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .top-right {
    gap: 10px;
  }
}
.top-right img {
  max-width: 118px;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right img {
    max-width: 90px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-right img {
    max-width: 90px;
  }
}
@media (max-width: 767px) {
  .top-right img {
    max-width: 80px;
  }
}
.top-right .people-joined {
  text-align: start;
}
.top-right .people-joined h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-color-3);
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1.3;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .top-right .people-joined h5 {
    font-size: 18px;
    line-height: 1;
  }
}

.event-card-2 {
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .event-card-2 {
    flex-direction: column;
  }
}
.event-card-2 .event-thumb {
  width: 48%;
  flex: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .event-thumb {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb {
    width: 100%;
  }
}
.event-card-2 .event-thumb a img {
  border-radius: 10px;
  width: 100%;
}
.event-card-2 .event-thumb .event-date {
  display: inline-flex;
  padding: 16px 24px;
  background: #f8f7f0;
  border: 1px solid var(--theme-color-2);
  box-shadow: 0 6px 15.9px -3px rgba(0, 69, 64, 0.11);
  border-radius: 0 100px 100px 0;
  position: absolute;
  left: 100%;
  top: 40px;
  width: auto;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .event-card-2 .event-thumb .event-date {
    top: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .event-card-2 .event-thumb .event-date {
    padding: 10px 20px;
    top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .event-thumb .event-date {
    padding: 10px 20px;
    top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .event-thumb .event-date {
    left: 0;
    top: 30px;
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb .event-date {
    left: 0;
    top: 30px;
    padding: 10px 20px;
  }
}
.event-card-2 .event-thumb .event-date h5 {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--theme-color-3);
  white-space: nowrap;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .event-thumb .event-date h5 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .event-thumb .event-date h5 {
    font-size: 14px;
  }
}
.event-card-2 .card-content {
  width: 52%;
  padding: 60px 50px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .card-content {
    padding: 50px 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .card-content {
    width: 100%;
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .event-card-2 .card-content {
    width: 100%;
    padding: 30px 20px;
  }
}
.event-card-2 .card-content .event-card-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card-2 .card-content .event-card-title h2 {
    font-size: 20px;
    line-height: 1;
  }
}
.event-card-2 .card-content .join-event {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}
@media (max-width: 767px) {
  .event-card-2 .card-content .join-event {
    flex-direction: column;
    align-items: start;
  }
}

.event-card-3 {
  display: flex;
  align-items: center;
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  position: relative;
  overflow-y: clip;
}
.event-card-3:hover .event-thumb a img {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .event-card-3 {
    margin: 0 0 30px;
  }
}
.event-card-3 .event-thumb a {
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
.event-card-3 .event-thumb a img {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}
.event-card-3 .card-content {
  padding: 0 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content {
    padding: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  .event-card-3 .card-content {
    padding: 20px 10px;
  }
}
.event-card-3 .card-content .event-card-title h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin-bottom: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .event-card-3 .card-content .event-card-title h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}
.event-card-3 .card-content .join-event {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 6px;
}
.event-card-3 .card-content .category p {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  color: var(--body-color);
  margin-bottom: 12px;
}
.event-card-3 .card-content .event-card-text p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-bottom: 36px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-3 .card-content .event-card-text p {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-3 .card-content .event-card-text p {
    margin-bottom: 30px;
  }
}

.card-number-3 {
  position: absolute;
  right: 60px;
  bottom: -20px;
  justify-content: end;
  display: inline-flex;
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-3 {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .card-number-3 {
    right: 20px;
  }
}
.card-number-3 h1 {
  font-family: var(--outfit-font);
  font-style: normal;
  font-weight: 600;
  font-size: 120px;
  line-height: 82px;
  color: var(--theme-color-3);
  opacity: 0.06;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .card-number-3 h1 {
    font-size: 100px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-number-3 h1 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .card-number-3 h1 {
    font-size: 80px;
  }
}

.event-card-middle h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--theme-color-3);
  margin: 20px 0 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-card-middle h2 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .event-card-middle h2 {
    font-size: 24px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .event-card-middle h2 {
    font-size: 20px;
    line-height: 1;
  }
}

.address {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .address {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .address {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .address {
    flex-direction: column;
    align-items: start;
    gap: 6px;
    margin-bottom: 20px;
  }
}
.address .location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.address .time {
  display: flex;
  align-items: center;
  gap: 8px;
}

.our-events-section-2 {
  position: relative;
  background: #f8f7f0;
}
.our-events-section-2 .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
}

.section-top-6 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-top-6 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-top-6 {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-top-6 .left .common-subtitle span {
  color: var(--theme-color-3);
}
.section-top-6 .left .common-title {
  margin-bottom: 0;
}
.section-top-6 .left .common-title h2 {
  color: var(--theme-color-3);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-top-6 .left .common-title h2 {
    font-size: 38px;
  }
}
.section-top-6 .right a {
  color: var(--white-color);
  background-color: var(--theme-color-3);
  border: none;
}
.section-top-6 .right a::before {
  background-color: var(--theme-color-2);
}
.section-top-6 .right a .icon-wrap {
  background: var(--theme-color-2);
  color: var(--theme-color-3);
}
.section-top-6 .right a:hover {
  color: var(--theme-color-3);
  background-color: var(--theme-color-2);
}
.section-top-6 .right a:hover .icon-wrap {
  background: var(--theme-color-3);
  color: var(--white-color);
}

.our-events-section-3 {
  position: relative;
  overflow: hidden;
}
.our-events-section-3 .shape {
  position: absolute;
  right: 0;
  bottom: -56%;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .our-events-section-3 .shape {
    bottom: -57%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-events-section-3 .shape {
    bottom: -43%;
    text-align: end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-events-section-3 .shape {
    bottom: -23%;
    text-align: end;
  }
}
@media (max-width: 767px) {
  .our-events-section-3 .shape {
    text-align: end;
    bottom: -20%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .our-events-section-3 .shape img {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .our-events-section-3 .shape img {
    width: 61%;
  }
}
@media (max-width: 767px) {
  .our-events-section-3 .shape img {
    width: 50%;
  }
}

.adjusted-col-gap {
  padding: 0;
}

/* 14 Partners Css */
.major-partners .partners-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.major-partners .partners-title h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .major-partners .partners-title h3 {
    max-width: 220px;
    width: 100%;
    text-align: center;
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .major-partners .partners-title h3 {
    max-width: 200px;
    width: 100%;
    text-align: center;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .major-partners .partners-title h3 {
    width: 60%;
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title h3 {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title .line-right,
  .major-partners .partners-title .line {
    width: 60%;
  }
}
.major-partners .partners-title .line-right img,
.major-partners .partners-title .line img {
  width: 100%;
}
.major-partners .partners-title .line img {
  transform: rotate(180deg);
}
.major-partners .partners-title-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.major-partners .partners-title-2 h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--white-color);
  margin-bottom: 0;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .major-partners .partners-title-2 h3 {
    max-width: 220px;
    width: 100%;
    text-align: center;
    font-size: 32px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .major-partners .partners-title-2 h3 {
    max-width: 200px;
    width: 100%;
    text-align: center;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .major-partners .partners-title-2 h3 {
    width: 60%;
    text-align: center;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title-2 h3 {
    width: 100%;
    text-align: center;
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .major-partners .partners-title-2 .line-right,
  .major-partners .partners-title-2 .line {
    width: 60%;
  }
}
.major-partners .partners-title-2 .line-right img,
.major-partners .partners-title-2 .line img {
  width: 100%;
}
.major-partners .partners-title-2 .line img {
  transform: rotate(180deg);
}
.major-partners.style-2 {
  margin-bottom: -80px;
}
.major-partners.style-3 {
  margin-bottom: -200px;
}

.partner-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  max-width: 202px;
  height: 119px;
  width: 100%;
  background-color: var(--theme-color-3);
  border-radius: 8px;
}

.partner-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 202px;
  height: 119px;
  width: 100%;
  background: #F8F7F0;
  border: 1px solid var(--theme-color-2);
  border-radius: 8px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.partner-2:hover {
  border: 1px solid var(--theme-color-3);
  background-color: var(--theme-color-3);
}
.partner-2:hover .logo-1 {
  visibility: visible;
  opacity: 1;
}
.partner-2:hover .logo-2 {
  visibility: hidden;
  opacity: 0;
}
.partner-2 .logo-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.partner-2 .logo-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 25px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}

.partner-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 30px;
  max-width: 202px;
  height: 119px;
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.partner-3:hover {
  background-color: var(--theme-color-3);
}

.partner-marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.partner-marquee .partner-marquee-layout {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-animation: partner-marquee 20s linear infinite;
  animation: partner-marquee 20s linear infinite;
}
.partner-marquee .partner-marquee-layout .partner-1 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}
.partner-marquee .partner-marquee-layout .partner-2 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}
.partner-marquee .partner-marquee-layout .partner-3 {
  width: 200px;
  flex: none;
  margin-right: 30px;
}

@-webkit-keyframes partner-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes partner-marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* 15 Contact Us Css */
.contact-us {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  padding-top: 20px;
  overflow-x: clip;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .contact-us {
    padding: 40px 0;
  }
}
.contact-us .shape-6 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.contact-us .shape-7 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.contact-form {
  max-width: 580px;
  width: 100%;
  background-color: var(--theme-color-3);
  padding: 60px;
  border: 2px solid var(--light-color);
  border-radius: 10px;
  margin: -40px 0 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form {
    margin: 0 auto 0;
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    margin: 0 auto 0;
    padding: 30px;
  }
}
.contact-form .form-content {
  position: relative;
  z-index: 1;
}
.contact-form .form-content-top h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form .form-content-top h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form .form-content-top h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.contact-form .form-content-top h3 span {
  color: var(--theme-color-2);
}
.contact-form .form-content-top p {
  max-width: 357px;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  color: var(--light-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form .form-content-top p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form .form-content-top p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.contact-form input,
.contact-form textarea {
  background: rgba(248, 247, 240, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  -webkit-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  color: var(--white-color);
}
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  color: #f8f7f0;
}
.contact-form input:-moz-placeholder,
.contact-form textarea:-moz-placeholder {
  color: #f8f7f0;
}
.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  color: #f8f7f0;
}
.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  color: #f8f7f0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--theme-color-2);
}
.contact-form input:focus::-webkit-input-placeholder,
.contact-form textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form input:focus:-moz-placeholder,
.contact-form textarea:focus:-moz-placeholder {
  color: transparent;
}
.contact-form input:focus::-moz-placeholder,
.contact-form textarea:focus::-moz-placeholder {
  color: transparent;
}
.contact-form input:focus:-ms-input-placeholder,
.contact-form textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form textarea {
  height: 120px;
}
.contact-form button {
  border: none;
}
.contact-form .shape {
  position: absolute;
  top: -220px;
  right: -210px;
  z-index: -1;
  pointer-events: none;
}

.form-message.success {
  margin-bottom: 0;
  color: var(--white-color);
  margin-top: 10px;
}

.form-message.error {
  margin-bottom: 0;
  color: red;
  margin-top: 10px;
}

.contact-us-2 {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  margin: 0 85px;
  padding: 120px 0;
  border-radius: 20px;
  background-attachment: fixed;
}
@media (max-width: 1700px) {
  .contact-us-2 {
    margin: 0 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-us-2 {
    padding: 100px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-us-2 {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .contact-us-2 {
    padding: 80px 0;
    margin: 0;
    border-radius: 0;
  }
}
.contact-us-2 .icon img {
  display: inline-block;
  position: absolute;
  top: 27%;
  right: 41.5%;
  transform: rotate(120deg);
  z-index: -1;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .contact-us-2 .icon img {
    right: 43.5%;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-us-2 .icon img {
    right: 53%;
  }
}

.contact-form-2 {
  max-width: 550px;
  width: 100%;
  padding: 50px;
  border: 2px solid var(--light-color);
  border-radius: 10px;
  margin-left: auto;
  margin-top: 0;
  background: rgba(0, 69, 64, 0.2);
  box-shadow: 4px 4px 0 #ffe175;
  backdrop-filter: blur(10px);
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .contact-form-2 {
    margin: 0 60px 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-2 {
    margin: 0 60px 0 auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-form-2 {
    margin: 0 40px 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 {
    padding: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-form-2 {
    padding: 30px;
    margin: 0 auto;
  }
}
.contact-form-2 .form-content {
  position: relative;
  z-index: 1;
}
.contact-form-2 h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: var(--light-color);
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 h3 {
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-2 h3 {
    font-size: 22px;
    line-height: 1.4;
  }
}
.contact-form-2 h3 span {
  color: var(--theme-color-2);
}
.contact-form-2 p {
  max-width: 357px;
  width: 100%;
  font-size: 17px;
  line-height: 28px;
  color: var(--light-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-2 p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .contact-form-2 p {
    font-size: 16px;
    line-height: 1.4;
  }
}
.contact-form-2 input,
.contact-form-2 textarea {
  background: #f8f7f0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 20px;
  resize: none;
  font-size: 17px;
  line-height: 28px;
}
.contact-form-2 input::-webkit-input-placeholder,
.contact-form-2 textarea::-webkit-input-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input::-webkit-input-placeholder,
  .contact-form-2 textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:-moz-placeholder,
.contact-form-2 textarea:-moz-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input:-moz-placeholder,
  .contact-form-2 textarea:-moz-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input::-moz-placeholder,
.contact-form-2 textarea::-moz-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input::-moz-placeholder,
  .contact-form-2 textarea::-moz-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:-ms-input-placeholder,
.contact-form-2 textarea:-ms-input-placeholder {
  color: var(--body-color);
}
@media (max-width: 991px) {
  .contact-form-2 input:-ms-input-placeholder,
  .contact-form-2 textarea:-ms-input-placeholder {
    font-size: 16px;
  }
}
.contact-form-2 input:focus,
.contact-form-2 textarea:focus {
  background: #f8f7f0;
  border-color: var(--theme-color-3);
}
.contact-form-2 input:focus::-webkit-input-placeholder,
.contact-form-2 textarea:focus::-webkit-input-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus:-moz-placeholder,
.contact-form-2 textarea:focus:-moz-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus::-moz-placeholder,
.contact-form-2 textarea:focus::-moz-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 input:focus:-ms-input-placeholder,
.contact-form-2 textarea:focus:-ms-input-placeholder {
  color: var(--theme-color-3);
}
.contact-form-2 button {
  border: none;
}

/* 16 Testimonial Css */
.testimonial .common-title h2 span i {
  color: var(--theme-color-2);
  padding: 5px 10px;
  background: var(--theme-color-3);
  border-radius: 100%;
}
.testimonial .reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews {
    margin-bottom: 20px;
  }
}
.testimonial .reviews h3 {
  font-weight: 600;
  font-size: 42px;
  line-height: 52px;
  margin-bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--body-color);
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews h3 {
    font-size: 30px;
  }
}
.testimonial .reviews img {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews img {
    width: 30px;
    height: 30px;
  }
}
.testimonial .reviews h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--theme-color-3);
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .reviews h5 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .testimonial .reviews h5 {
    font-size: 18px;
  }
}
.testimonial .review-btn {
  max-width: 240px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 2px solid rgba(0, 69, 64, 0.1);
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn {
    max-width: 225px;
    gap: 8px;
    padding: 8px 16px;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn {
    max-width: 220px;
    gap: 8px;
    padding: 8px 16px;
  }
}
.testimonial .review-btn span {
  color: var(--theme-color-3);
  font-weight: 500;
  line-height: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn span {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn span {
    line-height: 1.3;
  }
}
.testimonial .review-btn img {
  width: 44px;
  height: 44px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial .review-btn img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .testimonial .review-btn img {
    width: 34px;
    height: 34px;
  }
}

.testimonial-card {
  background-color: var(--theme-color-3);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .testimonial-card {
    gap: 30px;
    flex-direction: column;
  }
}
.testimonial-card:hover .thumb .video-play-btn {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.testimonial-card .thumb {
  border-radius: 12px;
  position: relative;
  height: 100%;
  overflow: hidden;
  flex: none;
  width: 300px;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-card .thumb {
    width: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial-card .thumb {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .testimonial-card .thumb {
    width: 100%;
  }
}
.testimonial-card .thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}
.testimonial-card .thumb .video-play-btn {
  width: 80px;
  height: 80px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: var(--light-color);
  padding: 23px 21px;
  border-radius: 100%;
  border: 1px solid var(--light-color);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s