:root{
    --primary-color: #E31937;
}
body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
body::-webkit-scrollbar
{
    width: 8px;
    background-color: #cedbff;
}

body::-webkit-scrollbar-thumb
{
    background-color:  var(--primary-color);
}

body{
    background: #FFF;
    /*overflow-x: hidden;*/
    font-size: 15px;
}
@-webkit-keyframes shake_ani {
    20% {
      transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
      transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
      transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
      transform: rotate3d(0, 0, 1, -5deg);
    }
    to {
      transform: rotate3d(0, 0, 1, 0deg);
    }
}
input, optgroup, select, textarea{
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,.0);
}

@keyframes fade_up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.view_more_btn{
    text-align: center;
}
.view_more_btn a{
    display: inline-block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    padding: 8px 30px;
    margin-top: 45px;
    transition: 0.3s ease-in-out;
}
.view_more_btn a:hover{
    background:   var(--primary-color);
    color: #FFF
}
img{
    display: block;
}
.section{
    padding: 0;
    display: block;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #ffffff;
    overflow: hidden;
}
a{
    text-decoration: none;
}
.text_center{
    text-align: center !important;
}
.text_white{
    color: #FFFFFF !important;
}
.text_over{
    overflow: auto;
}
.text_over::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
.text_over::-webkit-scrollbar
{
    width: 5px;
    background-color: #cedbff;
}

.text_over::-webkit-scrollbar-thumb
{
    background-color: var(--primary-color);
}
div#loadpage {
/ pointer-events: none; /
display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    overflow: hidden;
    background-size: cover;
    transition: 1s all ease-in-out;
}

div#loadpage .mask {
    background-color: #fff;
    transition: 1s all ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

div#loadpage.hidden .mask {
    background-color: transparent;
}

div#loadpage .mask span {
    display: block;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    transition: 1s all ease-in-out;
    background-color: #fff;
}

div#loadpage .mask span:nth-child(even) {
    left: unset;
    right: 0;
}

div#loadpage .mask span:nth-child(1) {
    top: 0;
}

div#loadpage .mask span:nth-child(2) {
    top: 20%;
}

div#loadpage .mask span:nth-child(3) {
    top: 40%;
}

div#loadpage .mask span:nth-child(4) {
    top: 60%;
}

div#loadpage .mask span:nth-child(5) {
    top: 80%;
}

#loadpage.hidden {
    opacity: 0;
    visibility: hidden;
}

div#loadpage.hidden .mask span {
    width: 0;
}

.logo-loadpage svg {
    position: absolute;
    max-width: 450px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.logo-loadpage svg .layer1 path {
    fill-opacity: 0;
    stroke-opacity: 0;
    stroke-width: 1;
    stroke-miterlimit: 10;
}

.logo-loadpage svg #layer3 path,
.logo-loadpage svg rect {
    opacity: 0;
}

.logo-loadpage svg #layer3 path {
    stroke: transparent;
}

.logo-loadpage svg.animate .layer1 path {
    stroke-opacity: 1;
}

.logo-loadpage svg.active .layer1 path {
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
    fill-opacity: 1;
    stroke-opacity: 0;
    -webkit-transition: all 3s ease;
    transition: all 3s ease;
}

.logo_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: auto;
    height: auto;
}
.logo_center img{
    width: 400px;
    height: auto;
    object-fit: cover;
}
.home_1{
    position: relative;
}
.box_swiper{
    position: relative;
}
.home_1 .banner_cont{
    position: absolute;
    width: 418px;
    padding: 29px 45px 29px 36px;
}
.home_1 .banner_cont h1{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 35px;
    color: #FFFFFF;
    position: relative;
    margin: 0;
}
.banner_cont:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
.custom-swiper-btn{
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.custom-swiper-btn.prev{
    left: 6%;
}
.custom-swiper-btn.next{
    right: 6%;
}
.custom-swiper-btn svg{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.sec_video p:empty {
    display: none;
}
.custom-swiper-btn.next:hover svg{
    transform: scale(1.1) translateX(10px);
}
.custom-swiper-btn.prev:hover svg{
    transform: scale(1.1) translateX(-10px);
}
.swiper-pagination-bullet{
    width: 11px;
    height: 11px;
    background: #FFFFFF;
    opacity: 0.4;
}
.swiper-pagination-bullet-active{
    opacity: 1;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: 37px;
}
.section_heading{
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
}
.section_heading > .sec_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 50px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.section_heading > .sec_title p{
    margin: 0;
}
.section_heading > .sec_cont  > *:last-child{
    margin: 0 !important;
}
.section_heading > .sec_cont strong{
    font-weight: 700;
}
.home_2{
    padding: 100px 0 126px 0;
    position: relative;
}

.home_2:before{
    content: ' ';
    background-image: url('../images/bg_1.png');
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50%;
    background-repeat: no-repeat;
    width: 50%;
}
.home_2:after{
    content: ' ';
    background-image: url('../images/bg_2.png');
    position: absolute;
    left: 0;
    top: 0;
    height: 60%;
    width: 55%;
    z-index: 0;
    background-repeat: no-repeat;
}
.home_featured_prod_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 35px;
    position: relative;
    z-index: 2;
}
.home_featured_prod_wrap .item{
    position: relative;
    max-height: 277px;
}
.home_featured_prod_wrap .item>a{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.home_featured_prod_wrap .wrap_img{
    overflow: hidden;
    height: 100%;
}
.home_featured_prod_wrap .wrap_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home_featured_prod_wrap .item .item_cont{
    background:   var(--primary-color);
    padding: 8px 13px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.home_featured_prod_wrap .item span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.home_featured_prod_wrap .item svg{
    transition: 0.5s ease-in-out;
    transform: rotate(0);
}
.home_featured_prod_wrap .item:hover svg{
    transform: rotate(450deg);
}
.home_featured_prod_wrap .item img{
    transition: 0.6s ease-in-out;
}
.home_featured_prod_wrap .item:hover img{
    transform: scale(1.3);
}
.home_3{
    position: relative;
}
.home_3_cont>p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    opacity: 0.8;
    margin-bottom: 54px;
}
.home_3_cont>a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 12px 50px;
    transition: 0.3s ease-in-out;
}
.home_3_cont>a:hover{
    background: #FFF;
    color: #333333;
}
.home_3_cont>h2>p{
    margin-bottom: 18px;
}
.home_3_cont>h2{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.home_3_cont>h2 strong{
    font-weight: 800;
    display: block;
}
.home_3_cont{
    position: absolute;
    left: calc(calc(100vw - 1200px) / 2);
    top: 0;
    width: 25%;
    height: 100%;
    background: rgba(56, 56, 56, 0.85);
    mix-blend-mode: normal;
    padding: 141px 77px 115px 60px;
}
.home_4{
    padding: 127px 0 136px 0;
    position: relative;
}
.home_4:before{
    width: 50%;
    height: 400px;
    left: 0;
    bottom: 50px;
    background-image: url('../images/bg_5.png');
    background-repeat: no-repeat;
}
.home_4:after{
    width: 210px;
    height: 500px;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg_3.png');
    background-repeat: no-repeat;
}
.home_4 .grid-container{
    position: relative;
    padding: 0;
    z-index: 4;
}
.home_4 .grid-container:before,
.home_4:before,
.home_4:after{
    position: absolute;
    content: '';
}
.home_4 .grid-container:before{
    width: 184px;
    height: 178px;
    top: -66px;
    right: -79px;
    background-image: url('../images/bg_4.png');
    visibility: unset;
    background-repeat: no-repeat;
}
.home_4 .grid-container img{
    position: relative;
}
.home_4_cont h3{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
    position: relative;
}
.home_4_cont>a:first-child{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.home_4_cont>a:last-child{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    border: 0.5px solid #FFFFFF;
    border-radius: 100px;
    padding: 10px 30px;
    position: relative;
    transition: 0.3s ease-in-out;
}
.home_4_cont>a:last-child:hover{
    background: #FFF;
    color: black;
}
.home_4_cont{
    position: absolute;
    right: 63px;
    bottom: 80px;
    width: 416px;
    height: 250px;
    padding: 50px 44px 45px 44px;
    transition: 1s ease-in-out;
}
.home_4_cont:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../images/red_bg.png') repeat 0 0;
    mix-blend-mode: multiply;
}
@keyframes abc {
    from{
        width: 416px;
        height: 0;
    }
    to{
        width: 100%;
        height: 100%;
    }
}
.home_4 > .grid-container:hover .home_4_cont{
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    text-align: center;*/
/*    vertical-align: center;*/

}
.home_5 .home_count{
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
}
.home_5 .home_count .item .des{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    opacity: 0.8;
}
.home_5 .home_count .item .icon{
    background: #EFEFEF;
    background-image: url(../images/icon_bg.png);
    border-radius: 50%;
    height: 110px;
    width: 110px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translate(-50%,0) rotateY(0);
    transition: 0.5s ease-in-out;
}
.home_5 .home_count .item .icon img{
    margin: 0 auto;
    width: 56px;
    height: 56px;
    transition: 0.3s ease-in-out;
}
.home_5 .home_count .item .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    color: var(--primary-color);
}
.home_5 .home_count .item{
    width: calc(25% - 25px);
    text-align: center;
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    padding: 65px 0px 24px 0px;
    position: relative;
}
.home_5 .home_count .item:hover .icon{
    background: var(--primary-color);
    background-image: url('../images/icon_bg.png');
    transform: translate(-50%,-10px);
}
.home_5 .home_count .item:hover .icon img{
    filter: brightness(0) invert(1);
    transform: rotateY(720deg);
}
.home_5 .box_slider{
    margin-top: 100px;
}
.home_5 .box_slider .slide_wrapper{
    position: relative;
}
.home_5 .box_slider .img_wrap{
    position: relative;
}
.home_5 .box_slider img{
    width: 100%;
    object-fit: cover;
}
.home_5 .box_slider .slider-slide{
    position: relative;
    padding: 0 16px;
}
.home_5 .box_slider .slider-slide .img_wrap:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    transition: all 0.5s  ease-in-out;
    pointer-events: none;
}
.home_5 .box_slider .slider-slide.slick-current .img_wrap:before{
    background: inherit;
    transition: all 0.5s  ease-in-out;
}
.home_5 .box_slider .cont{
    position: absolute;
    top:50%;
    right: -17%;
    width: 386px;
    background: #F6F6F6;
    transform: translateY(-50%);
    padding: 42px 47px 37px 50px;
    border-radius: 10px;
    opacity: 0;
    transition: .5s ease-in-out;
    pointer-events: none;
    z-index: 9999;
}
.home_5 .box_slider .cont>.proj_cat{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 5px;
}
.home_5 .box_slider .cont>.proj_name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #333333;
    margin-bottom: 5px;
}
.home_5 .box_slider .cont>.proj_addr{
    padding-bottom: 26px;
    margin-bottom: 22px;
    border-bottom: 1px solid #E7E7E7;
}
.home_5 .box_slider .cont>.proj_addr,
.home_5 .box_slider .cont>.proj_info>li{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #333333;
    opacity: 0.8;
}
.home_5 .box_slider .cont>.proj_info>li>span{
    font-weight: 700;
}
.home_5 .box_slider .cont>.proj_info{
    flex-direction: column;
}
.home_5 .box_slider .cont>a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100px;
    padding: 7px 22px;
    margin-top: 10px;
    display: inline-block;
}
.home_5 .box_slider .cont>a:hover{
    background: var(--primary-color);
    color: #FFF
}

.home_5 .box_slider .slider-slide.slick-current .cont{
    opacity: 1;
    transition-delay: 0.7s;
    pointer-events: unset;
}
.home_5 .box_slider{
    max-height: 590px;
}
button.slick-arrow{
    position: absolute;
    background-color: transparent;
    top: 50%;
    transform: translateY(-60%);
    z-index: 9;
    padding: 0;
    width: 26px;
    height: 45px;
    overflow: hidden;
    opacity: 0;
}
button.slick-prev.slick-arrow{
    left: 6%;
}
button.slick-next.slick-arrow{
    right: 6%;
}
.home_5 .slick-list.draggable{
    max-height: 580px;
}
.home_6 .grid-60:before,
.home_6 .grid-60:after{
    display: none;
}
.home_6 .grid-60{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    grid-column-gap: 16px;
}
.home_6 .grid-60 .item{
    position: relative;
}
.home_6 .grid-60 .item:first-child{
    grid-column-start: 1;
    grid-column-end: 3;
}
/*.home_6 .grid-60 .item:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0;*/
/*    height: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    background: rgba(0, 0, 0, 0.7);*/
/*    transition: .5s ease-in-out;*/
/*    pointer-events: none;*/
/*}*/

/*.home_6 .grid-60 .item:hover:before{*/
/*    height: 100%;*/
/*    width: 100%;*/
/*}*/
.home_6 .grid-60 .item .play_btn{
    display: flex;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@keyframes scaleBorder {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
.home_6 .grid-60 .item .play_btn:before{
    content: ' ';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scaleBorder 1.2s infinite;
}
.home_6 .grid-40 .img_wrap{
    width: 45%;
    overflow: hidden;
}
.home_6 .grid-40 .img_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}
.home_6 .grid-40 .item{
    display: flex;
    justify-content: space-between;
    position: relative;
    max-height: 133px;
}
a.wrap_link{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5;
}
.home_6 .grid-40 .item:not(:last-child){
    margin-bottom: 17px;
}
.home_6 .grid-40 .item_cont{
    width: 50%;
}
.home_6 .grid-40 .item_cont>span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 25px;
    color: #666666;
    opacity: 0.8;
}
.red_line{
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px  solid #E2E2E2;
}
.news_item:hover .red_line:before{
    width: 100%;
}
.home_6 .grid-40 .item_cont .news_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #333333;
    transition: .3s ease-in-out;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
}
.home_6 .grid-40 .item:hover img{
    transform: scale(1.3);
}
.home_6 .grid-40 .item:hover .item_cont .news_title{
    color: var(--primary-color);
}
.home_6 .grid-40 .item:hover .before-line:before{
    width: 100%;
}
.home_6{
    padding: 94px 0 75px 0;
    background: #F5F5F5;
    position: relative;
}
.home_6:before{
    content: ' ';
    background-image: url(../images/bg_7.png);
    position: absolute;
    left: 0;
    top: 0;
    height: 60%;
    width: 55%;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.home_6:after{
    content: ' ';
    background-image: url(../images/bg_6.png);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 20%;
    width: 100%;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.bottom_content{
    padding: 63px 0px;
    overflow: unset;
}
.bottom_content .section_heading{
    /*padding: 0 92px;*/
}
.bottom_content p{
    margin-bottom: 0 !important;
}
.bottom_content .link{
    text-align: center;
}
.bottom_content .link a,
.bottom_content .link span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    border-radius: 100px;
    padding: 8px 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.bottom_content .link a:hover,
.bottom_content .link span:hover{
    background: var(--primary-color);
    color: #FFF
}
.bottom_content:before{
    content: '';
    position: absolute;
    width: 243px;
    height: 419px;
    left: 5%;
    top: -170px;
    background-image: url('../images/bg_8.png');
background-repeat: no-repeat;
background-size: cover;
}
.bottom_content:after{
    content: '';
    position: absolute;
    width: 165px;
    height: 419px;
    right: 4%;
    bottom: -250px;
    background-image: url('../images/bg_9.png');
background-repeat: no-repeat;
background-size: cover;
}
.bottom_content .section_heading{
    margin-bottom: 30px;
}
.home_6 .box_swiper{
    background: #fff;
    border-radius: 10px;
    z-index: 1;
    padding: 70px 0 60px 0;
    margin-top: 74px;
}
.home_6 .box_swiper > .swiper > .swiper-wrapper > .swiper-slide{
    margin: 15px 30px 15px 0  !important;
    text-align: center;
    display: flex;
    justify-content: center;
}
.about_1{
    position: relative;
}
.about_1 .img_wrap{
    position: relative;
}
.about_1 .img_wrap:before{
    content: '';
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 70%;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}
.about_1 .banner_cont p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #FFFFFF;
    opacity: 0.8;
}
.about_1 .banner_cont .cmt{
    margin-top: -118px;
    position: relative;
    margin-bottom: 28px;
}
.about_1 .banner_cont h3{
    font-family: 'Roboto';
    font-style: normal;
    font-size: 45px;
    color: #FFFFFF;
    margin: 0;
    position: relative;
}
.about_1 .banner_cont h3:nth-child(2){
    font-weight: 400;
    margin-bottom: 16px;
    margin: 0;
}
.about_1 .banner_cont h3:nth-child(3){
    font-weight: 700;
    margin-bottom: 22px;
}
.about_1 .banner_cont{
    position: absolute;
    width: calc(100vw - calc(calc(100vw - 1200px)/2));
    height: 45%;
    top: 27%;
    right: 0;
    padding: 0;
}
.about_1 .banner_cont .cont_wrap{
    padding: 91px 0 46px 112px;
    width: 425px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.about_1 .avt_wrap {
    position: absolute;
    bottom: -150px;
    right: calc(calc(100vw - 1090px)/2);
    opacity: 0;
    transition: 0.8s ease-out;
}
.about_1 .banner_cont:before{
    width: 0;
    left: unset;
    right: 0;
    transition: 0.8s ease-in;
}
.about_1 .swiper-slide-active .banner_cont:before{
    width: 100%;
}
.about_1 .swiper-slide-active .banner_cont .cont_wrap{
    opacity: 1;
    transition-delay: 0.8s;
}
.about_1 .swiper-slide-active .avt_wrap{
    transition-delay: 0.8s;
    bottom: 0;
    opacity: 1;
}
.divider{
    margin: 0 17px;
}
nav.breadcrumb ul{
    align-items: center;
}
.breadcrumbs{
    background: transparent;
    position: relative;
    z-index: 6;
    margin: 24px 0 !important;
}
.breadcrumbs cite{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 25px;
    color: #666666;
    text-transform: none;
}
.breadcrumbs li.title_single cite{
    font-weight: 400;
}
.breadcrumbs a:hover path,
.breadcrumbs a:hover cite{
    stroke:   var(--primary-color);
    color:   var(--primary-color);
}
.about_2{
    padding: 24px 0 61px 0;
}
.about_2:before{
    content: '';
    position: absolute;
    width: 140px;
    height: 145px;
    left: 5%;
    top: -10px;
    background-image: url('../images/bg_4.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.about_2:after{
    content: '';
    position: absolute;
    width: 746px;
    height: 369px;
    right: 0;
    top: -80px;
    background-image: url('../images/bg_5.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.about_2 .sec_sub_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 51px;
    position: relative;
}
.about_2 .sec_sub_title:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -25px;
    width: 30%;
    height: 4px;
    background:   var(--primary-color);
}
.about_2 .sec_cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 20px;
}
.about_2 .section_heading{
    margin: 0;
}
.about_2 .wrap{
    z-index: 2;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px ;
}
.about_2 .wrap .grid-40:last-child{
    position: relative;
}
.about_2 .wrap .img_wrap{
    z-index: 1;
    position: relative;
}
.about_2 .wrap .grid-40:last-child:before{
    content: '';
    position: absolute;
    width: 122px;
    height: 235px;
    left: -80px;
    top: 50%;
    background-image: url(../images/bg_9.png);
background-repeat: no-repeat;
background-size: cover;
    visibility: unset;
    transform: translateY(-50%);
}

.about_2 .sec_link a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    border-radius: 100px;
    padding: 8px 20px;
    transition: 0.3s ease-in-out;
}
.about_2 .sec_link a:hover{
    background: var(--primary-color);
    color: #FFF;
}
.about_2 .sub_title,
.about_2 .sec_cont{
    padding-right: 18px;
}
.img_wrap{
    overflow: hidden;
}
.img_wrap img{
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    object-fit: cover;
}
.about_3{
    padding: 104px 0 0 0;
    background-image: url('../images/bg_about.png');
background-repeat: no-repeat;
background-size: cover;
}
.about_3 .grid-container{
    margin-bottom: 96px;
}
.about_3 .grid-container .cont p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin: 0;
}
.about_3 .grid-container .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 50px;
    color: var(--primary-color);
    margin: 28px 0 14px 0;
}
.about_3 .grid-container .grid-50:last-child{
    padding: 0 32px 0 120px;
}
.about_3 .grid-container .grid-50:first-child{
    padding-right: 120px;
    border-right: 1px solid rgba(208, 208, 208, 0.6);
}
.about_3 .img_cont{
    position: relative;
}
.about_3 .grid-container .grid-50 .icon{
    height: 97px;
}
.about_3 .grid-container .grid-50 .icon img{
    height: 100%;
    transform: rotateY(0);
    transition: 0.5s ease-in-out;
}
.about_3 .grid-container .grid-50 .icon:hover img{
    transform: rotateY(360deg);
}
.about_3 .content_sec_3:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
.about_3 .content_sec_3{
    position: absolute;
    width: 50%;
    min-height: 75%;
    bottom: 0;
    right: 0;
}
.text_sec_3{
    position: relative;
    padding: 68px 462px 46px 85px;
}
.text_sec_3 .cont p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    margin: 0;
}
.text_sec_3 .sub_title{
    margin-bottom: 12px;
}
.text_sec_3 .sub_title p{
    font-family: 'Roboto';
    font-style: normal;
    margin: 0;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.text_sec_3 .cont p:first-child{
    margin-bottom: 25px;
}
.text_sec_3 .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 42px;
}
.about_4{
    padding: 95px 0;
    background-image: url('../images/bg_about_2.png');
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}
.about_4 .section_heading{
    padding: 0 290px;
}
.about_4 .history_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about_4 .history_wrap .item{
    width: calc(50% - 50px);
    display: none;
}
.about_4 .history_wrap .item:nth-child(odd):not(:first-child){
    margin-top: -160px;
}
.about_4 .history_wrap .item{
    margin-bottom: 100px;
}
.about_4 .history_wrap .item:nth-child(2){
    margin-top: 160px;
}
.about_4 .history_wrap .item_cont{
    border: 2px solid   var(--primary-color);
    outline: 2px solid   var(--primary-color);
    outline-offset: -3px;
}
.about_4 .history_wrap .item_cont .content{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #333333;
    padding: 26px 61px 32px 61px;
    background: white;
    position: relative;
    transition: 0.5s ease-in-out;
}
.about_4 .history_wrap .item_cont .img{
    overflow: hidden;
}
.about_4 .history_wrap .item_cont .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    text-align: center;
    padding: 24px 82px;
    background:   var(--primary-color);
}
.about_4 .history_wrap .item:hover .content{
    background:   var(--primary-color);
    color: white;
}
.about_4 .history_wrap .item img{
    transition: 0.5s ease-in-out;
}
.about_4 .history_wrap .item:hover img{
    transform: scale(1.2);
}
.about_4 .history_wrap .item .year{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.about_4:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 200px;
    width: 650px;
    height: 234px;
    background-image: url('../images/bg_5.png');
background-repeat: no-repeat;
background-size: cover;
}
.about_4:after{
    content: '';
    position: absolute;
    right: 0;
    top: 120px;
    width: 350px;
    height: 234px;
    background-image: url('../images/bg_11.png');
background-repeat: no-repeat;
background-size: cover;
}
.about_4 .view_more_history{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    padding: 8px 30px;
    cursor: pointer;
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -50px;
    transition: 0.3s ease-in-out;
    align-items: center;
}
.about_4 .view_more_history:hover{
    background:   var(--primary-color);
    color: #FFF;
}
.about_4 .view_more_history:hover path{
    stroke: #FFF;
}
.about_4 .view_more_history svg{
    margin-left: 12px;
}
.about_5 .section_heading {
    padding: 0 115px;
}
.about_5{
    padding: 97px 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.about_5 .box_swiper .text_wrap{
    background: #FFF;
    padding: 32px 36px 46px;
    transition: 0.5s ease-in-out;
}
.about_5 .box_swiper .img{
    overflow: hidden;
}
.about_5 .box_swiper .text_wrap .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 40px;
    position: relative;
    transition: 0.5s ease-in-out;
}
.about_5 .box_swiper .text_wrap .title:before{
    position: absolute;
    content: '';
    height: 3px;
    width: 40%;
    bottom: -20px;
    left: 0;
    background:   var(--primary-color);
    transition: 0.5s ease-in-out;
}
/*.about_5 .box_swiper .swiper-slide:hover .text_wrap{*/
/*    background:   var(--primary-color);*/
/*    color: #FFF;*/
/*}*/
.about_5 .box_swiper .swiper-slide img{
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.about_5 .box_swiper .swiper-slide:hover img{
    transform: scale(1.3);
}
.about_5 .box_swiper .swiper-slide:hover .text_wrap .title:before{
    width: 100%;
}
.about_6{
    padding: 82px 0 126px 0;
    background-blend-mode: luminosity;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
}
.about_6:before{
    content: '';
    position: absolute;
    left: 0;
    top: 300px;
    width: 260px;
    height: 335px;
    background-image: url('../images/bg_14.png');
}
.about_6:after{
    content: '';
    position: absolute;
    right: 0;
    top: 640px;
    width: 275px;
    height: 595px;
    background-image: url('../images/bg_13.png');
}
.about_6 .section_heading{
    padding: 0 85px;
}
.about_6 .des_sec_6 img{
    margin: 0 auto;
}
.about_6 .des_sec_6 .cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #333333;
    padding: 0 375px;
    margin-top: 20px;
}
.about_6 .des_sec_6 .cont strong{
    color: var(--primary-color);
    font-weight: 700;
}
.goals_list{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 80px;
}
.goals_list .item{
    width: 100%;
    text-align: center;
}
.goals_list h3 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    /* identical to box height, or 140% */
    text-align: center;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 0px;
}
.goals_list h5 {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 90px;

    /* or 31% */
    text-transform: uppercase;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 80px;
    margin-bottom: 6px;
}
.goals_list p {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    /* or 140% */
    text-align: center;
    text-transform: uppercase;
    color: #333333;
}
.goals_list strong {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    /* or 140% */
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
}
.goals_list img {
    margin: 0 auto;
}

.goals_list .item:nth-child(even) {
    /*margin-top: 195px;*/
}
.goals_list:before{
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    border-left: 1px dashed rgba(227, 25, 55, 0.8);
}
.goals_list:after{
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    height: 20px;
    width: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}
.goals_list .item{
    display: flex;
    justify-content: space-between;
}
.goals_list .item > *{
    width: 50%;
}
.goals_list .item .cont{
    padding: 0 167px;
    position: relative;
}
.goals_list .item .cont:before{
    width: 112px;
    border-top: 1px dashed rgba(227, 25, 55, 0.8);
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}
.goals_list .item .cont:after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 15px;
    background: var(--primary-color);
    border-radius: 50%;
}
.goals_list .item:nth-child(even) .cont:before{
    left: 0;
}
.goals_list .item:nth-child(even) .cont:after{
    left: 112px;
}
.goals_list .item:nth-child(odd) .cont:before{
    right: 0;
}
.goals_list .item:nth-child(odd) .cont:after{
    right: 112px;
}
.goals_list .item:not(:first-child){

    margin-top: -94px;
}
.goals_list .item:nth-child(even) {
    flex-direction: row-reverse;
}
.about_7{
    margin-top: -30px;
}
.about_7 .item_wrap .item{
    width: 100%;
    display: flex;
    background: #F2F2F2;
    position: relative;
}
.about_7 .item_wrap .item>div{
    width: 50%;
}
.about_7 .item_wrap .item:nth-child(even){
    flex-direction: row-reverse;
}
.about_7 .item_wrap .item:nth-child(even) .cont_wrap{
    padding: 103px 112px 0 calc(calc(100vw - 1200px)/2);
}
.about_7 .item_wrap .item:nth-child(odd) .cont_wrap{
    padding: 103px calc(calc(100vw - 1200px)/2) 0 112px;
}

.about_7 .item_wrap .item:nth-child(odd):before,
.about_7 .item_wrap .item:nth-child(even):before{
    content: '';
    position: absolute;
    top: 0;
    background-image: url('../images/bg_12.png');
background-repeat: no-repeat;
background-size: cover;
    width: 258px;
    height: 100%;
}
.about_7 .item_wrap .item:nth-child(odd):before{
    right: 0;
}
.about_7 .item_wrap .item:nth-child(even):before{
    left: 0;
}
.about_7 .item_wrap .item .title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.about_7 .item_wrap .item .sub_title {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #333333;
    opacity: 0.8;
    margin-bottom: 38px;
    position: relative;
}
.about_7 .item_wrap .item .sub_title p{
    margin: 0;
}
.about_7 .item_wrap .item .sub_title:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -19px;
    width: 30%;
    height: 4px;
    background:   var(--primary-color);
}
.about_7 .item_wrap .item .cont {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 29px;
    max-height: 150px;
}
.about_7 .item_wrap .item .link a {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    border-radius: 100px;
    padding: 9px 30px;
    transition: 0.3s ease-in-out;
}
.about_7 .item_wrap .item .link a:hover{
    background:   var(--primary-color);
    color: white
}
section.map iframe{
    width: 100%;
    height: 400px;
}
section.contact .grid-container{

    position: relative;
    z-index: 2;
}
section.contact{
    overflow: unset;
    padding: 56px 0 122px 0;
    position: relative;
}
section.contact:before,
section.contact:after{
    visibility: unset;
    position: absolute;
    content: '';
    width: 755px;
    height: 242px;
    background-image: url('../images/bg_5.png');
}
section.contact:before{
    bottom: 120px;
    left: 0;
}
section.contact:after {
    right: 210px;
    top: 154px;
}
section.contact .grid-55{
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 90px 80px;
    float: right;
}
section.contact .grid-55 input,
section.contact .grid-55 select{
    height: 40px;
}
section.contact .grid-55 input,
section.contact .grid-55 select,
section.contact .grid-55 textarea{
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(73, 73, 73, 0.2);
    padding-left: 24px;
}
section.contact .grid-55 textarea{
    min-width: 100% !important;
    height: 120px;
}

section.contact .grid-55 .form_group > .wpcf7-form-control-wrap > *,
section.contact .grid-55 .form_group > .wpcf7-form-control-wrap > *::placeholder{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    display: flex;
    align-items: center;
    color: #333333;
    opacity: 0.5;
}
section.contact .grid-55 .form_group{
    margin: 12px 0 0;
    position: relative;
}
section.contact .grid-55 .form_group svg{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    pointer-events: none;
}
section.contact .grid-55 .form_group > .wpcf7-form-control-wrap > *{
    opacity: 1;
}
section.contact .grid-55 .form_des{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    opacity: 0.8;
    margin-bottom: 15px;
}
section.contact .grid-55 .form_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 33px;
    line-height: 53px;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
}
section.contact .grid-55 .form_title:before{
    position: absolute;
    content: '';
    height: 3px;
    width: 10%;
    background:   var(--primary-color);
    left: 0;
    bottom: -10px;
}
section.contact .grid-55 .form_group:last-child{
    width: auto;
}
section.contact .grid-55 input[type="submit"]:hover{
    background:   var(--primary-color);
    color: #FFF;
}
section.contact .section_heading{
    margin: 0 0 45px 0;
}
section.contact .contact_info{
    display: flex;
}
section.contact .contact_info .item{
    width: 50%;
}
section.contact .contact_info .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 18px;
    color: #333333;
    opacity: 0.8;
}
section.contact .contact_info .item ul{
    flex-direction: column;
}

section.contact .contact_info .item ul li a{
    display: flex;
    align-items: center;
    margin-bottom: 9px;
}
@keyframes bubble {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-3px);
    }
}
section.contact .contact_info .item ul li a img{
    transform: translateY(0);
    transition: 0.3s ease-in-out;
    max-width: 42px;
}
section.contact .contact_info .item ul li a:hover img{
    /*transform: translateY(-10px);*/
    animation: bubble 1s infinite;
}
section.contact .contact_info .item ul li a:hover span{
    color: var(--primary-color);
}
section.contact .contact_info .item ul li span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    margin-left: 15px;
    color: #333333;
    opacity: 0.8;
}
section.contact .img{
    margin-top: 15px;
}
section.contact .wpcf7-not-valid-tip{
    color: #dc3232 !important;
    font-size: 12px !important;
}
.list_recruit{
    position: relative;
    z-index: 1;
}
.list_recruit th{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    background:   var(--primary-color);
    height: 90px;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.list_recruit th:last-child{
    border: none;
}
.list_recruit tr td{
    border: none !important;
    border-right: 1px solid rgba(209, 209, 211, 0.3) !important;
}
.list_recruit tr{
    height: 90px;
    background: #FFF;
}
.list_recruit tr > *{
    padding: 0 0 0 30px;
}
.list_recruit tr:nth-child(even){
    background: #F6F6F6;
}
.list_recruit table{
    border: 3px solid   var(--primary-color)
}
.list_recruit tr > *:nth-child(5),
.list_recruit tr > *:nth-child(6){
    text-align: center;
    padding: 0;
}
.list_recruit tr > *:nth-child(1){
    padding-left: 40px;
}
.list_recruit tbody tr > td:nth-child(1){
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
}
.list_recruit tbody tr > td:nth-child(1) > a{
    font-weight: 700;
    color: #333333;
}
.list_recruit tbody tr > td:nth-child(1) > a{
    transition: 0.3s ease-in-out;
}
.list_recruit tbody tr > td:nth-child(1) > a:hover{
    color: var(--primary-color);
}
.list_recruit tbody tr:hover{
    background: #F9FAFF;
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
}
.list_recruit tbody tr > td:last-child a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 15px;
}
.list_recruit tbody tr > td:last-child a{
    transition: .3s ease-in-out;
}
.list_recruit tbody tr > td:last-child a:hover{
    background: var(--primary-color);
    color: white;
}
.list_recruit .rec_popup {
    display: none;
    padding: 0 !important;
    width: 700px !important;
    position: relative;
}
.rec_popup .title,
#apply_form .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 26px;
    /* identical to box height, or 87% */
    color: #FFFFFF;
    text-align: center;
    padding: 30px 0;
    background:   var(--primary-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.rec_popup .job_description {
    padding: 38px 45px 43px;
    background: #FFF;
}
.rec_popup .item:not(:first-child) {
    margin-bottom: 14px;
}
.rec_popup .item_head {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    /* identical to box height, or 144% */
    color: #333333;
    margin-bottom: 5px;
}
.rec_popup ul {
    flex-direction: column;
    list-style: inside;
    padding-left: 10px;
}
.rec_popup li {
    font-family: 'Roboto';
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    /* or 162% */
    color: #333333;
}
.fancybox-content{
    padding: 0 !important;
    position: relative;
    background: none;
    overflow: unset;
    margin-top: -40px;
}
.apply_btn a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #FFFFFF;
    border: 1px solid var(--primary-color);
    display: inline;
    padding: 8px 20px;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: max-content;
}

.apply_btn:hover a{
    background: var(--primary-color);
    color: white
}
#apply_form{
    width: 750px;
    background: #FFF;border: 1px solid black;
    display: none;
}
#apply_form .cus_form{
    padding: 30px 60px 0px;
}
#apply_form .cus_form.file {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #666666;
}
#apply_form .cus_form label, .file {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    /* or 162% */
    color: #333333;
    margin-bottom: 8px;
    display: inline-block;
}
#apply_form .cus_form .file{
    font-size: 13px;
}
#apply_form .cus_form input::placeholder,
#apply_form .cus_form textarea::placeholder {
    opacity: 0.8;
}
#apply_form .cus_form input:focus,
#apply_form .cus_form textarea:focus{
    outline: none;
    border: 1px solid rgba(227, 25, 55, 0.5);
}
#apply_form .cus_form input,
#apply_form .cus_form textarea{
    height: 45px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    /* or 186% */
    display: flex;
    align-items: center;
    color: #666666;
    opacity: 1;
    background: white;
    border: 1px solid rgba(73, 73, 73, 0.2);
}
#apply_form .cus_form textarea {
    height: 90px;
}
#apply_form .cus_form .box_form >*{
    margin-bottom: 16px;
}
#apply_form .cus_form .file  input{
    margin-top: 10px;
    border: none;
}
#apply_form .nav_bottom:before,
#apply_form .nav_bottom:after{
    display: none;
}
#apply_form .nav_bottom{
    display: flex;
    justify-content: space-between;
}
.pagination ul{
    justify-content: center;
    position: relative;
    z-index: 3;
}
.pagination ul li a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(102, 102, 102, 0.5) !important;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 37px;
    text-align: center !important;
    vertical-align: center;
    color: #666666;
    transition: 0.3s ease-in-out;
    margin: 5px;
}
.pagination ul li:hover path{
    stroke: var(--primary-color);
}
.pagination ul li:hover a,
.pagination ul li.active a{
    border: 1px solid rgba(227, 25, 55, 0.5);
    font-weight: 700;
    color: var(--primary-color);
}
table .pagination ul a.active,
table .pagination ul a:hover{
    border: 1px solid rgba(227, 25, 55, 0.5) !important;
    font-weight: 700;
    color: var(--primary-color);
}
.pagination .thenativePagination .thenativePaginationPrev a,
.pagination .thenativePagination .thenativePaginationNext a{
    width: 100px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;

    color: #333333;
}
.recruit{
    padding-bottom: 50px;
}
.recruit:before{
    content: '';
    position: absolute;
    width: 646px;
    height: 875px;
    top: -124px;
    left: 0;
    background-image: url('../images/bg_recruit_2.png');
background-repeat: no-repeat;
background-size: cover;
}
.recruit:after{
    content: '';
    position: absolute;
    width: 710px;
    height: 550px;
    bottom: -140px;
    right: 0;
    background-image: url('../images/bg_recruit.png');
background-repeat: no-repeat;
background-size: cover;
}
.project_wrap{
    padding: 39px 0 49px;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
}
section.section.projects{
    padding-bottom: 60px;
}
.project_wrap .item{
    position: relative;
    background: #F5F5F5;
}
.project_wrap .item .proj_info{
    padding: 11px 26px 39px;
}
.project_wrap .item .proj_name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    /*line-height: 48px;*/
    color: #333333;
    margin: 11px 0 6px;
    transition: 0.3s ease-in-out;
}
.project_wrap .item .name_gr{
    border-bottom: 1px solid #E2E2E2;
    padding-bottom: 16px;
    position: relative;
    margin-bottom: 16px;
}
.project_wrap .item .name_gr:before{
    content: '';
    position: absolute;
    width: 21%;
    height: 3px;
    left: 0;
    bottom: -2px;
    background:   var(--primary-color);
    transition: 0.5s ease-in-out;
}
.project_wrap .item .proj_addr{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    /*line-height: 28px;*/
    /* or 200% */
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.project_wrap .item .proj_info ul{
    flex-direction: column;
    margin-bottom: 20px;
}
.project_wrap .item .proj_info ul li{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #333333;
}
.project_wrap .item .proj_info ul li span{
    font-weight: 600;
}
.project_wrap .item .proj_info > a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    transition: 0.3s ease-in-out;
}
.project_wrap .item:hover .proj_name{
    color: var(--primary-color);
}
.project_wrap .item:hover .name_gr:before{
    width: 100%;
}
.project_wrap .item:hover .proj_info > a{
    background: var(--primary-color);
    color: white;
}
.project_wrap .item .featured_img{
    overflow: hidden;
    height: 250px;
}
.project_wrap .item img{
    transition: 0.5s ease-in-out;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
section.projects .project_wrap .item:hover img{
    transform: scale(1.2);
}
section.projects_2 .project_wrap .item:hover img{
    transform: unset;
}
.single_proj_1 .grid-container{
    margin-bottom: 20px;
}
.single_proj_1 .section_heading .sec_cont{
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}
.single_proj_1 .sec_title{
    padding-right: 30px;
}
.single_proj_1 .grid-50:first-child{
    padding-right: 43px;
}
.single_proj_1 .wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.single_proj_1 .wrap .item{
    border-bottom: 2px solid rgba(182, 20, 44, 0.3);
    margin-right: 40px;
}
.single_proj_1 .wrap .item:nth-child(1),
.single_proj_1 .wrap .item:nth-child(2){
    margin-bottom: 60px;
    padding-bottom: 20px;
}
.single_proj_1 .wrap .item:nth-child(3),
.single_proj_1 .wrap .item:nth-child(4){
    padding-bottom: 20px;
}
.single_proj_1 .wrap .item .item_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 10px;
}
.single_proj_1 .wrap .item .item_cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: 0.3s ease-in-out;
}
.single_proj_1 .wrap .item a:hover .item_cont{
    color:#E31937
}
.single_proj_1 .section_heading{
    margin: 0;
}
.single_proj_2 .content_wrap{
    margin-bottom: 40px;
}
.single_proj_2 .section_heading{
    margin-bottom: 0;
}
.single_proj_2 .content_wrap h1{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #333333;
    margin-bottom: 5px;
}
.single_proj_2 .content_wrap h2{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: #333333;
    margin-bottom: 5px;
}
.single_proj_2 .content_wrap h5{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    /* or 175% */
    color: #333333;
    margin-bottom: 25px;
}
.single_proj_2{
    padding: 90px 0 104px;
    position: relative;
}
.single_proj_2 .grid-container{
    position: relative;
}
.single_proj_2:before{
    content: '';
    position: absolute;
    right: 0;
    top: -200px;
    background-image: url('../images/bg_pj_detail.png');
background-repeat: no-repeat;
background-size: cover;
    width: 950px;
    height: 620px;
}
.single_proj_2 .content_wrap img{
    margin-bottom: 25px;
}
.single_proj_2 .content_wrap ul{
    flex-direction: column;
    list-style: inside;
    margin: 22px 0;
}
.single_proj{
    padding: 20px 0 40px 0;
}
/*.project_gallery{*/
/*    padding: 0 calc(calc(100vw - 1200px)/2);*/
/*    margin: 63px 0 0;*/
/*}*/
.project_gallery .img_wrap{
    position: relative;
}
.project_gallery img{
    height: 100%;
    object-fit: cover;
}
.project_gallery .slider-slide{
    height: 800px;
    position: relative;
    padding: 0 16px
}
.project_gallery .img_wrap:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease-in-out;
}
.project_gallery .slider-slide.slick-current .img_wrap:before {
    background: inherit;
    transition: all 0.5s ease-in-out;
}
.condition_policy{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
}
.condition_policy .item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.condition_policy .item .icon{
    width: 20%;
}
.condition_policy .item .cont{
    width: 80%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #636363;
    padding-left: 18px;
}
.policy_1{
    padding-top: 45px;
}
.policy_1:after{
    position: absolute;
    content: '';
    width: 600px;
    height: 242px;
    background-image: url(../images/bg_5.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: 90px;
}
.policy_1 .grid-container{
    position: relative;
    z-index: 4;
}
.policy_1:before{
    width: 190px;
    height: 410px;
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url(../images/bg_17.png);
    background-repeat: no-repeat;
    background-size: cover;
    visibility: unset;
}
.policy_1 .section_heading{
    margin-bottom: 38px;
}
.policy_1 .section_heading .sec_title{
    margin-bottom: 44px;
    position: relative;
}
.policy_1 .section_heading .sec_title{
    font-weight: 400;
}
.policy_1 .section_heading .sec_title strong{
    font-weight: 800;
}
.policy_1 .section_heading .sec_title:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -22px;
    width: 25%;
    height: 4px;
    background:   var(--primary-color);
}
.policy_1 .section_heading > .sec_cont *{
    opacity: 1;
}
.policy_1 .img_wrap{
    margin-top: -50px;
}
.policy_2{
    padding: 80px 0 0 0;
}
.policy_2 .policy_wrap{
    display: grid;
    grid-column-gap: 9px;
    grid-template-columns: 25% 25% 25% 25%;
}
.policy_2 .policy_wrap .item img{
    width: 100%;
    object-fit: cover;
}
.policy_2 .policy_wrap .item{
    position: relative;
    overflow: hidden;
}
.policy_2 .policy_wrap .item:after{
    width: 100%;
    background: #7B7B7B;
    mix-blend-mode: multiply;
    bottom: 0;
    left: 0;
    content: '';
    position: absolute;
    height: 0;
    transition: 0.7s ease-in-out;
}
.policy_2 .policy_wrap .item:before{
    width: 100%;
    background: #FFFFFF;
    opacity: 0.4;
    bottom: 0;
    left: 0;
    content: '';
    position: absolute;
    height: 0px;
    transition: 0.7s ease-in-out;
}
.policy_2 .policy_wrap .item .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;
    margin-bottom: 42px;
    position: relative;
}
.policy_2 .policy_wrap .item .title p{
    margin: 0;
}
.policy_2 .policy_wrap .item .title:before{
    position: absolute;
    left: 0;
    bottom: -18px;
    background: #FFF;
    height: 3px;
    content: '';
    width: 0;
    transition: 0.3s ease-in-out;
    transition-delay: 0.3s;
}
.policy_2 .policy_wrap .item .cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
}
.policy_2 .policy_wrap .item .cont_wrap{
    position: absolute;
    top: 410px;
    padding: 0 52px 0 56px;
    z-index: 2;
    transition: 0.5s ease-in-out;
}
.policy_2 .policy_wrap .item:hover .cont_wrap{
    top: 20px;
}
.policy_2 .policy_wrap .item:hover:before,
.policy_2 .policy_wrap .item:hover:after{
    height: 100%;
}
.policy_2 .policy_wrap .item:hover .cont_wrap .title:before{
    width: 40%;
}
.policy_3{
    padding: 62px 0 86px;
    background-image: url('../images/bg_agency.png');
    background-repeat: no-repeat;
    background-size: cover;
}
.policy_3 .agency_list{
    padding: 37px 26px 24px;
    background: #FFF;
}
.policy_3 .list_wrap *{
    border: none;
    text-align: left;
}
.policy_3 .list_wrap table tr:nth-child(even){
    background: #F6F6F6;
}
.policy_3 .list_wrap table th:first-child{
    width: 50%;
    padding-left: 58px;
}
.policy_3 .list_wrap table th:last-child{
    width: 25%;
    padding-left: 58px;
}
.policy_3 .list_wrap table{
    margin: 0;
}
.policy_3 .list_wrap table td{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
}
.policy_3 .list_wrap table td:last-child{
    padding-left: 58px;
}
.policy_3 .list_wrap table td:first-child{
    font-weight: 600;
    padding-left: 58px;
}
.policy_3 .list_wrap table th{
    height: 60px;font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #F6F6F6;
}
.policy_3 .list_wrap table tbody{
    transition: 0.5s ease-in-out;
}
.policy_3 .list_wrap table tbody tr{
    height: 95px;
}
.policy_3 .filter_wrap{
    width: 100%;
    margin-bottom: 27px;
    display: flex;
}
.policy_3 .filter_wrap select{
    width: 82%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    padding-left: 34px;
    color: #807F84;
    background: #FFF;
}
.policy_3 .filter_wrap select:focus{
    outline: none;
}
.policy_3 .filter_wrap #submit{
    width: 18%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    background:   var(--primary-color);
    display: flex;
    align-items: center;
    padding: 17px 30px;
    cursor: pointer;
}
.policy_3 .filter_wrap #submit:hover{
    background:  var(--primary-color);
}
.policy_3 .filter_wrap #submit svg{
    margin-right: 17px;
}
.sticky_policy{
    background: #F2F2F2;
    position: fixed;
    top: 115px;
    left: 0;
    z-index: 99;
    width: 100%;
}
.sticky_policy ul{
    justify-content: center;
}
.sticky_policy ul li{
    margin: 0 33px;
    border-bottom: 3px solid #F2F2F2;
    position: relative;
    transition: 0.3s ease-in-out;
}
.sticky_policy ul li:before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 3px;
    background:  var(--primary-color);
    transition: 0.3s ease-in-out;
}
.sticky_policy ul li:hover:before,
.sticky_policy ul li.active:before{
    width: 100%;
    opacity: 1;
}
.sticky_policy ul li:hover a,
.sticky_policy ul li.active a{
    color:  var(--primary-color);
}
.sticky_policy ul li a{
    display: block;
    padding: 12px 0;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    color: #494949;
}
.prod_2{
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-blend-mode: luminosity;
    position: relative;
    background-size: cover;
}
.prod_2:before{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    content: '';
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,0) 100%);
}
.prod_2 .section_heading .sec_title{
    line-height: 55px;
    margin-bottom: 48px;
    position: relative;
    width: 100%;
}
.prod_2 .section_heading .sec_title:before{
    content: '';
    background:   var(--primary-color);
    width: 10%;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    position: absolute;
}
.prod_2 .section_heading{
    display: flex;
    flex-wrap: wrap;
}
.prod_2 .sec_des .sec_cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 50px;
}
.prod_2 .sec_des .sec_cont p{
    margin-bottom: 15px;
}
.prod_2 .sec_des .sec_cont ul{
    display: block;
    list-style: disc;
    margin-left: 15px
}
.prod_2 .sec_des .sec_link svg{
    margin-left: 20px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.prod_2 .sec_des .sec_link a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    text-decoration-line: underline;
    color:   var(--primary-color);
    display: flex;
    align-items: center;
}
.prod_2 .sec_des .sec_link:hover svg{
    transform: translateX(8px);
}
.prod_2 .sec_des .sec_link a:hover{
    text-decoration-line: none;
}
.prod_2 .sec_des{
    width: 50%;
    padding-right: 65px;
}
.prod_2 .sec_video{
    width: 50%;
    margin-top: -65px;
    overflow: hidden;
    padding-left: 35px;
}
.prod_2 .sec_video iframe{
    width: 100%;
    display: block;
    height: 360px;
}
.tax_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 39px;
    grid-row-gap: 36px;
}
.tax_container .item{
    position: relative;
    max-height: 367px;
}
.tax_container .item .img_wrap{
    height: 100%;
}
.tax_container .item .tax_name_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    padding: 4px 13px 2px 24px;
    align-items: center;
}
.tax_container .tax_name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 45px;
    color: #FFFFFF;
}
.tax_container .item img{
    transition: 0.5s ease-in-out;
}
.tax_container .item:hover img{
    transform: scale(1.3);
}
.tax_container .item svg{
    transform: rotate(0);
    transition: 0.5s ease-in-out;
}
.tax_container .item:hover svg{
    transform: rotate(450deg);
}
.prod_4 .section_heading{
    padding: 0 150px;
}
.prod_4 .section_heading .sec_title{
    margin-bottom: 56px;
    position: relative;
}
.prod_4 .section_heading .sec_title:before{
    content: '';
    position: absolute;
    width: 10%;
    bottom: -28px;
    left: 50%;
    height: 4px;
    transform: translateX(-50%);
    background: var(--primary-color);
}
.products_list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 56px;
    grid-row-gap: 46px;
}
.products_list .item .discount_badge{
    position: absolute;
    top: 10px;
    left: 10px;
    padding:0 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    color: #FFF;
    background: #F35800;
}
.products_list .item .img_wrap{
    max-height: 250px;
    position: relative;
}
.products_list .item .img_wrap img{
    /*max-height: 250px;*/
    height: auto;
    width: auto;
    margin: 0 auto;
    /*aspect-ratio: 544/394;*/
}
.products_list .item .prod_id{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 20px;
    color: #333333;
    position: relative;
    margin-bottom: 20px;
}
.products_list .item .regular_price{
    font-size: 30px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
    color: var(--primary-color)
}
.products_list .item .discount_price{
    font-size: 16px;
    line-height: 20px;
    color: #494949;
    text-decoration: line-through;
}

.products_list .item .prod_price{
    margin-bottom: 20px;
}
.products_list .item .prod_name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #494949;
    margin: 28px 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.products_list .item .prod_link a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    color: #FFFFFF;
    padding: 9px 20px;
    background:  var(--primary-color);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.products_list .item .prod_link a:hover{
    background: #fff;
    color:  var(--primary-color);
    border: 1px solid  var(--primary-color);
}
.products_list .item .prod_color{
    display: flex;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 20px;
}
.products_list .item .prod_link{
    margin-top: 16px;
}
.products_list .item .color{
    margin: 4.5px;
    border-radius: 50%;
    /*overflow: hidden;*/
    position: relative;
}
.prod_colors .color_wrap span,
.products_list .item .color span{
    position: absolute;left: 50%;
    transform: translateX(-50%);
    top: -33px;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    display: none;
    background: rgba(51, 51, 51, 0.7);
    padding: 3px 7px;
    color: #FFF;
}
.prod_colors .color_wrap span:before,
.products_list .item .color span:before{
    width: 8px;
    height: 6px;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    left: 50%;
    bottom: -6px;
    position: absolute;
    content: '';
    background: rgba(51, 51, 51, 0.7);
}
.products_list .item .color >a{
    display: block;
    overflow: hidden;
}
.products_list .item .color.active >a img {
    border: 2px solid rgba(227, 25, 55, 1);
    border-radius: 50%;
}
.products_list .item .color >a {
    border-radius: 50%;
}
.prod_colors .color_wrap:hover span,
.products_list .item .color:hover span{
    display: block;
}
.products_list .item .color.active a{
    /*border: 2px solid rgba(227, 25, 55, 1);*/
}
.products_list .item{
    /*transition: 0.3s ease-in-out;*/
    position: relative;
    /*display: none;*/
}
/*.products_list .item:before{*/
/*    content:'';*/
/*    position:absolute;*/
/*    width:0;*/
/*    height:0;*/
/*    left:50%;*/
/*    top:50%;*/
/*    transform: translate(-50%, -50%) scale(1);*/
/*    border:.3px solid rgb(153, 153, 153);*/
/*    opacity:1;*/
/*}*/
/*.products_list .item:before{*/
/*    transition: 0.3s ease-in-out;*/
/*}*/
.products_list .item:after{
    transition: 0.5s ease-in-out;
}
/*.products_list .item:hover:before{*/
/*    transform: translate(-50%, -50%) scale(1.4);*/
/*    !*opacity:0;*!*/
/*    width: 80%;*/
/*    height: 80%;*/
/*    pointer-events: none;*/
/*}*/
.load_more,
.view_more_supports,
.view_more_question,
.view_more_products2,
.load_more_search,
.view_more_products{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    padding: 6px 0;
    margin: 48px auto 0;
    width: 20%;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.load_more_search span,
.view_more_products2 span,
.view_more_products span{
    color: var(--primary-color);
    transition: 0.3s ease-in-out;
}
.load_more_search:hover span,
.view_more_products2:hover span,
.view_more_products:hover span{
    color: #FFF
}
.load_more_search,
.view_more_products2,
.view_more_products{
    width: auto;
    padding: 8px 30px;
    display: inline-flex;
}
.load_more:hover,
.view_more_supports:hover,
.view_more_question:hover ,
.view_more_products2:hover,
.load_more_search:hover,
.view_more_products:hover{
    color: white;
    background: var(--primary-color);

}
.load_more_search svg,
.view_more_products2 svg,
.view_more_products svg{
    margin-left: 10px;
    transform: rotate(180deg);
}
.load_more_search path,
.view_more_products2 path,
.view_more_products path{
    transition: 0.3s ease-in-out;
}
.load_more_search:hover path,
.view_more_products2:hover path,
.view_more_products:hover path{
    stroke: #FFF
}
.prod_3{
    padding: 94px 0 103px;
    background: #F5F5F5;
}
.prod_3 .grid_4{
    grid-gap: 24px
}

.prod_4{
    padding: 60px 0 78px;
}
.prod_5{
    padding: 100px 0 61px 0;
    background: #F2F2F2;
}
.prod_5 .section_heading{
    position: relative;
    margin-bottom: 80px;
}
.prod_5 .section_heading:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 20%;
    height: 4px;
    background: var(--primary-color);
}
.prod_5 .item_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 34px;
}
.prod_5 ul{
    flex-direction: column;
    padding-right: 75px;
}
.prod_5 ul li{
    padding-bottom: 20px;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.prod_5 ul li:not(:last-child)>span:first-child:before{
    width: 2px;
    height: 50px;
    left: 50%;
    bottom: -57px;
    content: '';
    background-image: linear-gradient(182deg, var(--primary-color) 50%, transparent 50%, transparent 100%);
    background-size: 8px 5px;
    position: absolute;
}
.prod_5 ul li>span:last-child{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    color: #333333;
}
.prod_5 ul li>span:first-child{
    margin-right: 26px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 48px;
    display: inline-flex;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    min-width: 45px;
    min-height: 45px;
    max-height: 45px;
    max-width: 45px;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}
.prod_5 .view_more_btn a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);

    border: 1px solid var(--primary-color);
    padding: 6px 30px;
    display: inline-flex;
    transition: 0.3s ease-in-out;
}
.prod_5 .view_more_btn a:hover{
    background: var(--primary-color);
    color: white
}
.prod_5:before{
    right: 0;
    top: 0;
    position: absolute;
    content: '';
    height: 25%;
    width: 35%;
    background-image: url("../images/bg_5.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.prod_5 .img{
    position: relative;
}
.prod_5 .img img{
    position: relative;
    z-index: 3;
}
.prod_5 .img:before{
    right: 10px;
    bottom: -60px;
    position: absolute;
    content: '';
    height: 254px;
    width: 132px;
    background-image: url("../images/bg_9.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.prod_7 .wrap{
    display: flex;
    flex-wrap: wrap;
}
.prod_7 .wrap .item{
    width: 50%;
    position: relative;
    background: #F2F2F2;
    background-image: url('../images/bg_style_1.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.prod_7 .wrap .item span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    line-height: 38px;
    color: #FFFFFF;
    position: relative;
}
.prod_7 .wrap .item a.btn{
    position: relative;
}
.prod_7 .sec_cont{
    margin-bottom: 20px;
}
/*.prod_7 .wrap .item a{*/
/*    font-family: 'Roboto';*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    font-size: 16px;*/
/*    text-transform: uppercase;*/
/*    color: #FFFFFF;*/
/*    border: 1px solid #FFFFFF;*/
/*    border-radius: 100px;*/
/*    padding: 6px 30px;*/
/*    transition: 0.3s ease-in-out;*/
/*}*/
/*.prod_7 .wrap .item a:hover{*/
/*    background: white;*/
/*    color: var(--primary-color);*/
/*}*/
.prod_7 .wrap .item h4{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #FFFFFF;
    position: relative;
}
.prod_7 .wrap .item .cont_wrap{
    position: absolute;
    left: 0;
    top: 40%;
    padding: 34px 40px 35px 51px;
}
.prod_7 .wrap .item .cont_wrap:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
.prod_1 .cont{
    position: absolute;
    left: calc(calc(100vw - 1200px)/2);
    top: calc(50% - 65px);
    padding: 32px 41px 32px 50px;
}
.prod_1 .cont .content{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
    opacity: 0.8;
    position: relative;
}
.prod_1 .cont .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 42px;
    position: relative;
    color: #FFFFFF;
    margin-bottom: 0;
}
.prod_1 .cont:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
.prod_11{
    background: #F2F2F2;
    background-image: url('../images/bg_footer_2.png');
}
.prod_11 .cont_wrap{
    width: 40%;
    position: relative;
}
.prod_11 .swiper-slide{
    padding: 81px 0 74px;
}
.prod_11 .cont_wrap:before{
    position: absolute;
    background: transparent;
    content: '';
    border: 2px solid   var(--primary-color);
    width: 121%;
    height: 99%;
    left: 0;
    bottom: 55px;
    z-index: -1;
    pointer-events: none;
}
.prod_11 .cont_wrap .inside{
    padding: 0 30px 0 90px;
}
.prod_11 .video_wrap{
    width: 60%;
}
.prod_11 .video_wrap iframe{
    width: 100%;
    height: 400px;
}
.prod_11 .link a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    padding: 8px 30px;
}
.prod_11 .link a:hover{
    background:   var(--primary-color);
    color: white;
}
.prod_11 .des{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #333333;
    margin-bottom: 20px;
}
.prod_11 .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 48px;
    color: var(--primary-color);
    margin-bottom: 48px;
    position: relative;
}
.prod_11 .title:before{
    position: absolute;
    left: 0;
    bottom: -24px;
    content: '';
    height: 4px;
    width: 40%;
    background:   var(--primary-color);
    z-index: 2;
}
.prod_12 .cont {
    position: absolute;
    width: 50%;
    min-height: 75%;
    bottom: 0;
    right: 0;
    padding: 70px 285px 78px 82px;
}
.prod_12 .cont .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 45px;
    line-height: 48px;
    color: #FFFFFF;
    position: relative;
    padding-right: 120px;
    position: relative;
    margin-bottom: 57px;
    z-index: 3;
}
.prod_12 .cont .title:before{
    width: 20%;
    height: 4px;
    background: #FFF;
    position: absolute;
    content: '';
    left: 0;
    bottom: -28px;
    z-index: 3;
}
.prod_12 .cont ul{
    position: relative;
    flex-direction: column;
    z-index: 3;
}
.prod_12 .cont ul li{
    display: flex;
    position: relative;
    overflow: hidden;
    margin-bottom: 13px;
    padding-bottom: 10px;
}
.prod_12 .cont ul li span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    color: #FFFFFF;
    display: inline-flex;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #FFF;
    margin-right: 27px;
    align-items: center;
    justify-content: center;
}
.prod_12 .cont ul li p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
    position: relative;
    margin: 0;
}
.prod_12 .cont ul li:not(:last-child):before{
    width: 0;
    height: 100%;
    position: absolute;
    top: 63px;
    left: 25px;
    border: 1px dashed #FFF;
    content: '';
}
.prod_12 .cont a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 8px 30px;
    color: #FFFFFF;
    border: 1px solid #FFF;
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-top: 13px;
}
.prod_12 .cont a:hover{
    background: #FFF;
    color: var(--primary-color);
}
.prod_12 .cont:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
.prod_swiper_2 .wrap{
    display: flex;
}
.prod_swiper_2 .swiper-pagination{
    position: absolute;
    right: 0;
    left: unset;
    top: 60px;
    display: flex;
    justify-content: flex-end;
    width: auto;
}
.prod_swiper_2 .swiper-pagination .swiper-pagination-bullet{
    background: #404040;
}
.prod_swiper_2 .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}
section.news .cat_name{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid   var(--primary-color);
    margin-bottom: 37px;
}
section.news .cat_name .view_more a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    text-align: right;
    color: #666666;
}
section.news .cat_name .view_more a:hover{
    color:   var(--primary-color);
}
section.news .cat_name .name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    background:   var(--primary-color);
    padding: 13px 20px;
    margin-bottom: 0;
}
section.news .news_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-bottom: 36px;
}
section.news .news_item:first-child img{
    height: 254px;
    transition: 0.5s ease-in-out;
}
section.news .news_item .news_cont{
    position: relative;
    padding-right: 10px;
}
section.news .news_item:first-child .news_cont,
section.news_tax .news_item .news_cont{
    padding: 0 30px 15px 30px;
}
section.news_tax .load_post{
    display: inline-block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    padding: 8px 30px;
    margin-top: 45px;
    transition: 0.3s ease-in-out;
}
section.news_tax .load_post:hover{
    background:   var(--primary-color);
    color: #FFF;
}
section.news .news_item:first-child{
    grid-row-start: 1;
    grid-row-end: 4;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F5F5F5;
}
section.news .news_item:not(:first-child) img{
    /*height: 138px;*/
    transition: 0.5s ease-in-out;
}
section.news .news_item:not(:first-child){
    display: flex;
    position: relative;
    background: #F5F5F5;
    height: 100%;
}
section.news .news_item .des,
section.news_tax .news_item .des{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}
section.news .news_item .date,
section.news_tax .news_item .date{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #666666;
}
section.news .news_item .title,
section.news_tax .news_item .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #333333;
    margin: 24px 0 0px 0;
    padding-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: 0.5s ease-in-out;
    position: relative;
}
section.news_tax .news_item .title {
    -webkit-line-clamp: 2;
}
section.news .news_item svg,
section.news_tax .news_item svg {
    position: absolute;
    right: 20px;
    bottom: 5px;
}
section.news .news_item:not(:first-child) .img_wrap{
    margin-right: 20px;
}
section.news .news_item:not(:first-child) >div{
    width: 50%;
}
section.news .news_item:not(:first-child) .title{
    margin: 10px 0 0;
    font-size: 16px;
}
.news_item .des{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
/*section.news .news_item:not(:first-child):after,*/
/*section.news .news_item:not(:first-child):before{*/
/*    width: 0;*/
/*    height: 1px;*/
/*    background: #333333;*/
/*    opacity: 0.7;*/
/*    content: '';*/
/*    position: absolute;*/
/*    transition: 0.3s ease-in-out;*/
/*}*/
/*section.news .news_item:not(:first-child):before{*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/
/*section.news .news_item:not(:first-child):after{*/
/*    bottom: 0;*/
/*    right: 0;*/
/*}*/
/*section.news .news_item:not(:first-child) .news_cont:before{*/
/*    height: 0;*/
/*    width: 1px;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    content: '';*/
/*    background: #333333;*/
/*    transition: 0.3s ease-in-out;*/
/*}*/
/*section.news .news_item:not(:first-child):hover .news_cont:before{*/
/*    height: 100%;*/
/*    transition-delay: 0.3s;*/
/*}*/
/*section.news .news_item:not(:first-child):hover:after{*/
/*    transition-delay: 0.6s;*/
/*    width: 100%;*/
/*}*/
/*section.news .news_item:not(:first-child):hover:before{*/
/*    width: 100%;*/
/*}*/
section.news .news_item:hover .title{
    color:   var(--primary-color);
}
section.news .news_item:hover img{
    transform: scale(1.3);
}
section.news .news_item:hover .before-line:before{
    width: 100%;
}
.aside_tax.sticky{
    position: sticky;
    top: 120px;
}
.aside_tax .link_1{
    margin-bottom: 18px;
}
.aside_tax .link_1 .item{
    position: relative;
    margin-bottom: 12px;
}
.aside_tax .link_1 .item .cont_wrap{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding: 35px 40px 31px;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item .cont_wrap h4{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 26px;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 10px;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item .cont_wrap span{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item .cont_wrap span svg{
    margin-right: 8px;
}
.aside_tax .link_1 .item .cont_wrap > svg{
    position: absolute;
    right: 30px;
    bottom: 30px;
}
.aside_tax .link_1 .item .cont_wrap:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100% ;
    background-color: var(--primary-color);
    mix-blend-mode: multiply;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item .cont_wrap:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/bg_15.png');
    background-size: contain;
    opacity: 0.2;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item img {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.aside_tax .link_1 .item:hover img {
    transform: scale(1.3);
}
.aside_tax .tax_wrap .item{
    height: 74px;
    display: flex;
    background-color: #B7AEA9;
    background-image: url('../images/bg_16.jpg');
    margin-bottom: 15px;
    justify-content: space-between;
    position: relative;
}
.aside_tax .tax_wrap .item .tax_name{
    padding-left: 22px;
    width: 60%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 26px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
}
.aside_tax .tax_wrap .item .tax_img{
    width: 40%;
    height: 100%;
    overflow: hidden;
}
.aside_tax .tax_wrap .item .tax_img img{
    width: 100%;
    object-fit: cover;
}
.aside_tax .tax_wrap .item:hover .tax_name{
    color: var(--primary-color);
}
.aside_tax .tax_name{
    width: 60%;
}
.aside_tax .tax_img{
    width: 40%
}
section.news,
section.news_tax{
    overflow: unset;
    padding: 32px 0 119px;
    position: relative;
}
section.post_detail .grid-container{
    position: relative;
    z-index: 4;
}
section.post_detail:before,
section.news:before,
section.news_tax:before{
    position: absolute;
    content: '';
    left: 0;
    top: -108px;
    width: 495px;
    height: 600px;
    background-image: url('../images/bg_news.png');
background-repeat: no-repeat;
background-size: cover;
}
section.post_detail:after{
    content: '';
    position: absolute;
    width: 710px;
    height: 550px;
    bottom: -140px;
    right: 0;
    background-image: url(../images/bg_recruit.png);
background-repeat: no-repeat;
background-size: cover;
}

section.news:after{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 550px;
    height: 300px;
    background-image: url('../images/news_bg.png');
background-repeat: no-repeat;
background-size: cover;
}
section.news_tax .grid-container:before,
section.news_tax .grid-container:after,
section.news .grid-container:before,
section.news .grid-container:after{
    display: none;
}
section.news_tax .grid-container,
section.news .all_news_wrap{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 4;
}
.news_tax .news_wrap .news_item{
    position: relative;
    background: #F5F5F5;
}
.news_tax .news_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 25px;
    margin-bottom: 30px;
}
section.news_tax .news_item:hover .before-line:before{
    width: 100%;
}
section.news_tax .news_item:hover .title{
    color:   var(--primary-color);
}
section.news_tax .news_item .img_wrap{
    position: relative;
    z-index: 4;
}
.related_posts_swiper  .news_item .img_wrap img,
section.news_tax .news_item .img_wrap img{
    aspect-ratio: 364/228;
}
section.news_tax .news_item img{
    transition: 0.5s ease-in-out;
}
section.news_tax .news_item:hover img{
    transform: scale(1.2);
}
/*section.news_tax .news_item:after,*/
/*section.news_tax .news_item:before{*/
/*    width: 1px;*/
/*    height: 0;*/
/*    background: #333333;*/
/*    opacity: 0.7;*/
/*    content: '';*/
/*    position: absolute;*/
/*    transition: 0.5s ease-in-out;*/
/*    top: 0;*/
/*}*/
/*section.news_tax .news_item:before{*/
/*    left: 0;*/
/*}*/
/*section.news_tax .news_item:after{*/
/*    right: 0;*/
/*}*/
/*section.news_tax .news_item .news_cont:before{*/
/*    height: 1px;*/
/*    width: 0;*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    bottom: 0;*/
/*    transform: translate(-50%);*/
/*    content: '';*/
/*    background: #333333;*/
/*    transition: 0.5s ease-in-out;*/
/*}*/
/*section.news_tax .news_item:hover .news_cont:before{*/
/*    width: 100%;*/
/*}*/
section.news > .grid-70,
section.news_tax .grid-70{

}
/*section.news_tax .news_item:hover:before,*/
/*section.news_tax .news_item:hover:after{*/
/*    height: 100%;*/
/*}*/
.post_detail .day-view  > * {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-right: 40px;
    align-items: center;
}
.post_detail .day-view svg{
    margin-right: 15px;
}
.post_detail .latest_news {
    flex-direction: column;
}
.post_detail .latest_news a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(102, 102, 102, 0.15);
    padding: 14px 0;
}
.post_detail .latest_news a>span{

    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.post_detail .latest_news a>span>span{
    font-weight: 400;

}
.post_detail .latest_news li:first-child a{
    border-top: 1px solid rgba(102, 102, 102, 0.15);
}
.post_detail .latest_news a:hover{
    color: var(--primary-color);
}
.post_detail .latest_news a:hover path{
    stroke: var(--primary-color);
}
.post_detail{
    padding: 30px 0 80px;
}
.post_detail .title_news {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 48px;
    color: var(--primary-color);
}
.post_detail .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(102, 102, 102, 0.15);
    border-bottom: 1px solid rgba(102, 102, 102, 0.15);
    margin-bottom: 35px;
    padding: 5px 0;
}
.post_detail p {
    margin-right: 15px;
}
.post_detail .day-view p.text {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    /* or 171% */
    margin: 0;

    color: #666666;
}
.post_detail .mota.wrap_content p{
    margin-right: 0;
}
.post_detail .mota.wrap_content p:has(img){
    margin-bottom: 0;
}
.post_detail .nav>* {
    display: flex;
    align-items: center;
}
.post_detail .share ul {
    display: flex;
    align-items: center;
    margin-left: 20px !important;
}
.single_post_tax{
    margin-bottom: 32px;
}
.post_detail .share ul a{

    display: flex;
    align-items: center;
}
.post_detail .share ul>* {
    margin-left: 15px;
}
.post_detail .share li:hover path{
    stroke: var(--primary-color);
}
.post_detail .sub_title_news{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #333333;
    margin: 0;
    margin-bottom: 15px;
}
.post_detail .excerpt{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}
.post_detail .wrap_content{
    margin-bottom: 30px;
}
.post_detail .wrap_content h1{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    color: #000000;
    margin-top: 30px;
}
.post_detail .wrap_content ul li,
.post_detail .wrap_content p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #333333;
}
.post_detail .wrap_content ul{
    display: block;
    list-style: disc;
    padding-left: 30px;
}
.post_detail .wrap_content ul ul{
    list-style: circle;
    margin-top: 15px;
}
.post_detail .tags ul{
    display: inline-flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.post_detail .tags ul li a{
    font-family: 'Roboto';
    padding: 6px 20px;
    opacity: 0.8;
    font-weight: 600;
    margin: 0 10px;
    font-size: 14px;
    display: block;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: 0.3s ease-in-out;
    margin-bottom: 10px;
}
.post_detail .tags ul li a:hover{
    background: var(--primary-color);
    color: #FFF;
}
.post_detail .tags span{
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 18px;
    color: #333333;
    opacity: 0.9;
}
.post_detail .text_up{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    text-transform: uppercase;
    color: #FFFFFF;
    background:   var(--primary-color);
    padding: 10px 52px 10px 36px;
}
.post_detail .single_post_tax ul{
    flex-direction: column;
    margin-bottom: 37px;
}
.post_detail .single_post_tax ul li{
    background: #F5F5F5;
    position: relative;
}
.post_detail .single_post_tax ul li a {
    border-bottom: 0.5px solid rgba(102, 102, 102, 0.15);
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px;
    color: #333333;
    margin: 0 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*.post_detail .single_post_tax ul li:before,*/
.post_detail .single_post_tax ul li:after{
    position: absolute;
    content: '';
    background:   var(--primary-color);
    height: 2px;
    width: 0;
    transition: 0.3s ease-in-out;
}
.post_detail .single_post_tax ul li:after{
    left: 0;
    bottom: 0;
}
/*.post_detail .single_post_tax ul li:before{*/
/*    right: 0;*/
/*    top: 0;*/
/*}*/
/*.post_detail .single_post_tax ul li:hover:before,*/
.post_detail .single_post_tax ul li:hover:after{
    width: 100%;
}
.post_detail .more_post .item{
    position: relative;
    margin-bottom: 12px;
}
.post_detail .more_post .cont_wrap{
    background: #F6F6F6;
    padding: 37px 55px 34px 37px;
    transition: 0.5s ease-in-out;
}
.post_detail .more_post .cont_wrap h3{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #484848;
    opacity: 0.9;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.post_detail .more_post .cont_wrap .name_cat{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    opacity: 0.9;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.post_detail .more_post .item:hover .before-line:before{
    width: 100%;
}

.post_detail .more_post .cont_wrap .date_line{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    color: #666666;
    opacity: 0.9;
}
.post_detail .more_post .item svg{
    position: absolute;
    right: 30px;
    bottom: 20px;
}
.post_detail .more_post .item img{
    transition: 0.5s ease-in-out;
}
.post_detail .more_post .item:hover img{
    transform: scale(1.3);
}
.post_detail .more_post .item:hover path{
    stroke: #666666;
}
.post_detail .more_post .item .img_wrap{
    aspect-ratio: 4/3;
}
.fb-comments{
    margin-top: 30px;
}
.projects{
    position: relative;
}
.projects .grid-container{
    position: relative;
    z-index: 4;
}
.projects:after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -20px;
    background-image: url(../images/bg_pj_detail.png);
background-repeat: no-repeat;
background-size: cover;
    width: 950px;
    height: 620px;
}
section.support .support_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 22px;
}
section.support .support_wrap .support_item{
    position: relative;
    display: none;
}
section.support .support_wrap .support_item img{
    transition: 0.5s ease-in-out;
}
section.support .support_wrap .support_item:hover img{
    transform: scale(1.3);
}
section.support{
    padding: 0 0 72px;
    position: relative;
}
section.single_support{
    padding: 54px 0 71px;
}
section.single_support:after {
    content: '';
    position: absolute;
    width: 710px;
    height: 550px;
    bottom: -140px;
    right: 0;
    background-image: url(../images/bg_recruit.png);
    background-repeat: no-repeat;
    background-size: cover;
}
section.single_support .section_heading{
    margin-bottom: 36px;
}
section.single_support .grid-container{
    position: relative;
}
section.single_support:before {
    content: '';
    position: absolute;
    width: 646px;
    height: 875px;
    top: -124px;
    left: 0;
    background-image: url(../images/bg_recruit_2.png);
background-repeat: no-repeat;
background-size: cover;
}
section.support .support_wrap .support_title{
    position: absolute;
    bottom: 37px;
    left: 37px;
    padding: 18px 24px;
}
section.support .support_wrap .support_title h4{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 35px;
    color: #FFFFFF;
    margin: 0;
    position: relative;
}
section.support .support_wrap svg{
    position: absolute;
    right: 20px;
    bottom: 30px;
}
section.support .support_wrap .support_title:before{
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    left: 0;
    top: 0;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
section.single_support .grid-container{
    position: relative;
    z-index: 4;
}
section.single_support .sp{
    margin-bottom: 12px;
    cursor: pointer;
    display: none;
}
section.single_support .sp:hover,
section.single_support .sp.active{
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
section.single_support .title_gr{
    display: flex;
    background: #F6F6F6;
    padding: 22px 30px 22px 28px;
    align-items: center;
}
section.single_support .title_gr h4{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: #333333;
    margin: 0;
    opacity: 0.8;
}
section.single_support .title_gr .count{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 30px;
    color:   var(--primary-color);
    margin-right: 20px;
    border-right: 1px solid rgba(73, 73, 73, 0.2);
    padding-right: 20px;
}
section.single_support .sp .content{
    background: white;
    padding: 22px 28px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    opacity: 0.8;
}
section.single_support .sp .content p{
    margin-bottom: 0;
}
section.support .section_heading .sec_cont *{
    font-size: 16px;
}
.single_proj_2 .project_wrap{
    padding-bottom: 0;
}
.projects_2 .project_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.projects_2 .project_wrap > div{
    width: calc(50% - 18px);
}
.projects_2 .project_wrap .proj_info{
    position: relative;
    padding: 11px 50px 40px;
}
.projects_2 .project_wrap .item{
    width: 100%;
    cursor: pointer;
    display: none;
    margin-bottom: 40px;
}
.projects_2 {
    padding-bottom: 109px;
}
.projects_2 .project_wrap{
    padding-bottom: 0;
    align-items: flex-start;
}
.projects_2 .project_wrap .name_gr svg{
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%) rotate(0);
    border: 1px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 10px;
    transition: 0.5s ease-in-out;
}
.projects_2 .project_wrap .item.active .proj_info svg{
    transform: translateY(-50%) rotate(-180deg);
    filter: grayscale(1);
}
.projects_2 .project_wrap .featured_img{
    /*width: 100%;*/
}
.projects_2 .project_wrap .featured_img img{
    width: 100%;
    height: 321px;
}
.projects_2 .project_wrap .item .proj_name{
    font-size: 28px;
    color: var(--primary-color);
}
.projects_2 .project_wrap .item strong{
    font-weight: 600;
}
.projects_2 .project_wrap .item .proj_addr,
.projects_2 .project_wrap .item .proj_cont li{
    font-size: 16px;
}
.projects_2 .project_wrap .item .proj_cont ul{
    padding-bottom: 20px;
    position: relative;
    border-bottom: 1px solid #CBCBCB;
}
.projects_2 .project_wrap .item .proj_cont ul:before{
    background: #CBCBCB;
    width: 100%;
    position: absolute;
    bottom: 0;
}
.projects_2 .project_wrap .item .proj_des{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.projects_2 .project_wrap .item .proj_des h2{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
    margin-bottom: 5px;
}
.projects_2 .item .name_gr{
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-right: 45px;
}
.projects_2 .item .name_gr:before{
    display: none;
}
.projects_2 .project_wrap .item .proj_cont{
    position: relative;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E2E2;
}
.projects_2 .project_wrap .item .proj_cont:before {
    content: '';
    position: absolute;
    width: 21%;
    height: 3px;
    left: 0;
    top: -2px;
    background:   var(--primary-color);
    transition: 0.5s ease-in-out;
}
.pd_swiper_1{
    margin-bottom: 21px;
}
.pd_swiper_1 .swiper-slide,
.pd_swiper_2 .swiper-slide{
    background: #F5F5F5;
}
.pd_swiper_1 img,
.pd_swiper_2 img{
    width: 100%;
    object-fit: contain;
}
.product_detail_1 .swiper-button-next,
.product_detail_1 .swiper-button-prev{
    color: #333333;
}
.product_detail_1 .swiper-button-next{
    right: 20px;
}
.product_detail_1 .swiper-button-prev{
    left: 20px;
}
.product_detail_1 .prod_id{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 48px;
    color: var(--primary-color);
    margin-bottom: 44px;
    position: relative;
}
.product_detail_1 .prod_id:before{
    content: '';
    position: absolute;
    width: 110px;
    height: 4px;
    bottom: -22px;
    left: 0;
    background:   var(--primary-color);
}
.product_detail_1 .prod_info{
    margin-bottom: 34px;
}
.product_detail_1 .prod_info .item{
    border-bottom:  1px solid #D0D0D0;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #333333;
    display: flex;
    padding: 20px 0
}
.product_detail_1 .prod_info .item span{
    display: inline-block;
    min-width: 150px;
}
.product_detail_1 .prod_info .item strong{
    font-weight: 600;
}
.product_detail_1 .prod_colors{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.product_detail_1 .prod_colors strong{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
    margin-right: 17px;
    width: max-content;
    flex: 0 0 auto;
}
.product_detail_1 .prod_colors .color_wrap{
    margin: 0 6px;
    border-radius: 50%;
    /*overflow: hidden;*/
    height: 48px;
    width: 48px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
}
.product_detail_1 .prod_colors .color_wrap .img{
    border-radius: 50%;
    overflow: hidden;
}
.product_detail_1 .prod_colors .color_wrap.active div{
    outline: 3px solid rgba(227, 25, 55, 1);
    outline-offset: -3px;
}
.product_detail_1 .prod_colors .color_wrap img{
    width: 100%;
}
.product_detail_1 .prod_url a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 8px 30px;
    border: 1px solid   var(--primary-color);
}
.product_detail_1 .prod_url a:hover{
    background:   var(--primary-color);
    color: #FFF;
}
.product_detail_1 .grid-70{
    padding-right: 60px;
}
.pd_swiper_2 .swiper-slide{
    cursor: pointer;
}
.pd_swiper_2 .swiper-slide:before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.pd_swiper_2 .swiper-slide-thumb-active:before{
    content: unset;
}

.product_detail_2{
    padding: 10px 0 112px 0;
    transition: all 1.5s ease-in-out;
    margin-top: 60px;
}
.product_detail_2 ul.tabs{
    border-bottom: 1px solid #CBD3DD;
    margin-bottom: 45px;
}
.product_detail_2 ul.tabs li{
    padding-bottom: 6px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 55px;
    text-transform: uppercase;
    color: #333333;
    opacity: 0.8;
    margin-right: 74px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.product_detail_2 ul.tabs li:before{
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    content: '';
    background: var(--primary-color);
    height: 3px;
    width: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.product_detail_2{
    background-image: url('../images/bg_prod_detail.jpg');
background-repeat: no-repeat;
background-size: cover;
    background-size: cover;
}
.product_detail_2 ul.tabs li:hover,
.product_detail_2 ul.tabs li.active{
    opacity: 1;
    color: var(--primary-color);
}
.product_detail_2 ul.tabs li:hover:before,
.product_detail_2 ul.tabs li.active:before{
    width: 100%;
    opacity: 1;
}
.product_detail_2 .prod_des img{
    width: 100%;
}
.product_detail_2 .prod_des p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #333333;

    opacity: 0.8;
}
.product_detail_2 .grid-container > div{
    display: none;
}
.product_detail_2 .grid-container > div.active{
    display: block;
    animation-name: fade_up;
    animation-duration: 1s;
}
.product_detail_2 .content ul{
    display: block;
    list-style: disc;
    margin-left: 20px;
}
.product_detail_2 .content h1{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 45px;
    line-height: 48px;
    color: #333333;
}
.product_detail_2 .content p{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #333333;
}
.prod_8{
    padding: 80px 0;
}
.prod_8 .section_heading{
    margin-bottom: 39px;
}
.prod_8 .wrap {
    display: grid;
    grid-template-columns: calc(60% - 22px) 40%;
    grid-template-rows: 1fr 1fr;
    grid-column-gap: 22px;
    grid-row-gap: 18px;
    max-height: 424px;
}
.prod_8 .wrap .item:first-child{
    grid-row-start: 1;
    grid-row-end: 3;
}
.prod_8 .wrap .item:first-child .red_line{
    border: none;
}
.prod_8 .wrap .item:first-child .red_line:before{
    display: none !important;
}
.prod_8 .wrap .item:hover .red_line:before{
    width: 100%;
}
.prod_8 .wrap .item{
    position: relative;
}
.prod_8 .wrap .item{
    display: flex;
}
.prod_8 .wrap .item:not(:first-child) .img_wrap{
    width: 45%;
}
.prod_8 .wrap .item:not(:first-child) .cont_wrap{
    width: 55%;
    background: #F5F5F5;
    padding: 36px 27px 20px 33px;
    display: flex;
    flex-direction: column;
}
.prod_8 .wrap .item:not(:first-child) .excerpt{
    margin-top: 7px;
}
.prod_8 .wrap .item:not(:first-child) .date{
    order: 3;
    margin-top: 15px;
}
.prod_8 .wrap .item .title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    position: relative;
}
.prod_8 .wrap .item .excerpt{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.prod_8 .wrap .item .date{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #666666;
    opacity: 0.8;
}
.prod_8 .wrap .item:first-child .cont_wrap{
    width: 60%;
    position: absolute;
    bottom: 30px;
    left: 0;
    padding: 40px;
}
.prod_8 .wrap .item:first-child .cont_wrap:before{
    background: var(--primary-color);
    mix-blend-mode: multiply;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.prod_8 .wrap .item:first-child .cont_wrap > div{
    margin-bottom: 10px;
}
.prod_8 .wrap .item:first-child .date{
    color: #FFFFFF;
}
.prod_8 .wrap .item:first-child .title{
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
}
.prod_8 .wrap .item:first-child .excerpt{
    color: #FFFFFF;
    opacity: 0.8;
    font-weight: 500;
}
.prod_8 .wrap .item img{
    transition: 0.5s ease-in-out;
}
.prod_8 .wrap .item:hover img{
    transform: scale(1.3);
}
.prod_9{
    background-image: url('../images/bg_prod_2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 71px 0 88px 0;
    background-size: cover;
}
.prod_9 .mySwiper2{
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.7);
}
.prod_9 .mySwiper2 .swiper-slide .prod,
.prod_9 .mySwiper2 .swiper-slide .name{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #333333;
}
.prod_9 .mySwiper2 .swiper-slide .prod{
    font-weight: 400;
}
.prod_9 .mySwiper2 .swiper-slide .cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 23px;
    color: #333333;

}
.prod_9 .mySwiper2 .swiper-slide .cont_wrap{
    text-align: center;
    padding: 89px 123px 55px;
}
.prod_9 .rate_slide{
    position: relative;
}
.rate_slide .swiper-button-next,
.rate_slide .swiper-button-prev{
    position: absolute;
    top: 67%;
    transform: translateY(-50%);
}
.rate_slide .swiper-button-next:after,
.rate_slide .swiper-button-prev:after{
    color: var(--primary-color);
}
.prod_9 .mySwiper{

    overflow: hidden;
    margin: 0 480px;
}
.rate_slide svg{
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    z-index: 5;
}
/*.swiper-slide-thumb-active{*/
/*    height: 100px;*/
/*    width: 100px !important;*/
/*}*/
/*.swiper-slide-thumb-active img{*/
/*    width: 100%;*/
/*    border-radius: 50%;*/
/*    border: 1px solid var(--primary-color);*/
/*}*/
.popup{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s ease-in-out;
}
.popup.active{
    opacity: 1;
    pointer-events: unset;
}
.popup .bg_close{
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.8;
    /*cursor: pointer;*/
}
.close_popup{
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 8;
    cursor: pointer;
    border-radius: 50%;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.close_popup:hover{
    background: #333333;
}
.close_popup,
.close_popup svg,
.close_popup path{
    transition: 0.3s ease-in-out;
}
.close_popup:hover svg{
    width: 15px;
    height: 15px;
}
.close_popup:hover path{
    stroke: #fff;
}
.inner_popup{
    height: auto;
    width: 860px;
    background: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 79px 79px 62px;
    background-image: url('../images/Popup_TC.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
.close_popup_btn{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.inner_popup .popup_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-size: 35px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}
.inner_popup .popup_content{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 20px;
}
.inner_popup .popup_content:before{
    content: '';
    background: #FFF;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 20%;
    height: 4px;
}
.inner_popup .link_popup{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    padding: 8px 30px;
    position: relative;
    display: inline-block;
    /*z-index: 8;*/
}
.inner_popup .link_popup:hover{
    background: #FFF;
    color:   var(--primary-color);
}
.inner_popup .cont_wrap{
    padding: 33px 65px;
    position: relative;
    width: 82%;
    margin: 0 auto;
    margin-top: -130px;
    text-align: center;
}
.inner_popup .cont_wrap:before{
    background:   var(--primary-color);
    mix-blend-mode: multiply;
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
form#searchform {
    width: 350px;
    height: 100%;
    display: flex;
    align-items: center;
}
input#s {
    height: 100%;
    flex: 8;
    background: #FFF;
    border: none;
}
input#s:focus{
    border: none;
    outline: none;
}
#search_submit {
    height: 80%;
    position: relative;
    flex: 1;
    background: var(--primary-color);
    padding: 0 5px;
}
form#searchform svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
input#searchsubmit{
    opacity: 0;
}
.main-navigation.sub-menu-right{
    width: 82%;
}
.nav-float-right #site-navigation{
    margin: 0;
}
.inside-header{
    justify-content: space-between;
}
.inside-header:after,
.inside-header:before{
    display: none;
}
.main-navigation .inside-navigation:before,
.main-navigation .inside-navigation:after{
    display: none;
}
.site-logo{
    margin-right: 64px;
}
.site-logo img{
    max-height: 70px;
    object-fit: contain;
}
.inside-header{
    padding: 0;
    flex-wrap: wrap;
}
div#primary-menu ul li:first-child{
}
div#primary-menu ul li{
    padding: 0;
}
div#primary-menu ul li a{

}
section.sub_primary_menu{
    background: #494949;
    overflow: unset;
}
div.sub_primary_menu ul > li{
    position: relative;
}
div.sub_primary_menu ul > li > a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}
div.sub_primary_menu ul > li:first-child{

    margin: 0;
}
div.sub_primary_menu ul > li:first-child > a{
    margin: 0;
}
div.sub_primary_menu ul > li{
    /*flex-grow: 1;*/
}
div.sub_primary_menu{
    width: 100%;
}
div.sub_primary_menu ul{
    width: 100%;
    justify-content: space-between;
}
div.sub_primary_menu ul > li > a{
    transition: 0.3s ease-in-out;
    position: relative;
    padding:  12px 20px;
    display: flex;
    height: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}
div.sub_primary_menu ul > li> a:hover path{
    fill: #FFF;
}
div.sub_primary_menu ul > li:hover > a{
    color: #FFF;
    background: #808080;
}
div.sub_primary_menu ul > li.current-menu-item path{
    fill: #FFF;
}
div.sub_primary_menu ul > li.current-menu-item > a{
    color: #FFF;
    background: #808080;
}
div.sub_primary_menu ul.sub-menu > li.current-menu-item > a{
    color: var(--primary-color);
    background: transparent;
}
div.sub_primary_menu ul > li.current-menu-item a:before{
    opacity: 1;
    width: 100%;
}
div.sub_primary_menu ul > li > a:hover:before{
    opacity: 1;
    width: 100%;
}
section.sub_primary_menu .grid-container:before,
section.sub_primary_menu .grid-container:after{
    display: none;
}
section.sub_primary_menu .grid-container{
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}
section.sub_primary_menu .menu_lang{
    display: flex;
    align-items: center;
}
section.sub_primary_menu .menu_lang span{
    display: inline-block;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    align-items: center;
    color: #FFFFFF;
    margin-left: 5px;
}
.inside-navigation li > a >span.menu-image-title{
    font-size: 16px;
    font-weight: 500;
    line-height: 21.09px;
    color: #494949;
    transition: 0.2s ease-in-out;
}
header.site-header div#primary-menu ul li .menu-image-title-below{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
header.site-header div#primary-menu ul li .menu-image-title-below img{
    max-height: 38px;
}
header.site-header.sticky div#primary-menu ul li .menu-image-title-below{
    padding-bottom: 5px;
}
.site-header .header-image {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.site-header.sticky .header-image{
    max-height: 50px;
}
header .inside-header {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
header.sticky .inside-header{
    padding: 6px 0;
}
div#primary-menu ul li.current-menu-item .hovered-image.menu-image-title-below{
    opacity: 1;
}
div#primary-menu ul li.current-menu-item .menu-image-title-below{
    color: var(--primary-color);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
div#primary-menu ul li:hover .menu-image-title-below{
    color: var(--primary-color);
}
.box_slider{
    position: relative;
}
header#masthead{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 9999;
}
.site.grid-container.container.hfeed {
    margin-top: 143px;
}
#ftwp-container.ftwp-fixed-to-post{
    z-index: 9999;
}
.site-footer span.item_title{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    text-transform: uppercase;
    color: #333;
    position: relative;
    margin-bottom: 16px;
    display: block;
    width: max-content;
    padding-bottom: 16px;
}
.site-footer span.item_title:before{
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    bottom: 0;
    background: #333;
    opacity: 0.3;
}
.footer_1_wrap{
    display: flex;
    justify-content: space-between;
}
.footer_1_wrap .item{
    width: 33.3333333333%;
    padding-right: 80px;
}
.footer_1_wrap .item p,
.footer_1_wrap .item a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFFFFF;
}
.footer_2_wrap .item ul li a,
.footer_1_wrap .item a{
    transition: 0.3s ease-in-out;
}
.footer_2_wrap .item ul li a:hover,
.footer_1_wrap .item a:hover{
    font-weight: 600;
    color: var(--primary-color);
}
.footer_1_wrap .item span{
    font-weight: 700;
}
.footer_1_wrap .item p{
    margin-bottom: 0;
}
.footer_1_wrap .item span.item_title{
    color: #FFF;
    text-transform: unset;
}
.footer_1_wrap .item p:nth-child(1){
    margin: 0 0 8px 0;
}
.footer_2_wrap .top{
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom:  1px solid rgba(126, 126, 126, 0.3);
}
.footer_2_wrap .top .item{
    width: 20%;
    flex: 0 0 20%;
    padding-right: 30px;
}
.footer_2_wrap .item ul{
    flex-direction: column;
}
.footer_2_wrap .item ul li a{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
}
.footer_2_wrap .fast_link ul li a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 35px;
    text-transform: uppercase;
    color: #494949;
}
.footer_2_wrap .bottom{
    display: flex;
    justify-content: space-between;
}
.footer_2_wrap .bottom .item{
    width: 30%;
}
.footer_2_wrap .bottom .item:last-child{
    width: 40%;
}
.footer_2_wrap ul.social_list{
    flex-direction: row;
    align-items: center;
    margin-bottom: 28px;
}
.site-footer .map_wrap{
    overflow: hidden;
}
.site-footer .map_wrap iframe{
    height: 380px;
}
.footer_1_wrap  span.item_title{
    font-size: 20px;
}
.footer_1_wrap  span.item_title:before{
    width: 80px;
}
.footer_2_wrap .item ul.social_list li a{
    overflow: unset;
}
ul.social_list li img{
    transition: 0.3s ease-in-out;
}
ul.social_list li:hover img{
    transform: scale(1.1);
}
.map_wrap img:hover{
    transform: scale(1.2);
}
#load_gallery_color{
    position: relative;
    min-height: 560px;
}
#load_gallery_color:before{
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    left: 50%;
    top: 50%;
    background-image: url('../images/Eclipse.gif');
background-repeat: no-repeat;
background-size: cover;
    background-size: cover;
    transform: translate(-50%, -50%);
    display: none;
}
#load_gallery_color.loading:before{
    display: block;
}
a.down_load_btn{
    width: 62px;
    background: rgba(0, 0, 0, 0.25);
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 30px;
    transition: 0.3s ease-in-out;
}
a.down_load_btn:hover{
    background: rgba(0, 0, 0, 0.5);
}
.product_detail_1{
    padding-top: 39px;
    padding-bottom: 10px;
}
.contact_fix_btn{
    position: fixed;
    right: 24px;
    bottom: 80px;
    z-index: 9999;
    display: block;
}
.contact_fix_btn > a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--primary-color);
    margin-top: 12px;
    padding: 10px;
}
.contact_fix_btn svg{
    width: 70px;
}
#ez-toc-container{
    width: 100%;
    background: #F6F6F6;
    border: none;
    border-radius: 0;
    padding: 31px;
}
.ez-toc-title-container{
    position: relative;
    padding-left: 45px;
}
span.ez-toc-title-toggle a{
    position: absolute;
    top: 50%;
    left: -15px;
    margin: 0;
    /* opacity: 0; */
    transform: translateY(-50%);
    height: 55px;
}
#ez-toc-container > nav{
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#ez-toc-container > nav ul li a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 10px;
    position: relative;
    transition: 0.3s ease-in-out;
}
#ez-toc-container > nav ul li a:after{
    height: 2px;
    width: 100%;
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    color: var(--primary-color);
}
#ez-toc-container > .ez-toc-title-container p.ez-toc-title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
}
#ez-toc-container a:visited{
    color: #333333;
}
#ez-toc-container a:hover{
    text-decoration: underline;
    color: var(--primary-color);
    /*font-weight: 600;*/
}
.arrow-unsorted-368013{
    display: none;
}
#ez-toc-container .ez-toc-toggle label{
    border: none;
}
#ez-toc-container .ez-toc-toggle label svg{
    color: black !important;
    height: 50px;
    width: 50px;
}
#tienichForm .grid-container{
    padding: 62px 50px 42px 100px;
    position: relative;
    z-index: 1;
}
#tienichForm img{
    margin-top: 54px;
}
#tienichForm{
    background: #FFF;
    display: none;
}
#tienichForm input:not([type='submit']),
#tienichForm select,
#tienichForm textarea{
    width: 100%;
    background: white;
    border: 1px solid rgba(73, 73, 73, 0.2);
    padding-left: 24px;
    height: 60px;
}
#tienichForm input:not([type='submit']):focus,
#tienichForm select:focus,
#tienichForm textarea:focus{
    outline: none;
    border-color: rgba(227, 25, 55, 0.6);
}
#tienichForm textarea{
    height: 95px;
}
#tienichForm .wpcf7-form{
    display: flex;
    flex-wrap: wrap;
}
#tienichForm .form_group{
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
#tienichForm .form_group svg{
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
#tienichForm .form_group:nth-child(3){
    width: calc(60% - 20px);
    margin-right: 20px;
}
#tienichForm .form_group:nth-child(4){
    width: 40%;
}
#tienichForm .popup_title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 53px;
    color: #333333;
    position: relative;
    margin-bottom: 18px;
}
#tienichForm .popup_title:before{
    position: absolute;
    content: '';
    height: 3px;
    width: 10%;
    background:   var(--primary-color);
    left: 0;
    bottom: -10px;
}
#tienichForm .popup_cont{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    opacity: 0.8;
    margin-bottom: 15px;
}
#tienichForm .form_group > .wpcf7-form-control-wrap > *, section.contact .grid-55 .form_group > .wpcf7-form-control-wrap > *::placeholder{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 26px;
    display: flex;
    align-items: center;
    color: #333333;
    opacity: 0.5;
}
#tienichForm .form_group > .wpcf7-form-control-wrap > *{
    opacity: 1;
}
#tienichForm:before{
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background-image: url('../images/bg_5.png');
    height: 183px;
    width: 350px;
    background-size: cover;
    background-repeat: no-repeat;
}
#tienichForm:after{
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    background-image: url('../images/bg_4.png');
    height: 154px;
    width: 154px;
    background-size: cover;
    background-repeat: no-repeat;
}
#tienichForm input[type='submit']{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--primary-color);
    background: white;
    border: 1px solid   var(--primary-color);
    float: right;
    transition: 0.3s ease-in-out;
    padding: 8px 30px;
}
#tienichForm input[type='submit']:hover{
    color: #FFF;
    background:   var(--primary-color);
}
.wpcf7 form.invalid .wpcf7-response-output{
    font-size: 14px;
    border: 1px solid   var(--primary-color);
    border-radius: 100px;
    text-align: center;
    color:   var(--primary-color);
    font-weight: 600;
}
#tienichForm .wpcf7-not-valid-tip{
    color:   var(--primary-color) !important;
}
#tienichForm .wpcf7-response-output{
    margin: 0 !important;
    width: 100%;
}
.fancybox-close-small:hover{
    color: white;
    background: var(--primary-color);
}
#load_agency{
    position: relative;
}
#load_agency:before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    background-image: url('../images/loading.gif');
background-repeat: no-repeat;
background-size: cover;
    background-size: cover;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: none;
}
#load_agency.loading:before{
    display: block;
}
.single_proj_1 .box_swiper{
    max-height: 590px;
}
.single_proj_1 .img_wrap{
    height: 100%;
}
.single_proj_1 img{
    height: 100%;
    object-fit: cover;
}
.prod_12:before {
    background: linear-gradient(270deg, #ECECEC 50%, rgba(236, 236, 236, 0.9) 62.05%, rgba(236, 236, 236, 0) 102.49%);
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 35%;
    order: 0;
}
.prod_4 #prod_filter{
    margin-bottom: 80px;
}
.prod_4   .prod_filter form{
    margin-bottom: 44px;
}
.prod_4 .prod_filter input[type='submit']{
    height: 100%;
    position: absolute;
    right: 0;
    opacity: 0;
    z-index: 2;
}
.prod_4 .prod_filter input[type='text']{
    width: 100%;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #807F84;
    padding: 16px 50px 16px 30px;
    background: white;
    border: 2px solid #D0D0D0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.prod_4   .prod_filter input:focus-visible,
.prod_4   .prod_filter input:focus{
    outline: none;
}
.prod_4   .prod_filter .inp_wrap{
    position: relative;
    width: 70%;
    margin: 0 auto;
}
.prod_4   .prod_filter svg{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
ul#prod_filter{
    margin: 0 auto;
    justify-content: center;
    /*overflow: auto;*/
    /*width: max-content;*/
}
ul#prod_filter li{
    cursor: pointer;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #494949;
    margin: 0 33px;
    transition: 0.3s ease-in-out;
    width: max-content;
}
ul#prod_filter li:hover,
ul#prod_filter li.active{
    color:  var(--primary-color);
}
#wpadminbar ul{
    display: block;
}
section:after,
section:before{
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.scrollable{
    overflow: auto;
}
.scrollable::-webkit-scrollbar-track
            {
                -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
                background-color: #F5F5F5;
            }

.scrollable::-webkit-scrollbar
{
    width: 5px;
    background-color: #cedbff;
}

.scrollable::-webkit-scrollbar-thumb
{
    background-color: var(--primary-color);
}
.about_7 .item_wrap .item .cont p{
    margin: 0;
}
.about_7 .item_wrap .item .link{
    margin-top: 15px;
}

.prod_6 .swiper.slider_cn {
    width: 50%;
    padding-left: 230px;
    padding: 10px 0 10px 230px;
    margin: 0 0 0;
}

.prod_6 .swiper.slider_cn img {
    margin-left: auto;
}


.prod_6 .swiper.slider_cn {
    width: 50%;
    padding-left: 230px;
}

.prod_6 .wrap {
    display: flex !important;
    width: 100%;
    justify-content: flex-start !important;
}

@keyframes fade_up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.item_cn.active {
    display: block;
    animation-name: fade_up;
    animation-duration: 2s;
    pointer-events: unset;
}


.item_cn {
    display: none;
    background: rgba(255, 255, 255, 0.5);
}

.prod_6 .wrap {
    align-items: center;
}

.prod_6 .wrap .wrap_content.for_cn {
    width: 50%;

    /* 2 */
    position: relative;
}

.prod_6 .wrap_content .item_cn {
    padding: 70px 130px 50px 60px;
}

.prod_6 .wrap_content .item_cn h3 {
    font-size: 40px;
    color: var(--primary-color);
}

.prod_6 .wrap_content .item_cn .content {
    color: #333333;
    font-size: 16px;
}

.prod_6 .wrap .wrap_content.for_cn:before {
    border: 2px solid   var(--primary-color);
    top: 0;
    right: 0;
    left: -100px;
    bottom: 0;
    content: '';
    position: absolute;
}

section.prod_6 {
    padding: 80px 0;
}
.prod_6 .swiper-slide{
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.05));
    opacity: 0.5;
}
.prod_6 .swiper-slide-prev{
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.1));
    opacity: 0.7;
}
.prod_6 .swiper-slide-active{
    filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.05));
    opacity: 1;
}
.prod_6 .swiper-pagination {
    bottom: unset;
    top: -36px;
    width: auto;
    right: 0;
    display: inline-flex;
    left: unset;
}

.prod_6 .swiper-pagination span {
    background: #404040;
    opacity: 0.4;
    width: 9.66px;
    height: 9.66px;
}

.prod_6 .swiper-pagination span.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

#for_tab_cn .item .wrap{
    filter: blur(5px);
    transform: scale(.9);
    transition: .5s all;
}
#for_tab_cn .item{
    position: relative;
}
#for_tab_cn .item:before{
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 120px;
    width: 120px;
    background-color: transparent;
    background-image: url('../images/Eclipse.gif');
background-repeat: no-repeat;
background-size: cover;
    background-size: cover;
    z-index: 99;
    border-radius: 50%;
}
#for_tab_cn .item.active .wrap{
    filter: blur(0px);
    transform: scale(1);
}
#for_tab_cn .item.active:before{
    display: none;
}
.prod_9 .mySwiper .swiper-slide {
    transform: scale(1);
    transition:  0.3s ease-in-out;
    border-radius: 50%;
    overflow: hidden;
}

.prod_9 .mySwiper {
    margin: 0 auto -100px;
    max-width: 200px;
    padding: 60px 67px;
    z-index: 9;
}

.prod_9 .mySwiper .swiper-slide.swiper-slide-thumb-active {
    transform: scale(1.3);
    z-index: 9;
    outline: 2px solid var(--primary-color);
}
.prod_2 .section_heading table{
    border: none !important;
}
.prod_2 .section_heading table *{
    border: none;
    text-align: center !important;
    margin: 0 auto
}
ul.nav_tab_cn{
    display: inline-flex;
    justify-content: center;
    border-radius: 100px;
    background: rgba(208, 208, 208, 0.5);
    margin-top: 23px;
}
ul.nav_tab_cn li{
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
    padding: 15px 30px;
    text-transform: uppercase;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
    transition: 0.3s ease-in-out;
}
ul.nav_tab_cn li.active{
    color: #FFFFFF;
    font-weight: 700;
    background:   var(--primary-color);
}
.news_link a{
    padding: 8px 30px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid   var(--primary-color);
    transition: 0.3s ease-in-out;
}
.news_link a:hover{
    background:   var(--primary-color);
    color: white;
}
.news_heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news_heading{
    margin-bottom: 39px;
}
.news_heading .section_heading{
    margin: 0;
}
.footer_1_wrap .item a img{
    transition: 0.3s ease-in-out;
}
.footer_1_wrap .item a:hover img{
    transform: scale(1.15);
}
.ft_img{
    /*padding: 0 160px;*/
}
.thumb_img img{
    max-height: 110px;
    object-fit: contain;
}
a.custom_show_more_content{
    cursor: pointer;
    margin-top: 30px;
}
.prod_99 .sec_cont+.sec_cont{
    margin-top: 27px;
}
.prod_99 .section_heading{
    width: 980px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
div.sub_primary_menu li >ul.sub-menu{
    position: absolute;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
    top: 100%;
    padding: 0;
    display: none;
    min-width: 100%;
    width: auto;
    max-width: 350px;
}
div.sub_primary_menu li >ul.sub-menu > li > a{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #494949;
    padding: 12px 15px 12px 32px;
    display: block;
    border-bottom: 1px solid #EFEFEF;
    min-width: 100%;
    width: max-content;
    text-align: left;
}
div.sub_primary_menu li:hover > ul.sub-menu{
    display: flex !important;
}
div.sub_primary_menu li >ul.sub-menu > li:last-child > a{
    border: none;
}
div.sub_primary_menu li >ul.sub-menu > li:hover > a{
    color:  var(--primary-color);
    background: #fff;
}
div.sub_primary_menu li >ul.sub-menu ul.sub-menu{
    position: absolute;
    top: 0;
    left: 100%;
    flex-direction: column;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.08);
    /*padding: 10px 38px;*/
    display: none;
    min-width: 100%;
    width: auto;
    max-width: 350px;

}
.before-line:before{
    width: 30%;
    height: 3px;
    background:   var(--primary-color);
    position: absolute;
    bottom: -1.5px;
    left: 0;
    content: '';
    transition: 0.5s ease-in-out;
}
.bottom_cont_wrap{
    margin-top: 30px;
    display: none;
}
.bottom_cont_wrap ul{
    flex-direction: column;
    margin:  0 0 0 15px;
    list-style: disc;
}
.bottom_cont_wrap p{
    margin-bottom: 15px !important;
}
.bottom_cont_wrap a:hover{
    text-decoration: underline;
}
.footer_1_wrap a:hover{
    font-weight: 400 !important;
    color: #FFF !important;
    text-decoration: underline;
}
section.news .news_item svg, section.news_tax .news_item svg,
section.news .news_item:not(:first-child) .des, section.news_tax .news_item:not(:first-child) .des{
    display: none;
}
.post_detail .latest_news a svg{
    min-width: 32px;
}
.about_4 .history_wrap .item:last-child{
    margin-bottom: 0;
}
.hamburger{
    display: none;
}
.hamburger .line{
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
    display: block;
    margin: 8px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 20px;
}
#show_mobile_menu.active .line:nth-child(2){
    opacity: 0;
}
.hamburger .line:nth-child(1){
    width: 28px;
}
.hamburger .line:nth-child(3){
    width: 20px;
}

#show_mobile_menu.active .line:nth-child(1){
    -webkit-transform: translateY(11px) rotate(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    -o-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
    width: 35px;
}

#show_mobile_menu.active .line{
    background: #fff;
}
#show_mobile_menu.active .line:nth-child(3){
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
    width: 35px;
}
#mobile-menu-control-wrapper{
    display: none;
    visibility: hidden;
}
#menu_mobile{
    display: none;
}
.mobile_btn_gr{
    display: none;
}
.home_6 .news_wrap{
    display: flex;
}
.wrap_search_popup{
    display: none;
}
img.hovered-image.menu-image-title-below{
    /*margin-left: -23px !important;*/
}
div.sub_primary_menu ul > li.menu-item.wpml-ls-menu-item  > a{
    padding-left: 10px;
    padding-right: 0;
    font-weight: 500;
}
div.sub_primary_menu ul > li.menu-item.wpml-ls-menu-item  > a:hover{
    background: unset;
}
.wpml-ls-menu-item .wpml-ls-flag{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 8px;
    outline: 2px solid #FFF;
}
#custom_content ul{
    display: block;
    padding-left: 0;
    list-style: disc;
    margin-left: 30px;
}
#custom_content {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}
#custom_content h1{
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
#custom_content h2{
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
#custom_content h3{
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
#custom_content h4{
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
#custom_content h5{
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
#custom_content h6{
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 15px;
}
/*#custom_content p:has(img){*/
/*    margin-bottom: 0;*/
/*}*/
.wp-caption figcaption.wp-caption-text{
    font-size: 15px;
    margin-top: 5px;
}
#custom_content em{
    margin-bottom: 12px;
    font-size: 16px;
}
#custom_content p,
#custom_content li{
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 15px;
}
#prod_list{
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    transform: scale(1);
    min-height: 250px;
}
body.page-template-home .fancybox-toolbar{
    right: 5%;
    top: 20px;
}
#prod_list.loading:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    position: absolute;
    content: '';
    background-image: url('../images/Eclipse.gif');
    background-size: contain;
    background-repeat: no-repeat;
}
.home_6 .grid-40{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.home_6 .grid-40:after,
.home_6 .grid-40:before{
    display: none;
}
.line_clamp{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.line_clamp.clamp_1{
    -webkit-line-clamp: 1;
}
.line_clamp.clamp_2{
    -webkit-line-clamp: 2;
}
.line_clamp.clamp_3{
    -webkit-line-clamp: 3;
}
.line_clamp.clamp_4{
    -webkit-line-clamp: 4;
}
.projects_2 .project_wrap .down_load_btn{
    position: absolute;
    left: 15px;
    top: 15px;
    width: 62px;
    background: rgba(0, 0, 0, 0.25);
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.projects_2 .project_wrap .down_load_btn:hover {
    background: rgba(0, 0, 0, 0.5);
}
.section.bottom_content .grid-container{
    position: relative;
    z-index: 9;
}
.about_5 .swiper-pagination{
    bottom: -5px !important;
}
.development_swiper{
    padding-bottom: 30px;
}
.development_swiper span.swiper-pagination-bullet{
    background-color: var(--primary-color);
}
section.search_news.news_tax .news_wrap{
    grid-template-columns: 1fr 1fr 1fr;
}
body.page-template-home .fancybox-content{
    max-width: 90%;
}
.saboxplugin-wrap{
    border-style: dashed !important;
}
#was-this-helpful{
    background: transparent;
    flex-direction: column;
}
#was-this-helpful #wthf-title{
    display: block;
    font-weight: 700;
    font-size: 1.3em;
    padding-right: 0;
    margin-bottom: 30px;
}
#was-this-helpful #wthf-yes-no span{
    padding: .4em .8em;
    border-radius: .2em;
    background-color: rgba(255,255,255,.9);
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    -webkit-box-shadow: 0 0 6px 0px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 6px 0px rgba(0,0,0,.1);
    box-shadow: 0 0 6px 0px rgba(0,0,0,.1)
}
#was-this-helpful #wthf-yes-no span:first-child {
    margin-right: .4em;
    background: #e31a36
}

#was-this-helpful #wthf-yes-no span:last-child {
    margin-left: .4em;
    background: #494949
}
.related_posts_swiper .news_item{

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F5F5F5;
}
.related_posts_swiper .news_item .news_cont{
    padding: 0 30px 15px 30px;
    position: relative;
}
.related_posts_swiper .news_item .news_cont h3.title{
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #333333;
    margin: 24px 0 0px 0;
    padding-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    transition: 0.5s ease-in-out;
    position: relative;
}
.related_posts_swiper .news_item .news_cont .date{
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    margin-top: 20px;
}
section.related_posts{
    padding-bottom: 100px;
}
section.single_recruit_page .recruit_content{
    width: 794px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
section.single_recruit_page h1.recruit_title{
    font-size: 26px;
    font-weight: 800;
    line-height: 48px;
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 20px;
}
section.single_recruit_page .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(102, 102, 102, 0.15);
    border-bottom: 1px solid rgba(102, 102, 102, 0.15);
    margin-bottom: 35px;
    padding: 13px 0;
}
section.single_recruit_page .nav>* {
    display: flex;
    align-items: center;
}
section.single_recruit_page .nav p{
    margin-bottom: 0;
    margin-left: 15px;
}
section.single_recruit_page .nav .share ul{
    align-items: center;
}
section.single_recruit_page .nav .share a{
    display: flex;
    margin-left: 15px;
}
.btn.btn_transparent{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 1px solid var(--primary-color);
    padding: 13px 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--primary-color);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.btn.btn_transparent:hover{
    background: var(--primary-color);
    color: #FFF
}
section.single_recruit_page .list_cont{
    display: block;
    margin-bottom: 15px;
}
section.single_recruit_page .list_cont > li{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 24px;
}
section.single_recruit_page {
    padding: 45px 0 100px;
}
section.single_recruit_page #custom_content p,
section.single_recruit_page #custom_content li{
    margin-bottom: 10px;
}
section.single_recruit_page #custom_content h2{
    margin-top: 30px;
}
/*HTS CSS*/

.hts-fl {
    padding-left: 26px;
    position: relative;
}
a.hts-fl{
    color: #222222;
}
div.hts-fl{
    margin-top: 5px;
}
.hts-fl svg {
    position: absolute;
    left: 0;
    width: 13px;
    opacity: .5;
    top: 5px;
}
.hts-wrapper {
    position: relative;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hts-map {
    height: 40rem;
}

.hts-map iframe {
    width: 50%;
    height: 100%;
    display: block;
    margin-left: auto;
}

.hts-title {
    font-size: 1.5rem;
}
.saboxplugin-wrap{
    border: 2px solid #333 !important;
    box-shadow: 0px 2px 20px 0px #0000001A;
}
html > body > div#page img.aligncenter,
html > body > div#page figure.aligncenter{
    margin-left: auto !important;
    margin-right: auto !important;
}
html > body > div#page figure.alignright{
    margin-left: auto !important;
}
@media only screen and (max-width: 1200px) {
    .hts-title {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 800px) {
    .hts-title {
        font-size: 1.6rem;
    }
}

.hts-fixed {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50vw;
    min-width: 26rem;
    background-color: #f5f5f5;
    transition: all 0.5s ease-in-out;
    z-index: 50;
}

/* @media screen and (max-width: 768px) {
  .hts-fixed {
    position: relative;
    width: 100%;
  }
} */

.hts-fixed-wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: calc((100vw - 1160px) / 2);
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: #f5f5f5;
}

@media screen and (max-width: 1200px) {
    .hts-fixed-wrap {
        margin: 0;
        padding: 1.5rem;
    }
}

.hts-fixed-over {
    height: 43.5rem;
    overflow-y: auto;
    padding-right: 1rem;
}

@media screen and (max-width: 768px) {
    .hts-fixed-over {
        height: initial;
    }
}

.hts-fixed.hide {
    transform: translateX(0%);
}

.hts-item {
    display: flex;
}

.hts-item:not(:last-child) {
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #cecece;
}

@media screen and (max-width: 768px) {
    .hts-item {
        flex-direction: column;
    }
}

.hts-img {
    width: 6rem;
    flex-shrink: 0;
    cursor: pointer;
    overflow: hidden;
}

.hts-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hts-content {
    margin-left: 1.6rem;
}

@media screen and (max-width: 768px) {
    .hts-content {
        margin-left: 0;
        margin-top: 1.6rem;
    }
}

.hts-name {
    cursor: pointer;
    font-weight: 700;
    font-family: "SVN-Gilroy", sans-serif;
    margin-bottom: 0.8rem !important;
}

.hts-fl {
    display: flex;
}


.hts-fl .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.8rem;
    position: relative;
    top: 3px;
}

.hts .icon-close {
    position: absolute;
    top: 5rem;
    right: 4rem;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
}

/* @media screen and (max-width: 768px) {
  .hts .icon-close {
    display: none;
  }
} */

.hts .icon-close i {
    font-size: 2rem;
    font-weight: 900;
}

.hts .side-open {
    position: absolute;
    right: auto;
    left: 0;
    border-radius: 0 100rem 100rem 0;
    background-color: #0e1d61;
}

.hts .side-open-wrap {
    transform: rotate(180deg);
}

.hts .side-open-wrap .icon {
    color: #0e1d61;
}


@media screen and (max-width: 600px) {
    .hts-fl {
        font-size: 1.2rem;
    }

    .hts-fixed-wrap {
        padding: 1rem;

    }

    .hts-img {
        width: 8rem;
        height: 8rem;
        display: none;
    }

    .hts-fl .icon {
        width: 1.2rem;
        height: 1.2rem;
    }

    .hts .icon-close {
        top: 1rem;
        right: 1rem;
    }

}


.hts-name p {
    margin: 0 !important;
}

.hts-content p {
    margin: 0;
}
.hts-fixed-over::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.hts-fixed-over::-webkit-scrollbar
{
    width: 3px;
    background-color: #000000;
}

.hts-fixed-over::-webkit-scrollbar-thumb
{
    background-color: #000000;
}

section.branches{
    padding-bottom: 100px;
}

.content_wrapper,
.content_wrapper p,
.content_wrapper li{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}
.content_wrapper p{
    margin-bottom: 8px;
}
.content_wrapper ul{
    display: block;
    margin-bottom: 12px;
    list-style: disc;
    margin-left: 25px;
}
.content_wrapper h3{
    font-size: 24px;
    font-weight: 600;
    line-height: 29.26px;
    margin-bottom: 20px;
    margin-top: 20px;
}
section.author_page{
    padding: 60px 0 80px;
}
body.author section.related_posts{
    padding-bottom: 100px;
}
section.author_page .author_wrap{
    width: 1036px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
section.author_page .author_meta_wrap{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
section.author_page .author_meta_wrap .author_avatar{
    width: 40%;
    padding-right: 54px;
}
section.author_page .author_meta_wrap .author_avatar img{
    width: 100%;
    height: auto;
}
section.author_page .author_meta_wrap .author_meta{
    width: 60%;
}
section.author_page .author_meta_wrap .author_meta_box{
    display: block;
    padding: 34px 44px;
    background: #F5F5F5;
    margin-top: 30px;
}
section.author_page .author_meta_wrap .author_meta_box > li{
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
}
section.author_page .author_meta_wrap .author_meta_box > li:last-of-type{
    margin-bottom: 0;
}
section.author_page .section_heading{
    width: 830px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.terms_menu ul.terms_list{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
}
.terms_menu ul.terms_list > li > a{
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: #494949;
    margin: 0 20px;
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.terms_menu ul.terms_list > li.active > a,
.terms_menu ul.terms_list > li > a:hover{
    color: var(--primary-color)
}
.terms_menu .select{
    display: none;
}
section.product_quote{
    background: rgba(0, 0, 0, .05);
    padding: 100px 0 80px;
}
section.product_quote .cf7-form-wrapper {
    margin: 0 auto;
    width: 600px;
    max-width: 100%;
}
section.product_quote .nhan_bao_gia_sp {
    padding: 20px 20px 10px;
    background: #fff;
}

.nhan_bao_gia_sp .form_group {
    display: flex;
    width: 100%;
    margin-bottom: 10px
}

.nhan_bao_gia_sp .form_group:last-child {
    margin-bottom: 0
}

.nhan_bao_gia_sp p {
    width: 100%;
    margin: 0
}

.nhan_bao_gia_sp .form_group .wpcf7-form-control-wrap[data-name=khach_hang] {
    position: relative;
    display: block;
    background-size: 24px;
    background-position: right;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6 9l6 6l6 -6" /></svg>')
}

.nhan_bao_gia_sp .form_group select {
    background: 0 0
}

.nhan_bao_gia_sp .form_group select,.nhan_bao_gia_sp .form_group .wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: 15px;
    text-align: left;
    border: 1px solid #efefef
}
.nhan_bao_gia_sp .form_group textarea{
    height: 100px;
    border: 1px solid #efefef;
    font-size: 15px;
    background: 0 0
}

.nhan_bao_gia_sp .form_group .wpcf7-form-control.wpcf7-text {
    background: #fff
}

.nhan_bao_gia_sp .wpcf7-submit {
    width: 100%;
    background: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .4s ease
}

.nhan_bao_gia_sp .wpcf7-spinner {
    display: none
}
.nhan_bao_gia_sp .wpcf7-form-control-wrap {
    width: 100%
}

.nhan_bao_gia_sp .form_group svg {
    position: absolute;
    top: 7%;
    right: 25px;
    transform: translateY(-50%);
    pointer-events: none
}
.text_uppercase{
    text-transform: uppercase;
}
.relative{
    position: relative;
}
.grid_box{
    display: grid;
}
.grid_2{
    grid-template-columns: repeat(2, 1fr);
}
.grid_3{
    grid-template-columns: repeat(3, 1fr);
}
.grid_4{
    grid-template-columns: repeat(4, 1fr);
}
.flex_box{
    display: flex;
}
.flex_wrap{
    flex-wrap: wrap;
}
.flex_row{
    flex-direction: row !important;
}
.flex_col{
    flex-direction: column;
}
.al_center{
    align-items: center;
}
.al_start{
    align-items: flex-start;
}
.al_end{
    align-items: flex-end;
}
.al_baseline{
    align-items: baseline;
}
.jus_start{
    justify-content: flex-start;
}
.jus_end{
    justify-content: flex-end;
}
.jus_center{
    justify-content: center;
}
.jus_between{
    justify-content: space-between;
}
.m_auto{
    margin: auto;
}
.mx_auto{
    margin-left: auto;
    margin-right: auto;
}
.col_1{flex:0 0 auto;width:8.33333333%}
.col_2{flex:0 0 auto;width:16.66666667%}
.col_3{flex:0 0 auto;width:25%}
.col_4{flex:0 0 auto;width:33.33333333%}
.col_5{flex:0 0 auto;width:41.66666667%}
.col_6{flex:0 0 auto;width:50%}
.col_7{flex:0 0 auto;width:58.33333333%}
.col_8{flex:0 0 auto;width:66.66666667%}
.col_9{flex:0 0 auto;width:75%}
.col_10{flex:0 0 auto;width:83.33333333%}
.col_11{flex:0 0 auto;width:91.66666667%}
.col_12{flex:0 0 auto;width:100%}
.relative{
    position: relative !important;
}
.absolute{
    position: absolute !important;
}
.marquee {
    width: 100%;
    overflow: hidden;
}
.marquee .flex_box{
    gap: 70px
}
.marquee .item{
    flex-shrink: 0;
    width: 200px;
    max-height: 90px;
    height: auto;
    object-position: center;
    object-fit: contain;
}
.limit_line{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.limit_line.limit_1{
    -webkit-line-clamp: 1;
}
.limit_line.limit_2{
    -webkit-line-clamp: 2;
}
.limit_line.limit_3{
    -webkit-line-clamp: 3;
}
#apply_form .nav_bottom input[type="submit"],
section.contact .grid-55 input[type="submit"],
.btn{
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    min-width: 170px;
    border-radius: 0;
}
#apply_form .nav_bottom input[type="submit"],
section.contact .grid-55 input[type="submit"],
.btn_transparent_new{
    background: transparent;
    color: var(--primary-color)
}
section.contact .grid-55 input[type="submit"]{
    height: auto;
    margin-left: auto;
}
.btn_transparent_white{
    background: transparent;
    color: #FFF;
    border-color: #FFF;
}
.btn_primary{
    background: var(--primary-color);
    color: #FFF !important;
    position: relative;
}
.btn_primary:before{
    left: 0;
    top: 0;
    position: absolute;
    z-index: 2;
    content: '';
    width: 0;
    height: 100%;
    background: #C91D1B;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.btn_primary span.relative{
    z-index: 3;
}
body.page-template-about .grid-container,
body.page-template-home .grid-container{
    position: relative;
    z-index: 3;
}
section.homepage_1{
    padding: 70px 0 40px;
}
section.homepage_1 .grid-60{
    padding-right: 13px;
}
section.homepage_1 .grid-40{
    padding-left: 67px;
}
body.page-template-home .section_heading{
    margin-bottom: 0;
}
.sec_cont,
.sec_cont p,
.sec_cont li{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}
.sec_cont > *:last-child{
    margin-bottom: 0 !important;
}
.sec_cont ul,
.sec_cont ol{
    display: block;
    padding-left: 30px;
    margin-bottom: 20px;
}
.sec_cont ul ul{
    list-style: circle;
}
.sec_cont ul{
    list-style: disc;
}
.sec_cont ol{
    list-style: decimal;
}
body.page-template-home .sec_title{
    margin-bottom: 20px;
}
section.homepage_1 .btn{
    margin-top: 30px;
}
section.homepage_2{
    padding: 70px 0;
}
section.homepage_2.odd{
    background-color: #F5F5F5;
}
section.homepage_2 .grid_box{
    margin-top: 30px;
}
section.homepage_2 .grid_4{
    grid-gap: 24px;
    margin-bottom: 60px;
}
section.homepage_2 .grid_3{
    margin-bottom: 95px;
}
.grid_box.grid_4.round .img_wrap,
.terms_child_list .img_wrap{
    aspect-ratio: 1;
}
.terms_child_list{
    display: flex;
    flex-wrap: wrap;
    gap: 95px 24px;
}
.terms_child_list .term_item{
    width: calc(25% - 18px);
}
.terms_child_list .term_item .cont_wrap{
    left: 24px;
    right: 24px;
    padding: 12px 12px;
}
.terms_child_list .term_item .cont_wrap{
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    transform: translateY(50%);
    padding: 12px 12px;
    text-align: center;
    background: #FFF;
    border-bottom: 2px solid var(--primary-color);
}
.terms_child_list .term_item img{
    aspect-ratio: 1;
}
.terms_child_list .term_item .cont_wrap p.term_title,
.terms_child_list .term_item .cont_wrap h3{
    font-size: 17px;
    font-weight: 700;
    line-height: 28px;
    margin: 0;
    color: var(--primary-color)
}
.grid_box.grid_4.vertical .term_item .img_wrap{
    height: 400px;
}
.grid_box.grid_4 .term_item .cont_wrap {
    position: relative;
    padding: 24px 12px;
    text-align: center;
}
.grid_box.grid_4 .term_item .cont_wrap .term_title{
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    position: relative;
    z-index: 3;
    margin: 0;
    text-align: center;
}
.grid_box.grid_4 .term_item .cont_wrap:after{
    left: 50%;
    bottom: 16px;
    position: absolute;
    content: '';
    width: 60px;
    height: 2px;
    background: #FFF;
    opacity: 0.4;
    transform: translateX(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.grid_box.grid_4 .term_item .cont_wrap:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    mix-blend-mode: multiply;
}
section.homepage_3{
    padding: 70px 0;
    background: #F5F5F5;
}
section.homepage_3 .homepage_swiper_1_thumb{
    margin: 20px 0 50px 0;
}
section.homepage_3 .homepage_swiper_1_thumb_wrap{
    padding: 0 120px;
    position: relative;
}
section.homepage_3 .homepage_swiper_1_thumb_wrap:before{
    top: 46px;
    left: 0;
    width: 100%;
    height: 1px;
    position: absolute;
    content: '';
    background: #333333;
    opacity: 0.3;
}
.homepage_swiper_1_thumb .icon_wrap {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #FFF;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 16px;
}
.homepage_swiper_1_thumb .icon_wrap:before{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    content: '';
    background: #FAEAEA;
    width: 76px;
    height: 76px;
}
.homepage_swiper_1_thumb .icon_wrap img{
    position: relative;
    z-index: 2;
}
.homepage_swiper_1_thumb .swiper-slide .item{
    filter: grayscale(1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}
.homepage_swiper_1_thumb .swiper-slide:hover .item,
.homepage_swiper_1_thumb .swiper-slide.swiper-slide-thumb-active .item{
    filter: grayscale(0);
}
.homepage_swiper_1_thumb span{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #333333;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.homepage_swiper_1_thumb .swiper-slide.swiper-slide-thumb-active span{
    color: var(--primary-color)
}
.homepage_swiper_1 .swiper-slide .col_7{
    padding: 60px 80px;
    box-sizing: border-box;
}
.homepage_swiper_1 .swiper-slide{
    background: #FFF;
}
.homepage_swiper_1 .swiper-slide .col_7 h3.title{
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 20px;
}
section.homepage_4{
    padding: 36px 0;
}
section.homepage_4 .btn{
    position: relative;
    z-index: 5;
}
section.homepage_5{
    padding: 64px 0 70px;
}
section.homepage_5 .flex_box{
    margin: 50px 0 60px;
}
section.homepage_5 .flex_box .col_7{
    padding-right: 30px;
}
section.homepage_5 .flex_box .col_7 h3{
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    color: #333;
}
section.homepage_5 .flex_box .col_7 .term_date{
    margin-bottom: 10px;
}
section.homepage_5 .flex_box .col_7 .img_wrap{
    height: 420px;
    margin-bottom: 40px;
}
section.homepage_5 .flex_box .col_5{
    padding-left: 50px;
    position: relative;
}
section.homepage_5 .flex_box .col_5 .swiper_arrow{
    position: absolute;
    right: 0;
}
section.homepage_5 .flex_box .col_5 .swiper_arrow.prev{
    top: -64px;
}
section.homepage_5 .flex_box .col_5 .swiper_arrow.next{
    bottom: -64px;
}
.swiper.homepage_swiper_4{
    max-height: 694px;
}
.swiper.homepage_swiper_4 .img_wrap{
    height: 232px;
    margin-bottom: 20px;
}
.swiper.homepage_swiper_4 h3{
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    color: #333;
}
.swiper.homepage_swiper_2{
    padding: 0 calc(calc(100vw - 996px) / 2);
    margin: 50px 0 60px;
}
.swiper.homepage_swiper_2 .swiper_arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
.swiper.homepage_swiper_2 .swiper_arrow.prev{
    left: 236px;
}
.swiper.homepage_swiper_2 .swiper_arrow.next{
    right: 236px;
}
.swiper.homepage_swiper_2 .img_wrap{
    height: 600px;
}
.swiper.homepage_swiper_2 .cont_wrap{
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 60px;
    position: absolute;
    content: '';
    z-index: 3;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.swiper.homepage_swiper_2 .swiper-slide:before{
    position: absolute;
    content: '';
    left: 0;
    z-index: 2;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.swiper.homepage_swiper_2 .swiper-slide.swiper-slide-active:before{
    opacity: 0;
}
.swiper.homepage_swiper_2 .swiper-slide.swiper-slide-active .cont_wrap{
    opacity: 1;
    bottom: 0;
}
.swiper.homepage_swiper_2 .cont_wrap h3{
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    color: #FFF;
    text-transform: uppercase;
    margin: 8px 0 0 ;
}
section.homepage_6{
    padding:  30px 0;
    background: #FFF;
}
section.homepage_7{
    background: #F5F5F5;
}
section.homepage_7,
section.homepage_8{
    padding: 70px 0;
}
section.homepage_8 .col_5{
    padding-right: 96px;
}
section.homepage_8 .col_5 .btn{
    margin-top: 30px;
}
.swiper.homepage_swiper_3{
    margin-top: 40px;
}
.swiper.homepage_swiper_3 .item{
    background: #FFF;
    margin-bottom: 20px;
    padding: 30px 32px;
}
.swiper.homepage_swiper_3 .item img{
    height: 75px;
    width: 100%;
    object-position: center;
    object-fit: contain;
}
.box_swiper{
    position: relative;
}
.home_banner .banner_cont{
    position: absolute;
    width: 640px;
    padding: 54px ;
    bottom: 132px;
    left: calc(calc(100% - 1200px) / 2);
    box-sizing: border-box;
}
.home_banner .banner_cont .banner_title{
    font-size: 48px;
    font-weight: 800;
    line-height: 46px;
    margin: 0;
    color: #FFF;
    position: relative;
    z-index: 3;
}
.home_banner .banner_cont .banner_des{
    font-size: 30px;
    font-weight: 400;
    line-height: 46px;
    color: #FFF;
    position: relative;
    z-index: 3;
}
.home_banner .swiper-slide:before{
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
}
.bg_center{
    background-position: center;
}
.bg_custom{
    background-repeat: no-repeat;
}
.bg_cover{
    background-size: cover;
}
.bg_contain{
    background-size: contain;
}
.about_page_1{
    padding: 110px 0 35px;
}
.about_page_1 .col_6:nth-of-type(2){
    padding-left: 78px;
    position: relative;
    z-index: 3;
}
.about_page_1 .col_6:nth-of-type(2):before{
    z-index: -1;
    right: -24px;
    top: -24px;
    width: 108px;
    height: 127px;
    position: absolute;
    content: '';
    background: var(--primary-color);
}
.about_page_1 .flex_box{
    margin-bottom: 70px;
}
.about_swiper_1:before{
    left: 0;
    width: 100%;
    top: 58px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    content: '';
}
.about_swiper_1 .counter_wrap .counter_hide{
    opacity: 0;
}
.about_swiper_1 .counter_wrap .counter{
    position: absolute;
}
.about_swiper_1 .counter_wrap{
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.about_swiper_1 .counter_wrap:before{
    bottom: 0px;
    left: 0;
    position: absolute;
    content: '';
    height: 2px;
    width: 45px;
    background: var(--primary-color);
}
.about_page_2 .section_heading{
    width: 920px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.about_page_2{
    padding: 70px 0;
}
.section_heading .sec_sub_title{
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}
.about_page_2 .cont_wrap > img{
    margin: auto;
}
.about_page_2 .cont_wrap{
    text-align: center;
    position: relative
}
.about_page_2 .cont_wrap .list_cont .cont{
    position: absolute;
    padding: 12px 20px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.about_page_2 .cont_wrap .list_cont .cont{
    animation: bubble 2s infinite;
}
.about_page_2 .cont_wrap .list_cont .cont:nth-of-type(1){
    right: 209px;
    top: 60px;
    animation-delay: 400ms;
}
.about_page_2 .cont_wrap .list_cont .cont:nth-of-type(3){
    right: 48px;
    bottom: 44px;
    animation-delay: 200ms;
}
.about_page_2 .cont_wrap .list_cont .cont:nth-of-type(2){
    left: 48px;
    bottom: 130px;
    animation-delay: 600ms;
}
.about_page_2 .cont_wrap .list_cont .cont img{
    margin-right: 10px;
}
.about_page_3{
    padding: 70px 0
}
.about_swiper_2 .img_wrap{
    margin-bottom: 20px;
    height: 200px;
}
.about_swiper_2 .dot{
    width: 22px;
    height: 22px;
    background: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #666;
    margin-bottom: 20px;
    transition: all 0.4s ease-in-out;
    position: relative;
}
.about_swiper_2 .dot:before{
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    position: absolute;
    content: '';
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.about_swiper_2 .swiper-slide-active .dot{
    border-color: var(--primary-color);
}
.about_swiper_2 .swiper-slide-active .dot:before{
    opacity: 1;
}
.about_swiper_2 .year{
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: #333333;
    margin-bottom: 4px;
}
.about_page_4 .grid-container .cont-wrap{
    padding: 52px 82px;
    background: #F5F5F5;
}
.about_page_5{
    padding: 70px 0;
}
.about_page_5 .swiper.homepage_swiper_2{
    margin-top: 0;
}
.about_page_6{
    padding: 70px 0;
    background: #F5F5F5;
}
.about_page_6 .item .cont_wrap{
    padding: 70px 60px;
    background: #FFF;
    margin-right: -40px;
    z-index: 3;
    box-shadow: 0px 4px 10px 0px #0000001A;
}
.about_page_6 .item .cont_wrap .btn{
    margin-top: 24px;
}
.about_page_6 .item .cont_wrap h3{
    font-size: 34px;
    font-weight: 800;
    line-height: 42px;
    margin-bottom: 8px;
    color: var(--primary-color)
}
.about_page_6 .item:before{
    width: 162px;
    height: 162px;
    position: absolute;
    content: '';
    background: var(--primary-color);
    z-index: -1;
}
.about_page_6 .item{
    position: relative;
    z-index: 3;
}
.about_page_6 .item:nth-of-type(even):before{
    right: -26px;
    top: -26px;
}
.about_page_6 .item:nth-of-type(odd):before{
    left: -26px;
    bottom: -26px;
}
.about_page_6 .item:nth-of-type(odd) .flex_box{
    flex-direction: row-reverse;
}
.about_page_6 .item:nth-of-type(odd) .cont_wrap{
    margin: 0 0 0 -30px;
}
.about_page_6 .item:not(:first-of-type){
    margin-top: 60px;
}
.about_page_6 .item .limit_4::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
.about_page_6 .item .limit_4::-webkit-scrollbar
{
    width: 4px;
    background-color: #cedbff;
}

.about_page_6 .item .limit_4::-webkit-scrollbar-thumb
{
    background-color:  var(--primary-color);
}
.about_page_6 .item .limit_4{
    overflow: auto;
    max-height: 90px;
}
.about_page_7{
    padding: 70px 0;
}
.about_page_8{
    padding: 30px 0;
    border-top: 1px solid #CECECE
}
.about_swiper_3{
    padding: 0 168px;
}
.about_swiper_3 .swiper-slide.swiper-slide-prev,
.about_swiper_3 .swiper-slide.swiper-slide-next,
.about_swiper_3 .swiper-slide.swiper-slide-active{
    opacity: 1;
}
.about_swiper_3 .swiper-slide h3{
    opacity: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 0;
}
.about_swiper_3 .swiper-slide.swiper-slide-active h3{
    opacity: 1;
}
.about_swiper_3 .swiper-slide{
    opacity: 0.4;
}
.about_swiper_3 .swiper_arrow{
    position: absolute;
    top: calc(50% - 52px);
    transform: translateY(-50%);
    background: #00000033;
    z-index: 5;
    border: none;
}
.about_swiper_3 .swiper_arrow.prev{
    left: 367px;
}
.about_swiper_3 .swiper_arrow.next{
    right: 367px;
}
@keyframes bubble {
    50%{
        transform: translateY(10px);
    }
}
.prod_3:before,
.site-footer .footer_2:before,
section.homepage_7:before,
section.homepage_2.odd:before{
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    height: 480px;
    width: 100%;
    background-image: url('../images/wood_pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
}
section.homepage_3:before{
    top: 0;
    left: 0;
    position: absolute;
    content: '';
    height: 480px;
    width: 100%;
    background-image: url('../images/wood_pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotateX(180deg);
}
section.prod_8:before,
section.about_page_4:before,
section.about_page_1:before,
section.homepage_5:before,
section.homepage_1:before{
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    width: 826px;
    height: 496px;
    background-image: url('../images/bg_2.png');
    background-repeat: no-repeat;
    background-size: cover;
}
section.homepage_8:before{
    left: 0;
    bottom: 0;
    position: absolute;
    content: '';
    width: 826px;
    height: 496px;
    background-image: url('../images/bg_2.png');
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotateX(180deg);
}
section.homepage_5{
    overflow: unset;
}
section.homepage_5:before {
    top: -140px;
}
section.prod_8 .grid-container{
    position: relative;
    z-index: 3;
}
section.prod_8:after,
section.about_page_4:after,
section.homepage_5:after,
section.homepage_1:after{
    right: 0;
    bottom: -82px;
    position: absolute;
    content: '';
    width: 826px;
    height: 496px;
    background-image: url('../images/bg_pj_detail.png');
    background-repeat: no-repeat;
    background-size: cover;
}
section.about_page_4:after{
    top: 0;
    right: 0;
}
.swiper_box{
    position: relative;
}
.swiper_arrow{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1.5px solid #909090;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.swiper_arrow.small{
    width: 30px;
    height: 30px;
}
.swiper_box .swiper_arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.swiper_box .swiper_arrow.next{
    right: -100px;
}
.swiper_box .swiper_arrow.prev{
    left: -100px;
}
.inside-navigation #search_submit path{
    fill: #333;
}
.inside-navigation input#s{
    padding: 0 18px 0 24px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.inside-navigation #search_submit{
    padding: 0;
    height: auto;
    background: transparent;
}
.inside-navigation form#searchform{
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid #dfdfdf;
}
.main-navigation .inside-navigation{
    padding-left: 0;
}
header .inside-header{
    padding: 14px 0;
}
.site-footer .footer_2{
    background: #F5F5F5;
    padding: 54px 0 30px;
}
.site-footer .footer_2 .copyright{
    padding-bottom: 0;
    padding-top: 60px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    text-align: center;
}
.footer_bottom .col_5{
    padding-right: 150px;
}
.footer_bottom .col_3{
    padding-right: 40px;
}
.footer_bottom .col_3 .item:not(:last-of-type){
    margin-bottom: 60px;
}
.footer_bottom .col_5 > a img{
    height: 95px;
    width: auto;
}
.footer_bottom .col_5 > a{
    margin-bottom: 40px;
    display: block;
}
.footer_bottom .col_5 .footer_content{
    margin-bottom: 30px;
}
.footer_bottom .col_5 .footer_content,
.footer_bottom .col_5 .footer_content p,
.footer_bottom .col_5 .footer_content li{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.footer_bottom .col_5 .footer_content > *:last-child{
    margin-bottom: 0;
}
.footer_bottom .col_5 .footer_content p{
    margin-bottom: 14px;
}
.footer_bottom .col_5 > .company_name{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #333;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}
.footer_bottom .col_5 .social_list{
    gap: 18px
}
.footer_bottom .col_4 .flex_box{
    gap: 20px;
    margin-top: 30px;
}
.site-footer .grid-container{
    position: relative;
    z-index: 3;
}
.swiper_wrap{
    position: relative;
}
.swiper_wrap .swiper_controls{
    position: absolute;
    left: 100%;
    gap: 5px;
}
.about_page_1 .breadcrumbs{
    position: absolute;
    top: 10px;
    margin-top: 0 !important;
    left: calc(calc(100vw - 1180px) / 2);
}
.about_page_1 .swiper_controls{
    top: 44px;
}
.about_page_3 .swiper_controls{
    top: 217px;
}
.about_swiper_2.swiper:before{
    left: 0;
    width: 100%;
    top: 232px;
    height: 1px;
    position: absolute;
    content: '';
    background: rgba(102, 102, 102, 0.4);
}
.swiper-button-disabled{
    cursor: not-allowed !important;
    opacity: 0.4 !important;
}
.swiper-button-lock{
    display: none !important;
}
.btn_primary:hover:before{
    width: 100%;
}
.ts_03{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.ts_04{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.ts_05{
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn_transparent_new:hover{
    background: var(--primary-color);
    color: #FFF;
}
.terms_child_list .term_item:hover .cont_wrap p.term_title,
.terms_child_list .term_item:hover .cont_wrap h3{
    color: #FFF;
}
.terms_child_list .term_item:hover .cont_wrap{
    background: var(--primary-color);
}
.about_page_6 .item:hover img,
.swiper.homepage_swiper_3 .item:hover img,
section.homepage_5 .col_7:hover img,
section.homepage_5 .item:hover img,
.swiper.homepage_swiper_2 .item:hover img,
.grid_box.grid_4 .term_item:hover img,
.terms_child_list .term_item:hover img{
    transform: scale(1.1);
}
section.homepage_5 .col_7:hover h3,
section.homepage_5 .item:hover h3{
    color: var(--primary-color);
}
.grid_box.grid_4 .term_item:hover .cont_wrap:after{
    width: calc(100% - 32px);
}
.swiper_arrow:hover path{
    stroke: #FFF;
}
.swiper_arrow:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
}
svg path{
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
*:after,
*:before{
    pointer-events: none !important;
}
.play_button_wrap{
    margin-top: 30px;
}
.play_button_wrap .nk_play_button svg{
    position: relative;
    z-index: 3;
}
.play_button_wrap .nk_play_button{
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3333334D;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 20px
}
.play_button_wrap .nk_play_button:before{
    position: absolute;
    content: '';
    height: calc(100% - 14px);
    width: calc(100% - 14px);
    background: #F5F5F5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.play_button_wrap .text{
    width: 152px;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: var(--primary-color);
    text-transform: uppercase
}
.dots_mobile{
    display: none;
}
.news_tax .terms_menu{
    margin-bottom: 40px;
}
.news_tax .terms_menu ul.terms_list > li > a{
    margin: 0;
}
.news_tax .terms_menu ul.terms_list{
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-left: 0;
}
section.post_detail.post_single{
    overflow: unset;
}
section.post_detail.post_single .grid-container{
    display: flex;
    flex-wrap: wrap;
}
.sticky_wrap,
.news_tax .aside_tax{
    position: sticky;
    top: 130px;
}
@media only screen and (min-width: 1200px) {
    .home_banner .swiper-pagination{
        bottom: 84px;
        left: calc(calc(100% - 1200px) / 2);
        text-align: left;
    }
    .home_banner .swiper-pagination > .swiper-pagination-bullet{
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        border-radius: 0 !important;
    }
}
@media only screen and (max-width: 1600px) {
    body.page-template-home .fancybox-toolbar{
        right: 3%;
    }
    .product_detail_1 .prod_info .item strong{
        line-height: 30px;
    }
    .inner_popup{
        width: 700px;
        padding: 50px 50px 31px;
    }
    .inner_popup .cont_wrap{
        padding: 33px 25px;
    }
    .home_3_cont{
        padding: 50px 60px 115px 45px;
    }
    .home_3_cont h4{
        font-size: 36px;
    }
    .home_4:after{
        width: 140px;
        height: 360px;
    }
    .bottom_content:before{
        background-size: cover;
        background-repeat: no-repeat;
        width: 169px;
        height: 297px;
        left: 3%;
        top: -115px;
    }
    .bottom_content:after{
        right: 40px;
        width: 150px;
        bottom: -360px;
    }
    .about_1 .banner_cont p{
        font-size: 18px;
    }
    .about_1 .banner_cont h3{
        font-size: 40px;
    }

    .about_1 .banner_cont h3:nth-child(3){
        margin-bottom: 10px;
    }
    .about_1 .swiper-slide .avt_wrap{
        width: 30%;
    }
    .about_2:before{
        width: 100px;
        height: 100px;
        left: 2%;
    }
    .about_2:after{
        width: 560px;
    }
    .about_3 .img{
        width: 80%;

    }
    .text_sec_3 {
        position: relative;
        padding: 68px 332px 46px 60px;
    }
    .text_sec_3 .title {
        font-size: 40px;
        margin-bottom: 20px;
    }
    .text_sec_3 .sub_title p{
        font-size: 24px;
    }
    .text_sec_3 .cont p{
        font-size: 14px;
    }
    .about_6:after{
        width: 233px;
        height: 520px;
    }
    .about_7 .item_wrap .item:nth-child(odd):before, .about_7 .item_wrap .item:nth-child(even):before{
        width: 150px;
    }
    .about_7 .item_wrap .item:nth-child(odd) .cont_wrap {
        padding: 50px calc(calc(100vw - 1200px)/2) 0 90px;
    }
    .about_7 .item_wrap .item:nth-child(even) .cont_wrap {
        padding: 50px 90px 0 calc(calc(100vw - 1200px)/2);
    }
    .about_7 .item_wrap .item .cont{
        overflow-y: auto;
        text-overflow: ellipsis;
        -webkit-line-clamp: 5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    /*.projects .grid-container:after{*/
    /*    width: 150px;*/
    /*    height: 300px;*/
    /*    background-size: cover;*/
    /*}*/
    /*.projects .grid-container:before {*/
    /*    width: 143px;*/
    /*    height: 350px;*/
    /*    background-size: cover;*/
    /*}*/
    .rec_popup .item{
        margin-bottom: 8px !important;
    }
    .rec_popup .job_description{
        padding: 15px 45px 10px;
    }
    .rec_popup .title, #apply_form .title{
        padding: 15px 0;
        font-size: 25px;
    }
    section.contact:before, section.contact:after{

        width: 550px;
        height: 184px;
    }
    section.contact:after{

        right: 80px;
        top: 203px;
    }
    .policy_2 .policy_wrap .item .title{
        font-size: 30px;
    }
    .policy_2 .policy_wrap .item .cont_wrap{
        top: 80%;
        padding: 0px 30px 0 24px;
    }
    .prod_12 .cont{

        padding: 70px 103px 78px 82px;
    }
    .policy_1:after{
        top: 144px;
        width: 423px;
        height: 196px;
    }
    .policy_1:before {
        width: 150px;
        height: 320px;
        top: 30px;
    }
    #tienichForm .grid-container{
        padding: 30px 50px 30px 100px;
    }
    #tienichForm{
        margin-top: 20px;
    }
    #tienichForm input:not([type='submit']),
    #tienichForm select{
        height: 50px;
    }
    .home_5 .box_slider .cont{
        right: -6%;
    }
    button.slick-next.slick-arrow,
    .home_5 .custom-swiper-btn.next{
        right: 2%;
    }
    button.slick-prev.slick-arrow,
    .home_5 .custom-swiper-btn.prev{
        left: 2%;
    }
    .home_5 .custom-swiper-btn.next:hover svg{
        transform: scale(1.1) translateX(10px);
    }
    .home_5 .custom-swiper-btn.prev:hover svg{
        transform: scale(1.1) translateX(-10px);
    }
    .about_3 .content_sec_3{
        width: 60%;
    }
}
@media only screen and (max-width: 1500px){
    .home_3_cont{
        width: 30%;
    }
    .home_3_cont>h2{
        font-size: 40px;
    }
    .about_3{
        padding: 60px 0 0;
    }
    .about_5,
    .about_4{
        padding: 50px 0;
    }
    .about_6{
        padding: 40px 0 60px;
    }
    .custom-swiper-btn.prev,
    .custom-swiper-btn.prev{
        left: 2%;
    }
    .custom-swiper-btn.next,
    .custom-swiper-btn.next{
        right: 2%;
    }
}
@media only screen and (max-width: 1400px){
    .about_7 .item_wrap .item .cont{
        -webkit-line-clamp: 4;
    }
    .about_7 .item_wrap .item:nth-child(odd):before, .about_7 .item_wrap .item:nth-child(even):before{
        width: 70px;
    }
    #tienichForm input:not([type='submit']), #tienichForm select, #tienichForm textarea{
        height: 45px;
    }
    #tienichForm{
        margin: 0;
        margin-top: 20px;
        /*display: inline-block;*/
        /*max-height: 600px;*/
    }
    #tienichForm img{
        /*margin: 0;*/
        /*max-height: 480px;*/
    }
    #tienichForm textarea{
        height: 90px;
    }
    .about_3 .content_sec_3{
        width: 60%;
    }
    .text_sec_3{
        padding: 68px 273px 46px 60px;
    }
    #tienichForm .grid-container{
        padding: 25px 50px 20px 100px;
    }
    .about_swiper_3{
        padding: 0 80px;
    }
    .section_heading > .sec_title{
        font-size: 30px;
        line-height: 40px;
    }
}
@media only screen and (max-width: 1300px){
    .home_3_cont{
        width: 40%;
        left: 0;
    }
    body.page-template-about .site-content .grid-container, body.page-template-home .site-content .grid-container{
        max-width: 1140px;
    }
}
@media only screen and (max-width: 1199px){
    section.news .news_item .title, section.news_tax .news_item .title{
        margin: 10px 0 0
    }
    .grid-container{
        max-width: 950px !important;
    }
    header .grid-container{
        max-width: 100% !important;
    }
    form#searchform{
        width: 240px;
    }
    div.sub_primary_menu ul > li > a{
        font-size: 14px;
        padding: 12px 14px;
    }
    .home_3_cont{
        width: 50%;
        padding: 40px 30px;
    }
    .home_3_cont>h2{
        font-size: 35px;
        line-height: 40px;
    }
    .home_3_cont>p{
        margin-bottom: 34px;
    }
    .home_2{
        padding: 50px 0 60px;
    }
    .section_heading > .sec_title{
        font-size: 33px;
        line-height: 40px;
    }
    .section_heading{
        margin-bottom: 32px;
    }
    .section_heading > .sec_cont p,
    .section_heading > .sec_cont li,
    .section_heading > .sec_cont a{
        font-size: 15px;
    }
    .home_4{
        padding: 40px 0;
    }
    .home_6{
        padding: 34px 0 25px 0;
    }
    .home_6 .grid-40 .item{
        max-height: 100px;
        margin-bottom: 20px;
    }
    .home_6 .grid-40 .item {
        margin-bottom: 0;
    }
    .home_6 .grid-40 .item_cont .news_title{
        font-size: 14px;
        line-height: 18px;
    }
    .home_6 .box_swiper {
        margin-top: 40px;
        padding: 30px;
    }
    .red_line{
        padding-bottom: 8px;
        margin-bottom: 6px;
    }

    .home_6:after{
        background-size: cover !important;
    }
    .bottom_content:before{
        width: 140px;
    }
    .bottom_content:after{
        width: 100px;
        bottom: -340px;
    }
    .home_5 .home_count .item .icon{
        height: 90px;
        width: 90px;
        top: -50px;
    }
    .home_5 .home_count .item .icon img{
        width: 40px;
    }
    .project_wrap{
        grid-template-columns: 1fr 1fr;
    }
    .project_wrap .item img{
        width: 100%;
    }
    section.contact .grid-55{
        max-width: 700px;
        float: unset;
        margin: 0 auto;
        margin-top: 30px;
        padding: 40px 60px;
    }
    section.contact .grid-40{
        display: flex;
        flex-wrap: wrap;
    }
    section.contact .breadcrumbs,
    section.contact .section_heading{
        width: 100%;
    }
    section.contact .section_heading{
        margin: 0 0 12px 0;
    }
    section.contact .contact_info,
    section.contact .img{
        width: 50%;
    }
    section.contact .img{
        margin-top: -150px;
    }
    section.contact{
        padding: 0 0 40px;
        overflow: hidden;
    }
    section.contact:after{
        display: none;
    }
    .about_4 .history_wrap .item{
        width: calc(50% - 30px);
    }
    .list_recruit tr > *{
        padding: 0 10px;
    }
    .list_recruit th{
        font-size: 16px;
    }
    section.news .news_wrap .news_item{
        grid-row-start: unset;
        grid-row-end: unset;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: unset;
        background: #F5F5F5;
    }
    section.news .news_wrap{
        grid-template-rows: unset;
    }
    section.news .news_wrap .news_item .img_wrap img{
        width: 100%;
        height: 120px;
    }
    section.news .news_wrap .news_item .img_wrap{
        height: auto;
        width: 100%;
        transition: 0.5s ease-in-out;
    }
    section.news .news_item .title, section.news_tax .news_item .title{
        font-size: 18px;
        min-height: 85px;
    }
    section.news .news_wrap .news_item>div{
        width: 100%;
    }
    section.news .news_item .news_cont, section.news_tax .news_item .news_cont{
        padding: 0 20px 20px;
    }

    section.news .news_item svg, section.news_tax .news_item svg,
    section.news .news_item:not(:first-child) .des, section.news_tax .news_item:not(:first-child) .des{
        display: -webkit-box;
    }
    .aside_tax.sticky{
        top: 80px;
    }
    section.news, section.news_tax{
        padding: 0 0 30px;
        overflow: hidden;
    }
    section.news{
        overflow: unset;
    }
    section.post_detail .grid-70{
        width: 100%;
    }
    section.post_detail .grid-30{
        margin-top: 20px;
        width: 100%;
    }
    section.post_detail{
        padding: 0 0 30px;
    }
    section.post_detail .cat_td.more_post .wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .post_detail .more_post .item{
        margin-bottom: 20px;
        width: calc(50% - 10px);
        background: #F6F6F6;
    }
    .post_detail .more_post .item:last-child{
        margin: 0 auto;
    }
    .post_detail .more_post .cont_wrap h3{
        font-size: 16px;
        line-height: 20px;
        min-height: 60px;
        /*overflow: hidden;*/
        /*text-overflow: ellipsis;*/
        /*-webkit-line-clamp: 2;*/
        /*display: -webkit-box;*/
        /*-webkit-box-orient: vertical;*/
    }
    .post_detail .sub_title_news{
        margin-bottom: 0;
    }
    .footer_2_wrap .top span.item_title{
    }
    .footer_2_wrap .top .item{
        padding-right: 10px;
    }
    section.footer_2 .grid-container{
        padding: 40px;
    }
    .footer_1_wrap .item{
        padding-right: 40px;
    }
    .footer_1_wrap .item span.item_title{
        font-size: 17px;
    }
    .single_proj_1 .section_heading{
        margin-bottom: 20px;
    }
    .single_proj_1 .wrap .item:nth-child(1), .single_proj_1 .wrap .item:nth-child(2){
        margin-bottom: 20px;
    }
    .single_proj_1 .grid-50:first-child{
        padding: 0;
    }
    .single_proj_2{
        padding: 30px 0;
    }
    .related_proj .project_wrap .item:last-child{
        grid-column-start: 1;
        grid-column-end: 3;
        width: 50%;
        margin: 0 auto;
    }
    .project_gallery .slider-slide{
        height: 600px;
        padding: 0;
    }
    .project_gallery{
        margin: 15px 0 0;
    }
    .project_gallery .custom-swiper-btn.prev{
        left: 2%;
    }
    .project_gallery .custom-swiper-btn.next{
        right: 2%;
    }
    .aside_tax .tax_wrap .item{
        height: auto;
    }
    .aside_tax .link_1 .item .cont_wrap{
        padding: 10px 20px;
        height: 30%;
    }
    .aside_tax .link_1 .item .cont_wrap h4{
        font-size: 20px;
        margin-bottom: 0;
    }
    .aside_tax .link_1 .item .cont_wrap span{
        font-size: 14px;
    }
    .aside_tax .link_1 .item .cont_wrap > svg{
        right: 10px;
        bottom: 8px;
    }
    section.news .news_item:first-child .news_cont, section.news_tax .news_item .news_cont{
        padding: 0 10px 15px 10px;
    }
    section.news .news_item .title, section.news_tax .news_item .title{
        font-size: 14px !important;
        min-height: 40px;
        line-height: 22px;
        -webkit-line-clamp: 2;
    }
    section.support .section_heading .sec_cont *{
        font-size: 14px;
    }
    section.support .support_wrap .support_title{
        bottom: 0px;
        width: 100%;
        left: 0;
        padding: 12px 20px;
    }
    section.support .support_wrap .support_title h4{
        font-size: 20px;
    }
    section.support .support_wrap svg{
        right: 15px;
        bottom: 10px;
    }
    section.support{
        padding: 0 0 30px;
    }
    .policy_1 .img_wrap{
        margin: 0;
    }
    .condition_policy .item .cont{
        font-size: 14px;
    }
    .policy_3 .filter_wrap #submit{
        font-size: 17px;
        width: 25%;
    }
    .policy_3 .filter_wrap select{
        width: 75%;
    }
    .policy_2{
        padding-top: 30px;
    }
    .policy_2 .policy_wrap .item .title{
        font-size: 20px;
        line-height: 30px;
    }
    .policy_2 .policy_wrap .item .cont{
        font-size: 14px;
        line-height: 24px;
    }
    .policy_2 .policy_wrap .item:hover .cont_wrap{
        top: 20px;
    }
    .policy_2 .policy_wrap .item .cont_wrap{
        padding: 0 10px;
        bottom: -240px;
    }
    .about_2 .sec_sub_title{
        font-size: 18px;
        margin-bottom: 30px;
    }
    .about_2 .sec_sub_title:before{
        bottom: -15px;
    }
    .bottom_content:after,
    .bottom_content:before,
    .about_6:after,
    .about_6:before,
    .about_2:before,
    .policy_1:before,
    .policy_1:after,
    .about_2 .wrap .grid-40:last-child:before{
        display: none;
    }
    .about_3 .content_sec_3{
        height: 100%;
        width: 100%;
    }
    .about_3 .img{
        width: 100%;
    }
    .about_3 .grid-container .grid-50:last-child{
        padding: 0 10px 0 40px;
    }
    .about_3 .grid-container .grid-50:first-child{
        padding-right: 40px;
    }
    .about_3 .grid-container{
        margin-bottom: 30px;
    }
    .about_4 .section_heading{
        padding: 0;
    }
    .about_4 .history_wrap .item_cont .title{
        font-size: 17px;
        padding: 12px 80px;
    }
    .about_6 .des_sec_6 .cont{
        padding: 0;
    }
    .goals_list .item .cont{
        padding: 0 100px;
    }
    .about_7 .item_wrap .item .title{
        font-size: 28px;
        margin-bottom: 0;
    }
    .about_7 .item_wrap .item .cont_wrap{
        padding: 20px 40px !important;
    }
    .about_7 .item_wrap .item .sub_title{
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 20px;
    }
    .about_7 .item_wrap .item .sub_title:before{
        bottom: -10px;
    }
    .about_7 .item_wrap .item .cont{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 17px;
    }
    .about_7 .item_wrap .item .link a{
        padding: 5px 20px;
        font-size: 14px
    }
    .copyright{
        padding: 10px 0
    }
    .development_swiper img{
        width: 100%;
    }
    .development_swiper .cont{
        min-height: 220px;
    }
    .about_1 .banner_cont h3{
        font-size: 28px;
    }
    .about_1 .banner_cont{
        height: 50%;
        width: 90%;
    }
    .about_1 .banner_cont .cont_wrap{
        padding: 50px 0 30px 50px;
    }
    .about_1 .avt_wrap  {
        right: 10%;
    }
    .about_1 .banner_cont p{
        font-size: 16px;
        line-height: 20px;
    }
    .about_1 .banner_cont .cmt{
        margin-top: -85px;
        margin-bottom: 5px;
    }
    .post_detail .title_news{

        font-size: 28px;
        line-height: 36px;
    }
    .post_detail .nav{
        margin-bottom: 15px;
    }
    section.single_support{
        padding-top: 0;
        padding-bottom: 30px;
    }
    .home_5 .home_count{
        margin-top: 70px;
    }
    .home_5 .box_slider{
        margin-top: 40px;
    }
    .home_5 .home_count .item .title{
        font-size: 22px;
    }
    .home_5 .home_count .item .des{
        font-size: 14px;
    }
    .bottom_content{
        padding: 35px 0
    }
    .view_more_btn a{
        margin-top: 25px;
    }
    .section_heading > .sec_cont br{
        display: none;
    }
    .home_5 .box_slider .slider-slide img,
    .home_5 .box_slider .slider-slide{
        max-height: 480px;
        padding: 0;
    }
    .home_5 .box_slider .slider-slide .cont{
        width: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 30px;
        bottom: 0px;
        top: unset;
    }
    /*.home_5 .box_slider .swiper{*/
    /*    padding: 0 calc(calc(100vw - 800px)/2) 125px ;*/
    /*}*/
    .home_5 .box_slider .cont>.proj_addr{
        padding-bottom: 3px;
        margin-bottom: 8px;
    }
    .contact_fix_btn{
        right: 20px;
    }
    .contact_fix_btn svg{
        width: 60px;
    }
    .prod_8{
        padding: 40px 0;
    }
    .prod_8 .wrap .item:not(:first-child) .cont_wrap{
        padding: 10px 15px
    }
    .prod_8 .wrap .item:not(:first-child) .date{
        margin-top: 5px;
    }
    .prod_8 .wrap .item{
        /*max-height: 310px;*/
    }
    .prod_8 .wrap .item:first-child .cont_wrap{
        padding: 20px 25px 30px;
    }
    .prod_3{
        padding: 30px 0;
    }
    .tax_container{
        grid-gap: 25px;
    }
    section.prod_1 img{
        object-fit: cover;
        min-height: 250px;
    }
    .prod_1 .cont{
        left: 50px;
        /*transform: translateX(-50%);*/
    }
    .prod_1 .cont .title{
        font-size: 28px;
        margin-bottom: 5px;
    }
    .prod_2 .section_heading .sec_title{
        padding-right: 0;
        width: 100%;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    .prod_2 .section_heading .sec_title:before{
        bottom: 0;
    }
    .prod_2 .sec_des{
        padding-right: 20px;
        width: 55%;
    }
    .prod_2 .sec_video{
        width: 45%;
        margin-top: 0;
    }
    .prod_2 .sec_video iframe{
        height: 240px;
    }
    .prod_2 .sec_des .sec_cont{
        margin-bottom: 15px;
    }
    .products_list{
        grid-gap: 30px;
    }
    .prod_4{
        padding: 30px;
        padding-top: 20px;
    }
    .prod_4 #prod_filter{
        margin-bottom: 30px;
    }
    .products_list .item .prod_name{
        margin: 12px 0 8px;
    }
    .prod_11 .title{
        font-size: 32px;
        line-height: 40px;
    }
    .prod_11 .cont_wrap .inside{
        padding: 0 30px 0 40px
    }
    .prod_5 ul li>span:last-child{
        font-size: 14px;
        line-height: 22px;
    }
    .prod_6 .wrap_content .item_cn{
        padding: 70px 70px 50px 60px;
    }
    .prod_6 .wrap_content .item_cn h3{
        font-size: 35px;
    }
    .prod_7 .wrap .item .cont_wrap{
        padding: 20px 25px 30px;
    }
    .prod_7 .wrap .item h4{
        font-size: 25px;
    }
    .prod_7 .wrap .item a{
        font-size: 14px;
    }
    .prod_9 .mySwiper2 .swiper-slide .cont{
        font-size: 18px;
    }
    .sticky_policy ul li a{
        width: max-content;
    }
    .sticky_policy ul li{
        margin: 0 15px;
    }
    .sticky_policy ul{
        overflow: scroll;
        justify-content: center;
    }
    .page-template-policy .sticky_policy ul {
        justify-content: center;
    }
    .prod_5 ul{
        padding-right: 30px;
    }
    .prod_5,
    section.prod_6{
        padding: 30px 0;
    }
    .prod_9{
        padding: 30px 0 40px;
    }
    .prod_9 .mySwiper{
        margin: -50px auto -100px;
    }
    .prod_5 .item_title{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .prod_5 .section_heading{
        margin-bottom: 30px;
    }
    .prod_5 .section_heading:before{
        bottom: -15px;
    }
    .prod_5 ul li:last-child{
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .prod_6 .swiper.slider_cn{
        padding-left: 150px;
    }
    .product_detail_1 .grid-70{
        padding: 0 10px;
    }
    .product_detail_1 .prod_info .item{
        font-size: 15px;
        padding: 10px 0;
    }
    .product_detail_1 .prod_info .item strong{
        line-height: 24px;
    }
    .product_detail_1 .prod_colors .color_wrap{
        width: 35px;
        height: 35px;
    }
    .product_detail_1 .prod_colors .color_wrap.active{
        outline-width: 2px;
        outline-offset: -2px;
    }
    .product_detail_1 .prod_colors{
        margin-bottom: 28px;
    }
    a.down_load_btn{
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
    .product_detail_2 ul{
        margin-bottom: 20px;
    }
    .product_detail_2{
        padding: 10px 0 30px 0;
    }
    .product_detail_1 .prod_id{
        font-size: 40px;
    }
    #load_gallery_color{
        min-height: unset;
    }
    .product_detail_1 .grid-container{
        padding-bottom: 15px;
    }
    .product_detail_2 ul.tabs li{
        font-size: 17px;
        line-height: 40px;
        margin-right: 20px;
    }
    .product_detail_1{
        padding-top: 0;
    }
    .projects_2 .project_wrap .item .proj_name{
        font-size: 24px;
    }
    .projects_2 .project_wrap .proj_info{
        padding: 11px 30px 15px;
    }
    #tienichForm .grid-container{
        padding: 25px 50px;
    }
    body.search-results section.prod_4{
        padding-top: 40px;
    }
    .prod_12 .cont{
        width: 100%;
        height: 100%;
        padding: 30px 40px
    }
    .prod_12 .cont .title{
        font-size: 34px;
        padding-right: 0;
    }
    div#primary-menu ul li a{
        padding-left: 15px;
        padding-right: 15px;
    }
    .inside-navigation li > a >span.menu-image-title{
        font-size: 16px;
    }
    .site-logo{
        margin-right: 24px;
        padding-left: 10px;
    }
    form#searchform{
        width: auto;
    }
    .swiper_wrap{
        margin-right: 65px;
    }
    .about_page_1 .col_6:nth-of-type(2){
        padding-left: 38px;
    }
    .swiper.homepage_swiper_2{
        padding: 0 120px;
    }
    .swiper.homepage_swiper_2 .img_wrap{
        height: 450px;
    }
    .swiper.homepage_swiper_2 .swiper-slide.swiper-slide-active .cont_wrap{
        padding: 30px 60px;
    }
    .about_page_6 .item .cont_wrap{
        padding: 60px 30px;
    }
    .about_page_6 .item .cont_wrap h3{
        font-size: 26px;
        line-height: 32px;
    }
    .marquee .flex_box{
        gap: 40px
    }
    .marquee .item{
        width: 160px;
    }
    .site-footer span.item_title{
        font-size: 15px;
    }
    .footer_2_wrap .item ul li a{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .footer_bottom .col_5{
        padding-right: 40px;
    }
    .footer_bottom .col_5 .footer_content, .footer_bottom .col_5 .footer_content p, .footer_bottom .col_5 .footer_content li{
        font-size: 16px;
    }
    .footer_2_wrap .top{
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    section.footer_2 .grid-container{
        padding: 0;
    }
    section.homepage_1 .grid-container{
        display: flex;
    }
    section.homepage_1 .grid-60{
        width: 60%;
    }
    section.homepage_1 .grid-40{
        width: 40%;
    }
    .terms_child_list{
        grid-gap: 70px 24px;
    }
    .terms_child_list .term_item{
        width: calc(100% / 3 - 16px);
    }
    .terms_child_list .term_item .cont_wrap{
        left: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    .terms_child_list .term_item .cont_wrap p.term_title,
    .terms_child_list .term_item .cont_wrap h3{
        font-size: 18px;
    }
    section.prod_3 .grid_4,
    section.homepage_2 .grid_4{
        grid-template-columns: 1fr 1fr;
    }
    section.homepage_3 .homepage_swiper_1_thumb_wrap{
        padding: 0;
    }
    .homepage_swiper_1 .swiper-slide .col_7{
        padding: 30px 40px;
    }
    section.homepage_1 .grid-40{
        padding-left: 24px;
    }
    section.homepage_8 .col_5{
        padding-right: 40px;
    }
    .home_banner .banner_cont{
        left: calc(50% - 300px);
        width: 600px;
        text-align: center;
        padding: 20px 30px;
        bottom: 80px;
    }
    .home_banner img{
        min-height: 450px;
        object-fit: cover;
    }
    .home_banner .banner_cont .banner_title{
        font-size: 32px;
        line-height: 40px;
    }
    .home_banner .banner_cont .banner_des{
        font-size: 20px;
        line-height: 24px;
    }
    .site.grid-container.container.hfeed{
        margin-top: 143px;
    }
    .about_page_1 .breadcrumbs{
        left: calc(calc(100vw - 930px) / 2) !important;
    }
    .about_swiper_3 .swiper_arrow{
        top: calc(50% - 20px);
    }
    .swiper.homepage_swiper_2 .swiper_arrow.prev,
    .about_swiper_3 .swiper_arrow.prev{
        left: 50px;
    }
    .swiper.homepage_swiper_2 .swiper_arrow.next,
    .about_swiper_3 .swiper_arrow.next{
        right: 50px;
    }
    .prod_3{
        padding-bottom: 60px;
    }
}
@media only screen and (max-width: 991px) {
    .prod_3 .grid_3{
        grid-template-columns: 1fr 1fr;
    }
    .about_page_1 .breadcrumbs{
        left: calc(calc(100vw - 700px) / 2) !important;
    }
    section:after, section:before{
        display: none !important;
    }
    .main-navigation .inside-navigation{
        display: none;
    }
    .mobile_btn_gr .menu_wpml{
        margin-right: 15px;
    }
    .mobile_btn_gr .menu_wpml li{
        margin: 0 3px;
        border: 1px solid #FFF;
    }
    #custom_content h1{
        font-size: 32px;
    }
    #custom_content h2{
        font-size: 28px;
    }
    #custom_content h3{
        font-size: 26px;
    }
    #custom_content h4{
        font-size: 22px;
    }
    #custom_content h5{
        font-size: 20px;
    }
    .wrap_search_popup {
        display: block;
        position: fixed;
        background: #353535e8;
        z-index: 9999;
        width: 100%;
        transform: translateY(-200px);
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
        pointer-events: none;
        top: 64px;
    }

    .wrap_search_popup.active {
        transform: unset;
        pointer-events: auto;
    }

    .wrap_search_popup .bg_close {
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        z-index: -1;
    }

    form#searchform {
        width: 100%;
        display: flex;
        padding: 15px 60px 15px 40px;
    }

    input#s {
        width: 100%;
        padding: 13px 30px;
        margin-right: 10px;
        background-color: #232323;
        color: rgba(255, 255, 255, 0.9)
    }

    input#searchsubmit {
        opacity: 1;
        background: var(--primary-color);
    }

    .button_close {
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: flex;
    }

    .button_close path {
        stroke: #FFF;
    }

    .projects_2 .load_more {
        margin-top: 15px;
    }

    .projects_2 {
        padding-bottom: 30px;
    }

    .projects_2 .project_wrap .featured_img img {
        height: auto;
    }

    .projects .grid-container:before,
    .projects .grid-container:after {
        display: none;
    }

    .projects_2 .project_wrap > div {
        width: calc(50% - 10px);
    }

    .projects_2 .project_wrap .item {
        margin-bottom: 20px;
    }

    .projects_2 .project_wrap .item .proj_name {
        font-size: 19px;
    }

    .product_detail_1 .prod_id {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .product_detail_1 .prod_id:before{
        bottom: -10px;
    }
    .product_detail_1 .prod_info .item span {
        width: 100px;
        font-size: 13px;
        min-width: 100px;
    }

    .prod_2 .section_heading .sec_title {
        font-size: 30px;
        line-height: 35px;
    }

    .prod_5 .section_heading > .sec_title {
        width: max-content;
    }

    .prod_5 .grid-50:last-child {
        margin-top: 70px;
    }

    .prod_6 .wrap_content .item_cn {
        padding: 25px;
    }

    .prod_6 .swiper.slider_cn {
        padding-left: 90px;
    }

    .prod_6 .wrap_content .item_cn h3 {
        font-size: 28px;
    }

    .prod_6 .wrap_content .item_cn .content {
        font-size: 14px;
    }

    .prod_9 .mySwiper {
        max-width: 170px;
        padding: 60px 56px;
    }

    .prod_4   .prod_filter input[type='text'] {
        padding: 12px 50px 12px 30px;
    }

    ul#prod_filter li {
        font-size: 17px;
    }

    .products_list {
        grid-gap: 15px;
    }

    .load_more_search, .view_more_products2, .view_more_products,
    .products_list .item .prod_link a {
        font-size: 13px;
        padding: 6px 20px;
    }

    .products_list .item .prod_link {
        margin-bottom: 10px;
    }

    .prod_11 .cont_wrap .inside {
        padding: 0 20px
    }

    .prod_11 .title {
        font-size: 24px;
        line-height: 30px;
    }

    .prod_11 .des {
        font-size: 16px;
    }

    .prod_11 .swiper-slide {
        padding: 40px 0 30px;
    }

    .prod_11 .video_wrap iframe {
        height: 320px;
    }

    .prod_11 .cont_wrap:before {
        height: 90%;
    }

    .prod_5 .item {
        display: block;
        max-height: 300px;
        overflow: auto;
    }

    .prod_5 ul li {
        padding-bottom: 12px;
        margin-bottom: 4px;
    }

    .prod_7 .wrap .item .cont_wrap {
        height: 100%;
        width: 100%;
        top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .prod_8 .wrap {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        max-height: unset;
    }

    .prod_8 .wrap .item:first-child {
        grid-row-start: unset;
        grid-row-end: unset;
    }

    .prod_8 .wrap .item:not(:first-child) {
        max-height: 200px;
        background: #F5F5F5;
        align-items: center;
        overflow: hidden;
    }

    .prod_8 .wrap .item:not(:first-child) .cont_wrap {
        padding: 30px;
    }

    .products_list .item .prod_id {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .prod_9 .mySwiper2 .swiper-slide .cont {
        font-size: 16px;
    }

    .prod_9 .mySwiper2 .swiper-slide .cont_wrap {
        padding: 60px 60px 50px;
    }

    .prod_8 .wrap .item .excerpt {
        -webkit-line-clamp: 3;
    }

    .tax-danh-muc-san-pham header#masthead {
        box-shadow: unset;
    }

    .sticky_policy {
        top: 64px;
    }

    .prod_2 .sec_des {
        margin-bottom: 20px;
    }

    .prod_2 .sec_des,
    .prod_2 .sec_video {
        width: 100%;
        padding: 0 !important;
    }

    li.pd_cat_mobile_menu > a {
        position: relative;
    }

    /*li.pd_cat_mobile_menu > a:before {*/
    /*    position: absolute;*/
    /*    content: url("../images/arrowdown.png");*/
    /*    right: 10px;*/
    /*    top: 50%;*/
    /*    transform: translateY(-50%);*/
    /*    filter: brightness(0) invert(1);*/
    /*    transition: 0.3s ease-in-out;*/
    /*}*/

    /*li.pd_cat_mobile_menu.active > a:before {*/
    /*    transform: translateY(-50%) rotate(-90deg);*/
    /*}*/

    li.pd_cat_mobile_menu > .sub-menu > li,
    li.pd_cat_mobile_menu > .sub-menu > li > a {
        position: relative;
    }

    li.pd_cat_mobile_menu ul.sub-menu{
        margin-left: 20px !important;
    }
    li.pd_cat_mobile_menu > .sub-menu > li  span {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        /*transition: 0.3s ease-in-out;*/
        padding: 0 0 0 10px !important;
        margin: 0;
    }

    li.pd_cat_mobile_menu > .sub-menu > li.active > a:before {
        transform: translateY(-50%) rotate(-90deg);
    }

    #menu_mobile {
        display: block;
        position: fixed;
        height: 100vh;
        width: 50vw;
        right: 0;
        top: 0;
        z-index: 10000;
        background: var(--primary-color);
        transform: translateX(50vw);
        transition: 0.5s ease-in-out;
        overflow: auto;
        opacity: .95;
        padding: 60px 0 50px 40px;
    }

    #menu_mobile.active {
        transform: translateX(0);
    }

    #menu_mobile ul {
        list-style: none;
        margin: 0;
        flex-direction: column;
    }

    #menu_mobile .inner {
        overflow: auto;
        height: 100%;
        margin-right: 0;
        padding-right: 40px;
    }

    #menu_mobile ul li a {
        font-weight: 500;
        color: #FFF;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid #FFF;
        font-size: 16px;
    }

    #mobile_menu.mobile_nav li.pd_cat_mobile_menu ul {
        margin-left: 30px;
    }

    .about_4:after,
    #menu_mobile .last_menu_item {
        display: none;
    }

    .goals_list .item .cont {
        padding: 0 50px;
    }

    .goals_list .item .cont:before {
        width: 50px;
    }

    .goals_list .item:nth-child(odd) .cont:after {
        right: 50px;
    }

    .goals_list .item:nth-child(even) .cont:after {
        left: 50px;
    }

    .about_7 .item_wrap .item .sub_title br {
        display: none;
    }

    .about_7 .item_wrap .item img {
        height: 100%;
        object-fit: cover;
    }

    .home_6 .grid-40 .item:not(:last-child) {

        margin-bottom: 10px !important;
    }
    .home_6 .grid-40 .item {
        max-height: 78px;
    }

    .home_6 .grid-40 .item_cont .news_title {
        font-size: 13px;
        line-height: 15px;
    }

    .site.grid-container.container.hfeed {
        margin-top: 68px;
    }

    section.single_support .title_gr h4 {
        font-size: 15px;
    }

    section.single_support .title_gr {
        padding: 15px;
    }

    section.single_support .title_gr .count {
        margin-right: 15px;
        padding-right: 15px;
    }

    section.single_support .sp .content {
        font-size: 14px;
        line-height: 20px;
        padding: 16px;
    }

    .text_sec_3 {
        padding: 20px 40px;
    }

    .text_sec_3 .title {
        margin-bottom: 0;
        font-size: 32px;
        line-height: 40px;
    }

    .text_sec_3 .cont {
        max-height: 150px;
        overflow: auto;
    }

    .about_4 .history_wrap .item {
        width: calc(50% - 10px);
        margin-bottom: 100px;
    }

    .about_4 .history_wrap .item_cont .content,
    .about_4 .history_wrap .item_cont .title {
        padding: 12px 20px
    }

    .about_4 .history_wrap .item:nth-child(2) {
        margin-top: 100px;
    }

    .text_sec_3 .cont p:not(:last-child) {
        margin-bottom: 12px;
    }

    .about_2 .sec_cont {
        font-size: 14px;
    }

    .section_heading > .sec_title {
        font-size: 30px;
    }

    .about_2 .sec_sub_title {
        font-size: 16px;
        line-height: 20px;
    }

    .text_sec_3 .sub_title p {
        font-size: 20px;
        line-height: 24px;
    }

    .policy_1 .mobile-grid-100 {
        width: 100%;
    }

    .policy_1 .section_heading br {
        display: none;
    }

    .policy_1 .section_heading .sec_title,
    .policy_1 .section_heading {
        margin-bottom: 15px;
    }

    .policy_1 .section_heading .sec_title:before {
        bottom: -8px;
    }

    .policy_1 .section_heading .sec_title {
        display: flex;
        flex-wrap: wrap;
    }

    .policy_1 .section_heading > .sec_title p {
        width: max-content;
        margin-right: 10px;
    }

    .policy_3 .filter_wrap #submit {
        width: 32%;
        font-size: 16px;
    }

    .policy_3 .filter_wrap select {
        width: 68%;
        font-size: 16px;
    }

    .policy_3 .list_wrap table th:last-child,
    .policy_3 .list_wrap table td:last-child,
    .policy_3 .list_wrap table td:first-child,
    .policy_3 .list_wrap table th:first-child {
        padding-left: 20px;
    }

    .policy_3 .list_wrap table td:first-child,
    .policy_3 .list_wrap table th:first-child {
        width: 35%;
    }

    .policy_3 .list_wrap table td {
        font-size: 14px;
    }

    .policy_2 .policy_wrap .item .cont_wrap {
        bottom: -170px;
    }

    .policy_3 .list_wrap table th {
        font-size: 16px;
    }

    .policy_2 .policy_wrap .item .title {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 25px;
    }

    .policy_2 .policy_wrap .item .title:before{
        bottom: -12px;
    }
    .policy_2 .policy_wrap .item .cont {
        font-size: 12px;
    }

    .policy_2 .policy_wrap .item:hover .cont_wrap {
        bottom: unset;
        top: 15px;
    }
    .policy_2 .policy_wrap .item .cont{
        max-height: 150px;
        overflow: auto;
    }
    .load_more, .view_more_supports, .view_more_question, .view_more_products2, .load_more_search, .view_more_products {
        width: 30%;
    }

    section.support .support_wrap .support_title {
        padding: 12px 40px 12px 20px;
    }

    section.support .support_wrap svg {
        width: 25px;
    }

    section.support .support_wrap .support_title h4 {
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .aside_tax .link_1 .item .cont_wrap {
        padding: 10px 20px;
        height: 40%;
    }

    .aside_tax .link_1 .item .cont_wrap h4 {
        font-size: 17px;
        margin-bottom: 0;
    }

    .grid-container {
        max-width: 720px !important;
    }

    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 10px;
    }

    .home_featured_prod_wrap {
        grid-gap: 20px;
    }

    .home_featured_prod_wrap .item .item_cont {
        padding: 8px 12px;
    }

    .home_featured_prod_wrap .item span {
        font-size: 15px;
    }

    .home_3_cont {
        padding: 30px;
        width: 100%;
        text-align: center;
    }

    .home_3_cont > a {
        padding: 8px 30px;
    }

    .home_4_cont {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .home_5 .home_count {
        flex-wrap: wrap;
        margin-top: 70px;
    }

    .home_5 .home_count .item {
        width: calc(50% - 30px);
        margin-bottom: 60px;
    }

    .home_5 .box_slider {
        margin-top: 0;
    }

    section.sub_primary_menu {
        display: none;
    }

    section.contact .img {
        margin-top: -70px;
    }

    section.contact .contact_info .title {
        font-size: 15px;
    }

    section.contact .grid-55 {
        max-width: 550px;
        padding: 40px;
    }

    section.contact .grid-55 .form_title {
        font-size: 30px;
    }

    .list_recruit table, .list_recruit table thead, .list_recruit table tbody, .list_recruit table th, .list_recruit table td, .list_recruit table tr {
        display: block;
    }

    .list_recruit thead {
        display: none !important;
    }

    .list_recruit td {
        padding: 20px !important;
        display: block;
        position: relative;
        padding-left: 40% !important;
        text-align: center;
    }

    .list_recruit td:not(:last-child) {
        border-bottom: 1px solid var(--primary-color) !important;
    }

    .list_recruit tr {
        margin-bottom: 30px;
        height: auto;
        border: 2px solid var(--primary-color);
        background: #fff !important;
    }

    .list_recruit table {
        border: none !important;
    }

    .list_recruit td:before {
        content: attr(data-title);
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
    }

    .recruit {
        padding: 0;
    }

    .breadcrumbs li {
        flex: 0 0 auto;
    }

    .breadcrumbs {
        margin-bottom: 14px !important;
    }

    .breadcrumbs ul {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .project_wrap .item .proj_name {
        font-size: 17px;
    }

    .project_wrap {
        padding: 0 0 40px;
    }

    .footer_2_wrap .top .item {
        width: calc(33.333333% - 10px);
        margin-bottom: 15px;
        padding: 0 5px;
        text-align: left;
    }

    .footer_2_wrap .top {
        flex-wrap: wrap;
        justify-content: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer_2_wrap .top span.item_title {
        padding: 0;
        min-height: unset;
        width: max-content;
        margin: 0 0 15px 0;
        font-size: 13px;
    }

    .site-footer .top span.item_title:before {
        bottom: -8px;
    }

    .aside_tax .tax_wrap .item {
        height: auto;
    }

    .mobile_btn_gr {
        position: fixed;
        z-index: 10001;
        right: 20px;
        top: 10px;
        display: flex;
        align-items: center;
    }

    .mobile_btn_gr .search_open {
        display: flex;
        align-items: center;
    }

    .mobile_btn_gr .search_open path {
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .mobile_btn_gr .search_open.white{
        opacity: 0;
    }
    .lang_mobile.active{
        opacity: 0;
    }
    .mobile_btn_gr .search_open.white path {
        stroke: #FFF
    }

    .hamburger {
        display: block;
        margin-left: 20px;
    }

    .site-logo {
        width: auto;
        border: none;
    }

    .site-logo img {
        width: 150px;
        height: 40px;
    }

    header#masthead {
        box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
    }

    .tax_container .tax_name {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }

    .tax_container .item svg {
        display: none;
    }

    .tax_container .item .tax_name_wrap {
        padding: 8px;
    }

    .prod_4 .section_heading {
        padding: 0;
    }

    .prod_4 .section_heading .sec_title {
        margin-bottom: 20px;
    }

    .prod_4 .section_heading .sec_title:before {
        bottom: -10px;
    }

    .prod_4 .section_heading {
        margin-bottom: 15px;
    }

    .product_detail_2 .content h1{
        font-size: 30px;
    }

    .about_1 .banner_cont {
        height: 65%;
        top: 20%;
    }

    .about_1 .banner_cont .cont_wrap {
        width: 320px;
    }

    .fancybox-container {
        z-index: 99999999;
    }

    #tienichForm .grid-container {
        padding: 25px 20px;
    }

    .footer_2_wrap .bottom .item {
        width: 50%;
    }
    .footer_2_wrap .bottom{
        flex-wrap: wrap;
    }
    .footer_2_wrap .bottom .item:last-child {
        width: 100%;
    }
    .footer_2_wrap ul.social_list{
        justify-content: center;
    }
    .footer_2_wrap ul.social_list li{
        margin: 0 10px;
    }
    .footer_2_wrap .bottom .item:nth-child(3) .item_title{
        margin: 15px auto 30px;
        text-align: center;
    }
    .footer_2_wrap .bottom .item:nth-child(3) .item_title:before{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .development_swiper .cont{
        max-height: 240px;
        overflow: auto;
    }
    .about_5 .box_swiper .text_wrap{
        padding: 32px 20px 32px;
    }
    .lang_mobile{
        margin-right: 10px;
    }
    .lang_mobile .inside_lang a{
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 16px;
        color: #333333
    }
    .lang_mobile .inside_lang img{
        margin-right: 5px;
        width: 25px;
    }
    .sticky_policy ul{
        justify-content: flex-start;
    }
    div#primary-menu ul li{
        padding: 0 !important;
        border: none !important;
    }
    .terms_menu ul.terms_list{
        display: none;
    }
    .terms_menu .select{
        position: relative;
        margin-bottom: 30px;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
        z-index: 999;
    }
    .terms_menu .select .select-styled{
        border: 1px solid #3e3e3e;
        width: 100%;
        padding: 10px 40px 10px 24px;
        position: relative;
    }
    .terms_menu .select .select-styled:before{
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        width: 18px;
        height: 10px;
        position: absolute;
        content: '';
        background-image: url('../images/arrowdown.png');
        background-repeat: no-repeat;
        background-size: cover;
    }
    .terms_menu .select .select-options{
        position: absolute;
        top: 100%;
        display: block;
        width: 100%;
        max-height: 185px;
        overflow: auto;
    }
    .terms_menu .select .select-options > li{
        padding: 6px 24px;
        border: 1px solid #3e3e3e;
        border-top: none;
        background-color: #fff;
    }
    .terms_menu .select .select-options > li.active{
        background-color: var(--primary-color);
        color: #FFF;
    }
    .about_page_1{
        padding-top: 60px;
    }
    .about_page_1 .flex_box{
        margin-bottom: 40px;
    }
    .about_swiper_3{
        padding: 0 60px;
    }
    .about_swiper_3 .swiper-slide h3{
        font-size: 20px;
        line-height: 28px;
        margin-top: 12px;
    }
    .about_page_8{
        padding: 16px 0 !important;    }
    .about_page_4 .grid-container .cont-wrap{
        padding: 20px 30px;
    }
    .swiper_wrap{
        margin-right: 0;
    }
    .swiper_wrap .swiper_controls{
        display: none;
    }
    .sec_cont, .sec_cont p, .sec_cont li{
        font-size: 16px;
        line-height: 24px;
    }
    .about_swiper_1 .counter_wrap{
        font-size: 28px;
        line-height: 34px;
    }
    .about_swiper_1:before{
        top: 43px;
    }
    .about_page_1 .flex_box{
        margin-bottom: 0;
    }
    .about_page_2 .cont_wrap .list_cont .cont:nth-of-type(1){
        right: 10px;
    }
    .about_page_6 .item .flex_box{
        flex-direction: column-reverse !important;
    }
    .about_page_6 .item .img_wrap{
        width: 100%;
    }
    .about_page_6 .item .cont_wrap{
        margin: -140px 40px 0 !important;
    }
    .about_page_6 .item:nth-of-type(odd):before{
        right: -26px;
        top: -26px;
        left: unset;
        bottom: unset;
    }
    .footer_2_wrap .top .item{
        width: calc(100% / 3) !important;
        flex: unset;
    }
    .footer_2_wrap .footer_bottom  > .flex_box{
        flex-wrap: wrap;
    }
    .footer_2_wrap .footer_bottom .col_5{
        width: 50%;
        order: 1;
    }
    .footer_2_wrap .footer_bottom .col_3{
        width: 100%;
        order: 3;
        display: flex;
        padding-right: 0;
        margin-top: 40px;
    }
    .footer_2_wrap .footer_bottom .col_4{
        width: 50%;
        order: 2;
    }
    .footer_bottom .col_5 .social_list{
        gap: 0
    }
    .footer_bottom .col_3 .item{
        width: 50%;
    }
    .footer_bottom .col_3 .item:not(:last-of-type){
        margin-bottom: 0;
    }
    .about_page_2 .cont_wrap .list_cont .cont{
        font-size: 15px;
        line-height: 20px;
    }
    .about_page_2 .cont_wrap .list_cont .cont{
        padding: 6px 12px;
    }
    .section_heading .sec_sub_title{
        font-size: 18px;
        line-height: 26px;
    }
    .terms_child_list .term_item{
        width: calc(50% - 12px);
    }
    .homepage_swiper_1 .swiper-slide .col_7{
        padding: 16px 24px;
    }
    section.homepage_5 .flex_box .col_7 h3,
    .homepage_swiper_1 .swiper-slide .col_7 h3.title{
        font-size: 24px;
        line-height: 32px;
    }
    section.homepage_5 .flex_box{
        flex-wrap: wrap;
    }
    section.homepage_5 .flex_box .col_5,
    section.homepage_5 .flex_box .col_7{
        width: 100%;
        padding: 0;
    }
    section.homepage_5 .flex_box .col_5 .swiper_arrow{
        display: none !important;
    }
    section.homepage_5 .flex_box .col_5{
        margin-top: 40px;
    }
    section.homepage_5{
        padding-bottom: 40px;
    }
    section.homepage_7, section.homepage_8{
        padding: 40px 0;
    }
    body.page-template-home .sec_title{
        margin-bottom: 10px;
    }
    .contact_fix_btn > a{
        margin-top: 10px;
    }
    .terms_menu .select{
        display: flex;
    }
}
@media only screen and (max-width: 767px){
    section.bottom_content .section_heading{
        padding: 0 !important;
    }
    .single_proj_2 .grid-container{
        padding: 0 20px;
    }
    .site-logo img{
        width: 120px;
    }
    .prod_12 .cont{
        position: relative;
        padding: 20px 10px;
    }
    .prod_12 .cont .title{
        font-size: 22px;
    }
    .home_featured_prod_wrap .item svg{
        display: none;
    }
    .single_proj_1 .wrap .item .item_cont{
        -webkit-line-clamp: unset;
        font-size: 16px;
    }
    .single_proj_1 .wrap .item .item_title{
        font-size: 14px;
    }
    #apply_form .nav_bottom input[type="submit"]{
        width: max-content;
        margin-top: 15px;
    }
    .footer_2_wrap ul.social_list li{
        margin: 0 4px;
    }
    .about_6 .des_sec_6 img{
        max-width: 120px;
    }
    .goals_list img{
        max-width: 100px;
    }
    .goals_list p{
        font-size: 18px;
    }
    .goals_list h5{
        font-size: 70px;
        line-height: 70px;
    }
    #custom_content h1{
        font-size: 24px;
    }
    #custom_content h2{
        font-size: 22px;
    }
    #custom_content h3{
        font-size: 20px;
    }
    #custom_content h4{
        font-size: 18px;
    }
    #custom_content h5{
        font-size: 16px;
    }
    .wpcf7-not-valid-tip{
        font-size: 12px;
    }
    .wpcf7 form.invalid .wpcf7-response-output{
        margin-top: 0;
    }
    .footer_2_wrap .top .item:nth-child(5) {
        order: 5;
        text-align: center;
    }
    .footer_2_wrap .top .item:nth-child(5) span.item_title{
        margin: 0 auto 15px auto;
    }
    .footer_2_wrap .top .item:nth-child(5) span.item_title:before{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .footer_2_wrap .top span.item_title{
        width: auto !important;
    }
    .footer_2_wrap .fast_link ul li a{
        font-size: 13px;
    }
    .home_6 .news_wrap{
        flex-direction: column;
    }
    input#searchsubmit{
        display: none;
    }
    form#searchform{
        padding: 0;
    }
    input#s{
        margin-right: 0;
        color: rgba(255, 255, 255, 0.9);
        padding: 15px 30px;
    }
    .inner_popup{
        width: calc(100% - 20px);
        padding: 50px 10px 30px;
    }
    .inner_popup .cont_wrap{
        padding: 20px 15px;
        margin: 0;
        width: 100%;
    }
    .inner_popup .popup_title{
        font-size: 24px;
        line-height: 30px;
    }
    .inner_popup .popup_content{
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .close_popup{
        right: 4px;
        top: 4px;
        width: 30px;
        height: 30px;
    }
    #tienichForm:after{
        display: none;
    }
    #tienichForm .grid-container{
        display: flex;
        flex-direction: column;
    }
    #tienichForm .grid-container .grid-50:first-child{
        order: 2;
    }
    #tienichForm .grid-container .grid-50:last-child{
        order: 1;
    }
    #tienichForm img{
        margin-top: 15px;
    }
    .projects_2 .project_wrap > div{
        width: 100%;
    }
    .about_2{
        padding: 0 0 30px;
    }
    .breadcrumbs{
        margin: 12px 0 12px !important;
    }
    .product_detail_2 .content h1{
        font-size: 24px;
        line-height: 30px;
    }
    .product_detail_1 .prod_id{
        margin-bottom: 25px;
    }
    .product_detail_1 .prod_id:before{
        bottom: -12px;
    }
    #for_tab_cn .item.active .wrap{
        flex-wrap: wrap;
    }
    .prod_6 .swiper.slider_cn{
        padding: 0 70px;
        margin-bottom: 30px;
    }
    .prod_6 .swiper.slider_cn,
    .prod_6 .wrap .wrap_content.for_cn{
        width: 100%;
    }
    .prod_6 .wrap .wrap_content.for_cn:before{
        left: 0;
    }
    .prod_6 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    .tax_container{
        grid-gap: 15px;
        grid-template-columns: 1fr 1fr;
    }
    .tax_container .tax_name{
        font-size: 15px;
        font-weight: 600;
        line-height: 30px;
    }
    .section_heading > .sec_cont p,
    .section_heading > .sec_cont li,
    .section_heading > .sec_cont a{
        font-size: 13px;
        line-height: 20px
    }
    .tax_container .item .tax_name_wrap{
        padding: 4px 8px
    }
    .prod_2 .section_heading .sec_title{
        font-size: 22px;
        line-height: 35px;
    }
    .prod_2 .sec_des, .prod_2 .sec_video{
        margin-top: 0;
    }
    .prod_11 .cont_wrap,
    .prod_11 .video_wrap{
        width: 100%;
    }
    .prod_swiper_2 .wrap{
        flex-wrap: wrap;
        margin: 0 10px;
    }
    .prod_11 .cont_wrap{
        padding: 20px 0;
        border: 2px solid var(--primary-color);
    }
    .prod_11 .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal{
        justify-content: center;
        bottom: 15px;
    }
    .prod_11 .cont_wrap:before{
        display: none;
    }
    .prod_9 .mySwiper2 .swiper-slide .cont{
        font-size: 14px;
        line-height: 20px;
    }
    .prod_8 .wrap .item:first-child .cont_wrap{
        width: 70%;
    }
    .prod_8 .wrap .item .excerpt{
        font-size: 13px;
        line-height: 16px;
    }
    .prod_8 .wrap .item:not(:first-child) .date{
        font-size: 12px;
        margin-top: 0;
    }
    .prod_8 .wrap .item:not(:first-child) .excerpt{
        margin-top: 0;
    }
    .prod_8 .wrap .item:not(:first-child) .cont_wrap{
        padding: 13px;
    }
    .prod_8 .wrap .item:not(:first-child) .img_wrap{
        height: 100%;
    }
    .news_heading .news_link{
        margin: 0 auto;
    }
    .news_heading{
        flex-wrap: wrap;
        margin-bottom: 20px;
        text-align: center;
    }
    .news_heading .section_heading .sec_title{
        margin-bottom: 0;
    }
    .news_link a{
        font-size: 14px;
        padding: 5px 25px;
    }
    .news_heading .section_heading{
        width: 100%;
        margin-bottom: 10px;
    }
    .prod_1 .cont{
        left: 10px;
        width: max-content;
        transform: unset;
        top: 34%;
        padding: 10px 15px
    }
    .prod_1 .cont .title{
        font-size: 22px;
        line-height: 30px;
    }
    .prod_1 .cont .content{
        font-size: 14px;
    }
    .prod_2 .sec_des .sec_cont{
        font-size: 14px;
    }
    .prod_2 .sec_video iframe{
        height: 200px;
    }
    .prod_2 .sec_des .sec_cont p:last-child{
        margin-bottom: 0;
    }
    .prod_2 .sec_des .sec_link a{
        font-size: 13px;
    }
    .prod_4{
        padding: 30px 0;
    }
    .prod_4    .prod_filter .inp_wrap{
        width: 100%;
    }
    ul#prod_filter li{
        font-size: 15px;
        margin: 0 15px 10px ;
    }
    .prod_4   .prod_filter form{
        margin-bottom: 20px;
    }
    .prod_4 #prod_filter {
        overflow: scroll    ;
        max-width: 100%;
        justify-content: flex-start;
    }

    .prod_4 #prod_filter>* {
        flex: 0 0 auto;
    }
    .products_list{
        grid-template-columns: 1fr 1fr;
    }
    .products_list .item{
        margin: 0 auto;
    }
    .load_more, .view_more_supports, .view_more_question, .view_more_products2, .load_more_search, .view_more_products{
        width: auto !important;
    }
    .prod_5 ul{
        overflow: unset;
        max-height: unset;
    }
    section.prod_5 .grid-50:first-child{
        margin-bottom: 20px;
    }
    .prod_7 .wrap .item h4{
        font-size: 16px;
        line-height: 22px;
        width: max-content;
    }
    .prod_7 .wrap .item a{
        font-size: 12px;
        padding: 5px 20px;
    }
    .home_5 .box_slider .slider-slide .cont{
        bottom: unset;
        left: unset;
        position: relative;
        transform: unset;
        right: unset;
        padding: 20px;
    }
    .home_5 button.slick-arrow,
    .home_5 .custom-swiper-btn{
        top: 25%;
    }
    .home_5 .box_slider .slider-slide img{
        max-height: 250px;
    }
    .home_5 .box_slider .slider-slide{
        max-height: unset;
    }
    .home_5 .box_slider .slider-slide .img_wrap{
        position: relative;
    }
    .home_5 .box_slider .slider-slide .img_wrap:before{
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
        top: 0;
        left: 0;
    }
    .home_5 .box_swiper .swiper-slide-active .img_wrap:before{
        display: none;
    }
    .home_5 .box_swiper .swiper-slide:before{
        display: none;
    }
    .home_5 .box_swiper .swiper{
        padding: 0;
    }
    .contact_fix_btn svg{
        width: 50px;
    }
    #menu_mobile{
        width: 100vw;
        transform: translateX(100vw);
    }
    #menu_mobile .last_menu_item{
        display: block;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
        bottom: 5px;
    }
    .swiper-pagination-bullet{
        width: 7px;
        height: 7px;
    }
    .custom-swiper-btn svg{
        width: 15px;
    }
    .home_1 .banner_cont{
        padding: 10px 20px;
        max-width: 40%;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
    }
    .home_1 .banner_cont:before{
        opacity: 0.7;
    }
    .home_1 .banner_cont h1{
        font-size: 16px;
        line-height: 20px;
    }
    .home_2{
        padding: 20px 0 30px;
    }
    .home_featured_prod_wrap{
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .home_featured_prod_wrap .item .item_cont{
        padding: 8px 4px;
    }
    .home_featured_prod_wrap .item span{
        font-size: 14px;
        max-width: 90%;
        width: max-content;
        font-weight: 600;
        letter-spacing: -0.5px;
    }
    .home_5 .home_count .item{
        width: calc(50% - 10px);
        padding: 40px 0px 24px 0px;
        margin-bottom: 45px;
    }
    .home_5 .home_count .item .icon{
        width: 70px;
        height: 70px;
        top: -35px;
    }
    .home_5 .home_count .item .icon img{
        width: 30px;
    }
    .home_6 .grid-60{
        margin-bottom: 20px;
    }
    .home_6 .grid-40 .item{
        margin-bottom: 20px !important;
    }
    .home_6 .grid-40 .item >div{
        width: calc(50% - 10px);
    }
    .view_more_btn a{
        margin-top: 15px;
    }
    .bottom_content .link a, .bottom_content .link span,
    .view_more_btn a,
    .home_4_cont>a:last-child{
        padding: 5px 20px;
        font-size: 14px;
    }
    .home_6 .box_swiper{
        padding: 10px 20px;
    }
    .condition_policy{
        grid-column-gap: 8px;
    }
    .condition_policy .item .cont{
        padding-left: 6px;
    }
    .sticky_policy{
        top: 60px;
    }
    .policy_3 .agency_list{
        padding: 30px 20px;
        padding-bottom: 0;
    }
    .sticky_policy ul li{
        margin: 0 8px;
    }
    .sticky_policy ul li a{
        font-size: 13px;
    }
    .sticky_policy ul{
        justify-content: flex-start;
    }
    .policy_2 .policy_wrap .item:hover .cont_wrap,
    .policy_2 .policy_wrap .item .cont_wrap{
        top: 80%;
        height: auto;
        overflow: auto;
    }
    .policy_2 .policy_wrap .item .title{
        margin-bottom: 8px;
    }
    .bottom_content{
        padding: 35px 0 ;
    }
    .bottom_content:before,
    .bottom_content:after,
    .policy_2 .policy_wrap .item .title:before{
        display: none;
    }
    .policy_3{
        padding: 30px 0 0;
    }
    .policy_2 .policy_wrap .item .cont{
        line-height: 20px;
        max-height: 170px;
        overflow: auto;
        display: none;
    }
    .policy_2 .policy_wrap .item:before, .policy_2 .policy_wrap .item:after{
        height: 22% !important;
        background-color: #7b7b7b7d;
    }
    .policy_2 .policy_wrap{
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    table thead{
        display: none;
    }
    .policy_3 .list_wrap table td{
        display: block !important;
        width: 100% !important;
        padding-left: 40% !important;
        position: relative;
    }
    .policy_3 .list_wrap table td:not(:last-child){
        border-bottom: 1px solid var(--primary-color);
    }
    .policy_3 .list_wrap table tr{
        margin-bottom: 20px;
        border: 2px solid var(--primary-color);
        background: #FFF !important;
        display: block;
        height: auto !important;
    }
    .policy_3 .list_wrap table td:before{
        position: absolute;
        content: attr(data-title);
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    .policy_3 .list_wrap table tr:last-child{
        border: none !important;
    }
    .policy_3 .list_wrap table tr:last-child td{
        padding: 0 10px !important;
    }
    .policy_3 .list_wrap table td.empty{
        font-size: 16px !important;
    }
    .section_heading > .sec_title{
        font-size: 23px;
        line-height: 35px;
    }
    .prod_5 .section_heading > .sec_title{
        width: auto;
    }
    .prod_5 .grid-50:last-child{
        margin-top: 20px;
    }
    ul.nav_tab_cn li{
        padding: 7px 30px;
        font-size: 14px;
        line-height: 18px;
    }
    .home_3_cont{
        padding: 12px 8px 8px;
    }
    .home_3_cont>h2{
        font-size: 20px;
        margin-bottom: 7px;
        line-height: 22px;
    }
    .home_3_cont>p{
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 17px;
    }
    .home_3_cont>a{
        padding: 5px 20px;
        font-size: 14px;
    }
    .home_3 .img_wrap,
    .home_3 .img_wrap img,
    .home_3{
        min-height: 180px;
    }
    .home_4_cont{
        width: 100%;
        height: 100%;
        transform: unset;
        top: 0;
        left: 0;
        padding: 25px 35px;
        text-align: center;
    }
    .home_4{
        padding: 0 0 20px;
    }
    .home_4_cont h3{
        font-size: 20px;
    }
    .section_heading > .sec_title br{
        display: none;
    }
    .policy_3 .filter_wrap #submit{
        width: 100%;
        padding: 8px 30px;
        justify-content: center;
    }
    .policy_3 .filter_wrap select{
        width: 100%;
    }
    .policy_3 .filter_wrap{
        flex-wrap: wrap;
    }
    .aside_tax .link_1 .item .cont_wrap{
        padding: 20px;
        height: 25%;
    }
    .aside_tax .link_1 .item .cont_wrap h4{
        font-size: 22px;
        margin-bottom: 8px;
    }
    section.news .cat_name .name{
        font-size: 16px;
        padding: 8px;
    }
    section.news .news_item .des, section.news_tax .news_item .des{
        -webkit-line-clamp: 3;
        margin-bottom: 10px;
    }
    section.news_tax .grid-container, section.news .all_news_wrap{
        display: block;
    }
    .aside_tax .tax_wrap{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 10px
    }
    .aside_tax .tax_wrap .item{
        flex-direction: column-reverse;
    }
    .aside_tax .tax_wrap .item .tax_img{
        width: 100%;
        height: auto;
    }
    .aside_tax .tax_wrap .item .tax_name{
        padding: 10px ;
        width: 100%;
        text-align: center;
    }
    .aside_tax .tax_wrap .item,
    .project_gallery .swiper-slide{
        height: auto;
    }
    .project_gallery{
        margin: 15px 0 0;
        height: 100%;
    }
    .single_proj_1 .box_swiper{
        height: 250px;
    }
    section.footer_1{
        padding: 20px 0 220px;
    }
    .footer_1_wrap .item{
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    section.footer_1 ul{
        justify-content: center;
    }
    .footer_1_wrap img{
        margin: 0 auto;
    }
    .footer_1_wrap{
        flex-wrap: wrap;
    }
    .footer_1_wrap span.item_title:before{
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .site-footer .bottom span.item_title:before{
        bottom: -8px;
    }
    .footer_2_wrap .bottom .item{
        width: calc(50% - 10px);
        padding: 0 5px;
        text-align: left;
        margin-bottom: 15px;
    }
    .copyright{
        font-size: 14px;
        padding: 15px 0;
    }
    .footer_2_wrap .bottom .item:nth-child(3){
        width: 100%;
    }
    .site-footer span.item_title{
        margin-bottom: 15px;
    }
    .footer_2_wrap .bottom{
        flex-wrap: wrap;
    }
    .footer_2_wrap .top .item{
        width: calc(50% - 10px);
    }
    section.footer_2 .grid-container{
        padding: 20px 10px;
    }
    .single_proj_1 .wrap .item{
        margin-right: 15px;
    }
    .related_proj .project_wrap .item:last-child{

        grid-column-start: unset;
        grid-column-end: unset;
        width: 100%;
        margin: 0 auto;
    }
    .project_wrap{
        grid-template-columns: 1fr;
    }
    .post_detail .more_post .item{
        width: 100%;
    }
    .post_detail .excerpt{
        font-size: 15px;
    }
    .mota.wrap_content iframe{
        max-height: 210px;
    }
    .post_detail .wrap_content ul li, .post_detail .wrap_content p, #custom_content p, #custom_content li{
        line-height: 25px;
    }
    #ez-toc-container{
        padding: 20px;
    }
    .post_detail .nav{
        padding: 8px 0;
        margin-bottom: 15px;
    }
    .post_detail .title_news{
        font-size: 22px;
        line-height: 30px;
    }
    #apply_form .cus_form .file{
        font-size: 10px;
    }
    #apply_form .btn-submit{
        position: relative;
    }
    #apply_form .btn-submit svg{
        display: none;
    }
    #apply_form .nav_bottom .wpcf7-spinner{
        position: absolute;
        top: 50%;
        right: -30px;
    }
    #apply_form .cus_form .box_form >*{
        margin-bottom: 5px;
    }
    #apply_form .cus_form label, .file{
        margin-bottom: 0;
    }
    #apply_form .cus_form{
        padding: 30px 20px 0;
    }
    #apply_form .nav_bottom{
        flex-direction: column;
    }
    #apply_form .cus_form input, #apply_form .cus_form textarea{
        padding: 5px 10px;
        height: 35px;
        font-size: 13px;
        width: 100%;
    }
    #apply_form .cus_form textarea{
        height: 80px;
    }
    .page-template-recruit .fancybox-content{
        margin-top: -40px;
    }
    .rec_popup li{
        font-size: 14px;
        line-height: 18px;
    }
    .rec_popup .item_head{
        font-size: 16px;
        margin-bottom: 0;
    }
    .list_recruit td{
        font-size: 13px;
    }
    .list_recruit td:before{
        font-size: 13px;
    }
    .grid-container{
        max-width: 100%;
    }
    section.map iframe{
        height: 200px;
    }
    section.contact .grid-55 .form_title{
        font-size: 20px;
        line-height: 24px;
    }
    section.contact .grid-55 .form_des{
        font-size: 14px;
        line-height: 20px;
    }
    section.contact .contact_info, section.contact .img{
        width: 100%;
    }
    section.contact .img{
        margin-top: 20px;
    }
    section.contact .grid-55{
        padding: 10px 20px
    }
    .rec_popup .job_description{
        padding: 15px 20px;
    }
    .rec_popup .title, #apply_form .title{
        font-size: 18px;
        padding: 8px 0;
    }
    section.support .support_wrap .support_title h4{
        -webkit-line-clamp: 2;
        line-height: 20px;
        font-size: 12px;
        width: max-content;
        margin-right: 0;
    }
    section.support .support_wrap .support_title{
        padding: 10px 40px 10px 10px;
    }
    section.support .support_wrap svg{
        width: 20px;
        bottom: 0;
        right: 8px;
    }
    .aside_tax{
        margin-top: 20px;
    }
    .aside_tax .link_1 .item:hover .cont_wrap{
        height: 25%;
    }
    .about_2 .wrap{
        display: block;
        margin-top: 0;
    }
    .about_2 .wrap .grid-40:last-child{
        margin-top: 20px;
    }
    .about_3 .grid-container .grid-50{
        padding: 0 10px !important;
        text-align: center;
        margin-bottom: 10px;
    }
    .about_3 .grid-container .title{
        font-size: 28px;
        line-height: 30px;
        margin: 12px 0
    }
    .about_3 .grid-container img{
        margin: 0 auto;
    }
    .about_3{
        padding-top: 30px;
    }
    .about_3 .grid-container .cont p{
        font-size: 14px;
    }
    .about_7 .item_wrap .item:nth-child(odd):before, .about_7 .item_wrap .item:nth-child(even):before,
    .goals_list .item > .empty,
    .about_4:after{
        display: none;
    }
    .about_4 .history_wrap .item{
        width: 100%;
        margin: 0 0 20px 0 !important;
    }
    .about_4 .view_more_history{
        margin-top: 30px;
    }
    .section_heading{
        padding: 0 10px !important
    }
    .goals_list .item > .cont{
        width: 100%;
        padding: 0 40px;
    }
    .goals_list .item{
        margin: 0 0 30px 0!important;
    }
    .goals_list:after,
    .goals_list:before{
        left: 0;
    }
    .goals_list .item .cont:before{
        left: 0 !important;
        right: unset !important;
        width: 30px;
    }
    .goals_list .item .cont:after{
        left: 30px !important;
        right: unset!important;
    }
    .about_7 .item_wrap .item{
        flex-direction: column !important;
    }
    .about_7 .item_wrap .item>div{
        width: 100%;
    }
    .about_7 .item_wrap .item .cont_wrap{
        padding: 20px !important
    }
    .about_7 .item_wrap .item .scrollable{
        max-height: unset;
        display: block;
    }
    .about_1 .banner_cont{
        padding: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    .about_1 .banner_cont .cmt{
        display: none;
    }
    .about_1 .banner_cont .cont_wrap{
        width: 100%;
        padding: 20px 40% 20px 20px;
        box-sizing: border-box;
    }
    .about_1 .banner_cont h3{
        font-size: 20px;
    }
    .about_1 .banner_cont p{
        line-height: 17px;
        font-size: 13px;
    }
    .text_sec_3 .title{
        font-size: 24px;
        line-height: 35px;
    }
    .text_sec_3 .sub_title p{
        font-size: 16px;
        line-height: 20px;
    }
    .about_3 .content_sec_3{
        position: relative;
    }
    .text_sec_3{
        padding: 20px;
        text-align: center;
    }
    .text_sec_3 .cont p{
        font-size: 13px;
        line-height: 17px;
    }
    .development_swiper span.swiper-pagination-bullet{
        width: 12px;
        height: 12px;
    }
    .products_list .item .img_wrap img{
        object-fit: contain;
        height: calc(50vw - 25px);
    }
    .prod_8 .wrap .item:first-child .cont_wrap{
        padding: 15px 15px 0;
    }
    .prod_8 .wrap .item:first-child .title {
        font-weight: 700;
        font-size: 18px;
        line-height: 25px;
        color: #FFFFFF;
    }
    .hts-fixed {
        position: unset !important;
        min-width: 100%;
    }

    .hts-map iframe {width: 100%;height: 300px;}

    .hts-map {
        height: auto;
    }

    .hts-content p {
        font-size: 0.8rem;
    }

    .hts-item:not(:last-child) {
        margin: 0;
    }

    .hts-fixed-over {
        height: 300px;
    }
    section.branches{
        padding-bottom: 40px;
    }
    .hts-title{
        margin-bottom: 15px;
    }
    section.single_recruit_page{
        padding: 30px 0 40px;
    }
    .terms_menu .select{
        width: 100%;
    }
    section.product_quote{
        padding: 40px 0 30px;
    }
    .products_list .item .regular_price{
        margin-bottom: 3px;
        font-size: 22px;
    }
    .products_list .item .discount_price{
        font-size: 14px;
    }
    .post_detail .nav > .day-view{
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    section.author_page .author_meta_wrap{
        flex-direction: column;
    }
    section.author_page .author_meta_wrap .author_meta,
    section.author_page .author_meta_wrap .author_avatar{
        width: 100%;
        padding: 0;
    }
    section.author_page .author_meta_wrap .author_avatar{
        margin-bottom: 15px;
    }
    section.author_page{
        padding: 30px 0 40px;
    }
    body.author section.related_posts{
        padding-bottom: 30px;
    }
    .swiper.related_posts_swiper{
        padding: 0 50px;
    }
    .swiper_pagination_mobile{
        justify-content: center;
        align-items: center;
        display: flex;
        margin-top: 20px;
    }
    .swiper_pagination_mobile .swiper-pagination-bullet{
        background-color: var(--primary-color);
        width: 8px;
        height: 8px;
    }
    .about_page_1 .flex_box{
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    .about_page_1 .flex_box .col_6{
        width: 100%;
    }
    .about_page_1 .flex_box .col_6{
        padding-left: 0;
    }
    .about_page_2 .cont_wrap .list_cont .cont{
        position: unset !important;
        animation: unset !important;
        margin-top: 16px;
    }
    .about_swiper_2 .img_wrap{
        height: 140px;
    }
    .about_swiper_2.swiper:before{
        top: 172px;
    }
    .about_swiper_2 .year{
        font-size: 20px;
        line-height: 28px;
    }
    .about_page_4 .grid-container .cont-wrap{
        padding: 20px 10px;
    }
    .swiper.homepage_swiper_2{
        padding: 0 10px;
    }
    .about_page_6 .item .cont_wrap{
        padding: 20px;
        font-size: 14px;
        margin: -40px 20px 0 !important;
    }
    .swiper.homepage_swiper_2 .cont_wrap h3,
    .about_page_6 .item .cont_wrap h3{
        font-size: 20px;
        line-height: 26px;
    }
    .swiper.homepage_swiper_2 .img_wrap {
        height: 300px;
    }
    .swiper.homepage_swiper_2 .swiper-slide .cont_wrap{
        padding: 10px 20px 20px !important;
    }
    .btn{
        font-size: 14px;
        padding: 8px 12px;
        line-height: 20px;
        min-width: 140px;
    }
    .swiper.homepage_swiper_2{
        margin-bottom: 30px;
    }
    .about_swiper_3{
        padding: 0;
    }
    .about_page_7{
        padding-bottom: 40px;
    }
    .marquee .item{
        width: 120px;
    }
    .marquee .flex_box{
        gap: 20px
    }
    .footer_2_wrap .top .item{
        width: 50% !important;
    }
    .footer_2_wrap .item ul li a{
        text-align: left !important;
    }
    .footer_2_wrap .footer_bottom .col_4,
    .footer_2_wrap .footer_bottom .col_5{
        width: 100%;
    }
    .footer_2_wrap .footer_bottom .col_5{
        padding: 0;
    }
    .footer_bottom .col_5 .social_list{
        justify-content: flex-start;
    }
    .site-footer .footer_2{
        padding: 20px 0 0;
    }
    section.homepage_1 .grid-container{
        flex-wrap: wrap;
        gap: 30px
    }
    section.homepage_1 .grid-60,
    section.homepage_1 .grid-40{
        width: 100%;
        padding: 0 !important;
    }
    section.homepage_1{
        padding: 20px 0 30px;
    }
    .terms_child_list{
        grid-gap: 20px 10px;
        margin: 30px -10px;
    }
    .terms_child_list .term_item .cont_wrap p.term_title,
    .grid_box.grid_4 .term_item .cont_wrap h3,
    .terms_child_list .term_item .cont_wrap h3{
        font-size: 13px;
    }
    .terms_child_list .term_item .cont_wrap{
        position: relative;
        left: 0 !important;
        bottom: unset;
        right: 0 !important;
        transform: unset;
        padding: 6px !important;
    }
    section.prod_3 .grid_4,
    section.homepage_2 .grid_4{
        grid-gap: 20px 10px;
        margin: 30px -10px;
    }
    .grid_box.grid_4 .term_item .img_wrap{
        /*height: 200px;*/
    }
    .grid_box.grid_4 .term_item .cont_wrap:after{
        display: none;
    }
    .grid_box.grid_4 .term_item .cont_wrap{
        position: relative;
        right: 0;
        left: 0;
        bottom: unset;
        padding: 6px;
    }
    .section_heading > .sec_title{
        font-size: 22px;
    }
    .homepage_swiper_1_thumb .icon_wrap{
        width: 70px;
        height: 70px;
    }
    .homepage_swiper_1_thumb .icon_wrap:before {
        width: 60px;
        height: 60px;
    }
    .homepage_swiper_1_thumb span{
        font-size: 14px;
    }
    .homepage_swiper_1.swiper .item > div{
        width: 100% !important;
    }
    .homepage_swiper_1.swiper .item{
        flex-direction: column-reverse;
    }
    section.homepage_5 .flex_box .col_7 .img_wrap{
        height: 250px;
        margin-bottom: 20px;
    }
    section.homepage_5 .flex_box .col_5{
        margin-top: 25px;
    }
    .swiper.homepage_swiper_4 .img_wrap {
        height: 160px;
        margin-bottom: 10px;
    }
    .swiper.homepage_swiper_4 h3{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0;
    }
    section.homepage_5 .flex_box{
        margin: 20px 0 30px;
    }
    .swiper.homepage_swiper_3 .item{
        padding: 12px;
    }
    section.homepage_8 .flex_box{
        flex-wrap: wrap;
    }
    section.homepage_8 .col_5 .section_heading{
        padding: 0 !important;
        margin-bottom: 20px;
    }
    section.homepage_8 .col_5,
    section.homepage_8 .col_7{
        padding: 0 !important;
        width: 100% !important;
    }
    section.homepage_5 .flex_box .col_7 h3, .homepage_swiper_1 .swiper-slide .col_7 h3.title {
        font-size: 20px;
        line-height: 28px;
    }
    .home_banner img{
        aspect-ratio: 425/250;
        min-height: unset;
    }
    .home_banner .banner_cont .banner_title{
        font-size: 20px;
        line-height: 26px;
    }
    .home_banner .banner_cont .banner_des{
        font-size: 14px;
        line-height: 20px;
    }
    .home_banner .banner_cont{
        max-width: calc(100% - 20px);
        right: 10px;
        left: 10px;
        bottom: 30px;
    }
    .contact_fix_btn > a{
        width: 45px;
        height: 45px;
    }
    .swiper.homepage_swiper_2 .swiper_arrow.prev,
    .about_swiper_3 .swiper_arrow.prev{
        left: 15px;
    }
    .swiper.homepage_swiper_2 .swiper_arrow.next,
    .about_swiper_3 .swiper_arrow.next{
        right: 15px;
    }
    .product_detail_1 .prod_info{
        margin-bottom: 20px;
    }
    .dots_mobile{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
    }
    .dots_mobile > .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        background: #333;
    }
    .dots_mobile > .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background: var(--primary-color);
    }
    #products_list_wrap .view_more_products{
        width: max-content !important;
    }
    .footer_2_wrap .footer_bottom .col_4{
        order: 3;
        margin-top: 15px;
    }
    .product_detail_1 .prod_id{
        font-size: 26px;
        line-height: 1.2;
    }
    section[class*='homepage_']:not(.homepage_banner),
    section[class*='about_page_']{
        padding: 40px 0;
    }
    section.homepage_1{
        padding: 20px 0 30px !important;
    }
    .post_detail .nav > .share{
        flex-direction: column;
        align-items: flex-start;
    }
    .post_detail .share ul>*{
        margin: 0 10px 0 0;
    }
    section.homepage_2 .grid_3{
        margin-bottom: 30px;
    }
    .section{
        overflow: hidden !important;
    }
    header.sticky .inside-header,
    header .inside-header{
        padding: 14px 0 !important;
    }
    .project_gallery .slider-slide{
        height: 300px;
        padding: 0;
    }
    .generate-back-to-top{
        right: 22px !important;
    }
    .grid_box.grid_4 .term_item .cont_wrap .term_title{
        font-size: 13px;
    }
}
a.generate-back-to-top{
    background: var(--primary-color) !important;
}
a.generate-back-to-top:hover{
    background: #494949;
}