/*------------ about-editor ------------*/

/* home */

.a_layout {
    position: relative;
    display: flex;
    align-items: center;
}

.a_layout .a_col {
    position: relative;
    width: 33%;
    z-index: 2;
}

.a_layout .a_col:first-of-type {
    text-align: right;
}

.a_layout .a_col:nth-of-type(2) {
    text-align: center;
    padding-left: 15px;
    z-index: 3;
}

.a_layout .a_col:last-of-type {
    text-align: left;
}

.a_layout .a_title {
    position: relative;
    margin: 0 0 30px;
    z-index: 1;
}

.a_layout .a_col:first-of-type .a_title::before {
    content: '';
    position: absolute;
    background: rgba(71, 153, 128, 0.4);
    width: 105px;
    height: 1px;
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.a_layout .a_col:last-of-type .a_title::before {
    content: '';
    position: absolute;
    background: rgba(71, 153, 128, 0.4);
    width: 105px;
    height: 1px;
    left: -115px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.a_layout h3 {
    position: relative;
    color: #406D61;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.85px;
    margin: 0;
    line-height: 1;
    padding-left: 30px;
    display: inline-block;
}

.a_layout h3::before {
    content: '';
    position: absolute;
    border: 1px solid #406D61;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

.a_layout h3::after {
    content: '';
    position: absolute;
    background: #406D61;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 55%;
    left: 4px;
    transform: translateY(-50%);
}

.a_layout .a_col ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.a_layout .a_col li {
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
    color: #666666;
}

.a_layout .a_col li+li {
    padding: 2px 0;
}

@media screen and (max-width: 1280px) {
    .a_layout .a_col:nth-of-type(2) {
        padding: 0 15px;
    }
}

@media screen and (max-width: 1110px) {
    .a_layout {
        flex-direction: column;
    }
    .a_layout .a_title {
        position: relative;
        margin: 0 0 15px;
        z-index: 1;
    }
    .a_layout h3 {
        font-size: 20px;
    }
    .a_layout .a_col:last-of-type {
        text-align: left;
        padding: 35px 0 0;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .a_layout .a_col:first-of-type {
        text-align: right;
        padding: 0 0 40px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .a_layout .a_col {
        width: 100%;
    }
    .a_layout .a_col:last-of-type .a_title::before {
        content: '';
        position: absolute;
        background: rgba(71, 153, 128, 0.4);
        width: 1px;
        height: 95px;
        left: 50%;
        top: -105px;
        transform: translate(-50%, 0);
        z-index: -1;
    }
    .a_layout .a_col li {
        text-align: center;
        font-size: 14px;
    }
    .a_layout .a_col:first-of-type .a_title::before {
        content: '';
        position: absolute;
        background: rgba(71, 153, 128, 0.4);
        width: 1px;
        height: 95px;
        left: 50%;
        right: initial;
        top: initial;
        bottom: -220px;
        z-index: -1;
        transform: translate(-50%, 0);
    }
    .a_layout h3::before {
        width: 18px;
        height: 18px;
    }
    .a_layout h3::after {
        width: 12px;
        height: 12px;
    }
}

/* content */

.ac_layout {
    position: relative;
}

.ac_layout .ac_top, .ac_layout .ac_bottom {
    position: relative;
    margin: 0 0 50px;
}

.ac_layout .ac_text {
    position: absolute;
    padding: 50px;
    background: rgba(255, 255, 255, 0.93);
    border: 5px solid #46997F;
    border-width: 5px 0;
    top: 28%;
    right: 10%;
}

.ac_layout .ac_text h2 {
    position: relative;
    color: #406D61;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.85px;
    margin: 0;
    line-height: 1;
    padding-left: 30px;
    display: block;
}

.ac_layout .ac_text p {
    color: #666;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.ac_layout .ac_text h2::before {
    content: '';
    position: absolute;
    border: 1px solid #406D61;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

.ac_layout .ac_text h2::after {
    content: '';
    position: absolute;
    background: #406D61;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 55%;
    left: 4px;
    transform: translateY(-50%);
}

.ac_layout .ac_timeline {
    position: relative;
    margin: 50px 0 0;
}

.ac_layout .ac_box {
    position: relative;
    width: 100%;
}

.ac_layout .ac_box .ac_line {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(69, 113, 101, 0.3);
    display: block;
    margin: 20px 0;
}

.ac_layout .ac_box .ac_line::before {
    content: '';
    position: absolute;
    border: 1px solid #406D61;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 50%;
    left: 43px;
    transform: translateY(-50%);
}

.ac_layout .ac_box .ac_line::after {
    content: '';
    position: absolute;
    background: #406D61;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: 50%;
    left: 47px;
    transform: translateY(-50%);
}

.ac_layout .ac_box .ac_datecontent {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.ac_layout .ac_box .ac_datecontent span {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    letter-spacing: 0.5px;
    color: #457165;
    font-weight: 600;
    padding: 0 15px;
    width: 80px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .ac_layout .ac_text {
        position: relative;
        padding: 30px 20px;
        top: 0;
        right: 0;
    }
    .ac_layout .ac_top, .ac_layout .ac_bottom {
        margin: 0 0 30px;
    }
    .ac_layout .ac_box .ac_line::before {
        left: 36px;
    }
    .ac_layout .ac_box .ac_line::after {
        left: 40px;
    }
    .ac_layout .ac_text h2 {
        position: relative;
        color: #406D61;
        font-size: 20px;
    }
    .ac_layout .ac_text p {
        font-size: 15px;
    }
}

/*------------ service-editor ------------*/

.service-sect .youtubecontent_box {
    display: block;
    margin: 0 auto 50px;
}

.s_layout {
    position: relative;
    display: flex;
    justify-content: center;
}

.s_layout .s_box {
    position: relative;
    overflow: hidden;
    padding: 0 25px;
    text-align: center;
    width: calc((100% / 3) - 0.1px);
}

.s_layout .s_box .s_pic {
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    position: relative;
    overflow: hidden;
}

.s_layout .s_pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.s_layout .s_box:hover .s_pic img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}

.s_layout .s_text {
    position: relative;
}

.s_layout h3 {
    font-size: 24px;
    color: #333333;
    letter-spacing: 0.85px;
    font-weight: 500;
    margin: 10px 80px;
    text-align: center;
}

.s_layout .s_text .num {
    position: absolute;
    width: 55px;
    height: 55px;
    border: 1px solid #1EC87F;
    border-radius: 50%;
    top: -40px;
    left: 20px;
}

.s_layout .s_text .num span {
    position: absolute;
    width: 47px;
    height: 47px;
    background: #1EC87F;
    border-radius: 50%;
    line-height: 47px;
    font-size: 20px;
    color: #fff;
    font-family: 'Montserrat', serif;
    top: 4px;
    left: 4px;
    text-align: center;
}

.s_layout a.cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}

@media screen and (max-width: 1024px) {
    .s_layout {
        flex-wrap: wrap;
    }
    .s_layout .s_box {
        position: relative;
        overflow: hidden;
        padding: 0 10px;
        text-align: center;
        width: auto;
    }
    .s_layout .s_box {
        margin: 0 0 30px;
    }
    .s_layout .s_box:last-of-type {
        margin: 0;
    }
    .s_layout h3 {
        font-size: 18px;
    }
    .s_layout .s_text .num {
        width: 45px;
        height: 45px;
        top: -35px;
        left: 20px;
    }
    .s_layout .s_text .num span {
        width: 37px;
        height: 37px;
        line-height: 37px;
        font-size: 17px;
        top: 4px;
        left: 4px;
    }
}

@media screen and (max-width: 767px) {
    .s_layout .s_box {
        padding: 0;
    }
    .s_layout .s_box {
        margin: 0 0 20px;
    }
    .s_layout .s_box:last-of-type {
        margin: 0;
    }
}

/*------------ terms-editor ------------*/

.terms-editor {
    color: #666;
    line-height: 1.75;
}

.terms-editor h2 {
    font-size: 18px;
    font-weight: 500;
    color: #33a280;
    margin: 0;
}

/*------------ index-about-editor ------------*/

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    position: relative;
    padding-left: 15px;
}

.contact-info-list li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: #3DA893;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.con_title {
    position: relative;
    font-size: 18px;
    margin: 0 0 5px;
    color: #1EC87F;
}

.con_layout {
    display: flex;
}

.con_box:first-of-type {
    padding-right: 15px;
}

/*------------ rwd ------------*/

@media screen and (max-width: 1024px) {
    .index-about-editor table td {
        width: 100%;
        float: left;
    }
    .index-about-editor table .pic {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
}

@media screen and (max-width: 767px) {
    .con_layout {
        justify-content: center;
        margin: 0 auto 10px;
    }
}

@media screen and (max-width: 580px) {
    .con_layout {
        flex-direction: column;
    }
    .con_box:first-of-type{
        padding-right: 0;
        padding-bottom: 15px;
    }
}