:root {
  --dark-color: #062523;
  --green-color: #8cc73d;
  --white-color: #ffffff;
  --gray-color: #cccccc;
  --blue-color: #0094da;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-SemiBold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MyriadPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Branding SF";
  src: url("../fonts/branding-sf-cmp-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

div#app {
  background-color: #ffffff;
}

.mt-15 {
  margin-top: 15rem;
}

.pt-15 {
  padding-top: 15rem;
}

.pb-15 {
  padding-bottom: 15rem;
}

body {
  font-family: "Myriad Pro", sans-serif;
}

a,
a:hover,
a:active,
.btn-link {
  text-decoration: none !important;
}

.contact-bar {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 10px 0;
}

.contact-bar .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.contact-bar .contact-info svg {
  fill: var(--white-color);
}

.contact-bar .contact-link {
  font-size: clamp(0.8rem, 2.5vw, 1.08rem);
  font-weight: 300;
  color: var(--white-color);
  text-decoration: none;
}

.contact-bar .separator {
  width: 1px;
  height: 20px;
  background-color: var(--white-color);
}

.header-section {
  background-color: var(--green-color);
  padding: 20px 0;
}

#navbarMenu {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999999999;
  top: 0;
  display: grid;
  background-color: var(--dark-color);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#navbarMenu.show {
  visibility: visible;
  opacity: 1;
}

#navbarMenu.collapse li,
#navbarMenu.collapse li a {
  color: var(--white-color);
  font-size: 3rem;
  text-align: center;
}

.navbar-nav {
  padding-top: 6rem;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.75em 0.75em;
  color: #000;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  background-color: transparent;
  top: 5px !important;
  right: 5px !important;
  margin: 20px;
  color: #fff;
  opacity: 1;
}

.home-icon,
.search-icon,
.social-icon {
  width: 63px;
  height: auto;
}

.logo-img {
  width: 250px;
  height: auto;
  max-width: 100%;
}

form {
  justify-content: flex-end;
}

.form-control .form-control {
  border-radius: 50px;
}

.social-icons .social-icon {
  margin-left: 10px;
}

.search-icon {
  width: 33px;
  height: auto;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280, 0, 0, 1%29' stroke-width='4' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 4.2em;
  height: 4.2em;
}

.search-field {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin-right: 0px !important;
  border: 0px;
  padding: 13px 20px 13px 30px;
  width: 100%;
  max-width: 250px;
}

.search-form .btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: var(--dark-color);
  border: 0px;
  height: 50px;
  width: 70px;
}

.middle-menu-section {
  background-color: var(--dark-color);
}

.menu-text {
  font-family: "Myriad Pro", sans-serif;
  font-weight: bold;
  font-size: 34px;
  color: var(--white-color);
  margin-top: -15px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 68px;
  margin-top: -15px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-color);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 52px;
  width: 52px;
  left: 8px;
  bottom: 8px;
  background-color: var(--white-color);
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--green-color);
}

input:checked + .slider:before {
  transform: translateX(55px);
}

.menu-icon {
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
}

.news-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section .image-container {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.button-group .btn,
.news-btn,
.signup-section .btn {
  color: var(--white-color);
  background-color: var(--green-color);
  font-size: clamp(1rem, 3vw, 1.5rem);
  padding: 10px 50px;
  border-radius: 25px;
  border: 0px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
}

.button-group .btn {
  /*width: 281px;*/
}

.signup-section form .btn {
  border: 0px;
  box-shadow: none;
  border-radius: 0px !important;
}

.signup-section form input[type~="text"],
.signup-section form input[type~="email"],
.signup-section form input[type~="phone"],
.signup-section form textarea {
  border-radius: 0px !important;
  border-color: #c9cdd3 !important;
}

.white-section {
  background-color: var(--white-color);
  padding: 50px 0;
}

.adventure-section,
.news-section {
  position: relative;
}

.special-header {
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  font-size: clamp(4rem, 8vw, 7.625rem);
  /*text-shadow: -4px 4px 4px var(--white-color), 4px 4px 4px var(--white-color), 4px -4px 4px var(--white-color), -4px -4px 4px var(--white-color),-4px 4px 4px var(--white-color), 4px 4px 4px var(--white-color), 4px -4px 4px var(--white-color), -4px -4px 4px var(--white-color);*/
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 6px;
  text-stroke-color: #fff;
  text-stroke-width: 6px;
  paint-order: stroke fill;
  text-transform: uppercase;
}

.adventure-section {
  z-index: 99;
}

.full-width-image-section .adventure-header {
  color: var(--dark-color);
  margin-bottom: 0;
  position: relative;
  z-index: 99999;
  margin-top: -155px;
  overflow: unset;
}

.full-width-image-section .news-header {
  margin-bottom: 0;
  position: relative;
  z-index: 99999;
  margin-top: -155px;
  overflow: unset;
}

.full-width-image-section .adventure-subtext {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 2.25rem);
  color: var(--dark-color);
  margin-top: 15px;
}

.full-width-image-section .trails-header {
  color: var(--dark-color);
  margin-bottom: 0;
  position: relative;
  z-index: 99;
  margin-top: 25px;
  overflow: unset;
  line-height: 1em;
}

.adventure-section .adventure-image {
  margin-top: 40px;
  max-width: 100%;
  height: auto;
}

.news-section {
  background-color: var(--green-color);
}

.news-header {
  color: var(--green-color);
}

.news-subtext {
  color: var(--dark-color);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300; /* Light */
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: -1px;
}

.news-title {
  color: var(--dark-color);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.news-desc {
  color: var(--dark-color);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 100;
  font-size: clamp(1.2rem, 4vw, 2rem);
}

.news-date {
  color: var(--light-dark-color);
  font-family: "Myriad Pro", sans-serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2rem); /* 32px converted to rem */
  color: #babdbd;
}

.news-section .row {
  margin-left: 0;
  margin-right: 0;
}

.news-section .col-md-6 {
  padding-left: 0;
  padding-right: 0;
}

.news-section .img-fluid {
  width: 100%;
  object-fit: cover;
}

.news-section .bg-white {
  padding: 0;
}

.signup-section {
  background-color: transparent;
  z-index: 1000;
  position: relative;
}

.signup-image-column {
  background-image: url("../img/WicklowTrails.png");
  background-size: cover;
  background-position: center;
}

.signup-header {
  font-size: clamp(3rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  color: var(--white-color);
}

.signup-text {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  color: var(--white-color);
  line-height: 1.2em;
}

.signup-form-header {
  font-size: clamp(3rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--green-color);
  padding: 10px;
}

.signup-section form .form-control {
  border-radius: 8px;
  padding: 10px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  color: #6d6e71; /* Placeholder color */
}

.signup-section form .form-control::placeholder {
  color: #6d6e71; /* Placeholder color */
}

.signup-section form .btn {
  border-radius: 8px;
  padding: 10px 0;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
}

.footer-section {
  background-color: var(--dark-color);
}

.footer-section,
.news-section {
  margin-top: -5px;
}

.footer-title {
  color: var(--green-color);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.06rem);
}

.support-text {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 100;
  font-size: clamp(1.5rem, 3.5vw, 2rem); /* 32px converted to rem */
  color: var(--white-color);
}

.footer-link {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300; /* Light */
  font-size: clamp(1.2rem, 3.2vw, 1.56rem);
  color: var(--white-color);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.contact-link {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300; /* Light */
  font-size: clamp(1.2rem, 3.2vw, 1.56rem);
  color: var(--white-color);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: var(--white-color);
}

.social-icons {
  justify-content: end;
}

.social-icons img {
  width: 50px;
  height: auto;
}

footer .social-icons img {
  width: 30px;
  height: auto;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  padding-top: 0rem;
}

.text-align-right {
  text-align: right;
}

.footer-section ul li,
.footer-section ul li a {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.5625rem, 2rem);
  line-height: 3rem;
}

.full-width-image-section {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
}

.full-width-image-section.trail-info,
.full-width-image-section.adventure,
.full-width-image-section.news,
.full-width-image-section.footer {
  position: relative;
  z-index: 1000;
  background-position: center -3px;
  overflow: visible;
  background-repeat: no-repeat;
  background-size: cover;
}

.full-width-image-section.adventure {
  padding-top: 100px;
  background-image: url("../img/Sep2.svg");
}

.full-width-image-section.contact {
  padding-top: 100px;
  background-image: url("../img/Sep2.svg");
}

.full-width-image-section.news {
  margin-top: 120px;
  padding-top: 100px;
  background-image: url("../img/Sep3.svg");
}

.full-width-image-section.trail-info {
  padding-top: 100px;
  background-image: url("../img/Sep3.svg");
}

.full-width-image-section.gray-pattern {
  padding-top: 100px;
  background-image: url("../img/Sep5.svg");
  background-size: 120%;
}

.full-width-image-section.white-pattern {
  padding-top: 100px;
  background-image: url("../img/Sep2.svg");
  background-size: 120%;
}

.full-width-image-section.footer {
  margin-top: -300px;
  padding-top: 100px;
  background-image: url("../img/Sep4.svg");
  z-index: 0 !important;
}

.img-full-width {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.middle-menu-section {
  position: relative;
}

.middle-menu-section .row {
  z-index: 99;
  position: relative;
}

.image-section {
  margin-top: -25px;
  z-index: 9;
  position: relative;
}

.white-sep,
.green-sep {
  margin-top: -90px;
  position: relative;
  z-index: 99;
}
.button-group.desktop {
  position: absolute;
  bottom: 180px;
  z-index: 1;
}

.desktop {
  display: block !important;
}

.mobile {
  display: none !important;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: none;
  background: #8cc73d;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  z-index: 10000;
}

.gray-bg {
  background-color: #f2f2f2;
}
.trails-search {
  width: 100%;
  margin-top: 20px;
}

.select-icon {
  position: relative;
}

.select-icon::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 30px;
  height: 34px;
  transform: translateY(-50%);
  background: url(../img/select-arrow.svg) no-repeat 0 0;
  pointer-events: none;
}

.select-icon .input-field {
  padding-right: 50px;
}

.input-field {
  width: 100%;
  border: 2px solid #c7ced5;
  border-radius: 0;
  box-shadow: none;
  height: 106px;
  padding: 0 37px;
  color: #69727a;
  font-size: 30px;
  background-color: #fff;
  appearance: none;
}

.trails-filters {
  display: flex;
  gap: 44px;
  margin-top: 80px;
}

.trails-filter {
  flex: 1;
}

.trails-filter label {
  display: block;
  color: #081d32;
  line-height: 1;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.trails-search label {
  display: block;
  color: #081d32;
  line-height: 1;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.range-slider {
  position: relative;
  width: 100%;
  height: 106px;
  user-select: none;
}

.range-slider_input {
  position: absolute;
  top: 65%;
  left: -4px;
  z-index: 3;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  opacity: 0;
  margin: 0;
}

.range-slider_input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.range-slider_input::-moz-range-thumb {
  width: 14vmin;
  height: 14vmin;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
}

.range-slider_thumb {
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: -30px;
  background-color: #8dc63f;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  padding: 14px 23px 18px 23px;
  color: #fff;
  z-index: 2;
  box-shadow: -2px -2px 0 0 #8bb2f4;
  white-space: nowrap;
}

.range-slider_line {
  height: 10px;
  width: 100%;
  background-color: #0079ff;
  top: 70%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
  z-index: 1;
  border-radius: 10px;
}

.range-slider_line-fill {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #0079ff;
  border-radius: 10px;
}

.range-slider_line-fill:after {
  content: "";
  position: absolute;
  transform: translate(50%, -50%);
  right: 0;
  top: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.trails-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  margin-top: 80px;
  padding-bottom: 80px;
}

.trails-list {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  /*box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);*/
}

.trails-list figure {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 0.6;
  overflow: hidden;
}

.trails-list figure img {
  width: 100%;
}

.list-table-row {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.list-table-row li {
  flex: 1;
  background-color: #fff;
  /*box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);*/
  border-bottom: 1px solid #dcdcdc;
  font-size: clamp(1.2rem, 4vw, 1.57rem);
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  color: #072724;
}

.list-table-row li:not(:first-child) {
  border-left: 1px solid #cbcbcb;
}

.list-table-row li:first-child {
  color: #fff;
}

.list-table-row li img {
  width: 60px;
}

.strenuous {
  background-color: #db3333 !important;
}

.easy {
  background-color: #8dc63f !important;
}

.moderate {
  background-color: #4295e2 !important;
}

.Strenuous {
  background-color: #db3333 !important;
}

.Easy {
  background-color: #8dc63f !important;
}

.Moderate {
  background-color: #4295e2 !important;
}

.trails {
  margin-top: -25px;
  position: relative;
}

.trails-details {
  width: 100%;
  padding: 20px 58px 32px 58px;
}

.trails-details .heading {
  font-size: clamp(3rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  color: #8dc63f;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1 !important;
}

.trails-details .sub-heading {
  color: var(--dark-color);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 14px;
}

.trails-details .paragraph {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  margin-top: 0;
  line-height: 1.12;
}

.trails-details .btn {
  padding: 7px 0;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
  width: 100%;
  margin-top: 12px;
}

#carouselExampleControls {
  position: relative;
  margin-top: -25px;
}

.carousel-btn {
  width: 40px;
  height: 68px;
  top: calc(50% - 50px);
  transform: translateY(-50%);
  opacity: 0.7;
}

.carousel-btn span {
  width: 100%;
  height: 100%;
  background: url(../img/arrow.svg) no-repeat 0 0;
  background-size: 100%;
}

.carousel-control-prev {
  left: 25px;
  transform: translateY(-50%) rotate(180deg);
}

.carousel-control-next {
  right: 25px;
}

.full-width-image-section .start-btn {
  position: relative;
  z-index: 99999;
  margin-top: -140px;
  overflow: unset;
  padding-bottom: 40px;
}
.full-width-image-section .start-btn img {
  width: 276px;
}

.trail-info-section {
  background-color: var(--green-color);
  color: var(--white-color);
  position: relative;
  z-index: 1;
  padding-bottom: 75px;
}

.trail-info-section .trails-details * {
  color: inherit;
}

.trail-info-section .trails-details .sub-heading {
  font-size: clamp(1.9rem, 4vw, 2.84rem);
}

.total-ascent img {
  width: 100%;
}

.waymarking-colour {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0 0;
}

.waymarking-colour img {
  width: clamp(4rem, 7vw, 7.625rem);
}

.waymarking-heading {
  font-family: "Branding SF";
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--green-color);
  font-weight: 700;
  margin: 0;
}

.waymarking-heading span {
  font-family: "Myriad Pro";
  color: var(--blue-color);
  display: table;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
  font-weight: 700;
}

.total-ascent {
  margin-top: 30px;
}

.total-ascent img {
  width: 100%;
}

.accordion-section {
  width: 100%;
  padding: 0 0 80px 0;
}

.accordion {
  max-width: 595px;
  margin: 75px auto 0 auto;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.accordion-heading {
  font-family: "Branding SF";
  text-align: center;
  font-size: clamp(3rem, 4vw, 4.56rem);
  color: var(--white-color);
  font-weight: 700;
  margin: 0;
  padding: 23px 20px;
  background-color: var(--dark-color);
}

.accordion-button {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  line-height: 1;
  color: var(--dark-color);
  padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
  color: inherit;
  background: inherit;
}

.accordion-button::after {
  order: -1;
  margin: 0 26px 0 0;
  width: 51px;
  height: 51px;
  background: url(../img/drop-menu-arrow.svg) no-repeat 0 0;
}

.accordion-button:not(.collapsed)::after {
  background: url(../img/drop-menu-arrow.svg) no-repeat 0 0;
  transform: rotate(90deg);
}

.accordion-body {
  background-color: #ebeeee;
  padding: 22px 34px;
  font-weight: 300;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  margin-top: 0;
  line-height: 1.15;
  color: #676767;
}

.panel-body {
  direction: rtl;
  max-height: 294px;
  overflow: auto;
  padding-left: 40px;
}

.panel-body::-webkit-scrollbar {
  width: 26px;
}

.panel-body::-webkit-scrollbar-track {
  border-radius: 25px;
  background-color: #6d6e71;
  width: 24px;
}

.panel-body::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border-radius: 25px;
  border: 1px solid #6d6e71;
}

.panel-body p {
  direction: ltr;
}

.info-icons-section {
  width: 100%;
  padding: 0 0 80px 0;
}

.info-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  row-gap: 30px;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  list-style: none;
}

.info-icons li {
  width: calc(33.33% - 23.5px);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
}

.info-icons li span {
  background-color: var(--green-color);
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: block;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icons li span img {
  max-width: 71%;
  width: 100%;
}

.developed-by {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  font-weight: 100;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--white-color);
  line-height: 1.12;
}

.developed-by a {
  color: inherit;
}

.footer-partners {
  gap: 30px;
  align-items: center;
  width: 130%;
}

.footer-partners img {
  height: 65px;
}

.footer-partners .top-logo,
.footer-partners .bottom-logo {
  width: 100%;
  display: inline-flex;
  gap: 30px;
  justify-content: center;
}

.footer-partners .bottom-logo {
}

.modal {
  z-index: 999999;
}

.modal-lg {
  max-width: 842px;
}

.modal .modal-content {
  position: relative;
  border-radius: 0;
}

.modal .notificationModal {
  background-color: var(--green-color);
  color: var(--white-color);
}

.modal .btn-close {
  position: absolute;
  right: clamp(1rem, 4vw, 1.5rem) !important;
  top: clamp(1rem, 4vw, 1.5rem) !important;
  width: clamp(1.5rem, 4vw, 3rem);
  height: clamp(1.5rem, 4vw, 3rem);
  padding: 0;
  margin: 0;
  z-index: 1;
}

.modal .modal-body {
  padding: clamp(3rem, 8vw, 4rem) 16px;
}

.modal-award-logo img {
  max-width: clamp(15rem, 50vw, 29.4rem);
  width: 100%;
}

.modal-award-logo.easy-walks-award img {
  max-width: clamp(12rem, 50vw, 21.625rem);
}

.modal-award-heading {
  font-size: clamp(3rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.1;
  margin: clamp(1.5rem, 6vw, 2.2rem) 0 0 0;
}

.modal-award-text {
  font-weight: 500;
  font-size: clamp(1rem, 4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  margin-top: clamp(1rem, 4vw, 1.4rem);
}

.modal-notification-img {
  max-width: 572px;
  width: 100%;
  margin: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 8px solid var(--white-color);
  border-radius: 5px;
  background-color: var(--white-color);
}

.modal-notification-img.no-border {
  border: 0;
  border-radius: 0;
  max-width: 586px;
}

.notificationModal .modal-award-text {
  font-family: "Myriad Pro", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.57rem);
  margin: clamp(1rem, 6vw, 1.5rem) auto 0 auto;
  line-height: 1.12;
  text-transform: none;
  max-width: 700px;
}

.modal .btn {
  padding: 7px 0;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  color: var(--green-color);
  background-color: var(--white-color);
  width: 100%;
  max-width: 700px;
  margin: clamp(2rem, 6vw, 2.8rem) auto 0 auto;
}

.blog-img {
  width: 100%;
  margin-top: -25px;
  position: relative;
}

.blog-img img {
  width: 100%;
}

.blog-section {
  max-width: 788px;
  margin: -50px auto auto auto;
}

.blog-section .trail-eco {
  max-width: clamp(15rem, 50vw, 27.9375rem);
  margin: auto;
}

.blog-section .heading {
  font-size: clamp(3rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.1;
  margin: clamp(1.5rem, 6vw, 3rem) 0 0 0;
  color: var(--green-color);
}

.blog-section p {
  font-weight: 300;
  font-size: clamp(1rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  color: #676767;
}

.blog-section p b {
  font-weight: 700;
}

.blog-section p i {
  font-weight: 400;
}

.blog-section .btn {
  padding: 7px 0;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
  width: 100%;
  max-width: 700px;
  margin: clamp(2rem, 6vw, 3rem) auto 0 auto;
}

.blog-bottom-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: clamp(1.5rem, 20vw, 3rem) 0;
}
.blog-bottom-logo img {
  height: clamp(4rem, 9vw, 9rem);
  max-width: 100%;
}

.report-issue {
  margin-top: -25px;
  position: relative;
  padding-bottom: 25px;
}

.report-issue form {
  max-width: 781px;
  margin: 25px auto auto auto;
}

.report-issue form .form-control {
  width: 100%;
  border: 8px solid #ebeeee;
  box-shadow: none;
  padding: clamp(0.4rem, 4vw, 0.7rem) clamp(1rem, 4vw, 1.15rem);
  color: #69727a;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  background-color: #fff;
  appearance: none;
  border-radius: 10px;
  font-weight: 300;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.report-issue form textarea {
  resize: none;
  height: clamp(16rem, 50vw, 32.9375rem);
}

.report-issue form .btn {
  padding: 7px 0;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  font-family: "Myriad Pro", sans-serif;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--green-color);
  width: 100%;
  margin: clamp(2rem, 6vw, 3rem) auto 0 auto;
}

.upload-picture {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 300;
  color: #676767;
}

.alternatively {
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  max-width: 781px;
  margin: 35px auto auto auto;
  line-height: 1.1;
}

.alternatively a {
  color: inherit;
  font-weight: 700;
}

.completed-trails {
  margin-top: -25px;
  position: relative;
}

.completed-trails-table {
  width: 100%;
  max-width: 833px;
  margin: auto;
  padding-top: clamp(1rem, 4vw, 1.5rem);
  padding-bottom: 25px;
}

.completed-trails-table .completed-trails-head,
.completed-trails-table .completed-trails-body {
  display: flex;
}
.completed-trails-table .completed-trails-body {
  border-bottom: 3px solid #c7cdd4;
}

.completed-trails-table > div .completed-trails-col {
  width: 75%;
  display: flex;
  align-items: center;
  padding: 6px 5px;
  font-size: clamp(1.5rem, 4vw, 2.07rem);
  line-height: 1.1;
  font-weight: 300;
  color: #072724;
}

.completed-trails-table .completed-trails-head {
  padding-bottom: 10px;
}

.completed-trails-table .completed-trails-head .completed-trails-col {
  font-size: clamp(1rem, 4vw, 1.8rem);
  color: #9b9b9b;
}

.completed-trails-table > div .completed-trails-col:first-child {
  width: clamp(3.5rem, 10vw, 10.375rem);
  text-align: center;
  justify-content: center;
}
.completed-trails-table > div .completed-trails-col:last-child {
  width: 20%;
  justify-content: flex-end;
}

.completed-trails-table > div .completed-trails-col img {
  max-width: clamp(2rem, 6vw, 3.6rem);
}
.completed-trails-table .completed-trails-body .completed-trails-col {
  font-size: clamp(2rem, 6vw, 4.6875rem);
  font-family: "Branding SF", sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  line-height: 1.1;
  color: var(--green-color);
}
.completed-trails-table
  .completed-trails-body
  .completed-trails-col:last-child {
  font-size: clamp(1rem, 4vw, 2.07rem);
  font-family: "Myriad Pro";
  font-weight: 300;
  color: #072724;
}

.choose-file {
  position: relative;
}
.choose-file .file {
  display: none;
}
.choose-file .browseBtn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: 0;
  background-color: #ebeeee;
  border-radius: 0 10px 10px 0;
  color: #69727a;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 300;
  padding: 0 clamp(1.5rem, 4vw, 2.4rem);
}
.choose-file .form-control {
  padding-right: clamp(7rem, 9vw, 10.625rem) !important;
}

@media only screen and (min-width: 767px) {
  .info-icons li.info-distance-white img {
    max-width: 120px;
  }
  .info-icons li.info-start-button img {
    max-width: 168px;
  }
  .info-icons li.info-local-amenities img {
    max-width: 119px;
  }
  .info-icons li.info-point-of-interest img {
    max-width: 98px;
  }
  .info-icons li.info-video-overview img {
    max-width: 119px;
  }
  .info-icons li.info-report-issue img {
    max-width: 139px;
  }
}

@media only screen and (max-width: 1400px) {
  .footer-partners {
    width: 150%;
  }
}

@media only screen and (max-width: 1200px) {
  .logo-img {
    height: auto;
  }
  .full-width-image-section .adventure-header {
    margin-top: -132px;
  }
  .image-section {
    height: 100%;
    display: block;
  }
  .image-section .image-container {
    position: relative;
    height: auto;
    display: block;
  }
  .background-video {
    position: relative;
    width: 100%;
    height: auto;
    z-index: -1;
  }
  .button-group {
    text-align: center;
  }
  .mobile {
    display: block !important;
    max-width: 100%;
  }
  .desktop {
    display: none !important;
  }
  .list-table-row li {
    min-height: 75px;
  }
  .list-table-row li img {
    width: 40px;
  }
  .footer-partners {
    gap: 20px;
  }

  .footer-partners img {
    height: 50px;
  }

  .footer-partners .top-logo,
  .footer-partners .bottom-logo {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header-section {
    padding: 20px 0 10px;
  }
  .menu-icon {
    height: 100px;
  }
  .menu-text {
    font-size: 20px;
  }
  .image-section {
    margin-top: -30px;
  }
  .middle-menu-section {
    margin-top: -10px;
    padding-top: 10px;
    padding-bottom: 14px;
  }
  .switch {
    height: 50px;
  }
  .slider:before {
    height: 40px;
    width: 40px;
    bottom: 5px;
  }
  .social-icons {
    gap: 5px;
  }
  .social-icons a {
    width: calc(20% - 5px);
  }
  .social-icons img {
    width: auto;
    margin-left: 0px !important;
  }
  img {
    max-width: 100%;
  }
  .footer-section,
  .footer-section p,
  .footer-section h3,
  .footer-section ul,
  .footer-section a,
  .footer-section div {
    text-align: center;
  }
  footer h3 {
    padding-top: 40px;
  }
  .full-width-image-section .adventure-header {
    margin-top: -112px;
  }
  .full-width-image-section .news-header {
    margin-top: -148px;
  }
  .footer-section ul.contact-us li {
    font-size: clamp(1.2rem, 1.2rem, 2rem);
    line-height: 2rem;
  }
  .full-width-image-section.footer {
    margin-top: -430px;
  }
  .footer-partners {
    gap: 20px;
    margin: auto;
    max-width: 370px;
  }
  .footer-partners img {
  }
  .pt-15 {
    padding-top: 25rem;
  }
  .input-field {
    height: 80px;
    font-size: 25px;
  }
  .trails-filter label {
    margin-bottom: 25px;
  }
  .range-slider_thumb {
    font-size: 35px;
    top: -7px;
    padding: 10px 16px 12px 16px;
  }
  .carousel-btn {
    width: 20px;
    height: 36px;
  }
  .full-width-image-section .start-btn img {
    width: 200px;
  }
  .full-width-image-section.trail-info {
    background-position: center 0px;
  }
  .developed-by {
    line-height: 1.5;
  }
  .developed-by span {
    display: table;
    font-size: 0;
  }
}
@media only screen and (max-width: 767px) {
  .navbar-toggler-icon {
    width: 2em;
    height: 2em;
  }
  .home-icon,
  .social-icon {
    width: 40px;
    height: auto;
  }
  .middle-menu-section .btn {
    padding: 0px;
  }
  .switch {
    height: 30px;
    width: 80px;
  }
  .search-icon {
    width: 28px;
    height: auto;
  }
  .search-field {
    padding: 7px 5px 7px 18px;
  }
  .search-form .btn {
    height: 38px;
  }
  .logo-img,
  .footer-logo {
    width: 180px;
    height: auto;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .logo-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 0px;
  }

  .menu-icon {
    height: 80px;
  }
  .button-group {
    text-align: center;
  }
  .slider:before {
    height: 20px;
    width: 20px;
    bottom: 5px;
    left: 5px;
  }
  input:checked + .slider:before {
    transform: translateX(50px);
  }
  .middle-menu-section .container {
    max-width: 100%;
    padding: 0 20px 0px;
  }
  .menu-text {
    font-size: 16px;
  }
  .pt-15 {
    padding-top: 42rem;
  }
  .signup-section.pt-5 {
    padding-top: 0px !important;
  }
  .full-width-image-section.news {
    margin-top: 50px;
    padding-top: 100px;
  }
  .adventure-section.pt-5 {
    padding-top: 0px !important;
  }
  .signup-section .signup-image-column {
    margin-top: 1rem !important;
  }
  .full-width-image-section .adventure-header {
    line-height: 5rem;
    margin-top: -100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .full-width-image-section .news-header {
    margin-top: -139px;
  }
  .news-section.pb-15 {
    padding-bottom: 1rem;
    margin-top: -10px;
    position: relative;
    z-index: 1000;
  }
  .button-group .btn,
  .news-btn,
  .signup-section .btn {
    padding: 10px 20px;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .button-group .btn {
    /* width: 220px;*/
  }
  .adventure-section .container {
    /*max-width: 95%;*/
  }
  .full-width-image-section.footer {
    margin-top: -720px;
  }

  .trails-filters {
    gap: 10px;
    row-gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .input-field {
    padding: 0 20px;
    height: 60px;
    font-size: 20px;
  }
  .trails-filter label {
    margin-bottom: 15px;
  }
  .select-icon::after {
    width: 20px;
    height: 25px;
    right: 20px;
  }

  .trails-filter:not(:last-child) {
    flex: 0 0 calc(50% - 5px);
  }
  .range-slider_thumb {
    font-size: 25px;
    top: -5px;
    padding: 14px 23px 18px 23px;
  }
  .trails-lists {
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 40px;
  }
  .trails-list {
    border-radius: 10px;
  }
  .list-table-row {
    flex-wrap: wrap;
  }
  .list-table-row li {
    flex: 50%;
    border-bottom: 1px solid #cbcbcb;
  }
  .trails-details {
    padding: 20px;
  }
  .full-width-image-section .start-btn img {
    width: 150px;
  }

  .info-icons li span img {
    max-width: 60%;
    max-height: 60%;
    width: 100%;
  }
  .footer-partners {
    width: 100%;
  }
  .footer-partners img {
    height: 45px;
  }
}
@media only screen and (max-width: 576px) {
  .white-sep,
  .green-sep {
    margin-top: -50px;
  }
  .full-width-image-section.gray-pattern {
    padding-top: 50px;
  }
  .middle-menu-section {
    padding-top: 0px;
    padding-bottom: 20px;
    margin-top: 0px;
  }
  .el-logos {
    padding-left: 0px;
    padding-right: 0px;
  }
  .menu-icon {
    height: 50px;
  }
  .switch {
    width: 34px;
    height: 20px;
    margin-top: -10px;
  }
  .slider:before {
    height: 12px;
    width: 12px;
    top: 4px;
  }
  input:checked + .slider:before {
    transform: translateX(12px);
  }
  .menu-text {
    font-size: 3.1vw;
    margin-top: -10px;
  }
  .contact-info img {
    width: 20px;
  }
  .search-field {
    padding: 7px 5px 7px 11px;
    font-size: 12px;
    height: 30px;
  }
  .form-control::placeholder {
    width: 100%;
  }

  .search-form .btn {
    width: 35px;
    height: 30px;
    align-items: center;
    display: flex;
    padding: 8px;
  }

  .pt-15 {
    padding-top: 42rem;
  }

  .button-group .btn {
    width: 160px;
  }
  .trails-filters .trails-filter:last-child {
    padding: 0 20px;
  }
  .info-icons {
    gap: 20px;
    justify-content: center;
  }
  .info-icons li {
    width: calc(50% - 25px);
  }
  .carousel-btn {
    top: calc(50% - 30px);
  }
  .full-width-image-section.trail-info {
    padding-top: 75px;
  }
  .full-width-image-section .start-btn {
    margin-top: -110px;
  }
  .accordion-button::after {
    width: 45px;
    height: 45px;
  }
  .accordion-button {
    padding: 10px 20px;
  }
  .blog-section {
    margin-top: -70px;
  }

  .footer-partners img {
    height: 40px;
  }
}

/* This is a single-line comment */
#btn-back {
  position: fixed;
  top: 160px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
  background: #8cc73d;
  border-radius: 50%;
  color: #fff;
  border: 1px solid #fff;
  z-index: 10000;
}

.completed-trails-table {
  max-width: 1000px;
}
.middle-menu-section .row {
  z-index: 500;
}

.completed-trails-table > div .completed-trails-col-grade {
  width: 25%;
  display: flex;
  align-items: center;
  padding: 6px 5px;
  font-size: clamp(1.2rem, 4vw, 1.5rem);

  font-family: "Branding SF", sans-serif;
  font-weight: 100;
  text-transform: capitalize;
  line-height: 1.1;
  color: black;
}

.btn,
button {
  font-weight: bold;
}

.registerSubHeading {
  font-size: 14px;
  color: black;
  margin-top: -15px;
}
