*{
  margin: 0; padding: 0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  font-family: tahoma;
}

html{
  scroll-behavior: smooth;
}

@font-face{
    font-family:"Panton";
    src: url(fonts/Panton-BlackCaps.woff) format('truetype');
}
@font-face{
    font-family:"JoseBI";
    src: url(fonts/JosefinSans-BoldItalic.woff) format('truetype');
}
@font-face{
    font-family:"JoseM";
    src: url(fonts/JosefinSans-Medium.woff) format('truetype');
}


body{
  overflow-x: hidden;
  background-color: #0B032D;
}

/*--Home--*/
#home{
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding-bottom: 455px;
}
.home:nth-child(odd){
    background: #ddd;
}
.logo{
    width: 150px;
    position: absolute;
    top: 4%;
    left: 10%;
}
.banner-cover{
    width:46vw;/*width: 800px;*/
    position: relative;
    top: 50%;
    left: 19%;
}
.back-video{
    position: relative;
    right: 0;
    bottom: 530px;
    z-index: -1;
}
.back-video video{
  width: 100%;
}
.banner-btn{
    position: relative;
    left: 15%;
    margin: -10px auto 0;
    text-align: center
}
.banner-btn a{
    position: relative;
    transform: scale(1.2);
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin: 0 35px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    z-index: 1;
    transition: color 0.5s;
}
.banner-btn a span{
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.banner-btn a:hover span{
    width: 100%
}
.banner-btn a:hover{
    color: #000;
}

/*--About--*/
#about{
  height: 150vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  color:#fff;
  background: #0B032D;
  letter-spacing: 2px;
  padding-bottom: 100px;
  
}
.about:nth-child(odd){
  background: #0B032D;
}
.about-img{
    position: relative;
    opacity: 90%;
    left: 750px;
    bottom: 0;
    top: -110px;
}
.about-video{
    position: absolute;
    width: 80%;
    top: 620px !important;
    left: -3px;
    cursor: pointer;
    margin-top: -240px;
}
.about-content{
    position: relative;
    left: -140px;
    max-width: 795px;
    top: 70px;
}
.about-content img{
  margin-top: 150px;
  width: 500px;
  max-width: 500px;
}
.about-content h1{
    font-family:"Panton";
    font-size: 70px;
    transform: translate(0px, -750px);
    margin: 10px 0;
    font-weight: 100;
    margin-top: -100px;
    width: 90%;
}
.about-content h2{
    font-family:"Panton";
    font-size: 70px;
    transform: translate(0px, -780px);
    margin: 10px 0;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    width: 90%;
}
.about-content p{
    font-size: 15px;
    text-align: justify;
    transform: translate(0px, -780px);
    margin: -20px 0;
    color: #ccc;
    line-height: 18px;
    width: 80%;
}
.about-btn{
    margin: 25px auto 0;
    left: 0px;
    text-align: center;
    width: 80%;
    margin-left: 0px;
}
.about-btn a{
    position: relative;
    font-size: 20px;
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin: 0 40px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    top: -780px;
    left: 0px;
    z-index: 1;
    transition: color 0.5s;
}
.about-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.about-btn a:hover span{
    width: 100%
}
.about-btn a:hover{
    color: #000;
}
.video-container{
  position: absolute;
  width: 100%;
  padding-top: 30px;
}
.video-wrapper{
  display: grid;
  grid-template-columns: 330px 330px 330px;
  grid-template-rows: 250px 250px 250px;
  justify-content: center;
}
.relatif {
  position: relative !important;
} 

.detail-button{
  width: 130px;
  height: 40px;
  font-family:"Panton";
  background-color: #0B032D;
  color: #ffffff;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.modal {
  display: none; 
  position: fixed;
  z-index: 3;
  padding-top: 200px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4); 
  border: 1px solid #FFF;
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 40%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal-header {
  padding: 2px 16px;
  background-color: #0B032D;
  color: white;
} 
.modal-header h5{
  font-size: 20px;
  font-family:"Panton";
  padding: 10px;
} 
.modal-body {
  padding: 2px 16px;
} 
.modal-body iframe{
  display: block;
  margin: auto;
  padding: auto;
} 
.modal-footer {
  padding: 2px 16px;
  color: white;
}

/* Studio */
#studio{
  padding-top: 2rem;
  background: #0B032D;
  padding-bottom: 680px;
  top: -50px;
}
.txt-studio{
  text-align: center;
  font-family:"Panton";
  font-size: 40px;
  font-weight: 100;
}
.txt-studio h1{
  color: #FFFFFF;
}
.txt-studio h2{
  color: #0B032D;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFFFFF;
}
.studio-btn{
  text-align: center;
  gap: 20px;
  padding-top: 30px;
  width: 100%;
  justify-content: center;
}
.studio-btn a{
  position: relative;
  font-size: 20px;
  width: 160px;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  padding: 12px 0;
  color: #fff;
  border: 0.5px solid #fff;
  left: 5px;
  z-index: 1;
  transition: color 0.5s;
  gap: 100px !important;
}
.studio-btn a span{
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -1;
  transition: 0.5s;
}
.studio-btn a:hover span{
  width: 100%
}
.studio-btn a:hover{
  color: #000;
}

.video-container {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 20px;
position: absolute !important;
gap: 10px;
width: 100%;
left: 0;
}
.video-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 250px 250px 250px;
gap: 14px;
}
#myCategories {
display: flex;
gap: 20px;
justify-content: center;
}
.studio-content {
position: relative;
left: 0px;
max-width: 1920px;
padding-top: 10px;
}
.studio-content h1 {
position: relative;
font-family: 'Panton';
font-size: 70px;
text-align: center;
margin: 20px 0;
font-weight: 100;
color: #FFFFFF;
}
.studio-content h2 {
font-family: 'Panton';
text-align: center;
-webkit-text-stroke: 1px #fff;
color: transparent;
font-size: 70px;
}
.detail-button {
width: 130px;
height: 40px;
font-family: 'Panton';
background-color: #0b032d;
color: #ffffff;
border: 1px solid #ffffff;
}
.detail-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -795%);
margin-top: 50px;
z-index: 1;
}
/* .modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.4);
border-radius: 30px;
}
.modal-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid #888;
width: 40%;
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;
border-radius: 10px 10px 10px 10px;
} */
/* @-webkit-keyframes animatetop {
from {
  top: -300px;
  opacity: 0;
}
to {
  top: 0;
  opacity: 1;
}
}
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.modal-header {
padding: 2px 16px;
background-color: #0b032d;
color: white;
border-radius: 10px 10px 0px 0px;
}
.modal-header h5 {
font-size: 20px;
font-family: 'Panton';
padding: 10px;
}
.modal-body {
padding: 2px 16px;
}
.modal-body iframe {
display: block;
margin: auto;
padding: auto;
}
.modal-footer {
padding: 2px 16px;
color: white;
} */

/*--Metavor--*/
#metavor{
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  color:#777;
  background: #0B032D;
  letter-spacing: 2px;
  padding-top: 40px;
}
.metavor:nth-child(odd){
  background: #ddd;
}
.metavor-before{
    position: relative;
    left: 85px;
    margin-top: 20px;
    height: 631px;
    width: 360px;
    border: 5px solid #fff;
}
.metavor-before video{
    position: relative;
    top: -695px;
    z-index: 0;
    width: 100%;
}
.metavor-before h1{
    position: relative;
    font-family:"Panton";
    font-size: 90px;
    top: 570px;
    left: 0;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    z-index: 1;
    text-align: center;
}
.metavor-before h2{
    position: relative;
    font-family:"Panton";
    font-size: 70px;
    letter-spacing: -12px;
    top: -129px;
    left: 380px;
    color: #fff;
    writing-mode: vertical-lr;
    text-orientation: upright;
}
.metavor-after{
    position: relative;
    left: 210px;
    margin-top: 20px;
    height: 631px;
    width: 360px;
    border: 5px solid #fff;
}
.metavor-after video{
    position: relative;
    top: -103px;
    z-index: 0;
    width: 100%;
}
.metavor-after h1{
    position: relative;
    font-family:"Panton";
    font-size: 90px;
    top: 570px;
    left: 20px;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    z-index: 1;
}
.metavor-content{
    position: relative;
    text-align: right;
    max-width: 790px;
    margin-left: 18%;
    margin-top: -200px;
}
.metavor-content h1{
    font-family:"Panton";
    font-size: 70px;
    color: #fff;
    margin-top: -200px;
    font-weight: 100;
}
.metavor-content h2{
    font-family:"Panton";
    font-size: 90px;
    margin-top: 0px;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.metavor-content p{
    font-size: 15px;
    text-align: justify;
    text-align-last: right;
    margin-top: 0px;
    color: #ccc;
    line-height: 18px;
}
.btn-metavor{
  display: flex;
}
.metavor-btn a{
    font-size: 20px;
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    top: 20px;
    left: 0px;
    z-index: 1;
    transition: color 0.5s;
}
.metavor-btn2 a{
    font-size: 20px;
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    top: 20px;
    left: 50px;
    z-index: 1;
    transition: color 0.5s;
}
.metavor-btn3 a{
    font-size: 20px;
    width: 160px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin: 0 10px;
    padding: 12px 0;
    color: #fff;
    border: .5px solid #fff;
    position: relative;
    top: 20px;
    left: 100px;
    z-index: 1;
    transition: color 0.5s;
}
.metavor-btn a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.metavor-btn2 a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.metavor-btn3 a span{
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}
.metavor-btn a:hover span{
    width: 100%
}
.metavor-btn2 a:hover span{
    width: 100%
}
.metavor-btn3 a:hover span{
    width: 100%
}
.metavor-btn a:hover{
    color: #000;
}
.metavor-btn2 a:hover{
    color: #000;
}
.metavor-btn3 a:hover{
    color: #000;
}

/*--Contact--*/
#contact{
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  color:#777;
  background: #0B032D;
  letter-spacing: 2px;
  padding-top: 4rem;
  padding-bottom: 100px;
}
.contact:nth-child(odd){
  background: #ddd;
}
.contact{
    background: #101010;
    padding: 40px 15%;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 6rem;
}
.contact-ourpartner{
    position: relative;
    top: 15px;
    left: -170px;
    border: 3px solid #fff;
}
.contact-ourpartner h1{
    font-family:"JoseM";
    color: #fff;
    font-size: 50px;
    transform: translate(50px, -70px);
}
.logo-1{
  display: flex;
  justify-content: center;
  padding: 30px;
}
.logo-1 img{
  width: 100px;
}
.logo-2{
  display: flex;
  justify-content: center;
  padding: 30px;
}
.logo-2 img{
  width: 100px;
}
.logo-3{
  display: flex;
  justify-content: center;
  padding: 30px;
}
.logo-3 img{
  width: 100px;
}
/* .logo-1 img{
    width: 100px;
    transform: translate(50px, -30px);
}
.logo-2 img{
    width: 100px;
    transform: translate(50px, -35px);
}
.logo-3 img{
    width: 100px;
    transform: translate(50px, -35px);
} */
.contact-form{
    position: relative;
    transform: translate(130px, -30px);
}
.contact-form h1{
    font-family:"JoseM";
    font-size: 120px;
    color: #fff;
    margin-bottom: 20px;
}
.contact-form span{
    font-family:"JoseM";
    color: #fff;
}
.contact-form p{
    font-family:"JoseM";
    color: #fff;
    width: 600px;
    /* max-width: 10px; */
    letter-spacing: 2px;
    line-height: 26px;
    font-size: 1.3rem;
    margin-bottom: 3,8rem;
}
.contact-form form input,
form textarea{
    font-family:"JoseM";
    width: 55%;
    padding: 17px;
    border: none;
    outline: none;
    background: #191919;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    border-radius: 10px;
}
.contact-form textarea{
    resize: none;
    height: 200px;
}
.contact-form form .btn{
    position: relative;
    top: 55px;
    left: -445px;
    display: inline-block;
    background: #f9004d;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 10px;
    width: 220px;
    transition: ease .20s;
    cursor: pointer;
}
.contact-form form .btn:hover{
    border: 2px solid #f9004d;
    background: transparent;
    transform: scale(1.1);
}
.social-menu{
    position: relative;
}
.social-menu ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}
.social-menu ul li {
    list-style: none;
    margin: 0 10px;
}
.social-menu ul li .fa {
    color: #000000;
    font-size: 25px;
    line-height: 50px;
    transition: .2s;
}
.social-menu ul li .fa:hover {
    color: #ffffff;
}
.social-menu ul li a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    text-align: center;
    transition: 0.2s;
    transform: translate(0,0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}
.social-menu ul li:nth-child(2) a:hover {
    background-color: #55acee;
}
.social-menu ul li:nth-child(3) a:hover {
    background-color: #e4405f;
}
.social-menu ul li:nth-child(4) a:hover {
    background-color: #cd201f;
}
.social-menu ul li:nth-child(5) a:hover {
    background-color: #0077B5;
}

/*--Nav--*/
.navbar{
  position: fixed;
  top:50%; right:30px;
  transform: translateY(-50%);
  z-index: 1000;
}

.navbar ul{
  list-style: none;
  padding:0; margin: 0;
}

.navbar ul li{
  width: 200px;
  position: relative;
  text-align: right;
}

.navbar ul li .dot{
  color:#fff;
  display: block;
  padding:5px 0;
}

.navbar ul li .dot span{
  display: inline-block;
  background: #f9004d;
  letter-spacing: 1px;
  padding:10px 25px;
  margin-right: 30px;
  border-radius: 3px;
  transform: translateX(30px);
  opacity: 0;
}

.navbar ul li:hover .dot span{
  transform: translateX(0px);
  opacity: 1;
}

.navbar ul li .dot span::before{
  content: '';
  position: absolute;
  top:50%; right:0;
  transform: translate(7px, -50%);
  border-left: 7px solid #f9004d;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  display: block;
}

.navbar ul li .dot::before,
.navbar ul li .dot::after{
  content: '';
  position: absolute;
  top:50%;
  border-radius: 50%;
  display: block;
  transition: .2s ease-out;
}

.navbar ul li .dot::before{
  height:5px;
  width: 5px;
  border: 2px solid #fff;
  right:0;
  transform: translateY(-50%);
}

.navbar ul li .dot.active::before,
.navbar ul li:hover .dot::before{
  border-color: #f9004d;
  background: #f9004d;
}

.navbar ul li .dot::after{
  height:15px;
  width: 15px;
  border: 2px solid #f9004d;
  right:-5px;
  transform: translateY(-50%) scale(0);
}

.navbar ul li .dot.active::after,
.navbar ul li:hover .dot::after{
  transform: translateY(-50%) scale(1);
}

/* Accordion */
.accordion{
  min-height: 100vh;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  padding-bottom: 100px;
}

.title{
  font-size: 3rem;
  margin: 2rem 0 rem;
}

.faq{
  min-width: 1200px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  cursor: pointer;
}

.question{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question h3{
  font-style: 1.8rem;
}

.answer{
  max-height: 200px !important;
  padding: 30px;
  overflow: hidden;
  position: relative; 
  transition: max-height 0.3s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(11, 3, 45) 100%);
}


.answer.show {
    max-height: 200px; 
    overflow-y: auto;
}

.answer p{
  padding: 10px;
  position: absolute; /* Menetapkan posisi absolut untuk elemen <p> */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Menetapkan z-index agar gradient berada di atas teks */
}


.faq.active .answer{
  min-height: 130px;
}

/* Translate Button */

.language{
  position: fixed;
  width: 200px;
  padding: 10px;
  margin-left: 40px;
  font-weight: bold;
  background-color: #fff;
  z-index: 10;
  left: 10px;
  bottom: 52rem;
}

.language-selected{
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.language-selected::before{
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(img/english-1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

/* jQuery class */
.language-selected.change-en:before{
  background-image: url(img/english-1.jpg);
}
.language-selected.change-id:before{
  background-image: url(img/indonesia-1.jpg);
}

.language ul{
  position: absolute;
  width: 250px;
  background-color: #fff;
  border: 1px solid #f8f8f8;
  padding-top: 10px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.5);
  display: none;
  padding: 20px;
  font-size: 20px;
}

.language ul li{
  list-style: none;
}

.language ul li a{
  display: block;
  color: #252525;
  padding-top: 10px;
  text-decoration: none;
}

.language ul li a::before{
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 10px;
}

a.en::before{
  background-image: url(img/english-1.jpg);
}
a.id::before{
  background-image: url(img/indonesia-1.jpg);
}

.language:hover ul{
  display: block;
}


/* HANDPHONE */
@media (min-width: 360px) and (max-width: 600px){
    /* Home */
    #home{
      position: relative;
      background-size: cover;
      background-position: center;
      padding-bottom: 0px;
      /* height: 750px; */
      height: 66vh;
  }
    .banner-btn{
      left: 5%;
    }
    .back-video{
      display: flex; 
      justify-content: center;
    }
    .back-video video{
      position: absolute; 
      top: 428px;
      width: 100%;
    }
    .logo{
      width: 50px;
    }
    .banner-cover{
      top: 6%;
      width: 100px;
      left: 30%;
    }
    .banner-btn{
      position: relative;
      margin: -10px auto 0;
      text-align: center;
      left: 30%;
  }
  .banner-btn a{
      position: relative;
      transform: scale(1.2);
      font-size: 10px;
      width: 80px;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      margin: 0 35px;
      padding: 2px 0;
      color: #fff;
      border: .5px solid #fff;
      z-index: 1;
      transition: color 0.5s;
  }
  .banner-btn a span{
      position: absolute;
      width: 0;
      height: 100%;
      top: 0;
      left: 0;
      background: #fff;
      z-index: -1;
      transition: 0.5s;
  }
  .banner-btn a:hover span{
      width: 100%
  }
  .banner-btn a:hover{
      color: #000;
  }
  .banner-btn-contact{
    margin: 10px !important;
    padding: 0;
  }
  .banner-btn-about{
    margin: 3px !important;
    padding: 0;
  }

  /* Navbar */
  .navbar{
    display: none;
  }
  
  .navbar ul{
    display: none;
  }
  
  .navbar ul li{
    display: none;
  }
  
  .navbar ul li .dot{
    display: none;
  }
  
  .navbar ul li .dot span{
    display: none;
  }
  
  .navbar ul li:hover .dot span{
    display: none;
  }
  
  .navbar ul li .dot span::before{
    display: none;
  }
  
  .navbar ul li .dot::before,
  .navbar ul li .dot::after{
    display: none;
  }
  
  .navbar ul li .dot::before{
    display: none;
  }
  
  .navbar ul li .dot.active::before,
  .navbar ul li:hover .dot::before{
    display: none;
  }
  
  .navbar ul li .dot::after{
    display: none;
  }
  
  .navbar ul li .dot.active::after,
  .navbar ul li:hover .dot::after{
    display: none;
  }
    /* About */
    #about {
      margin-top: 0px !important;
      flex-direction: column;
      height: 100vh;
      padding-top: 0px;
      padding-bottom: 0px;
    }
    .about-content{
      top: 80px !important;
    }
    .about-content img{
        width: 100%;
        margin: 0px;
        margin-top: -70px;
        margin-bottom: 140px;
        display: none !important;
    }
    .about-img{
        position: relative;
        opacity: 90%;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 600px;
        margin-bottom: 20px;
        margin: 0px;
        display: none !important;
    }
    .about-video {
        position: static;
        width: 100%;
        top: initial;
        left: initial;
        cursor: pointer;
        margin-top: 0px;
      }

      .about-video video{
        margin: 0px;
        padding: 20px;
        width: 100%;
      }
      
      .about-content {
        position: relative;
        left: 0;
        max-width: 100%;
        margin-top: 10px;
      }
      .about-content h1 {
        font-size: 30px;
        transform: none;
        margin-top: 200px !important;
        margin: 15px;
      }
      
      .about-content h2 {
        font-size: 35px;
        transform: none;
        margin: 10px 0;
        margin-bottom: 20px;
        margin: 15px;
      }
      
      .about-content p {
        font-size: 15px;
        text-align: justify;
        transform: none;
        margin: -20px 0;
        margin: 15px;
        width: 90% !important;
      }
      
      .about-btn {
        margin: 0px auto 0;
        text-align: center;
      }
      
      .about-btn a {
        position: relative;
        font-size: 20px;
        width: 160px;
        text-decoration: none;
        text-align: center;
        display: inline-block;
        margin: 0 40px;
        padding: 12px 0;
        color: #fff;
        border: .5px solid #fff;
        top: 0;
        left: 0px;
        z-index: 1;
        transition: color 0.5s;
      }
      
      .about-btn a span {
        width: 0;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        z-index: -1;
        transition: 0.5s;
      }
      
      .about-btn a:hover span {
        width: 100%;
      }
      
      .about-btn a:hover {
        color: #000;
      }

      /* Studio */
      #studio{
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 100px;
      }
      .studio-content h1{
        font-size: 30px;
        margin: 5px;
        margin-top: 500px;
      }
      .studio-content h2{
        font-size: 30px;
        margin: 5px;
      }
      .studio-btn a{
        font-size: 20px;
        width: 160px;
        text-decoration: none;
        display: inline-block;
        margin: 0 10px;
        padding: 12px 0;
        color: #fff;
        border: 0.5px solid #fff;
        left: 5px;
        z-index: 1;
        transition: color 0.5s;
        gap: 100px !important;
    }
      #myCategories{
        display: block;
      }
      .video-container{
        width: 100%;
        margin: 0px; 
        padding: 0px;
        position: relative !important;
        margin-top: 20px;
      }
      .video-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 250px;
      }
      .relatif{
        height: 250px;
        position: relative;
      }

      #myModal{
        padding-top: 0px;
      }

      .modal {
        display: none;
        position: absolute;
        z-index: 3;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
      }
      .modal-content {
        position: relative;
        background-color: #fefefe;
        margin: auto;
        padding: 0;
        width: 100%;
        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;
        border-radius: 0px 0px 0px 0px;
      }
      @-webkit-keyframes animatetop {
        from {
          top: -300px;
          opacity: 0;
        }
        to {
          top: 0;
          opacity: 1;
        }
      }
      .close {
        color: white;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
      }
      .modal-header {
        padding: 2px 16px;
        background-color: #0b032d;
        color: white;
      }
      .modal-header h5 {
        font-size: 20px;
        font-family: 'Panton';
        padding: 10px;
      }
      .modal-body {
        padding: 2px 16px;
        height: 300px !important;
      }
      .modal-body iframe {
        display: flex;
        justify-content: center;
        top: 100px;
        width: 100%;
        height: 300px;
      }
      /* Metavor */
      #metavor {
    padding-top: 100px;
    display: block;
    margin-top: -20px;
  }
  
  .metavor-before{
    width: 100% !important;
    left: 0px !important;
    margin: 0px !important;
    height: 755px;
  }
  .metavor-after {
    top: 95px;
    width: 100% !important;
    left: 0px !important;
    margin: 0px !important;
    height: 755px;
  }
  
  .metavor-before video{
    top: -132px !important;
  }
  
  .metavor-after video{
    top: -72px !important;
  }
  
  .metavor-before h1{
    font-size: 60px;
    text-align: center !important;
    top: 715px;
  }
  /* .metavor-after h1 {
    font-size: 60px;
    top: 610px;
    width: 0;
    position: relative;
  } */
  
  .metavor-after h1{
    position: relative;
    font-family:"Panton";
    font-size: 60px;
    top: 715px;
    -webkit-text-stroke: 2px #fff;
    color: transparent;
    z-index: 1;
    clear: right !important;
    left: 0;
    right: 0;
    text-align: center !important;
  }
  
  .metavor-before h2 {
    font-size: 50px;
    left: 0px !important;
    letter-spacing: 2px;
    writing-mode: horizontal-tb;
    top: -150px;
    
  }
  
  .metavor-content {
      position: relative;
      text-align: center;
      margin-top: 170px;
      margin-left: 0px;
      width: 100%;
  }

  /* .metavor-content{
      position: relative;
      left: -25px;
      text-align: right;
      max-width: 790px;
      margin-left: 18%;
      margin-top: 10%;
  } */
  
  .metavor-content h1 {
    font-size: 37px;
    width: 100%;
    left: 0px;
    padding: 0px;
    margin: 0px;
    margin-left: 0px;
  }
  
  .metavor-content h2 {
    font-size: 37px;
    width: 100%;
    left: 0px;
    padding: 0px;
    margin: 0px;
    margin-left: 0px;
  }
  
  .metavor-content p {
      font-size: 12px;
      width: 100%;
      left: 0px;
      padding: 0px;
      margin: 0px;
      padding: 8px;
      margin-left: 0px;
  }
  
  .btn-metavor{
      display: block;
      margin-left: 0px;
      width: 100%;
  }

  .metavor-btn{
    margin: 0;
    padding: 0;
  }

  .metavor-btn2{
    margin: 0;
    padding: 0;
  }
  
  .metavor-btn a{
    font-size: 18px;
    width: 200px;
    padding: 20px;
    left: 0px;
  }
  .metavor-btn2 a {
    font-size: 18px;
    width: 200px;
    padding: 20px;
    top: 30px;
    left: 0px;
  }

  .metavor-btn3 a {
    font-size: 18px;
    width: 200px;
    padding: 20px;
    top: 40px;
    left: 0px;
  }

  /* Contact */
  #contact{
    top: 0px;
    padding-top: 690px;
    padding-bottom: 0px;
  }
  .contact {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
    padding: 40px;
    background: #0B032D;
    display: block;
  }
  
  .contact-ourpartner {
    position: absolute;
    width: 90%;
    left: 0;
    transform: none;
    right: 50px;
    margin: 0px;
    margin-left: 20px;
    margin-top: 150px;
    border: 3px solid #fff;
    top: auto;
  }

  .contact-form form{
    margin: 15px;
  }
  
  .contact-ourpartner h1 {
    transform: none;
    text-align: center;
    margin-top: -4rem;
    margin-bottom: 4.5rem;
  }

  .logo-1{
    display: flex;
    justify-content: center;
  }
  .logo-2{
    display: flex;
    justify-content: center;
  }
  .logo-3{
    display: flex;
    justify-content: center;
  }
  
  .logo-1 img,
  .logo-2 img,
  .logo-3 img {
    width: 70px;
    transform: none;
    margin: 0 auto;
  }
  
  .contact-form {
    transform: none;
    text-align: center;
    top: -600px;
  }
  
  .contact-form h1 {
    font-size: 60px;
    margin-bottom: 10px;
  }
  
  .contact-form p {
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
  }
  
  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
  }
  
  .contact-form form .btn {
    top: 0;
    left: 0;
    transform: none;
    margin: 1rem auto;
  }
  
  .social-menu ul {
    top: auto;
    left: auto;
    transform: none;
    justify-content: center;
    margin-top: -25px;
  }
  
  .social-menu ul li {
    margin: 0 5px;
    display: flex;
    justify-content: center;
  }

  /* Accordion */
  .accordion{
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding-bottom: 100px;
  }

  .faq{
    min-width: 340px;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
  }

  .language{
    left: 8.8rem;
    bottom: 0rem;
  }
  .language ul{
    bottom: 3rem;
    left: 0rem;
    font-size: 12px;
  }
}

/* iphone x */
@media (min-width: 375px) and (max-width: 768px){
  /* About */
  #about{
      margin-top: -180px !important;
  }
  .about-content h1 {
    margin-top: 430px !important;
  }
  
  .about-content h2 {
    margin: 10px 0;
    margin-bottom: 20px;
    margin: 15px;
  }
  
  .about-content p {
    font-size: 15px;
    text-align: justify;
    transform: none;
    margin: -20px 0;
    margin: 15px;
    width: 90% !important;
  }

  /* Studio */
  #studio{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 700px;
  }
  .studio-content h1{
    font-size: 30px;
    margin: 5px;
    margin-top: 600px;
  }
  .studio-content h2{
    font-size: 30px;
    margin: 5px;
  }

  /* Accordion */
  .accordion{
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding-bottom: 100px;
  }

  .faq{
    min-width: 340px;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
  }

  .language{
    left: 8.8rem;
    bottom: 0rem;
  }
  .language ul{
    bottom: 3rem;
    left: 0rem;
    font-size: 12px;
  }
}

/* iphone 12 */
@media (min-width: 390px) and (max-width: 768px){
  /* About */
  #about{
      margin-top: -160px !important;
  }
  .about-content h1 {
    margin-top: -300px !important;
  }
  
  .about-content h2 {
    margin: 10px 0;
    margin-bottom: 20px;
    margin: 15px;
  }
  
  .about-content p {
    font-size: 15px;
    text-align: justify;
    transform: none;
    margin: -20px 0;
    margin: 15px;
    width: 90% !important;
  }

  /* Studio */
  #studio{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 200px;
  }
  .studio-content h1{
    font-size: 30px;
    margin: 5px;
    margin-top: 40px;
  }
  .studio-content h2{
    font-size: 30px;
    margin: 5px;
  }

  /* Metavor */
  .metavor-before video{
    top: -758px;
  }

  /* Accordion */
  .accordion{
    min-height: 100vh;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding-bottom: 100px;
  }

  .faq{
    min-width: 340px;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
  }

  .language{
    left: 9rem;
    bottom: 0rem;
  }
  .language ul{
    bottom: 3rem;
    left: 0rem;
    font-size: 12px;
  }
}

/* Iphone XR */
@media (min-width: 414px) and (max-width: 768px){
  /* About */
  #about{
    margin-top: -180px !important;
  }
  .about-content h1 {
    margin-top: -280px !important;
  }

  .about-content h2 {
    margin: 10px 0;
    margin-bottom: 20px;
    margin: 15px;
  }

  .about-content p {
    font-size: 15px;
    text-align: justify;
    transform: none;
    margin: -20px 0;
    margin: 15px;
    width: 90% !important;
  }

  /* Studio */
  #studio{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 200px;
  }
  .studio-content h1{
    font-size: 30px;
    margin: 5px;
    margin-top: 40px;
  }
  .studio-content h2{
    font-size: 30px;
    margin: 5px;
  }
}

/* Iphone 12 PROMAX */
@media (min-width: 428px) and (max-width: 768px){
  /* About */
  #about{
    margin-top: -180px !important;
  }
  .about-content h1 {
    margin-top: 330px !important;
  }

  .about-content h2 {
    margin: 10px 0;
    margin-bottom: 20px;
    margin: 15px;
  }

  .about-content p {
    font-size: 15px;
    text-align: justify;
    transform: none;
    margin: -20px 0;
    margin: 15px;
    width: 90% !important;
  }

  /* Studio */
  #studio{
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 200px;
  }
  .studio-content h1{
    font-size: 30px;
    margin: 5px;
    margin-top: 580px;
  }
  .studio-content h2{
    font-size: 30px;
    margin: 5px;
  }
}


/* 18 INCH Responsive 75% */
@media (min-width: 1600px) and (max-width: 1920px){

  /* About */
  .about-content{
    margin-top: -300px;
    left: -290px;
  }
  .about-content h1{
    width: 100%;
  }
  .about-content h2{
    width: 100%;
  }
  .about-content p{
    width: 100%;
  }
  .about-btn{
    width: 100%;
    margin-top: 37px;
  }
  .about-video{
    width: 100%;
    margin-top: -55px;
  }
  .about-video video{
    width: 100%;
  }
  .about-content img{
    left: 850px;
    width: 620px;
    max-width: 620px;
  }
  .about-img{
    top: 45px;
  }
  .metavor-content{
    left: -70px !important;
    margin-left: -70px !important;
  }
}

/* Dimensi Responsive 100% */
@media (min-width: 1200px) and (max-width: 1600px){
  .language{
    left: 0rem !important;
    bottom: 34.7rem !important;
    margin-left: 62rem !important;
  }
  .about-content h1{
    margin-top: 80px;
  }
  .about-img{
    top: 120px;
  }
  .about-video{
    top: 950px;
  }
  #metavor{
    margin-top: 150px;
  }
  .metavor-content p {
      font-size: 12px;
  }
  .metavor-content h1{
      margin-top: -130px !important;
  }
  .metavor-content h2{
      font-size: 67px;
  }
  .metavor-content{
      margin-right: 40px;
      width: 800px !important;
  }
  .metavor-before{
      margin-left: -30px !important;
  }
  .metavor-before video{
    top: -758px;
  }
  .metavor-after video{
    top: -110px;
  }
  .btn-metavor{
      display: flex;
      margin-right: -60px !important;
  }
  .metavor-btn a{
      margin-right: 0px !important;
      width: 140px;
  }
  .metavor-btn2 a{
      margin-left: -40px !important;
      width: 140px;
  }
  .metavor-btn3 a{
      margin-left: -50px !important;
      width: 140px;
  }
  #contact{
    margin-top: 150px;
  }
}

/* Dimensi Responsive 90% */
@media (min-width: 1400px) and (max-width: 1600px){
  .language{
    left: 0rem !important;
    bottom: 39.5rem !important;
    margin-left: 70rem !important;
  }
  .about-content h1{
    margin-top: 10px;
  }
  .about-img{
    top: 10px;
  }
  .about-video{
    top: 900px;
  }
  .metavor-content{
      margin-right: 100px;
      width: 800px !important;
  }
  .metavor-content p{
      width: 100%;
  }
  .metavor-content h2{
      font-size: 80px;
  }
  .metavor-before{
      margin-left: -50px !important;
  }
  .metavor-before video{
    top: -751px;
  }
  .metavor-after{
      margin-right: 0px !important;
      width: 361px !important;
  }
  .metavor-after video{
    top: -108px;
    width: 350px !important;
  }
  .metavor-content h1{
    margin-top: -30px;
  }
  .btn-metavor{
      display: flex;
      margin-left:  40px !important;
  }
  .metavor-btn a{
      margin-left: -40px !important;
  }
  .metavor-btn2 a{
      margin-left: -30px !important;
  }
  .metavor-btn3 a{
      margin-left: -40px !important;
  }
}

/* Dimensi Responsive 80% */
@media (min-width: 1600px) and (max-width: 1920px){
  .language{
    left: 0rem !important;
    bottom: 0rem !important;
    margin-left: 0rem !important;
  }
  .about-content h1{
    margin-top: 100px;
  }
  .about-img{
    top: 300px;
  }
  .about-video{
    top: 986px;
  }
  .metavor-before video{
    top: -900px !important;
  }
  .metavor-after video{
    top: -110px;
  }
}

/* Dimensi Responsive 75% (80%) */
@media (min-width: 1700px) and (max-width: 1920px){
  .about-content h1{
        margin-top: 100px;
    }
    .about-video{
        top: 920px;
    }
    .about-content img{
        margin-top: 120px;
    }
  .language{
    left: 0rem;
    bottom: 46rem !important;
    margin-left: 83rem !important;
  }
  #metavor{
    margin-top: 150px;
  }
  .metavor-content{
      margin-left: 300px !important;
  }
  .metavor-content p {
      width: 650px;
  }
  .metavor-before video{
    top: -764.8px !important;
  }
  .metavor-after video{
    top: -197px !important;
  }
  #contact{
    margin-top: 150px;
  }
}

/* Dimensi Responsive 67% (75%) */
@media (min-width: 1800px) and (max-width: 1920px){
  .language{
    left: 0rem;
    bottom: 48rem !important;
    margin-left: 85rem !important;
  }
  .metavor-content{
      margin-left: 300px !important;
  }
  .metavor-content p{
      width: 100%;
  }
  .metavor-before video{
    top: -756.8px !important;
  }
  .metavor-after video{
    top: -195px;
    height: 800px;
  }
  
}

/* 67% (100% Monitor Besar) */
@media (min-width: 1920px) and (max-width: 2100px){
  .about-content h1{
        margin-top: 20px;
   }
   .about-video{
        top: 690px;
    }
    .about-content img{
        margin-top: -80px;
    }
  .language{
    left: 0rem;
    bottom: 55rem !important;
    margin-left: 90rem !important;
  }
  .metavor-content{
      margin-left: 300px !important;
  }
  .metavor-content p{
      width: 100%;
  }
  .metavor-before video{
    top: -755px;
  }
  .metavor-after video{
    top: -108px;
  }
  .metavor-content h1{
    margin-top: -100px;
  }
}

/* 90% Monitor Besar */
@media (min-width: 2100px) and (max-width: 2300px) {
  .about-content h1{
    margin-top: -250px;
  }
  .about-video{
    top: 470px !important;
  }
  .about-content img{
    margin-top: 0px;
  }
  .language{
    left: 0rem;
    bottom: 61.5rem !important;
    margin-left: 105rem !important;
  }
  .metavor-content{
      margin-left: 400px !important;
  }
  .metavor-content p{
      width: 100%;
  }
  .metavor-before video{
    top: -751px;
  }
  .metavor-after video{
    top: -107px;
  }
  .studio-content{
    display: block;
    margin: auto;
    padding: auto;
  }
}

/* 80% Monitor besar */
@media (min-width: 2300px) and (max-width: 2500px){
  #home{
    bottom: 50px;
  }
  .logo{
    top: 90px;
  }
  .about-content h1{
    margin-top: -200px;
  }
  .about-video{
    top: 370px !important;
  }
  .about-content img{
    margin-top: -150px;
  }
  .language{
    left: 0rem;
    bottom: 70rem !important;
    margin-left: 120rem !important;
  }
  .studio-content{
    display: block;
    margin: auto;
    padding: auto;
  }
  .metavor-before video{
    top: -768px;
  }
  .metavor-after video{
    top: -109px;
  }
} 

/* 75% Monitor Besar */
@media (min-width: 2500px) and (max-width: 2750px){
  #home{
    bottom: 100px;
  }
  .logo{
    top: 141px;
  }
  .about-content h1{
    margin-top: -250px;
  }
  .about-video{
    top: 370px !important;
  }
  .about-content img{
    margin-top: -100px;
  }
  .language{
    left: 0rem;
    bottom: 74.5rem !important;
    margin-left: 130rem !important;
  }
  .studio-content{
    display: block;
    margin: auto;
    padding: auto;
  }
  .metavor-before video{
    top: -755px;
  }
  .metavor-after video{
    top: -109px;
  }
}

/* 67% monitor besar */
@media (min-width: 2750px){
  #home{
    bottom: 300px;
  }
  .logo{
    top: 350px;
  }
  .about-content h1{
    margin-top: -200px;
  }
  .about-video{
    top: 350px !important;
  }
  .about-content img{
    margin-top: -180px;
  }
  .back-video video{
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: -300vh;
  }
  .studio-content{
    display: block;
    margin: auto;
    padding: auto;
  }
  .language{
    left: 0rem;
    bottom: 84rem !important;
    margin-left: 150rem !important;
  }
  .metavor-before video{
    top: -755px;
  }
  .metavor-after video{
    top: -108px;
  }
}