﻿:root {
    --theme_color: #005aaa;
    --subtheme_color: #037edc;
    --title_color: #242424;
    --content_color: #808080;
    --bg_color: linear-gradient(to right, var(--theme_color), var(--subtheme_color));
}
ul {
    list-style: none;
}
li {
    list-style: none;
}
a {
    color: #1c232f;
    text-decoration: none;
    font-size: 1rem;
}
button,input,textarea {
    outline: none;
    border: none;
    font-family: unset;
}
input[type="submit"],button {
    cursor: pointer;
}
textarea {
    resize: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.error{
    color: #CF1900;
    width: 100%;
}
.only_mobile {
    display: none;
}
.flex_end {
    justify-content: flex-end;
}
.flex_top {
    align-items: flex-start;
}
.flex_center {
    align-items: center;
}
.flex_bottom {
    align-items: flex-end;
}
body {
    font-family: 'Poppins',sans-serif;
}
.swiper_content {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    overflow: hidden;
}
.head span {
    color: var(--theme_color);
    text-transform: uppercase;
}
.head h2,.search .head h1 {
    font-size: 46px;
    font-weight: 600;
    color: #1c232f;
    line-height: 62px;
    padding-top: 8px;
}
.head p {
    font-size: 17px;
    line-height: 28px;
    color: var(--content_color);
}
.button {
    display: block;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-size: 200%;
    background-image: linear-gradient(to right,var(--theme_color),var(--subtheme_color),var(--theme_color));
    transition: all 0.3s;
}
.button:hover {
    background-position: right;
}
.button_more {
    display: inline-block;
    width: 214px;
    height: 54px;
    line-height: 52px;
    text-align: center;
    color: var(--title_color);
    font-size: 18px;
    font-weight: 500;
    border-radius: 27px;
    border: 1px solid silver;
    background-color: transparent;
    transition: all 0.3s;
}
.button_more:hover {
    color: #fff;
    background-color: var(--theme_color);
    border-color: var(--theme_color);
}
.swiper_btns {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.swiper_btns .btn_prev,.swiper_btns .btn_next {
    width: 1rem;
    height: 30px;
    background: url(../image/left-b.svg) no-repeat center / contain;
    transition: all 0.3s;
    cursor: pointer;
}
.swiper_btns .btn_prev.swiper-button-disabled,.swiper_btns .btn_next.swiper-button-disabled {
    opacity: .3;
    cursor: default;
}
.swiper_btns .btn_next {
    background-image: url(../image/right-b.svg);
}
div.loader {
    border: 7px solid #f2f5f9;
    border-top: 7px solid #fff;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 50%;
    margin-left: -1.75rem;
    animation: spin 1s linear infinite;
    margin-top: 0;
    text-align: center;
}
.social {
    display: flex;
    gap: 16px;
}
.social li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s;
    text-indent: -99999px;
}
.social li a:hover {
    background-color: var(--theme_color);
}
.social li i {
    display: block;
    width: 45%;
    height: 45%;
    transition: all 0.3s;
    background: url(../image/facebook.svg) no-repeat center / contain;
}
.social li:hover i {
    filter: brightness(20);
}
.social .twitter i {
    background-image: url(../image/twitter.svg);
}
.social .youtube i {
    background-image: url(../image/youtube.svg);
}
.social .pinterest i {
    background-image: url(../image/pinterest.svg);
}
.social .instagram i {
    background-image: url(../image/instagram.svg);
}
header {
    position: sticky;
    z-index: 99;
    left: 0;
    top: -8.75rem;
    background-color: #fff;
    transition: all 0.3s;
}
.sticky_sec {
    position: sticky;
    top: 100px;
    z-index: 9;
}
.product_nav {
    position: sticky;
    position: -webkit-sticky;
    top: 150px;
    background-color: #fff;
}
header.sticky {
    top: -42px;
}
header.sticky .header .header_left .logo {
    top: 0;
}
header .top {
    padding: 12px 0 8px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
header .top p {
    color: #1c232f;
    font-size: 14px;
}
header .top a {
    color: #474747;
    font-size: 14px;
    display: block;
    padding-left: 24px;
    position: relative;
}
header .top a::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../image/email-blue.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
header .top ul {
    gap: 48px;
}
header .top ul li:nth-child(2) a::before {
background-image: url(../image/phone-blue.svg);
}

header .header {
    box-shadow: 0 8px 8px rgba(0,0,0,.05);
}
header .header .left .logo {
    position: relative;
    top: 5px;
}
header .header .left .logo img {
    width: 200px;
    height: auto;
}
header .header .right nav div>ul {
    display: flex;
    gap: 34px;
}
header .header .right nav div>ul>li {
    position: relative;
}
header .header .right nav div>ul>li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--theme_color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}
header .header .right nav div>ul>li:hover::after,header .header .right nav div>ul>li.current-menu-item::after {
    width: 100%;
}
header .header .right nav div>ul>li>a {
    font-size: 18px;
    display: block;
    line-height: 100px;
}
header .header .right nav div>ul>li:hover ul {
    visibility: visible;
    max-height: 100rem;
}
header .header .right nav div>ul>li ul {
    left: -2rem;
    position: absolute;
    min-width: 13rem;
    background: #fff;
    border-radius: .625rem;
    padding: 1rem 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    display: block;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
}
header .header .right nav div>ul>li ul li {
    margin-left: 0;
    margin-bottom: .2rem;
    display: inline-block;
    width: 30%;
}
header .header .right nav div>ul>li ul li a {
    white-space: nowrap;
    display: block;
    padding: .8rem 0;
    transition: all 0.2s ease;
    border-radius: .625rem;
    font-size: .9rem;
    line-height: unset;
}
header .header .right nav div>ul>li ul li a:hover {
    color: var(--theme_color);
}
header .header .right .icon_search {
    display: block;
    width: 22px;
    height: 22px;
    background: url(../image/search.svg) no-repeat center / contain;
    margin: 0 28px 0 34px;
    cursor: pointer;
}
body .wpcf7-spinner {
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
}
form.submitting {
    position: relative;
}
form.submitting::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../image/load.gif) no-repeat center / 40px;
    z-index: 9;
    background-color: rgba(255,255,255,.7);
}
.empty_img {
    width: 500px;
    display: block;
    margin: 3rem auto;
    max-width: 100%;
}
header .header .right .button {
    width: 166px;
    height: 52px;
    line-height: 52px;
    border-radius: 26px;
    font-size: 18px;
}
.status{
    width: 100%;
    margin-top: 10px;
    text-align: center;
    color: #00c548;
    font-size: 16px;
    font-weight: bold;
}
.cta {
    padding: 50px 0;
    padding-right: 70px;
    background: url(../image/cta.jpg) no-repeat top / cover;
}
.cta .head {
    flex: 1;
    padding-right: 220px;
    padding-top: 60px;
}
.cta .head h2 {
    color: #fff;
}
.cta .head p {
    color: rgba(255,255,255,.8);
    line-height: 31px;
    padding: 20px 0 50px;
}
.cta .head ul li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
}
.cta .head ul li:last-child {
    margin-bottom: 0;
}
.cta .head ul li .img {
    width: 4rem;
    height: 4rem;
    background-image: var(--bg_color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta .head ul li .img img {
    width: 40%;
    height: 40%;
    object-fit: contain;
    filter: contrast(0) brightness(20);
}
.cta .head ul li .info strong {
    display: block;
    color: rgba(255,255,255,.6);
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-weight: 300;
    margin-bottom: 8px;
}
.cta .head ul li .info a {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.cta .cta_form {
    position: relative;
    width: 39.754%;
    background-color: #fff;
    border-radius: 12px;
    padding: 35px 32px 40px;
}
.cta .cta_form strong {
    color: var(--title_color);
    font-size: 24px;
}
.cta .cta_form form {
    /*padding-top: 24px;*/
    /*display: flex;*/
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cta .cta_form form input:nth-child(2),.cta .cta_form form input:nth-child(3) {
    /*flex: 1;*/
    width: 100%;
}
.cta_form form span.wpcf7-form-control-wrap {
    width: 100%;
}
.cta_form form span.wpcf7-form-control-wrap:nth-of-type(2),.cta_form form span.wpcf7-form-control-wrap:nth-of-type(3) {
    flex: 1;
    width: 48%;
}
.cta .cta_form form input,.cta .cta_form form textarea {
    width: 100%;
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 4px;
    padding: 12px 22px;
    margin-top: 25px;
}
.cta .cta_form form textarea {
    max-height: 130px;
}
.cta .cta_form form input[type="submit"] {
    margin-top: 14px;
    height: 52px;
    line-height: 52px;
    font-size: 18px;
    border-radius: 26px;
    padding: 0;
    display: block;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-size: 200%;
    background-image: linear-gradient(to right,var(--theme_color),var(--subtheme_color),var(--theme_color));
    transition: all 0.3s;
}
.cta .cta_form form input[type="submit"]:hover {
    background-position: right;
}
footer .footer {
    padding-top: 7.5rem;
}
footer .footer .slide_obj strong {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #282828;
    margin-bottom: 25px;
}
footer .footer .slide_obj p {
    color: #727272;
    margin-bottom: 30px;
    line-height: 26px;
}
footer .footer .about_us {
    width: 270px;
}
footer .footer .slide_menu:nth-child(3) {
    margin-right: 80px;
}
footer .footer .slide_menu ul li a {
    display: block;
    font-size: 17px;
    color: #727272;
    margin-bottom: 10px;
    transition: all 0.3s;
}
footer .footer .slide_menu ul li a:hover {
    color: var(--theme_color);
}
footer .footer .contact_us {
    width: 265px;
}
footer .footer .contact_us ul li{
    font-size: 18px;
    color: #727272;
    display: block;

    margin-bottom: 20px;
    position: relative;
}
footer .footer .contact_us ul li a {
    font-size: 18px;
    color: #727272;
    display: block;
    padding-left: 35px;
    margin-bottom: 20px;
    position: relative;
}
footer .footer .contact_us ul li p{
    padding-left: 35px;
    padding-top: unset;
}
footer .footer .contact_us ul li a::before {
    content: '';
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    background: url(../image/phone-blue.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
footer .footer .contact_us ul li:nth-child(2) a::before {
    width: 1.5rem;
    background-image: url(../image/email-blue.svg);
 }

footer .footer .contact_us ul li:nth-child(3)::before {
    content: '';
    display: block;
    width: 1.55rem;
    height: 1.55rem;
    background: url(../picture/cpos.svg) no-repeat center / contain;
    position: absolute;
    top: 6px;
    left: 0;
}


footer .footer .contact_us div>a {
    font-size: 18px;
    font-weight: 500;
    color: #282828;
    display: block;
    width: 100%;
    height: 58px;
    line-height: 56px;
    text-align: center;
    border: 1px solid var(--theme_color);
    border-radius: 29px;
    transition: all 0.3s;
}
footer .footer .contact_us div>a:hover {
    background-color: var(--theme_color);
    color: #fff;
}
footer .footer_bottom {
    padding-top: 135px;
}
footer .footer_bottom .logo img {
    width: auto;
    height: 66px;
}
footer .footer_bottom .cer img {
    height: 46px;
    width: auto;
    margin-right: 1rem;
}
footer .footer_bottom .cer img:last-of-type {
    height: 40px;
    transform: translateY(-3px);
}
footer .copyright {
    margin-top: 8px;
    border-top: 1px solid rgba(0,0,0,.1);
    padding: 1.25rem 0;
}
footer .copyright p {
    text-align: center;
    font-size: 14px;
    color: var(--content_color);
}
footer .copyright ul {
    display: flex;
    gap: 28px;
}
footer .copyright ul li a {
    font-size: 14px;
    color: var(--content_color);
    transition: all 0.3s;
}
footer .copyright ul li a:hover {
    color: var(--theme_color);
}
.header_menu {
    position: absolute;
    left: 0;
    display: none;
    width: 100%;
    z-index: 9;
    padding: 45px 0 135px;
    background: url(../image/menu-bg.png)  no-repeat center / cover;
    background-color: #fff;
}
.header_menu .nav {
    width: 290px;
}
.header_menu .nav ul {
    overflow: scroll;
}
.header_menu .nav ul::-webkit-scrollbar {
    display: none;
}
.header_menu .nav ul li {
    transition: all 0.3s;
    height: 64px;
    border-radius: 8px;
    color: #494949;
    font-size: 18px;
    font-weight: 500;
    padding-left: 85px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}
.header_menu .nav ul li:last-child {
    margin-bottom: 0;
}
.header_menu .nav ul li:hover,.header_menu .nav ul li.active {
    color: #fff;
    background-image: var(--bg_color);
}
.header_menu .nav ul li .img {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}
.header_menu .nav ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header_menu .main {
    padding-left: 40px;
    flex: 1;
    display: none;
}
.header_menu .main .flex strong {
    font-size: 26px;
    font-weight: 600;
    color: var(--title_color);
    line-height: 64px;
    margin-top: -1rem;
}
.header_menu .main .flex a {
    font-size: 14px;
    color: var(--theme_color);
    position: relative;
    padding-right: 10px;
    display: inline-block;
    margin-top: -1rem;
}
.header_menu .main .flex a:hover::after {
    right: -10px;
}
.header_menu .main .flex a::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    background: url(../image/right-blue.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    transform: translateY(-40%);
    right: 0;
    transition: all 0.3s;
}
.header_menu .main .products {
    padding-top: 15px;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4,1fr);
}
.header_menu .main .products .product {
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    background-color: #fff;
    border-radius: 5px;
}
.header_menu .main .products .product:hover .img img {
    transform: scale(1.1);
}
.header_menu .main .products .product .img {
    height: 207px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_menu .main .products .product .img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all 0.3s;
}
.header_menu .main .products .product .info {
    padding: 25px 25px 35px;
    background-color: #f8f8f8;
}
.header_menu .main .products .product .info span {
    display: block;
    min-height: 52px;
    font-size: 18px;
    font-weight: 500;
    color: var(--title_color);
    line-height: 26px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header_menu .main .products .product .info p {
    min-height: 92px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--content_color);
    line-height: 23px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home_solution {
    padding-bottom: 135px;
    background: url(../image/home-solution-bg.jpg) no-repeat top / cover;
}
.home_solution .head {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}
.home_solution .head h2 {
    padding-top: 12px;
}
.home_solution .head p {
    padding-top: 20px;
    width: 80%;
    margin: 0 auto;
    line-height: 26px;
}
.home_solution .main {
    width: 72.6222%;
    margin: 65px auto 70px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2px;
}
.home_solution .main li {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 451px;
    text-align: center;
    overflow: hidden;
}
.home_solution .main li:hover div:first-child {
    top: 120px;
}
.home_solution .main li:hover .mask {
    top: 0;
}
.home_solution .main li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
.home_solution .main li h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
}
.home_solution .main li p {
    min-height: 156px;
    margin: 0 0 20px;
    font-size: 17px;
    color: #fff;
    opacity: .8;
    font-weight: 300;
    line-height: 26px;
}
.home_solution .main li strong {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    position: relative;
    transition: all 0.3s;
}
.home_solution .main li strong::after {
    content: '';
    display: block;
    width: 15px;
    height: 8px;
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../image/right-line-w.svg) no-repeat center / contain;
    transition: all 0.3s;
}
.home_solution .main li div:first-child {
    position: absolute;
    z-index: 2;
    width: calc(100% - 70px);
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% - 60px);
    transition: all 0.5s;
}
.home_solution .main li .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../image/home-solution-p-bg.png) no-repeat center / cover;
    top: 100%;
    left: 0;
    transition: all 0.3s;
}
.home_product {
    padding: 145px 0 20px;
    background: url(https://raybornlight.com/wp-content/themes/sytech/assets/img/home-product-bg.jpg) no-repeat top / cover;
}
.home_product .head {
    text-align: center;
}
.home_product .head ul {
    padding-top: 45px;
    display: flex;
    justify-content: center;
    gap: 38px;
}
.home_product .head ul li {
    cursor: pointer;
    color: #757575;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 15px;
}
.home_product .head ul li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--theme_color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: all 0.3s;
}
.home_product .head ul li.active,.home_product .head ul li:hover {
    color: var(--title_color);
}
.home_product .head ul li.active::after,.home_product .head ul li:hover::after {
    width: 100%;
}
.home_product .home_product_swiper_box {
    position: relative;
    margin: 40px 0;
}
.home_product .home_product_swiper .swiper-slide {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    border-radius: 5px;
}
.home_product .home_product_swiper .swiper-slide:hover .img img {
    transform: scale(1.1);
}
.home_product .home_product_swiper .swiper-slide .img {
    height: 315px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.home_product .home_product_swiper .swiper-slide .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}
.home_product .home_product_swiper .swiper-slide .info {
    padding: 0 35px 35px;
}
.home_product .home_product_swiper .swiper-slide .info span {
    color: var(--theme_color);
    font-size: 15px;
    line-height: 18px;
}
.home_product .home_product_swiper .swiper-slide .info h3 {
    min-height: 60px;
    color: var(--title_color);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin: 8px 0 10px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home_product .home_product_swiper .swiper-slide .info p {
    min-height: 75px;
    color: var(--title_color);
    font-size: 15px;
    line-height: 25px;
    opacity: .75;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.home_product .home_product_swiper .swiper-slide .info strong {
    margin-top: 30px;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    height: 48px;
    line-height: 46px;
    background-image: var(--bg_color);
    border: 1px solid var(--theme_color);
    border-radius: 24px;
    transition: all 0.3s;
}
.home_product .home_product_swiper .swiper-slide .info strong:hover {
    color: var(--theme_color);
    background-color: transparent;
    background-image: none;
}
.loading {
    position: relative;
}
.loading:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/load.gif) no-repeat center;
    background-size: 45px;
    background-color: rgba(255,255,255,.3);
    z-index: 9;
}
.sy_fap_group svg,.sy_fap_group .laodmore {
    display: none;
}
body .wpcf7 form.invalid .wpcf7-response-output,body .wpcf7 form.unaccepted .wpcf7-response-output,body .wpcf7 form.payment-required .wpcf7-response-output {
    border: none;
    margin-top: 0;
    margin-left: auto;
    outline: none;
    padding: 0;
}
div.search-block {
    position: fixed;
    z-index: 400;
    background-color: #fff;
    box-shadow: 0 0 15px rgb(0 55 96 / 12%);
    transition: 0.3s ease;
    width: 100%;
    bottom: -100vh;
    height: 100vh;
    transition: 0.3s ease;
}
div.search-block.active {
    bottom: 0;
    opacity: 1;
    transform: translateY(150px);
}
div.search-block div.content {
    position: relative;
    display: block;
}
.wd-action-btn {
    display: inline-flex;
    vertical-align: middle;
    background: url(../image/cloes.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    transition: all 0.3s;
    cursor: pointer;
}
.center.empty {
    font-size: 18px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.wd-action-btn:hover {
    transform: rotate(180deg);
}
div.search-block .searchform {
    border-bottom: 1px solid rgba(119,119,119,.2);
    transition: opacity 0.35s ease 0.2s;
    --wd-form-color: #333;
    --wd-form-placeholder-color: #333;
    text-align: center;
    transition: 0.75s all ease;
}
div.search-block.active .searchform {
    opacity: 1;
}
div.search-block .searchform input[type='text'] {
    padding: 0;
    height: 110px;
    border: none;
    text-align: center;
    font-size: 35px;
    outline: none;
}
header div.main-menu div.main div.right {
    display: none;
}
div.search-block .searchform::-webkit-input-placeholder {
    color: #333;
}
body .wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: .2rem;
}
body form#sytech-newsletter-subscription p.failed,body form#sytech-newsletter-subscription p.success {
    font-size: 13px;
    width: 100%;
    text-align: left;
}
form#sytech-newsletter-subscription p.failed:before,form#sytech-newsletter-subscription p.success:before {
    background-color: #000;
    background-image: url(../image/notify.svg)!important;
    margin-top: .1rem;
    top: 16px;
}
.swiper_btns .btn_prev,.swiper_btns .btn_next {
    width: 1rem;
    height: 30px;
    background: none!important;
    transition: all 0.3s;
    cursor: pointer;
}
header.trans-bg {
    background-color: transparent;
    box-shadow: none;
}
header.trans-bg .header {
    box-shadow: none;
}
header.trans-bg .top {
    border-color: transparent;
}
header.trans-bg .top p {
    color: #fff;
}
header.trans-bg .top a {
    color: #fff;
}
header.trans-bg .header .right nav div>ul>li>a {
    color: #fff;
}
.page-template-default .blog_details .left {
    width: 95%;
}
header .header {
    position: relative;
    z-index: 9;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: 9;
    display: none;
}
.menu-overlay.active {
    display: block;
}
.tools_text_editor_code_vendor {
    padding: 5rem 0;
}
.tools_text_editor_code_vendor h2 {
    font-size: 26px;
    color: var(--title_color);
    padding-top: 35px;
    font-weight: 600;
}
.tools_text_editor_code_vendor p {
    font-size: 18px;
    color: rgb(102,102,102);
    padding-top: 30px;
    line-height: 30px;
}
.tools_text_editor_code_vendor h3 {
    font-weight: 500;
    font-size: 22px;
    color: #3d3d3d;
    padding-top: 40px;
}
.tools_text_editor_code_vendor li {
    margin-left: 20px;
    list-style: disc;
    font-size: 18px;
    margin-bottom: .5rem;
    line-height: 30px;
}
.solution_menu ul.sub-menu {
    display: flex;
    width: 600px;
    flex-flow: wrap;
    gap: 5% 1rem;
}
.desc_link {
    display: inline-block;
    height: 0;
    text-indent: -99999px;
    overflow: hidden;
}