@charset "utf-8";
/*------------ about-editor ------------*/
.a_layout *{
    position: relative;
    box-sizing: border-box;
}
.a_layout .a_title {
    margin: 0 0 15px;
    display: flex;
    flex-direction: column-reverse;
}
.a_layout .a_title span {
    display: block;
    color: #FF3D00;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'Rajdhani', serif;
}
.a_layout .a_title span b{
    font-style: unset;
    color: #00B0FF;
}
.a_layout .a_title h3 {
    display: block;
    color: #444;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 1.2;
    margin: 0;
}
.a_layout h4 {
    display: block;
    color: #444;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2.5px;
    line-height: 1.5;
    margin: 0 0 15px;
    padding: 0 0 0 20px;
}
.a_layout h4::before {
    content: '';
    position: absolute;
    top: 53.5%;
    transform: translateY(-50%);
    left: 0;
    width: 3px;
    height: calc(100% - 5px);
    background: #00B0FF;
}
.a_layout p {
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.8;
    text-align: justify;
    font-size: 20px;
}
.a_layout .a_item.one {
    display: flex;
    align-items: center;
    margin: 0 0 60px;
}
.a_layout .a_item.one .a_col:first-of-type {
    width: 100%;
    max-width: 435px;
}
.a_layout .a_item.one .a_col:last-of-type{
    width: calc(100% - 435px);
    padding-left: 60px;
}
.a_layout .a_item.two { 
    padding: 50px;
    overflow: hidden;
}
.a_layout .a_item.two::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: url(../../../images/layout03/common/about/a_pic2.jpg) no-repeat fixed;
    background-size: cover;
}
@media screen and (max-width: 1000px){
    .a_layout .a_item.one {
        flex-direction: column;
    }
    .a_layout .a_item.one .a_col:first-of-type {
        max-width: unset;
        text-align: center;
    }
    .a_layout .a_item.one .a_col:last-of-type {
        width: 100%;
        padding: 30px 0 0;
    }
    .a_layout h4 {
        padding: 0 0 0 15px;
    }
    .a_layout .a_item.one {
        margin: 0 0 30px;
    }
    .a_layout .a_item.two {
        padding: 30px;
    }
    .a_layout .a_item.two::before{
        background-attachment: unset;
    }
}
/*------------ service-editor ------------*/
.s_layout *{
    position: relative;
    box-sizing: border-box;
}
.s_layout a.cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.s_layout {
    display: flex;
}
.s_layout .s_box {
    width: calc(100% / 2);
}
.s_layout .s_pic::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    mix-blend-mode: multiply;
    opacity: 0.8;
    z-index: 1;
    transition: all 0.3s ease;
}
.s_layout .s_box .s_pic::after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    opacity: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    mix-blend-mode: multiply;
    -moz-transform: rotateX(-90deg);
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -moz-transition: -moz-transform 0.5s, opacity 0.5s;
    -o-transition: -o-transform 0.5s, opacity 0.5s;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    z-index: 2;
}
.s_layout .s_box:hover .s_pic::after {
    opacity: 0.7;
    -moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}
.s_layout .s_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 64px;
    z-index: 2;
    transition: all 0.5s ease;
}
.s_layout .s_box:hover .s_txt {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
}
.s_layout .s_txt h3 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    font-weight: normal;
    letter-spacing: 1.5px;
}
.s_layout .s_txt p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.8);
    display: none;
    transition: all 0.5s ease;
}
.s_layout .s_box:hover .s_txt p {
    display: block;
}
.service-sect .s_layout .index_more {
    position: relative;
    right: unset;
    top: unset;
    color: rgba(255, 255, 255, 0.8);
    border-color: #FF3D00;
    background: #FF3D00;
    margin: 30px auto 0;
    min-width: 150px;
    height: 35px;
    line-height: 35px;
    padding: 0 20px;
    display: none;
}
.service-sect .s_layout .index_more::before {
    content: '\f105';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    display: block;
    font-size: 15px;
    font-family: 'icon-font' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.8;
}
.service-sect .s_layout .s_box:hover .index_more  {
    display: block;
    min-width: 150px;
    width: 150px;
}
@media screen and (max-width: 1000px){
    .s_layout {
        flex-direction: column;
    }
    .s_layout .s_box {
        width: 100%;
    }
    .s_layout .s_txt h3 {
        font-size: 18px;
    }
    .s_layout .s_txt {
        padding: 30px;
    }
}
/*------------ contact-editor ------------*/
.contact-editor{
    text-align: center;
}
.contact-editor .row{
    display: table;
    width: 100%;
    table-layout: fixed;
    border: 0;
}
.contact-editor .col{
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    position: relative;
}
.contact-editor .col + .col:before{
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background: #ddd;
}
.contact-info-txt{
    padding: 0 15px;
    margin: 0 auto;
}
.contact-info-txt .img-ic{
    display: inline-block;
    margin-bottom: 20px;
}
.contact-info-txt a:hover{
    color: #FF3D00;
    text-decoration: underline;
}
.info-icon-box{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #EEEDF3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.contact-info-txt .info-icon-box [class^="ic-"] {
    font-size: 20px;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    line-height: 2;
}
.terms-editor .title{
    font-size: 20px;
    color: #00B0FF;
    margin: 0;
    font-weight: normal;
}
.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: 960px){
    .contact-editor .col{
        float: none;
        padding: 15px 0;
    }
    .contact-editor .row,
    .contact-editor .col{
        display: block;
        width: auto;
    }
    .contact-info-txt .img-ic{
        max-width: 100px;
    }
    .contact-editor .col + .col:before {
        height: 1px;
        width: 100%;
    }
}
@media screen and (max-width: 1000px){
    .contact-editor i{
        text-indent: 0px;
        line-height: 35px;
    }
    .terms-editor .title{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
}