body {
    margin: 0px;
    background-color: black;
}

a{
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    color: inherit;
  }

.main {
    width: 100%;
    height: 100vh;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}

.header {
    height: 180px;
    width: 90%;
    margin: auto;
    font-weight: 400;
}

.header_container {
    display: flex;
    height: 180px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.header_logo {
    width: 170px;
    height: 70px;
    background-image: url(./images/Logo.png);
    background-size: 99%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.header_social {
    height: 70px;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_social_instagram {
    width: 35px;
    height: 35px;
    background-image: url(./images/instagram.png);
    background-size: 99%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.3s;
}

.header_social_instagram:hover{
   opacity: 0.5;
   transition: 0.3s;
}

.header_social_soundcloud {
    width: 50px;
    height: 30px;
    background-image: url(./images/soundcloud.png);
    background-size: 99%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.header_social_soundcloud:hover{
   opacity: 0.5;
   transition: 0.3s;
}

.header_list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_item {
    font-size: 22px;
    color: white;
    margin: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.header_item:hover {
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.3);
}

.firstpage_background {
    width: 100%;
    height: 110vh;
    background-image: url(./images/firstpage_bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.secondpage {
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secondpage_container {
    display: flex;
    position: relative;
    zoom: 132%;

}

.secondpage_left {
    z-index: 5;
}

.secondpage_left_header {
    display: flex;
    margin-bottom: 10px;
    position: relative;
    align-items: center;
}

.secondpage_left_header_button {
    font-size: 18px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 5px;
}

.inactive{
   opacity: 0.3;
}

.secondpage_infotext {
    position: absolute;
    right: 0;
    color: white;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
}

.secondpage_scroller {
   width: 800px;
   height: 640px;
   display: flex;
   flex-wrap: wrap;
   overflow-y: scroll;
}

/* WebKit-based browsers */
.secondpage_scroller::-webkit-scrollbar {
   width: 3px;
 }
 
 .secondpage_scroller::-webkit-scrollbar-track {
   background: #3d3d3d;
   width: 3px !important;
 }
 
 .secondpage_scroller::-webkit-scrollbar-thumb {
   background: #5b5b5b;
   border-radius: 10px;
   width: 4px;
 }
 
 .secondpage_scroller::-webkit-scrollbar-thumb:hover {
   background: #555;
 }

.secondpage_main_card {
    width: 800px;
    height: 160px;
    background-color: #131313;
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s;
}

.secondpage_main_card:hover {
    background-color: #3d3d3d;
    transition: 0.3s;
}

.secondpage_main_card_decor {
    width: 90%;
    height: 1px;
    background-color: #3d3d3d;
    position: absolute;
    top: -1px;
    margin: auto;
    margin-left: 5%;
}

.main_card_left {
    margin-left: 30px;
}

.main_card_left_date {
    color: #c7c7c7d2;
    font-size: 18px;
    font-weight: 600;
}

.main_card_left_title {
    color: white;
    font-size: 35px;
    margin-top: 5px;
    font-weight: 600;
}

.main_card_left_location {
    color: #c7c7c774;
    font-size: 16px;
    margin-top: 5px;
}

.secondpage_main_card_container {
    width: 100%;
    position: relative;
}

.main_card_right {
    position: absolute;
    height: 100%;
    max-width: 400px;
    right: 30px;
    top: 0;
}

.main_card_right_info {
    color: #c7c7c774;
    font-size: 16px;
    text-align: right;
}

.main_card_right_button {
    position: absolute;
    bottom: 0;
    width: 140px;
    height: 30px;
    background-color: #2f2f2f;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.734);
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.main_card_right_button:hover {
    background-color: #ef4343;
    transition: 0.3s;
}

.secondpage_right {
    background-color: blue;
    width: 500px;
    background-image: url(./images/secondpage_photo.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 3;
    margin-left: -100px;
}

.thirdpage {
    width: 100%;
    padding-top: 10vh;
    padding-bottom: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.thirdpage_item1 {
    width: 450px;
    height: 750px;
    background-image: url(./images/pic1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    cursor: pointer;
    transition: 0.3s;
    zoom: 117%;
}

.thirdpage_item1:hover {
    filter: none;
    transition: 0.3s;
}

.thirdpage_item2 {
    width: 450px;
    height: 750px;
    background-image: url(./images/pic2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    cursor: pointer;
    cursor: pointer;
    transition: 0.3s;
    zoom: 117%;
}

.thirdpage_item2:hover {
    filter: none;
    transition: 0.3s;
}

.thirdpage_item3 {
    width: 450px;
    height: 750px;
    background-image: url(./images/pic3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    cursor: pointer;
    cursor: pointer;
    transition: 0.3s;
    zoom: 117%;
}

.thirdpage_item3:hover {
    filter: none;
    transition: 0.3s;
}

.fourthpage {
    width: 100%;
    height: 100vh;
}

.fourthpage_container {
    margin: auto;
    width: 67%;
    height: 100%;
    background-image: url(./images/bgunderlogo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fourthpage_logo {
    width: 400px;
    height: 400px;
    background-image: url(./images/biglogo.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
}

.fourthpage_desc {
    max-width: 60%;
    margin: auto;
    text-align: center;
    color: white;
}

.fourthpage_desc2 {
    max-width: 60%;
    margin: auto;
    text-align: center;
    color: white;
    margin-top: 15px;
}

.sixthpage {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
.seventhpage{
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 3vh;
    padding-bottom: 3vh;
}
.scripts{
    max-width: 67%;
    color: rgba(255, 255, 255, 0.142) !important;
    text-align: center;
}
.eightpage{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer{
    width: 100%;
    height: 15vh;
    background-color: #11111174;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.174);
}
.codium{
    color: rgba(147, 105, 253, 0.468);
    cursor: pointer;
    text-decoration: none;
    margin-left: 5px;
    margin-bottom: 1px;
    display: block;
    text-align: center;
    font-size: 14px;
}
.codfixer{
    display: flex;
    align-items: center;
}
.codcont{
    display: flex;
    justify-self: center;
    align-items: center;  
}

@media only screen and (max-width: 3840px) {
 .header{
    zoom: 200%;
 }
 .secondpage{
    zoom: 200%;
 }
 .thirdpage{
    zoom: 200%;
 }
 .fourthpage_container{
    zoom: 200%;
 }
 .scripts{
    zoom: 200%;
 }
 .footer_container{
    zoom: 200%;
 }
 .slider-container-grouped{
   zoom: 200%;
 }
}

@media only screen and (max-width: 2560px) {
    .header{
        zoom: 150%;
     }
     .secondpage{
        zoom: 150%;
     }
     .thirdpage{
        zoom: 150%;
     }
     .fourthpage_container{
        zoom: 150%;
     }
     .scripts{
        zoom: 150%;
     }
     .footer_container{
        zoom: 150%;
     }
     .slider-container-grouped{
      zoom: 150%;
    }
}

@media only screen and (max-width: 2100px) {
    .header{
        zoom: 100%;
     }
     .secondpage{
        zoom: 100%;
     }
     .thirdpage{
        zoom: 100%;
     }
     .fourthpage_container{
        zoom: 100%;
     }
     .scripts{
        zoom: 100%;
     }
     .footer_container{
        zoom: 100%;
     }
     .slider-container-grouped{
      zoom: 100%;
    }
}

@media only screen and (max-width: 1920px) {
    .header{
        zoom: 100%;
     }
     .secondpage{
        zoom: 100%;
     }
     .thirdpage{
        zoom: 100%;
     }
     .fourthpage_container{
        zoom: 100%;
     }
     .scripts{
        zoom: 100%;
     }
     .footer_container{
        zoom: 100%;
     }
     .slider-container-grouped{
      zoom: 100%;
    }
}

@media only screen and (max-width: 1600px) {
    .header{
        zoom: 85%;
     }
     .secondpage{
        zoom: 85%;
     }
     .thirdpage{
        zoom: 85%;
     }
     .fourthpage_container{
        zoom: 85%;
     }
     .scripts{
        zoom: 85%;
     }
     .footer_container{
        zoom: 85%;
     }
     .slider-container-grouped{
      zoom: 85%;
    }
}

@media only screen and (max-width: 1440px) {
    .header{
        zoom: 75%;
     }
     .secondpage{
        zoom: 75%;
     }
     .thirdpage{
        zoom: 75%;
     }
     .fourthpage_container{
        zoom: 75%;
     }
     .scripts{
        zoom: 75%;
     }
     .footer_container{
        zoom: 75%;
     }
     .slider-container-grouped{
      zoom: 75%;
    }
}

@media only screen and (max-width: 1380px) {
    .header{
        zoom: 75%;
     }
     .secondpage{
        zoom: 75%;
     }
     .thirdpage{
        zoom: 75%;
     }
     .fourthpage_container{
        zoom: 75%;
     }
     .scripts{
        zoom: 75%;
     }
     .footer_container{
        zoom: 75%;
     }
     .slider-container-grouped{
      zoom: 75%;
    }
}

@media only screen and (max-width: 1024px) {
    .header{
        zoom: 65%;
     }
     .secondpage{
        zoom: 65%;
     }
     .thirdpage{
        zoom: 65%;
     }
     .fourthpage_container{
        zoom: 65%;
     }
     .scripts{
        zoom: 65%;
     }
     .footer_container{
        zoom: 65%;
     }
     .slider-container-grouped{
      zoom: 65%;
    }
}

@media only screen and (max-width:1024px) and (min-height: 800px) {
    .header{
        zoom: 75%;
     }
     .secondpage{
        zoom: 75%;
     }
     .thirdpage{
        zoom: 75%;
     }
     .fourthpage_container{
        zoom: 75%;
     }
     .scripts{
        zoom: 75%;
     }
     .footer_container{
        zoom: 75%;
     }
     .slider-container-grouped{
      zoom: 75%;
    }
}

@media only screen and (max-width: 915px) {
    .header{
        zoom: 50%;
     }
     .secondpage{
        zoom: 60%;
     }
     .thirdpage{
        zoom: 50%;
     }
     .fourthpage_container{
        zoom: 50%;
     }
     .scripts{
        zoom: 40%;
     }
     .seventhpage{
       height: 50vh;
     }
     .footer_container{
        zoom: 50%;
     }
     .slider-container-grouped{
      zoom: 50%;
    }
}

/* @supports (-webkit-touch-callout: none) {
    .secondpage{
        zoom: 35% !important;
     }
    .secondpage_main_card {
      zoom: 120% !important;
    }
    .main_card_right_button{
        width: 200px !important;
    }
} */

@media only screen and (max-width:540px) {
    .header{
        zoom: 30%;
     }
     .firstpage_background{
        height: 40vh;
     }
     .secondpage{
        zoom: 30%;
     }
     .secondpage_main_card {
        zoom: 120%;
      }
     .secondpage_right{
        display: none;
     }
     .thirdpage{
        zoom: 30%;
     }
     .fourthpage{
        height: 40vh;
     }
     .fourthpage_container{
        zoom: 30%;
     }
     .sixthpage{
        height: 40vh;
     }
     .seventhpage{
        height: 30vh;
     }
     .eightpage{
        height: 40vh;
     }
     .footer{
        height: 5vh;
     }
     .scripts{
        zoom: 30%;
     }
     .footer_container{
        zoom: 30%;
     }
     .slider-container-grouped{
      zoom: 30%;
    }
}

@media only screen and (max-width:480px) {

}

@media only screen and (max-width:431px) {


}

@media only screen and (max-width:380px) {

}

@media only screen and (max-width:400px) {

}


@media only screen and (max-width:380px) {

}

@media only screen and (max-width:340px) {

}

@media only screen and (max-width:300px) {

}
