@charset "utf-8";
/*------------ about-editor ------------*/
.a_layout {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}
.a_layout .title {
    position: relative;
    line-height: 1.2;
}
.a_layout .title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #F8A620;
    margin: 20px auto 20px;
}
.a_layout .title span {
    font-family: "Figtree", sans-serif;
    color: #065DAA;
    font-size: 70px;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.a_layout .title h2 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
    font-weight: normal;
    margin: 0;
    color: #333333;
}
.a_layout .a-1 {
    margin-bottom: 90px;
    margin-top: 50px;
}
.a_layout .a-1 .col:nth-child(1) {
    width: 50%;
    box-sizing: border-box;
    padding-right: 0;
}
.a_layout .a-1 .col:nth-child(2) {
    width: 50%;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 40px;
}
.a_layout .a-1 .row {
    display: flex;
    align-items: center;
    background: #F4F4F4;
    border-radius: 10px;
    overflow: hidden;
}
.a_layout .a-1 .title span,
.a_layout .a-1 .title h2 {
    display: inline
}
.a_layout .a-1 .title::after {
    margin-left: 0;
}
.a_layout .a-1 p {
    color: #525252;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.9;
    margin: 0;
}
.a_layout .a-2 .title {
    text-align: center;
    margin-bottom: 65px
}
@media screen and (max-width: 1300px) {
    .a_layout .a-1 .title span,
    .a_layout .a-1 .title h2 {
        display: block;
    }
}
@media screen and (max-width: 1200px) {
    .a_layout .a-1 {
        margin-top: 0px;
    }
    .a_layout .a-1 .row {
        display: flex;
        align-items: center;
        background: #F4F4F4;
        border-radius: 10px;
        overflow: hidden;
        flex-direction: column-reverse;
        max-width: 700px;
        margin: 0 auto;
    }
    .a_layout .a-1 .title {
        text-align: center;
    }
    .a_layout .a-1 .title::after {
        margin: 20px auto 20px;
    }
    .a_layout .a-1 .col:nth-child(2) {
        width: 100%;
        padding: 40px;
    }
    .a_layout .a-1 .col:nth-child(1) {
        width: 100%;
        text-align: center;
    }
    .a_layout .a-1 .col:nth-child(1) img {
        object-fit: cover;
        width: 100%;
    }
    .a_layout .a-2 .s_layout {
        max-width: 500px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 50px;
        gap: 0;
    }
    .a_layout .a-2 .s_layout .s_item {
        width: calc(50% - 50px);
        margin: 0 25px 40px;
    }
}
@media screen and (max-width: 767px) {
    .a_layout .title span {
        font-size: 40px;
    }
    .a_layout .a-2 .s_layout .s_item {
        width: calc(100% - 50px);
        margin: 0 25px 40px;
        max-width: 200px;
    }
    .a_layout .a-2 .s_layout {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}
/*------------ service-editor ------------*/
.s_layout {
    position: relative;
    display: flex;
    max-width: 1020px;
    margin: 0 auto;
    gap: 70px;
}
.s_layout .s_item {
    width: 25%;
}
.s_layout .s_box {
    padding-top: 50px;
    position: relative;
    z-index: 1;
}
.s_layout .s_box::before {
    content: '';
    display: block;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F8A522;
    opacity: 0.1;
    z-index: -1;
    transition: all .3s ease;
    transform: scale(1);
}
.s_layout .s_box:hover::before {
    opacity: 0.3;
    transform: scale(0.7);
}
.s_layout .s_box .s_pic {
    position: absolute;
    top: 0;
    right: 5px;
    width: 81px;
}
.s_layout .s_box .s_text {
    color: #525252;
    font-size: 16px;
    line-height: 1.5;
}
.s_layout .s_box .s_text span {
    display: block;
    font-size: 30px;
    color: #333333;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}
.s_layout .s_box .s_text span:before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #D6D6D6;
    bottom: 10px;
    position: absolute;
    left: 0;
    bottom: 14px;
}
@media screen and (max-width:1000px) {
    .s_layout {
        max-width: 500px;
        gap: 0;
        display: flex;
        flex-wrap: wrap;
    }
    .s_layout .s_item {
        width: calc(50% - 50px);
        margin: 0 25px 40px;
    }
}
@media screen and (max-width:484px) {
    .s_layout {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }
    .s_layout .s_item {
        width: calc(100% - 50px);
        margin: 0 25px 40px;
        max-width: 200px;
    }
}
/*------------ contact-editor ------------*/
.contact-editor .col {
    float: left;
}
.contact-editor .col+.col {
    margin: 0 0 0 25px;
}
.contact-editor i {
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 30px;
    position: relative;
    margin: 0 20px 0 0;
    z-index: 0;
}
.contact-editor i:after {
    content: '';
    background: #64AA62;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transform: rotate(45deg);
}
.contact-editor i:before {
    display: inline-block;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.contact-editor .tel i:before {
    content: "\ff001";
}
.contact-editor .fax i:before {
    content: "\ff002";
}
.contact-editor .mail i:before {
    content: "\ff003";
}
.contact-editor .add i:before {
    content: "\ff004";
    font-size: 18px;
    position: relative;
    top: 2px;
}
.contact-editor .col a,
.contact-editor .col span {
    display: inline-block;
    width: calc(100% - 50px);
    vertical-align: middle;
}
/*------------ video-editor ------------*/
.video-editor .pic {
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor {
    font-size: 15px;
    line-height: 2;
}
.terms-editor .title {
    font-size: 17px;
    color: #64AA62;
    margin: 0;
}
.terms-editor p {
    text-indent: 0em;
    margin: 0 0 50px;
}
.terms-editor .row {
    margin: 0 -27px;
}
.terms-editor .col {
    padding: 0 27px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px) {
    .about-editor .row_2 .txt_box {
        padding: 50px 90px 50px 50px;
    }
}
@media screen and (max-width: 960px) {
    .contact-editor .col+.col {
        margin: 25px 0 0 0;
    }
    .contact-editor .col {
        float: none;
    }
}
@media screen and (max-width: 1100px) {
    .row_ {
        display: block;
    }
    .about-editor .row_1 .col {
        margin-bottom: 20px;
    }
    .about-editor .row_1 {
        margin-bottom: 40px;
    }
    .about-editor .row_2 {
        margin-top: 20px;
    }
    .about-editor .row_2 .col1:after {
        display: none;
    }
    .about-editor .row_2 .col,
    .about-editor .row_3 .col {
        margin-bottom: 20px;
    }
    .about-editor .row_2 .txt_box,
    .about-editor .row_3 .txt_box {
        padding: 0px;
        border: none;
        margin-right: 0px;
        margin-left: 0;
        margin-top: 0;
    }
    .about-editor .row_2 .col2 {
        text-align: left;
    }
    .index-about-editor {
        padding: 0;
        height: auto;
    }
    .service-editor .row_ .col2,
    .service-editor .row_ .col1 {
        width: 100%;
        margin-bottom: 20px;
    }
    .service-editor .row_ .col2 {
        padding: 0
    }
    .contact-editor i {
        text-indent: 0px;
        line-height: 30px;
    }
}
@media screen and (max-width: 767px) {
    .terms-editor .row {
        margin: 0;
    }
    .terms-editor .col {
        padding: 0;
        width: 100%;
    }
}