/* Destination page  */
.destination-content__section {
  padding-top: clamp(25px, 4vw, 50px);
}
.destination-content__section .content__area {
  max-width: 832px;
  margin: 0 auto;
}
.hike-nepal__section {
  background-color: var(--bg-color);
}

body:not(.home) .section-wrap {
  margin-bottom: clamp(20px, 3vw, 30px);
}
body:not(.home) .section-wrap.center {
  max-width: 450px;
}
body:not(.home) .section-wrap p {
  margin: 6px 0 0;
}
body:not(.home) .section-wrap h2 {
  font-size: clamp(30px, 3vw, 36px);
}
body:not(.home) .button-wrapper .btn {
  top: -70px;
}
/* Destination page  */

/* Our Team page  */
.our-team__section .wrapper-xsmall {
  max-width: 1000px;
}
.our-team__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 25px;
}
.team__container {
  background-color: var(--bg-color);
  border: 1px solid #29655b1a;
  overflow: hidden;
  border-radius: 12px;
  transition: var(--transition);
}
.team__container:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.team__container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.team__container .entry-content {
  padding: 20px 25px 25px;
}
.team__container h3 {
  font-size: 18px;
}
.team__container span {
  color: #fe6718;
  font-size: 14px;
  display: block;
  margin: 5px 0 12px;
}
.team__container p {
  font-size: 14px;
}
.team__container .social-media {
  margin-top: 14px;
}
.team__container .social-media a {
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #0000001a;
  background-color: var(--light);
  font-size: 14px;
}
.travel-specialist__section {
  background-color: var(--bg-color);
}
.travel-specialist__section .team__container {
  background-color: var(--light);
}

.our-value__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.our-value__container {
  background-color: #edf9f7;
  border-radius: 12px;
  border: 1px solid #0000000d;
  text-align: center;
  padding: 50px 40px;
}
.our-value__container:nth-child(even) {
  background-color: #fff5eb;
}
.our-value__container .icon {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.our-value__container:nth-child(even) .icon {
  background-color: var(--primary);
}
.our-value__container h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.our-value__container p {
  font-size: 14px;
}
/* Our Team page  */

/* Single Blog page  */
.single-blog__wrapper {
  display: flex;
  align-items: start;
  gap: 34px;
}
.single-blog__wrapper .sidebar {
  max-width: 384px;
  width: 100%;
}
.single-blog__wrapper .sidebar > div {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 30px 25px;
}
.single-blog__wrapper .sidebar span {
  margin-bottom: 25px;
  display: block;
  color: var(--text-1);
}
.single-blog__wrapper .sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-blog__wrapper .sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e4;
}
.single-blog__wrapper .sidebar ul a {
  color: #606060;
  line-height: 1.3;
}
.single-blog__container {
  max-width: 742px;
  width: 100%;
}
.single-blog__container .breadcrumb {
  margin: 0 0 25px;
  justify-content: start;
}
.single-blog__container .breadcrumb li {
  color: #666666;
}
.single-blog__container .breadcrumb li a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.single-blog__container .breadcrumb li:not(:last-child)::after {
  color: #1a1a1a;
}
.single-blog__container h1 {
  font-size: clamp(30px, 3vw, 48px);
  margin: 0 0 20px;
}
.publish-date {
  border: 1px solid #00000005;
  background-color: #f8f6f6;
  font-size: 12px;
  text-transform: uppercase;
  color: #727171;
  border-radius: 8px;
  width: fit-content;
  padding: 6px 8px;
  margin-bottom: 10px;
}
.single-blog__container .author img {
  width: 50px;
  height: 50px;
}
.single-blog__container .featured-image {
  border-top: 1px solid #e5e5e5;
  margin-top: 30px;
  padding-top: 35px;
}
.single-blog__container .featured-image img {
  width: 100%;
  border-radius: 12px;
}
.single-blog__container .content__area {
  margin-top: clamp(25px, 3vw, 50px);
}
.single-blog__container .content__area p + h3 {
  margin-top: clamp(25px, 3vw, 35px);
}
.single-blog__container .content__area h3 {
  margin-bottom: clamp(8px, 2vw, 12px);
}
.single-blog__container .content__area ul {
  margin: clamp(10px, 2vw, 15px) 0;
}

.why-us-single__section .why-us__container {
  max-width: 832px;
  margin: clamp(25px, 3vw, 50px) auto 0;
}

@media (max-width: 767px) {
  .single-blog__wrapper {
    flex-direction: column-reverse;
  }
  .single-blog__wrapper .sidebar,
  .single-blog__container {
    max-width: 100%;
  }
}
/* Single Blog page  */

/* Contact us page  */
.contact-us__section {
  background-color: var(--bg-color);
}
.contact-us__wrapper {
  display: flex;
  align-items: start;
  gap: 40px;
  justify-content: space-between;
}
.contact-us__wrapper .entry-container {
  max-width: 450px;
  width: 100%;
}
.contact-us__wrapper h1 {
  margin-bottom: 10px;
}
.contact-details {
  margin-top: clamp(20px, 3vw, 40px);
}
.contact-details > div {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-details > div:last-child {
  margin-bottom: 0;
}
.contact-details .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-details span {
  display: block;
  color: #6f6f6e;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 500;
}
.contact-details p {
  font-size: 18px;
  color: #303030;
}
.contact-us__wrapper .social-media {
  margin-top: clamp(20px, 3vw, 40px);
}
.contact-us__wrapper .social-media a {
  color: var(--primary);
}
.contact-us__form {
  max-width: 660px;
  width: 100%;
  background-color: var(--light);
  padding: clamp(20px, 3vw, 40px);
  border-radius: 12px;
}
.contact-us__form h3 {
  margin-bottom: 40px;
}
.contact-us__form form {
  display: flex;
  align-items: start;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-us__form form p {
  margin: 0;
  width: 100%;
  border: 1px solid #00000033;
  border-radius: 12px;
  padding: 10px;
}
.contact-us__form form p:nth-of-type(1),
.contact-us__form form p:nth-of-type(2),
.contact-us__form form p:nth-of-type(3),
.contact-us__form form p:nth-of-type(4) {
  max-width: calc(50% - 10px);
}
.contact-us__form form input,
.contact-us__form form select,
.contact-us__form form textarea {
  border: unset;
  padding: 0;
}
.contact-us__form form textarea {
  height: 190px;
  resize: none;
}
.contact-us__form form p:has(input.wpcf7-submit) {
  padding: 0;
  border: unset;
  width: fit-content;
  margin-top: 8px;
}
.contact-us__form form input.wpcf7-submit {
  cursor: pointer;
  border-radius: 12px;
  background-color: var(--primary);
  color: var(--light);
  padding: 14px 28px;
  width: fit-content;
}
.map__section {
  position: relative;
}
.map__section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background-color: var(--bg-color);
}
.map__section .wrapper-small {
  position: relative;
}
.map__section iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  aspect-ratio: 12/5;
}
@media (max-width: 989px) {
  .contact-us__wrapper {
    flex-direction: column;
  }
  .contact-us__wrapper .entry-container,
  .contact-us__form {
    max-width: 100%;
  }
  .map__section iframe {
    aspect-ratio: 12/6;
  }
}
@media (max-width: 575px) {
  .contact-us__form form p:nth-of-type(1),
  .contact-us__form form p:nth-of-type(2),
  .contact-us__form form p:nth-of-type(3),
  .contact-us__form form p:nth-of-type(4) {
    max-width: 100%;
  }
  .map__section iframe {
    aspect-ratio: 12/8;
  }
}
/* Contact us page  */
