#top{
    width: 100%;
    height: 100%;
    position: relative;
}
#top img{
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: bottom;
}
#top .t{
    position: absolute;
    width: 100%;
    height: 600px;
    top: 0px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.26);
}
#top div h2{
    width: 40%;
    color: var(--TitleColor);
    font-size: 40px;
    font-weight: var(--TitleWeight);
    text-align: right;
    margin-right: 80px;
}
#top div p{
    margin-top: var(--SmallMargin);
    color: var(--BodyColor);
    font-size: var(--BodyColor);
    font-weight: var(--BodyWeight);
    text-align: right;
    margin-right: 80px;
}
#top div a{
    text-decoration: none;
    background-color: var(--Gold);
    border-radius: 6px;
    padding: 12px 20px;
    color: var(--ActionColor);
    font-size: var(--ActionSize);
    font-weight: var(--ActionWeight);
    margin: 15px;
}
#top .t .btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 80px;
    margin-top: 50px;
}
.top-btn-s{
    background-color: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #ffdf80;
    color: #ffdf80 !important;
}
.top-btn-p{
    margin-right:  0px !important;
}
@media only screen and (max-width: 700px) {
    #top div h2{
        margin-top: 200px;
        font-size: 40px;
    }
    #top div h2,#top div p{
        width: 90%;
        margin-right: 20px;
    }
    #top .t .btn-container{
        margin-right: 20px;
        margin-top: 20px;
    }
}
@media only screen and (max-width: 400px) {
    #top div h2{font-size: 30px;}
}