/*______________________product______________________*/

.products_all {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    width: 100%;
}
.products_all .products_single {
    margin-bottom: 15px;
    display: block;
    width: 90%;
}
.products_all .products_single a {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    display: block;
    color: #111;
    margin: 0;
}
.products_all .products_single a img {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #ccc;
    border-radius: 5px;
    transform: scale(1);
    min-height: 180px;
    width: 100%;
}
.products_all .products_single a:hover img {
    transform: scale(1.5);
}
.products_all .products_single a h3 {
    margin-bottom: 0;
    text-align: center;
    padding: 12px;
    margin-top: 2px;
    font-weight: 400;
    font-size: 16px;
    opacity: 1;
    color: #222;
}
.products_all .products_single a .products_single_text {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #ffbb42d4;
    position: absolute;
    padding: 24px 18px;
    height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    top: 300px;
}
.products_all .products_single a:hover .products_single_text {
    top: 0;
}
.products_all .products_single a .products_single_text h4 {
    text-align: center;
    line-height: 1.4;
    font-size: 16px;
    color: #111;
}
.products_all .products_single a .products_single_text p {
    text-align: center;
    line-height: 1.4;
    font-size: 15px;
    margin: 10px 0;
    color: #333;
}
.products_all .products_single a .products_single_text img {
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    background-color: transparent;
    transform: scale(1);
    object-fit: contain;
    min-height: unset;
    filter: brightness(0.4);
    transform: rotate(-100deg);
    margin: 12px auto;
    display: block;
    height: 36px;
    width: 36px;
}
.products_all .products_single a .products_single_text img:hover {
    filter: brightness(0);
}
.products_all .products_single a:hover .products_single_text img {
    transform: rotate(0deg);
}


.product {
    display: block !important;
    min-height: 250px;
    height: auto;
    width: 100%;
}
.product .address_page{
    background-color: #f5f5f7;
    padding-top: 90px;
}
.product .address_page p{
    padding: 25px 0;
    font-weight: 600;
    font-size: 14px;
    color: #222;
}
.product .address_page p a{
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #222;
}
.product .address_page p a:hover {
    color: #FAA91B;
}
.product .address_page p span{
    font-size: 17px;
    color: #FAA91B;
}




.product .main_title {
    padding: 60px 0;
    width: 100%;
}
.product .main_title img {
    display: inline-block;
    aspect-ratio: 1 / 1;
    float: left;
    width: 65px;
}
.product .main_title h1 {
    display: inline-block;
    max-width: 600px;
    margin-left: 15px;
    margin-top: 10px ;
    font-weight: 600;
    font-size: 32px;
}
.product .main_title p {
    margin-left: 10px;
    margin-top: 14px;
    font-size: 16px;
    display: inline-block;
    float: right;
}
.product .main_title p a {
    background-color: #FAA91B;
    display: inline-block;
    border-radius: 4px;
    margin-left: 20px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 16px;
    color: #222;
}
.product .main_title ul {
    padding: 50px 0 0 0;
    display: table;
    width: 100%;
}
.product .main_title ul li {
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    margin-right: 9px;
    font-weight: bold;
    font-size: 18px;
}
.product .main_title ul li.active {
    border-bottom: 3px solid #FAA91B;
    background-color: #ebf1e9;
}
.product .main_title ul li:hover {
    background-color: #e4ebdf;
}
.product .main_title ul li:after {
    content: '';
    border: 13px solid #FAA91B;
    border-bottom: 0 solid transparent;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    bottom: -18px;
    width: 20px;
    padding: 0;
    right: 0;
    left: 0;
    display: none;
}
.product .main_title ul li.active:after {
    display: block;
}
.product .main_title ul li a{
    display: inline-block;
    padding: 18px 35px;
    outline: none;
    color: #222;
}

.main_product.product_group{
    display: none;
}
.main_product.product_group.active{
    display: block;
}

.main_product .main_pro {
    background-color: #fff;
    padding: 30px 0 70px 0;
    display: block;
    width: 100%;
}
.main_product .main_pro .main_product_all {
    gap: 30px;
    display: grid;
    grid-auto-rows: 4fr;
    grid-template-columns: 6fr 7fr;
}
.main_product .main_pro .main_product_all > :first-child {
    min-width: 100%;
}
.main_product .main_pro .main_product_all .main_product_img {
    background-color: #f5f5f7;
    border-radius: 22px;
    padding: 40px;
    float: left;
    width: 97%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper {
    padding-bottom: 20px;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper .swiper-wrapper {
    min-height: 300px;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper .swiper-slide {

}
.main_product .main_pro .main_product_all .main_product_img img {
    border-radius: 2px;
    min-height: 200px;
    height: auto;
    width: 100%;
}
.main_product .main_pro .main_product_all .main_product_img h2 {
    margin-bottom: 5px;
    text-align: center;
    margin-top: 10px;
    font-size: 17px;
}
.main_product .main_pro .main_product_all .main_product_text {
    background-color: #f5f5f7;
    display: inline-block;
    border-radius: 22px;
    padding: 32px 40px;
    float: right;
    width: 100%;
    overflow: hidden;
}
.main_product .main_pro .main_product_all .main_product_text h2 {
    margin-bottom: 12px;
    padding: 3px 18px;
    position: relative;
    line-height: 1.5;
    font-weight: 600;
    font-size: 28px;
    color: #404040;
}
.main_product .main_pro .main_product_all .main_product_text h2 span {
    background-color: #faa91b;
    border-radius: 50px;
    position: absolute;
    padding: 3px;
    height: 100%;
    left: 0;
    top: 0;
}
.main_product .main_pro .main_product_all .main_product_text p{
    background-color: transparent;
    border-right: 2px;
    line-height: 1.8;
    font-size: 16px;
    padding: 5px 0;
    color: #404040;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper .swiper-pagination {
    bottom: 0;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper .swiper-pagination .swiper-pagination-bullet {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 50px;
    background: #d3d3d3;
    opacity: 1;
    height: 12px;
    width: 12px;
}
.main_product .main_pro .main_product_all .main_product_img .product_img_swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #faaa1a;
    width: 24px;
}



.main_product .main_pro .main_product_text p a:hover{
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #ccc;
}

.main_product .main_pro .main_product_text.opentext p{
    visibility: visible;
    display: block;
    opacity: 1;
}
.main_product .main_pro .main_product_text.opentext p:first-child{
    visibility: hidden;
    display: none;
    opacity: 0;
}

.main_product .text_repeater1 {
    background-color: #f5f5f7;
    padding: 70px 0 10px 0;
    display: table;
    width: 100%;
}
.main_product .text_repeater1 .text_repeater1_title {
    padding: 40px;
    background-color: #fff;
    border-radius: 22px;
    width: 97%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main_product .text_repeater1 .text_repeater1_title h2 {
    padding-bottom: 5px;
    padding-left: 25px;
    padding-top: 5px;
    position: relative;
    line-height: 1.4;
    font-weight: 600;
    font-size: 30px;
    display: block;
}
.main_product .text_repeater1 .text_repeater1_title h2:before {
    content: '';
    background-color: #f29f15;
    border-radius: 50px;
    position: absolute;
    padding: 3px;
    height: 100%;
    left: 0;
    top: 0;
}
.main_product .text_repeater1 .text_repeater1_all {
    display: grid;
    grid-auto-rows: 4fr;
    grid-template-columns: 6fr 7fr;
}
.main_product .text_repeater1 .text_repeater1_all .text_repeater1_text {
    background-color: #fff;
    border-radius: 22px;
    padding: 40px;
    width: 100%;
}
.main_product .text_repeater1 .single_text {
    display: inline-block;
    margin-bottom: 10px;
    height: auto !important;
    float: left;
    width: 100%;
}
.main_product .text_repeater1 .single_text img {
    display: inline-block;
    position: absolute;
    margin-right: 8px;
    margin-top: -4px;
    float: left;
    width: 26px;
    left: 0;
}
.main_product .text_repeater1 .single_text p {
    display: inline-block;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
    font-size: 16px;
}
.main_product .text_repeater1 .single_text p:before {
    content: '';
    background-color: #555;
    position: absolute;
    border-radius: 50px;
    padding: 3px;
    top: 7px;
    left: 0;
}

.main_product .text_repeater2 {
    background-color: #f5f5f7;
    padding: 10px 0 70px 0;
    display: table;
    width: 100%;
}
.main_product .text_repeater2 .text_repeater2_all {
    background-color: #fff;
    border-radius: 22px;
    display: table;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.main_product .text_repeater2 .text_repeater2_title {
    display: inline-block;
    float: left;
    width: 50%;
}
.main_product .text_repeater2 .text_repeater2_title h2 {
    padding-bottom: 5px;
    padding-left: 25px;
    padding-top: 5px;
    position: relative;
    line-height: 1.4;
    font-weight: 600;
    font-size: 30px;
    width: 90%;
}
.main_product .text_repeater2 .text_repeater2_title h2:before {
    content: '';
    background-color: #f29f15;
    border-radius: 50px;
    position: absolute;
    padding: 3px;
    height: 100%;
    left: 0;
    top: 0;
}
.main_product .text_repeater2 .text_repeater2_text {
    display: inline-block;
    float: right;
    width: 50%;
}
.main_product .text_repeater2 .text_repeater2_text .single_text {
    display: inline-block;
    margin-bottom: 16px;
    width: 100%;
}
.main_product .text_repeater2 .text_repeater2_text .single_text p {
    display: inline-block;
    padding-left: 16px;
    position: relative;
    line-height: 1.2;
    font-size: 16px;
}
.main_product .text_repeater2 .text_repeater2_text .single_text p:before {
    content: '';
    background-color: #555;
    position: absolute;
    border-radius: 50px;
    padding: 3px;
    top: 7px;
    left: 0;
}

.main_product .text_repeater3 {
    background-color: #fff;
    padding: 70px 0;
    display: table;
    width: 100%;
}
.main_product .text_repeater3 h3 {
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: 600;
    font-size: 28px;
    display: block;
}
.main_product .text_repeater3 h3:before {
    content: '';
    background-color: #f29f15;
    border-radius: 50px;
    position: absolute;
    padding: 3px;
    height: 100%;
    left: 0;
    top: 0;
}
.main_product .text_repeater3 .feature_poduct {
    background-color: #eeeef0a3;
    backdrop-filter: blur(5px);
    border-radius: 22px;
    padding: 40px;
    display: table;
}
.main_product .text_repeater3 .single_text {
    display: inline-block;
    margin-bottom: 20px;
    float: left;
    width: 100%;
}
.main_product .text_repeater3 .single_text span {
    background-color: #565656;
    display: inline-block;
    border-radius: 50px;
    margin-right: 9px;
    margin-top: 10px;
    padding: 3px;
    float: left;
}
.main_product .text_repeater3 .single_text p {
    display: inline-block;
    line-height: 1.6;
    font-size: 16px;
    float: left;
    width: 30%;
}
.main_product .text_repeater3 .single_text p:last-child {
    width: 70%;
}

.main_product .product_table {
    background-color: #f5f5f7;
    padding: 70px 0;
    display: table;
    width: 100%;
}
.main_product .product_table .product_table_all {
    background-color: #fff;
    border-radius: 22px;
    display: table;
    padding: 40px;
    width: 100%;
}
.main_product .product_table h2 {
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    display: block;
}
.main_product .product_table h3 {
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    display: block;
}
.main_product .product_table .all_table {
    margin-bottom: 30px;
    display: table;
    float: left;
    width: 100%;
}
.main_product .product_table .all_table thead{
    background-color: #FAA91B;
    width: 100%;
}
.main_product .product_table .all_table thead tr {

}
.main_product .product_table .all_table thead tr th {
    border-right: 2px solid #fff;
    text-align: center;
    padding: 20px 5px;
    font-weight: 600;
    font-size: 16px;
}
.main_product .product_table .all_table thead tr th:last-child {
    border-right: 4px solid transparent;
}
.main_product .product_table .all_table tbody {
    background-color: #f0f0f0;
    width: 100%;
}
.main_product .product_table .all_table tbody tr {
    border-right: 2px solid #fff;
    display: table-cell;
}
.main_product .product_table .all_table tbody tr:last-of-type {
    border-bottom: 2px solid transparent;
}
.main_product .product_table .all_table tbody tr th {
    text-align: center;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 16px;
    height: 55px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.main_product .product_table .all_table tbody tr:last-child {
    border-right: 2px solid transparent;
}
.main_product .product_table .all_table tbody tr th:last-child {
    border-bottom: 2px solid transparent;
}

.main_product .resource_bottoms {
    background: #222;
    padding: 70px 0;
    display: table;
    width: 100%;
}
.main_product .resource_bottoms .resource_bottom{
    display: inline-block;
    text-align: center;
    float: left;
    width: 50%;
}
.main_product .resource_bottoms .resource_bottom a{
    box-shadow: 1px 1px 10px rgba(70, 70, 71, 0.25);
    background-color: #fff;
    display: inline-block;
    border-radius: 2px;
    padding: 25px 15px;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto;
    color: #222;
    width: 64%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.main_product .resource_bottoms .resource_bottom a:hover {
    box-shadow: 1px 1px 6px rgba(70, 70, 71, 0.25);
    background-color: #faa91b;
    color: #000;
}
.main_product .resource_bottoms .resource_bottoms_number {
    padding-top: 50px;
    text-align: center;
    display: table;
    width: 100%;
}
.main_product .resource_bottoms .resource_bottoms_number p {
    border-bottom: 1px solid #faa91b;
    display: inline-block;
    font-weight: 600;
    font-size: 28px;
    padding: 10px;
    color: #fff;
}
.main_product .resource_bottoms .resource_bottoms_number p a {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #fff;
}
.main_product .resource_bottoms .resource_bottoms_number p a:hover {
    color: #faa91b;
}

.main_product .video_prodct {
    padding-top: 70px;
    width: 100%;
}

.main_product .video_prodct iframe {
    border: 0 solid #222;
    border-radius: 22px;
    min-height: 580px;
    display: block;
    height: auto;
    width: 100%;
}

.main_product .textmore {
    padding: 70px 0 10px 0;
    display: table;
    width: 100%;
}
.main_product .textmore .textmore_all {
    background-color: #f5f5f7;
    border-radius: 22px;
    padding: 40px;
}

.main_product .textmore h2 {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 30px;
    color: #222;
}
.main_product .textmore h3 {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 30px;
    color: #222;
}
.main_product .textmore h4 {
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 30px;
    color: #222;
}
.main_product .textmore h5 {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 30px;
    color: #222;
}
.main_product .textmore p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 17px;
}
.main_product .textmore img {
    border-radius: 6px;
    margin: 15px 0;
    width: auto;
}


.product .head_cats {
    width: 100%;
}
.product .head_cats .head_cats_img{
    position: relative;
    min-height: 24vh;
    padding: 0 0;
    height: auto;
    width: 100%;
}
.product .head_cats .head_cats_img img{
    width: 100%;
}
.product .head_cats .head_cats_img h1{
    background-color: #ffffffd1;
    position: absolute;
    margin-top: 90px;
    font-weight: 600;
    font-size: 40px;
    color: #545454;
    padding: 45px;
    z-index: 10;
    width: 58%;
    top: 0;
}


.product .more_posts {
    background-color: #ffffff;
    padding: 60px 0 70px 0;
    display: table;
    width: 100%;
}
.product .more_posts h3 {
    margin-bottom: 35px;
    text-align: center;
    font-weight: 600;
    font-size: 34px;
    color: #000;
}
.product .more_posts p {
    margin-bottom: 50px;
    text-align: center;
    font-size: 22px;
    color: #222;
}
.product .more_posts .more_posts_all {
    width: 100%;
}
.product .more_posts .more_posts_all .more_posts_single {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0 12px;
    float: left;
    width: 25%;
}

.product .more_posts .more_posts_all .more_posts_single a {
    padding: 12px 10px 10px 10px;
    border: 1px solid #dddddd;
    background-color: #f5f5f7;
    border-radius: 6px;
    display: table;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.product .more_posts .more_posts_all .more_posts_single a:hover {
    box-shadow: 2px 2px 18px #9393932e;
    background-color: #f5f5f7;

}
.product .more_posts .more_posts_all .more_posts_single:hover a img {
    filter: grayscale(1);

}
.product .more_posts .more_posts_all .more_posts_single a img {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 5px;
    margin: 10px 0;
    float: right;
    width: 100%;
}
.product .more_posts .more_posts_all .more_posts_single.more_posts_single_right a img {
    float: left;
}
.product .more_posts .more_posts_all .more_posts_single .more_posts_single_text {
    float: left;
    width: 100%;
}
.product .more_posts .more_posts_all .more_posts_single .more_posts_single_text p {
    margin-bottom: 2px;
    max-height: 170px;
    text-align: left;
    line-height: 1.6;
    font-size: 15px;
    overflow: hidden;
    color: #333;
}
.product .more_posts .more_posts_all .more_posts_single h4 {
    padding-bottom: 7px;
    position: relative;
    font-weight: 600;
    font-size: 18px;
    display: block;
    color: #222;
}
.product .more_posts .more_posts_all .more_posts_single h4:before {
    content: '';
    left: 0;
    bottom: 0;
    padding: 2px 0;
    position: absolute;
    border-radius: 8px;
    background-color: #FAA91B;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product .more_posts .more_posts_all .more_posts_single:hover h4:before {
    padding: 2px 18px;
}


.popup_form {
    background-color: #6e6e6e38;
    backdrop-filter: blur(9px);
    padding-top: 100px;
    text-align: center;
    overflow: hidden;
    position: fixed;
    z-index: 99;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    display: none;
}
.popup_form .popup_form_back {
    right: 0;
    top: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popup_form .popup_form_back .popup_form_all {
    background-color: #fffffff5;
    border-radius: 12px;
    position: relative;
    margin: 0 auto;
    padding: 15px;
    width: 72%;
}
.popup_form .popup_form_back .popup_form_all .close {
    position: absolute;
    padding: 12px;
    float: right;
    right: 15px;
    top: 25px;
}
.popup_form .popup_form_back .popup_form_all .close span {
    transform: rotate(45deg);
    background-color: #777;
    border-radius: 50px;
    position: absolute;
    padding: 1.5px 15px;
    top:0;
    right: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.popup_form .popup_form_back .popup_form_all .close span:last-of-type {
    transform: rotate(-45deg);
}
.popup_form .popup_form_back .popup_form_all .close:hover span {
    transform: rotate(225deg);
    background-color: #FAA91B;
}
.popup_form .popup_form_back .popup_form_all .close:hover span:last-of-type {
    transform: rotate(-405deg);
}
.popup_form .popup_form_back .popup_form_all .close br {
    display: none;
}
.popup_form .popup_form_back .popup_form_all h3 {
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 26px;
}
.popup_form .popup_form_back .popup_form_all p {
    margin-bottom: 6px;
}
.popup_form .popup_form_back .popup_form_all p:last-of-type {
    display: table;
}
.popup_form .popup_form_back .popup_form_all p span.your-name {
    display: inline-block;
    float: left;
    width: 49.5%;
}
.popup_form .popup_form_back .popup_form_all p span.text-279 {
    display: inline-block;
    float: right;
    width: 49.5%;
}
.popup_form .popup_form_back .popup_form_all p span {
    margin-bottom: 8px;
    width: 100%;
}
.popup_form .popup_form_back .popup_form_all p span input {
    background-color: #ebebeb;
    border-radius: 6px;
    padding: 9px 6px;
    font-size: 15px;
    border: none;
    width: 100%;
}
.popup_form .popup_form_back .popup_form_all p span textarea {
    background-color: #ebebeb;
    border-radius: 6px;
    padding: 8px 6px;
    font-size: 15px;
    border: none;
    width: 100%;
}
.popup_form .popup_form_back .popup_form_all p input.wpcf7-submit {
    background-color: #FAA91B;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border-radius: 6px;
    padding: 10px 45px;
    margin-bottom: 6px;
    font-size: 15px;
    outline: none;
    border: none;
    float: left;
    color: #222;
}
.popup_form .popup_form_back .popup_form_all p input.wpcf7-submit:hover {
    background-color: #d68d1b;
}
.popup_form .popup_form_back .popup_form_all p span.wpcf7-spinner {
    display: inline-block;
    margin-top: 4px;
    height: 28px;
    width: 28px;
    float: left;
}
.popup_form .popup_form_back .popup_form_all .wpcf7-response-output {
    border-radius: 7px;
    padding: 8px;
    width: 100%;
    margin: 0;
}

.popup_form .popup_form_back .popup_form_all .popup_form_text {
    margin-top: 6px;
    display: block;
    width: 100%;
}
.popup_form .popup_form_back .popup_form_all .popup_form_text p {
    display: inline-block;
    font-size: 14px;
    color: #333;
}
.popup_form .popup_form_back .popup_form_all .popup_form_text p:first-child {
    margin-right: 10px;
}
.popup_form .popup_form_back .popup_form_all .popup_form_text p a {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    color: #FAA91B;
}
.popup_form .popup_form_back .popup_form_all .popup_form_text p a:hover {
    color: #d68d1b;
}



.posts_cats {
    width: 100%;
}
.posts_cats .text_mainbar {
    background: #f2f2f2;
    padding: 70px 0;
    display: table;
    width: 100%;
}
.posts_cats .text_mainbar p {
    line-height: 1.6;
    font-size: 16px;
}
.posts_cats .mainbar {
    padding: 70px 0;
    display: table;
    width: 100%;
}
.posts_cats .mainbar .post_mainbar {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    float: left;
    width: 25%;
}
.posts_cats .mainbar .post_mainbar:hover {
    opacity: 0.8;
}
.posts_cats .mainbar .post_mainbar a {
    display: block;
    padding: 8px;
    width: 100%;
}
.posts_cats .mainbar .post_mainbar a .post_mainbar_img {
    width: 100%;
}
.posts_cats .mainbar .post_mainbar a .post_mainbar_img img {
    width: 100%;
}
.posts_cats .mainbar .post_mainbar a .post_mainbar_text {
    background-color: #242a2f;
    padding: 10px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.posts_cats .mainbar .post_mainbar a .post_mainbar_text h5 {
    font-size: 16px;
    color: #f3f3f3;
    height: 50px;
    width: 95%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.posts_cats .mainbar .post_mainbar a .post_mainbar_text img {
    display: inline-block;
    float: right;
    width: 10px;
}

.product .product_bottoms {
    background: #f2f2f2;
    padding: 75px 0;
    display: table;
    width: 100%;
}
.product .product_bottoms .product_bottom{
    display: inline-block;
    text-align: center;
    float: left;
    width: 50%;
}
.product .product_bottoms .product_bottom a{
    background-color: #FAA91B;
    display: inline-block;
    padding: 25px 15px;
    font-weight: bold;
    font-size: 20px;
    margin: 0 auto;
    color: #333;
    width: 55%;
}
.product .product_bottoms .product_bottom:last-child a {
    background-color: #000;
    color: #d9d9d9;
}


.slider_cats {
    min-height: 200px;
    padding: 70px 0 65px 0;
    width: 100%;
}
.slider_cats h6{
    line-height: 1.2em;
    font-weight: 500;
    font-size: 30px;
    display: block;
    color: #222;
    margin: 0;
}
.slider_cats h5{
    font-family: "Teko", sans-serif;
    line-height: 0.9em;
    margin: 6px 0 0 0;
    font-weight: 500;
    font-size: 48px;
    display: block;
}
.slider_cats .swiper_slider_cats {
    width: 100%;
}
.slider_cats .swiper_slider_cats .swiper-slide {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_img{
    padding: 0 45px 0 45px;
    float: right;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_img img{
    border-radius: 4px;
    width: 100%;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_text{
    padding: 0 45px 0 40px;
    float: left;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_text p{
    margin: 15px 0 20px 0;
    text-align: justify;
    font-weight: 400;
    line-height: 1.6;
    font-size: 16px;
    color: #383838;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_text a{
    background-color: #FAA91B;
    border: 2px solid #FAA91B;
    display: inline-block;
    border-radius: 8px;
    padding: 10px 40px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.slider_cats .swiper_slider_cats .swiper-slide .maintenance_box_text a:hover {
    background-color: #fff;
    color: #FAA91B;
}
.slider_cats .swiper_slider_cats .swiper-button-prev{
    background-color: transparent;
    color: #FAA91B;
    height: 48px;
    width: 48px;
    left: -10px;
}
.slider_cats .swiper_slider_cats .swiper-button-next{
    background-color: transparent;
    color: #FAA91B;
    height: 48px;
    width: 48px;
    right: -10px;
}



.products_text {
    background-color: #eee;
    padding: 70px 0;
}
.products_text p {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 16px;
    color: #222;
}
.products_text h1 {
    display: none;
}
.products_text h2 {
    margin: 15px 0 12px;
    font-size: 30px;
    color: #111;
}
.products_text h3 {
    margin: 15px 0 12px;
    font-size: 28px;
    color: #222;
}
.products_text h4 {
    margin: 12px 0 10px;
    font-size: 26px;
    color: #222;
}
.products_text h5,
.products_text h6 {
    margin: 12px 0 10px;
    font-size: 23px;
    color: #444;
}
.products_text a {
    display: inline-block;
}
.products_text ul {

}
.products_text ul li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 16px;
    color: #222;
}
.products_text img {
    border-radius: 4px;
    margin: 20px 0;
    width: auto;
}





.more_post {
    background-color: #fff;
    overflow: hidden;
    padding: 70px 0;
    display: table;
    width: 100%;
}
.more_post h3 {
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 25px;
    display: block;
    color: #222;
}
.more_post h3 span{
    color: #FAA91B;
}
.more_post .main-carousel {
    width: 100%;
}
.more_post .main-carousel .carousel-cell {
    padding: 0 22px;
    height: 330px;
    width: 33.3%;
}
.more_post .main-carousel .carousel-cell a {
    background-color: #f3f3f3;
    display: block;
    width: 100%;
}
.more_post .main-carousel .carousel-cell a img {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
}
.more_post .main-carousel .carousel-cell a:hover img {
    opacity: 0.75;
}
.more_post .main-carousel .carousel-cell a h5 {
    background-color: #242a2f;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 25px 30px 25px 15px;
    font-size: 18px;
    display: block;
    color: #f1f1f1;
}
.more_post .main-carousel .carousel-cell a span {
    position: absolute;
    right: 12px;
    top: 24px;
}
.more_post .main-carousel .carousel-cell a span img {
    width: 12px;
}
.more_post .main-carousel .carousel-cell a:hover h5 {
    background-color: #FAA91B;
    display: block;
    color: #222;
}
.more_post .main-carousel .flickity-prev-next-button.previous {
    background-color: transparent;
    color: #FAA91B;
    height: 80px;
    width: 80px;
    left: -45px;
}
.more_post .main-carousel .flickity-prev-next-button.next {
    background-color: transparent;
    color: #FAA91B;
    height: 80px;
    width: 80px;
    right: -45px;
}



/*______________________comments______________________*/
.comment_box {
    background-color: #f5f5f7;
    border-radius: 22px;
    margin-bottom: 70px;
    display: block;
    padding: 40px;
}
.comment_box h3.comments-title {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 30px;
    color: #222;
}

.comment_box ol.comment-list {
    display: block;
    width: 100%;
}
.comment_box ol.comment-list li {
    display: block;
    width: 100%;
}
.comment_box ol.comment-list li .comment-body {
    background-color: #e4e4e4;
    margin-bottom: 6px;
    border-radius: 8px;
    max-width: 600px;
    padding: 12px;
}
.comment_box ol.comment-list li ol {
    margin-bottom: 20px;
    padding-left: 20px;
    display: block;
}
.comment_box ol.comment-list li ol li {

}
.comment_box ol.comment-list li ol li .comment-body {
    background-color: #cfcfcf;
}
.comment_box ol.comment-list li .comment-body .comment-author {
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}
.comment_box ol.comment-list li .comment-body .comment-author img {
    border-radius: 50%;
}
.comment_box ol.comment-list li .comment-body .comment-author .fn {
    pointer-events: none;
    font-style: normal;
    margin-left: 8px;
    font-size: 16px;
    color: #222;
}
.comment_box ol.comment-list li .comment-body .comment-author a {
    pointer-events: none;
    font-style: normal;
    font-size: 16px;
    color: #222;
}
.comment_box ol.comment-list li .comment-body .comment-author span {
    display: none;
}
.comment_box ol.comment-list li .comment-body .comment-meta {
    margin-bottom: 8px;
    display: block;
    width: 100%;
}
.comment_box ol.comment-list li .comment-body .comment-meta a {
    font-size: 14px;
    color: #555;
}
.comment_box ol.comment-list li .comment-body p {
    margin: 15px 0;
    font-size: 17px;
}
.comment_box ol.comment-list li .comment-body .reply {

}
.comment_box ol.comment-list li .comment-body .reply a {
    font-size: 15px;
    color: #f29f14;
    display: block;
}

.comment_box .comment-respond {

}
.comment_box .comment-respond h3#reply-title {
    border-top: 2px solid #fff;
    padding-top: 15px;
    font-size: 26px;
    display: block;
    margin: 15px 0;
    color: #222;
}
.comment_box .comment-respond form {
    display: table;
    width: 100%;
}
.comment_box .comment-respond form .comment-notes {
    font-size: 14px;
    margin: 12px 0;
}
.comment_box .comment-respond form .logged-in-as {
    font-size: 14px;
    margin: 12px 0;
}
.comment_box .comment-respond form .comment-form-comment {
    display: inline-block;
    float: left;
    width: 48%;
}
.comment_box .comment-respond form .comment-form-comment textarea {
    border: 1px solid #eee;
    border-radius: 12px;
    min-height: 200px;
    padding: 10px;
    width: 100%;
}
.comment_box .comment-respond form .comment-form-comment label {
    margin-bottom: 6px;
    font-size: 17px;
    color: #444;
}
.comment_box .comment-respond form .comment-form-author {
    display: inline-block;
    margin-bottom: 15px;
    float: right;
    width: 50%;
}
.comment_box .comment-respond form .comment-form-author label {
    margin-bottom: 6px;
    font-size: 17px;
    color: #444;
}
.comment_box .comment-respond form .comment-form-author input {
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
.comment_box .comment-respond form .comment-form-email {
    display: inline-block;
    float: right;
    width: 50%;
}
.comment_box .comment-respond form .comment-form-email label {
    margin-bottom: 6px;
    font-size: 17px;
    color: #444;
}
.comment_box .comment-respond form .comment-form-email input {
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    padding: 10px;
    width: 100%;
}
.comment_box .comment-respond form .comment-form-url {
    display: none;
}
.comment_box .comment-respond form .comment-form-cookies-consent {
    display: inline-block;
    font-size: 15px;
    margin: 15px 0;
    float: right;
    width: 50%;
}
.comment_box .comment-respond form .form-submit {
    display: inline-block;
    float: right;
    width: 50%;
}
.comment_box .comment-respond form .form-submit .submit {
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 2px solid #f29f15;
    background-color: #f29f15;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 17px;
    color: #222;
}
.comment_box .comment-respond form .form-submit .submit:hover {
    background-color: #fff;
    color: #f29f15;
}

