/*-----------ABOUT PAGE------------------*/
h2{
   margin-bottom: 50px!important;
   text-align: center!important;
   min-width: 100%;
   transform: translateY(50%);
   opacity: 0;
   transition: all 0.35s ease-in-out;
}

h2.in-view{
    transform: translateY(0%);
    opacity: 1;
}

/* Mision */
.about-mission .wp-block-columns{
    width: 100%!important;
    display: flex!important;
    justify-content: space-between!important;
}

.about-mission .wp-block-columns .wp-block-column figure{
    height: 300px!important;
    width: 300px!important;
}

.wp-block-column figure img{
    width: 100%!important;
    height: 100%!important;
}
/* Our Thinking */
.about-thinking .wp-block-column{
    max-height: 500px;
}
/* Our Expertise */
.about-expertise .wp-block-colums{
    margin-top: 4rem!important;
}
.about-expertise .wp-block-column figure{
    width: 100% !important;
    
}
@media (max-width: 767px){
    .about-expertise .wp-block-column figure{
        margin-bottom: 1rem;
    }
}

/* Our Approach */
@media (max-width: 767px){
    .about-approach{
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
.about-approach .wp-block-columns{
    margin-top: 4rem!important;
}
.about-approach .wp-block-column{
    width: 300px;
    height: 280px;
    padding: 50px 30px 80px;
    background: linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    display: grid;
    place-items: center;
}

/* OUR TEAM */
.about-team .team-wrapper .wp-block-column{
    background: -webkit-linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    background: -moz-linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    background: -ms-linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    background: -o-linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    background: linear-gradient(180deg, #191C26 0%, rgba(25, 28, 38, 0) 100%);
    padding: 50px 30px 125px;
    text-align: center;
    color: white;
    display: grid;
    place-items: center;
}

.about-team .team-wrapper .wp-block-column figure{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
}

.about-team .team-wrapper .wp-block-column figure img{
    object-fit: cover;
    -o-object-fit: cover;
    object-position: top;
    -o-object-position: top;
}