/***** REKLAMNÍ BANNER *****/
.popup{
    position: fixed;
    left: 50%;
    top: 23%;
    transform: translate(-50%, -50%);
    z-index: 500;
}
.popup img{
    box-shadow: 0 0 5px 2px black;
    border-radius: 20px;
    width: 960px;
    max-height: 55vh;
    border-radius: 20px;
}
.close_icon{
    border: 2px solid black;
    border-radius: 20px;
    background-color: red;
    font-size: 30px;
    font-weight: bold;
    width: 36px;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 95%;
    cursor: pointer;
}
/***** ÚVODNÍ OBSAH *****/
.index_header{
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.4)), url(../img/foto_statek_01.jpg);
    background-size: cover;
    background-attachment: fixed;
    height: 70vh;
    width: 100%;
}
.main_header_text{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -140px);
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: 1s;
}
.start_scroll.active2{
    transform: translate(-50%, -300px);
    opacity: 1;
}
.main_header_text h1{
    position: relative;
    top: 235px;
    font-size: 60px;
    font-family: "Roboto Slab";
    font-weight: bold;
    color: black;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
/***** SPOLUPRÁCE *****/
.support_position_flex{
    position: relative;
    background-color: rgb(161, 161, 161);
    box-shadow: 0px 10px 5px #fff, 0px -10px 5px #fff;
}
.support_flex{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
}
.support_flex img{
    width: 440px;
    border-radius: 30px;
}
.headers.support{
    position: relative;
    bottom: 30px;
}
/***** NEWSLETTER *****/
.newsletter{
    font-size: 22px;
    font-weight: 500;
}
.newsletter input[type="email"]{
    width: 420px;
    height: 35px;
    border: 2px solid black;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.newsletter a{
    color: black;
}
.newsletter label{
    position: relative;
    top: -2px;
}
.newsletter input[type="submit"]{
    font-size: 20px;
    font-weight: bold;
    padding: 3px 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 5px 6px #3B98A4;
    border-radius: 5px;
    color: black;
    background-color: white;
    font-family: "Roboto Slab";
}
.newsletter input[type="submit"]:hover{
    transition: 0.6s;
    text-decoration: underline;
    background-color: #3B98A4;
    box-shadow: 0px 0px 15px 6px #3B98A4;
}
.newsletter input[type="submit"]:active{
    box-shadow: inset 2px 2px 2px black, inset -2px -2px 2px black;
}
input[name="newsletter_check"]{
    width: 20px;
    height: 20px;
}
.g-recaptcha {
    margin: 15px auto;
    width: 304px;
}