@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap");
:root {
  --main-bg: #fbfbfb;
  --color-primary: #6a5b5b;
  --color-secondary: #ffaf3b;
  --color-thirdary: #2a9363;
  --color-heading: #6a5b5b;
  --color-alternative: #7ec451;
  --color-text: #8d8e8e;
  --color-subtext: #8f8f8f;
  --color-grey: #5b5f62;
  --color-grey-2: #868787;
  --color-black: #2d3134;
  --color-white: #ffffff;
  --color-yellow: #fff671;
  --color-white-transparant: rgba(255, 255, 255, 0.69);
  --gradient: linear-gradient(
      215.35deg,
      #fed818 22.82%,
      #fdc81a 46.74%,
      #f79521 98.79%
  );
  --shadow-light: 0px 0px 30px rgba(0, 0, 0, 0.05);
  --shadow-hard: 0px 0px 30px rgba(0, 0, 0, 0.15);
  --font-heading: "Roboto", sans-serif;
  --font-paragraf: "Roboto", sans-serif;
  --font-x-small: 0.7rem;
  --font-small: 0.8rem;
  --font-normal: 0.9rem;
  --font-medium: 1.2rem;
  --font-medium-1: 1.8rem;
  --font-medium-2: 1.6rem;
  --font-large: 3rem;
  --font-xslarge: 2.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin: 0;
  padding: 0;
  color: var(--color-primary);
}

h1 {
  color: var(--color-primary);
  font-size: var(--font-large);
  font-weight: 900;
  letter-spacing: -0.05rem;
}
h1 span {
  color: var(--color-secondary);
}

h2 {
  color: var(--color-heading);
  font-size: var(--font-medium-1);
  font-weight: 500;
  letter-spacing: -0.05rem;
  margin-bottom: 1.5rem;
}
h2 span {
  color: var(--color-secondary);
}

h3 {
  color: var(--color-alternative);
  font-size: var(--font-medium);
}

h4 {
  color: var(--color-text);
  font-size: var(--font-normal);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}

p {
  color: var(--color-text);
  font-weight: 300;
  font-size: var(--font-normal);
  line-height: 2.2;
}

.note {
  font-size: var(--font-x-small);
  font-style: italic;
}

.link-primary,
.link-secondry {
  padding: 0.7rem 0.7rem;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.1rem;
  border-radius: 2rem;
  margin: 0.2rem 0rem;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--color-primary);
}
.link-primary svg,
.link-secondry svg {
  margin-right: 0.7rem;
  margin-left: 0;
}

.link-secondry {
  background-color: var(--color-thirdary);
  border: solid 2px var(--color-thirdary);
}

.link-thirdry {
  color: var(--color-primary);
  font-size: var(--font-small);
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.link-thirdry span {
  background-color: var(--color-yellow);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  border-radius: 50%;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0.5rem;
}
.link-thirdry path {
  fill: var(--color-primary);
}

.link-normal-small {
  font-size: var(--font-small);
  text-decoration: underline;
  color: var(--color-primary);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--main-bg);
  font-family: var(--font-paragraf);
  color: var(--color-text);
}

header {
  padding: 20px 30px 30px 30px;
  padding-bottom: 20px;
  transition: all 0.5s;
  background: var(--color-white-transparant);
}
header .logo {
  transition: all 0.5s;
  max-width: 160px;
}
header .logo-small {
  max-width: 130px;
}
header .menu-btn {
  display: none;
}
header .menu-icon {
  width: 1.5rem;
  display: flex;
  padding-bottom: 5px;
}
header nav {
  display: flex;
  justify-content: space-between;
}
header nav > ul {
  position: absolute;
  background: var(--color-white-transparant);
  width: 85%;
  padding: 0;
  margin: 0;
  top: 0;
  height: 100vh;
  padding: 3.5rem 3rem 2rem 2rem;
  opacity: 0;
  transition: all 0.5s ease-out;
  left: -300px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
header nav > ul li {
  list-style: none;
  padding: 0.5rem 0;
}
header nav > ul li > ul {
  display: flex;
  padding: 0;
}
header nav > ul li > ul li:nth-child(2) {
  padding-left: 1rem;
}
header nav > ul li a {
  text-decoration: none;
  color: var(--color-grey-2);
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: var(--font-normal);
}
header nav > ul li .bold-menu {
  font-weight: 500;
  color: var(--color-primary);
}
header nav > ul li .important-menu {
  border: solid 2px var(--color-secondary);
  padding: 0.4rem 1rem;
  color: var(--color-secondary);
  font-weight: 500;
  border-radius: 2rem;
  margin: 0.2rem 0rem;
  display: block;
  text-align: center;
}
header nav > ul li .inquiry {
  padding: 0.4rem 1rem;
  color: var(--color-white);
  font-weight: 500;
  border-radius: 2rem;
  margin: 0.2rem 0rem;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px var(--color-primary);
}
header nav > ul li .inquiry svg {
  margin-right: 0;
  margin-left: 0.5rem;
}
header nav .menu-btn:checked ~ ul {
  opacity: 1;
  left: 0;
}

.is-sticky {
  position: fixed;
  width: 100%;
  padding-top: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 100;
}

.main {
  padding: 30px;
  padding-top: 20px;
}
.main .content {
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.main .content h1,
.main .content h3,
.main .content p,
.main .content a {
  margin-bottom: 0.9rem;
}
.main .content div {
  display: flex;
  flex-direction: column;
}
.main .content .sec-middle {
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.main .content .sec-middle a {
  width: 320px;
}
.main .content .sec-bottom {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.main .content .sec-bottom a {
  margin: 0.5rem;
}
.main .content .sec-foot {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main .content .sec-foot * {
  margin: 1rem;
}

.content {
  padding: 30px;
  padding-top: 20px;
}
.content .line-spacer {
  border-top: 2px solid var(--color-secondary);
  margin-bottom: 4rem;
}
.content .header {
  text-align: center;
}
.content .header .text-center {
  text-align: center;
}
.content .header h4 {
  line-height: 2.2;
}
.content .slide-tour {
  position: relative;
  margin-bottom: 2rem;
}
.content .masonry {
  margin-bottom: 4rem;
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.content .masonry .brick {
  position: relative;
  box-sizing: border-box;
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  counter-increment: brick-counter;
}
.content .masonry .brick .man-title {
  position: absolute;
  bottom: 2.7rem;
  left: 2rem;
}
.content .masonry .brick .man-title h5 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: var(--font-medium);
  font-weight: 500;
}
.content .masonry .brick .man-title a {
  color: var(--color-white);
  text-decoration: underline;
  font-size: var(--font-small);
}
.content .masonry .brick img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .content .masonry {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media (min-width: 992px) {
  .content .masonry {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media (min-width: 1199px) {
  .content .masonry {
    -moz-column-count: 4;
         column-count: 4;
  }
}
.content .testimonial {
  margin-bottom: 4rem;
  text-align: center;
}
.content .testimonial .photo {
  display: none;
}
.content .testimonial .spacer {
  display: inline-block;
  width: 70px;
  height: 5px;
  border-radius: 10px;
  background-color: var(--color-alternative);
  margin-bottom: 2rem;
}
.content .testimonial p {
  font-size: var(--font-small);
  width: calc(100% - 3rem);
  margin: 0 auto;
  margin-bottom: 2rem;
}
.content .testimonial .star {
  margin-bottom: 0.5rem;
}
.content .testimonial .name {
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 0rem;
}
.content .testimonial .title {
  font-size: var(--font-x-small);
}
.content .tour-detail h1 {
  font-size: var(--font-xslarge);
}
.content .tour-detail .act-title {
  margin-bottom: 1.2rem;
}
.content .tour-detail ul {
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.content .tour-detail ul li {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-size: var(--font-small);
  font-weight: 300;
  color: var(--color-grey);
  line-height: 1.8;
}
.content .tour-detail ul li svg {
  margin-right: 0.5rem;
}
.content .tour-detail .price-tour {
  margin: 1.2rem 0 1.5rem;
  font-size: var(--font-small);
}
.content .tour-detail .price-tour span {
  color: var(--color-heading);
  font-size: var(--font-normal);
  font-weight: 500;
  margin-left: 0.3rem;
}
.content .tour-detail .links {
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
}
.content .tour-detail .links .book {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 1rem;
}
.content .tour-detail .links .whatap {
  background-color: var(--color-thirdary);
  color: var(--color-white);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.content .tour-detail .links .whatap svg {
  margin-right: 0.5rem;
}
.content .title-page {
  margin-top: 1rem;
}
.content .list-tour .swiper-slide {
  margin-bottom: 3rem;
}
.content .main-desc {
  margin: 4rem 0;
  margin-bottom: 4rem !important;
  border-bottom: 1px solid var(--color-secondary);
  text-align: center;
}
.content .tour-desc {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.content .tour-desc ul {
  margin-bottom: 2rem;
}
.content .tour-desc ul li {
  display: flex;
  flex-direction: row;
  font-size: var(--font-normal);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content .tour-desc ul li img {
  width: 14px;
  height: 17px;
  margin-right: 0.8rem;
  padding-top: 0.5rem;
  display: inline-block;
}
.content .tour-desc .right .top {
  margin-top: 1rem;
}
.content .tour-desc .right h2 {
  color: var(--color-primary);
  margin: 1rem 0 1rem;
  font-size: var(--font-medium-2);
}
.content .tour-desc .right p {
  margin-bottom: 2.5rem;
}
.content .tour-desc .right h3,
.content .tour-desc .right h4 {
  color: var(--color-primary);
  margin: 2.5rem 0 1.5rem;
  font-size: var(--font-medium);
}
.content .tour-desc .right .r-detail img {
  border-radius: 10px;
  margin-bottom: 1rem;
}
.content .tour-desc .left h3 {
  color: var(--color-primary);
  margin: 2.5rem 0 1.5rem;
}
.content .tour-desc .left .gallery-img img {
  border-radius: 15px;
  margin-bottom: 1rem;
}
.content .activities {
  flex-direction: column-reverse;
}
.content .activities .right {
  margin-top: 3rem;
}
.content .group-tour {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.content .group-tour li {
  list-style: none;
}
.content .group-tour li a {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.8rem 1.2rem;
  border-radius: 40px;
  display: inline-block;
  margin: 0.1rem;
  font-size: var(--font-small);
}
.content .about > div:nth-child(2) {
  margin-top: 2rem;
  color: var(--color-text);
  font-weight: 300;
  font-size: var(--font-normal);
  line-height: 2.2;
}
.content .about > div:nth-child(2) p {
  margin-bottom: 2rem;
  text-align: center;
}
.content .about > div:nth-child(2) h3,
.content .about > div:nth-child(2) h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: var(--font-medium);
  text-align: center;
  font-weight: 400;
}
.content .member .list-member {
  margin-bottom: 3rem;
  text-align: center;
}
.content .member .list-member img {
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #f2f2f2;
  max-width: 250px;
}
.content .member .list-member > div:nth-child(2) {
  text-align: center;
}
.content .member .list-member > div:nth-child(2) strong {
  font-size: var(--font-medium);
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--color-heading);
}
.content .member .list-member > div:nth-child(2) span {
  font-size: var(--font-small);
  font-weight: 300;
  font-style: italic;
  display: block;
  padding-bottom: 1rem;
}
.content .member .list-member > div:nth-child(2) p {
  width: 90%;
  margin: 0 auto;
}
.content .contact > div:nth-child(1) {
  text-align: center;
}
.content .contact > div:nth-child(1) .google-map {
  border: 1px solid var(--color-secondary);
  padding: 0.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}
.content .contact > div:nth-child(1) .google-map iframe {
  max-width: 100%;
  max-height: 300px;
  border-radius: 10px;
}
.content .contact .address {
  margin-bottom: 3rem;
}
.content .contact .address h3 {
  text-align: left;
  color: var(--color-primary);
}
.content .contact .address ul {
  margin-top: 1rem;
}
.content .contact .address ul li {
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0.5rem 0 1rem;
}
.content .contact .address ul li svg {
  margin-right: 0.5rem;
  fill: var(--color-heading);
}
.content .contact .address ul li:nth-child(1) {
  align-items: baseline;
}
.content .contact .address ul li:nth-child(1) svg {
  padding-top: 4px;
  width: 15px;
  margin-right: 0.6rem;
  margin-left: 0.2rem;
}
.content .contact form {
  margin-bottom: 4rem;
}
.content .contact form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.content .contact form div label {
  font-size: var(--font-normal);
  font-weight: 300;
}
.content .contact input,
.content .contact textarea {
  border-radius: 1rem;
  font-size: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-subtext);
  color: var(--color-black);
  font-weight: 300;
  text-align: left;
  margin-bottom: 0.8rem;
  margin-top: 0.7rem;
}
.content .contact textarea {
  border-radius: 1rem;
}
.content .contact button {
  background: var(--color-secondary);
  color: var(--color-white);
  width: 100%;
  padding: 0.8rem 1rem;
  text-transform: uppercase;
  font-size: var(--font-normal);
  border-radius: 3rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.8s;
}
.content .navigasi {
  margin: 4rem 0 4.5rem;
}
.content .navigasi table {
  margin: 0 auto;
}
.content .navigasi .default_page,
.content .navigasi a.page_link {
  text-decoration: none;
  font-size: var(--font-normal);
  padding: 3px;
  color: var(--color-grey);
  padding-left: 9px;
  padding-right: 9px;
  padding-bottom: 1px;
  margin: 2px;
  margin-right: 2px;
  line-height: 16px;
  display: inline-block;
  font-weight: 300;
}
.content .navigasi .selected_page,
.content .navigasi a.page_link:hover {
  text-decoration: none;
  color: var(--color-white);
  padding: 5px 10px;
  background: var(--color-primary);
  margin: 2px;
  line-height: 16px;
  border-radius: 17px;
  display: inline-block;
  font-size: var(--font-normal);
}
.content .faq {
  margin-bottom: 2.5rem;
}
.content .faq ul {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.content .faq ul li {
  display: flex;
  flex-direction: row;
  font-size: var(--font-normal);
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.content .faq ul li img {
  width: 14px;
  height: 17px;
  margin-right: 0.8rem;
  padding-top: 0.5rem;
  display: inline-block;
}
.content .faq > div:nth-child(1) {
  display: none;
}
.content .faq > div:nth-child(2) {
  line-height: 2.2rem;
  margin-top: 0;
}
.content .faq > div:nth-child(2) h3:nth-child(1) {
  margin-top: 0;
}
.content .faq > div:nth-child(2) h3 {
  margin-top: 2rem;
}

.float-link {
  position: fixed;
  bottom: 2.2rem;
  right: 1.2rem;
  z-index: 99;
}
.float-link a {
  display: inline-block;
  background: var(--color-secondary);
  color: white;
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 1rem;
  font-size: var(--font-small);
}
.float-link a span {
  font-size: var(--font-medium);
  text-transform: uppercase;
  font-weight: 700;
}

.float-link:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-width: 0 20px 15px 0;
  border-color: transparent var(--color-secondary) transparent transparent;
  bottom: -10px;
  left: 84%;
  margin-left: -10px;
}

footer {
  border-top: 3px solid var(--color-secondary);
  margin: 0 30px;
  padding-top: 3.5em;
  margin-bottom: 5rem;
  color: var(--color-grey);
}
footer img {
  max-width: 80px;
}
footer .left-foot {
  text-align: center;
}
footer .left-foot .foot-logo ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
footer .left-foot .foot-logo ul li {
  margin: 0.5rem;
}
footer .left-foot .address ul {
  margin-top: 1rem;
}
footer .left-foot .address ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0.5rem 0 1rem;
}
footer .left-foot .address ul li svg {
  margin-right: 0.5rem;
  fill: var(--color-heading);
}
footer .left-foot .address ul li:nth-child(1) {
  align-items: baseline;
}
footer .left-foot .address ul li:nth-child(1) svg {
  width: 15px;
  padding-top: 5px;
}
footer .right-foot {
  margin-top: 3rem;
}
footer .right-foot .foot-menu ul {
  text-align: center;
}
footer .right-foot .foot-menu ul li {
  margin: 1rem 0;
}
footer .right-foot .foot-menu ul li a {
  font-size: var(--font-small);
  font-weight: 300;
}
footer .right-foot .foot-menu ul li .bold {
  color: var(--color-primary);
  font-weight: 500;
}
footer .right-foot .foot-menu ul li .important {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
}
footer .right-foot .last-foot {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
}
footer .right-foot .last-foot .whatap {
  background-color: var(--color-thirdary);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
}
footer .right-foot .last-foot .whatap svg {
  margin-right: 0.5rem;
}
footer .right-foot .last-foot .copyright {
  font-size: var(--font-x-small);
  text-align: center;
}
footer .right-foot .last-foot .copyright a {
  color: var(--color-black);
  font-weight: 500;
  text-decoration: underline;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 3rem;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -10px);
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -10px);
  right: auto;
}

.swiper-button-prev,
.swiper-button-next {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-alternative);
  border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.1rem;
  color: var(--color-white);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  background: var(--color-white);
  border: 1px solid #dddddd;
}

.swiper-button-prev.swiper-button-disabled:after,
.swiper-button-next.swiper-button-disabled:after {
  color: var(--color-heading);
}

.swiper-slide {
  text-align: left;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0.8rem 0.8rem 3rem 0.8rem;
  border: 1px solid #f2f2f2;
  border-radius: 20px;
  font-size: var(--font-small);
  color: var(--color-grey);
}
.swiper-slide .content {
  padding: 1.3rem 1rem 0rem 1rem;
  max-width: 100%;
}
.swiper-slide .content h5 {
  font-size: var(--font-normal);
  color: var(--color-grey);
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01rem;
}
.swiper-slide .content ul {
  display: flex;
  padding: 0.5rem 0;
}
.swiper-slide .content ul li {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-size: var(--font-small);
  font-weight: 300;
}
.swiper-slide .content ul li svg {
  margin-right: 0.5rem;
}
.swiper-slide .content p {
  font-size: var(--font-small);
  color: var(--color-grey);
  display: flex;
  align-items: center;
}
.swiper-slide .content p span {
  font-size: var(--font-small);
  color: var(--color-black);
  font-weight: 500;
  display: inline-block;
  margin-left: 0rem;
  margin-right: 0.3rem;
}
.swiper-slide .content .book {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: 40px;
  position: absolute;
  right: 1.3rem;
  bottom: -1rem;
  z-index: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) {
  .main-img {
    text-align: center;
  }
  .main-img img {
    width: calc(100% - 5rem);
  }
  .content .list-tour {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    grid-row-gap: 15px;
    margin-bottom: 4rem;
  }
  .content .list-tour .swiper-slide {
    margin: 0;
  }
  .content .member {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-row-gap: 15px;
  }
  .content .contact > div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .content .contact > div:nth-child(1) ul li {
    text-align: left;
  }
  .content .contact > div:nth-child(1) .google-map {
    margin-right: 1rem;
    max-width: 400px;
  }
  .content .contact > div:nth-child(1) .google-map iframe {
    height: 200px;
  }
  .content .contact > div:nth-child(1) > div:nth-child(2) {
    margin-left: 1rem;
  }
  .content .contact > div:nth-child(2) {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  .content .contact > div:nth-child(2) h2 {
    text-align: center;
  }
  .content .contact > div:nth-child(2) form {
    width: 600px;
    margin: 0 auto;
  }
  .content .gallery-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 992px) {
  header {
    padding: 20px 40px 30px;
    padding-bottom: 10px;
  }
  header .logo {
    max-width: 250px;
    transition: all 0.5s;
  }
  header .logo-small {
    max-width: 155px;
  }
  header nav > ul {
    position: relative;
    width: auto;
    height: auto;
    opacity: 1;
    left: auto;
    padding: 0;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header nav > ul > li {
    margin-left: 1.5rem;
  }
  header nav .menu-icon {
    display: none;
  }
  .main {
    display: flex;
    flex-direction: row-reverse;
    padding: 50px 40px 30px;
    margin-bottom: 2rem;
  }
  .main > div {
    width: 50%;
  }
  .main .content {
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .main .content .sec-middle {
    flex-direction: row;
    justify-content: start;
  }
  .main .content .sec-middle a {
    width: auto;
    padding: 0.6rem 1.5rem;
    margin-right: 1rem;
  }
  .main .content .sec-bottom {
    justify-content: start;
    margin-top: 2rem;
  }
  .main .content .sec-bottom a {
    margin: 0px;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  .main .content .sec-foot {
    justify-content: start !important;
  }
  .main .content .sec-foot * {
    margin: 0 1rem;
  }
  .main .content .sec-foot a {
    margin: 0;
  }
  .main .main-img {
    justify-content: end;
    display: flex;
    align-items: center;
  }
  .main .main-img img {
    width: calc(100% - 2rem);
  }
  .content {
    padding: 50px 40px 30px;
    padding-bottom: 0;
  }
  .content .slide-tour {
    margin-bottom: 3rem;
  }
  .content .slide-tour .header {
    text-align: left;
  }
  .content .slide-tour .nav-slide {
    position: absolute;
    right: 15px;
    top: 2.2rem;
  }
  .content .slide-tour .nav-slide .swiper-button-prev,
  .content .slide-tour .nav-slide .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -80px);
    right: auto;
  }
  .content .masonry {
    margin-bottom: 5rem;
  }
  .content .testimonial {
    margin-bottom: 5rem;
  }
  .content .testimonial > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: calc(100% - 8rem);
    margin: 0 auto;
  }
  .content .testimonial > div .photo {
    display: flex;
  }
  .content .testimonial > div .photo img {
    border-radius: 250px;
  }
  .content .testimonial > div div:nth-child(2) {
    justify-content: start;
    flex-direction: column;
    display: flex;
    text-align: left;
    margin-left: 2rem;
  }
  .content .testimonial > div div:nth-child(2) p {
    margin-left: 0;
    width: 100%;
  }
  .content .testimonial > div div:nth-child(2) .title {
    margin-bottom: 0;
  }
  .content .tour-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .content .tour-detail > div:nth-child(1) {
    width: calc(50% - 2rem);
  }
  .content .tour-detail > div:nth-child(2) {
    width: 50%;
  }
  .content .main-desc {
    margin-bottom: 3rem;
  }
  .content .tour-desc {
    flex-direction: row;
    align-items: start;
  }
  .content .tour-desc .left {
    width: 35%;
    padding-right: 2rem;
  }
  .content .tour-desc .left h3 {
    margin-top: 0 !important;
  }
  .content .tour-desc .left .gallery-img {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .content .tour-desc .right {
    margin-top: 0;
    width: 65%;
  }
  .content .tour-desc .right .top {
    margin-top: 0;
  }
  .content .tour-desc .right h2 {
    margin-top: 0 !important;
  }
  .content .tour-desc .right .r-detail {
    margin-bottom: 2rem;
  }
  .content .tour-desc .right .r-detail img {
    max-width: 200px;
    max-height: 1000px;
  }
  .content .tour-desc .right .r-detail > div {
    display: flex;
  }
  .content .tour-desc .right .r-detail > div div {
    margin-right: 1.5rem;
    padding-top: 0rem;
  }
  .content .activities {
    flex-direction: column-reverse !important;
    justify-content: space-between;
  }
  .content .activities .left {
    width: calc(100% - 0rem);
    padding-right: 0;
  }
  .content .activities .left .gallery-img {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .content .activities .left .masonry {
    -moz-column-count: 3;
         column-count: 3;
  }
  .content .activities .left .masonry img {
    border-radius: 30px;
  }
  .content .activities .right {
    width: calc(100% - 0rem);
    display: flex;
    flex-direction: row;
  }
  .content .activities .right .list-baris ul {
    display: flex;
    flex-wrap: wrap;
  }
  .content .activities .right .list-baris ul li {
    width: 33.33%;
  }
  .content .activities .right h3 {
    margin-top: 0;
  }
  .content .activities .right > div:nth-child(2) {
    margin-left: 4rem;
  }
  .content .list-tour {
    grid-template-columns: repeat(3, 1fr);
  }
  .content .about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
  }
  .content .about > div:nth-child(1) {
    margin-right: 1rem;
  }
  .content .about > div:nth-child(2) {
    margin-left: 1rem;
  }
  .content .about > div:nth-child(2) h3 {
    text-align: left;
  }
  .content .about > div:nth-child(2) p {
    text-align: left;
  }
  .content .faq > div:nth-child(2) {
    margin-left: 0;
  }
  footer {
    display: flex;
    justify-content: space-between;
    margin: 20px 40px 30px;
    margin-bottom: 5rem;
  }
  footer img {
    max-width: 73px;
  }
  footer .left-foot {
    display: flex;
    flex-direction: row;
    align-items: end;
  }
  footer .left-foot .foot-logo ul li {
    margin-bottom: 0;
  }
  footer .left-foot .address {
    max-width: 500px;
    padding-right: 1rem;
  }
  footer .left-foot .address ul {
    display: flex;
    justify-content: start;
    flex-direction: column;
    margin: 0 0 0 1rem;
  }
  footer .left-foot .address ul li {
    justify-content: start;
    margin: 1rem 0 0 0;
  }
  footer .left-foot .address ul li:nth-child(3) {
    margin-bottom: 0.18rem;
  }
  footer .left-foot .address ul li:nth-child(1) {
    text-align: left;
  }
  footer .right-foot {
    display: flex;
    flex-direction: row;
    align-items: end;
    margin: 0;
  }
  footer .right-foot .foot-menu {
    display: flex;
  }
  footer .right-foot .foot-menu ul:nth-child(1) {
    margin-right: 1rem;
  }
  footer .right-foot .foot-menu ul {
    text-align: left;
  }
  footer .right-foot .foot-menu ul li {
    margin: 1rem 0;
  }
  footer .right-foot .foot-menu ul li:last-child {
    margin-bottom: 0.15rem;
  }
  footer .right-foot .foot-menu .important-1 {
    color: var(--color-grey);
    padding: 0.6rem 1.5rem 0.6rem 0rem;
    border-radius: 30px;
    display: inline-block;
  }
  footer .right-foot .last-foot {
    margin: 0;
    align-items: end;
  }
  footer .right-foot .last-foot .whatap {
    margin-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1200px) {
  .main .content .sec-bottom {
    margin-top: 5rem;
  }
  .testimonial {
    max-width: 1000px;
    margin: 0 auto;
  }
  .content .tour-detail {
    margin-bottom: 3rem;
  }
  .content .tour-desc .right .r-detail img {
    max-width: 300px;
  }
  .content .tour-desc .right .r-detail p {
    padding-top: 0rem;
  }
  .content .list-tour {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    grid-row-gap: 2.5rem;
  }
  .content .member {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-row-gap: 15px;
  }
  footer .left-foot .address {
    margin-left: 3rem;
  }
  footer .right-foot {
    width: 622px;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1366px) {
  .main,
  .content,
  footer {
    width: 1300px;
    margin: 0 auto;
  }
  footer {
    margin-bottom: 5rem;
  }
  header nav {
    width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .content .list-tour {
    grid-template-columns: repeat(4, 1fr);
    gap: 15pxrem;
    grid-row-gap: 2.5rem;
  }
  .content .list-tour .swiper-slide {
    max-width: 293px;
  }
  .content .member {
    margin-bottom: 2rem;
  }
}/*# sourceMappingURL=style.css.map */