.meet-our-experts-section .content-block {
    max-width: 670px;
    margin: 0 auto 60px;
    text-align: center;
}
.meet-our-experts-section .content-block p {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.social-link a {
    height: 38px;
    width: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--yellow);
    border-radius: 50%;
    transition: all 0.6s;
}

.social-link {
    display: flex;
    align-items: center;
}

.social-link a:not(:last-child) {
    margin-right: 10px;
}


.social-link a:hover {
    transform: scale(1.1);
}
.our-team-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -40px;
}

.our-team-grid .our-team-col {
    width: 33.33%;
    padding: 0 20px;
    margin-bottom: 40px;
}
.our-team-grid .our-team-col .our-team-box {
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    flex-direction: column;
}
.our-team-grid .our-team-col .our-team-box .our-team-items {
    position: relative;
    padding-bottom: 75.25%;
}

.our-team-grid .our-team-col .our-team-box .our-team-items img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.our-team-content {
    padding: 40px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our-team-content .social-link {
    justify-content: center;
    margin-top: 15px;
}

@media only screen and (max-width:1199px){
    .our-team-grid {
        margin: 0 -10px -20px;
    }
    .our-team-grid .our-team-col {
        padding: 0 10px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width:991px){
     .our-team-grid .our-team-col {
        width: 50%;
    }
}
@media only screen and (max-width:767px){
     .our-team-grid .our-team-col {
        width: 100%;
    }
}
