/* Common CSS */
* {
    box-sizing: border-box;
}

section {
    text-align: center;
}

.v-title b {
    display: inline-block;
    width: 220px;
    font-size: 24px;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 50px;
}

.v-title b::before,
.v-title b::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    width: 87px;
    height: 1px;
    background-color: #333;
}

.v-title b::before {
    left: 0;
}

.v-title b::after {
    left: 100%;
}

/* Reset CSS */
body {
    margin: 0;
    color: #333;
}

ul {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #fff;
}

em {
    font-style: normal;
}

button {
    background-color: transparent;
}

/*  Section : VISION  */
section.vision {
    padding-top: 150px;
    padding-bottom: 180px;
}

section.vision h1 {
    font-size: 48px;
    font-weight: bolder;
    margin-bottom: 80px;
}

/*  Section : MISSION  */
section.mission {
    padding-bottom: 180px;
}

.mission-items {
    margin-top: 56px;
    margin: auto;
    width: 1340px;
    display: flex;
    justify-content: space-between;
}

.mission-item {
    width: 320px;
    height: 386px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-top: 62px;
    position: relative;
}

.num-icon {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
}

.m-title {
    margin-bottom: 43px;
}

.m-title img {
    width: 66px;
    height: 66px;
}

.m-title h1 {
    font-size: 24px;
    margin-top: 30px;
    position: relative;
    font-weight: 700;
}

.m-title h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 25px;
    height: 2px;
    background-color: #aaa;
}

.m-desc {
    padding: 0 35px;
}

.m-desc span {
    display: block;
    font-size: 18px;
    color: #666666;
    line-height: 23px;
    text-align: left;
    margin-bottom: 18px;
    padding-left: 8px;
    position: relative;
}

.m-desc span::before {
    content: '-';
    position: absolute;
    top: 0;
    left: -5px;
    height: 100%;
}

.m-desc span:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1440px) {
    section.vision img {
        width: 75%;
    }
}