.section
{
    padding: 50px 0;
}
.title
{
    font-family: "Homemade Apple";
    color: var(--btn-secondary);
    font-size: 2em;
    text-align: center;
}
.who-content
{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 50px;
}

.who-content-text
{
    font-size: 1.2em;
}

.who-content-block
{
    width: 50%;
}

.who-content-image-container
{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    background-size: cover!important;
}

.section-content-map
{
    width: 50%;
    height: 500px;
}

#carroussel
{
    max-width: 1500px!important;
    overflow: hidden;
    position: relative;
}
#carroussel div
{
    margin: 0 10px;
    border-radius: 5px;
    background: url(attr(src)) no-repeat center;
    backgorund-size: cover;
}
.slick-next:before
{
    content: '►';
}
.slick-prev:before
{
    content: '◄';
}
.slick-next:before, .slick-prev:before
{
    font-size: 20px;
    line-height: 20px;
    opacity: 0.75;
    color: white;
    z-index: 1000;
}
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-next
{
    right: 20px;
}
.slick-prev
{
    left: 20px;
}
@media screen and (max-width: 1200px)  {

    .who-content
    {
        flex-direction: column;
    }
    .section-content-map
    {
        width: 90%;
    }
    .who-content-block
    {
        width: 90%;
    }
}