/*============================
    1. Typography
============================*/
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Familjen+Grotesk:ital,wght@0,400..700;1,400..700&display=swap");
header {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

[data-bs-theme=dark] .home-4, .home-4[data-bs-theme=dark] {
  --white: #0C0602;
  --dark: #FFFBF9;
  --gray-100: #1C1B1B;
  --gray-200: #282828;
  --gray-300: #464443;
  --gray-400: #505050;
  --gray-500: #595959;
  --gray-600: #817b78;
  --gray-700: #BAB4B0;
  --gray-800: #D7D0CC;
  --gray-900: #EFE9E6;
  --gray-hover: #E0DDDB;
  --light-100: #797979;
  --light-200: #222120;
  --light-hover: #171615;
  --form-bg: #0C0602;
  --input-border: #1C1B1B;
  --heading-color: #EFE9E6;
  --body-color: #BAB4B0;
  --border-color: #1C1B1B;
  --light: #141312;
  --light-rgb: 20, 19, 18;
  --light-dark: rgb(17, 16.15, 15.3);
  --white: #100F0E;
  --white-rgb: 16, 15, 14;
  --white-dark: rgb(10.2, 5.1, 1.7);
}

.theme-1:not(.home-4):not(.home-4 *) {
  --primary: #50723B;
  --primary-hover: #3A532A;
  --primary-transparent: #EFF2ED;
}

.home-4 .theme-2, .home-4.theme-2 {
  --primary: #AC3C76;
  --light-100: #FBF5F8;
  --pink:#E15362;
  --dark:#28172A;
  --primary-linear-gradient: linear-gradient(90deg, #E15362 0%, #C64D9E 50%, #A356BB 100%);
  --primary-hover-gradient: linear-gradient(270deg, #E15362 0%, #C64D9E 50%, #A356BB 100%);
  --dark-linear-gradient: linear-gradient(181.77deg, rgba(0, 0, 0, 0.54) -139.23%, rgba(26, 21, 22, 0.6) 98.5%);
}

/*============================
    2. Button
============================*/
button {
  cursor: pointer;
}
button:focus {
  outline: 0;
  box-shadow: none;
}

.primary-btn-outline {
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .primary-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.primary-btn-outline:hover, .primary-btn-outline:focus, .primary-btn-outline.focus, .primary-btn-outline:active, .primary-btn-outline.active {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  box-shadow: none;
}

.secondary-btn-outline {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .secondary-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.secondary-btn-outline:hover, .secondary-btn-outline:focus, .secondary-btn-outline.focus, .secondary-btn-outline:active, .secondary-btn-outline.active {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: var(--white);
  box-shadow: none;
}

.dark-btn-outline {
  color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .dark-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.dark-btn-outline:hover, .dark-btn-outline:focus, .dark-btn-outline.focus, .dark-btn-outline:active, .dark-btn-outline.active {
  background-color: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  box-shadow: none;
}

.light-btn-outline {
  color: var(--light);
  border: 1px solid var(--light);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .light-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.light-btn-outline:hover, .light-btn-outline:focus, .light-btn-outline.focus, .light-btn-outline:active, .light-btn-outline.active {
  background-color: var(--light);
  border: 1px solid var(--light);
  color: var(--white);
  box-shadow: none;
}

.info-btn-outline {
  color: var(--info);
  border: 1px solid var(--info);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .info-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.info-btn-outline:hover, .info-btn-outline:focus, .info-btn-outline.focus, .info-btn-outline:active, .info-btn-outline.active {
  background-color: var(--info);
  border: 1px solid var(--info);
  color: var(--white);
  box-shadow: none;
}

.danger-btn-outline {
  color: var(--danger);
  border: 1px solid var(--danger);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .danger-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.danger-btn-outline:hover, .danger-btn-outline:focus, .danger-btn-outline.focus, .danger-btn-outline:active, .danger-btn-outline.active {
  background-color: var(--danger);
  border: 1px solid var(--danger);
  color: var(--white);
  box-shadow: none;
}

.success-btn-outline {
  color: var(--success);
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .success-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.success-btn-outline:hover, .success-btn-outline:focus, .success-btn-outline.focus, .success-btn-outline:active, .success-btn-outline.active {
  background-color: var(--success);
  border: 1px solid var(--success);
  color: var(--white);
  box-shadow: none;
}

.warning-btn-outline {
  color: var(--warning);
  border: 1px solid var(--warning);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .warning-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.warning-btn-outline:hover, .warning-btn-outline:focus, .warning-btn-outline.focus, .warning-btn-outline:active, .warning-btn-outline.active {
  background-color: var(--warning);
  border: 1px solid var(--warning);
  color: var(--white);
  box-shadow: none;
}

.cyan-btn-outline {
  color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .cyan-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.cyan-btn-outline:hover, .cyan-btn-outline:focus, .cyan-btn-outline.focus, .cyan-btn-outline:active, .cyan-btn-outline.active {
  background-color: var(--cyan);
  border: 1px solid var(--cyan);
  color: var(--white);
  box-shadow: none;
}

.pink-btn-outline {
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .pink-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.pink-btn-outline:hover, .pink-btn-outline:focus, .pink-btn-outline.focus, .pink-btn-outline:active, .pink-btn-outline.active {
  background-color: var(--pink);
  border: 1px solid var(--pink);
  color: var(--white);
  box-shadow: none;
}

.orange-btn-outline {
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .orange-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.orange-btn-outline:hover, .orange-btn-outline:focus, .orange-btn-outline.focus, .orange-btn-outline:active, .orange-btn-outline.active {
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: var(--white);
  box-shadow: none;
}

.purple-btn-outline {
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .purple-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.purple-btn-outline:hover, .purple-btn-outline:focus, .purple-btn-outline.focus, .purple-btn-outline:active, .purple-btn-outline.active {
  background-color: var(--purple);
  border: 1px solid var(--purple);
  color: var(--white);
  box-shadow: none;
}

.teal-btn-outline {
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .teal-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.teal-btn-outline:hover, .teal-btn-outline:focus, .teal-btn-outline.focus, .teal-btn-outline:active, .teal-btn-outline.active {
  background-color: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
  box-shadow: none;
}

.white-btn-outline {
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .white-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.white-btn-outline:hover, .white-btn-outline:focus, .white-btn-outline.focus, .white-btn-outline:active, .white-btn-outline.active {
  background-color: var(--white);
  border: 1px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.primary-btn {
  color: #fff;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .primary-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.primary-btn:hover, .primary-btn:focus, .primary-btn.focus, .primary-btn:active, .primary-btn.active {
  background-color: var(--primary-hover);
  border: 1px solid var(--primary-hover);
  color: #fff;
}

.secondary-btn {
  color: #fff;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .secondary-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.secondary-btn:hover, .secondary-btn:focus, .secondary-btn.focus, .secondary-btn:active, .secondary-btn.active {
  background-color: var(--secondary-hover);
  border: 1px solid var(--secondary-hover);
  color: #fff;
}

.dark-btn {
  color: #fff;
  border: 1px solid var(--dark);
  background-color: var(--dark);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .dark-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.dark-btn:hover, .dark-btn:focus, .dark-btn.focus, .dark-btn:active, .dark-btn.active {
  background-color: var(--dark-hover);
  border: 1px solid var(--dark-hover);
  color: #fff;
}

.light-btn {
  color: #fff;
  border: 1px solid var(--light);
  background-color: var(--light);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .light-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.light-btn:hover, .light-btn:focus, .light-btn.focus, .light-btn:active, .light-btn.active {
  background-color: var(--light-hover);
  border: 1px solid var(--light-hover);
  color: #fff;
}

.info-btn {
  color: #fff;
  border: 1px solid var(--info);
  background-color: var(--info);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .info-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.info-btn:hover, .info-btn:focus, .info-btn.focus, .info-btn:active, .info-btn.active {
  background-color: var(--info-hover);
  border: 1px solid var(--info-hover);
  color: #fff;
}

.danger-btn {
  color: #fff;
  border: 1px solid var(--danger);
  background-color: var(--danger);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .danger-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.danger-btn:hover, .danger-btn:focus, .danger-btn.focus, .danger-btn:active, .danger-btn.active {
  background-color: var(--danger-hover);
  border: 1px solid var(--danger-hover);
  color: #fff;
}

.success-btn {
  color: #fff;
  border: 1px solid var(--success);
  background-color: var(--success);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .success-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.success-btn:hover, .success-btn:focus, .success-btn.focus, .success-btn:active, .success-btn.active {
  background-color: var(--success-hover);
  border: 1px solid var(--success-hover);
  color: #fff;
}

.warning-btn {
  color: #fff;
  border: 1px solid var(--warning);
  background-color: var(--warning);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .warning-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.warning-btn:hover, .warning-btn:focus, .warning-btn.focus, .warning-btn:active, .warning-btn.active {
  background-color: var(--warning-hover);
  border: 1px solid var(--warning-hover);
  color: #fff;
}

.cyan-btn {
  color: #fff;
  border: 1px solid var(--cyan);
  background-color: var(--cyan);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .cyan-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.cyan-btn:hover, .cyan-btn:focus, .cyan-btn.focus, .cyan-btn:active, .cyan-btn.active {
  background-color: var(--cyan-hover);
  border: 1px solid var(--cyan-hover);
  color: #fff;
}

.pink-btn {
  color: #fff;
  border: 1px solid var(--pink);
  background-color: var(--pink);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .pink-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.pink-btn:hover, .pink-btn:focus, .pink-btn.focus, .pink-btn:active, .pink-btn.active {
  background-color: var(--pink-hover);
  border: 1px solid var(--pink-hover);
  color: #fff;
}

.orange-btn {
  color: #fff;
  border: 1px solid var(--orange);
  background-color: var(--orange);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .orange-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.orange-btn:hover, .orange-btn:focus, .orange-btn.focus, .orange-btn:active, .orange-btn.active {
  background-color: var(--orange-hover);
  border: 1px solid var(--orange-hover);
  color: #fff;
}

.purple-btn {
  color: #fff;
  border: 1px solid var(--purple);
  background-color: var(--purple);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .purple-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.purple-btn:hover, .purple-btn:focus, .purple-btn.focus, .purple-btn:active, .purple-btn.active {
  background-color: var(--purple-hover);
  border: 1px solid var(--purple-hover);
  color: #fff;
}

.teal-btn {
  color: #fff;
  border: 1px solid var(--teal);
  background-color: var(--teal);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .teal-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.teal-btn:hover, .teal-btn:focus, .teal-btn.focus, .teal-btn:active, .teal-btn.active {
  background-color: var(--teal-hover);
  border: 1px solid var(--teal-hover);
  color: #fff;
}

.white-btn {
  color: #fff;
  border: 1px solid var(--white);
  background-color: var(--white);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  transition: all 0.5s;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
@media (max-width: 767.98px) {
  .white-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.white-btn:hover, .white-btn:focus, .white-btn.focus, .white-btn:active, .white-btn.active {
  background-color: var(--white-hover);
  border: 1px solid var(--white-hover);
  color: #fff;
}

.primary-btn {
  color: #fff;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn.focus, .primary-btn:active, .primary-btn.active {
  color: #fff;
}

.white-btn {
  color: var(--gray-900);
  border: 1px solid var(--border-color);
  background-color: var(--white);
}
.white-btn:hover, .white-btn:focus, .white-btn.focus, .white-btn:active, .white-btn.active {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff !important;
}

.dark-btn {
  color: var(--white);
  border: 1px solid var(--dark);
  background-color: var(--dark);
}
.dark-btn:hover, .dark-btn:focus, .dark-btn.focus, .dark-btn:active, .dark-btn.active {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.light-btn {
  color: var(--gray-900) !important;
  border: 1px solid var(--gray-100);
}

.light-btn-outline {
  color: var(--gray-900) !important;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .light-btn-outline {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.light-btn-outline:hover, .light-btn-outline:focus, .light-btn-outline.focus, .light-btn-outline:active, .light-btn-outline.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff !important;
  box-shadow: none;
}

[data-bs-theme=dark] .btn.dark-btn {
  background-color: var(--light);
  border-color: var(--light);
  color: var(--dark);
}
[data-bs-theme=dark] .btn.dark-btn:hover {
  background-color: var(--primary);
}

.theme-1 .primary-btn {
  border-radius: 1.5rem;
}

.theme-1 .secondary-btn {
  border-radius: 1.5rem;
}

.theme-1 .dark-btn {
  border-radius: 1.5rem;
}

.theme-1 .light-btn {
  border-radius: 1.5rem;
}

.theme-1 .info-btn {
  border-radius: 1.5rem;
}

.theme-1 .danger-btn {
  border-radius: 1.5rem;
}

.theme-1 .success-btn {
  border-radius: 1.5rem;
}

.theme-1 .warning-btn {
  border-radius: 1.5rem;
}

.theme-1 .cyan-btn {
  border-radius: 1.5rem;
}

.theme-1 .pink-btn {
  border-radius: 1.5rem;
}

.theme-1 .orange-btn {
  border-radius: 1.5rem;
}

.theme-1 .purple-btn {
  border-radius: 1.5rem;
}

.theme-1 .teal-btn {
  border-radius: 1.5rem;
}

.theme-1 .white-btn {
  border-radius: 1.5rem;
}

.home-4 .theme-2 .primary-btn, .home-4.theme-2 .primary-btn {
  position: relative;
  background: var(--primary);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
  border: none;
}
.home-4 .theme-2 .primary-btn:hover, .home-4.theme-2 .primary-btn:hover {
  background-position: right center;
}

.btn-icon {
  padding: 10px 16px;
  font-size: 15px;
  transition: all 0.5s;
  font-weight: 600;
}

.btn-large {
  padding: 16px 28px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767.98px) {
  .btn-large {
    padding: 8px 12px;
    font-size: 15px;
  }
}

.btn-medium {
  padding: 10px 16px;
  font-size: 14px;
}
.btn-medium.btn-icon {
  width: 32px;
  height: 32px;
}

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

/*============================
    19. Banner
============================*/
.banner-section {
  background: url("../img/banner/banner-bg.png") #1E1B1B;
  position: relative;
  padding-top: 74px;
}
@media (max-width: 991.98px) {
  .banner-section {
    padding-top: 60px;
  }
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg/banner-bg-01.png");
  height: 187px;
  width: 100%;
  background-size: 100% 100%;
}
.banner-section .banner-content {
  padding: 134px 0;
}
@media (max-width: 1199.98px) {
  .banner-section .banner-content {
    padding: 100px 0;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-content {
    padding: 70px 0;
  }
}
@media (max-width: 767.98px) {
  .banner-section .banner-content {
    padding: 50px 0;
  }
}
.banner-section .banner-content .user-rating {
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .user-rating {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    flex-direction: column;
  }
}
.banner-section .banner-content .user-rating .avatar-list-stacked img {
  border: 2px solid #fff;
}
.banner-section .banner-content .user-rating .rating {
  font-size: 14px;
}
.banner-section .banner-content .user-rating .rating i.filled {
  color: var(--warning);
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .user-rating .rating {
    justify-content: center;
  }
}
.banner-section .banner-content .user-rating p,
.banner-section .banner-content .user-rating span {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}
.banner-section .banner-content h1 {
  color: #fff;
  font-size: 52px;
}
@media (max-width: 1199.98px) {
  .banner-section .banner-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 767.98px) {
  .banner-section .banner-content h1 {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .banner-content h1 {
    font-size: 26px;
    text-align: center;
  }
}
.banner-section .banner-content p {
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .banner-section .banner-content p {
    text-align: center;
  }
}
.banner-section .banner-content .banner-search {
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 20px;
  z-index: 1;
  border: 3px solid transparent;
  background: rgba(var(--white-rgb), 0.1);
  background-image: linear-gradient(var(--dark), var(--dark)), linear-gradient(90deg, #F17F3F 0%, #0052B4 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .banner-search {
    display: block;
    padding: 16px;
  }
}
.banner-section .banner-content .banner-search div {
  flex: 1;
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .banner-search div {
    margin-bottom: 24px;
  }
}
.banner-section .banner-content .banner-search .form-label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}
.banner-section .banner-content .banner-search .form-control {
  min-height: 24px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .banner-section .banner-content .banner-search .form-control {
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .banner-search .form-control {
    width: 100%;
  }
}
.banner-section .banner-content .banner-search button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
}
@media (min-width: 576px) {
  .banner-section .banner-content .banner-search button:hover {
    background-color: #AE4000;
    border-color: #AE4000;
  }
}
@media (min-width: 576px) {
  .banner-section .banner-content .banner-search button {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .banner-section .banner-content .banner-search button {
    width: 100%;
  }
}
.banner-section .banner-img {
  position: relative;
  text-align: end;
  z-index: 1;
  margin-left: 60px;
}
@media (max-width: 1199.98px) {
  .banner-section .banner-img {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .banner-section .banner-img {
    display: none;
  }
}
.banner-section .banner-img .banner-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  z-index: -1;
}
.banner-section .banner-img .banner-bg-01 {
  position: absolute;
  top: 26%;
  right: 20%;
  width: 27px;
  height: 27px;
  z-index: -1;
}
.banner-section .banner-img .banner-bg-02 {
  position: absolute;
  bottom: 43%;
  right: 5%;
  width: 27px;
  height: 27px;
  z-index: -1;
}
.banner-section .banner-img .app-view {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  position: absolute;
  right: 15px;
  top: 18%;
  font-size: 14px;
  font-weight: 600;
  color: #2C2C2C;
}
@media (max-width: 1399.98px) {
  .banner-section .banner-img .app-view {
    right: 0;
  }
}
@media (max-width: 1199.98px) {
  .banner-section .banner-img .app-view {
    top: 0;
  }
}
.banner-section .banner-img .app-view::before {
  border: 8px solid #fff;
  border-color: transparent transparent #fff #fff;
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  transform: rotate(45deg) translateY(-50%);
}
.banner-section-six {
  background: url(../img/bg/banner-bg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}
.banner-section-six video {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: inherit;
  width: 100%;
  height: auto;
  object-fit: cover;
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  .banner-section-six video {
    min-height: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner-section-six video {
    height: 495px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six video {
    height: 450px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six video {
    height: 480px;
  }
}
.banner-section-six .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(89.85deg, rgba(0, 0, 0, 0.7) 28.66%, rgba(0, 0, 0, 0.28) 48.52%, rgba(0, 0, 0, 0.7) 69.79%);
  opacity: 0.5;
  z-index: 1;
}
.banner-section-six .banner-content {
  padding: 140px 0 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .banner-section-six .banner-content {
    padding: 60px 0;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-content {
    padding: 40px 0 40px;
    text-align: center;
  }
}
.banner-section-six .banner-content h1 {
  color: #fff;
  font-size: 80px;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .banner-section-six .banner-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 991.98px) {
  .banner-section-six .banner-content h1 {
    font-size: 58px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-six .banner-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-content h1 {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.banner-section-six .banner-content h1 span {
  color: var(--primary);
}
.banner-section-six .banner-content p {
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-content p {
    text-align: center;
  }
}
.banner-section-six .banner-content .video-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 8px;
}
@media (max-width: 991.98px) {
  .banner-section-six .banner-content .video-btn {
    justify-content: center;
    margin-top: 40px;
  }
}
.banner-section-six .section-badge {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .banner-section-six .section-badge {
    justify-content: center;
  }
}
.banner-section-six .banner-slide {
  padding-bottom: 30px;
}
.banner-section-six .banner-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 575.98px) {
  .banner-section-six .banner-btn a {
    width: 100%;
    justify-content: center;
  }
}
.banner-section-five {
  padding: 160px 0px !important;
  z-index: 10;
  background: transparent !important;
}
.banner-section-five:hover .arrow-item {
  right: 8%;
}
@media (max-width: 991.98px) {
  .banner-section-five:hover .arrow-item {
    opacity: 1;
    right: 0;
  }
}
@media (max-width: 1199.98px) {
  .banner-section-five {
    padding: 120px 0px !important;
  }
}
@media (max-width: 991.98px) {
  .banner-section-five {
    padding: 90px 0px !important;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five {
    padding: 50px 0px !important;
  }
}
.banner-section-five:before {
  content: unset;
}
.banner-section-five .row {
  position: relative;
  z-index: 1;
}
.banner-section-five .banner-content {
  position: relative;
  padding: 0;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-content {
    text-align: center;
    padding-left: 0px;
  }
}
.banner-section-five .banner-content .sub-title {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-content .sub-title {
    position: unset;
    transform: unset;
    margin-bottom: 4px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content .sub-title {
    left: 32px;
    display: none;
  }
}
.banner-section-five .banner-content h1 {
  color: #fff;
  font-size: 72px;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-content h1 {
    font-size: 68px;
  }
}
@media (max-width: 767.98px) {
  .banner-section-five .banner-content h1 {
    font-size: 48px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content h1 img {
    display: none;
  }
}
.banner-section-five .banner-content p {
  text-align: start;
  width: 78%;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-content p {
    text-align: center;
    margin: auto;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content p {
    width: 100%;
  }
}
.banner-section-five .banner-content .banner-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-content .banner-btn {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content .banner-btn {
    flex-direction: column;
    margin-top: 24px;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-content .banner-btn a {
    width: 100%;
    justify-content: center;
  }
}
.banner-section-five .banner-right {
  text-align: end;
  position: relative;
  top: 50px;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-right {
    top: 0;
    justify-content: center;
    display: flex;
  }
}
@media (max-width: 575.98px) {
  .banner-section-five .banner-right {
    display: flex;
    flex-wrap: wrap;
    margin-top: 16px;
  }
}
.banner-section-five .banner-right .banner-video {
  margin-left: auto;
  position: relative;
  width: 100%;
  max-width: 255px;
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-right .banner-video {
    margin-left: unset;
  }
}
.banner-section-five .banner-right .banner-video img {
  border-radius: 6px !important;
  width: 100%;
}
.banner-section-five .banner-right .banner-video .banner-vid-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 0;
  margin: auto;
}
.banner-section-five .banner-right .banner-video .banner-vid-play-btn i {
  position: relative;
  z-index: 2;
}
.banner-section-five .banner-right .banner-video .banner-vid-play-btn:hover {
  transform: scale(1.05);
}
.banner-section-five .banner-right .banner-video .banner-vid-play-btn::before, .banner-section-five .banner-right .banner-video .banner-vid-play-btn::after {
  content: "";
  position: absolute;
  border: 5px solid var(--primary-transparent);
  border-radius: 50%;
  inset: 0;
  animation: wave-pulse 2s infinite;
  z-index: 0;
}
.banner-section-five .banner-right .banner-video .banner-vid-play-btn::after {
  animation-delay: 1s;
}
.banner-section-five .banner-right .banner-group {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  text-align: start;
  width: fit-content;
  margin-left: auto;
  backdrop-filter: blur(10px);
}
@media (max-width: 991.98px) {
  .banner-section-five .banner-right .banner-group {
    margin-left: unset;
  }
}
.banner-section-five .banner-right .banner-group p {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 20px;
}
.banner-section-five .banner-right .banner-group p span {
  font-family: "Familjen Grotesk", sans-serif;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}
.banner-section-five .banner-right .banner-group .review {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  color: var(--white);
  font-size: 14px;
  padding: 4px 10px 10px;
  text-align: center;
}
.banner-section-five .banner-right .banner-group .avatar-list-stacked .avatar {
  margin-inline-end: -20px !important;
  border: 1px solid var(--white);
}
.banner-section-five .banner-right .banner-group .avatar-item {
  padding: 12px;
  gap: 34px;
}
.banner-section-five .arrow-item {
  position: absolute;
  bottom: 0;
  top: 0;
  right: -25%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: auto;
  transition: all 0.6s;
}
@media (max-width: 991.98px) {
  .banner-section-five .arrow-item {
    right: 0;
    position: absolute;
    justify-content: space-between;
    width: 100%;
    bottom: 25px;
    top: unset;
    padding: 0px 20px;
    opacity: 0;
  }
}
@media (max-width: 991.98px) and (max-width: 575.98px) {
  .banner-section-five .arrow-item {
    padding: 0px 8px;
  }
}
.banner-section-five .arrow-item .slick-arrow {
  width: 64px;
  height: 64px;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: none;
}
.banner-section-five .arrow-item .slick-arrow:hover {
  background: var(--dark);
}
@media (max-width: 575.98px) {
  .banner-section-five .arrow-item .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.banner-section-one {
  padding: 0px 0px 50px;
  position: relative;
}

.banner-details-one {
  padding: 90px 0px;
}
@media (max-width: 991.98px) {
  .banner-details-one {
    text-align: center;
    padding: 90px 0px 50px;
  }
}
@media (max-width: 575.98px) {
  .banner-details-one {
    padding: 50px 0 0;
  }
}
.banner-details-one .banner-content-one .section-title {
  position: absolute;
  color: var(--white);
  left: -65px;
  top: 64%;
  transform: rotate(-90deg);
  margin: auto;
  transform-origin: top left;
}
@media (min-width: 1400px) {
  .banner-details-one .banner-content-one .section-title {
    left: -30px;
  }
}
@media (max-width: 1399.98px) {
  .banner-details-one .banner-content-one .section-title {
    left: -26px;
  }
}
@media (max-width: 1199.98px) {
  .banner-details-one .banner-content-one .section-title {
    left: -18px;
  }
}
@media (max-width: 991.98px) {
  .banner-details-one .banner-content-one .section-title {
    position: unset;
    transform: unset;
    margin-bottom: 16px;
  }
}
.banner-details-one .banner-content-one .sub-title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
  line-height: 18px;
  margin-bottom: 12px;
  display: inline-block;
}
.banner-details-one .banner-content-one .title {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .banner-details-one .banner-content-one .title {
    font-size: 60px;
  }
}
@media (max-width: 575.98px) {
  .banner-details-one .banner-content-one .title {
    font-size: 38px;
  }
}
.banner-details-one .banner-content-one .title span {
  display: block;
}
.banner-details-one .banner-content-one .banner-btn .primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 575.98px) {
  .banner-tab-one {
    display: none;
  }
}
.banner-tab-one .nav-tabs {
  margin-left: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .banner-tab-one .nav-tabs {
    justify-content: center;
    margin-bottom: 30px;
  }
}
.banner-tab-one .nav-tabs .nav-link {
  padding: 0px;
  border: 1px solid transparent;
  border-radius: 4px;
  height: 140px;
  width: 50px;
  overflow: hidden;
  transition: all 0.4s;
}
.banner-tab-one .nav-tabs .nav-link.active {
  border: 1px solid var(--primary);
  width: 130px;
}
.banner-tab-one .nav-tabs .nav-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-tab-one .banner-data-one {
  display: flex;
  align-items: center;
  gap: 24px;
}
.banner-tab-one .banner-data-one .banner-text-one {
  background: var(--dark-700);
  backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .banner-tab-one .banner-data-one .banner-text-one {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .banner-tab-one .banner-data-one .banner-text-one {
    padding: 20px;
  }
}
.banner-tab-one .banner-data-one .banner-text-one .title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991.98px) {
  .banner-tab-one .banner-data-one .banner-text-one .title {
    justify-content: center;
  }
}
.banner-tab-one .banner-data-one .banner-text-one p {
  margin-bottom: 4px;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
}
.banner-tab-one .banner-data-one .banner-text-one p:last-child {
  margin-bottom: 0px;
}

.slider-item {
  overflow: hidden;
}
.slider-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--dark-linear-gradient);
  z-index: 1;
}
.slider-item .banner-slider-item {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.slider-item .banner-slider-item .banner-slider {
  height: 100%;
}
.slider-item .banner-slider-item .banner-slider img {
  height: 100%;
  width: 100%;
  object-fit: cover !important;
}
.slider-item .banner-slider-item .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 111;
  bottom: 40px;
  width: 100%;
  transform: translateX(0%);
}
.slider-item .banner-slider-item .slick-dots li {
  align-items: center;
  margin: 0px 18px;
}
.slider-item .banner-slider-item .slick-dots li .slick-number {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  display: inline-block;
  left: 0;
  opacity: 0.7;
}
.slider-item .banner-slider-item .slick-dots li.slick-active .slick-number {
  opacity: 1;
}
.slider-item .banner-slider-item .slick-dots li.slick-active .slick-number::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
}
.slider-item .banner-slider-item .slick-track {
  height: 100%;
}
.slider-item .banner-slider-item .slick-track .slick-slide,
.slider-item .banner-slider-item .slick-track div,
.slider-item .banner-slider-item .slick-track .banner-slide {
  height: 100%;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.banner-slide .support-item {
  position: relative;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner-slide .support-item::after {
  content: "";
  background: url(../img/icons/star-1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 0px 24px;
  position: relative;
  top: 4px;
  left: 0;
  right: 0;
  animation: spin 10s linear infinite;
}
.banner-slide .support-item p, .banner-slide .support-item .title {
  display: block;
  font-weight: 700;
  font-size: 40px;
  white-space: nowrap;
  margin-bottom: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--gray-600);
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 991.98px) {
  .banner-slide .support-item p, .banner-slide .support-item .title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .banner-slide .support-item p, .banner-slide .support-item .title {
    font-size: 30px;
  }
}
.banner-slide .support-item p:hover, .banner-slide .support-item .title:hover {
  color: var(--primary);
  -webkit-text-stroke: 1px var(--primary);
}

@keyframes wave-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-button {
  cursor: pointer;
  background: var(--dark);
  color: var(--gray-900);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  transition: background 300ms, transform 200ms;
  font-weight: 600;
  border: 3px solid var(--white);
  position: relative;
}
.animate-button:hover .button-circle {
  background: var(--white);
  color: var(--primary);
}
.animate-button .button-text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;
  margin: 0 !important;
}
.animate-button .button-text > span {
  position: absolute;
  transform: rotate(calc(13deg * var(--index)));
  inset: 6px;
  color: var(--white);
}
.animate-button .button-circle {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s;
  font-size: 24px;
  font-weight: 400;
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}
.hero-section-one {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-section-one .container {
  position: relative;
  z-index: 1;
}
.hero-section-one .tab-content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-section-one .tab-content .tab-pane {
  height: 100%;
}
.hero-section-one .tab-content .tab-pane img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-section-one .banner-scroll-btn {
  position: absolute;
  bottom: 20%;
  right: 20px;
  color: var(--white);
  transform: rotate(-90deg);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
}
@media (max-width: 1399.98px) {
  .hero-section-one .banner-scroll-btn {
    bottom: 34%;
  }
}
@media (max-width: 575.98px) {
  .hero-section-one .banner-scroll-btn {
    bottom: 12%;
  }
}
.hero-section-one .banner-scroll-btn::after {
  content: "";
  background: var(--white);
  width: 1px;
  height: 20px;
  position: absolute;
  top: 5px;
  right: 48px;
  transform: rotate(90deg);
}

.hero-section-five {
  margin: 20px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .hero-section-five {
    margin: 0px;
    border-radius: 0px;
  }
}

.hero-section-six {
  background: url(../img/bg/banner-bg-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
}
.hero-section-six .header-top {
  padding: 16px 0 30px;
}
@media (max-width: 991.98px) {
  .hero-section-six {
    padding-top: 20px;
  }
}

.animate-button2 {
  cursor: pointer;
  background: var(--dark);
  color: var(--gray-900);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-content: center;
  transition: background 300ms, transform 200ms;
  font-weight: 600;
  border: 3px solid var(--white);
  position: relative;
}
.animate-button2:hover .button-circle {
  background: var(--white);
  color: var(--primary);
}
.animate-button2 .button-text2 {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;
  margin: 0 !important;
}
.animate-button2 .button-text2 > span {
  position: absolute;
  inset: 6px;
  transform: rotate(calc(var(--angle) * var(--index) * 1deg));
  transform-origin: center 65px;
  left: 4px;
  top: 3px;
  display: flex;
  justify-content: center;
  color: var(--white);
}
.animate-button2 .button-circle {
  position: relative;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s;
  font-size: 24px;
  font-weight: 400;
}

/*============================
    20. Category
============================*/
.categories-item {
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.categories-item::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 53.54%, #000000 100%);
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
}
.categories-item .categories-img img {
  border-radius: 6px;
  height: 100%;
  width: 100%;
  transition: 0.6s;
}
.categories-item .categories-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  text-align: center;
  z-index: 2;
}
.categories-item .categories-info h3 a {
  color: var(--white);
}
.categories-item .categories-info p {
  color: var(--white);
}
.categories-item:hover .categories-img img {
  transform: scale(1.1);
}
.categories-item-two .categories-img {
  border-radius: 10px;
  margin-bottom: 13px;
  position: relative;
  display: block;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.categories-item-two .categories-img img {
  border-radius: 10px;
}
.categories-item-two .categories-img::before {
  opacity: 0;
  box-shadow: inset 0 0 0 1000px var(--primary);
  position: absolute;
  content: "";
  transform: rotate(-1.6deg);
  width: 94%;
  height: 106%;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 30px;
  z-index: -1;
  left: 3%;
  top: -5px;
}
.categories-item-two .categories-img:hover::before {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.categories-item-three {
  position: relative;
  transition: 0.4s;
  overflow: hidden;
}
.categories-item-three::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
}
@media (max-width: 575.98px) {
  .categories-item-three img {
    height: 370px;
    object-fit: cover;
  }
}
.categories-item-three h3 {
  color: #fff;
}
.categories-item-three p {
  color: #F7F8F8;
}
.categories-item-four {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.categories-item-four .categories-img {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.categories-item-four .categories-img::before {
  content: "";
  position: absolute;
  width: 73px;
  height: 46px;
  background: rgba(80, 114, 59, 0.15);
  border-radius: 0 0 120px 120px;
  bottom: 0;
  left: 10px;
  z-index: -1;
  transform: rotate(-22deg);
  -webkit-transform: rotate(-22deg);
  -ms-transform: rotate(-22deg);
  animation: rotate-smile 2.5s infinite ease-in-out;
}
.categories-item-four h5 {
  margin-bottom: 8px;
}
.categories-item-four p {
  margin-bottom: 20px;
}

@keyframes rotate-smile {
  0% {
    transform: rotate(45deg);
  }
  5% {
    transform: rotate(38deg);
  }
  10% {
    transform: rotate(30deg);
  }
  15% {
    transform: rotate(22deg);
  }
  20% {
    transform: rotate(14deg);
  }
  25% {
    transform: rotate(6deg);
  }
  30% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(-6deg);
  }
  40% {
    transform: rotate(-14deg);
  }
  45% {
    transform: rotate(-22deg);
  }
  50% {
    transform: rotate(-30deg);
  }
  55% {
    transform: rotate(-38deg);
  }
  60% {
    transform: rotate(-45deg);
  }
  65% {
    transform: rotate(-38deg);
  }
  70% {
    transform: rotate(-30deg);
  }
  75% {
    transform: rotate(-22deg);
  }
  80% {
    transform: rotate(-14deg);
  }
  85% {
    transform: rotate(-6deg);
  }
  90% {
    transform: rotate(0deg);
  }
  95% {
    transform: rotate(22deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
.inner-content {
  padding-right: 40px;
}

.card-shape {
  z-index: 2;
  border-top-left-radius: 2em;
  width: 58px;
  height: 58px;
  inset: auto 0 0 auto;
  position: absolute;
  background: var(--primary-transparent);
}
.card-shape::before {
  content: "";
  position: absolute;
  background: var(--primary-transparent);
  border-top-left-radius: 2.5em;
  width: 120%;
  height: 120%;
  z-index: 1;
}
.card-shape .shape-one,
.card-shape .shape-two {
  position: absolute;
  content: "";
  background: transparent;
  width: 16px;
  height: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--primary-transparent);
}
.card-shape .shape-two {
  border-bottom-right-radius: 16px;
  bottom: -1px;
  left: -16px;
}
.card-shape .shape-one {
  border-bottom-right-radius: 16px;
  top: -16px;
  right: 0;
}
.card-shape .view-icon {
  z-index: 4;
  display: flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: var(--white);
  color: var(--dark);
  font-size: 20px;
  position: absolute;
  inset: 12px 0 0 12px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.card-shape .view-icon:hover {
  background: linear-gradient(0deg, #6B9C4C 0%, #008979 100%);
  color: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

@keyframes verticalRotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.view-more {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .view-more {
    margin-top: 30px;
  }
}

.section {
  position: relative;
  padding: 80px 0;
}
@media (max-width: 991.98px) {
  .section {
    padding: 50px 0;
  }
}

.section-header {
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .section-header {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .section-header {
    margin-bottom: 30px;
  }
}
.section-header .title {
  font-size: 48px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .section-header .title {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .section-header .title {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .section-header .title {
    font-size: 30px;
  }
}
.section-header .sub-title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
  line-height: 18px;
  margin-bottom: 8px;
  display: inline-block;
}
.section-header .section-title {
  position: relative;
  margin-bottom: 20px;
}
.section-header .section-title.title-left::before {
  left: 0;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}
.section-header .section-title::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -12px;
  width: 38px;
  height: 8px;
  background: url("../img/icons/title-icon.svg");
}
.section-header .sub-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
@media (max-width: 767.98px) {
  .section-header .sub-title {
    font-size: 14px;
  }
}
.section-header-four {
  margin-bottom: 40px;
}
.section-header-four.white-title .section-title,
.section-header-four.white-title h2 {
  color: #fff;
}
.section-header-four.white-title p {
  color: #F7F8F8;
}
.section-header.white-title .section-title,
.section-header.white-title h2 {
  color: #fff;
}
.section-header.white-title p {
  color: #F7F8F8;
}
.section-header.title-two .section-title {
  position: relative;
  margin-bottom: 12px;
}
.section-header.title-two .section-title::before {
  content: none;
}
.section-header .header-icon {
  margin-bottom: 12px;
}
.section-header .section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: var(--primary);
  border-radius: 20px;
  padding: 4px 34px 4px 34px;
  position: relative;
}
.section-header .section-badge::before, .section-header .section-badge::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.section-header .section-badge::before {
  left: 16px;
}
.section-header .section-badge::after {
  right: 16px;
}
@media (max-width: 991.98px) {
  .section-header.section-header-five {
    text-align: center !important;
  }
}
.section-header.section-header-five .title {
  font-size: 48px;
}
@media (max-width: 767.98px) {
  .section-header.section-header-five .title {
    font-size: 38px;
  }
}
@media (max-width: 575.98px) {
  .section-header.section-header-five .title {
    font-size: 28px;
  }
}
.section-header.section-header-five img {
  margin-bottom: 16px !important;
}
@media (max-width: 991.98px) {
  .section-header.section-header-six {
    text-align: center;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border-radius: 20px;
  padding: 4px 34px 4px 34px;
  position: relative;
}
@media (max-width: 767.98px) {
  .section-badge {
    font-size: 16px;
  }
}
.section-badge::before, .section-badge::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.section-badge::before {
  left: 16px;
}
.section-badge::after {
  right: 16px;
}

.section-heading-three {
  margin-bottom: 40px;
}
.section-heading-three span.section-title {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 4px 12px 4px 12px;
  background-color: var(--white);
  color: var(--gray-900);
  font-weight: 500;
  display: inline-flex;
  position: relative;
  margin-bottom: 12px;
}
.section-heading-three h2 {
  display: table;
  margin: 0 auto;
  padding-bottom: 10px;
  background-image: url("../img/home-2/shape-04.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (max-width: 575.98px) {
  .section-heading-three h2 {
    background-position: center bottom;
  }
}

.categories-section-four {
  background: var(--primary-transparent);
  overflow: hidden;
  z-index: 1;
}
.categories-section-four .categories-bg {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.2;
  transform: translate(14%, -55%);
  -webkit-transform: translate(14%, -55%);
  -ms-transform: translate(14%, -55%);
  z-index: -1;
  animation: spin-1 30s linear infinite;
}
@media (max-width: 767.98px) {
  .categories-section-four .categories-bg {
    display: none;
  }
}
@keyframes spin-1 {
  from {
    transform: translate(14%, -55%) rotate(0deg);
  }
  to {
    transform: translate(14%, -55%) rotate(360deg);
  }
}
.categories-section-four .categories-bg-01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .categories-section-four .categories-bg-01 {
    display: none;
  }
}
.categories-section-four .categories-bg-02 {
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .categories-section-four .categories-bg-02 {
    display: none;
  }
}

.category-section-five {
  background: url("../img/home-3/bg/category-bg.png");
  background-size: 100% 100%;
  background-position: center;
  padding: 115px 0px 125px;
}
@media (max-width: 575.98px) {
  .category-section-five {
    background-size: cover;
    padding: 80px 0px 80px;
  }
}
.category-section-five .section-header h2 {
  color: #fff;
}
.category-section-five .slick-slide {
  text-align: center;
}
.category-section-five .category-slide {
  text-align: center;
}
.category-section-five .category-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  z-index: 1;
  transition: all 0.7s;
}
@media (max-width: 575.98px) {
  .category-section-five .category-item {
    margin: 0px auto 12px;
  }
}
.category-section-five .category-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.category-section-five .category-item:after {
  content: "";
  position: absolute;
  background: var(--dark-linear-gradient);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.7s;
  border-radius: 6px;
}
.category-section-five .category-item:hover {
  transition: all 0.7s;
}
.category-section-five .category-item:hover:after {
  background: var(--primary-linear-gradient);
  opacity: 0.9;
  transition: all 0.7s;
}
.category-section-five .category-item:hover .category-overlay {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 11;
  transition: all 0.7s;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .category-section-five .category-item:hover .category-overlay {
    right: 15px;
  }
}
.category-section-five .category-item:hover .category-overlay a {
  border-radius: 50%;
}
.category-section-five .category-item .category-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 11;
}
.category-section-five .category-item .category-content h3 {
  color: #fff;
}
.category-section-five .category-item .category-content p {
  color: #F7F8F8;
}
.category-section-five .category-item .category-overlay {
  display: none;
}
.category-section-five .category-item .category-overlay a {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  transition: all 0.7s;
  padding: 0;
}
.category-section-five .category-item .category-overlay a:hover {
  transform: rotate(45deg);
  transition: 0.7s;
}
.category-section-five .element-one {
  position: absolute;
  top: 0;
  left: 0px;
  opacity: 0.1;
}
@media (max-width: 575.98px) {
  .category-section-five .element-one {
    display: none;
  }
}
.category-section-five .element-two {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 292px;
}
.category-section-five .slick-dots {
  bottom: -55px;
}
@media (max-width: 575.98px) {
  .category-section-five .slick-dots {
    bottom: -36px;
  }
}
.category-section-five .slick-dots li {
  text-align: center;
  margin: 0px;
}
.category-section-five .slick-dots .slick-active {
  margin: 0px 5px;
}
.category-section-five .slick-dots .slick-active button {
  background: var(--primary);
  width: 32px;
  height: 12px;
  border-radius: 12px;
}
.category-section-five .slick-dots button {
  width: 12px;
  height: 12px;
  padding: 0px;
  background: #fff;
  border-radius: 50%;
  margin: auto;
}

.senses-section-five {
  background: url(../img/home-3/categories/category-img-list-1.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 575.98px) {
  .senses-section-five {
    background-size: cover;
  }
}
.senses-section-five .senses-list {
  text-align: center;
  position: relative;
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.senses-section-five .senses-list:before {
  display: none !important;
}
@media (max-width: 991.98px) {
  .senses-section-five .senses-list {
    background-size: cover;
  }
}
.senses-section-five .senses-list h2 {
  color: #fff;
}
.senses-section-five .senses-list .senses-item {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: all 0.7s;
}
.senses-section-five .senses-list .senses-item:hover {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}
.senses-section-five .senses-list .senses-item:hover .avatar {
  background: var(--primary-linear-gradient);
  transform: translateY(-5px) rotateY(360deg);
  transition: all 0.7s;
}
.senses-section-five .senses-list .senses-item:hover .avatar img {
  filter: brightness(0) invert(1) !important;
}
.senses-section-five .senses-list .senses-item .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--white);
}
.senses-section-five .senses-list .senses-item .avatar img {
  transition: all 0.7s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(45%) sepia(21%) saturate(2335%) hue-rotate(293deg) brightness(96%) contrast(87%);
}
.senses-section-five .senses-list .senses-item h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.senses-section-five .senses-list .senses-item p {
  margin-bottom: 0;
  color: var(--white);
}
.senses-section-five .shadow-img-1 {
  position: absolute;
  bottom: -140px;
  right: 0;
}

.premium-section-five {
  padding-top: 20px;
}
.premium-section-five .image-text {
  font-size: 200px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  background-image: url("../img/home-3/categories/premium-img.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
@media (max-width: 1399.98px) {
  .premium-section-five .image-text {
    font-size: 178px;
  }
}
@media (max-width: 1199.98px) {
  .premium-section-five .image-text {
    font-size: 150px;
  }
}
@media (max-width: 991.98px) {
  .premium-section-five .image-text {
    font-size: 108px;
  }
}
@media (max-width: 767.98px) {
  .premium-section-five .image-text {
    font-size: 82px;
  }
}
@media (max-width: 575.98px) {
  .premium-section-five .image-text {
    font-size: 46px;
  }
}

/*============================
    22. About
============================*/
.about-img {
  position: relative;
  margin-right: 43px;
}
@media (max-width: 991.98px) {
  .about-img {
    margin: 0 23px 24px 0;
  }
}
@media (max-width: 575.98px) {
  .about-img {
    margin-right: 0;
  }
}
.about-img > img {
  border-radius: 10px;
}
.about-img-one {
  display: flex;
  align-items: start;
  width: 100%;
  max-width: 332px;
  gap: 16px;
  margin: 0;
  padding-left: 48px;
}
@media (max-width: 1399.98px) {
  .about-img-one {
    max-width: 280px;
  }
}
@media (max-width: 1199.98px) {
  .about-img-one {
    display: none;
  }
}
.about-img-one img {
  border-radius: 4px;
}
.about-img-one img:nth-child(2) {
  position: relative;
  top: 40px;
}
.about-img .about-exp {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 10px;
  background: var(--primary);
  padding: 20px;
}
.about-img .about-exp span,
.about-img .about-exp p {
  color: #fff;
}
.about-img .about-shape {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .about-img .about-shape {
    display: none;
  }
}
.about-img-five {
  position: relative;
}
@media (max-width: 991.98px) {
  .about-img-five {
    display: none;
  }
}
.about-img-five .video-btn {
  position: absolute;
  top: 0;
  right: -20px;
}
.about-img-five .video-btn .animate-button2 {
  background: var(--primary);
  border: 0;
}
.about-img-five .video-btn .animate-button2 .button-circle {
  background: var(--dark);
}
.about-img-five .video-btn .animate-button2 .button-text2 > span {
  inset: 6px;
  transform: rotate(calc(var(--angle) * var(--index) * 1deg));
  transform-origin: center 65px;
  left: 4px;
  top: 4px;
  display: flex;
  justify-content: center;
  color: var(--white);
}
.about-img-six {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .about-img-six {
    gap: 12px;
  }
}
.about-img-six img {
  border-radius: 4px;
  width: 30%;
}
.about-img-six .about-02 {
  position: relative;
  top: 60px;
}
.about-img-six .about-bg {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 50%;
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 20px;
}
.about-content .about-list p {
  position: relative;
  margin-bottom: 8px;
  padding-left: 26px;
}
.about-content .about-list p::before {
  content: "\f704";
  position: absolute;
  font-family: "tabler-icons" !important;
  left: 0;
  top: 0;
  color: var(--success);
}
.about-content .about-list p:last-child {
  margin-bottom: 0;
}
.about-content-two .section-header {
  margin-bottom: 38px;
}
@media (max-width: 767.98px) {
  .about-content-two .section-header {
    margin-bottom: 20px;
  }
}
.about-content-two .section-header .badge {
  margin-bottom: 20px;
}
.about-content-two .section-header h2 {
  margin-bottom: 12px;
}
.about-content-two .about-item-two span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E1B1B;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
  color: #fff;
}
.about-content-three {
  padding-left: 24px;
}
@media (max-width: 991.98px) {
  .about-content-three {
    padding-left: 0;
  }
}

.about-section-one {
  background: var(--dark);
  position: relative;
}
.about-section-one .container {
  position: relative;
  z-index: 1;
}
.about-section-one .section-header .sub-title {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 4px solid var(--primary);
  line-height: 18px;
  margin-bottom: 8px;
  display: inline-block;
}
.about-section-one .section-header .title {
  color: var(--white);
}
.about-section-one .section-header .description {
  width: 80%;
  color: var(--white);
  text-align: end;
  margin-left: auto;
  border: none;
}
@media (max-width: 1199.98px) {
  .about-section-one .section-header .description {
    width: 90%;
  }
}
@media (max-width: 991.98px) {
  .about-section-one .section-header .description {
    width: 100%;
    text-align: center;
  }
}
.about-section-one .about-row {
  margin-bottom: 40px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .about-section-one .view-more {
    text-align: center;
  }
}
.about-section-one .element-1 {
  position: absolute;
  right: 0;
  top: 26%;
  z-index: 0;
}
.about-section-one .element-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-section-five {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .about-section-five {
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .about-section-five .about-content {
    text-align: left;
  }
}
.about-section-five .about-details .about-item {
  margin-bottom: 12px;
}
@media (max-width: 991.98px) {
  .about-section-five .about-details .about-item {
    width: 75%;
    margin: 0px auto 12px;
  }
}
@media (max-width: 767.98px) {
  .about-section-five .about-details .about-item {
    width: 95%;
  }
}
@media (max-width: 575.98px) {
  .about-section-five .about-details .about-item {
    width: 100%;
    flex-direction: column;
  }
}
.about-section-five .about-details .about-item .avatar {
  transition: all 0.6s;
  flex-shrink: 0;
}
.about-section-five .about-details .about-item .avatar i {
  color: var(--gray-900);
  font-size: 20px;
  transition: all 0.6s;
}
.about-section-five .about-details .about-item .avatar:hover {
  transition: all 0.6s;
  background: var(--primary-linear-gradient);
}
.about-section-five .about-details .about-item .avatar:hover i {
  color: var(--white);
}
.about-section-five .element-one {
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: -1;
}
.about-section-six {
  background: var(--primary-transparent);
}
@media (max-width: 991.98px) {
  .about-section-six .about-btn-six {
    text-align: center;
  }
}

.work-section {
  background-color: var(--light);
}
.work-section .work-item {
  border: 1px solid rgba(107, 107, 107, 0.2);
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}
.work-section .work-item .step-number {
  color: rgba(107, 107, 107, 0.2);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .work-section .work-item .step-number {
    font-size: 44px;
  }
}
@media (max-width: 991.98px) {
  .work-section .work-item .step-number {
    font-size: 38px;
  }
}
@media (max-width: 767.98px) {
  .work-section .work-item .step-number {
    font-size: 34px;
  }
}
.work-section .work-item:hover .step-number {
  color: var(--primary);
}
.work-section .work-img1 {
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  border: 3px solid var(--white);
  rotate: -5deg;
  width: 86%;
}
.work-section .work-img2 {
  border: 3px solid var(--white);
  left: 0;
  position: absolute;
  bottom: 0;
  rotate: -14deg;
  animation: sparkleFloat 10s ease-in-out infinite;
  width: 40%;
}
.work-section .work-img3 {
  border: 3px solid var(--white);
  top: 10%;
  position: absolute;
  right: 0;
  rotate: 14deg;
  animation: sparkleFloat 10s ease-in-out infinite;
  width: 40%;
}
@media (max-width: 991.98px) {
  .work-section .work-image {
    display: none;
  }
}

.about-item-one {
  background: var(--dark-700);
  padding: 24px;
  border-radius: 4px;
  transition: all 0.6s;
  border: 1px solid transparent;
}
@media (max-width: 991.98px) {
  .about-item-one {
    text-align: center;
  }
}
.about-item-one:hover {
  border: 1px solid var(--primary);
}
.about-item-one .about-img {
  margin-bottom: 20px;
  margin-right: 0;
}
.about-item-one .about-title {
  color: var(--white);
  margin-bottom: 8px;
}
.about-item-one .about-title span {
  color: var(--primary);
}
.about-item-one p {
  color: var(--white);
}
.about-item-three .about-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}
.about-item-four {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
@media (max-width: 575.98px) {
  .about-item-four {
    flex-direction: column;
    align-items: start;
  }
}
.about-item-four:last-child {
  margin-bottom: 0;
}
.about-item-four .about-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .about-item-four .about-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.about-item-four .custom-title {
  margin-bottom: 8px;
}
.about-item-four p {
  margin-bottom: 0;
}
.about-item-six {
  background: var(--white);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}
.about-item-six .title {
  font-size: 24px;
}
@media (max-width: 1199.98px) {
  .about-item-six .title {
    font-size: 18px;
  }
}
.about-item-six .about-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.brand-slider-six {
  margin-top: 80px;
}
.brand-slider-six .brand-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  margin: auto;
}
.brand-slider-six .brand-img img {
  height: 108px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .brand-slider-six .brand-img img {
    height: 70px;
  }
}
.brand-slider-six .slick-slide > div {
  margin: 0px 12px;
  border-right: 1px solid var(--border-color);
}
.brand-slider-six .slick-active + .slick-active + .slick-active + .slick-active + .slick-active + .slick-active > div {
  border-right: none;
}
@media (max-width: 1399.98px) {
  .brand-slider-six .slick-active + .slick-active + .slick-active + .slick-active > div {
    border-right: none !important;
  }
}
@media (max-width: 991.98px) {
  .brand-slider-six .slick-active + .slick-active + .slick-active > div {
    border-right: none !important;
  }
}
@media (max-width: 575.98px) {
  .brand-slider-six .slick-active + .slick-active > div {
    border-right: none !important;
  }
}
.brand-slider-six .swiper-wrapper {
  margin-left: -1px;
}
.brand-slider-six .swiper-slide {
  border-left: 1px solid var(--border-color);
}

.wellness-section {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}
.wellness-section.wellness-section-six {
  background: url(../img/home-2/well-bg-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}
@media (max-width: 991.98px) {
  .wellness-section.wellness-section-six {
    padding-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .wellness-section.wellness-section-six .row-gap-4 {
    row-gap: 0 !important;
  }
}
.wellness-section.wellness-section-six .section-header {
  padding-left: 40px;
}
@media (max-width: 1199.98px) {
  .wellness-section.wellness-section-six .section-header {
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .wellness-section.wellness-section-six .section-header {
    text-align: center;
  }
}

.article-wrapper {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-item-two {
  width: calc(25% - 20px);
  position: relative;
  z-index: 1;
  transition: 0.5s;
  padding: 0 !important;
  border-radius: 6px;
  background-color: transparent;
  height: 400px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}
@media (max-width: 575.98px) {
  .article-item-two {
    height: auto;
  }
}
.article-item-two:last-child {
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .article-item-two:last-child {
    margin-right: 50%;
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .article-item-two:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1199.98px) {
  .article-item-two {
    width: 50%;
    margin-right: 50%;
    border: 1px solid var(--border-color);
    border-right: 0;
  }
}
@media (max-width: 575.98px) {
  .article-item-two {
    width: 100%;
    margin-right: 0;
    border: 0;
  }
}
.article-item-two.active, .article-item-two:hover {
  margin-right: calc(25% - 12px);
  border: 1px solid var(--border-color);
  border-right: 0;
}
@media (max-width: 1199.98px) {
  .article-item-two.active, .article-item-two:hover {
    margin-right: 50%;
  }
}
@media (max-width: 575.98px) {
  .article-item-two.active, .article-item-two:hover {
    width: 100%;
    margin-right: 0;
    border: 0;
  }
}
.article-item-two.active .article-content, .article-item-two:hover .article-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(100%);
  border: 1px solid var(--border-color);
  border-left: 0;
}
@media (max-width: 767.98px) {
  .article-item-two.active .article-content, .article-item-two:hover .article-content {
    padding: 24px;
  }
}
@media (max-width: 575.98px) {
  .article-item-two.active .article-content, .article-item-two:hover .article-content {
    transform: translateX(0);
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
  }
}
.article-item-two.active .article-img .article-info, .article-item-two:hover .article-img .article-info {
  transition: 0.5s;
  opacity: 0;
}
.article-item-two.active .article-img::before, .article-item-two:hover .article-img::before {
  content: "";
  background: transparent;
}
.article-item-two .article-img {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.article-item-two .article-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .article-item-two .article-img {
    display: none;
  }
}
.article-item-two .article-img::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.article-item-two .article-img .article-info {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  flex-direction: column;
  gap: 20px;
}
.article-item-two .article-img .article-info .step-count {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 68px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .article-item-two .article-img .article-info .step-count {
    font-size: 40px;
    line-height: 36px;
  }
}
.article-item-two .article-img .article-info h3, .article-item-two .article-img .article-info .title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .article-item-two .article-img .article-info h3, .article-item-two .article-img .article-info .title {
    font-size: 24px;
  }
}
.article-item-two .article-content {
  background: var(--white);
  position: relative;
  padding: 40px;
  width: 100%;
  z-index: -1;
  left: 0;
  right: 0;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20%);
  border-radius: 0 6px 6px 0;
  transition: transform 0.5s ease-in-out 0.05s, visibility 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .article-item-two .article-content {
    opacity: 1;
    transform: translateX(100%);
    visibility: visible;
    border: 1px solid var(--border-color);
    border-left: 0;
  }
}
@media (max-width: 575.98px) {
  .article-item-two .article-content {
    transform: translateX(0);
    border: 1px solid var(--border-color) !important;
    border-radius: 6px !important;
    padding: 24px;
  }
}
.article-item-two .article-content .step-count {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 68px;
  color: var(--primary);
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .article-item-two .article-content .step-count {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .article-item-two .article-content .step-count {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .article-item-two .article-content .step-count {
    margin-bottom: 8px;
    line-height: 1;
    font-size: 36px;
  }
}
.article-item-two .article-content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
@media (max-width: 575.98px) {
  .article-item-two .article-content h3 {
    font-size: 18px;
  }
}
.article-item-two .article-content p {
  margin-bottom: 0;
}

.wellness-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--primary);
}
@media (max-width: 991.98px) {
  .wellness-img {
    margin-bottom: 0;
    display: none;
  }
}
.wellness-img img {
  border-radius: 4px;
}
.wellness-img .wellness-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: rgba(255, 255, 255, 0.8);
  border: 5px solid var(--white);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .wellness-img .wellness-icon {
    width: 90px;
    height: 90px;
    top: 10px;
  }
}
.wellness-img .wellness-icon img {
  border-radius: 0;
}
@media (max-width: 991.98px) {
  .wellness-img .wellness-icon img {
    width: 50%;
  }
}

.wellness-content {
  margin-left: 40px;
}
@media (max-width: 1199.98px) {
  .wellness-content {
    margin-left: 0;
  }
}
.wellness-content .title {
  font-size: 24px;
}
@media (max-width: 575.98px) {
  .wellness-content .title {
    font-size: 18px;
  }
}
.wellness-content .title a {
  color: var(--white);
}
.wellness-content p {
  color: var(--white);
}

.wellness-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--white-50);
  padding-bottom: 24px;
  margin-bottom: 24px;
  gap: 12px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .wellness-list {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.wellness-list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.wellness-list:last-child img {
  top: -90%;
}
.wellness-list:hover h3 a {
  color: var(--primary);
}
.wellness-list:hover img {
  opacity: 1;
}
.wellness-list:hover .view-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.wellness-list img {
  position: absolute;
  top: -50%;
  right: 10%;
  transition: all 0.5s ease-in-out;
  border-radius: 6px;
  opacity: 0;
  max-width: 240px;
  transform: rotate(-4deg);
}
@media (max-width: 767.98px) {
  .wellness-list img {
    display: none;
  }
}
.wellness-list .view-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  font-size: 20px;
  color: var(--gray-900);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.7s;
}
.wellness-list .view-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.video-section {
  position: relative;
  background: url(../img/about/video.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  overflow: hidden;
}
.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.video-section .video-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 991.98px) {
  .video-section .video-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575.98px) {
  .video-section .video-btn {
    margin: 0 auto;
  }
}
.video-section .video-btn::before, .video-section .video-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  animation: ripple 3s infinite;
}
@media (max-width: 991.98px) {
  .video-section .video-btn::before, .video-section .video-btn::after {
    width: 50px;
    height: 50px;
  }
}
.video-section .video-btn::before {
  animation-delay: 0.9s;
}
.video-section .video-btn::after {
  animation-delay: 0.6s;
}
.video-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(89.85deg, rgba(0, 0, 0, 0.7) 28.66%, rgba(0, 0, 0, 0.28) 48.52%, rgba(0, 0, 0, 0.7) 69.79%);
  opacity: 0.5;
  z-index: 1;
}
.video-section .video-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .video-section .video-content .video-wrap {
    gap: 40px !important;
  }
}
.video-section .video-content h2 {
  margin-bottom: 12px;
  color: #fff;
}
@media (max-width: 991.98px) {
  .video-section .video-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 767.98px) {
  .video-section .video-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .video-section .video-content h2 {
    font-size: 28px;
  }
}
.video-section .video-content p {
  color: #fff;
  margin-bottom: 40px;
}
.video-section .video-content .video-tagline {
  font-size: 120px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .video-section .video-content .video-tagline {
    font-size: 100px;
  }
}
@media (max-width: 767.98px) {
  .video-section .video-content .video-tagline {
    font-size: 80px;
  }
}
@media (max-width: 575.98px) {
  .video-section .video-content .video-tagline {
    font-size: 40px;
  }
}
.video-section .video-content .video-tagline span {
  display: block;
  font-size: 76px;
  color: var(--primary);
}
@media (max-width: 991.98px) {
  .video-section .video-content .video-tagline span {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .video-section .video-content .video-tagline span {
    font-size: 30px;
  }
}
.video-section .video-content .video-info {
  max-width: 485px;
}
@media (max-width: 575.98px) {
  .video-section .video-content .video-info {
    text-align: center;
  }
}
.video-section .video-content .video-slag {
  text-align: center;
}
@media (max-width: 575.98px) {
  .video-section .video-content .video-slag {
    text-align: center;
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 20px 50px rgba(255, 255, 255, 0);
  }
}
.about-section-two .who-we-are-section {
  position: relative;
}
.about-section-two .who-we-are-section .experience-year-cover {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary);
  top: 35%;
  left: 50%;
  transform: translatex(-50%);
  padding: 8px;
}
.about-section-two .who-we-are-section .experience-year-cover .experience-year-content {
  height: 100%;
  border: 1px solid var(--white);
  border-radius: 50%;
  border-style: dashed;
  align-content: center;
  text-align: center;
}
.about-section-two .who-we-are-section .experience-year-cover .experience-year-content span {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.about-section-two .who-we-are-section .experience-year-cover .experience-year-content p {
  color: var(--white);
}
.about-section-two .home-two-about-title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  position: relative;
  margin-left: 24px;
}
.about-section-two .home-two-about-title::after {
  position: absolute;
  content: "";
  background-image: url("../img/icons/about-star.svg");
  height: 16px;
  width: 16px;
  top: 2px;
  left: -24px;
}

@media (max-width: 991.98px) {
  .about-img-three {
    text-align: center;
    margin-bottom: 16px;
  }
}

.about-content-offcanvas .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 24px 24px 36px;
}
.about-content-offcanvas .offcanvas-header .logo-1 {
  max-width: 220px;
}
.about-content-offcanvas .offcanvas-header .btn-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  color: var(--dark);
  font-size: 20px;
  transition: all 0.7s;
  border: 1px solid var(--border-color);
  opacity: 1;
}
.about-content-offcanvas .offcanvas-header .btn-close:hover {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}
.about-content-offcanvas .offcanvas-body {
  padding: 0px 24px 24px 24px;
}
.about-content-offcanvas .offcanvas-body .about-content-item {
  margin-bottom: 24px;
}
.about-content-offcanvas .offcanvas-body .about-content-item:last-child {
  margin-bottom: 0;
}
.about-content-offcanvas .offcanvas-body .about-content-item .title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
}
.about-content-offcanvas .offcanvas-body .about-content-item p {
  margin-bottom: 0;
  color: var(--gray-600);
}
.about-content-offcanvas .offcanvas-body .about-content-item .content-item {
  margin-bottom: 8px;
}
.about-content-offcanvas .offcanvas-body .about-content-item .content-item:last-child {
  margin-bottom: 0;
}
.about-content-offcanvas .offcanvas-body .about-content-item .sub-title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 0;
}
.about-content-offcanvas .offcanvas-body .about-content-item .social-icon {
  display: flex;
  gap: 8px;
}
.about-content-offcanvas .offcanvas-body .about-content-item .social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  transition: all 0.7s;
}
.about-content-offcanvas .offcanvas-body .about-content-item .social-icon li a:hover {
  background: var(--primary);
  color: var(--white);
}
.about-content-offcanvas .offcanvas-body .about-content-item.content-image-item {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.about-content-offcanvas .offcanvas-body .about-content-item.content-image-item .content-image {
  border-radius: 4px;
  overflow: hidden;
  width: 108px;
  height: 108px;
}
.about-content-offcanvas .offcanvas-body .about-content-item.content-image-item .content-image img {
  border-radius: 4px;
}
.about-content-offcanvas .offcanvas-body .about-content-item.custom-content {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.about-content-offcanvas .offcanvas-body .about-content-item.custom-content .content-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.about-content-offcanvas .offcanvas-body .about-content-item.custom-content .content-item .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  border: 1px solid var(--border-color);
  color: var(--dark);
  font-size: 20px;
  transition: all 0.7s;
}
.about-content-offcanvas .offcanvas-body .about-content-item.custom-content .content-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 0;
}
.about-content-offcanvas .offcanvas-body .about-content-item.custom-content .content-item:last-child {
  margin-bottom: 0;
}

.offcanvas.offcanvas-top {
  max-width: 100% !important;
  height: 100%;
  background-image: url(../img/home-2/well-bg-1.png) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.offcanvas.offcanvas-top .offcanvas-header {
  justify-content: end;
}
.offcanvas.offcanvas-top .btn-close {
  border: 1px solid var(--gray-800);
  font-size: 16px !important;
  color: var(--gray-600) !important;
  opacity: 1 !important;
  top: 20px;
  right: 20px;
  background: var(--gray-900);
}
@media (max-width: 767.98px) {
  .offcanvas.offcanvas-top .btn-close {
    top: 10px;
    right: 10px;
  }
}
.offcanvas.offcanvas-top .btn-close:hover {
  background: var(--primary);
  color: var(--white) !important;
  border: 1px solid var(--primary);
}
.offcanvas.offcanvas-top .offcanvas-body {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas.offcanvas-top .search-content-form {
  width: 60%;
  margin: auto;
}
.offcanvas.offcanvas-top .search-content-form .input-group {
  position: relative;
}
.offcanvas.offcanvas-top .search-content-form .input-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gray-800);
  border-radius: 0;
  padding-right: 46px;
  transition: all 0.8s;
  font-size: 24px;
  color: var(--white);
  background: transparent !important;
}
.offcanvas.offcanvas-top .search-content-form .input-group input:focus {
  border-bottom: 1px solid var(--primary);
}
.offcanvas.offcanvas-top .search-content-form .input-group .btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: none;
  color: var(--gray-500);
  background: transparent;
  z-index: 11;
  transition: all 0.7s;
  font-size: 24px;
}
.offcanvas.offcanvas-top .search-content-form .input-group .btn:hover {
  color: var(--primary);
}
@media (max-width: 767.98px) {
  .offcanvas.offcanvas-top .search-content-form {
    width: 100%;
  }
}

/*============================
    26. Support
============================*/
.support-section {
  padding: 20px 0;
}
.support-section-six {
  background: url(../img/bg/count-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0px;
}
.support-section-six .support-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .support-section-six .support-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
.support-section-six .support-content .support-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
}
.support-section-six .support-content .support-text .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
@media (max-width: 1199.98px) {
  .support-section-six .support-content .support-text .title {
    font-size: 18px;
  }
}
.support-section-six .support-content .support-text p {
  color: var(--white);
  margin-bottom: 0;
}

.support-item {
  position: relative;
  margin-right: 24px;
  padding-right: 44px;
}
.support-item::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 0;
  background: url("../img/icons/support-icon.svg") no-repeat;
  width: 22px;
  height: 22px;
}
.support-item p {
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .support-item p {
    font-size: 18px;
  }
}

.support-section-five {
  background: #28172A;
  position: relative;
  z-index: 1;
  border-radius: 0px 0px 10px 10px;
  padding: 12px 0;
  margin-top: -5px; /* Pull it up to touch the banner if Elementor adds a gap */
}
@media (max-width: 575.98px) {
  .support-section-five {
    border-radius: 0px;
    margin: 0;
  }
}
.support-section-five .support-item {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  padding-right: 0;
}
.support-section-five .support-item::after {
  content: none !important;
}
.support-section-five .support-item p {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.support-section-five .support-item .separator-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}
.support-section-five .support-item .separator-icon img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  vertical-align: middle;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  margin-left: 45px;
  margin-right: 45px;
}

.ambience-slide .slide-list {
  gap: 60px;
}
@media (max-width: 991.98px) {
  .ambience-slide .slide-list {
    gap: 38px;
  }
}
@media (max-width: 575.98px) {
  .ambience-slide .slide-list {
    gap: 22px;
  }
}
.ambience-slide .slide-list .support-item {
  margin-right: 0;
  padding-right: 0;
}
.ambience-slide .slide-list .support-item::after {
  content: unset !important;
}
.ambience-slide .slide-list .support-item p {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: var(--gray-900);
  transition: all 0.7s;
}
@media (max-width: 991.98px) {
  .ambience-slide .slide-list .support-item p {
    font-size: 50px;
  }
}
@media (max-width: 575.98px) {
  .ambience-slide .slide-list .support-item p {
    font-size: 30px;
  }
}
.ambience-slide .slide-list .support-item p:hover {
  color: var(--primary);
}
.ambience-slide .slide-list .support-item img {
  transition: all 0.7s;
  width: 120px;
  border-radius: 4px;
}
.ambience-slide .slide-list .support-item img:hover {
  transform: scale(1.1);
}
.ambience-slide .slide-list .support-item:nth-child(even) {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .ambience-slide .slide-list .support-item:nth-child(even) {
    width: 90px;
  }
}
@media (max-width: 575.98px) {
  .ambience-slide .slide-list .support-item:nth-child(even) {
    width: 50px;
  }
}
.ambience-slide.ambience-slide-one {
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .ambience-slide.ambience-slide-one {
    margin-top: 22px;
  }
}

.animate-updown {
  -webkit-animation: updown 1.5s ease-in-out 0s infinite alternate;
  animation: updown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes updown {
  0% {
    transform: rotateX(0deg) translateY(0);
    -webkit-transform: rotateX(0deg) translateY(0);
    -ms-transform: rotateX(0deg) translateY(0);
  }
  50% {
    transform: rotateX(0deg) translateY(-20px);
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    transform: rotateX(0deg) translateY(0);
    -webkit-transform: rotateX(0deg) translateY(0);
    -ms-transform: rotateX(0deg) translateY(0);
  }
}
.horizontal-slide {
  overflow: hidden;
}
.horizontal-slide[data-direction=right] {
  --_animation-direction: reverse;
}
.horizontal-slide[data-direction=left] {
  --_animation-direction: forwards;
}
.horizontal-slide[data-speed=fast] {
  --_animation-duration: 30s;
}
.horizontal-slide[data-speed=slow] {
  --_animation-duration: 120s;
}
.horizontal-slide .slide-list {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 60s) var(--_animation-direction, forwards) linear infinite;
}
.horizontal-slide .slide-list:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/*============================
    28. Offer
============================*/
.offer-section {
  background: #1E1B1B;
}
.offer-section .offer-bg1 {
  right: 10px;
  top: -10%;
  animation: sparkleFloat 5s ease-in-out infinite;
}
.offer-section .offer-bg2 {
  left: 2%;
  bottom: 10%;
  animation: sparkleFloat 5s ease-in-out infinite;
}

.offer-section-one {
  background: url(../img/home/offer-bg.jpg);
  background-size: 100% 100%;
  background-attachment: fixed;
}
.offer-section-one .service-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .offer-section-one .service-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.offer-section-one .service-item-six {
  padding: 40px;
  border-radius: 4px;
  background: url(../img/home/offer-bg-1.jpg);
  background-size: 100% 100%;
}
@media (max-width: 575.98px) {
  .offer-section-one .service-item-six {
    padding: 20px;
  }
}
.offer-section-one .service-list .service-list-item {
  display: flex;
  align-items: center;
}
.offer-section-one .service-list .service-list-item .service-name {
  color: var(--white) !important;
  margin-bottom: 8px;
}
.offer-section-one .service-list .service-list-item .service-description {
  color: var(--white);
}
.offer-section-one .service-list .service-list-item .service-price {
  font-size: 20px;
  color: var(--white);
}
@media (max-width: 575.98px) {
  .offer-section-one .service-list .service-list-item .service-price {
    margin-left: 10px;
  }
}
.offer-section-one .offer-left {
  position: sticky;
  top: 100px;
}
@media (max-width: 991.98px) {
  .offer-section-one .view-more {
    text-align: center;
  }
}

.offer-item .offer-icon {
  width: 90px;
  aspect-ratio: 1/1;
  background: var(--pink-transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.offer-item .offer-icon.offer-icon-two {
  background: var(--teal-transparent);
}
.offer-item .offer-icon.offer-icon-three {
  background: var(--purple-transparent);
}
.offer-item .offer-right {
  min-width: 110px;
  text-align: right;
}
@media (max-width: 575.98px) {
  .offer-item .offer-right {
    text-align: center;
  }
}
.offer-item .price {
  color: var(--heading-color);
}

.offer-section-five {
  background: transparent;
}
.offer-section-five .offer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .offer-section-five .offer-item {
    justify-content: space-between;
    align-items: center !important;
  }
}
@media (max-width: 575.98px) {
  .offer-section-five .offer-item {
    justify-content: center;
    text-align: center;
  }
}
.offer-section-five .offer-item .title {
  font-size: 24px;
  font-weight: 600;
}
.offer-section-five .offer-item .offer-right p {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.offer-section-five .element-one {
  bottom: 0;
  left: -315px;
}

.experts-section-one {
  background: var(--primary-transparent);
  position: relative;
}
.experts-section-one .container {
  position: relative;
  z-index: 1;
}
.experts-section-one .head-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 991.98px) {
  .experts-section-one .head-area {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.experts-section-one .head-area .element-1 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
}
@media (max-width: 991.98px) {
  .experts-section-one .head-area .element-1 {
    display: none;
  }
}
.experts-section-one .section-header .sub-title {
  color: var(--gray-900);
}
.experts-section-one .section-header .title {
  color: var(--gray-900);
}
.experts-section-one .element-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.experts-item-one {
  text-align: center;
  transition: all 0.8s;
}
.experts-item-one:hover {
  transform: translateY(-10px);
}
.experts-item-one:hover .experts-overlay .social-icon {
  top: 0;
}
.experts-item-one:hover .experts-overlay img {
  transform: scale(1.1);
}
.experts-item-one .experts-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.experts-item-one .experts-overlay img {
  transition: all 0.8s;
}
.experts-item-one .experts-overlay .social-icon {
  background: var(--white-100);
  backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 0px 0px 100px 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  width: fit-content;
  position: absolute;
  top: -170px;
  right: 12px;
  font-size: 18px;
  transition: all 0.8s;
}
.experts-item-one .experts-overlay .social-icon .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--dark);
  transition: all 0.8s;
}
.experts-item-one .experts-overlay .social-icon .icon:hover {
  background: var(--primary);
}
.experts-item-one .experts-content {
  text-align: center;
  padding-top: 20px;
}
.experts-item-one .experts-content .experts-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.experts-item-one .experts-content .experts-name a {
  transition: all 0.8s;
}
.experts-item-one .experts-content .experts-name a:hover {
  color: var(--primary);
}
.experts-item-one .experts-content .experts-designation {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0;
}

.professional-section-one {
  background: url(../img/bg/professinoal-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .professional-section-one {
    margin-top: 50px;
    min-height: 400px;
  }
}
@media (max-width: 575.98px) {
  .professional-section-one {
    min-height: 250px;
  }
}
.professional-section-one .pro-title {
  font-size: 72px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .professional-section-one .pro-title {
    font-size: 48px;
  }
}
@media (max-width: 575.98px) {
  .professional-section-one .pro-title {
    font-size: 32px;
  }
}
.professional-section-one .pro-title span {
  display: block;
}

/*============================
    32. Blogs
============================*/
.blog-details.load-more-btn {
  margin: 16px 0 40px 0;
}

.blog-list-item {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .blog-list-item {
    flex-wrap: wrap;
    row-gap: 16px;
  }
}
.blog-list-item .blog-list-img img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
@media (max-width: 767.98px) {
  .blog-list-item .blog-list-img img {
    height: auto;
  }
}
.blog-list-item .blog-list-img .media {
  position: relative;
}
.blog-list-item .blog-list-img .media img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-list-item .blog-list-img .media .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.blog-list-item .blog-list-img .media .play-btn:hover {
  background: #ff3b3b;
  color: var(--white);
}
.blog-list-item .blog-list-img .media .youtube-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(25, 25, 25, 0.5);
  color: var(--white);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-list-item .blog-list-img .media .youtube-label i {
  font-size: 24px;
  color: var(--danger);
}
.blog-list-item .blog-list-img .blog-list-slider-cover {
  position: relative;
}
.blog-list-item .blog-list-img .blog-list-slider-cover .blog-list-arrow {
  width: 100%;
  height: 100%;
}
.blog-list-item .blog-list-img .blog-list-slider-cover .blog-list-arrow .blog-list-prev {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 1;
}
.blog-list-item .blog-list-img .blog-list-slider-cover .blog-list-arrow .blog-list-next {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
}
.blog-list-item .blog-list-img-gallery {
  padding: 20px;
  background: var(--light);
}
.blog-list-item .blog-list-img-gallery .gallery-item {
  border-radius: 6px;
}
.blog-list-item .blog-list-content {
  padding: 24px;
}
.blog-list-item .blog-list-content p {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list-item .blog-list-content hr {
  margin: 12px 0;
}

.blogs-section-one {
  position: relative;
}
@media (max-width: 991.98px) {
  .blogs-section-one .view-more {
    text-align: center;
  }
}
.blogs-section-one .element-1 {
  position: absolute;
  left: -50px;
  bottom: -180px;
}
@media (max-width: 991.98px) {
  .blogs-section-one .element-1 {
    display: none;
  }
}
.blogs-section-one .section-header .title {
  color: var(--gray-900);
}
.blogs-section-one .section-header .sub-title {
  color: var(--gray-900);
}

.blog-list-one {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .blog-list-one {
    flex-direction: column;
    border: 1px solid var(--border-color);
  }
}
.blog-list-one:last-child {
  margin-bottom: 0;
}
.blog-list-one:hover .blog-img img {
  transform: scale(1.1) rotate(4deg);
}
.blog-list-one .blog-img {
  width: 268px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 1199.98px) {
  .blog-list-one .blog-img {
    width: 245px;
  }
}
@media (max-width: 767.98px) {
  .blog-list-one .blog-img {
    width: 100%;
    border-radius: 4px 4px 0 0;
  }
}
.blog-list-one .blog-img img {
  transition: all 0.7s;
  height: 100%;
}
.blog-list-one .blog-content {
  padding: 24px;
}
.blog-list-one .blog-content .blog-category {
  background: var(--primary);
  padding: 3px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--white);
  width: fit-content;
  transition: all 0.3s ease;
}
.blog-list-one .blog-content .blog-category a {
  color: var(--white);
}
.blog-list-one .blog-content .blog-category:hover {
  background: var(--dark);
}
.blog-list-one .blog-content .blog-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list-one .blog-content .blog-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-list-one .blog-content .blog-footer p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0;
}
.blog-list-one .blog-content .blog-footer p i {
  font-size: 16px;
  color: var(--dark);
}

.blog-share,
.blog-comments {
  position: relative;
  margin-right: 20px;
}
.blog-share::after,
.blog-comments::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 1px;
  border-radius: 10px;
  background: var(--gray-100);
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}

.count-icon {
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.blog-item {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}
.blog-item .blog-img {
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-item .blog-img img {
  border-radius: 6px 6px 0 0;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
}
.blog-item .blog-img .badge {
  position: absolute;
  top: 20px;
  left: 20px;
}
.blog-item .blog-content {
  padding: 24px;
}
.blog-item .blog-content p,
.blog-item .blog-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-item .blog-content .view-link {
  text-decoration: underline;
  text-decoration-color: var(--primary) !important;
}
.blog-item .blog-content .blog-date {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-item .blog-content .blog-date p {
  display: inline-flex;
  align-items: center;
}
.blog-item:hover {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-item:hover .blog-img img {
  transform: rotate(2deg) scale(1.1);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
.blog-item-five {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-item-five:hover {
  transform: translateY(-5px);
}
.blog-item-five .blog-img {
  position: relative;
}
.blog-item-five .blog-img .blog-date {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
  line-height: 1.4;
  flex-direction: column;
}
@media (max-width: 575.98px) {
  .blog-item-five .blog-img .blog-date {
    font-size: 22px;
  }
}
.blog-item-five .blog-img .blog-date span {
  display: block;
  font-size: 14px;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  background: var(--pink);
  color: var(--white);
  padding: 4px;
  width: 100%;
}
.blog-item-five .blog-content {
  padding: 24px;
}
.blog-item-five .blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.blog-item-five .blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-item-six {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.blog-item-six .blog-img {
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
}
.blog-item-six .blog-img img {
  width: 100%;
}
.blog-item-six .blog-img .img {
  border-radius: 4px 4px 0 0;
}
.blog-item-six .blog-img .avatar {
  position: absolute;
  top: 16px;
  left: 16px;
}
.blog-item-six .blog-img .blog-date {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
  line-height: 1.4;
  flex-direction: column;
}
@media (max-width: 575.98px) {
  .blog-item-six .blog-img .blog-date {
    font-size: 22px;
  }
}
.blog-item-six .blog-img .blog-date span {
  display: block;
  font-size: 14px;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
  background: var(--primary);
  color: var(--white);
  padding: 4px;
  width: 100%;
}
.blog-item-six .blog-content {
  padding: 24px;
}
@media (max-width: 1199.98px) {
  .blog-item-six .blog-content {
    padding: 15px;
  }
}
.blog-item-six .blog-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-section-two .read-more {
  color: var(--primary);
}
.blog-section-two .read-more:hover {
  color: var(--danger);
}
.blog-section-two .blog-section-bg {
  left: 5%;
  top: 13%;
}
.blog-section-four {
  position: relative;
}
.blog-section-six .blog-bg-01 {
  position: absolute;
  left: 0;
  top: 3%;
  z-index: -1;
}
.blog-section-six .blog-bg-02 {
  position: absolute;
  right: 0;
  bottom: 3%;
  z-index: -1;
}

a.badge.bg-dark:hover {
  background: var(--primary) !important;
  color: #fff;
}
a.badge.bg-primary:hover {
  background: var(--primary-hover) !important;
  color: #fff;
}
a.badge.bg-orange:hover {
  background: var(--orange-hover) !important;
  color: #fff;
}
a.badge.bg-secondary:hover {
  background: var(--secondary-hover) !important;
  color: #fff;
}
a.badge.bg-light.text-dark, a.badge.bg-light {
  transition: 0.5s all ease-in-out;
}
a.badge.bg-light.text-dark:hover, a.badge.bg-light:hover {
  background: var(--primary-hover) !important;
  color: #fff !important;
}

.blog-slider .slick-list {
  margin: 0 -12px;
}
.blog-slider .slick-slide {
  margin: 0 12px;
}

.blockqoute {
  background: var(--light);
  border-left: 5px solid var(--primary);
  padding: 30px;
  padding: 30px 120px 30px 45px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .blockqoute {
    font-size: 16px;
    padding: 20px 110px 20px 35px;
  }
}
.blockqoute::after {
  content: "";
  background: url("../img/icons/quote.svg");
  background-size: cover;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  line-height: 1;
  z-index: -1;
  width: 62px;
  height: 44px;
}
@media (max-width: 767.98px) {
  .blockqoute::after {
    width: 50px;
    height: 34px;
  }
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}
.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  background: var(--primary);
  left: 0;
  top: 10px;
}

.comment-wrap {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .comment-wrap {
    margin-bottom: 24px;
  }
}

.latest-comments .list-wrap li {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .latest-comments .list-wrap li {
    margin-bottom: 24px;
  }
}
.latest-comments .list-wrap li.reply-comment {
  border-bottom: none;
}
.latest-comments .list-wrap li.reply-comment .comments-box {
  margin-left: 96px;
}
@media (max-width: 575.98px) {
  .latest-comments .list-wrap li.reply-comment .comments-box {
    margin-left: 30px;
  }
}
.latest-comments .comments-box {
  display: flex;
  align-items: center;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .latest-comments .comments-box {
    gap: 16px;
  }
}
.latest-comments .comments-avatar {
  flex: 0 0 auto;
  width: 115px;
}
@media (max-width: 767.98px) {
  .latest-comments .comments-avatar {
    width: 80px;
  }
}
.latest-comments .comments-avatar img {
  border-radius: 50%;
}
.latest-comments .comments-text .avatar-name {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .latest-comments .comments-text .avatar-name {
    flex-direction: column;
    align-items: start;
  }
}
.latest-comments .comments-text .avatar-name .name {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}
.latest-comments .comments-text .avatar-name .date {
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
}
@media (max-width: 575.98px) {
  .latest-comments .comments-text .avatar-name .date {
    margin-left: 0;
  }
}
.latest-comments .comments-text p {
  margin-bottom: 15px;
}
.latest-comments .comments-text .comment-reply .comment-reply-link {
  font-size: 14px;
  font-weight: 600;
  background: var(--primary);
  border-color: 1px solid var(--primary);
  display: inline-block;
  border-radius: 4px;
  line-height: 1;
  padding: 8px 20px;
  color: var(--white);
  font-family: "Oswald", sans-serif;
}
.latest-comments .comments-text .comment-reply .comment-reply-link:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.pagination-nav .pagination {
  flex-wrap: wrap;
}
.pagination-nav .pagination .page-item {
  margin-right: 8px;
}
.pagination-nav .pagination .page-item:first-child {
  margin-right: 13px;
}
.pagination-nav .pagination .page-item:first-child .page-link {
  background: transparent;
}
.pagination-nav .pagination .page-item:last-child {
  margin-right: 0;
  margin-left: 5px;
}
.pagination-nav .pagination .page-item:last-child .page-link {
  background: transparent;
}
.pagination-nav .pagination .page-item .page-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: var(--light);
  color: var(--gray-900);
  border-radius: 50%;
  line-height: 26px;
  text-align: center;
}
.pagination-nav .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination-nav .pagination .page-item.active .page-link, .pagination-nav .pagination .page-item:hover .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.search-group.input-group-flat:focus-within .input-group-text {
  background: var(--primary) !important;
}
.search-group.input-group-flat .input-group-text:last-child {
  padding: 0 15px;
  color: #fff;
}
.search-group.input-group-flat .input-group-text i {
  color: #fff;
}
.search-group.input-group-flat .input-group-text:focus {
  background: var(--primary) !important;
}

.blog-details-links {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .blog-details-links {
    margin-bottom: 24px;
  }
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--light);
  padding: 20px;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .blog-author {
    margin-bottom: 24px;
    flex-direction: column;
    text-align: center;
  }
}
.blog-author .avatar {
  flex-shrink: 0;
}
.blog-author .avatar img {
  border-radius: 6px;
}
.blog-author .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}
.blog-author p {
  margin-bottom: 0;
}

.post-social ul li a {
  font-size: 18px;
}
.post-social ul li a:hover {
  color: var(--primary);
}

.post-style {
  display: flex;
  align-items: center;
  gap: 16px;
}
.post-style .post-thumbnail {
  display: block;
  width: 96px;
  flex: none;
  border-radius: 6px;
}
@media (max-width: 575.98px) {
  .post-style .post-thumbnail {
    width: 80px;
  }
}
.post-style .post-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}
.post-style .post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
}

.sidebar-item {
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.sidebar-item:not(:last-child) {
  margin-bottom: 24px;
}

.sidebar-widget-title {
  line-height: 1.33em;
  margin-bottom: 0;
  font-size: 24px;
}
@media (max-width: 991.98px) {
  .sidebar-widget-title {
    font-size: 22px;
  }
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.tag-cloud-link {
  font-size: 14px;
  line-height: 1.6em;
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  display: inline-block;
  margin: 5px;
  border-radius: 6px;
  color: var(--primary-color);
  background-color: var(--light);
}
.tag-cloud-link:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.widget-archive ul,
.widget-categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-archive ul li,
.widget-categories ul li {
  padding-left: 24px;
  position: relative;
}
.widget-archive ul li i,
.widget-categories ul li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 14px;
}
.widget-archive ul li:not(:last-child),
.widget-categories ul li:not(:last-child) {
  margin-bottom: 15px;
}

.recent-posts li:not(:last-child) {
  margin-bottom: 24px;
}

.sidebar-search {
  position: relative;
}

.sidebar-search input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none;
  border: 1px solid var(--border-color);
  padding: 9px 40px 9px 15px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.sidebar-search-btn {
  position: absolute;
  border: none;
  outline: none;
  bottom: 0px;
  right: 0;
  padding: 10px 14px;
  cursor: pointer;
  background-color: var(--primary);
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
  color: #fff;
}
.sidebar-search-btn:hover {
  background-color: var(--primary-hover);
}

.comment-respond .form-control {
  padding: 12px 16px;
}
@media (max-width: 767.98px) {
  .comment-respond .form-control {
    padding: 10px 12px;
  }
}

.blog-post-comment .title,
.blog-post-comment .comment-reply-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 24px;
}

.blog-details .head-title {
  font-size: 48px;
}
@media (max-width: 991.98px) {
  .blog-details .head-title {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .blog-details .head-title {
    font-size: 30px;
  }
}
.blog-details .blog-author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.blog-details .blog-author-info .author-info {
  display: flex;
  align-items: center;
}
.blog-details .blog-author-info .author-info .author-name {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.blog-details .blog-author-info .author-info .author-date {
  font-size: 15px;
  font-weight: 400;
}
.blog-details .badge-item {
  border: 1px solid var(--border-color);
  transition: all 0.4s;
}
.blog-details .badge-item:hover {
  border: 1px solid var(--primary);
}
.blog-details .blog-author-img {
  margin-bottom: 24px;
}
.blog-details .blog-details-images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.blog-details .blog-details-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .blog-details .blog-details-links {
    flex-direction: column;
    justify-content: start;
  }
}
.blog-details .blog-details-links .post-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-details .blog-details-links .post-tag .title {
  font-size: 14px;
  margin-bottom: 0;
}
.blog-details .share-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  flex-wrap: wrap;
}
.blog-details .share-item .list-wrap {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-details .blog-paginate {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  margin-bottom: 24px;
  display: grid;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  grid-template-columns: 5fr 2fr 5fr;
}
@media (max-width: 991.98px) {
  .blog-details .blog-paginate {
    padding: 24px 0;
    margin-bottom: 24px;
    grid-template-columns: 4fr 1fr 4fr;
  }
}
@media (max-width: 575.98px) {
  .blog-details .blog-paginate {
    grid-template-columns: 6fr;
  }
}
.blog-details .blog-paginate .blog-post-prev,
.blog-details .blog-paginate .blog-post-next {
  max-width: 345px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1199.98px) {
  .blog-details .blog-paginate .blog-post-prev,
  .blog-details .blog-paginate .blog-post-next {
    max-width: 300px;
  }
}
@media (max-width: 991.98px) {
  .blog-details .blog-paginate .blog-post-prev,
  .blog-details .blog-paginate .blog-post-next {
    max-width: 330px;
  }
}
@media (max-width: 575.98px) {
  .blog-details .blog-paginate .blog-post-prev,
  .blog-details .blog-paginate .blog-post-next {
    max-width: 100%;
  }
}
.blog-details .blog-paginate .blog-post-prev .avatar,
.blog-details .blog-paginate .blog-post-next .avatar {
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .blog-details .blog-paginate .blog-post-prev .avatar,
  .blog-details .blog-paginate .blog-post-next .avatar {
    width: 60px;
    height: 60px;
  }
}
.blog-details .blog-paginate .blog-post-prev .avatar img,
.blog-details .blog-paginate .blog-post-next .avatar img {
  border-radius: 6px;
}
.blog-details .blog-details-share .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-details .blog-details-share .social-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #1E1B1B;
  color: #fff;
  border-radius: 40px;
  font-size: 16px;
}
.blog-details .blog-details-share .social-icon a:hover {
  background: var(--primary);
}

.gallery-section-five {
  padding: 60px 0;
}

@media (max-width: 575.98px) {
  .gallery-section-five .slick-list {
    padding: 0;
  }
}
.gallery-section-five .slick-slide > div {
  margin: 0 12px;
}
.gallery-section-five .slick-slide:nth-child(even) {
  margin-top: -24px;
}
@media (max-width: 575.98px) {
  .gallery-section-five .slick-slide:nth-child(even) {
    margin-top: 0;
  }
}
.gallery-section-five .slick-slide:nth-child(odd) {
  margin-top: 24px;
}
@media (max-width: 575.98px) {
  .gallery-section-five .slick-slide:nth-child(odd) {
    margin-top: 0;
  }
}
.gallery-section-five .swiper-slide {
  padding-top: 24px;
}
@media (max-width: 575.98px) {
  .gallery-section-five .swiper-slide {
    padding-top: 0;
  }
}
.gallery-section-five .swiper-slide:nth-child(even) {
  margin-top: -24px;
}
@media (max-width: 575.98px) {
  .gallery-section-five .swiper-slide:nth-child(even) {
    margin-top: 0;
  }
}
.gallery-section-five .swiper-slide:nth-child(odd) {
  margin-top: 0;
}
@media (max-width: 575.98px) {
  .gallery-section-five .swiper-slide:nth-child(odd) {
    margin-top: 0;
  }
}
.gallery-section-five .gallery-img {
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}
.gallery-section-five .gallery-img img {
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
}
.gallery-section-five .gallery-img:hover {
  transform: scale(1.05) !important;
  z-index: 11;
}
.gallery-section-five .gallery-img:hover img {
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}

/*============================
    35. Testimonials
============================*/
.gallery-item {
  border-radius: 10px;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-img-item {
  position: relative;
}
.gallery-img-item:hover::before {
  opacity: 1;
}
.gallery-img-item:hover .maxi-icon {
  opacity: 1;
  transform: scale(1);
}
.gallery-img-item::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--dark-linear-gradient);
  opacity: 0;
  transition: all 0.8s;
  width: 100%;
  height: 100%;
}
.gallery-img-item .maxi-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray-900);
  opacity: 0;
  transform: scale(0);
  transition: all 0.8s;
}
.gallery-img-item .maxi-icon:hover {
  background: var(--primary);
  color: var(--white);
}

.testimonial-section {
  background: url("../img/bg/testimonial-bg.png"), #1E1B1B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/bg/banner-bg-01.png");
  height: 187px;
  width: 100%;
  background-size: 100% 100%;
}
.testimonial-section-four {
  overflow: hidden;
  background: var(--light);
  z-index: 1;
}
.testimonial-section-four .blog-bg-01 {
  position: absolute;
  right: 0;
  top: 28%;
  z-index: -1;
  transform: translate(30%, -93%);
  -webkit-transform: translate(30%, -93%);
  -ms-transform: translate(30%, -93%);
  opacity: 0.2;
  animation: spins 30s linear infinite;
}
@media (max-width: 575.98px) {
  .testimonial-section-four .blog-bg-01 {
    display: none;
  }
}
@keyframes spins {
  from {
    transform: translate(30%, -93%) rotate(0deg);
  }
  to {
    transform: translate(30%, -93%) rotate(360deg);
  }
}
.testimonial-section-four .blog-bg-02 {
  position: absolute;
  left: 2%;
  top: 2%;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .testimonial-section-four .blog-bg-02 {
    display: none;
  }
}
.testimonial-section-four .blog-bg-03 {
  position: absolute;
  left: 4%;
  top: 6%;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .testimonial-section-four .blog-bg-03 {
    display: none;
  }
}
.testimonial-section-four .blog-bg-04 {
  position: absolute;
  left: 40%;
  top: 0;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .testimonial-section-four .blog-bg-04 {
    display: none;
  }
}
.testimonial-section-four .blog-bg-05 {
  position: absolute;
  right: 4%;
  top: 0;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .testimonial-section-four .blog-bg-05 {
    display: none;
  }
}
.testimonial-section-six {
  position: relative;
  z-index: 1;
}
.testimonial-section-six .testimonial-bg-01 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  margin: auto;
}
.testimonial-section-six .section-header {
  text-align: center;
}
.testimonial-section-six .slick-slide > div {
  margin: 0 20px;
}
.testimonial-section-seven {
  position: relative;
}
.testimonial-section-seven .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 991.98px) {
  .testimonial-section-seven .section-header {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.testimonial-section-seven .element-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.rating i {
  color: var(--gray-100);
}
.rating i.filled {
  color: var(--warning);
}

.testimonial-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 4px;
}
.testimonial-item .quote-icon {
  margin-bottom: 20px;
}
.testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-item .testimonial-author .author-img {
  width: 48px;
  height: 48px;
  margin-right: 8px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-item .testimonial-author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item .testimonial-author .name {
  font-size: 16px;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 4px;
}
.testimonial-item .testimonial-author .country {
  color: var(--gray-600);
  margin-bottom: 0;
}
.testimonial-item .description {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.testimonial-item .rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.testimonial-item .rating .stars {
  margin-right: 8px;
}
.testimonial-item .rating .stars i {
  color: var(--warning);
}
.testimonial-item .rating .score {
  color: var(--gray-900);
}
.testimonial-item-two {
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}
.testimonial-item-two .testimonial-author {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.testimonial-item-three {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.testimonial-item-three .testimonial-author {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.testimonial-item-three p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-item-three .user-info span {
  font-size: 15px;
}
.testimonial-item-three .card-shape {
  background: var(--light);
}
.testimonial-item-three .card-shape::before {
  background: var(--light);
}
.testimonial-item-three .card-shape .shape-one,
.testimonial-item-three .card-shape .shape-two {
  background: transparent;
  box-shadow: 0.313rem 0.313rem 0 0.313rem var(--light);
}
.testimonial-item-three .card-shape .view-icon {
  background: linear-gradient(0deg, #6B9C4C 0%, #008979 100%);
  color: #fff;
}
.testimonial-item-four {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  gap: 20px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .testimonial-item-four {
    flex-direction: column;
    box-shadow: none;
  }
}
.testimonial-item-four .testimonial-user {
  max-width: 240px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .testimonial-item-four .testimonial-user {
    max-width: 100%;
  }
}
.testimonial-item-four .testimonial-user img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.testimonial-item-four .testimonial-author {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.testimonial-item-four .text-start p {
  text-align: left;
}
.testimonial-item-four .quote-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 26px;
}
.testimonial-item-five {
  padding: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  position: relative;
  transition: all 0.5s;
}
.testimonial-item-five:hover {
  border: 1px solid var(--primary);
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
}
.testimonial-item-five .rating .stars i {
  color: var(--warning);
}
.testimonial-item-five .title {
  font-weight: 700;
  font-size: 24px;
  color: var(--heading-color);
  margin-bottom: 12px;
}
.testimonial-item-five p {
  color: var(--gray-600);
  margin-bottom: 0;
}
.testimonial-item-five .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.testimonial-item-five .testimonial-author {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-item-five .testimonial-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-item-five .testimonial-footer .quote-icon {
  position: static !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  bottom: auto !important;
  right: auto !important;
  line-height: normal !important;
}
.testimonial-item-five .testimonial-footer .quote-icon img {
  position: static !important;
  width: 44px !important;
  height: auto !important;
  object-fit: contain;
  vertical-align: middle;
  filter: hue-rotate(305deg) saturate(1.2);
}
@media (max-width: 575.98px) {
  .testimonial-item-five .testimonial-footer .quote-icon {
    display: none !important;
  }
}
.testimonial-item-six {
  background: var(--white);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  position: relative;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.6s;
  margin: 20px 0;
}
.testimonial-item-six.tilt-left {
  transform: rotate(5deg);
}
.testimonial-item-six.tilt-right {
  transform: rotate(-5deg);
}
.testimonial-item-six:hover {
  background: var(--dark);
}
.testimonial-item-six:hover .name {
  color: var(--white);
}
.testimonial-item-six:hover .name:hover {
  color: var(--primary);
}
.testimonial-item-six:hover .country {
  color: var(--white);
}
.testimonial-item-six:hover .description {
  color: var(--white);
}
.testimonial-item-six:hover .rating .score {
  color: var(--white);
}
.testimonial-item-six .author-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 4px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-item-six .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item-six .name {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.testimonial-item-six .country {
  color: var(--gray-600);
  display: block;
}
.testimonial-item-six .description {
  font-size: 16px;
  color: var(--gray-600);
  margin: 16px 0px;
}
.testimonial-item-six .rating {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-item-six .rating .stars {
  margin-right: 8px;
}
.testimonial-item-six .rating .stars i {
  color: var(--warning);
}
.testimonial-item-six .rating .score {
  color: var(--gray-900);
}

@keyframes sparkleFloat {
  0% {
    transform: scale(1) rotate(0deg) translateY(0);
    opacity: 1;
  }
  25% {
    transform: scale(1.1) rotate(3deg) translateY(-5px);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.05) rotate(-3deg) translateY(0);
    opacity: 1;
  }
  75% {
    transform: scale(1.1) rotate(3deg) translateY(-5px);
    opacity: 0.95;
  }
  100% {
    transform: scale(1) rotate(0deg) translateY(0);
    opacity: 1;
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}
.testimonial-sec {
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .testimonial-sec {
    margin-bottom: 50px;
  }
}

.testimonials-slider {
  padding-bottom: 1px;
}
.testimonials-slider .slick-list {
  margin: 0 -12px;
}
.testimonials-slider .slick-slide {
  margin: 0 12px;
}

.slick-arrow,
.slick-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-color);
  box-shadow: 0px 2px 10px 0px rgba(78, 78, 78, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  font-size: 24px;
  transition: all 0.3s;
  cursor: pointer !important;
}
@media (max-width: 991.98px) {
  .slick-arrow,
  .slick-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.slick-arrow:hover,
.slick-next:hover {
  background: var(--primary);
  color: var(--white);
}

.testimonial-section-five {
  background: var(--light);
  overflow: hidden;
}
.testimonial-section-five:before {
  content: unset;
}
.testimonial-section-five .slick-slide > div {
  margin: 0px 12px;
}
.testimonial-section-five .element-one {
  left: -294px;
  bottom: 90px;
}
.testimonial-section-five .element-two {
  right: 24px;
  bottom: 0%;
  width: 200px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-wrap {
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.testimonial-wrap .testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.testimonial-wrap h3 {
  margin-bottom: 24px;
}
.testimonial-wrap h4 {
  font-size: 56px;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .testimonial-wrap h4 {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .testimonial-wrap h4 {
    font-size: 40px;
  }
}
.testimonial-wrap .stars {
  margin-right: 8px;
}
.testimonial-wrap .stars i {
  color: var(--warning);
}

/*============================
   36.Teams
============================*/
.team-item {
  margin-bottom: 40px;
  transition: 0.6s;
}
.team-item:hover {
  transform: translateY(-10px);
  transition: 0.6s;
}
.team-item:hover .team-item-img img {
  transform: scale(1.1);
  transition: 0.6s;
}
.team-item .team-item-img {
  border-radius: 10px;
}
.team-item .team-item-img img {
  transition: 0.6s;
}
@media (max-width: 767.98px) {
  .team-item {
    text-align: center;
  }
}
.team-item-two {
  text-align: center;
  transition: 0.6s;
}
.team-item-two:hover {
  transform: translateY(-10px);
  transition: 0.6s;
}
.team-item-two:hover .team-item-img img {
  transform: scale(1.1);
  transition: 0.6s;
  width: 100%;
}
.team-item-two .team-img {
  border-radius: 10px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.team-item-two .team-img img {
  transition: 0.6s;
  width: 100%;
}

.team-section-five {
  overflow: hidden;
  background: var(--light-100);
}
.team-section-five .team-item {
  padding: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0px 1px 4px 0px rgba(136, 136, 136, 0.1019607843);
  margin: 0px;
}
.team-section-five .team-item .team-info {
  margin-top: 20px;
}
.team-section-five .team-item .team-link {
  position: absolute;
  right: 40px;
  bottom: 72px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  font-size: 20px;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s;
  border: 4px solid var(--white);
}
.team-section-five .team-item:hover .team-link {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}
.team-section-five .element-one {
  right: -145px;
  top: 0px;
}

.team-item-five:hover .team-overlay .social-icon {
  opacity: 1;
}
.team-item-five .team-overlay {
  position: relative;
}
.team-item-five .team-overlay .social-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  padding: 16px;
  border-radius: 100px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  inset: 0;
  margin: auto;
  align-items: center;
  justify-content: center;
  height: fit-content;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.team-item-five .team-overlay .social-icon .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-900);
  text-decoration: none;
  transition: 0.3s;
  background: var(--white);
}
.team-item-five .team-overlay .social-icon .icon:hover {
  transform: translateY(-3px);
  background: var(--pink);
  color: var(--white);
  opacity: 1 !important;
}

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

/*============================
    38. Pricing
============================*/
.pricing-item {
  margin-bottom: 20px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.12);
}
.pricing-item .pricing-item-one .pricing-item-list {
  border-radius: 10px;
}
.pricing-item .pricing-item-one .pricing-item-list h5 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--gray-100);
}
.pricing-item .pricing-item-one .pricing-item-list .pricing {
  border-bottom: 1px dashed var(--gray-100);
}
.pricing-item .pricing-item-one .pricing-item-list .pricing .price {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .pricing-item .pricing-item-one .pricing-item-list .pricing .price {
    font-size: 28px;
  }
}
.pricing-item .pricing-item-one .pricing-item-list .pricing .badge {
  padding: 7px 8px;
  font-size: 14px;
  font-weight: 500;
}

.statistics-section-five {
  background: #28172A;
  background-size: cover;
}
.statistics-section-five .stat-item {
  text-align: center;
  position: relative;
}
.statistics-section-five .stat-item:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0%;
  height: 5px;
  background: var(--primary-linear-gradient);
  margin: auto;
  right: 0;
  transition: all 0.3s ease-in-out;
}
.statistics-section-five .stat-item h3 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 991.98px) {
  .statistics-section-five .stat-item h3 {
    font-size: 40px;
  }
}
@media (max-width: 767.98px) {
  .statistics-section-five .stat-item h3 {
    font-size: 34px;
  }
}
.statistics-section-five:hover .stat-item:before {
  width: 43%;
}

.stat-section {
  position: relative;
}
.stat-section .element-1 {
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: -1;
}

.stat-item-one {
  border: 1px solid var(--border-color);
  padding: 40px;
  text-align: center;
  background: var(--white);
}
.stat-item-one:hover h3 {
  color: var(--primary);
}
.stat-item-one h3 {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  transition: all 0.8s;
}
.stat-item-one p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 4px;
}
.stat-item-one.two {
  border-left: 0;
}
@media (max-width: 575.98px) {
  .stat-item-one.two {
    border-left: 1px solid var(--border-color);
    border-top: 0;
  }
}
.stat-item-one.three {
  border-left: 0;
}
@media (max-width: 991.98px) {
  .stat-item-one.three {
    border-left: 1px solid var(--border-color);
    border-top: 0;
  }
}
@media (max-width: 575.98px) {
  .stat-item-one.three {
    border-left: 1px solid var(--border-color);
    border-top: 0;
  }
}
.stat-item-one.four {
  border-left: 0;
}
@media (max-width: 991.98px) {
  .stat-item-one.four {
    border-top: 0;
  }
}
@media (max-width: 575.98px) {
  .stat-item-one.four {
    border-left: 1px solid var(--border-color);
    border-top: 0;
  }
}


/* Force transparent background for gallery */
.gallery-section-five, .gallery-section-five .slick-slide, .gallery-section-five .slide-item, .gallery-section-five .gallery-img { background-color: transparent !important; }
.elementor-widget-ds-home4-gallery, .elementor-widget-ds-home4-gallery .elementor-widget-container { background-color: transparent !important; background: transparent !important; }

