/* Fisheries HTML Template */

/* =========================================================
Table of Content
============================================================

01. Vendor
02. Root Variables
03. Keyframes
04. Base Elements
05. Base Sections
06. Base Container
07. Color Styles
08. Font Family Styles
09. Form Styles
10. Navbar Styles
11. Sidebar Styles
12. Newsletter Styles
13. Button Styles
14. Banner Styles
15. Heading Styles
16. Gallery Styles
17. Logo Styles
18. About Styles
19. Card Styles
20. Pricing Styles
21. Activities Styles
22. Choose Us Styles
23. Icon Styles
24. Progress Bar Styles
25. Stat Counter Box Styles
26. Underline Styles
27. Image Container Styles
28. Contact List Styles
29. Video Styles
30. Blog & Post Styles
31. Accordion Styles
32. Maps Styles
33. Animate Styles
34. Caret List Styles
35. Checkbox List Styles
36. Custom Spacing
37. Footer Styles

============================================================ */

/* 01. Vendor */
@import url("vendor/font-family-oswald.css");
@import url("vendor/font-family-poppins.css");
@import url("vendor/bootstrap.min.css");
@import url("vendor/fontawesome.css");
@import url("vendor/brands.css");
@import url("vendor/regular.css");
@import url("vendor/solid.css");
@import url("vendor/odometer-theme-default.css");
@import url("vendor/swiper-bundle.min.css");
@import url("vendor/animate.min.css");

/* 02. Root Variables */
:root {
  --primary: #0d1c2a;
  --secondary: #f4f4f4;
  --text-color: #202020;
  --accent-color-1: #694223;
  --accent-color-2: #fcfcfc;
  --accent-color-3: #f1faff;
  --accent-color-4: #be783e;
  --accent-color-5: #b3b3b3;
  --accent-color-transparent: #ffffff00;
  --accent-color-transparent-2: rgba(0, 0, 0, 0.5);
  --accent-color-star: #ffc80a;
  --accent-overlay: rgba(51, 51, 51, 0.5);
  --font-family-1: "Oswald", sans-serif;
  --font-family-2: "Poppins", sans-serif;
}

/* 03. Keyframes */

@property --progress {
  syntax: "<integer>";
  inherits: true;
  initial-value: 0;
}

@keyframes load {
  to {
    --progress: var(var(--value));
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1);
    transform-origin: center;
    border-width: 0px;
  }

  to {
    opacity: 0;
    transform: scale3d(1.7, 1.7, 1.8);
    transform-origin: center;
    border-width: 13px;
  }
}

/* 04. Base Elements */

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-2);
  color: var(--primary);
}

h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2em;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25em;
}

h3 {
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25em;
}

h4 {
  font-size: 1.35;
  font-weight: 600;
  line-height: 1.175em;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.25em;
}

h6 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.175em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

button,
a {
  font-size: 0.875rem;
  font-family: var(--font-family-1);
  color: var(--primary);
  text-decoration: none;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  font-family: var(--font-family-2);
  margin-bottom: 0;
  color: var(--text-color);
}

ul {
  list-style: none;
}

/* 05. Base Sections */

.section {
  padding: 6em 1em 6em 1em;
  background-size: cover;
  background-position: center;
}

.section-partner {
  padding: 3em 1em 3em 1em;
  background-image: url("../photo-1693802742032-0c0fed0c6626.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-footer {
  padding: 4em 1em 2em 1em;
}

/* 06. Base Container */

.hero-container {
  max-width: 1340px;
  margin-right: auto;
  margin-left: auto;
}

.text-center-container {
  width: 70%;
  align-self: center;
  text-align: center;
}

/* 07. Color Styles */

.bg-accent-color-1 {
  background-color: var(--accent-color-1);
}

.bg-accent-color-2 {
  background-color: var(--accent-color-2);
}

.bg-primary-accent {
  background-color: var(--primary);
}

.bg-accent-color-3 {
  background-color: var(--accent-color-3);
}

.accent-color-1 {
  color: var(--accent-color-1);
}
.accent-color-2 {
  color: var(--accent-color-2);
}

.accent {
  color: var(--secondary);
}

/* 08. Font Family Styles */

.font-family-1 {
  font-family: var(--font-family-1);
}
.font-family-2 {
  font-family: var(--font-family-2);
}

/* 09. Form Styles */

.form input,
.form textarea,
.form select {
  background-color: var(--accent-color-3);
  border: solid 1px #f3f3f3;
  border-radius: 5px;
  color: var(--text-color);
  outline: none;
  font-family: var(--font-family-2);
  line-height: 1.125em;
  padding: 1em 1em;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  box-shadow: none;
  color: var(--text-color);
}

.form input:autofill,
.form input:autofill:focus {
  color: var(--text-color);
  transition: background-color 5000s ease-in-out;
  -webkit-text-fill-color: var(--text-color);
  font-family: var(--font-family-2);
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--accent-color-5);
  font-family: var(--font-family-2);
  font-size: 1rem;
  font-weight: 400;
}

.form label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color-2);
  font-family: var(--font-family-1);
}

.form .form-select {
  color: var(--text-color-2);
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
  background-color: transparent;
  border: 1px solid gray;
}

.form input.form-check-input:checked {
  border: 1px solid blue;
  color: blue;
}

input.error-border,
textarea.error-border {
  border-color: var(--accent-color-1);
}

.error-text {
  color: var(--accent-color-1);
  font-size: 0.875rem;
  margin-bottom: 10px;
}

.form button {
  border-radius: 10px 10px 10px 10px !important;
}

.form .submit_form {
  display: inline-block;
  padding-inline: 2rem;
  padding-block: 0.7rem;
  padding: 1em 1em;
  line-height: 1.125em;
  text-decoration: none;
  border: none;
  transition: all 0.5s;
  background-color: var(--accent-color-1);
  color: white;
  border-radius: 5px;
}

.form .submit_form:hover {
  background-color: var(--primary);
  color: var(--accent-color-1);
}

.alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 1px solid var(--primary);
}

.important-marker {
  color: var(--accent-color-1);
  font-size: 0.875rem;
}

.success {
  background-color: var(--accent-color-2);
  color: var(--primary);
}

.error {
  background-color: var(--accent-color-2);
  color: var(--primary);
}

.check-icon,
.cross-icon {
  font-size: 1.05rem;
  margin-right: 10px;
}

.hidden {
  display: none;
}

/* 10. Navbar Styles */

.navbar {
  position: relative;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  z-index: 3;
  margin-bottom: -9em;
  padding: 1.5em 1em 1.5em 1em;
  width: 100%;
}

.nav-btn {
  display: none;
  padding: 10px 20px;
  background-color: var(--accent-color-1);
  color: var(--accent-color-2);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 8px 8px 8px 8px;
}

.nav-btn:hover,
.nav-btn:focus {
  background-color: var(--accent-color-2);
  color: var(--accent-color-1);
}

.navbar-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 20px 20px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-nav .nav-link:focus {
  color: var(--primary);
}

.nav-link {
  font-size: 1.125rem;
  font-family: var(--font-family-1);
  font-weight: 500;
  color: var(--accent-color-2);
  line-height: 1em;
  padding: 16px 25px 16px 25px !important;
}

.nav-link:hover,
.nav-link.active,
.nav-link.show {
  color: var(--accent-color-1) !important;
}

.nav-link-wrapper {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--accent-color-2);
  border-radius: 30px 30px 30px 30px;
  width: 63%;
  height: 60px;
  justify-content: center;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  padding: 1em 0em;
  min-width: 220px;
  border-radius: 15px 15px 15px 15px;
}

.dropdown-item {
  padding-block: 0.75rem;
  color: var(--primary);
  font-family: var(--font-family-1);
  font-size: 1.05rem;
  font-weight: 600;
  padding-inline: 0.75rem;
}

.dropdown-item.active {
  color: var(--primary);
  background-color: transparent;
}

.dropdown-item:hover {
  background-color: var(--accent-color-1);
  color: white;
}

.dropdown-item:focus {
  color: var(--accent-color-1);
}

.dropdown-toggle::after {
  display: none !important;
}

/* 11. Sidebar Styles */

.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100%;
  background: var(--accent-color-2);
  color: var(--primary);
  transition: transform 0.4s ease-in-out;
  z-index: 5;
  overflow-y: auto;
  max-height: 100vh;
  padding: 0px 16px 0px 5px;
}

.sidebar.active {
  transform: translateX(350px);
}

.overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--accent-overlay);
  transition: left 0.4s ease-in-out;
  z-index: 4;
}

.overlay.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 20px 20px 20px;
}

.sidebar-header .logo {
  width: 100%;
}

.close-btn {
  display: inline-block;
  justify-content: center;
  background-color: var(--accent-color-1);
  border: none;
  border-radius: 8px 8px 8px 8px;
  color: var(--accent-color-2);
  position: relative;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 8px 18px;
}

.menu {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.menu li {
  margin-bottom: 10px;
}

.menu a {
  color: var(--primary);
  text-decoration: none;
  padding: 10px 10px 10px 10px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: capitalize;
}

.menu a:hover,
.menu a.active,
.menu a.focus {
  color: var(--accent-color-1);
  background-color: var(--accent-color-2);
}

.sidebar-dropdown .dropdown-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.sidebar-dropdown-btn {
  background: none;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  padding: 0px 18px;
  border-radius: 24px;
  transition: transform 0.3s ease;
}
.sidebar-dropdown-btn:hover {
  color: var(--accent-color-1);
  border: 1px solid var(--accent-color-1);
}

.sidebar-dropdown-menu {
  list-style: none;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-in-out,
    padding 0.3s ease-in-out;
  padding-top: 0;
  padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
  max-height: 500px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.below-dropdown {
  transition: margin-top 0.1s ease-in-out;
  margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 5px;
}

/* 12. Newsletter Styles */

#newsletterForm {
  display: flex;
  gap: 20px;
  width: 100%;
}

#newsletterForm input {
  flex: 1;
  padding: 1em 1em 1em 1em;
  background-color: var(--accent-color-2);
  color: var(--accent-color-1);
  border-radius: 10px 10px 10px 10px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.125em;
  width: 100%;
  height: 100%;
  border: none;
}

#newsletterForm input::placeholder {
  color: #ccc;
}

#newsletterForm .error-text {
  color: var(--accent-color-1);
  font-size: 0.875rem;
  margin-top: 4px;
}

#newsletterForm .hidden {
  display: none;
}

#newsletterForm button {
  padding: 20.5px 40px 20.5px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s;
}

/* 13. Button Styles */

.btn {
  display: inline-block;
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  padding: 15px 30px;
  border-radius: 30px !important;
  transition: all 0.15s ease-in-out;
  font-family: var(--font-family-1);
}

.btn-accent-1 {
  background-color: var(--accent-color-1);
  color: var(--accent-color-2);
  border: 2px solid var(--accent-color-1);
  transition: all 0.5s;
}

.btn-accent-2 {
  background-color: var(--primary);
  color: var(--accent-color-1);
  transition: all 0.5s;
}

.btn-outline-accent-1 {
  background-color: transparent;
  color: var(--accent-color-1);
  border: 2px solid var(--accent-color-1);
  transition: all 0.6s;
}

.btn-outline-accent-1:hover {
  background-color: var(--accent-color-transparent);
  background-image: url("../images/Ellipse-blue.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px 30px 30px 30px;
  color: var(--accent-color-2);
}

.btn-blue-accent {
  background-color: var(--accent-color-1);
  color: white;
  transition: all 0.5s;
}

.btn-accent-1:hover {
  background-color: var(--primary);
  color: var(--accent-color-2);
}

.btn-accent-2:hover {
  background-color: var(--accent-color-2);
  color: var(--primary);
}

.btn-blue-accent:hover {
  background-color: var(--accent-color-2);
  color: var(--accent-color-1);
}

/* 14 Banner Styles */

.banner-home {
  background-image: url("../10-Days-Tanzania-Wildlife-Safarisadf.jpg");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  padding: 18em 1em 8em 1em;
  z-index: 1;
}

.banner-home::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-inner {
  background-image: url("../10-Days-Tanzania-Wildlife-Safarisadf.jpg");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12em 1em 10em 1em;
}

.banner-inner::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner-404 {
  background-image: url("../images/sea-beach-for-travel-background-thailand-nature-2023-11-27-05-21-56-utc.jpg");
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20em 1em 18em 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px 20px;
  overflow: hidden;
  z-index: 1;
}

.banner-404::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.spot-banner {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  border-radius: 15px 15px 15px 15px;
  padding: 2em 2em 2em 2em;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.spot-banner.green-lake {
  background-image: url("../images/sea-with-boats-near-the-dock-and-green-trees-in-th-2023-11-27-05-26-25-utc.jpg");
}
.spot-banner.victoria-island {
  background-image: url("../images/uninhabited-island-2024-10-11-05-23-06-utc.jpg");
}
.spot-banner.golden-river {
  background-image: url("../images/landscape-with-trees-stones-blue-sky-with-puffy-2023-11-27-05-00-31-utc.jpg");
}
.spot-banner.floral-lake {
  background-image: url("../images/breathtaking-view-of-a-blue-sky-reflected-in-the-w-2023-11-27-05-12-23-utc.jpg");
}

.spot-banner::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(
    180deg,
    var(--accent-color-transparent) 50%,
    var(--primary) 80%
  );
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.spot-banner .spacer {
  height: 250px;
}

.spot-banner .spot-content {
  position: relative;
  z-index: 2;
  text-align: end;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  width: 100%;
  transform: translateY(100px);
  transition: transform 0.4s ease;
}

.spot-banner .spot-content:hover {
  transform: translateY(0px);
}

.spot-banner .spot-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100px;
  width: 100%;
  height: 100px;
  background: transparent;
}

.space-header {
  display: block;
  height: 150px;
}

.banner-wrapper {
  margin-top: 10em;
  position: relative;
  z-index: 2;
}

.joinus-banner {
  background-image: url("../photo-1538209647246-bb82d2e4b372.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 8em 1em 8em 1em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.joinus-banner::before {
  content: "";
  position: absolute;
  background-color: var(--accent-color-transparent);
  background-image: linear-gradient(
    260deg,
    var(--accent-color-transparent) 20%,
    var(--primary) 70%
  );
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 0;
}

.joinus-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  max-width: 55%;
  text-align: start;
  align-items: start;
  position: relative;
  z-index: 2;
}

.joinus-banner-small {
  background-image: url("../images/young-fisherman-standing-on-the-shore-of-lake-with-2023-11-27-04-51-31-utc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 15px 15px 15px 15px;
  padding: 1.5em 1.5em 1.5em 1.5em;
}

.joinus-banner-small::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 0;
}

.joinus-banner-small-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px 20px;
  position: relative;
  z-index: 2;
}

/* 15. Heading Styles */

.sub-heading {
  padding: 0.5em 1em 0.5em 1em;
  border-radius: 30px 30px 30px 30px;
  border-left: 3px solid var(--accent-color-1);
  background-color: var(--accent-color-2);
  align-self: flex-start;
}

.sub-heading.second {
  background-color: var(--accent-color-4);
}

.heading-split {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  position: relative;
  z-index: 2;
  padding-right: 50%;
}

.heading-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px 20px;
  position: relative;
  z-index: 2;
}

/* 16. Gallery Styles */

.gallery-image {
  width: 319.25px;
  height: auto;
}

.gallery-card-left {
  padding: 1em 0em 1em 0em;
  border-left: 3px solid var(--accent-color-1);
  border-radius: 5px 5px 5px 5px;
  position: relative;
  overflow: hidden;
}

.gallery-card-right {
  padding: 1em 0em 1em 0em;
  border-right: 3px solid var(--accent-color-1);
  border-radius: 5px 5px 5px 5px;
  position: relative;
  overflow: hidden;
}

/* 16. Logo Styles */

.logo-container {
  max-width: 15%;
}

.partner-logo {
  max-width: 180px;
}

/* 18. About Styles */

.about-achievement {
  position: relative;
  background-image: url("../images/Veritas-4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px 20px;
  width: 100%;
  height: 100%;
  padding: 2em 2em 2em 2em;
  border-radius: 15px 15px 15px 15px;
}

.about-dashboard {
  width: 20%;
}

.about-img {
  width: 40%;
}

.about-title {
  width: 40%;
}

.about-quote-container {
  background-image: url("../images/fishing-its-cheaper-than-therapy-shot-of-two-you-2023-11-27-05-00-47-utc.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 15px 15px;
  padding: 1em 1em 1em 1em;
  z-index: 1;
}

.about-quote-container .spacer {
  height: 200px;
}

.about-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1em 1em 1em 1em;
  width: 65%;
  height: auto;
  justify-content: end;
  align-self: end;
  z-index: 1;
}

.about-quote::before {
  content: "";
  background-color: var(--accent-color-2);
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 15px 15px 15px 15px;
}

.about-quote p {
  line-height: 1.125em;
  font-style: italic;
  font-weight: 400;
}

.about-quote .icon-circle {
  align-self: end;
  margin-top: -1.5em;
}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  position: relative;
  z-index: 2;
}

/* 19. Card Styles */

.card {
  border: none;
  border-radius: 15px 15px 15px 15px;
  box-shadow: none;
}

.card-activities {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.card-activities::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease;
}

.card-activities.fishing-tournament {
  background-image: url("../photo-1695787841479-614715857c28.jpg");
}
.card-activities.free-fishing {
  background-image: url("../premium_photo-1664302606724-209e740d400a.jpg");
}
.card-activities.coaching-clinic {
  background-image: url("../premium_photo-1664304370557-233bccc0ac85.jpg");
}
.card-activities.fishing-trips {
  background-image: url("../photo-1631100610461-625b78f8a94a.jpg");
}
.card-activities.community-events {
  background-image: url("../photo-1507087549419-3ec469e82d13.jpg");
}

.card-activities .card-header {
  padding: 2em 0em 0em 2em;
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.card-activities .card-body {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 2em 2em 2em 2em;
  position: relative;
  z-index: 2;
  transform: translateY(55px);
  transition: all 0.4s ease;
}

.card-activities:hover {
  background-position: right;
}
.card-activities:hover::before {
  opacity: 0.6;
}

.card-activities .card-body:hover {
  transform: translateY(0px);
}

.card-chooseus {
  padding: 1.5em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: row;
  gap: 2em;
  align-items: flex-start;
  background-color: var(--accent-color-3);
  transition: all 0.4s;
  color: var(--primary);
}

.card-chooseus i {
  font-size: 30px;
  color: var(--accent-color-1);
}
.card-chooseus:hover {
  gap: 20px 20px;
  background-color: var(--primary);
  color: var(--accent-color-2);
}
.card-chooseus:hover p {
  color: var(--accent-color-2);
}

.card-form {
  padding: 2.5em 2.5em 2.5em 2.5em;
  background-image: url("../photo-1693802742032-0c0fed0c6626.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.card-pricing {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 3em 2em 3em 2em;
  background-color: var(--accent-color-2);
  box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.card-pricing.basic-membership {
  background-image: url("../photo-1693802742032-0c0fed0c6626.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.card-blog {
  background-color: var(--primary);
  padding: 1.5em 1.5em 2em 1.5em;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 20px 20px;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}

.card-blog:hover .blog-link {
  color: var(--accent-color-1);
  transition: all 0.4s;
}

.card-blog .image-container img {
  transform: scale(1) rotate(0deg);
  opacity: 1;
  transition: all 0.3s;
}

.card-blog:hover .image-container img {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.card-recent-post {
  padding: 1.5em 1.5em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  background-color: var(--accent-color-3);
}

.card-testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  border: none;
  padding: 2em;
  background-color: var(--accent-color-4);
  width: 100%;
  height: 100%;
}

.card-testimonial .quote-icon {
  font-size: 50px;
  color: var(--accent-color-1);
  text-align: end;
}

.card-testimonial .stars {
  display: flex;
  flex-direction: row;
  font-size: 18px;
  color: var(--accent-color-star);
}

.card-testimonial .quote {
  font-style: italic;
  color: var(--accent-color-2);
  font-size: 1.05rem;
}

.card-team {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.card-team .spacer {
  height: 180px;
}

.card-team-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0em;
  padding: 2em 0em 0em 2em;
}

.card-team-content {
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  padding: 2em 2em 2em 2em;
}

.card-team.founder {
  background-image: url("../images/norway-lofoten-moskenesoy-young-man-holding-fre-2024-09-22-08-28-23-utc.jpg");
}

.card-team.fishing-guide {
  background-image: url("../images/man-holding-fresh-caught-mahi-mahi-on-ocean-boat-2023-11-27-04-49-24-utc.jpg");
}
.card-team.member-coordinator {
  background-image: url("../images/woman-fishing-on-fishing-rod-spinning-in-norway-2023-11-27-05-30-53-utc.jpg");
}
.card-team.community-manager {
  background-image: url("../images/happy-fisherman-holds-up-a-walleye-on-a-northern-m-2023-11-27-05-27-24-utc.jpg");
}
.card-team.public-relations {
  background-image: url("../images/a-fisherman-in-a-boat-shows-the-fish-he-has-caught-2024-09-12-08-12-41-utc.jpg");
}
.card-team.professional-coach {
  background-image: url("../images/smiling-fisherman-sitting-in-a-canoe-on-a-minnesot-2023-11-27-05-01-08-utc.jpg");
}

.card-team::before {
  content: "";
  position: absolute;
  background-color: var(--accent-color-transparent);
  background-image: linear-gradient(
    180deg,
    var(--accent-color-transparent) 50%,
    var(--primary) 70%
  );
  opacity: 0.7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.card-footer-link {
  display: flex;
  flex-direction: column;
  padding: 2em 2em 2em 2em;
  background-color: var(--accent-color-4);
}

.card-copyright {
  background-color: var(--accent-color-4);
  padding: 2em 2em 2em 2em;
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  justify-content: space-between;
}

/* 20 Pricing Styles */

.pricing-currency {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.125em;
}

.price {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.125em;
}

.price-detail {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.125em;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-self: flex-end;
  height: 100%;
}

/* 21. Activities Styles */

.activities-cta-banner {
  background-image: url("../photo-1693802742032-0c0fed0c6626.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2em 2em 2em 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.activities-cta-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
  color: var(--accent-color-2);
  font-family: var(--font-family-1);
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  transition: all 0.3s;
}

.activities-cta-link i {
  transition: all 0.3s;
  color: var(--accent-color-2);
}

.activities-cta-link:hover,
.activities-cta-link:hover i {
  color: var(--accent-color-1);
}

/* 22. Chooseus Styles */

.whychooseus-title-wrapper {
  width: 67%;
}

.whychooseus-title {
  width: 55%;
  padding-right: 1em;
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  text-align: start;
}
.whychooseus-image {
  width: 45%;
  background-image: url("../photo-1641490238392-d55141125ac5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px 15px 15px 15px;
  overflow: hidden;
  position: relative;
}

.whychooseus-image .spacer {
  height: 100px;
}
.whychooseus-card-container {
  width: 33%;
  padding-left: 1em;
}

/* 23. Icon Styles */

.icon-circle {
  background-color: var(--accent-color-1);
  color: var(--accent-color-2);
  font-size: 35px;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-box {
  background-color: var(--accent-color-1);
  color: var(--accent-color-2);
  width: 2em;
  height: 2em;
  font-size: 30px;
  border-radius: 15px 15px 15px 15px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-item {
  aspect-ratio: 1/1;
  font-size: 1rem;
  height: 30px;
  width: 30px;
  line-height: 28px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color-2);
  border-radius: 10%;
  background-color: var(--accent-color-1);
  text-decoration: none;
}

.social-item:hover {
  background-color: var(--accent-color-2);
  color: var(--accent-color-1);
}

.social-item.alt-hover:hover {
  background-color: var(--primary);
  color: var(--accent-color-1);
}

.social-item.team-icon {
  background-color: var(--accent-color-2);
  color: var(--accent-color-1);
}
.social-item.team-icon:hover {
  background-color: var(--primary);
  color: var(--accent-color-2);
}

.social-container {
  display: flex;
  flex-direction: row;
  gap: 0px 10px;
  transition: all 0.3s;
}

.social-container-team {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  padding: 0.5em 1em 0.5em 1em;
  border-radius: 30px 30px 30px 30px;
  background-color: var(--accent-color-1);
}

/* 24. Progress Bar Styles */

.progress-container {
  position: relative;
  width: 100%;
  margin: 1em 0;
}

.progress-title {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--primary);
}
.progress-bar-container {
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--accent-color-5);
  border-radius: 5px 5px 5px 5px;
  overflow: visible;
}

.progress-bar {
  height: 100%;
  background: var(--accent-color-1);
  width: 0;
  transition: width 0.2s;
  border-radius: 5px 5px 5px 5px;
  position: absolute;
  left: 0;
  top: 0;
}

.progress-message {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: left 0.2s;
}
.progress-message i {
  font-size: 36px;
  color: var(--accent-color);
  position: relative;
}

.progress-message span {
  position: absolute;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-color-3);
}

/* 25. Stat Counter Box Styles */

.about-stat-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px 20px;
  border-bottom: 1px solid var(--accent-color-2);
  padding-bottom: 1em;
}

.about-stat-box.last {
  border-bottom: 0px;
}

.about-stat-box .about-stat {
  font-size: 4rem;
  font-family: var(--font-family-1);
  font-weight: 700;
  line-height: 1.125em;
  color: var(--accent-color-2);
}

.about-stat-box .stat-details {
  font-size: 1.55rem;
  font-weight: 700;
  font-family: var(--font-family-1);
  color: var(--accent-color-2);
}

.about-stat-box .stat-title {
  font-size: 1.05rem;
  font-weight: 400;
  font-family: var(--font-family-1);
  line-height: 1.125em;
  margin-bottom: 5px;
  color: var(--accent-color-2);
}

/* 26. Underline Styles */

.underline-1 {
  border-bottom: 1px solid var(--accent-color-1);
  width: 100%;
}

.underline-1.thick-border {
  border-bottom: 2px solid var(--accent-color-1);
}

.underline-2 {
  border-bottom: 1px solid var(--accent-color-2);
  width: 50%;
}

/* 27. Image Container Styles */

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 15px 15px;
}

.image-container img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.image-container.small {
  height: 260px;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.4s ease;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
}

.image-wrapper:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.image-wrapper:hover {
  transform: rotate(4deg);
}

/* 28. Contact List Styles*/

.contact-detail-list {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
}

.contact-detail-list p {
  transition: color 0.3s ease;
}

.contact-detail-list:hover p {
  color: var(--accent-color-1);
}

/* 29. Video Styles */

.video-container-bg {
  position: relative;
  background-image: url("../images/young-fisherman-standing-on-the-shore-of-lake-with-2023-11-27-04-51-31-utc.jpg");
  border-radius: 15px 15px 15px 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: end;
  padding: 2em 2em 2em 2em;
  cursor: url("../images/logo-32.png");
}

.video-container-bg::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.video-container-bg .spacer {
  height: 200px;
}

.video-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.request-loader {
  position: relative;
  height: 70px;
  border-radius: 50% !important;
  border: solid 1px var(--accent-color-2);
  background-color: var(--accent-color-2);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color-1);
  font-size: 1.563rem;
  aspect-ratio: 1/1;
  transition: all 0.3s ease-in-out;
}

.request-loader:hover {
  border: solid 2px var(--accent-color-1);
  color: var(--accent-color-2);
  background-color: var(--accent-color-1);
}

.request-loader::after,
.request-loader::before {
  opacity: 0.2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  color: var(--accent-color-2);
  border: 4px solid var(--accent-color-2);
  border-radius: 50%;
  animation-name: ripple;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: 0;
}

.request-loader::after {
  animation-delay: 0.5s;
  animation-duration: 3s;
}

.request-loader::before {
  animation-delay: 0.2s;
  animation-duration: 3s;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color-transparent-2);
  z-index: 1050;
  justify-content: center;
  align-items: center;
}

.my-modal {
  background-color: var(--accent-color-2);
  padding: 0;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.my-modal iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 80vh;
  border: 0;
}

.my-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.125rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-color-2);
}

/* 30. Blog & Post Styles */

.post-details {
  display: flex;
  flex-direction: row;
  gap: 20px 20px;
  justify-content: center;
}

.recent-post-link {
  font-size: 1.05rem;
  color: var(--primary);
  transition: all 0.3s;
}
.recent-post-link:hover {
  font-size: 1.05rem;
  color: var(--accent-color-1);
  transition: all 0.3s;
}

.meta-data {
  color: #c0c0c0;
}

.blog-link {
  font-size: 1.25rem;
  color: var(--accent-color-2);
  font-weight: 400;
  line-height: 1.125em;
  margin: 1em 0em 0.75em 0em;
}

.blog-icon {
  color: #c0c0c0;
}

.post-img {
  background-image: url("../images/adult-friends-preparing-crab-trap-on-fishing-boat-2024-06-13-20-48-55-utc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px 15px 15px 15px;
  width: 100%;
  height: 100%;
}

.post-img .spacer {
  height: 100px;
}

/* 31. Accordion Styles */

.accordion .accordion-item {
  background-color: transparent;
  border: none;
  color: var(--primary);
  outline: none;
  border-radius: 4px;
}

.accordion .accordion-item .accordion-body {
  color: var(--text-color);
  font-family: var(--font-family-2);
  text-align: start;
  padding: 1.75em 2.5em 1.5em 2.5em;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button {
  background-color: var(--accent-color-3);
  border: none;
  outline: none;
  border-radius: 10px 10px 10px 10px !important;
  font-size: 1.05rem;
  font-family: var(--font-family-1);
  font-weight: 500;
  line-height: 1.25em;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 18px 18px 18px 18px;
  color: var(--primary);
}

.accordion-button::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.accordion .accordion-button:not(.collapsed) {
  background-color: var(--accent-color-1);
  border: none;
  box-shadow: none;
  color: var(--accent-color-2);
  fill: var(--accent-color-2);
  outline: none;
}

/* 32. Maps Styles */

.maps {
  width: 100%;
  height: 400px;
  filter: brightness(80%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
  border-radius: 15px 15px 15px 15px;
  transition: all 0.8s;
}

.maps:hover {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
}

/* 33. Animate Styles */

.animate-box {
  opacity: 0;
}

/* 34. Caret List */

.caret-list {
  list-style: none;
  padding: 0;
}

.caret-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--primary);
}

.caret-list a {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 400;
  transition: all 0.2s;
}

.caret-list a:hover {
  color: var(--accent-color-1);
}

.caret-list li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  left: 0;
  color: var(--accent-color-1);
  font-size: 1.05rem;
}

/* 35. Checkbox List */

.checkbox-list {
  list-style: none;
  padding: 0;
}

.checkbox-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--primary);
}

.checkbox-list.white-text li {
  color: var(--accent-color-2);
}

.checkbox-list a {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 400;
  transition: all 0.2s;
}

.checkbox-list a:hover {
  color: var(--accent-color-1);
}

.checkbox-list li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  left: 0;
  color: var(--accent-color-1);
  font-size: 1.05rem;
}

/* 36. Custom Spacing */

/* Flex spacing (gap) */

.gspace-0 {
  gap: 0px 0px;
}
.gspace-1 {
  gap: 10px 10px;
}
.gspace-2 {
  gap: 20px 20px;
}
.gspace-3 {
  gap: 30px 30px;
}
.gspace-4 {
  gap: 40px 40px;
}
.gspace-5 {
  gap: 50px 50px;
}
.gspace-x-0 {
  column-gap: 0px;
}
.gspace-x-1 {
  column-gap: 10px;
}
.gspace-x-2 {
  column-gap: 20px;
}
.gspace-x-3 {
  column-gap: 30px;
}
.gspace-x-4 {
  column-gap: 40px;
}
.gspace-x-5 {
  column-gap: 50px;
}

.gspace-y-0 {
  row-gap: 0px;
}
.gspace-y-1 {
  row-gap: 10px;
}
.gspace-y-2 {
  row-gap: 20px;
}
.gspace-y-3 {
  row-gap: 30px;
}
.gspace-y-4 {
  row-gap: 40px;
}
.gspace-y-5 {
  row-gap: 50px;
}

/* Grid spacing (row-gap & column-gap) */

.grid-spacer-0 {
  --bs-gutter-x: 00px;
  --bs-gutter-y: 00px;
}

.grid-spacer-1 {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.grid-spacer-2 {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.grid-spacer-3 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.grid-spacer-4 {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

.grid-spacer-5 {
  --bs-gutter-x: 50px;
  --bs-gutter-y: 50px;
}

/* Grid spacing (column-gap) */

.grid-spacer-x-0 {
  --bs-gutter-x: 0px;
}
.grid-spacer-x-1 {
  --bs-gutter-x: 10px;
}
.grid-spacer-x-2 {
  --bs-gutter-x: 20px;
}
.grid-spacer-x-3 {
  --bs-gutter-x: 30px;
}
.grid-spacer-x-4 {
  --bs-gutter-x: 40px;
}
.grid-spacer-x-5 {
  --bs-gutter-x: 50px;
}

/* Grid spacing (row-gap) */

.grid-spacer-y-0 {
  --bs-gutter-y: 0px;
}
.grid-spacer-y-2 {
  --bs-gutter-y: 20px;
}
.grid-spacer-y-3 {
  --bs-gutter-y: 30px;
}
.grid-spacer-y-4 {
  --bs-gutter-y: 40px;
}
.grid-spacer-y-5 {
  --bs-gutter-y: 50px;
}

/* 37. Footer Styles */

.legal-link {
  font-size: 1.05rem;
  font-family: var(--font-family-2);
  color: var(--accent-color-2);
  transition: all 0.2s;
}

.legal-divider {
  color: var(--accent-color-2);
}

.legal-link:hover {
  color: var(--accent-color-1);
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  text-align: start;
  border-right: 1px solid var(--accent-color-2);
  padding-right: 1em;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25em;
  margin-bottom: 0.5em;
  color: var(--accent-color-2);
}

.footer-list a {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--accent-color-2);
  transition: all 0.2s;
  font-family: var(--font-family-2);
}

.footer-list a:hover {
  color: var(--accent-color-1);
}
.footer-list p,
.footer-list i {
  font-size: 1.05rem;
  color: var(--accent-color-2);
  transition: all 0.2s;
}

.footer-list li:hover p,
.footer-list li:hover i {
  color: var(--accent-color-1);
}

.footer-list.icon li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 24px;
  gap: 1.25em;
  margin-bottom: 0.5em;
  color: var(--accent-color-2);
}

.footer-list.icon li::before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  position: absolute;
  left: 0;
  color: var(--accent-color-2);
  font-size: 1.05rem;
}

.footer-list.icon li:hover p,
.footer-list.icon li:hover a,
.footer-list.icon li:hover::before {
  color: var(--accent-color-1);
}
