@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

.light {
  /*--mainColor: #64bcf4;*/
  --mainColor: #709E68;
  
  /*--hoverColor: #5bacdf;*/
  --hoverColor: #709E68;
  /*--backgroundColor: #f1f8fc;*/
  --backgroundColor: #F5FCF6;t
  
  --darkOne: #312f3a;
  --darkTwo: #45424b;
  --lightOne: #919191;
  --lightTwo: #aaa;
}

.dark {
  /*--mainColor: #64bcf4;*/
  --mainColor: #284B5F;
  --hoverColor: #5bacdf;
  --backgroundColor: #192e3a;
  --darkOne: #f3f3f3;
  --darkTwo: #fff;
  --lightOne: #ccc;
  --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

header {
  position: relative;
  z-index: 70;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*margin-top:30px;*/
}

.overlay {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo img {
  width: 40px;
  margin-right: 0.6rem;
  /*margin-top: -0.6rem;*/
}

.logo h3 {
  color: var(--darkTwo);
  font-size: 1.575rem;
  line-height: 1.2;
  font-weight: 700;
}


.links ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.links a {
  color: var(--lightTwo);
  /*margin-left: 4.5rem;*/
  margin-left: 1.9rem;
  display: inline-block;
  transition: 0.3s;
}

.links a:hover {
  color: var(--hoverColor);
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  /*padding: 0.9rem 1.9rem;*/
  padding: 0.7rem 1.5rem;
  color: #fff !important;
  background-color: var(--mainColor);
  border-radius: 16px;
  text-transform: capitalize;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--hoverColor);
  transform: scale(1) !important;
}

.hamburger-menu {
  position: relative;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}

.hamburger-menu .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before,
.bar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--darkTwo);
  border-radius: 3px;
  transition: 0.5s;
}

.bar::before {
  transform: translateY(-8px);
}

.bar::after {
  transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
  background-color: transparent;
}

.big-wrapper.active .bar::before {
  transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
  transform: translateY(0) rotate(45deg);
}


.tutup{
    max-width:81rem;
    min-height:70vh;
    /*border:1px solid coral;*/
    /*margin:auto;*/
    position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

.showcase-area .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.big-title {
  /*font-size: 1.4rem;*/
  font-size: 1.1rem;
  color: var(--darkOne);
  text-transform: capitalize;
  line-height: 1.4;
}

.text {
  color: var(--lightOne);
  font-size: 1.1rem;
  margin: 1.9rem 0 2.5rem;
  max-width: 600px;
  line-height: 2.3;
}

.showcase-area .btn {
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}

.person {
  width: 123%;
  transform: translate(15%, 25px);
}

.toggle-btn {
  display: inline-block;
  border: none;
  background: var(--darkTwo);
  color: var(--backgroundColor);
  outline: none;
  cursor: pointer;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: 0.3s;
}

.toggle-btn i {
  line-height: 39px;
}

.toggle-btn:hover {
  background: var(--mainColor);
}

.big-wrapper.light .toggle-btn i:last-child {
  display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
  display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
  display: none;
}

.shape {
  position: absolute;
  z-index: 0;
  width: 500px;
  bottom: -180px;
  left: -15px;
  opacity: 0.1;
}

.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}




/*---------------------------------------------------------------------------------------------FORM 2--------------------------------------------------*/
.form {
  /*background-color: white;*/
  width: 100%;
  /*border-radius: 8px;*/
  /*padding: 20px 40px;*/
  /*box-shadow: 0 10px 25px rgba(92, 99, 105, .2);*/
  /*border:1px solid grey;*/
}

.title {
  font-size: 23px;
  margin-bottom: 30px;
  /*color:#45424B;*/
  color: var(--darkTwo);
  font-weight:600;
}

.title2 {
  font-size: 23px;
  margin-bottom: 5px;
  /*color:#45424B;*/
  color: var(--darkTwo);
  font-weight:600;
}

.inputContainer {
  position: relative;
  height: 57px;
  width: 100%;
  margin-bottom: 14px;
}

.input {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid #989a9c;
  border-bottom-width:2px;
  border-radius: 15px;
  font-size: 18px;
  padding: 0 20px;
  outline: none;
  background: none;
  z-index: 1;
  color: var(--darkOne);
}


.label {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0 4px;
  /*background-color: #F5FCF6;*/
  background-color:var(--backgroundColor);
  color: #989a9c;
  font-size: 18px;
  transition: 0.5s;
  z-index: 0;
}

::placeholder {
  color: transparent;
}

.submitBtn {
  display: block;
  /*margin-left: auto;*/
  padding: 16px 70px;
  border: none;
  background-color: #008141;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 20px;
  font-weight:600;
  margin-top: 30px;
  letter-spacing:5px;
}

.submitBtn:hover {
  background-color: #4CA67A;
  transform: translateY(-2px);
}
.input:focus + .label {
  top: -7px;
  left: 7px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  color: #008141;
  letter-spacing:1.2px;
}

.input:not(:placeholder-shown)+ .label {
  top: -7px;
  left: 7px;
  z-index: 10;
  font-size: 14px;
  font-weight: 600;
  letter-spacing:1.1px;
}

.input:focus {
  border: 2px solid #008141;
  border-bottom-width:3px;
}

.input:focus::placeholder {
  color: grey;
}

.inputContainer input[type=file]{
    padding-top:17px;
    color:var(--darkTwo);
}
/*---------------------------------------------------------------------------------------------FORM 2 END--------------------------------------------------*/

/*---------------------------------------------------------------------------------------------MODAL MULAI--------------------------------------------------*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 80; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position:relative;
  background-color: #fefefe;
  margin: auto;
  padding: 40px 30px;
  border: 1px solid #888;
  border-radius:8px;
  width: 700px;
  
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: #aaaaaa;
  /*float: right;*/
  font-size: 35px !important;
  font-weight: bold;
  position:absolute;
  top:6px;
  right:17px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-content .simpan{
    font-size:22px;
}

.modal-content span{
    font-size:18px;
}

.modal-body .dapat{
    font-size:14px;
}
        
/*---------------------------------------------------------------------------------------------MODAL END--------------------------------------------------*/

.tutup_yutup {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.yutup {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  /*z-index: -1;*/
  position: relative;
  opacity: 0;
  /*color:#000;*/
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

/*.panel-content span{*/
/*    color:#000;*/
/*}*/

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}

.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.kotak_kontak{
    display:flex;
    padding:5px;
    margin-bottom:10px;
}

.kotak_kontak div:first-child{
    width:300px;
}

.a_kontak {
  /*background-color: #f44336;*/
  border:1px solid #67C15E;
  border-bottom-width:2px;
  border-radius:25px;
  color: #67C15E;
  padding: 10px 20px 10px 25px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items:center;
}

.a_kontak ion-icon{
    font-size:25px;
    margin-left:10px;
}



.tutup_visual{
    border:4px solid black;
    aspect-ratio: 3 / 1;
    background:white;
    border-radius:5px;
    position:relative;
    display:flex;
}

.tutup_visual .kotak_visual{
    width:30%;
    /*border:1px solid coral;*/
    /*padding:10px;*/
}

.tutup_visual .kotak_visual:first-child{
    display:flex;
    align-items:center;
    justify-content:center;
}

.tutup_visual .kotak_visual:last-child{
    width:70%;
    padding:.5vw 0;
    position:relative;
}

.tutup_visual .logonatuna{
    width:auto;
    height:90%;
}

.tutup_visual .logobsre{
    width:30%;
    position:absolute;
    bottom:0;
    right:0;
}

.tutup_visual p{
    font-family: "Arimo", sans-serif;
    font-size:2.9vw;
    line-height:3.6vw;
}

.tutup_visual p:first-child{
    font-weight:bold;
    font-size:2.5vw;
}

.tutup_visual .kotak_visual_nama{
    position:absolute;
    bottom:.8vw;
    left:0;
}

.tutup_visual .kotak_visual_nama p{
    font-weight:bold;
    font-size:3.5vw;
    line-height:4.3vw;
}

.tutup_visual .kotak_visual_nama p:first-child{
    /*text-decoration:underline;*/
    
    border-bottom: .3vw solid #000;
    /*display: inline-block;*/
    /*padding-bottom: 1px;*/
}





.kotak_notif{
    width:100%;
    border-radius:10px;
    padding:10px 15px;
    margin-bottom:20px;
    font-weight:600;
    border:2px solid #EFEFEF;
}

.kotak_notif1{
    background:#D6EEC8;
    color:#2F7208;
}

.kotak_notif2{
    background:#FFF9C3;
    color:#1B1B20;
}

.kotak_notif3{
    background:#FFCDBD;
    color:#F03813;
}



@media screen and (max-width: 870px) {
    
    header .container {
        margin-top:0;
    }
    
  .hamburger-menu {
    display: flex;
  }

  .links {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: var(--mainColor);
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: #fff;
    margin-left: 0;
    padding: 2rem 0;
  }

  .links .btn {
    background: none;
  }

  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
  }

  .big-wrapper.active .links {
    transform: translateX(0);
    box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
  }

  .big-wrapper.active .overlay {
    pointer-events: all;
    opacity: 1;
  }

  .showcase-area {
    padding: 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
  }

  .showcase-area .container {
    grid-template-columns: 1fr;
    justify-content: center;
    grid-gap: 2rem;
  }
  
  .tutup{
      /*max-width: 700px;*/
      padding: 1.5rem 2.5rem;
    }

  .big-title {
    /*font-size: 1.1rem;*/
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .text {
    font-size: 0.95rem;
    margin: 1.4rem 0 1.5rem;
  }

  .person {
    width: 100%;
    transform: none;
  }

  .logo h3 {
    font-size: 1.25rem;
  }

  .shape {
    bottom: -180px;
    left: -150px;
  }
}

@media screen and (max-width: 470px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .tutup{
      padding: 1.5rem 1.5rem ;
      min-height:80vh;
    }

  .big-title {
    /*font-size: 0.9rem;*/
    font-size: 0.7rem;
  }

  .text {
    margin: 1.1rem 0 1.5rem;
  }

  .showcase-area .btn {
    font-size: 0.8rem;
  }
  
  .submitBtn {
      padding: 17px 50px;
      font-size: 18px;
      margin-top: 30px;
      letter-spacing:4px;
      width:100%;
    }
    
    .modal-content {
      width: calc(100vw - 20px);
      padding: 40px 20px;
    }
    
}