@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.loaded {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loaded .spinner {
  width: 40px;
  height: 40px;
  position: relative;
}
.loaded .cube1, .loaded .cube2 {
  background-color: #CCFF66;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}
.loaded .cube2 {
  animation-delay: -0.9s;
}
@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 3;
}
.navigation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.navigation-header .logo {
  width: 125px;
  height: auto;
}
.navigation-header .navigation-main nav {
  display: none;
}
.navigation-header .navigation-main button {
  background: none;
  border: none;
  padding-top: 5px;
}
.navigation-header .navigation-main button img {
  width: 36px;
  height: 15px;
  cursor: pointer;
}
.navigation-body {
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100vh;
  width: 100vw;
}
.navigation-body-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.navigation-body-wrapper .back-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #CCFF66;
  padding: 10px 10px 5px 10px;
  border: none;
}
.navigation-body-wrapper-content {
  position: relative;
}
.navigation-body-wrapper-content nav, .navigation-body-wrapper-content .contact {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.navigation-body-wrapper-content nav {
  padding-bottom: 25px;
}
.navigation-body-wrapper-content nav a {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}
.navigation-body-wrapper-content nav a b {
  font-weight: 800;
}
.navigation-body-wrapper-content nav a:nth-child(4) {
  font-weight: 400;
}
.navigation-body-wrapper-content nav .nav-active {
  background-color: #CCFF66;
}
.navigation-body-wrapper-content .line {
  position: absolute;
  right: 0;
  width: 0;
}
.navigation-body-wrapper-content .nav-animation, .navigation-body-wrapper-content .contact-animation {
  opacity: 0;
}
.navigation-body-wrapper-content .contact {
  padding-top: 25px;
}
.navigation-body-wrapper-content .contact a {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}
.navigation-body-wrapper .logo-body-menu {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  opacity: 0;
}
.navigation-body-wrapper .logo-body-menu img {
  width: 100px;
  background-color: #CCFF66;
  padding: 10px;
}

.section-one-home {
  background-image: url("https://forensikcreative.com/uploads/img-content-production.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section-one-home-wrapper {
  text-align: center;
  padding: 0 20px;
}
.section-one-home-wrapper .logo-jumbotron img {
  width: 200px;
}
.section-one-home-wrapper h1 {
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5em;
  margin: 50px 0 50px 0;
}
.section-one-home-wrapper .cta-jumbotron {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}
.section-one-home-wrapper .cta-jumbotron span {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.section-one-home-wrapper .cta-jumbotron span:nth-child(2) {
  font-weight: 700;
  font-size: 1.2rem;
}
.section-one-home-wrapper .cta-jumbotron a {
  margin-top: 10px;
  animation: bouncing 0.7s;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  animation-iteration-count: infinite;
  -webkit-animation-name: bouncing;
  -webkit-animation-duration: 0.7s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}
@keyframes bouncing {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 10px, 0);
  }
}

.section-two-home .division {
  background-color: #000;
}
.section-two-home .division-img {
  position: relative;
}
.section-two-home .division-img .img {
  width: 100%;
  height: 45vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-two-home .division-img button {
  position: absolute;
  font-size: 0.9rem;
  color: #CCFF66;
  font-weight: 600;
  background: none;
  border: none;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 3;
}
.section-two-home .division-img .video-preview {
  display: none;
}
.section-two-home .division-text {
  height: 55vh;
  padding: 25px;
}
.section-two-home .division-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.section-two-home .division-text p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #CCFF66;
  margin: 30px 0 50px 0;
}
.section-two-home .division-text img {
  width: 50px;
}

.section-three-home {
  background-color: #000;
  width: 100%;
}
.section-three-home-wrapper {
  padding: 75px 20px;
}
.section-three-home-wrapper .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-three-home-wrapper .header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.section-three-home-wrapper .header a {
  background-color: #CCFF66;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
}
.section-three-home-wrapper .project-wrapper {
  margin-top: 50px;
}
.section-three-home-wrapper .project-wrapper .project-list .project {
  margin: 0 10px;
}
.section-three-home-wrapper .project-wrapper .project-list .project h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
}
.section-three-home-wrapper .project-wrapper .project-list .project img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 5px 0 10px 0;
}
.section-three-home-wrapper .project-wrapper .project-list .project .project-footer {
  display: flex;
  flex-direction: column;
}
.section-three-home-wrapper .project-wrapper .project-list .project .project-footer span {
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}
.section-three-home-wrapper .project-wrapper .project-list .project .project-footer a {
  font-size: 1rem;
  margin-top: 5px;
  color: #CCFF66;
}

@media (min-width: 600px) {
  .section-one-home .section-one-home-wrapper .logo-jumbotron img {
    width: 300px;
  }
  .section-one-home .section-one-home-wrapper h1 {
    font-size: 2.5rem;
    width: 550px;
    margin: 0 auto;
    margin: 50px 0 50px 0;
  }
  .section-one-home .section-one-home-wrapper .cta-jumbotron {
    bottom: 75px;
  }
  .section-one-home .section-one-home-wrapper .cta-jumbotron span {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .section-one-home .section-one-home-wrapper .cta-jumbotron span:nth-child(2) {
    font-size: 1.3rem;
  }
  .section-one-home .section-one-home-wrapper .cta-jumbotron a {
    margin-top: 15px;
  }
  .section-two-home .division {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .section-two-home .division:nth-child(even) .division-img {
    grid-column: 2;
    grid-row: 1;
  }
  .section-two-home .division:nth-child(even) .division-text {
    grid-column: 1;
    grid-row: 1;
  }
  .section-two-home .division-img button {
    font-size: 1rem;
  }
  .section-two-home .division-img .img {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-two-home .division-text {
    height: unset;
    padding: 50px;
  }
  .section-three-home .section-three-home-wrapper {
    padding: 75px 30px;
  }
  .section-three-home .section-three-home-wrapper .header h2 {
    font-size: 1.5rem;
  }
  .section-three-home .section-three-home-wrapper .header a {
    font-size: 1rem;
    padding: 15px 20px;
  }
}
@media (min-width: 991px) {
  .section-two-home .division .division-img {
    height: 450px;
  }
  .section-two-home .division .division-img .video-preview {
    height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
  }
  .section-three-home .section-three-home-wrapper .project-wrapper .project img {
    margin: 10px 0;
  }
}
@media (min-width: 1025px) {
  .section-one-home .section-one-home-wrapper .cta-jumbotron {
    bottom: 20px;
  }
  .section-three-home .section-three-home-wrapper {
    padding: 125px 30px;
  }
  .section-three-home .section-three-home-wrapper .header h2 {
    font-size: 2.3rem;
  }
  .section-three-home .section-three-home-wrapper .header a {
    font-size: 1.1rem;
    padding: 20px;
  }
  .section-three-home .section-three-home-wrapper .project-wrapper .project-list {
    margin-top: 75px;
  }
  .section-three-home .section-three-home-wrapper .project-wrapper .project-list .project h3 {
    font-size: 1.3rem;
  }
  .section-three-home .section-three-home-wrapper .project-wrapper .project-list .project img {
    height: 250px;
  }
}
.section-one-team {
  background-image: url(https://forensikcreative.com/uploads/header-team-forensik.jpg);
  height: 100vh;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-one-team img {
  width: 275px;
}

.section-two-team {
  background-color: #000;
  padding: 75px 20px;
}
.section-two-team .section-wrapper {
  text-align: center;
}
.section-two-team .section-wrapper img {
  width: 200px;
  margin-bottom: 20px;
}
.section-two-team .section-wrapper p {
  text-align: justify;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5em;
}

.section-three-team .side-left {
  background-image: url(https://forensikcreative.com/uploads/img-office.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  width: 100%;
}
.section-three-team .side-right {
  padding: 75px 20px;
}
.section-three-team .side-right .side-right-wrapper-col img {
  width: 100px;
  margin-bottom: 15px;
}
.section-three-team .side-right .side-right-wrapper-col p {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.5em;
}
.section-three-team .side-right .side-right-wrapper-col:nth-child(2) {
  margin-top: 30px;
}
.section-three-team .side-right .side-right-wrapper-col:nth-child(2) img {
  width: 140px;
}

@media (min-width: 600px) {
  .section-one-team img {
    width: 500px;
  }
  .section-two-team {
    background-color: #000;
    padding: 75px 30px;
  }
  .section-two-team .section-wrapper {
    text-align: center;
  }
  .section-two-team .section-wrapper img {
    width: 250px;
    margin-bottom: 25px;
  }
  .section-two-team .section-wrapper p {
    line-height: 1.7em;
  }
  .section-three-team .side-right {
    padding: 75px 30px;
  }
  .section-three-team .side-right .side-right-wrapper-col img {
    width: 125px;
    margin-bottom: 15px;
  }
  .section-three-team .side-right .side-right-wrapper-col p {
    line-height: 1.7em;
  }
  .section-three-team .side-right .side-right-wrapper-col:nth-child(2) img {
    width: 160px;
  }
}
@media (min-width: 991px) {
  .section-one-team {
    position: relative;
  }
  .section-one-team img {
    position: absolute;
    left: 0;
    top: 0;
  }
  .section-two-team .section-wrapper {
    display: grid;
    grid-template-columns: 400px 500px;
    align-items: center;
    justify-items: center;
  }
  .section-two-team .section-wrapper img {
    width: 250px;
    margin-bottom: 0;
  }
  .section-three-team {
    display: flex;
  }
  .section-three-team .side-left {
    width: 400px;
    height: auto;
  }
  .section-three-team .side-right {
    padding: 75px 50px;
  }
  .section-three-team .side-right .side-right-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 250px);
    align-items: top;
    gap: 25px;
  }
  .section-three-team .side-right .side-right-wrapper .side-right-wrapper-col:nth-child(2) {
    margin-top: 0px;
  }
}
@media (min-width: 1025px) {
  .section-two-team .section-wrapper {
    display: grid;
    grid-template-columns: 400px auto;
  }
  .section-two-team .section-wrapper p {
    padding-right: 75px;
  }
  .section-three-team {
    display: flex;
  }
  .section-three-team .side-left {
    width: 800px;
  }
  .section-three-team .side-right {
    width: 100%;
  }
  .section-three-team .side-right .side-right-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 275px);
    align-items: top;
    justify-content: center;
    gap: 50px;
  }
  .section-three-team .side-right .side-right-wrapper .side-right-wrapper-col:nth-child(2) {
    margin-top: 0px;
  }
}
.section-one-work {
  height: auto;
}
.section-one-work img {
  width: 100%;
  height: auto;
}

.section-two-work {
  width: 90%;
  margin: 50px auto 50px auto;
}
.section-two-work .work-list {
  margin-bottom: 50px;
}
.section-two-work .work-list img {
  width: 100%;
  height: auto;
}
.section-two-work .work-list .text-work {
  margin-top: 20px;
}
.section-two-work .work-list .text-work-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.section-two-work .work-list .text-work-title h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.section-two-work .work-list .text-work-title span {
  font-size: 1rem;
  font-weight: 400;
}
.section-two-work .work-list .text-work h4 {
  font-weight: 700;
  font-size: 1rem;
  margin: 5px 0 10px 0;
  color: #aeaeae;
}
.section-two-work .work-list .text-work p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.3em;
  color: #aeaeae;
}
.section-two-work .work-list .text-work button {
  background-color: #000;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 25px;
  cursor: pointer;
}

@media (min-width: 600px) {
  .section-two-work .work-list .text-work .text-work-title h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 991px) {
  .section-two-work {
    width: 100%;
    margin: -5px 0 0 0;
  }
  .section-two-work .work-list {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    margin-bottom: 0;
  }
  .section-two-work .work-list:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .section-two-work .work-list:nth-child(even) img {
    grid-column: 2;
    grid-row: 1;
  }
  .section-two-work .work-list:nth-child(even) .text-work {
    grid-column: 1;
    grid-row: 1;
  }
  .section-two-work .work-list img {
    height: 425px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section-two-work .work-list .text-work {
    margin: 0;
    padding: 0 30px;
  }
  .section-two-work .work-list .text-work button {
    width: auto;
    padding: 10px 20px;
  }
}
@media (min-width: 1025px) {
  .section-two-work .work-list img {
    height: 500px;
  }
  .section-two-work .work-list .text-work {
    padding: 0 75px;
  }
  .section-two-work .work-list .text-work .text-work-title h2 {
    font-size: 2.3rem;
  }
  .section-two-work .work-list .text-work p {
    font-size: 1.1rem;
    margin-top: 30px;
  }
}
.section-one-contact {
  background-color: #CCFF66;
  height: 80vh;
  position: relative;
}
.section-one-contact-wrapper {
  position: absolute;
  bottom: -5px;
  padding: 0;
}
.section-one-contact-wrapper h1 {
  color: #000;
  font-weight: 600;
  font-size: 2.8rem;
  padding: 0 20px 50px 20px;
}
.section-one-contact-wrapper img {
  width: 100%;
  height: auto;
}

.section-two-contact {
  margin: 75px 0;
  padding: 0 20px;
}
.section-two-contact .header {
  display: flex;
  justify-content: space-between;
}
.section-two-contact .header img {
  width: 150px;
}
.section-two-contact .contact-content {
  margin-top: 50px;
}
.section-two-contact .contact-content h3 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 8px;
}
.section-two-contact .contact-content h3::before {
  content: "";
  border-bottom: 2px solid #000;
  width: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.section-two-contact .contact-content .contact-list {
  margin-top: 25px;
}
.section-two-contact .contact-content .contact-list h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 15px;
  border-bottom: 2px solid #000;
  padding: 15px 0;
}
.section-two-contact .contact-content .contact-list h4 a {
  color: #000;
  position: relative;
  font-weight: 700;
}
.section-two-contact .contact-content .contact-list h4:nth-child(2) a {
  padding-left: 10px;
}
.section-two-contact .contact-content .contact-list h4:nth-child(2) a::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
}

@media (min-width: 600px) {
  .section-one-contact {
    height: 575px;
    width: 100%;
  }
  .section-one-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
    bottom: 0;
  }
  .section-one-contact-wrapper h1 {
    padding: 0 0 0 20px;
  }
  .section-two-contact .header img {
    width: 175px;
  }
  .section-two-contact .contact-content {
    margin-top: 50px;
  }
  .section-two-contact .contact-content h3 {
    position: relative;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 8px;
  }
  .section-two-contact .contact-content .contact-list h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .section-two-contact .contact-content .contact-list h4 a {
    font-size: 1.8rem;
  }
  .section-two-contact .contact-content .contact-list h4:nth-child(2) a {
    padding-left: 15px;
  }
  .section-two-contact .contact-content .contact-list h4:nth-child(2) a::before {
    font-size: 1.5rem;
  }
}
@media (min-width: 991px) {
  .section-one-contact {
    height: 60vh;
  }
  .section-one-contact-wrapper {
    justify-content: space-around;
    right: 0;
  }
  .section-one-contact-wrapper h1 {
    padding: 0;
    font-size: 3rem;
  }
  .section-one-contact-wrapper img {
    width: 50%;
  }
  .section-two-contact {
    padding: 0 40px;
  }
  .section-two-contact .header img {
    width: 200px;
  }
  .section-two-contact .contact-content .contact-list a:hover {
    background-color: #CCFF66;
    transition: ease 0.3s;
  }
}
@media (min-width: 1025px) {
  .section-one-contact {
    height: 70vh;
  }
  .section-one-contact-wrapper h1 {
    font-size: 3.5rem;
  }
  .section-one-contact-wrapper img {
    width: 50%;
  }
}
/* construction page */
.main-construction {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.main-construction-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  height: 100vh;
  justify-content: center;
}
.main-construction-wrapper-left {
  text-align: center;
  margin-top: 1rem;
}
.main-construction-wrapper-left-title h1 {
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
}
.main-construction-wrapper-left-title h3 {
  font-weight: 400;
  font-size: 1rem;
  width: 70%;
  margin: 1rem auto 1.5rem auto;
}
.main-construction-wrapper-left-socmed a {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
.main-construction-wrapper-left-socmed a:hover {
  border-bottom: 1px solid #000;
}
.main-construction-wrapper-right {
  width: 60%;
  margin: 0 auto;
}
.main-construction-wrapper-right img {
  width: 100%;
}

/* tablet landscape */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .main-construction .main-construction-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left {
    text-align: left;
    margin-top: 0;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left-title h1 {
    text-transform: uppercase;
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left-title h3 {
    font-weight: 400;
    font-size: 1.1rem;
    width: 100%;
    margin: 1rem auto 1.5rem auto;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-right {
    width: 40%;
    margin: 0 auto;
  }
}
/* screen laptop */
@media screen and (min-width: 1280px) {
  .main-construction .main-construction-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left {
    text-align: left;
    margin-top: 0;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left-title h1 {
    text-transform: uppercase;
    font-size: 3rem;
    letter-spacing: 0.5rem;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-left-title h3 {
    font-weight: 400;
    font-size: 1.1rem;
    width: 100%;
    margin: 1rem auto 1.5rem auto;
  }
  .main-construction .main-construction-wrapper .main-construction-wrapper-right {
    width: 40%;
    margin: 0 auto;
  }
  .main-construction-wrapper-left .main-construction-wrapper-left-socmed .main-construction-wrapper-left-socmed-list img:hover {
    transform: scale(1.1);
  }
}
/* 404 page */
.wrong {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrong .wrong-wording h1 {
  font-size: 10vw;
  text-align: center;
  color: #CCFF66;
}
.wrong .wrong-wording span {
  font-size: 5vw;
  color: #000;
}

.popup-video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
.popup-video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.popup-video-wrapper-box {
  position: relative;
}
.popup-video-wrapper-box button {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 1.1rem;
  color: #CCFF66;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
}
.popup-video-wrapper-box video {
  width: 90vw;
  height: auto;
}

footer {
  background-color: #CCFF66;
  padding: 50px 20px;
}
footer .footer-wrapper {
  display: flex;
  flex-direction: column;
}
footer .footer-wrapper .left-side {
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
}
footer .footer-wrapper .left-side img {
  width: 175px;
}
footer .footer-wrapper .left-side h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px 0;
}
footer .footer-wrapper .left-side p {
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 400;
  text-align: justify;
}
footer .footer-wrapper .right-side {
  margin-top: 20px;
}
footer .footer-wrapper .right-side h4 {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}
footer .footer-wrapper .right-side .contact {
  margin: 15px 0;
}
footer .footer-wrapper .right-side .contact a {
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 10px;
}
footer .footer-wrapper .right-side .logo-footer img {
  width: 50px;
  margin-right: 10px;
}
footer .footer-wrapper .right-side .logo-footer img:nth-child(2) {
  width: 100px;
}

@media (min-width: 600px) {
  .navigation {
    top: 0px;
    padding: 20px 30px 0 30px;
  }
  .navigation-header {
    padding-top: 10px;
  }
  .navigation-header .logo-body-menu {
    width: 150px;
  }
  .navigation-header .navigation-main {
    display: flex;
    align-items: center;
  }
  .navigation-header .navigation-main nav {
    display: flex;
  }
  .navigation-header .navigation-main nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-right: 25px;
  }
  .navigation-header .navigation-main nav .black {
    color: #000;
  }
  .navigation-header .navigation-main nav button img {
    width: 32px;
  }
  .navigation-body .back-menu {
    top: 40px;
    right: 40px;
  }
  .navigation-body-wrapper nav {
    padding-bottom: 30px;
  }
  .navigation-body-wrapper nav a {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .navigation-body-wrapper .contact {
    padding-top: 30px;
  }
  .navigation-body-wrapper .contact a {
    font-size: 1.8rem;
  }
  .navigation-body .logo-body-menu {
    bottom: 50px;
  }
  .navigation-body .logo-body-menu img {
    width: 150px;
  }
  footer {
    padding: 50px 30px;
  }
  footer .footer-wrapper .left-side .heading-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-wrapper .left-side .heading-left img {
    height: 25px;
  }
  footer .footer-wrapper .right-side {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .navigation .navigation-header .navigation-main nav a {
    font-size: 1rem;
  }
  .navigation .navigation-header .navigation-main nav a:nth-child(1) {
    margin-right: 35px;
  }
  .navigation .navigation-header .navigation-main button img {
    width: 32px;
  }
  .navigation .navigation-body .back-menu {
    background: none;
    border: none;
    cursor: pointer;
    transition: ease 0.3s;
  }
  .navigation .navigation-body .back-menu:hover {
    background-color: #CCFF66;
    padding: 10px 10px 5px 10px;
  }
  .navigation .navigation-body-wrapper nav, .navigation .navigation-body-wrapper .contact {
    justify-content: space-between;
    flex-direction: row;
    width: 90vw;
  }
  .navigation .navigation-body-wrapper nav {
    padding-bottom: 50px;
  }
  .navigation .navigation-body-wrapper nav a {
    font-size: 2rem;
    margin: 0;
    transition: ease 0.3s;
  }
  .navigation .navigation-body-wrapper nav a:hover {
    background-color: #CCFF66;
  }
  .navigation .navigation-body-wrapper .contact {
    padding-top: 50px;
  }
  .navigation .navigation-body-wrapper .contact a {
    margin-bottom: 0;
    font-size: 1rem;
    transition: ease 0.5s;
  }
  .navigation .navigation-body-wrapper .contact a:hover {
    background-color: #CCFF66;
  }
  .navigation .navigation-body .logo-body-menu {
    bottom: 20px;
  }
  .navigation .navigation-body .logo-body-menu img {
    width: 125px;
  }
  .popup-video .popup-video-wrapper .popup-video-wrapper-box video {
    width: 600px;
  }
  footer .footer-wrapper {
    display: grid;
    grid-template-columns: 500px auto;
  }
  footer .footer-wrapper .left-side {
    padding-bottom: 0;
    padding-right: 50px;
    border-bottom: unset;
    border-right: 2px solid #000;
  }
  footer .footer-wrapper .left-side img {
    height: 20px;
  }
  footer .footer-wrapper .right-side {
    padding-left: 25px;
    margin-top: 0px;
    align-items: start;
  }
  footer .footer-wrapper .right-side .contact {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  footer .footer-wrapper .right-side .contact a {
    margin-bottom: 10px;
  }
  footer .footer-wrapper .right-side .logo-footer {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  footer .footer-wrapper .right-side .logo-footer img:nth-child(2) {
    margin-top: 20px;
    width: 75px;
  }
}
@media (min-width: 1025px) {
  .navigation .navigation-body .navigation-body-wrapper nav, .navigation .navigation-body .navigation-body-wrapper .contact {
    justify-content: space-between;
    flex-direction: row;
    width: 75vw;
  }
  .navigation .navigation-body .navigation-body-wrapper nav a {
    font-size: 2.3rem;
  }
  .navigation .navigation-body .navigation-body-wrapper .contact a {
    font-size: 1.1rem;
  }
  .popup-video .popup-video-wrapper .popup-video-wrapper-box video {
    width: 800px;
  }
  footer .footer-wrapper {
    grid-template-columns: 0.9fr 1fr;
  }
  footer .footer-wrapper .left-side {
    padding-right: 100px;
  }
  footer .footer-wrapper .left-side img {
    height: 20px;
  }
  footer .footer-wrapper .right-side {
    padding-left: 100px;
  }
}/*# sourceMappingURL=main.css.map */