
/* media queries */
html {
    font-size: 50%;
}

.active{
    color: white;
    text-decoration: underline;
}

  .menu-section.on .menu-toggle {
    position: absolute;
    right: 120px;
    top: 120px;
}

.filmes .contrainer {
    display: flex;
    gap: 0.5vw;
    padding-bottom: 3vh;
} 

.filmes .contrainer div {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: stretch;
    gap: 1vw;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.filmes .contrainer div img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: auto;
}


.play {
    width: 10rem !important;
    height: 10rem !important;
}



.filmes .contrainer  p {
    transform: rotate(180deg);
    color: white;
    writing-mode: tb;
    font-size: 2vh;
}

#modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  padding: 10%;
}

#modal-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-content: stretch;
    gap: 1vw;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

#modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.vp-center {
    background-color: transparent !important;
}

#modal-content .close {
  position: absolute;
  top: -2px;
  right: -34px;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 640px) {

    .filmes .contrainer  p {
    transform: rotate(180deg);
    color: white;
    writing-mode: tb;
    font-size: 1vh;
    }


    .menu-section.on .menu-toggle {
        position: absolute;
        right: 23px;
        top: 47px;
        }
    

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero .container img {
        order: -1;
    }

    .form-group {
        display: block;
    }

    .filmes .contrainer div p {
        transform: rotate(180deg);
        color: white;
        writing-mode: tb;
        font-size: 0.5vh;
    }
      
}

@media (max-width: 811px) {
    nav {
        display: none;
    }

    .one,
    .two,
    .three {
        background-color: #fff;
        height: 5px;
        width: 100%;
        margin: 6px auto;

        transition-duration: 0.3s;
    }

    .menu-toggle {
        width: 40px;
    }

    .menu-section {
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        
    }

    /* fullscreen */
    .menu-section.on { 
        transition: background-color 1s ease-in-out; 
        position: absolute;
        top:0;
        left:0;
        
        width: 101vw;
        height: 100vh;

        background-color: #0d0d0d;
        
        z-index: 10;

        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-section.on nav {
        display: block;
        
    }

    .menu-section.on .menu-toggle .one {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-section.on .menu-toggle .two {
        opacity: 0;
    }

    .menu-section.on .menu-toggle .three {
        transform: rotate(-45deg) translate(8px, -9px);
    }

    .menu-section.on nav ul {
        text-align: center;
        display: block;
    }

    .menu-section.on nav ul a{
        transition-duration: 0.5s;
        font-size: 4rem;
        line-height: 7rem;
        display: block;
        
    }

}

@media (max-width: 320px) {
    #form h3 {
        font-size: 2rem;
    }
}

  
body::-webkit-scrollbar {
  width: 0.7vw;               /* width of the entire scrollbar */

}

body::-webkit-scrollbar-thumb {
  background: rgb(25, 24, 24);        /* color of the tracking area */
  border-radius: 5%;
}

body::-webkit-scrollbar-track {
  background-color: rgb(94, 93, 93);    /* color of the scroll thumb */
}
