.homepage-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100px;
    background: #0B4B7D;
}

.homepage-banner > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    font-size: 15px;
    padding: 0 10px;
}

.homepage-banner a:nth-child(2) {
    margin: 0 35px;
}


.homepage-banner > div > a,  .homepage-banner > div > a:hover{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #0B4B7D;
    border: 2px solid #29ABE2;
    box-sizing: border-box;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    color: white;
    font-weight: 600;
}

.homepage-banner > div > a > img {
    margin-right: 5px;
}

.homepage-banner > div > a:first-child {
    background: #FFD600;
    border: #FFD600;
    color: #0B4B7D;
    font-weight: 600;
}

@media only screen and (max-width: 800px) {
    .homepage-banner > div a, .homepage-banner a:nth-child(2) {
        margin: 0 10px 0 0;
    }
}

@media only screen and (max-width: 800px), only screen and (max-height: 600px) {
    #expertmap {
        display: none !important;
    }

    .social-content-container {
        display: block !important;
    }
}

@media only screen and (max-width: 500px) {
    .homepage-banner {
        height: 250px;
    }

    .homepage-banner > div a, .homepage-banner a:nth-child(2) {
        margin: 0 0 10px 0;
    }

    .homepage-banner > div {
        flex-direction: column;
    }
}