/*Setting reset*/
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
a {
text-decoration: none;
}
ul,
ol,
li {
list-style: none;
}
img {
vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: inherit;
font-size: inherit;
}
html,
body {
height: 100%;
line-height: 1;
}
body{
width: 100vw;
font-family: Rubik;
font-size: 12px;
color: #000000;
background: url(../img/bg1.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
overflow-x: hidden;
}
.wrapper {
    width: 100vw;
}

/*Header*/
.header{
    position: fixed;
    font-family: Raleway;
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 10vh;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .9);
    box-shadow: 1vh 3vh 4vh;
    z-index: 99;
}
.logo{
    min-width: 150px;
    height: 40px;
    margin-right: 3vw;
}
.download-btn{
    margin-left: 3vw;
    cursor: pointer;
    min-width: 85px;
    width: 10vw;
    height: 40px;
    border-radius: 10px;
    background-color: red;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 99;
    box-shadow: 0.5vh 0.5vh 1vh rgb(27, 27, 27);
}
.download-btn:hover{
    background-color: rgb(255, 137, 137);
}
.downloadLink {
    color: white;
}
.menu-list{
    display: flex;
    justify-content: space-around;
}
.menu-list li{
    font-family: Raleway;
    margin-left: 3vw;
    font-size: 18px;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
}
.menu-list li:hover{
    text-decoration: underline;
}
.menu_btn{
    display: none;
}

/*Media 650*/
@media (max-width: 650px) {
.header {
    display: flex;
    justify-content: space-between;
}
.logo {
    margin-left: 2vw;
}
.menu {
    display: none;
}

.download-btn {
    position: fixed;
    transform: translatex(160px);
    transition: 0.5s;
}
.menu_two {
    position: fixed;
    display: none;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, .95);
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 98;
}
.menu_two ul {
    margin-top: 30vh;
}
.menu_two ul li {
    cursor: pointer;
    font-family: Raleway;
    font-weight: 600;
    margin-bottom: 10vh;
    text-transform: uppercase;
}
.menu_two ul li:hover {
    text-decoration: underline;
}
.menu_btn {
    display: block;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    margin-top: 45px;
}
.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
    position: absolute;
    margin: auto;
    width: 30px;
    height: 2px;
    background-color: rgb(255, 255, 255);
}
.menu_btn span::before,
.menu_btn span::after {
    content: '';
}
.menu_btn span::before {
    transform: translateY(-10px);
    left: 0px;
    top: 0px;
    transition: 0.5s;
}
.menu_btn span::after {
    transform: translateY(10px);
    left: 0px;
    top: 0px;
    transition: 0.5s;
}
.close_menu_btn {
    display: none;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    margin-top: 45px;
    z-index: 99;
}
.close_menu_btn span::before,
.close_menu_btn span::after {
    position: absolute;
    margin: auto;
    width: 30px;
    height: 2px;
    background-color: rgb(255, 255, 255);
}
.close_menu_btn span::before,
.close_menu_btn span::after {
    content: '';
}
.close_menu_btn span::before {
    left: 0px;
    top: 0px;
    transform: rotate(45deg);

    transition: 0.5s;
}
.close_menu_btn span::after {
    transform: rotate(-45deg);    
    left: 0px;
    top: 0px;
}
}

/*Media 810*/
@media (max-width: 810px) {
.back_rent ul li{
    font-size: 16px;
    font-weight: 600;
}
.map_frame {
    width: 200vw;
    border: 1vh solid rgba(0, 0, 0, .2);
    border-radius: 2vh;
}
}

/*Home*/
#home{
    display: flex;
    flex-direction: column;
    width: 100vw;    
    margin: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.main-content {
    margin: auto;
}
.main-content .text{
    height: 100vh;
    color: white;
    background: rgba(0, 0, 0, .9);
    box-shadow: 0vh 0vh 5vh #000000;
    margin-top: 0vh;
    padding: 0 10vw 0 10vw;
}
.text{
    padding: 5vh 5vh 2vh 5vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Raleway;
    font-size: 20px;
    width: 100vw;
    line-height: 30px;
}
.text p {
    width: 90vw;
    display: flex;
    text-align: start;
}
.home-title{
    width: 100vw;
    text-transform: uppercase;
    font-family: Raleway;
    font-size: 22px;
    text-shadow: 0.5vh 0.5vh 1vh rgb(15, 15, 15);
    margin-bottom: 2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.home-title span {
    text-transform: uppercase;
    color: red;
}
.content-image {
    position: fixed;
    margin: auto;
}
.image {
    margin: -400px 0 0 100px;
    max-width: 700px;
}
.text p{
    display: flex;
    text-align: center;
    justify-content: center;
    width: 100vw;
    margin-bottom: 3vh;
}
.join-us {
    width: 100vw;
    font-family: Raleway;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.join-us span {
    font-size: 22px;
    font-weight: 500;
    font-family: Raleway;
    color: red;
}

/*Rent*/
#rent {
    display: none;  
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    background: rgba(0, 0, 0, .8);
}
.rent_back {
    width: 100vw;
    height: 150vw;
}
.rent_content {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.main-content_rent {
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}
.text_rent{
    font-family: Raleway;
    font-size: 20px;
    width: 100vw;
    line-height: 30px;
    color: white;
    border-radius: 2vh;
    padding: 5vh 5vh 5vh 5vh;
    text-align: center;
}
.rent_menu{
    width: 100vw;
    height: 5vh;
    margin-top: 10vh;
}
.back_rent {
    flex-direction: row;
    position: fixed;
    width: 100vw;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    background: rgba(0, 0, 0, .8);
}
.back_rent ul{
    font-size: 18px;
    text-transform: uppercase;
    font-family: Raleway;
    display: flex;
    justify-content: center;
    margin-bottom: 2vh;
}
.back_rent ul li {
    margin: 0 9vw 0 9vw;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.rent-title {
    text-transform: uppercase;
    font-family: Raleway;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0.5vh 0.5vh 1vh rgb(15, 15, 15);
    margin: 3vh 0  0;
    color: red;
    display: flex;
    text-align: center;
    justify-content: center;
}
.text_rent p{
    text-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.download-btn_rent{
    margin: auto;
    cursor: pointer;
    width: 15vh;
    height: 40px;
    border-radius: 10px;
    background-color: red;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0.5vh 0.5vh 1vh rgb(27, 27, 27);
}
.download-btn_rent:hover{
    background-color: rgb(255, 137, 137);
}
.rent_menu li {
    margin: 5vh;
}
.rent-mandatory {
    width: 100%;
    margin-top: 30px;
    display: flex;
    text-align: start;
}

.rent-mandatory p{
    width: 100vw;
    min-width: 300px;
    line-height: 40px;
    text-align: start;
}

.button_rent {
    margin: 5vh auto;
}
.p_rent {
    margin-top: 5vh;
}

.back_rent li {
    cursor: pointer;
}
.back_rent li:hover {
    text-decoration: underline;
}
#myBtn {
    width: 80px;
    display: none;
    position: fixed;
    top: 50vh;
    right: 3vw;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, .6);
    color: rgb(141, 141, 141);
    cursor: pointer;
    padding: 20px 25px 10px 25px;
    border-radius: 10px;
    font-size: 30px;
    font-weight: 400;
}
  
#myBtn:hover {
    background-color: #555;
    color: white;
}

/*Light*/
.light {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100%;
    margin-top: -100vh;
}
.light .sound_back .sound-title {
    margin-top: 20vh;
    color: rgb(255, 0, 0);
    text-transform: uppercase;
    font-family: Raleway;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 2vh;
    text-shadow: 0.5vh 0.5vh 1vh rgb(15, 15, 15);
}
.light p {
    width: 100vw;
    font-family: Raleway;
    font-size: 20px;
    line-height: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sound_ul p {
    width: 100vw;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sound_ul_ul {
    margin-top: 3vh;
    display: flex;
    font-size: 16px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}

/*Sound*/
.sound {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
}
.sound_back {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, .8);
    padding: 0 2vw 0 4vw;
}
.sound .sound-title {
    color: rgb(255, 0, 0);
    text-transform: uppercase;
    font-family: Raleway;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 2vh;
    margin-top: -80vh;
    text-shadow: 0.5vh 0.5vh 1vh rgb(15, 15, 15);
}
.sound p {
    width: 90vw;
    font-family: Raleway;
    font-size: 20px;
    line-height: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sound_ul {
    width: 100vw;
    flex-direction: column;
    font-family: Raleway;
    line-height: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.sound_ul p {
    margin-top: 3vh;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sound_ul_ul {
    margin-top: 3vh;
    display: flex;
    font-size: 14px;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}
.sound_img {
    margin-top: 3vh;
    width: 45vw;
    min-width: 270px;
    border: 1vh solid rgba(0, 0, 0, .2);
    border-radius: 2vh;
    margin-bottom: 5vh;
}
.li_sound_one {
    list-style-type: disc;
    margin-left: 3vw;
}
.li_sound_two {
    margin-left: 10vw;
}

/*Stage*/
.stage {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100%;
    margin-top: -100vh;
}
.stage .sound_back .sound-title {
    margin-top: 20vh;
    color: rgb(255, 0, 0);
    text-transform: uppercase;
    font-family: Raleway;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 2vh;
    text-shadow: 0.5vh 0.5vh 1vh rgb(15, 15, 15);
}
.stage p {
    width: 100vw;
    font-family: Raleway;
    font-size: 20px;
    line-height: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sound_ul p {
    width: 100vw;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*Gallery*/
#support {
    display: none;
    width: 100vw;
    height: 100%;
}
#support .main-content {
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, .8);
}
#gallery{
    margin-top: 100px;
    width: 100vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    grid-gap: 20px;
    padding: 5vw;
}

.galleryImg {
    width: 100%;
    box-shadow: 0 0 10px rgb(0, 0, 0);
    border-radius: 10px;
    position: relative;
    transition: transform 250ms;
    cursor: pointer;
}
.gallery_footer {
    width: 100vw;
    height: 10vh;
}
.galleryImg:hover {
    transform: translateY(-10px);
    box-shadow: 5px 5px 10px black;
}

#popup {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .95);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 250ms transform;
    display: flex;
    
}

#selectedImage {
    max-width: 100%;
}

.downloadLink {
    color: white;
}

/*Contacts*/
#contact {
    display: none;   
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .9);
    box-shadow: 0vh 0vh 5vh #000000;
    padding: 5vh 5vh 5vh 5vh;
    text-align: center;
}
.map_frame {
    width: 80vw;
    height: 50vw;
    max-width: 800px;
    max-height: 600px;
    border: 1vh solid rgba(0, 0, 0, .2);
    border-radius: 2vh;
}
.text_contact {
    font-family: Raleway;
    position: relative;
    font-size: 20px;
    line-height: 30px;
}
.text_contact .home-title {
    margin: 10vh auto 5vh;
    color: red;
}

.contact_text {
    color: white;
    margin-top: 5vh;
    text-align: center;
}
.phones {
    color: red;
}
.contact_text ul{
    margin-bottom: 5vh;
}

.container {
    max-width: 80vw;
    padding: 50px 20px;
    margin: 5vh auto;
    background-color: rgba(0, 0, 0, .9);
    box-shadow: 0vh 0vh 2vh #000000;
}

