.our-contact{
    margin-top: 10px;
    background: #F8F8F8;

    .our-contact-title{
        text-align: center;
    }
    .section-title{
        font-size: 2.5em;
        margin: 30px 0;
        font-weight: 900;
    }
    .our-contact-map{
        /*margin-top: 50px;*/
        /*margin-bottom: 50px;*/

        iframe{
            width: 100%;
            height: 500px;
            border: 0;
            border-radius: 20px;
        }


    }

    .our-contact-list{
        .our-contact-list-item{
            position: relative;
        }

        .our-contact-list-item:not(:last-child):after{
            position: absolute;
            content: '';
            width: 1px;
            height: 77%;
            border: 0;
            right: -11%;
            background-color: var(--ap-primary);

        }
        .our-contact-list-item-icon{
            max-width: 50px;
            max-height: 50px;

            overflow: hidden;

            img{
                width: 100%;
                height: 100%;
                object-fit: cover;

            }

        }
        .our-contact-list-item-name{
            font-size: 1em;
            font-weight: 400;
            color: var(--ap-text-dark);

            a{
                color: var(--ap-text-dark);
                text-decoration: none;

            }
        }
    }

}

section.our-contact:before {
    position: absolute;
    content: '';
    inset: 0 0 0 0;
    background: #f8f8f8;
    z-index: -1;
    height: 500px;
}