body{
    padding: 0;
    margin: 0;
}

#shooting-range-main-photo {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    z-index: 0;
}

#shooting-range-main-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shooting_range_2.jpg);
    background-size: cover;
    background-position: top;
    filter: brightness(35%);
    z-index: -1;
}

#shooting-range-main-photo-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#shooting-range-main-photo-content h1{
    font-size: 8vmin;
    margin: 0;
    padding: 0;
    font-family: "Tektur", sans-serif;
    font-weight: 700;
    color: #bcaf10;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.main-header{
    padding-top: 50px;
    padding-bottom: 40px;
    font-size: 35px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #bcaf10;
}

#shooting-range-part{
    padding-bottom: 36px;
}

#shooting-range-prices{
    background-color: #161616;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#shooting-range-prices .row{
    width: 60%;
    display: flex;
    justify-content: center;
}

#shooting-range-prices .row:last-child{
    margin-bottom: 36px;
}

#shooting-range-prices .col{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 15px 0 15px 0;
}

#shooting-range-prices .row .col{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

#shooting-range-prices .row .col:first-child{
    color: #bcaf10;
    border-right: 2px solid #202020;
}

#shooting-range-prices .row .col:nth-child(2){
    color: #bb8645;
}

#shooting-range-prices p:first-child{
    width: 100%;
}

#shooting-range-additional-info{
    font-family: "Roboto", sans-serif;
    background-color: #161616;
    color: #bb8645;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

#calendar-part{
    background-color: #161616;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

@media only screen and (max-width: 576px){
    html, body {
        overflow-x: hidden;
    }

    #shooting-range-main-photo-content h1{
        text-align: center;
    }
}

@media only screen and (max-width: 768px){
    #shooting-range-prices .row .col{
        border: 0 !important;
    }

    #calendar-part iframe{
        height: 100vh;
        width: 100%;
    }
}