/* BANNER */

.banner .banner-image
{
    min-height: 100%;
    background-image: url('../images/bg/banner-image.jpg');
    background-color: var(--bs-light);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0 500px 500px 0;
}

.banner .banner-content
{
    padding: 100px 0 100px 30px;
}

@media (min-width: 992px)
{
    .banner .banner-content
    {
        padding: 150px 0 150px 30px;
    }
}

.banner .banner-content .banner-date
{
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-color);
}

.banner .banner-content .banner-title
{
    margin: 0;
    padding: 10px 0 20px 0;
    font-size: 4rem;
}

/* SCIENTIFIC AND ORGANIZING COMMITTEE */

.sao-committee
{
    background-image: url('../images/bg/shape-1.png');
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
}

.committee-member
{
    background-image: url('../images/bg/committees.png');
    background-repeat: no-repeat;
    background-position: 140% 30%;
    border-radius: 0 200px 200px 0;
}

/* ARTICLES */

.articles
{
    background-color: var(--bs-light);
}

.articles .article
{
    padding: 2rem;
    border-radius: var(--bs-border-radius) var(--bs-border-radius) var(--bs-border-radius-2xl) var(--bs-border-radius-2xl);
    border-top: 5px solid var(--green-color);
}

.articles .article .article-title
{
    color: #222;
    text-decoration: none;
    transition: 0.1s;
}

.articles .article .article-title:hover,
.articles .article .article-title:focus
{
    color: var(--green-color);
    text-decoration: underline;
}

/* ADDRESS */

.place-and-address-map
{
    display: block;
    overflow: hidden;
}

@media (min-width: 992px)
{
    .place-and-address-map
    {
        margin-top: -150px;
    }
}

.place-and-address-map img
{
    border-radius: 500px 0 0 500px;
    opacity: 0.85;
    transition: opacity 0.25s;
}

.place-and-address-map:hover img,
.place-and-address-map:focus img
{
    opacity: 1;
}
