@charset "UTF-8";
:root {
  /* Full grid area variable */
  --rs-fullGrid: 1 / 1 / -1 / -1;
  --rs-body-font-family: poppins;
}

body {
  font-family: var(--rs-body-font-family);
  overflow-x: hidden;
}

#sntuk {
  background-color: #122203;
}

.header {
  display: grid;
  grid-template-rows: 100vh;
  overflow: hidden;
}
.video-bg {
  /* Span the full grid */
  grid-area: var(--rs-fullGrid);
  /* Re-size video to cover full screen while maintaining aspect ratio 
  min-width: 100%;*/
  min-height: 100%;
  max-width: 100vw;
  object-fit: cover;

  /* Display video below overlay */
  z-index: -1;
}

.video-bg::-webkit-media-controls {
  display: none !important;
}

.hero {
  /* Span the full grid */
  grid-area: var(--rs-fullGrid);
  /* Center Content */
  display: grid;
  justify-content: center;
  align-content:flex-end;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
  color: #ffffff;
  /*background-image: url(../png/kalsin-new.jpg);
  background-repeat: no-repeat;
  background-size: cover;*/
  }

.logo {
  width: 10rem;
  margin-left:-45px;
}

.call {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #cd3d15;
  padding: 10px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 11px 32px 7px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0px 11px 32px 7px rgba(0,0,0,0.25);
  box-shadow: 0px 11px 32px 7px rgb(0 0 0 / 25%);
}

.call a img { height:32px;}

.hero > .section > h2 {
  color: #fff;
  text-transform: lowercase;
}
.hero > .section > h2 > span.rotate {
  display: inline-block;
  font-size: 2rem;
  transform: rotate(90deg);
  margin-right: 45px;
  margin-top: 50px;
}
.hero > .section > h2 > span {
  font-size: 6rem;
  font-weight: 900;
  line-height: 9rem;
}

.abt {
  margin-top: -100px;
  background-image: linear-gradient(rgba(18,34,3,0.1), rgba(18,34,3,1));
}
.section {
  padding: 40px 30px;
  overflow: hidden;
}

.section .input {
  color: #122203;
}

.section h2, .section h3, .section p { color: #fff;}

.pckg, .blg {
  padding: 40px 0;
}
.pckg h2, .pckg h3, .blg h2, .blg h3  {
  margin: 10px 30px;
}


.section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 2.5rem;
  text-transform: uppercase;
}
.section h3 {
  font-size: 0.9rem;
}
.about {
  text-align: left;
  color: #fff;
  line-height: 2rem;
}
.package {
  list-style: none;
  padding: 0;
  margin: 60px 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;

}
.package li {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-right: 20px;
  min-width: 260px;
}

.package li:first-child {
  margin-left: 30px;
}

.package li img {
  width: 100%;
  height: auto;
}
.package li h2 {
  color: #1C75BC;
  margin: 20px 0 5px 0;
  font-size: 1.9rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-transform: lowercase;
}
.package li p {
  color: #f05227;
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.package > li > a {
  text-decoration: none;
}






.accomodation {
  list-style: none;
  padding: 0;
  margin: 60px 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  flex-flow: row;
  overflow-x: auto;

}
.accomodation li {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-right: 20px;
  min-width: 300px;
}

.accomodation li:first-child {
  margin-left: 30px;
}

.accomodation li img {
  width: 100%;
  height: auto;
}
.accomodation li h2 {
  color: #1C75BC;
  margin: 20px 0 5px 0;
  font-size: 1.9rem;
  line-height: 1.8rem;
  font-weight: normal;
  text-transform: lowercase;
}
.accomodation li p {
  color: #f05227;
    margin: 0 0 10px 0;
    font-size: 1rem;
    line-height: 2rem;
    font-weight: 100;
    text-transform: uppercase;
}

.accomodation > li > a {
  text-decoration: none;
}

.accomodation .btn-green { display: block;}
.accomodation > li > a> div.price-tag {
  top: 200px;
}



.price-tag {
  --f: 10px; /* control the folded part*/
  --r: 15px; /* control the ribbon shape */
  --t: 310px; /* the top offset */
  
  position: absolute;
  inset: var(--t) calc(-1*var(--f)) auto auto;
  padding: 0 10px var(--f) calc(10px + var(--r));
  clip-path: 
    polygon(
      0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2));
  background: #f05227;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
}

.price-tag h2 { text-transform: lowercase;}
.price-tag .price {
  font-weight: bold;
  font-size: 1.3rem;
  margin: 10px 10px 0 10px;
  color: #fff;
  text-align: right;
}
.price-tag .price img {
  width: 24px;
  margin-top: -3px;
}

.price-tag p.person {
  color: white;
    font-size: 10px;
    margin: 0 20px 10px 0;
    padding: 0;
    text-align: right;
    line-height: 18px;
    text-transform: lowercase;
}
.todo {
  list-style: none;
  margin: 60px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.todo li {
 margin: 20px 40px 0 0;
 width: 114px;
}

.todo li div {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 24px;
}

.todo li p {
  text-align:center;
  font-weight: 900;
  margin: 10px 0;
  text-transform: uppercase;
}

.todo li img {
  width: 64px;
  height: 64px;
}

.sntk-media {
  margin: 60px 0;
}

.reach {
  list-style: none;
  margin: 60px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.reach li {
  width: 120px;
  margin: 20px 28px 0 0;
}
.reach p {
  margin: 20px 0;
  font-size: 1rem;
}

.dis {
  font-size: 1rem;
  font-weight: 700;
}

.blog {
  margin: 60px 0;
}

.pledge {
  margin: 60px 0;
}

.ptnr h2 {
  font-size: 1.5rem;
  width: 50vw;
  margin: 40px;
}

.ptnr { 
  padding: 40px 0;
}

.partner {
  list-style: none;
  margin: 60px 0;
  padding: 0;
  display: flex;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  overflow-x: auto;
}

.partner li {
  margin: 20px 40px 0 0;
}

.partner li:first-child {
  margin-left: 40px;
}

.partner li a {display: block;}

.partner li img {
  width: auto;
  height: 80px;
}
.plc {
  margin: 60px 0;
  padding: 30px 0;
}

.plc h2 {
  margin-left: 30px; width: 50vw;
}

.places {
  list-style: none;
  padding: 0;
  margin: 60px 0;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.places li {
  margin: 0 10px;
}

.places li:first-child {
  margin-left: 30px;
}
.places img {
  max-height: 150px;
  border: #fff 4px solid;
  border-radius: 5px;
}

.places p {
  text-align: center;
  color: #fff;
  text-decoration: none;
  margin: 20px;
}

.btn-grp {
display: flex;
}

.btn-grp > .btn-green:first-child {
  border-radius: 10px 0 0 10px;
}

.btn-grp > .btn-green:last-child {
  border-radius: 0px 10px 10px 0;
}
.btn-grp > .btn-wht:first-child {
  border-radius: 10px 0 0 10px;
}

.btn-grp > .btn-wht:last-child {
  border-radius: 0px 10px 10px 0;
}


.btn-green {
  box-sizing: border-box;

/* Auto layout */
padding: 10px 20px;
gap: 10px;

height: 44px;
text-transform: uppercase;
background: #94C11E;
border: 1px solid #7FA822;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
color: #fff;
text-decoration: none;
font-weight: 400;
/* Inside auto layout */

flex: none;
order: 2;
flex-grow: 0;
}

.btn-wht {
  box-sizing: border-box;

  /* Auto layout */
  height: 44px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #7FA822;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 400;
  /* Inside auto layout */
  text-transform: uppercase;
  flex: none;
  order: 2;
  flex-grow: 0;
}

 /*footer {
 display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}*/

.ft-mnu {
  list-style: none;
  color: #fff;
}

.ft-mnu li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 0;
  display: block;
}

.copy { 
  display: block;
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

footer.section h2 { font-size: 1.2rem;}

.social { 
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
}

.social li {
  margin-right: 20px;;
}

.social li img {
  width: 48px;
}

@media only screen and (min-width: 1023px) {
  .section {
    width: 1024px;
    margin: auto;
    overflow: visible;
  }
  .hero {
    /* Span the full grid */
    justify-content: center;
    align-content:flex-end;
    text-align: left;
  }
  .hero > .section > h2 > span.rotate {
    margin-left: 56px;
  }
  .logo {
    margin-left: 65px;
  }
  .package, .accomodation {
    overflow: visible;
  }
  .package li {
    min-width: 260px;
  }
  .accomodation li {min-width: 300px;}
  .reach li {
    width: 200px;
  }
  .video-bg {
    min-width: 100vw;
  }
}

.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-window > div {
  width: 100vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    height: 100vh;
    overflow: auto;
    max-width: 600px;
    max-height: 800px;
    overflow-x: hidden;
    color: black;
}
.modal-window header {
  font-weight: bold;
}
.modal-window h1 {
  font-size: 150%;
  margin: 0 0 15px;
}

.modal-close {
  color: rgb(255, 255, 255);
  /* line-height: 42px; */
  position: absolute;
  left: 5px;
  text-align: center;
  top: 5px;
  /* width: 70px; */
  text-decoration: none;
  background-color: #00000075;
  padding: 0 15px;
  font-size: 26px;
  border-radius: 129px;
}
.modal-close:hover {
  color: black;
}

.imgs {
  display: flex;
  overflow-x: auto;
}
.imgs img {
  width:90vw;
  border-right: 5px #f8f9fa solid;
  height: auto;
}

.modal-body {
  padding: 40px;
}

.modal-body h3 {
  font-size: 1.1rem;
    font-weight: 700;
    color: #1C75BC;
    margin: 20px 0;
}

.pckge-header {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 40px;
}

.pckge-ttle{
  width: 50%;
}
.pckge-ttle h2 {
  font-weight: 100;
  line-height: 1.8rem;
  font-size: 2rem;
}
.pckge-ttle h3, .pckge-prce em {
  color: #9b9b9b;
  font-size: 0.9rem;
  margin: 0;
  font-weight: normal;
}

.pckge-prce {
  text-align: right;
  width: 50%;
}
.pckge-prce p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f05227;
  margin: 0;
}
.modal-footer {
  padding: 20px;
  background-color: white;
  display: block;
  position: sticky;
  bottom: 0;
  -webkit-box-shadow: 0px -1px 5px 3px rgba(245,245,245,1);
  -moz-box-shadow: 0px -1px 5px 3px rgba(245,245,245,1);
  box-shadow: 0px -1px 5px 3px rgba(245,245,245,1);
}
.modal-footer > .btn-green {
  width: 100%;
  display: block;
  text-align: center;
}
.pledge {
  background-image: url("../png/pledge-bg.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.pledge .section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: stretch;
  justify-content: center;
}

.pledge-txt { max-width: 500px;}
.pledge-txt h2 { padding: 40px 0 10px 0;}
.pledge-txt h3 { padding: 0;}
.pledge-txt p { padding: 40px 0;}

.wa-btn { 
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 11px 32px 7px rgba(0,0,0,0.25);
-moz-box-shadow: 0px 11px 32px 7px rgba(0,0,0,0.25);
box-shadow: 0px 11px 32px 7px rgba(0,0,0,0.25);
}
.wa-btn img {height:42px;}