@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap");

:root {
  --red: #23336e;
}

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  transition: all 0.2s linear;
}

*::selection {
  background: var(--blue);
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: #f7f7f7;
}

section {
  padding: 2rem 9%;
}

.heading {
  text-align: center;
  font-size: 3.5rem;
  padding: 1rem;
  color: #666;
}
.wub-heading {
  text-align: center;
  color: var(--black);
  font-size: 3rem;
  padding-bottom: 2rem;
  text-transform: uppercase;
}
.heading span {
  color: var(--red);
}

.btn {
  display: inline-block;
  padding: 0.8rem 3rem;
  border: 0.2rem solid var(--red);
  color: var(--red);
  cursor: pointer;
  font-size: 1.7rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 1rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--red);
  transition: 0.3s linear;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
  left: 0;
}

.btn:hover {
  color: #fff;
}

.btn2 {
  display: inline-block;
  padding: 0.3rem 2rem;
  border: 0.2rem solid var(--red);
  color: var(--red);
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 1rem;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: var(--red);
  transition: 0.3s linear;
  z-index: -1;
}

.btn2:hover::before {
  width: 100%;
  left: 0;
}

.btn2:hover {
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem 7%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: #666;
}

header .logo i {
  padding-right: 0.5rem;
  color: var(--blue);
}

header .navbar a {
  font-size: 1.6rem;
  margin-left: 2rem;
  color: #666;
}

#menu-bar {
  font-size: 3rem;
  cursor: pointer;
  color: #666;
  border: 0.1rem solid #666;
  border-radius: 0.3rem;
  padding: 0.5rem 1.5rem;
  display: none;
}
.lang-menu {
  font-family: "Nunito";
  width: 90px;
  text-align: right;
  font-weight: bold;
  position: relative;
  margin-right: 0;
}
.lang-menu .selected-lang {
  font-family: "Nunito";
  display: flex;
  justify-content: space-between;
  line-height: 4.9;
  cursor: pointer;
}

.lang-menu ul {
  font-family: "Nunito";
  margin: 0;
  padding-left: 2px;
  display: none;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  position: absolute;
  top: 35px;
  right: 0px;
  width: 125px;
  left: 0px;
  border-radius: 5px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}

.lang-menu ul li {
  list-style: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.lang-menu ul li a {
  text-decoration: none;
  width: 125px;
  padding: 5px 10px;
  display: block;
}

.lang-menu ul li:hover {
  background-color: #f2f2f2;
}

.lang-menu ul li a:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.id:before {
  background-image: url(../images/flag-id.png);
}

.en:before {
  background-image: url(../images/flag-en.png);
}

.lang-menu:hover ul {
  display: block;
}

.service {
  min-height: 100vh;
  background: url(../images/bg-2.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 8rem;
  align-items: center;
  justify-content: center;
}

.service .box-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.service .box-container .box {
  flex: 1 1 35rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border: 0.1rem solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border-radius: 0.5rem;
}

.service .box-container .box .image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: -100%;
  left: 0;
}

.service .box-container .box .content {
  text-align: center;
  background: #fff;
  padding: 2rem;
}

.service .box-container .box .content img {
  margin: 1.5rem 0;
}

.service .box-container .box .content h3 {
  font-size: 2rem;
  color: #333;
}

.service .box-container .box .content p {
  font-size: 1.4rem;
  color: #666;
  padding: 0.5rem 0;
}

.service .box-container .box:hover .image {
  top: 0;
}

.service .box-container .box:hover .content {
  transform: translateY(100%);
}

.project {
  min-height: 100vh;
  background: url(../images/bg-1a.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.project .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.project .box-container .box {
  height: 25rem;
  flex: 1 1 35rem;
  border: 1rem solid #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.project .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project .box-container .box .content {
  position: absolute;
  top: -100%;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  padding-top: auto;
  text-align: center;
}

.project .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #333;
}

.project .box-container .box .content p {
  font-size: 1.5rem;
  color: #666;
  padding: 0, 2rem 0;
}

.project .box-container .box:hover .content {
  top: 0;
}

.footer {
  background: #000;
  text-align: center;
}

.footer .share {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .credit {
  padding: 2.5rem 1rem;
  color: rgb(104, 104, 104);
  font-weight: normal;
  font-size: 1.3rem;
}

.footer .credit span {
  color: var(--blue);
}

#scroll-top {
  position: fixed;
  top: -120%;
  right: 2rem;
  padding: 0.5rem 1.5rem;
  font-size: 4rem;
  background: var(--red);
  color: #fff;
  border-radius: 0.5rem;
  transition: 1s linear;
  z-index: 1000;
}

#scroll-top.active {
  top: calc(100% - 12rem);
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.loader-container.fade-out {
  top: -120%;
}

/* media queries  */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 2rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #menu-bar {
    display: initial;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f7f7f7;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  header .navbar a {
    margin: 1.5rem;
    padding: 1.5rem;
    display: block;
    border: 0.2rem solid rgba(0, 0, 0, 0.1);
    border-left: 0.5rem solid var(--red);
    background: rgb(255, 255, 255);
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .order .row form .inputBox input {
    width: 100%;
  }
}
.anm {
  font-size: 1.2rem;
  margin-left: 1.5rem;
  color: rgb(31, 30, 30);
  position: relative;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
}

.anm:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #23336e;
  transition: 0.5s;
}
.anm:after {
  left: 0;
  bottom: -5px;
}
.anm:before {
  right: 0;
  top: -5px;
}
.anm:hover {
  color: #23336e;
}
a.anm:hover:after,
.anm:hover:before {
  width: 100%;
}
