*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li{list-style: none;}
:root{
    --primary-color:#ff7a01;
}
a{
    text-decoration: none;
}
.subtitle{
    color:var(--primary-color);
    text-transform:uppercase;
    font-size:1rem;
    letter-spacing:0;
}
.content{
    max-width:1220px;
    margin:0 auto;
}
 .flex{
    display:flex;
}
 .between{
    justify-content:space-between;
}
.center{
    text-align:center;
}
.primary-btn{
    display: inline-block;
    width: 185px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    color: white;
}


.headline{text-align:center;}
.headline .title{margin-top: 20px;font-size: 48px;}


/* #region public header Start */

 header.header .content{
    max-width:1220px;
}

header.header *{
    font-weight: 600;
}
header.header ul{
    padding:0;
    margin:0;
}
header.header  li{
    list-style:none;
}
header.header a{
    text-decoration:none;
}
header.header  .icon{
    position:relative;
    display:inline-block;
    content:'';
    background-size:contain;
    background-repeat:no-repeat;
}

header.header .fastlinks .header-nav_item{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
}
header.header .header_search{
    outline: none;
    border: 0;
    border-bottom: 1px solid #ececec;
    width: 150px;
    height: 30px;

}
header.header  .icon_search{
    width: 18px;
    cursor:pointer;
    margin-right:0;
    height:18px;
    background:url(../../assets/img/search.png) center no-repeat;
    background-size: cover;
}
header.header  .button_red{
    display:inline-block;
    background-color:var(--primary-color);
    font-size:16px;
    line-height:1.3rem;
    color:#fff;
    padding:12.5px 35px;
    width: 153px;
    text-align: center;
    border-radius:5rem;
    border:1px solid transparent;
    transition:all 0.2s;
    cursor:pointer;
    text-transform:uppercase;
}
header.header  .button_red:disabled{
    background:#ccc;
    cursor:context-menu;
}
 header.header .button_red:not(:disabled):hover{
    background:unset;
    border:1px solid black;
    background-color:black;
    color:white;
}
 header.header .header-contact{
    border-bottom:1px solid #e8e8e8;
    background-color:white;
}
 header.header .header-contact>.content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:5.65rem;
}
 header.header .header-contact p{
    color:rgba(30, 30, 30, 0.7);
    font-size:0.8rem;
    line-height:1.05rem;
    white-space:nowrap;
    font-weight:400;
    margin-bottom:0.2rem;
}
 header.header .header-contact span{
    color:#231815;
    font-weight:500;
    font-size: 15px;
}
 .header-contact_left a{
    text-indent:-99999999px;
    display:inline-block;
    width:12rem;
    height:4rem;
}
 header.header .header-contact .header-contact_right{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:50%;
}
 header.header .header-contact .header-contact_right .icon_email{
    margin-right:14px;
    top:3px;
}
 header.header .header-contact .contact_right-item{
    display:flex;
    align-items:center;
}
 header.header .header-contact .button_red{
    padding:13px 29px;
    box-shadow:none;
}
 .header-main{
    position:relative;
    z-index:60;
    box-shadow:0 5px 10px rgba(0, 0, 0, 0.1);
    background:white;
}
 .header-main>.content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:3.8rem;
}
 .header-main div.menu-header-container>ul{
    display:flex;
    align-items:center;
    line-height:2.8rem;
}
 .header-main div.menu-header-container>ul>li:last-of-type{
    margin-right:0;
}
 .header-main li{
    color:black;
    transition:all 0.2s;
}
 .header-main .header-nav{
    width:100%;
}
 .header-main li a{
    font-size:1rem;
    font-weight:normal;
    line-height:3.9rem;
    display:inline-block;
    text-align:left;
    color:#231815;
    margin-right:5rem;
    font-weight:600;
    text-transform:uppercase;
    border-bottom:2px solid transparent;
    transition:all 0.3s ease;

}
 .header-main li a:hover,.header-main li.current-menu-item a{
    color:var(--primary-color);
    border-bottom:2px solid var(--primary-color);
}
 .fastlinks ul li{
    float:left;
}
 header.header{
    top:0;
    left:0;
    right:0;
    z-index:99;
    transition:all 0.5s ease;
    position:sticky;
    top:-91px;
}
 nav.header-nav ul.menu>li{
    position:relative;
}
 nav.header-nav ul.sub-menu{
    position:absolute;
    min-width:15rem;
    background:white;
    border-radius:1rem;
    padding:0 1rem;
    box-shadow:0 0 15px rgb(0 0 0 / 10%);
    z-index:10;
}
 header.header .header-main li ul li{
    margin-bottom:0.2rem;
}
 header.header .header-main li ul{
    visibility:hidden;
    overflow:hidden;
    max-height:0;
}
 header.header .header-main li ul li a{
    color:#242424!important;
    display:block;
    padding: 1.2rem  0.8rem;
    transition:all 0.2s ease;
    border-radius:1rem;
    font-size:0.9rem;
    margin-right:0;
    line-height:2rem;
    border-bottom:none;
}
 header.header .header-main li ul li a:hover{
    background-color:#f5f5f5;
    color:var(--primary-color)!important;
    border-bottom:none;
}
 header.header .header-main li ul li:first-child{
    margin-top:1rem;
}
 header.header .header-main li ul li:last-child{
    margin-bottom:1rem;
}
 header.header .header-main ul.menu>li:hover ul{
    visibility:visible;
    max-height:100rem;
}
 #gtranslate_wrapper{
    transform:translateY(-50%);
}
 #gtranslate_wrapper .switcher .option{
    position:absolute;
}
 #gtranslate_wrapper .switcher .option a{
    line-height:1;
    display:flex;
    align-items:center;
    gap:0.2rem;
    width:100%;
}
 #gtranslate_wrapper .switcher .selected a{
    line-height:1;
}
/*! CSS Used from: https://www.cn-rootsblower.com/wp-content/themes/sytech/assets/css/ipad.css */
 @media screen and (min-width: 768px) and (max-width: 1550px){
     header.header .content,.content{
        max-width:1170px;
    }
     .header-main li a{
        font-size:0.9rem;
    }
     .button_red{
        padding:8px 25px;
        font-size:0.85rem;
    }
     header.header .header-contact p{
        font-size:0.7rem;
    }
}
 @media screen and (min-width: 768px) and (max-width: 1280px){
     header.header .content,.content{
        max-width:1120px;
    }
     header.header .header-contact .header-contact_right{
        width:auto;
        gap:1rem;
    }
     .header-main li a{
        margin-right:2rem;
    }
}
 @media screen and (min-width: 768px) and (max-width: 1160px){
     header.header .content,.content{
        max-width:1000px;
    }
     .header-main div.menu-header-container>ul>li{
        margin-right:1rem;
    }
}
 @media screen and (min-width: 768px) and (max-width: 1040px){
     header.header .content,.content{
        max-width:875px;
    }
     .header-main li a{
        font-size:0.9rem;
    }
}
 @media screen and (min-width: 768px) and (max-width: 900px){
     header.header .content,.content{
        max-width:100%;
        padding-right:1.2rem;
        padding-left:1.2rem;
    }
     .header-main li a{
        font-size:14px;
    }
     .header-main div.menu-header-container>ul{
        margin-right:0.5rem;
        column-gap:0.7rem;
    }
     .icon_search{
        margin-right:0.5rem;
    }
}
/*! CSS Used from: https://www.cn-rootsblower.com/wp-content/themes/sytech/assets/css/ipad2.css */
 @media screen and (min-width: 768px) and (max-width: 1550px){
     header.header .header-contact > .content{
        height:5.25rem;
    }
     .icon_search{
        height:1.2rem;
        width:1.2rem;
    }
     .header-main div.menu-header-container>ul{
        line-height:2.5rem;
    }
     nav.header-nav ul.sub-menu{
        min-width:11.25rem;
        padding:0 0.75rem;
        border-radius:0.75rem;
    }
     header.header .header-main li ul li a{
        font-size:12px;
        padding:0.6rem 1.125rem;
        border-radius:0.75rem;
    }
}
/*! CSS Used from: https://www.cn-rootsblower.com/wp-content/themes/sytech/assets/css/mobile.css */
 @media screen and (max-width: 786px){
     .content{
        padding:0 1.2rem;
    }
     header.header{
        top:0;
        position:sticky;
        z-index:1000;
    }
     header.header .header-contact{
        display:none;
    }
     header.header .header-contact p{
        font-size:13px;
        text-align:center;
    }
     header.header .header-contact .header-contact_right{
        display:none;
    }
     .header-main>.content{
        height:auto;
    }
     .header-main .header-nav{
        position:fixed;
        top:0;
        left:0;
        width:75%;
        height:100%;
        background-color:white;
        box-shadow:0 0 15px rgba(0, 0, 0, 0.1);
        padding:4rem 2rem;
        display:block;
        z-index:10;
        left:-100%;
        transition:all 0.3s;
        overflow-x:hidden;
    }
     .header-main div.menu-header-container>ul{
        display:block;
        column-gap:unset;
        line-height:unset;
        width:100%;
    }
     .header-main div.menu-header-container>ul li a{
        font-size:16px;
        color:#333;
        line-height:4.5rem;
        margin-top:0;
        width:100%;
        display:inline-block;
        display:block;
        border:none;
        margin-right:0;
        max-width:unset;
    }
     .header-nav>div{
        width:100%;
    }
     header.header.video:not(.sticky) .header-main li a{
        color:#333;
    }
     .fastlinks ul li{
        float:unset;
        color:#333;
    }
     .fastlinks ul li:nth-of-type(1){
        display:none;
    }
     .button_red{
        font-size:14px;
        padding:8px 25px;
        margin-top:2rem;
    }
     header.header .header-main nav.header-nav ul.sub-menu{
        position:unset;
        max-height:unset;
        visibility:visible;
        display:none;
        box-shadow:none;
    }
     header.header .header-main li ul li a{
        padding:0;
    }
     .header-main div.menu-header-container ul.sub-menu li a{
        margin-bottom:0;
    }
     nav.header-nav ul.menu>li.menu-item-has-children{
        position:relative;
    }
     nav.header-nav ul.menu>li.menu-item-has-children:after{
        width:15px;
        height:15px;
        content:"";
        background:url('https://www.cn-rootsblower.com/wp-content/themes/sytech/assets/img/plus.svg') no-repeat center;
        background-size:contain;
        position:absolute;
        right:0px;
        top:28px;
    }
     header.header .header-main li ul li a:hover{
        background-color:transparent;
    }
     header.header .header-main li ul li:first-child{
        margin-top:0;
    }
     header.header .header-main li ul li:first-child a{
        margin-top:0;
    }
     .header-main div.menu-header-container>ul>li{
        margin-right:0;
    }
     .header-main{
        padding:15px 0;
    }
     #gtranslate_wrapper{
        transform:translateY(0%);
    }
}
/*! CSS Used from: https://www.cn-rootsblower.com/wp-includes/css/dist/block-library/style.min.css?ver=6.1.1 ;
 media=all */
 @media all{
     ul{
        box-sizing:border-box;
    }
}
/*! CSS Used from: Embedded */
 .switcher{
    font-family:Arial;
    font-size:12pt;
    text-align:left;
    cursor:pointer;
    overflow:hidden;
    width:173px;
    line-height:17px;
}
 .switcher a{
    text-decoration:none;
    display:block;
    font-size:12pt;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
}
 .switcher a img{
    vertical-align:middle;
    display:inline;
    border:0;
    padding:0;
    margin:0;
    opacity:0.8;
}
 .switcher a:hover img{
    opacity:1;
}
 .switcher .selected{
    background:#fff linear-gradient(180deg, #ffffff 0%, #fff 70%);
    position:relative;
    z-index:9999;
}
 .switcher .selected a{
    border:1px solid var(--primary-color);
    color:var(--primary-color);
    padding:3px 5px;
    width:161px;
}
 .switcher .selected a:after{
    height:24px;
    display:inline-block;
    position:absolute;
    right:10px;
    width:15px;
    background-position:50%;
    background-size:11px;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%230055a6'/></svg>");
    background-repeat:no-repeat;
    content:""!important;
    transition:all .2s;
}
 .switcher .selected a:hover{
    background:#ffffff;
}
 .switcher .option{
    position:relative;
    z-index:9998;
    border-left:1px solid var(--primary-color);
    border-right:1px solid var(--primary-color);
    border-bottom:1px solid var(--primary-color);
    background-color:#ffffff;
    display:none;
    width:171px;
    max-height:198px;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    overflow-y:auto;
    overflow-x:hidden;
}
 .switcher .option a{
    color:var(--primary-color);
    padding:3px 5px;
}
 .switcher .option a:hover{
    background:#fff;
}
 .switcher .option a.selected{
    background:#fff;
}
 .switcher .option::-webkit-scrollbar-track{
    -webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.3);
    border-radius:5px;
    background-color:#f5f5f5;
}
 .switcher .option::-webkit-scrollbar{
    width:5px;
}
 .switcher .option::-webkit-scrollbar-thumb{
    border-radius:5px;
    -webkit-box-shadow:inset 0 0 3px rgba(0,0,0,.3);
    background-color:#888;
}
 #google_translate_element2{
    display:none!important;
}

/* public header End */
/* #endregion */

/* #region public footer Start */

footer.footer .advertisement{
    width: 100%;
    height: 300px;
    background: var(--primary-color) url(../../assets/img/temp-advertisement.png) center no-repeat;
    background-size: cover;
}
footer.footer .advertisement .content>div{
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: center;
    align-items: start;
    gap: 20px;
}
footer.footer .advertisement .footer_title{
    font-size: 43px;
    color: white;
    font-weight: 500;
}
footer.footer .advertisement .footer_text{
    color:white;
    opacity: .8;
    line-height: 30px;
}
footer.footer .advertisement .primary-btn{
    transition: all .3s;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}
footer.footer .advertisement .primary-btn:hover{background-color: black;color: white;}
 footer.footer .content{
    max-width:1220px;
}

footer.footer ul{
    padding:0;
    margin:0;
}
footer.footer li{
    list-style:none;
}
footer.footer a{
    text-decoration:none;
}
footer.footer input{
    vertical-align:middle;
    outline:none;
    border:none;
}
footer.footer .icon{
    position:relative;
    display:inline-block;
    content:'';
    background-size:contain;
    background-repeat:no-repeat;
}

footer.footer input[type="submit"]{
    display:inline-block;
    background-color:var(--primary-color);
    font-size:16px;
    line-height:1.3rem;
    color:#fff;
    padding:12.5px 35px;
    border-radius:5px;
    border:1px solid transparent;
    transition:all 0.2s;
    cursor:pointer;
    text-transform:uppercase;
}
footer.footer input[type="submit"]:disabled{
    background:#ccc;
    cursor:context-menu;
}
footer.footer input[type="submit"]:not(:disabled):hover{
    background:unset;
    border:1px solid var(--primary-color);
    background-color:transparent;
    color:var(--primary-color);
}
 footer.footer{
    position:relative;
    z-index:10;
    background-color:#f7f7f7;
}
 footer.footer .footer_main{
    display:flex;
    justify-content:space-between;
    padding:4rem 0 6rem 0;
}
footer.footer .footer_main *{
    font-weight: 600;
}
 footer.footer .slide-obj li{
    line-height:2.5rem;
}
 footer.footer .slide-obj a{
    font-size:1rem;
    line-height:1.8rem;
    color:#6f7275;
    transition:all 0.2s ease;
}
 footer.footer .slide-obj a:hover{
    color:var(--primary-color);
}
 footer.footer .slide-obj p{
    font-weight:500;
    font-size:16px;
    line-height:1.5rem;
    color:#808080;
    font-weight:400;
    margin-bottom:1.5rem;
}
 footer.footer .slide-obj p>strong{
    display:block;
    margin-bottom:1.2rem;
    font-weight:600;
    font-size:1.4rem;
    line-height:1rem;
    text-transform:uppercase;
    color:#282828;
    font-family:'Oswald', sans-serif;
}
 footer.footer .slide-obj.contact a.button{
    color:black;
    text-transform:uppercase;
    font-size:18px;
    display:block;
    padding:0.8rem 1.9rem;
    border:1px solid var(--primary-color);
    border-radius:50px;
    transition:all 0.3s;
    font-weight:600;
    text-align:center;
}
 footer.footer .slide-obj.contact a.button:hover{
    background-color:var(--primary-color);
    color:white;
}
 footer.footer ul.share{
    display:flex;
    gap:10px;
    /* margin-top:30px; */
}
 footer.footer ul.share li{
    position: relative;
    flex-shrink:0;
    width:43px;
    height:43px;
    border-radius:50%;
    background-color:#ebebeb;
    margin-left:0.5rem;
    transition:all 0.3s ease;
}
footer.footer ul.share li .show{
    transition: all .3s;
    transform-origin:bottom;
    text-align: center;
    min-width: 200px;
    max-width: 200px;
    position: absolute;
    z-index: 2;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
    bottom: 170%;
    left: 50%;
    transform: translateX(-50%) scale(0);
}
footer.footer ul.share li .show img{max-width: 100%;}
footer.footer ul.share li .show-img{
    max-width: 124px;
    min-width: 124px;
    max-height: 124px;
}
footer.footer ul.share li .show-img img{max-width: 100%;max-height: 100%;}
footer.footer ul.share li .show::after{
    position: absolute;
    content: '';
    border: 10px solid white;
    border-left-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    bottom:-20px;
    left: 50%;
    transform: translateX(-50%);

}
footer.footer ul.share li:hover .show{
    transform:translateX(-50%) scale(1);
}

 footer.footer ul.share li:hover{
    background-color:var(--primary-color);
}
footer.footer ul.share li:hover i{
    filter: brightness(100);
}
 footer.footer ul.share a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
    text-indent:-99999px;
}
 footer.footer ul.share .icon{
    width:50%;
    height:50%;
    background-position:center;
}
 .footer_bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
    border-bottom:1px solid #b5b5b5;
    padding: 100px 0 45px 0;
    box-sizing: content-box;
}
 .footer_bottom p{
    color:#808080;
    max-width: 350px;
    text-align:center;
    font-weight: 600;
    font-size: 16px;
}
 .footer_bottom ul{
    display:flex;
    align-items:flex-end;
    column-gap:5px;
}
 .footer_bottom li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-shrink:0;
    margin-left:1.75rem;
}
 .footer_copyright{
    text-align:center;
    background-color:#f7f7f7;
}
 footer.footer img{
    width:230px;
    height:auto;
}
 .button{
    cursor:pointer;
}


 body form#sytech-newsletter-subscription input[type="email"]{
    display: block;
    width: 18rem;
    height: 2.5rem;
    outline: none;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    padding-left: 1rem;
    font-size: 1rem;
}
 body form#sytech-newsletter-subscription{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    background-color: white;
    border-radius: 59px;
}
 body form#sytech-newslzetter-subscription{
    line-height:2rem;
    position:relative;
    margin-bottom:-3rem;
}
 body form#sytech-newsletter-subscription input[type="submit"]{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 3px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: all .2s;
    background: url('../../assets/img/right.svg') no-repeat center/18px;
    background-color: #62A734;
}
 body form#sytech-newsletter-subscription input[type="submit"]:hover{
    background-color:black;
    color:white;
}
 footer.footer .slide-obj.contact{
    max-width:310px;
}
 footer.footer .slide-obj.contact ul li{
    padding-left:2rem;
    position:relative;
}
 footer.footer .slide-obj.contact ul li a{
    color:#282828;
    font-weight:500;
    font-size:18px;
}
 footer.footer .slide-obj.contact ul li::before{
    content:url(../../assets/img/min-phone.png);
    width:18px;
    position:absolute;
    top:2px;
    left:0;
}
 footer.footer .slide-obj.contact ul{
    margin-bottom:0.5rem;
}
 footer.footer .slide-obj.contact ul li.email::before{
    content:url(../../assets/img/min-email.png);
}
 .footer_copyright{
    padding-top:40px;
    padding-bottom:20px;
}
 .footer_copyright p{
    opacity:0.9;
    font-size:16px;
    font-weight: 500;
}
