html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: black;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

main{
    display: flex;
    flex-direction: column;
    min-height: 56vh;
}

main{
    flex: 1;
}

.logo{
    width: 200px;
    height: 170px;
    margin-left: auto;
    margin-right: auto;
}

.logo img{
    width: 100%;
    height: 100%;
}

.bigger-nav{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bigger-nav a{
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.bigger-nav a:hover{
    font-size: 28px;
    transition: 0.8s;
}

.sidebar{
  position: fixed;
  top: 0;
  left: -350px;
  width: 250px;
  height: 100vh;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.sidebar.active{
    left: 0;
}

.sidebar button{
    border: none;
    background: none;
    color: white;
    width: 16px;
    height: auto;
    margin-left: auto;
    cursor: pointer;
}

nav i{
    cursor: pointer;
    color: white;
    font-size: 22px;
    padding: 5px;
}

.sidebar a{
    text-decoration: none;
    color: white;
}

.about-us{
    font-family: sans-serif;
    font-size: 18px;
    width: 1100px;
    height: auto;
    margin: auto;
    padding: 10px;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
}

.packages{
    display: flex;
    gap: 40px;
    margin-left: 15px;
    align-items: stretch;
    margin-top: 30px;
}

.package{
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    font-family: sans-serif;
    padding: 5px;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 15px rgba(0,0,0,0.8);
}

.package h1{
    display: flex;
    justify-content: center;
    color: white;
}

.package h2{
    display: flex;
    justify-content: center;
    margin: 0;
    margin-bottom: 10px;
}

.package h4{
    display: flex;
    justify-content: center;
}

.package li{
    padding: 4px;
    display: block;
}

.package span{
    margin-bottom: 20px;
}

.package button{
    display: block;
    padding: 15px;
    background-color: black;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: 20px;
    align-self: center;
}

.package button:hover{
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: 0.8s;
    padding: 18px;
}

footer{
    padding: 1rem;
    text-align: center;
    font-family: sans-serif;
    color: white;
}

h1{
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.payment-plans{
    width: 600px;
    height: auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    box-shadow: 10px 10px 15px black;
    color: white;
}

section .service{
    width: 750px;
    height: auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 10px 10px 10px black;
    padding: 10px;
    margin: 0 auto 20px auto;
    color: white;
}

.contact-card{
    margin: 30px auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    box-shadow: 10px 10px 10px 5px black;
    border-radius: 10px;
    width: 300px;
    height: auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.contact-card p{
    font-weight: 600;
    text-align: center;
}

.contact-card a{
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: white;
    padding-bottom: 17px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  width: 300px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hidden {
  display: none;
}

.close {
  align-self: flex-end;
  cursor: pointer;
  font-size: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-header{
    display: flex;
    justify-content: space-between;
}

.modal-header .close{
    margin: auto 0 auto 0;
    font-size: 30px;
}

select{
    padding: 10px;
}

input{
    padding: 10px;
}

.modal-content button{
    padding: 10px;
    color: white;
    background-color: #010047;
    cursor: pointer;
}

.modal-content button:hover{
    background-color: #0704eb;
    transition: 0.8s;
}

#waDiscount{
    text-transform: uppercase;
}

#waDiscount::placeholder{
    text-transform: none;
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.reveal-left{
  opacity:0;
  transform:translateX(-60px);
  transition:1.2s ease;
}

.reveal-right{
  opacity:0;
  transform:translateX(60px);
  transition:1.2s ease;
}

.active{
  opacity:1;
  transform:translate(0,0);
}

.portfolio-web{
    width: 45%;
    height: auto;
    border: 1px solid white;
    border-radius: 10px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-web h3{
    color: white;
    margin: 0;
    padding: 10px;

}

.portfolio-web img{
    height: 400px;
    padding: 10px;
}

.package .fa-solid.fa-check{
    color: green;
}

.package .fa-solid.fa-xmark{
    color: gray;
}

@media (max-width: 650px){
    .bigger-nav{
        display: none;
    }

.portfolio-web{
    width: 80%;
}

.portfolio-web img{
    width: 100%;
}

    .logo{
    width: 130px;
    height: 120px;
    }

    nav a{
    font-size: 16px;
    }

    nav a:hover{
    font-size: 20px;    
    }

    .about-us{
    width: 300px;
    height: auto;
    font-size: 14px;
    }

    .packages{
    display: block;
    margin-left: 15px;
    }

    .package{
    padding: 5px;
    border-radius: 10px;
    margin: 5px auto 40px auto;
    width: 250px;
    }

    .package span{
    margin-bottom: 20px;
    }

    .package h1{
    font-size: 20px;
    margin: 0;
    margin-top: 15px;
    }

    .package h2{
    font-size: 16px;
    margin: 5px;
    }

    .package h4{
    font-size: 16px;
    margin: 5px;
    }

    .package li{
    font-size: 14px;
    }

    .payment-plans{
    width: 220px;
    padding: 25px;
    margin: 0 auto 40px auto;
    }

    h1{
        font-size: 22px;
    }

    section .service{
    width: 240px;
    padding: 10px;
    margin: 0 auto 20px auto;
    }

    .contact-card{
        width: 250px;
    }

    .payment-plans h2{
        font-size: 20px;
    }

    .payment-plans li{
        font-size: 15px;
    }

    .hero-video{
        width: 250px;
    }

}

@media (min-width: 651px){
    #menu-btn{
        display: none;
    }

    .reveal-left, .reveal-right{
        opacity:1;
        transform:none;
    }
    
}

@media (max-width: 1024px) and (min-width: 651px){
    .package{
        width: 200px;
    }

    .packages{
        gap: 20px;
    }

    .about-us{
    font-size: 15px;
    width: 700px;
    }

    .about-us span{
    display: block;
    }

    .package h1{
    font-size: 20px;
    margin: 0;
    }

    .package h2{
    font-size: 18px;
    margin: 5px;
    }

    .package h4{
    font-size: 15px;
    margin: 5px;
    }

    .package li{
    font-size: 15px;
    }

    section .service{
        width: 650px;
    }

    h1{
        font-size: 20px;
    }

}