@charset "utf-8";

/*------------in about------------*/


.a_layout{
    position: relative;
    max-width: 935px;
    margin: 0 auto;
}

.a_layout .a-1{
    display: flex;
    margin-top: 50px;
}

.a_layout .a-1 .col{
    width: 50%;
}

.a_layout .a-1 .col.txt{
    padding-left: 80px;
}

.a_layout .a-1 .title{
    color: #044481;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 50px;
    position: relative
}



.a_layout .a-1 .title::after{
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: #19407C;
    margin: 5px auto 0px;
    margin-left: 0;
}

.a_layout .a-1  h3{
    color: #044481;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}

.a_layout .a-2{
    display: flex;
    margin-top: 18px;
}

.a_layout .a-2 .col{
    width: 50%;
}

.a_layout .a-2  .col.aicon{
    display: flex;
    flex-wrap: wrap;
    color: #044481;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 18px;
    bottom: -35px;
    position: relative;

}

.a_layout .a-2  .col.aicon .s_box{
    display: flex;
    width: 50%;
    align-items: center;
}

.a_layout .a-2  .col.aicon  .s_pic{
    margin-right: 20px;
    
    display: block;
}

.a_layout .a-2  .col.aicon  .s_pic img{
    max-height: 60px;
}

.a_layout .a-2  .col.aicon  .s_text{
    line-height: 1.4;
    
    display: block;
}

@media screen and (max-width: 1380px){
    .a_layout .a-1 .col.txt {
        padding-left: 50px;
    }

    .a_layout .a-1 .title {
        font-size: 40px;
    }
}

@media screen and (max-width: 1200px){
    .a_layout .a-1 {
        display: flex;
        margin-top: 0px;
        flex-direction: column-reverse;
        align-items: center;
        max-width: 484px;
        margin: 0 auto;
    }

    .a_layout .a-1 .col {
        width: unset;
    }


    .a_layout .a-1 .col.txt {
        padding-left: 0;
        margin-bottom: 20px;
    }


    .a_layout .a-1 .title{
        text-align: center;
    }

    .a_layout .a-1 .title::after{
        margin-left: auto;
    }

    .a_layout .a-2 {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        max-width: 484px;
        margin: 0 auto;
    }

    .a_layout .a-2 .col {
        width: unset;
    }

    .a_layout .a-2 .col.aicon {
       margin: 30px 0;
        bottom: unset;
        
    }

    .a_layout .a-2 .col.aicon .s_box {
        
        margin: 15px 0;
    }
}

@media screen and (max-width: 484px){
    .a_layout .a-1 .title {
        font-size: 30px;
    }

    .a_layout .a-1 h3 {
        font-size: 18px;
        margin-bottom: -5px;
        
    }

    .a_layout .a-2 .col.aicon .s_box {
        display: flex;
       
        align-items: center;
        flex-direction: column;
    }

    .a_layout .a-2 .col.aicon .s_pic {
        margin-right: 0;
        display: block;
        margin-bottom: 10px;
    }

   

    .a_layout .a-2 .col.aicon .s_text {
        line-height: 1.3;
        font-size: 16px;
        text-align: center;
    }


}

/*------------index service-editor ------------*/

 
.service-sect .s_layout{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative

}

.service-sect .s_layout  .s_item:nth-child(even){
    padding-top: 50px;
    
 } 
 

.service-sect .s_layout  .s_box{
    padding: 20px;
    transition: all 0.3s ease;
    top: 0px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-sect .s_layout  .s_box:hover{
    top: -5px;
}

.service-sect .s_layout  .s_box .s_pic{
    position: relative;
    z-index: 2;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-sect .s_layout  .s_box .s_pic:before {
    content: '';
    position: absolute;
    top: 0px;
    left:0px;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #fff;
    animation: btnShadow2 3s infinite both alternate-reverse;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    z-index: -1;
    opacity: 0.55;
    filter: blur(3px);
    
}

@-webkit-keyframes btnShadow2 {
    0% {
      -webkit-box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%);
      box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%); }
    100% {
      -webkit-box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%);
      box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%); } }
  
  @keyframes btnShadow2 {
    0% {
      -webkit-box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%);
      box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%); }
    100% {
      -webkit-box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%);
      box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%); } 
}

.service-sect .s_layout  .s_item:nth-child(even) .s_pic:before{
    animation: btnShadow1 3s infinite both alternate-reverse;
}

@-webkit-keyframes btnShadow1 {
    0% {
      -webkit-box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%);
      box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%); } 
    100% {
        -webkit-box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%);
        box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%); }
}
  
  @keyframes btnShadow1 {
    0% {
        -webkit-box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%);
        box-shadow: 0px 0px 0px 15px rgb(255 255 255 / 50%); } 
    100% {
        -webkit-box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%);
        box-shadow: 0px 0px 0px 0px rgb(255 255 255 / 50%); }
}
  



.service-sect .s_layout  .s_box .s_text{
    font-family: 'Raleway', sans-serif;
    font-weight:bold;
    color: #193F79;
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.4;
}

@media screen and (max-width: 1280px){
    .service-sect .s_layout {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
        max-width: 767px;
        margin: 0 auto;
    }

    

    .service-sect .s_layout .s_item:nth-child(even) {
        padding-top: 0;
    }

    .service-sect .s_layout .s_box {
         padding: 10px;
        margin: 10px 15px;
    }

    .service-sect .s_layout .s_box .s_text{
        font-size: 16px;
        max-width: 120px;
        margin: 15px auto 0;
    }
}

@media screen and (max-width: 767px){
    .service-sect .s_layout {
        
        max-width: 280px;
        margin: 0 auto;
    }

    .service-sect .s_layout .s_box {
        padding: 0;
        margin: 10px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-sect .s_layout .s_box .s_pic{
        width: 100px;
        height: 100px;
    }

    .service-sect .s_layout .s_box .s_pic:before {
        width: 100px;
        height: 100px;
    }

    .service-sect .s_layout .s_box .s_pic img{
        transform: scale(0.7);
    }
}

/*------------ about-editor ------------*/
.row_{
    display: flex;
}
.about-editor .row_1{
    justify-content: space-between;
    align-items: flex-start; 
    margin-bottom: 70px;
}
.about-editor .about-title{
    color: #262626;
    font-size: 29px;
    font-family:Roboto;
    font-weight: 300;
    margin: 0;
}
.about-editor .about-title:after{
    content: '';
    background: #4F4F4F;
    height: 1px;
    width: 60px;
    display: block;
    margin-top: 20px;
    margin-bottom: 0;
}
.about-editor .row_2{
    margin-top: 40px;
}
.about-editor .row_2 .col{
    flex-basis:  50%;
    position: relative;
}
.about-editor .row_2 .txt_box{
    margin-top: 65px;
    border:solid 1px #4F4F4F;
    display: block;
    padding:50px;
    position: relative;
    margin-right: -100px;
    color: #000000;
    box-sizing: border-box;
}
.as_title{
    margin-bottom: 10px;
}
.as_txt{
    line-height: 2;
    padding-left: 35px;
}
.about-editor .row_2 .col1:after{
    content: '';
    display: block;
    position: absolute;
    width: 126px;
    background: #fff;
    height: 65px;
    right: -100px;
    bottom: 0;
    z-index: 3;
}
.about-editor .row_2 .col2{
    position: relative;
    z-index: 4;
    text-align: center;
}
.about-editor .row_3{
    align-items: flex-end;
}
.about-editor .row_3 .col{
    flex-basis:  50%;
}
.about-editor .row_3 .txt_box{
    margin-top: -65px;
    border:solid 1px #4F4F4F;
    display: block;
    padding:115px 50px 50px;
    position: relative;
    margin-left: -26px;
    color: #000000;
}
/*------------ service-editor ------------*/
.s_title{
    color: #FFFFFF;
    margin-bottom: 15px;
}
.s_txt{
    color: #ACACAC;
    margin-bottom: 40px;
}
.s_txt:last-child{
    margin-bottom: 0px;
}
.service-editor .row_{
    margin-bottom: 40px;
}
.service-editor .row_ .col1{
    width: 40%;
}
.service-editor .row_ .col2{
    width: 60%;
    padding:0px 30px;
}
/*------------ contact-editor ------------*/
.contact-editor .col{
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
.contact-editor .col + .col{
     
}
.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:#193F79;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    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: #193F79;
    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%;
    }
}
