/* Vision, Mission & Core Strengths */
.vision-mission {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.vision-mission:before {
    content: '';
    position: absolute;
    right: -160px;
    top: 60px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(177, 151, 119, .22);
    border-radius: 50%;
}

.vision-mission:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 44%;
    background: #f8f8f8;
    z-index: 0;
}

.vision-mission .container {
    position: relative;
    z-index: 1;
}

.vision-mission-intro {
    margin-bottom: 0;
    color: #777;
}

.vm-card {
    position: relative;
    min-height: 300px;
    padding: 44px 40px;
    background: #f8f8f8;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all .3s ease;
}

.vm-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #b19777;
}

.vm-card:after {
    content: '';
    position: absolute;
    right: 28px;
    bottom: 24px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(177, 151, 119, .25);
    border-radius: 50%;
}

.vm-card:hover,
.core-strengths:hover {
    transform: translateY(-5px);
    border-color: #b19777;
}

.vm-card-dark {
    background: #fff;
    border-color: #b19777;
}

.vm-label {
    display: block;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 5px;
    line-height: 1.4em;
    color: #b19777;
    text-transform: uppercase;
}

.vm-card h3,
.core-strengths-head h3 {
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.25em;
    color: #272727;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.vm-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: #777;
    font-size: 18px;
    line-height: 1.7em;
}

.vm-card-dark h3 {
    color: #272727;
}

.vm-card-dark p {
    color: #777;
}

.core-strengths {
    padding: 42px 40px;
    background: #fff;
    border: 1px solid #eee;
    transition: all .3s ease;
}

.core-strengths-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.core-strengths-head .vm-label,
.core-strengths-head h3 {
    margin-bottom: 0;
}

.core-strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.strength-item {
    min-height: 135px;
    padding: 25px 22px;
    background: #f8f8f8;
    border: 1px solid #eee;
    transition: all .3s ease;
}

.strength-item:hover {
    background: #fff;
    border-color: #b19777;
}

.strength-item span {
    display: block;
    margin-bottom: 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #b19777;
}

.strength-item p {
    margin-bottom: 0;
    color: #272727;
    font-size: 17px;
    line-height: 1.45em;
}

.strength-item small {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 14px;
}

.strength-item:hover p,
.strength-item:hover small {
    color: #272727;
}

@media screen and (max-width: 991px) {
    .vm-card {
        min-height: auto;
        margin-bottom: 30px;
    }

    .core-strengths-head {
        display: block;
    }

    .core-strengths-head .vm-label {
        margin-bottom: 14px;
    }

    .core-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .vision-mission-intro {
        margin-bottom: 20px;
    }

    .vm-card,
    .core-strengths {
        padding: 34px 25px;
    }

    .vm-card h3,
    .core-strengths-head h3 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .core-strengths-grid {
        grid-template-columns: 1fr;
    }
}
