#top{
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 600px;
    background-color: #E0E4EF;
}
#top img{
    width: 50%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}
#top .t{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 40px;
    box-sizing: border-box;
}
.top-content{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.top-content h2{
    margin: 0px;
    color: var(--TitleColor);
    font-size: 40px;
    font-weight: var(--TitleWeight);
    text-align: right;
}
.top-content p{
    margin: 0px;
    margin-top: var(--SmallMargin);
    color: var(--BodyColor);
    font-size: var(--BodySize);
    font-weight: var(--BodyWeight);
    text-align: right;
    line-height: 1.6;
}
.top-content .btn-container{
    margin: 0px;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}
#top .t .btn-container{
    margin-right: 0;
    margin-top: 30px;
}
#top div a{
    text-decoration: none;
    background-color:#1E6998;
    border-radius: 6px;
    padding: 12px 20px;
    color: var(--ActionColor);
    font-size: var(--ActionSize);
    font-weight: var(--ActionWeight);
    margin: 0;
}
#top div a:hover{
    color: rgb(9, 16, 39) !important;
}
.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{
        flex-direction: column;
        min-height: auto;
    }
    #top img{
        width: 100%;
        height: 80vh;
    }
    #top .t{
        width: 100%;
        padding: 30px;
        align-items: center;
    }
    .top-content{
        align-items: flex-end;
        max-width: 100%;
    }
    #top div h2{
        font-size: 35px;
    }
    #top div h2,#top div p{
        width: 100%;
        margin-right: 0;
    }
    #top .t .btn-container{
        justify-content: flex-end;
        margin-right: 0;
    }
}
@media only screen and (max-width: 500px) {
    #top img{
        height: 80vh;
    }
    #top .t{
        padding: 20px;
    }
    .top-content h2{
        font-size: 28px;
    }
    .top-content p{
        font-size: 16px;
    }
    #top .t .btn-container{
        margin-top: 20px;
        width: 100%;
    }
}
@media only screen and (max-width: 400px) {
    #top img{
        height: 80vh;
    }
    #top .t{
        padding: 15px;
    }
    .top-content h2{
        font-size: 24px;
    }
    .top-content p{
        font-size: 14px;
    }
}