body{
    background-color: black;
    font-family: "Roboto", sans-serif;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.container-head{
    max-width: 1250px;
    margin: 0 auto;
}
.container{
    max-width: 1100px;
    margin: 0 auto;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.headbox{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 20px 0;
}
.logo{
    font-size: 20px;
    font-weight: bold;
    color: white;
}
nav ul{
    display: flex;
    gap: 20px;
}
nav a{
    font-size: 15px;
    font-weight: 400;
    color: #acacac;
}
.banner{
    background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(../images/bg.jpg) center center / cover no-repeat;
    height: 100vh;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.banner__info h1{
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 40px;
}
.banner__span{
    display: inline-block;
}
.banner__span,
.banner__info p{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}
.banner__info p span{
    color: #48c1ea;
    font-weight: 600;
}
.btn-yellow{
    display: inline-block;
    background-color: #fee633;
    border-radius: 10px;
    padding: 10px 20px;
    color: black;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
}
.btn-yellow:hover{
    background-color: #fff;
}
.concerts{
    border-radius: 10px;
    background-color: #151821;
    margin-bottom: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.concerts h2{
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #e5e5e5;
    padding: 15px;
    font-size: 20px;
}
.concerts table tr:not(:last-child){
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
table{
    width: 100%;
    border-collapse: collapse;
}
.concerts__info{
    color: #50545f;
    text-align: left;
    font-weight: 400;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.concerts__info-item{
    color: white;
    text-align: left;
    font-weight: 400;
    padding: 15px;
}
.btn-red{
    padding: 10px 11px;
    background: #f82c56;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    transition: 0.3s;
}
.btn-red:hover{
    background: #fff;
    color: black;
}
.members{
    margin-bottom: 70px;
}
.members h2{
    text-align: center;
    color: #e5e5e5;
    margin-bottom: 30px;
}
.cards{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.cards-item{
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #151821;
}
.cards-item p{
    font-weight: 400;
    padding: 15px;
    color: #e5e5e5;
}
.history{
    background: linear-gradient(90deg, #131b20 0%, #1c1218 100%);
    padding: 50px 0;
}
.history h2{
    margin-bottom: 30px;
    color: #e5e5e5;
}
.history p{
    color: #e5e5e5;
    margin-bottom: 20px;
    line-height: 160%;
    font-size: 14px;
}
.history__content{
    display: flex;
    align-items: flex-start;
}
.contact{
    background: linear-gradient(90deg, #1c1218 0%, #131b20 100%);
    padding: 50px 0;
    margin-bottom: 70px;
}
.contact h2{
    margin-bottom: 30px;
    color: #e5e5e5;
    text-align: center;
}
.contact h6{
    color: #61626a;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
    padding: 0 20px;
}
.contact__info{
    display: flex;
    justify-content: space-between;
}
.contact__form{
    max-width: 530px;
    width: 100%;
}
.contact__input{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.contact__input div{
    width: 250px;
}
label{
    display: block;
    color: #e7e7e7;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 400;
}
input, textarea{
    background: #1b1e29;
    border-radius: 10px;
    font-size: 12px;
    padding: 10px 10px;
    width: 100%;
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.contact__textarea{
    width: 100%;
}
textarea{
    margin-bottom: 10px;
}
.btn-pink{
    padding: 10px 22px;
    background: #f82c56;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    border: none;
    font-weight: 600;
    transition: 0,3s;
}
.btn-pink:hover{
    background: white;
    color: black;
}
.map{
    max-width: 530px;
    background: #1b1e29;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px;
}
.map, iframe{
    border-radius: 10px;
}
h5{
    color: #e5e5e5;
    margin-bottom: 10px;
    font-size: 16px;
}
.footer__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}
.footer__info-item{
    color: #e5e5e5;
    margin-bottom: 15px;
}
.footer__info-contacts{
    color: #fff;
}
.socials{
    display: flex;
}
.socials a{
    color: #e5e5e5;
    display: inline-flex;
    align-items: center;
}
.point::after{
    content: "";
    display: inline-block;
    border-radius: 50%;
    background-color: #e5e5e5;
    width: 3px;
    height: 3px;
    margin: 0 6px;
}
.popup{
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup__content{
    background: #151821;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    max-width: 400px;
    width: 100%;
    position: relative;
}
.popup__content h3,
.popup__content input{
    margin-bottom: 15px;
}
.popup__content button{
    border: none;
}
.popup__close{
    position: absolute;
    top: 10px; right: 15px;
    font-size: 22px;
    cursor: pointer;
}