.contact{
display:none;
}
main{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #090909;

}

main .top{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
width: 100%;
    height: 200px;
    margin-top: 100px;
    margin-bottom: 50px;
}
main .top h1{
    font-size: clamp(3vh,6vw,7rem);
letter-spacing: 2px;
color: #ffffffbc;
    font-family: 'tusker';
    cursor: default;
    transition: all .3s ease-in-out;
    margin-bottom: 15px;
}
main .top .search-box{
    width: 100%;
    max-width: 1024px;
        position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
main .top #faqSearch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  height: 50px;
  border-radius: 15px;
  padding: 15px 15px 15px 40px;
  border: none;
  font-family: 'handipro';
  background: #24242487 url('https://www.2sidemusic.net/img/search.png') no-repeat 12px center;
  background-size: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  border: 2px solid #3b3a3a63;
  color: #fff;
  transition: all .3s ease-in-out;
}

main .top #faqSearch:hover {
  border: 2px solid #e73c45;
}

main .top #faqSearch:focus {
  border: 2px solid #e73c45;
  outline: none;
  color: #fff;

}
main .top:focus-within h1 {
color: white;
}
main .boxs{
        position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
width: 100%;
max-width: 1440px;
    height: auto;
transition: all .3s ease-in-out;
}
main .boxs a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    min-height: 150px;
    width: 30%;
    margin: 10px;
    gap: 5px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    flex-wrap: wrap;
background: rgba(27, 27, 27, 0.374);
border-radius: 5px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(14.6px);
-webkit-backdrop-filter: blur(14.6px);
border: 1px solid #46464629;
transition: all .3s ease-in-out;
}

main .boxs a:hover{
background: rgba(35, 35, 35, 0.552);
border: 1px solid #e73c45;
border-top: 1px solid #e73c45;
}
main .boxs a .faq-question{
font-family: 'handipro';
font-size: 1.2rem;
color: #fff;
}
main .boxs a .faq-answer{
    font-family: 'musticapro';
    font-size: 0.8rem;
    color: #fff;
    height: auto;
}

main .last{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1024px;
    height: 400px;
    gap: 10%;
}
main .last p{
    font-size: 1.5rem;
    font-family: 'handipro';
    color: #fff;
    text-align: center;
}
main .last a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    border-radius: 10px;
    background-color: #e73c45;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
main .last a button{
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    font-family: 'handipro';
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    border-radius: 10px;
}
main .last a:hover{
    background-color: #393939;
}
@media (max-width: 768px) {
main .boxs{
    display: flex;
    flex-direction: column;
}
main .boxs a{
    width: 90%;
    border-left: 2px solid #e73c45;
border-right: 2px solid #e73c45;
}
}