* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Vidaloka", serif;
  overflow-x: hidden;
}

h1 {
  font-size: 8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 1.5rem;
}

a,
li {
  font-size: 1.5rem;
  text-decoration: none;
}

h5 {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 1440px) {
  h1 {
    font-size: 6rem;
  }
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1rem;
  }
  a,
  li {
    font-size: 1rem;
    text-decoration: none;
  }
  h5 {
    font-size: 0.9rem;
  }
  p {
    font-size: 0.8rem;
    font-family: "Poppins", sans-serif;
  }
}

.horizontal-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo {
  padding: 0 3rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar .logo img {
  height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li {
  padding: 0 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.horizontal-navbar ul li a {
  color: #707070;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-container {
  position: fixed;
  top: 0;
  right: 30px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  z-index: 20;
}

.menu-container .hamburger-menu {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-container .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #4a4a4a;
  border-radius: 10px;
}

.vertical-navbar {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  z-index: 15;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.vertical-navbar ul {
  list-style: none;
  text-align: center;
}

.vertical-navbar ul li {
  padding: 1rem 0;
}

.vertical-navbar ul li a {
  color: #707070;
}

.active {
  top: 0;
}

@media screen and (max-width: 960px) {
  .horizontal-navbar ul {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.our-works {
  position: relative;
  width: 100%;
  margin: 10rem 0;
}

.our-works .heading {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.our-works .heading h2 {
  position: absolute;
  background-color: #fff;
  padding: 0 2rem;
}

.our-works .heading .yellow-line {
  width: 100%;
  height: 5px;
  background-color: #fcc85f;
}

.our-works .portofolio-filter {
  cursor: pointer;
  padding-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  list-style: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .portofolio-filter .links {
  padding: 0 2rem;
  color: #cba954;
}

.our-works .portofolio-filter .links:hover {
  color: #826e4c;
}

.our-works .portofolio-filter .active {
  color: #826e4c;
}

.our-works .container {
  position: relative;
  padding: 6rem 0;
  z-index: 2;
}

.our-works .container .row {
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.our-works .container .row .square-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #707070;
}

.our-works .container .row .square-image .image-1 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_1_Bw8NwdD959.jpg?updatedAt=1626944911192);
}

.our-works .container .row .square-image .image-3 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_3_rwISSKnr6.jpg?updatedAt=1626944897564);
}

.our-works .container .row .square-image .image-5 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_5_nRT_lyahC.jpg?updatedAt=1626944910686);
}

.our-works .container .row .square-image .image-7 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_7_DO8bCfSco.jpg?updatedAt=1626944913167);
}

.our-works .container .row .square-image .image-9 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_9_FIsDm7BP8.jpg?updatedAt=1626944914034);
}

.our-works .container .row .square-image .image-11 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio-11_wQDn70SOF.jpg?updatedAt=1626944911656);
}

.our-works .container .row .square-image .overlay {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .square-image .overlay .action {
  position: absolute;
  bottom: 10%;
  top: 10%;
  right: 10%;
  left: 10%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .square-image .overlay .action .action-text h4 {
  font-size: 1.2rem;
  color: #3e3e3e;
  padding: 0.6rem 0;
  font-family: "Vidaloka", serif;
}

.our-works .container .row .square-image .overlay .action .action-text button {
  background: none;
  outline: none;
  border: none;
}

.our-works .container .row .square-image .overlay .action .action-text button a {
  font-family: "Vidaloka", serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #bd4545;
}

.our-works .container .row .square-image .overlay:hover .action {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.our-works .container .row .rectangle-image {
  width: 100%;
  aspect-ratio: 1/2;
  background-color: #707070;
}

.our-works .container .row .rectangle-image .image-2 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_2_kM6vspItb.jpg?updatedAt=1626944899890);
}

.our-works .container .row .rectangle-image .image-4 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_4_R0f8i83t1.jpg?updatedAt=1626944897288);
}

.our-works .container .row .rectangle-image .image-6 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_6_kIl_miZTi.jpg?updatedAt=1626944902834);
}

.our-works .container .row .rectangle-image .image-8 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio_8_efNxld5XT.jpg?updatedAt=1626944908505);
}

.our-works .container .row .rectangle-image .image-10 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio-10_S2m6spgbK.jpg?updatedAt=1626944908246);
}

.our-works .container .row .rectangle-image .image-12 {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://ik.imagekit.io/abso1u7e/portfolio/Portfolio_Page/Portfolio-12_mRYGYUMLO.jpg?updatedAt=1626944911577);
}

.our-works .container .row .rectangle-image .overlay {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .rectangle-image .overlay .action {
  position: absolute;
  bottom: 10%;
  top: 10%;
  right: 10%;
  left: 10%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(13px);
          backdrop-filter: blur(13px);
  text-align: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.our-works .container .row .rectangle-image .overlay .action .action-text h4 {
  font-size: 1.2rem;
  color: #3e3e3e;
  padding: 0.6rem 0;
  font-family: "Vidaloka", serif;
}

.our-works .container .row .rectangle-image .overlay .action .action-text button {
  background: none;
  outline: none;
  border: none;
}

.our-works .container .row .rectangle-image .overlay .action .action-text button a {
  font-family: "Vidaloka", serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #bd4545;
}

.our-works .container .row .rectangle-image .overlay:hover .action {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.our-works .container .row .overlay:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.our-works .container .row .hide {
  display: none;
}

.full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.full .fullscreen-image {
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.full .fullscreen-image.open {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.full.open {
  opacity: 1;
  pointer-events: all;
}

footer {
  position: absolute;
  left: 0;
  width: 100%;
}

footer .links {
  width: 100%;
  height: 20vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: #f8f4e5;
}

footer .links .social-icons {
  margin-top: 1rem;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .links .social-icons .icon {
  width: 40px;
  height: 40px;
  border: 2px solid #826e4c;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

footer .links .social-icons .icon:hover {
  background-color: #826e4c;
}

footer .links .social-icons .icon:hover svg path {
  fill: #fff;
}

footer .links .navigation-links {
  width: 500px;
}

footer .links .navigation-links ul {
  padding: 0;
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}

footer .links .navigation-links ul li a {
  text-decoration: none;
  font-family: "poppins", sans-serif;
  color: #826e4c;
}

footer .copyright {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: #cba954;
}

footer .copyright p {
  margin: auto 0;
}

@media screen and (max-width: 1024px) {
  .portfolio .row .col .row {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .our-works {
    margin: 10rem 0 5rem 0;
  }
  .our-works .heading {
    padding-bottom: 2rem;
  }
  .our-works .container .row .rectangle-image {
    aspect-ratio: 1/1;
  }
}
/*# sourceMappingURL=portfolio.css.map */