/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
/* End Reset */

/* Smooth Scrool */
html {
  scroll-behavior: smooth;
  transition: all 2s;
}
/* Smooth Scrool */

/* font */
@font-face {
  font-family: "Montserrat-Regular", "Montserrat-SemiBold",
    "Montserrat-ExtraBold";
  src: url(../../../vendor/font_montserrat/Montserrat-Regular.ttf);
  src: url(../../../vendor/font_montserrat/Montserrat-SemiBold.ttf);
  src: url(../../../vendor/font_montserrat/Montserrat-ExtraBold.ttf);
}
/* font */

/* body */
Body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}
/* End Body */

/* Header Section */

/* header */
header {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/jumbo/hero.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
/* End Header */

/* navbar */
.navbar {
  position: fixed;
  width: 100%;
  height: 200px;
  /* background-color: aqua; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 1s;
  z-index: 11;
}

header .navbar img {
  margin-left: 5%;
  height: 80%;
  z-index: 9999;
  transition: all 1s;
}

/* header .navbar img:hover {
  transform: rotate(720deg);
} */

.navbar .nav {
  display: flex;
  justify-content: space-evenly;
  width: 60%;
  /* background-color: blueviolet; */
}

.navbar .nav ul {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  /* background-color: chartreuse; */
}

.navbar .nav ul li {
  transition: all 0.2s;
}

.navbar .nav ul li a {
  color: #fff;
  font-size: 20px;
  text-shadow: 2px 2px 3px rgb(0, 0, 0);
}

.navbar .nav ul li:hover {
  margin-top: -5px;
}

.navbar .nav ul li a:hover {
  color: #fff;
  font-size: 20px;
  text-shadow: 1px 1px 1px rgb(0, 0, 0);
}

.navbar .hamburger {
  /* background-color: chocolate; */
  width: 28px;
  height: 28px;
  margin-right: 7%;
  display: none;
}

.navbar .hamburger .label {
  width: 28px;
  height: 28px;
}

.navbar .hamburger input {
  position: relative;
  width: 28px;
  height: 28px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}

.navbar .hamburger .toogle {
  position: relative;
  margin-top: -33px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 28px;
  height: 28px;
  /* background-color: chartreuse; */
}

.navbar .hamburger .satu {
  width: 100%;
  height: 4px;
  background-color: #fff;
  /* transform-origin: 0 0; */
  transition: all 0.6s;
  border-radius: 2px;
}

.navbar .hamburger .dua {
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.6s;
}

.navbar .hamburger .tiga {
  width: 100%;
  height: 4px;
  background-color: #fff;
  /* transform-origin: 0 100%; */
  transition: all 0.6s;
  border-radius: 2px;
}

/* Animation Toogle */
input[type="checkbox"]:checked + .toogle .satu {
  transform: translateY(150%) rotate(45deg);
}

input[type="checkbox"]:checked + .toogle .dua {
  transform: scale(0);
}

input[type="checkbox"]:checked + .toogle .tiga {
  transform: translateY(-150%) rotate(45deg);
}

/* End Animation Toogle */

/* Animation Up Navbar */
.navbar.sticky {
  height: 80px;
  background-color: rgba(225, 225, 225, 0.5);
}

/* .navslide.slide {
  right: 0;
  opacity: 100%;
} */

.navbar .nav ul.slide {
  right: 0;
  opacity: 80%;
}

/* End Animation Up Navbar */

/* End Navbar */

/* Hero */
.hero {
  position: relative;
  top: 70%;
  left: 5%;
  /* background-color: blueviolet; */
}

.hero .awal {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 1px;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.hero .akhir {
  color: gold;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 1px;
  word-spacing: 1px;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.hero p {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  word-spacing: 1px;
  text-shadow: 3px 3px 3px rgb(0, 0, 0);
}

.open {
  position: fixed;
  display: flex;
  justify-content: right;
  align-items: center;
  /* background-color: rgb(255, 98, 0); */
  width: 170px;
  top: 90%;
  right: 10px;
  z-index: 100;
  transition: all 0.2s;
}

.open a {
  display: flex;
  align-items: center;
  /* background-color: brown; */
}

.open a:hover p {
  opacity: 100%;
  transform: translateX(0);
}

.open a:hover img {
  width: 52px;
}

.open p {
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
  font-size: 20px;
  opacity: 0;
  transition: all 0.6s;
  transform: translateX(20px);
}

.open img {
  width: 50px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgb(0, 0, 0);
  margin: 0px 0px 0px 20px;
  transition: all 0.2s;
}

/* End Hero */

/* End Header Section*/

/* About Section */
.about-section {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(
      rgba(255, 98, 0, 0.9),
      rgba(255, 98, 0, 0.9)
    ),
    url(../img/jumbo/default2.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.about-section .about {
  width: 45%;
  height: 60%;
  /* background-color: rgba(255, 145, 0, 0.8); */
  padding: 30px;
  color: #fff;
}

.about-section .about .title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.about-section .about .desc {
  font-size: 15px;
  word-spacing: 1px;
}

.about-section .about .desc p {
  text-align: justify;
}

.about-section .about .desc b {
  color: rgb(51, 98, 255);
  background: gold;
  border-radius: 5px;
}

.about-section .about .desc .adv p {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 10px;
}

.about-section .frame-satu {
  position: relative;
  width: 45%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  /* background-color: aquamarine; */
}

/* .about-section .frame-satu:hover {
  width: 50%;
  height: 65%;
} */

.about-section .frame-satu .frame-dua {
  position: relative;
  width: 92%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.6s;
}

.about-section .frame-satu .frame-dua:hover {
  width: 100%;
  height: 100%;
}

.about-section .frame-satu .frame-dua .frame-tiga {
  position: relative;
  width: 96%;
  height: 94%;
  background-color: rgb(0, 0, 0);
  overflow: hidden;
}

.about-section .frame-satu .frame-dua .frame-tiga img {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  transition: all 0.6s;
  object-fit: cover;
}

.about-section .frame-satu .frame-dua .frame-tiga img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* End About Section */

/* Menu Section */
.menu-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(../img/jumbo/default.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.menu-section .judul-menu {
  width: 90%;
  /* background-color: royalblue; */
  padding: 130px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-section .judul-menu .strip {
  width: 10%;
  height: 2px;
  background-color: #fff;
}

.menu-section .judul-menu .judul {
  color: rgb(255, 98, 0);
  font-size: 35px;
  font-weight: 600;
  margin: 0 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.menu-section .judul-menu .judul p {
  text-shadow: 20px 20px 20px rgb(0, 0, 0);
}

.menu-section .nav-menu {
  width: 95%;
  /* background-color: aqua; */
}

.menu-section .nav-menu ul {
  display: flex;
  justify-content: center;
}

.menu-section .nav-menu ul li {
  margin: 0px 20px;
  transition: all 0.3s;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
  cursor: pointer;
}

.menu-section .nav-menu ul li.active {
  color: rgb(255, 98, 0);
}

.menu-section .nav-menu ul li:hover {
  transform: translate(0, -3px);
}

.menu-section .menu-galeri {
  width: 90%;
  height: 90%;
  /* background-color: chartreuse; */
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.6s;
}

.menu-section .menu-galeri .box-menu {
  margin: 20px 10px;
  /* width: 250px; */
  /* height: 310px; */
  width: 22%;
  height: 310px;
  background-color: rgba(225, 225, 225, 0.5);
  box-shadow: 10px 10px 5px rgb(0, 0, 0);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  /* padding: 5px; */
  transition: all 1s;
}

.menu-section .menu-galeri .box-menu:hover {
  background-color: rgba(255, 98, 0, 0.9);
}

.menu-section .menu-galeri .box-menu .image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 70%;
  border-radius: 10px;
  /* background-color: royalblue; */
  transition: all 0.3s;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgb(0, 0, 0);
}

.menu-section .menu-galeri .box-menu .tag {
  width: 90%;
  height: 20%;
  border-radius: 10px;
  /* background-color: seagreen; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-section .menu-galeri .box-menu:hover .image {
  width: 100%;
  height: 75%;
  box-shadow: 0 10px 5px rgb(0, 0, 0);
}

.menu-section .menu-galeri .box-menu:hover img {
  transform: scale(1.05);
}

.menu-section .menu-galeri .box-menu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s;
}

.menu-section .menu-galeri .box-menu p {
  color: #fff;
  text-shadow: 2px 2px 2px rgb(0, 0, 0);
  text-align: center;
}

/* End Menu Section */

/* price section */

.price-container {
  width: 100%;
  padding: 30px 0;
  background-color: rgb(255, 98, 0);
}

.price-container .judul-price {
  width: 100%;
  /* background-color: royalblue; */
  padding: 130px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-container .judul-price .strip {
  width: 10%;
  height: 2px;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.price-container .judul-price .judul {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin: 0 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.price-container .judul-price .judul p {
  text-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.price-section {
  background-color: rgb(255, 98, 0);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  /* height: 1000px; */
  padding: 30px 0;
}

.price-section .price-row {
  /* background-color: blueviolet; */
  margin: 20px 0;
  width: 90%;
  display: flex;
  justify-content: space-between;
}

.price-section .price-row .price-column {
  border-radius: 20px;
  /* background-color: rgba(30, 218, 139, 0.8); */
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2); */
  width: 48%;
  padding-bottom: 20px;
}

.price-section .price-row .price-column .price-column-wrap {
  background-color: rgba(225, 225, 225, 0.2);
  width: 100%;
  padding-bottom: 20px;
  border-radius: 20px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.price-section .price-row .price-column .price-header {
  position: relative;
  border-radius: 20px;
  padding: 10px;
  background-color: rgba(225, 225, 225, 0.8);
  box-shadow: 5px 5px 5px rgb(0, 0, 0);
}

.price-section .price-row .price-column .price-header .price-head {
  position: relative;
  display: flex;
  /* background-color: darkslategray; */
}

.price-section .price-row .price-column .price-header .price-head .descripe {
  overflow: hidden;
  position: relative;
  /* background-color: seagreen; */
  width: 20%;
  padding: 5px;
}

.price-section .price-row .price-column .price-header .price-head .descripe1 {
  /* background-color: salmon; */
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe
  .logo {
  width: 100px;
  height: 100px;
  left: 0;
  /* background-color: deeppink; */
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 2px 2px 2px rgb(0, 0, 0);
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe
  .logo
  img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe1
  .price-name {
  width: 75%;
  /* background-color: sienna; */
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: rgb(255, 98, 0);
  font-family: "Caveat", cursive;
  font-weight: 700;
  letter-spacing: 1px;
  word-spacing: 1px;
  font-size: 30px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe1
  .price-name
  p::after {
  margin-top: 5px;
  font-weight: 400;
  content: " ........................................................................";
  position: absolute;
  z-index: 3;
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe1
  .nominal {
  width: 25%;
  position: relative;
  z-index: 3;
  height: 100%;
  /* background-color: steelblue; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  font-size: 14px;
}

.price-section
  .price-row
  .price-column
  .price-header
  .price-head
  .descripe1
  .nominal
  .idr {
  font-family: "Caveat", cursive;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.price-section .price-row .price-column .price-menu {
  font-weight: 400;
  letter-spacing: 1px;
  word-spacing: 1px;
  top: 10px;
  /* background-color: rgba(225, 225, 225, 0.7); */
  border-radius: 20px;
  /* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); */
  padding: 5px 20px;
  transition: all 1s;
  display: none;
  font-family: "Caveat", cursive;
  font-size: 20px;
  font-weight: 600;
}

.price-section .price-row .price-column .price-menu.show {
  position: relative;
  transition: all 1s;
  display: block;
}

.price-section .price-row .price-column .price-menu .pm-head {
  padding: 10px 20px;
  /* background-color: tomato; */
}

.price-section .price-row .price-column .price-menu .pm-head .pm-row {
  /* background-color: teal; */
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}

.price-section .price-row .price-column .price-menu .pm-head .pm-row .pm-name {
  overflow: hidden;
  position: relative;
  /* background-color: blue; */
  width: 75%;
}

.price-section
  .price-row
  .price-column
  .price-menu
  .pm-head
  .pm-row
  .pm-name
  p::after {
  position: absolute;
  z-index: 2;
  content: ".............................................................................................";
}

.price-section
  .price-row
  .price-column
  .price-menu
  .pm-head
  .pm-row
  .pm-nominal {
  display: flex;
  justify-content: right;
  position: relative;
  /* background-color: blueviolet; */
  width: 25%;
}

.price-section
  .price-row
  .price-column
  .price-menu
  .pm-head
  .pm-row
  .pm-nominal
  .idr {
  position: absolute;
  /* background-color: salmon; */
  bottom: 0;
}

.price-section .price-row .price-column .button {
  top: 10px;
  overflow: hidden;
  position: relative;
  height: 40px;
  /* background-color: cyan; */
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.price-section .price-row .price-column .button .btn-border {
  padding: 20px 30px;
  position: relative;
  /* background-color: rgba(0, 0, 0, 0.5); */
  border-radius: 20px;
}

/* Row 1 */

.price-section .price-row .price-column .button .btn-border .btn-show1 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show1.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide1 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide1.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show2 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show2.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide2 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide2.show {
  display: inline;
}

/* End Row 1 */

/* Row 2 */

.price-section .price-row .price-column .button .btn-border .btn-show3 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show3.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide3 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide3.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show4 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show4.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide4 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide4.show {
  display: inline;
}

/* End Row 2 */

/* Row 3 */

.price-section .price-row .price-column .button .btn-border .btn-show5 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show5.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide5 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide5.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show6 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show6.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide6 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide6.show {
  display: inline;
}

/* End Row 3 */

/* Row 4 */

.price-section .price-row .price-column .button .btn-border .btn-show7 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show7.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide7 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide7.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show8 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show8.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide8 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide8.show {
  display: inline;
}

/* End Row 4 */

/* Row 5 */

.price-section .price-row .price-column .button .btn-border .btn-show9 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show9.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide9 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide9.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show10 {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show10.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide10 {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide10.show {
  display: inline;
}

/* End Row 5 */

/* Row 6 */

.price-section .price-row .price-column .button .btn-border .btn-show-a {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show-a.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-a {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-a.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show-b {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show-b.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-b {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-b.show {
  display: inline;
}

/* End Row 6 */

/* Row 7 */

.price-section .price-row .price-column .button .btn-border .btn-show-c {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show-c.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-c {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-c.show {
  display: inline;
}

.price-section .price-row .price-column .button .btn-border .btn-show-d {
  padding: 5px;
  display: inline;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-show-d.hide {
  display: none;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-d {
  padding: 5px;
  display: none;
  /* color: black; */
  cursor: pointer;
}

.price-section .price-row .price-column .button .btn-border .btn-hide-d.show {
  display: inline;
}

/* End Row 7 */

/* End Price Section */

/* Galery section */

.galeri-section {
  width: 100%;
  background-color: rgb(31, 27, 27);
  padding: 30px 0;
}

.galeri-section .judul-galeri {
  width: 100%;
  /* background-color: royalblue; */
  padding: 130px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.galeri-section .judul-galeri .strip {
  width: 10%;
  height: 2px;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.galeri-section .judul-galeri .judul {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin: 0 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.galeri-section .judul-galeri .judul p {
  text-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.galeri-section .galeri-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80%;
  /* background-color: cyan; */
  margin: auto;
}

.galeri-section .galeri-content .clear {
  width: 100%;
  height: 100px;
  color: #fff;
}

.galeri-section .galeri-content .frame {
  width: 33%;
  height: 250px;
  /* background-color: blueviolet; */
  margin: 1px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galeri-section .galeri-content .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.galeri-section .galeri-content .frame img:hover {
  width: 150%;
  height: 150%;
}

/* End Galery section */

/* Contact section */

.contact-section .judul-contact {
  width: 100%;
  /* background-color: royalblue; */
  padding: 130px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.contact-section .judul-contact .strip {
  width: 10%;
  height: 2px;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.contact-section .judul-contact .judul {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin: 0 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
}

.contact-section .judul-contact .judul p {
  text-shadow: 3px 3px 5px rgb(0, 0, 0);
}

.contact-section {
  width: 100%;
  background-color: rgb(255, 98, 0);
}

.contact-section .contact-content {
  width: 90%;
  padding-bottom: 50px;
  /* background-color: violet; */
  margin: auto;
}

.contact-section .contact-content .map {
  border-radius: 30px;
}

.before-footer {
  width: 100%;
  background-color: rgb(31, 27, 27);
  display: flex;
  justify-content: space-between;
  padding: 0px 50px 100px;
  border-bottom: 1px solid rgb(134, 130, 130);
}

.before-footer .info {
  width: 33.3%;
  /* background-color: turquoise; */
  padding: 50px 10px;
}

.before-footer .info .judul {
  /* background-color: yellow; */
  padding: 10px;
  font-size: 20px;
  letter-spacing: 1px;
  word-spacing: 1px;
  color: rgb(255, 98, 0);
}

.before-footer .info .isi {
  /* background-color: yellowgreen; */
  color: #fff;
  padding: 10px;
  font-size: 15px;
  letter-spacing: 1px;
  word-spacing: 1px;
  line-height: 25px;
}

.before-footer .info .isi .kontak {
  width: 100%;
  /* background-color: wheat; */
  display: flex;
  color: #fff;
}

.before-footer .info .isi .owner {
  display: flex;
  justify-content: left;
  align-items: center;
  /* background-color: royalblue; */
}

.before-footer .info .isi .owner .data {
  display: flex;
  flex-direction: column;
  /* background-color: rgba(225, 225, 225, 0.8); */
  margin-left: 20px;
}

.before-footer .info .isi .foto {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgb(255, 98, 0);
}

.before-footer .info .isi .foto img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  letter-spacing: 1px;
  word-spacing: 1px;
  font-size: 15px;
  width: 100%;
  height: 70px;
  background-color: rgb(31, 27, 27);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* End Contact section */
