  /* latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/OpenSans_Condensed-Light.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/OpenSans_Condensed-Regular.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
  /* latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/OpenSans_Condensed-SemiBold.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  
  /* latin */
  @font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/OpenSans_Condensed-Bold.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

html,
body,
.linsh-form-style-1 input,
.linsh-form-style-1 select,
.linsh-form-style-1 textarea{
    font-family: 'Open Sans', sans-serif;
}

body{
    font-size: 26px;
}

.navbar-default,
body{
    max-width: 1920px;
    margin: auto;
}

.navbar-default,
#site-header .heder-right,
#site-header .nav-menu{
    min-height: 80px;
}

.navbar-default.sticky,
#site-header.sticky .heder-right,
#site-header.sticky .nav-menu{
    min-height: 68px;
}

p{
    line-height: 1.2;
}

img{
    max-width: 100%;
    overflow-clip-margin: content-box;
    overflow: clip;
    border: 0;
    vertical-align: middle;
    height: auto;
    width: auto;
}

label {
    margin-bottom: 0;
}

input[type=radio]{
    margin-top: 0;
}

a,
button,
input[type="button"]{
    cursor: pointer;
}

a,
a:active,
a:focus,
a:focus-within,
a:target,
a:link,
a:visited,
a:focus-visible,
a:hover{
    text-decoration: none !important;
    outline: 0 !important;
}

a:-webkit-any-link{
    text-decoration: unset !important;
    outline: 0 !important;
}

.body-wrap {
    position: relative;
}

a,
.bagels-trans-p-2{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mb-5{
    margin-bottom: 5px;
}

.mb-15{
    margin-bottom: 15px;
}

.page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* display: none; */
}

.page-loader .pgl-spinner-img{
    max-width: 360px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    animation: change-opacity 1.7s linear infinite;
}

@-webkit-keyframes change-opacity {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}
@-moz-keyframes change-opacity {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}
@keyframes change-opacity {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}


.page-loader .pgl-spinner{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.page-loader .pgl-spinner:after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* border: 2px solid #3e3e3e; */
    /* border-color: #3e3e3e transparent #3e3e3e; */
    border-style: solid;
    border-width: 16px;
    /* animation: pgl-dual-ring 1.2s linear infinite; */
    animation: pgl-dual-colors 1.7s linear infinite;
}

.linsh-hider{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .body{
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .page-loader .pgl-spinner-img{
        max-width: 240px;
    }
}



@media (min-width: 768px) {
    .linsh-hide-768{
        display: none;
    }
}

@media (min-width: 1440px) {
    .linsh-hide-1440{
        display: none;
    }
}

@media (max-width: 991px) {
    .linsh-hide-991{
        display: none;
    }
}

@media (max-width: 767px) {
    .linsh-hide-767{
        display: none;
    }
}

@media (min-width: 1366px) and (max-width: 1439px) {
    .linsh-hide-1366-1439{
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1365px) {
    .linsh-hide-768-1365{
        display: none;
    }
}


/* Colors */
    body,
    html,
    .vc-theme-button a,
    .vc-theme-button-pseudo-a,
    .linsh-products .lprd-s-s-l-te-descr,
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-te-descr,
    .linsh-play-circle i,
    .linsh-gallery .lgal-s-s-link:hover,
    .linsh-gallery .lgal-s-s-link:focus,
    .linsh-gallery .lgal-s-s-link:focus-within,
    .linsh-gallery .lgal-s-s-link:focus-visible,
    .linsh-gallery .lgal-s-s-link:active,
    .linsh-products .lprd-s-s-l-te-sub-title,
    .nav-contact.nav-whatsapp .nav-c-left,
    .nav-contact.nav-telegram .nav-c-left,
    .nav-contact.nav-email .nav-c-left,
    .nav-contact.nav-get-quote,
    .lcf-response,
    .linsh-products .lprd-s-common-title{
        color: #fff;
    }

    a,
    .linsh-contact-link .lcl-r-value:focus,
    .linsh-contact-link .lcl-r-location:focus{
        color: #fff;
    }

    #left-sidebar{
        background-color: #fff;
    }
    
    @media (min-width: 992px) {
        .linsh-vid-popup-link .lvpl-1:hover .linsh-play-circle,
        .nav-contact:hover .nav-c-r-label,
        .nav-contact:hover .nav-c-r-number,
        .lcp-form-parent .nav-contact.nc-small .nav-c-left{
            color: #fff;
        }
    }
    
    @media (max-width: 991px) {
        .linsh-vid-popup-link .lvpl-1:active .linsh-play-circle,
        .nav-contact:active .nav-c-r-label,
        .nav-contact:active .nav-c-r-number,
        .linsh-products.lvid-type-installations .lprd-s-s-link:hover .lprd-s-s-l-te-title,
        .lcp-form-parent .nav-contact.nc-small .nav-c-left{
            color: #fff;
        }
    }


    
    .nav-contact .nav-c-r-label,
    .nav-contact .nav-c-r-number,
    .footer-bottom,
    .footer-widget-area a,
    .footer-widget-area,
    .linsh-form-style-1 input[type="text"],
    .linsh-form-style-1 input[type="email"],
    .linsh-form-style-1 input[type="date"],
    .linsh-form-style-1 input[type="tel"],
    .linsh-form-style-1 input[type="url"],
    .linsh-form-style-1 input[type="number"],
    .linsh-form-style-1 input[type="file"],
    .linsh-form-style-1 select,
    .linsh-form-style-1 textarea,
    .linsh-about-us .lau-content,
    .linsh-form-style-1 .field-group.fg-select:after,
    .linsh-gallery .lgal-descr,
    #linsh-contact-popup,
    #linsh-contact-popup .lcp-close,
    .linsh-motor-solutions .lms-1{
        color: #222222;
    }




    .linsh-vid-slider,
    .linsh-gallery{
        background-color: rgba(255, 225, 175, 0.3 );
    }



    .linsh-vid-slider .ltt-sect-2{
        color: #C0A579;
    }



    #site-header .nm-li.active .nm-l-a{
        background-color: rgba(217, 217, 217, 0.5);
    }

    @media (min-width: 992px) {
        #site-header .nm-l-a:hover{
            background-color: rgba(217, 217, 217, 0.2);
        }
    }
    
    /* @media (max-width: 991px) {
        #site-header .nm-l-a:active{
            background-color: rgba(217, 217, 217, 0.4);
        }
    } */


    

    .footer-bottom,
    .footer-widget-area{
        background-color: #F6F6F6;
    }



    #left-sidebar .nav-contact.nav-get-quote .nav-c-r-label,
    .footer-widget-area .nav-contact.nav-get-quote .nav-c-r-label{
        color: #fff;
    }
    
    
    
    .linsh-overlay-from-top{ background-image: linear-gradient(to bottom, #A37F42 12%, transparent 100%); }
    
    .linsh-overlay-from-bottom{ background-image: linear-gradient(to top, #A37F42 -5%, transparent 60%); }
    
    .linsh-products .lprd-s-s-link > .linsh-overlay-from-bottom{
        background-image: linear-gradient(to top, #A37F42 -21%, transparent 100%);
    }

    .lvid-type-installations .lprd-s-s-link > .linsh-overlay-from-bottom{
        background-image: linear-gradient(to top, #A37F42 -12%, transparent 100%);
    }
    
    .linsh-products > .linsh-overlay-from-bottom {
        background-image: linear-gradient(to top, #A37F42 2%, transparent 47%);
        background-image: linear-gradient(to top, rgb(163, 127, 66) 2%, transparent 21%);
    }
    
    .linsh-products > .linsh-overlay-from-top {
        background-image: linear-gradient(to bottom, rgb(163, 127, 66) 2%, transparent 140%);
    }

    .linsh-vid-section > .linsh-overlay-from-bottom {
        background-image: linear-gradient(to top, #A37F42 0%, transparent 20%);
    }

    .linsh-vid-section.lvid-type-1 > .linsh-overlay-from-bottom {
        background-image: linear-gradient(to top, #000000 -10%, transparent 40%);
    }
    
    .linsh-vid-section > .linsh-overlay-from-top {
        background-image: linear-gradient(to bottom, #A37F42 0%, transparent 20%);
    }

    .linsh-vid-slider > .linsh-overlay,
    .linsh-products > .linsh-overlay {
        background-color: rgba(163, 127, 66, 0.5);
    }

    @media (max-width: 767px) {
        .linsh-vid-section.lvid-type-1 > .linsh-overlay-from-bottom{
            background-image: linear-gradient(to top, #000000 -50%, transparent 40%);
        }
    }
   
    

    .nav-contact .nav-c-left,
    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1,
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev,
    .ui-widget-header,
    .ui-state-default,
    .ui-button,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default,
    html .ui-button.ui-state-disabled,
    html .ui-button.ui-state-disabled{
        background-color: #A37F42;
    }

    #left-sidebar .nm-li.active,
    .ui-widget-header,
    .ui-state-default,
    .ui-button,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default,
    html .ui-button.ui-state-disabled,
    html .ui-button.ui-state-disabled{
        border-color: #A37F42;
    }

    
    a:focus,
    .vc-theme-button.vc-tb-clear a,
    .linsh-gallery .lgal-s-see-more-link .lgal-s-sml-1,
    #site-header .nm-l-a,
    #left-sidebar .nm-l-a,
    .ltt-sect-2{
        color: #A37F42;
    }

    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1:before{
        border-top-color: #A37F42;
    }
    
    .vc-theme-button a,
    .vc-theme-button button,
    /* .vc-theme-button-pseudo-a, */
    input[type="submit"],
    .linsh-play-circle,
    .wpcf7 input[type="submit"],
    #left-sidebar .nav-contact.nav-get-quote,
    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote,
    .lcf-submit-btn{
        background-color: #A37F42;
        border-color: #A37F42;
        /* background-color: #876F45; */
        /* border-color: #876F45; */
    }

    
    .page-loader .pgl-spinner:after{
        border-color: #A37F42;
    }

    @-webkit-keyframes pgl-dual-colors {
        0% { border-color: #A37F42; }
        50% { border-color: #e7b351; }
        100% { border-color: #A37F42; }
    }
    @-moz-keyframes pgl-dual-colors {
        0% { border-color: #A37F42; }
        50% { border-color: #e7b351; }
        100% { border-color: #A37F42; }
    }
    @keyframes pgl-dual-colors {
        0% { border-color: #A37F42; }
        50% { border-color: #e7b351; }
        100% { border-color: #A37F42; }
    }
    
    @media(min-width: 992px){
        a:hover,
        #linsh-contact-popup .lcp-close:hover{
            color: #A37F42;
        }
        
        .linsh-contact-link .lcl-r-location:focus,
        .linsh-contact-link .lcl-r-location:hover{
            color: #A37F42 !important;

        }

        .footer-widget-area .nav-contact:hover,
        .nav-contact:hover,
        .linsh-social_links .linsh-icon-ball:hover,
        .linsh-vid-slider .lprd-s-s-link:hover .linsh-vid-popup-link .linsh-play-circle,
        .linsh-gallery .lgal-s-s-link:hover .linsh-vid-popup-link .linsh-play-circle{
            background-color: #A37F42;
            border-color: #A37F42;
        }
    }
    
    @media(max-width: 991px){
        a:active,
        a:hover,
        .linsh-contact-link .lcl-r-location:active,
        .footer-widget-area .nav-contact:active,
        .linsh-contact-link .lcl-r-location:hover,
        #linsh-contact-popup .lcp-close:active{
            color: #A37F42;
        }
        
        .linsh-contact-link .lcl-r-location:focus,
        .linsh-contact-link .lcl-r-location:active,
        .linsh-contact-link .lcl-r-location:hover{
            color: #A37F42 !important;

        }
        
        .nav-contact:active,
        /* .nav-contact:hover, */
        .linsh-social_links .linsh-icon-ball:hover,
        .linsh-social_links .linsh-icon-ball:active
        .linsh-vid-slider .lprd-s-s-link:active .linsh-vid-popup-link .linsh-play-circle,
        .linsh-gallery .lgal-s-s-link:active .linsh-vid-popup-link .linsh-play-circle,
        .footer-widget-area .nav-contact:active{
            background-color: #A37F42;
            border-color: #A37F42;
        }
    }



    .linsh-products .lprd-s-s-l-te-installed,
    .linsh-products .lprd-s-s-l-te-count{
        color: #d4a555
    }



    .vc-theme-button a:focus,
    .vc-theme-button button:focus,
    .vc-theme-button-pseudo-a:focus,
    input[type="submit"]:focus,
    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next,
    .ui-state-default:hover,
    .ui-button:hover,
    .ui-widget-content .ui-state-default:hover,
    .ui-widget-header .ui-state-default:hover
    html .ui-button.ui-state-disabled:hover,
    html .ui-button.ui-state-disabled:active{
        background-color: #bb924c;
        border-color: #bb924c;
    }
    
    .linsh-theme-title .ltt-sect:nth-child(3){
        color: #bb924c;
    }

    @media(min-width: 992px){
        .vc-theme-button a:hover,
        .vc-theme-button button:hover,
        .vc-theme-button-pseudo-a:hover,
        input[type="submit"]:hover,
        .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote:hover{
            background-color: #bb924c;
            border-color: #bb924c;
        }
        
        .linsh-gallery .lgal-s-see-more-link .lgal-s-sml-1:hover{
            color: #bb924c;
        }

        .owl-carousel .owl-nav button.owl-next:hover,
        .owl-carousel .owl-nav button.owl-prev:hover{
            background-color: #bb924c;
        }
    }
    
    @media(max-width: 991px){
        .owl-carousel .owl-nav button.owl-next:active,
        .owl-carousel .owl-nav button.owl-prev:active,
        .vc-theme-button a:active,
        .vc-theme-button button:active,
        .vc-theme-button-pseudo-a:active,
        input[type="submit"]:active,
        .vc-theme-button a:active,
        .vc-theme-button button:active,
        .vc-theme-button-pseudo-a:active,
        input[type="submit"]:active,
        #left-sidebar .nav-contact.nav-get-quote:active,
        .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote:active{
            background-color: #bb924c;
            border-color: #bb924c;
        }
        
        .linsh-gallery .lgal-s-see-more-link .lgal-s-sml-1:active{
            color: #bb924c;
        }

        .owl-carousel .owl-nav button.owl-next:active,
        .owl-carousel .owl-nav button.owl-prev:active{
            background-color: #bb924c;
        }
    }
    
    @media(max-width: 767px){
        .linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(3){
            color: #bb924c;
        }
    }


    .ui-datepicker .ui-datepicker-prev.ui-state-hover,
    .ui-datepicker .ui-datepicker-next.ui-state-hover{
        background-color: #c49950;
    }
    


    .linsh-vid-section-2 .lvid-box{
        background-color: rgba(202, 179, 143, 0.5);
    }


    
    .linsh-contact-link .lcl-r-location,
    .linsh-theme-title .ltt-sect-2
    .pg-gaq-container .linsh-contact-form .ltt-sect-2,
    .footer-widget-area .fwa-l-d-top,
    .footer-widget-area .fwa-l-d-bottom,
    .linsh-contact-form .lcf-t-1{
        color: #A37F42;
    }


    .owl-carousel button.owl-dot{
        background-color: rgba(206, 173, 113, 0.5);
    }

    .owl-carousel button.owl-dot.active{
        background-color: #CEAD71;
    }

    @media (min-width: 992px) {
        .owl-carousel button.owl-dot:hover{
            background-color: rgba(206, 173, 113, 0.8);
        }
    }

    @media (max-width: 991px) {
        .owl-carousel button.owl-dot:active{
            background-color: rgba(206, 173, 113, 0.8);
        }
    }



    .lcp-form-parent .lcp-form-3 .lcf-contact-section{
        background-color: rgba(163, 127, 66, 0.5 );
    }




    .linsh-testimonials .ltst-s-s-right:after{
        background-color: #463822;
    }



    
    .lvid-virt-assts .lvid-va-single{
        color: #000;
    }



    .vc-theme-button a:focus,
    .linsh-products .lprd-s-s-link:focus,
    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1{
        color: #fff;
    }

    @media (min-width: 992px) {
        .vc-theme-button a:hover,
        .linsh-products .lprd-s-s-link:hover{
            color: #fff;
        }

        .linsh-products .lprd-s-s-l-te-btn:hover{
            background-color: #fff;
            border-color: #fff;
        }
    }

    @media (max-width: 991px) {
        .vc-theme-button a:active,
        .linsh-products .lprd-s-s-link:active,
        .linsh-products.lvid-type-installations .lprd-s-s-l-te-title,
        .linsh-products.lvid-type-installations .lprd-s-s-link:active .lprd-s-s-l-te-title{
            color: #fff;
        }
        
        .linsh-products .lprd-s-s-l-te-btn:active{
            background-color: #fff;
            border-color: #fff;
        }
    }



    
    @media(min-width: 992px){
        .linsh-products .lprd-s-s-l-te-btn:hover{
            color: #000;
        }
    }

    @media(max-width: 991px){
        .navbar-brand:hover,
        .navbar-brand:active{
            background-color: #000;
        }

        .linsh-products .lprd-s-s-l-te-btn:active{
            color: #000;
        }
    }



    .linsh-theme-title .ltt-sect-1{
        color: #424242;
    }



    .linsh-icon-ball{
        background-color: #2E2E2E;
    }



    @media (min-width: 992px) {
        .linsh-vid-popup-link .lvpl-1:hover .linsh-play-circle{
            background-color: #2E2E2E;
        }
    }

    @media (max-width: 991px) {
        .linsh-vid-popup-link .lvpl-1:active .linsh-play-circle{
            background-color: #2E2E2E;
        }
    }


    #site-header .nav-contact.nav-whatsapp{
        background-color: #EFE8DD;
        background-color: #e9e9e9;
    }



    .nav-contact,
    .footer-widget-area .navbar-brand:focus,
    .footer-widget-area .navbar-brand:hover,
    .footer-widget-area .navbar-default,
    .linsh-motor-solutions .lms-1
/*     .navbar-default .navbar-brand:focus,
    .navbar-default .navbar-brand:hover, */{
        background-color: #e9e9e9;
    }



    @media (min-width: 992px) {
        #linsh-contact-popup .nav-contact:hover{
            background-color: #A37F42;
        }
    }

    @media (max-width: 991px) {
        #linsh-contact-popup .nav-contact:active{
            background-color: #A37F42;
        }
    }
/* Colors */

.h-p-ul-m-0 ul,
.h-p-ul-m-0 p,
.h-p-ul-m-0 h1,
.h-p-ul-m-0 h2,
.h-p-ul-m-0 h3,
.h-p-ul-m-0 h4,
.h-p-ul-m-0 h5,
.h-p-ul-m-0 h6{
    margin: 0;
    padding: 0;
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"],
input[type="url"],
select,
textarea{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    outline: 0 !important;
}

input[type="search"],
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="tel"],
input[type="url"],
textarea,
select{
    -webkit-appearance: none;
    -moz-appearance: value;
    appearance: value;
}

option{
    /* background-color: rgba(148, 148, 148, 0.1); */
    background-color: #fdfdfd;
    color: #000;
    font-size: 14px;
    font-family: Arial;
}

input[type="search"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder{
    color: rgb(164, 164, 164, 0.7);
    font-size: 16px;
    font-weight: 300;
}

input[type="search"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
textarea:-ms-input-placeholder{
    color: #A4A4A4;
    font-size: 13px;
    font-weight: 300;
}

input[type="search"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
textarea::-ms-input-placeholder{
    color: #A4A4A4;
    font-size: 13px;
    font-weight: 300;
}

.linsh-form-style-1 input[type="text"],
.linsh-form-style-1 input[type="email"],
.linsh-form-style-1 input[type="date"],
.linsh-form-style-1 input[type="tel"],
.linsh-form-style-1 input[type="url"],
.linsh-form-style-1 input[type="number"],
.linsh-form-style-1 input[type="file"],
.linsh-form-style-1 select,
.linsh-form-style-1 textarea{
    background-color: rgba(148, 148, 148, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 8px 15px 6px;
    border-radius: 4px;
    max-width: 100%;
    font-size: 16px;
    font-weight: normal;
    height: 45px;
}

.linsh-form-style-1 select{
    cursor: pointer;
}

.linsh-form-style-1 select:not(.has-selected-val){
    color: rgb(164, 164, 164, 0.7);
}




.linsh-spinner{
    position: absolute;
    right: 40px;
    top: 30%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-contact-form .linsh-spinner{
    right: 33px;
}

.linsh-spinner:after{
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 2px solid #ffffff;
    border-color: #ffffff transparent #ffffff transparent;
    animation: pgl-dual-ring 1.2s linear infinite;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading .linsh-spinner{
    opacity: 1;
}



@-webkit-keyframes pgl-dual-ring {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes pgl-dual-ring {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}
@keyframes pgl-dual-ring {
    0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); transform: rotate(360deg); }
}


.linsh-vp-height{
    min-height: calc( 100vh - 80px );
    max-height: 1080px;
}


.page-container {
    margin-top: 80px;
}



.linsh-form-style-1 .field-group.fg-has-icon,
.linsh-form-style-1 .field-group.fg-select{
    position: relative;
}

.linsh-form-style-1 .field-group.fg-has-icon input[type="text"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="email"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="search"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="number"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="date"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="tel"],
.linsh-form-style-1 .field-group.fg-has-icon input[type="url"]{
    padding-right: 45px;
}

.linsh-form-style-1 .field-group.fg-has-icon i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 17px;
    color: rgb(164, 164, 164, 0.7);
    pointer-events: none;
}

.linsh-form-style-1 .field-group.fg-select:after {
    position: absolute;
    right: 10px;
    top: 37%;
    transform: translateX(-50%);
    font-size: 11px;
    font-family: 'Font Awesome 5 Pro';
    content: "\f078";
    line-height: 1;
    pointer-events: none;
}

.linsh-form-style-1 .field-group:not(:last-child) {
    margin-bottom: 12px;
}

.linsh-form-style-1 .field-group.mb-8:not(:last-child){
    margin-bottom: 4px;
}

.linsh-form-style-1 .field-group.mb-15:not(:last-child){
    margin-bottom: 15px;
}

.linsh-form-style-1 .lcf-submit-btn{
    position: relative;
}

.linsh-form-style-1 .lcf-submit-btn > i{
    margin-left: 5px;
}

.linsh-contact-form .lcf-submit-btn.loading{
    pointer-events: none;
}

.linsh-contact-form .lcf-submit-btn:after{
    position: absolute;
    content: '';
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    z-index: 1;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-contact-form .lcf-submit-btn.loading:after{
    opacity: 1;
}



.linsh-form-style-1 textarea{
    height: 140px;
    max-height: 140px;
    margin-bottom: 0 !important;
    margin: 0;
    resize: none;
}

.linsh-contact-form .lcf-1 {
    background-color: #fff;
    padding: 32px 33px 60px 33px;
    border-radius: 5px;
    overflow: hidden;
}

#linsh-contact-popup .linsh-contact-form .lcf-1 {
    padding-bottom: 90px;
}

.pg-get-a-quote .linsh-vid-section .linsh-contact-form .lcf-1,
.footer-widget-area .linsh-contact-form .lcf-1 {
    padding-bottom: 38px;
}

.linsh-contact-form .lcf-title{
    margin-bottom: 30px;
}

.linsh-contact-form .lcf-descr {
    text-align: center;
    font-size: 18px;
    /* font-weight: 300; */
    margin-bottom: 20px;
    margin-top: 30px;
}

.lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-descr{
    font-size: 20px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
    max-width: 69%;
    margin-top: 22px;
}

.linsh-contact-form .fg-submit button i{
    margin-left: 4px;
    font-size: 17px;
}

.linsh-contact-form .lcf-submit-btn.loading i{
    opacity: 0;
}

.linsh-contact-form .lcf-t-1 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    position: relative;
    line-height: 1.2;
}

.linsh-contact-form .lcf-t-1:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -7px;
    background-color: rgba(255, 255, 255, 0.6);
    height: 1px;
    width: 50%;
}

.linsh-contact-form .fg-radio input[type=radio]{
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.linsh-contact-form .fg-radio label {
    font-size: 17px;
    font-weight: 400;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.linsh-contact-form .fg-radio {
    line-height: 1;
}

.linsh-contact-form .fg-radio + .fg-submit {
    margin-top: 20px;
}

.linsh-contact-form .fg-radio label:after {
    content: "\f111";
    position: absolute;
    left: 0;
    /* top: 50%; */
    top: 52.3%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Pro';
    font-weight: 100;
    font-size: 15px;
}

.linsh-contact-form .fg-radio input[type=radio]:checked + label:after{
    content: "\f192";
    font-weight: 400;
}


.linsh-theme-title .ltl-1 {
    /* font-size: 75px; */
    font-size: 50px;
    display: table;
    position: relative;
    font-weight: 600;
}

.linsh-theme-title.ltt-center .ltl-1{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.1;
}

.linsh-theme-title .ltt-sect {
    display: block;
    line-height: 1;
}

.linsh-theme-title .ltt-sect:nth-child(1) {
    font-size: 105px;
    margin-bottom: -18px;
}

.linsh-theme-title .ltt-sect:nth-child(2) {
    font-size: 58px;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(2){
    margin-bottom: 2px;
}

.linsh-theme-title .ltt-sect:nth-child(3),
.linsh-theme-title .ltt-sect:nth-child(4) {
    font-weight: 400;
    letter-spacing: 3px;
}

.linsh-theme-title .ltt-sect:nth-child(4) {
    font-size: 55px;
}

.linsh-theme-title.ltt-right .ltl-1{
    margin-left: auto;
    text-align: right;
}



.linsh-pos-relative{
    position: relative;
}

.linsh-overlay,
.linsh-overlay-from-top,
.linsh-overlay-from-bottom{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    content: "";
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-overlay{ background-color: rgba(0, 0, 0, 0.3); }

.linsh-icon-ball {
    min-width: 57px;
    min-height: 57px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.linsh-icon-ball i {
    position: absolute;
    top: 51%;
    left: 50%;
    font-size: 26px;
    color: #fff;
    transform: translate(-50%, -50%);
}

.vc-theme-button a,
.vc-theme-button button,
.vc-theme-button-pseudo-a,
input[type="submit"],
.wpcf7 input[type="submit"]{
    border-width: 1px;
    border-style: solid;
    border-radius: 5px;
    /* padding: 15px 15px 13px; */
    padding: 15px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 1;
    font-size: 20px;
    font-weight: 600;
    min-width: 240px;
}

.vc-theme-button.vc-tb-full-width a,
.vc-theme-button.vc-tb-full-width button,
.vc-theme-button-pseudo-a.vc-tb-full-width{
    width: 100%;
}

.vc-theme-button-pseudo-a > i{
    position: relative;
    /*top: -1px;*/
}

.sticky .vc-theme-button a{
    padding: 9px 14px 11px;
}

.vc-theme-button-pseudo-a.vc-tb-clear,
.vc-theme-button.vc-tb-clear a{
    background-color: transparent;
}

.vc-theme-button.vc-tb-extra-pb a{
    padding-bottom: 2px;
}

.vc-theme-button.vc-tb-ta-center a,
.vc-theme-button-pseudo-a.vc-tb-ta-center{
    text-align: center;
}

.vc-theme-button.vc-tb-alt-size a,
.vc-theme-button-pseudo-a.vc-tb-alt-size{
    min-width: 200px;
    padding-top: 13px;
    padding-bottom: 15px;;
}

.vc-theme-button i,
.vc-theme-button-pseudo-a i{
    margin-left: 19px;
    font-size: 15px;
    position: relative;
    top: -1px;
}

.navbar-default{
    border: none;
    box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5);
}

.navbar-header{
    float: none;
    display: flex;
}

.navbar>.container .navbar-brand,
.navbar>.container-fluid .navbar-brand{
    margin-left: 0;
}

.navbar-brand{
    padding-left: 0px;
    padding-right: 0px;
    float: none;
    height: auto;
    display: inline-block;
}

.navbar-brand>img{
    max-width: 211px;
    height: auto;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.nav-contact {
    overflow: hidden;
    padding: 10px 20px 8px 11px;
    border-radius: 50px;
    display: inline-block;
}

.nav-contact .nav-c-1{
    display: flex;
    align-items: center;
}

.nav-contact .fa-wifi,
.nav-contact .icon-main,
.nav-contact .nav-c-left{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.nav-contact .nav-c-left {
    border-radius: 50px;
    width: 46px;
    height: 46px;
    position: relative;
}

#site-header.sticky .nav-c-left {
    width: 38px;
    height: 38px;
}

#site-header.sticky .nav-c-l-whatsapp {
    font-size: 22px;
}

.nav-contact.nav-telegram .nav-c-left{ background-color: #2BA2DC; }

.nav-contact.nav-whatsapp .nav-c-left{ background-color: #00bf62; }

.nav-contact .nav-c-right:not(:first-child){
    margin-left: 6px;
}

.nav-contact .nav-c-r-label{
    font-weight: 600;
    font-size: 14px;
    text-transform: none;
}

#site-header.sticky .nav-c-r-label{
    font-size: 12px;
}

#site-header .nav-contact .nav-c-r-number{
    line-height: 1;
}

.nav-contact .nav-c-r-number{
    font-weight: 700;
    font-size: 26px;
}

.footer-widget-area .fwa-l-buttons .nav-c-r-number,
.linsh-contact-form .nav-c-r-number{
    margin-top: -5px;
}

#site-header.sticky .nav-c-r-number{
    font-size: 21px;
}

.nav-contact .icon-main{
    font-size: 21px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-contact .nav-c-l-whatsapp{
    font-size: 26px;
}

.footer-widget-area .nav-c-left .fa-telegram-plane{
    top: calc( 50% + 1px );
    left: calc( 50% - 1px );
    font-size: 23px;
}

.nav-contact .fa-phone{
    transform: translate(-50%, -50%) rotateZ(90deg);
}

.nav-contact .fa-wifi{
    position: absolute;
    font-size: 10px;
    top: 15px;
    right: 14px;
    transform: rotateZ(45deg);
}

#site-header .nav-contact{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    margin-left: 10px;
}

#site-header .heder-right {
    display: flex;
    align-items: center;
}

#site-header .nav-menu {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    height: 100%;
}

#site-header .nm-li {
    list-style: none;
}

#site-header .nm-l-a {
    font-weight: 700;
    font-size: 19px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}




.nav-contact.nc-small .nav-c-left{
    width: 35px;
    height: 35px;
}

.nav-contact.nc-small .nav-c-r-label{
    font-size: 12px;
}

.nav-contact.nc-small .nav-c-r-number{
    font-size: 21px;
}

.nav-contact.nc-small .fa-phone{
    font-size: 17px;
}

.linsh-contact-form .nav-contact .fa-phone {
    font-size: 16px;
    top: calc( 50% + 1px );
}

.nav-contact.nc-small .fa-wifi{
    font-size: 8px;
    top: 14px;
    right: 12px;
}

.linsh-contact-form .nav-contact .fa-wifi {
    font-size: 7px;
    top: 11px;
    right: 9px;
}

.sidebar-overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1031;
    background-color: rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
    #site-header .nm-li-virtual-assistants,
    #left-sidebar .nm-li-virtual-assistants{
        display: none;
    }
}

@media (min-width: 992px) {
    .nav-contact.nav-telegram:hover{ background-color: #2BA2DC !important; }
    .nav-contact.nav-whatsapp:hover{ background-color: #00bf62 !important; }
}

@media (max-width: 1679px) {
    #site-header .nav-contact.nav-whatsapp{
        background-color: transparent;
        padding: 0;
    }

    #site-header .nav-c-right{
        display: none;
    }

    #site-header .nav-contact{
        border-radius: 50%;
    }

    #site-header.sticky .nav-c-left {
        width: 46px;
        height: 46px;
    }

    #site-header.sticky .nav-c-l-whatsapp{
        font-size: 26px;
    }
}

@media (max-width: 1365px) {
    .navbar-brand>img{
        max-width: 170px;
    }

    #site-header .nm-l-a{
        font-size: 16px;
        padding: 15px;
    }

    .nav-contact .nav-c-r-number{
        font-size: 25px;
    }

    .nav-contact .nav-c-r-label{
        font-size: 13px;
    }

    .nav-contact .nav-c-left{
        width: 45px;
        height: 45px;
    }

    .nav-contact .nav-c-l-whatsapp {
        font-size: 25px;
    }

    .navbar-default,
    #site-header .heder-right,
    #site-header .nav-menu {
        min-height: 76px;
    }

    .linsh-vp-height {
        min-height: calc( 100vh - 76px );
    }

    .page-container {
        margin-top: 76px;
    }

    .navbar-brand>img {
        max-width: 190px;
    }
}

@media (max-width: 1199px) {

    #site-header.sticky .nav-c-left{
        width: 45px;
        height: 45px;
    }

    #site-header.sticky .nav-c-l-whatsapp {
        font-size: 25px;
    }
}

@media (max-width: 991px) {
    .nav-contact.nav-telegram:active{ background-color: #2BA2DC !important; }

    .nav-contact.nav-whatsapp:active .nav-c-left{ background-color: #00cc69 !important; }

    #site-header .heder-right {
        flex-direction: row-reverse;
    }

    #site-header .nav-menu{
        display: none;
    }

    .header-ham-icon{
        float: right;
        margin-left: 20px;
        width: 35px;
        height: 24px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .header-ham-icon span{
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #4d4f50;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .header-ham-icon span:nth-child(1) { top: 0px; }
    .header-ham-icon span:nth-child(2),.header-ham-icon span:nth-child(3) { top: 10px; }
    .header-ham-icon span:nth-child(4) { top: 20px; }
    .header-ham-icon.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    .header-ham-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-ham-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header-ham-icon.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }


    #left-sidebar {
        left: -90%;
        box-shadow: -7px 0 15px 5px #010101;
        position: fixed;
        top: 0;
        min-width: 410px;
        max-width: 410px;
        height: 200vh;
        z-index: 1032;
        padding: 18px 20px 14px
    }

    #left-sidebar.open{
        left: 0;
    }

    #left-sidebar .nav-menu {
        padding-left: 0;
        position: relative;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    #left-sidebar .nav-contact:not(:last-child) {
        margin-bottom: 5px;
    }

    #left-sidebar .nm-l-a{
        padding: 20px 10px 20px 16px;
        font-size: 23px;
        position: relative;
        top: 7px;
    }

    #left-sidebar .nm-li {
        list-style: none;
        border-left: 3px solid #e7e7e7;
        min-height: 50px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

    #left-sidebar .nm-li.last-child {
        margin-bottom: 0;
    }

    #left-sidebar .nav-contact{
        width: 100%;
    }

    #left-sidebar .nav-contact .fa-telegram-plane{
        top: calc( 50% + 2px );
        left: calc( 50% + -1px );
    }

    #left-sidebar .nav-contact .nav-c-r-number{
        margin-top: -3px;
    }

    #left-sidebar .nav-contact .nav-c-r-label{
        font-size: 14px;
    }

    #left-sidebar .nav-get-quote{
        min-height: 69px;
        padding: 10px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #left-sidebar .nav-get-quote .nav-c-1{
        justify-content: center;
    }

    #left-sidebar .nav-contact .fa-envelope{
        top: calc( 50% + 2px );
    }

    #left-sidebar .sn-contact-info {
        margin-top: 40px;
    }

    #left-sidebar .sn-logo {
        margin-top: 50px;
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    #left-sidebar .sn-l-img {
        max-width: 260px;
    }

    .navbar-brand>img {
        max-width: 200px;
    }

    .navbar-default,
    #site-header .heder-right,
     #site-header .nav-menu {
        min-height: 68px;
    }

    .linsh-vp-height {
        min-height: 75vh;
    }

    .page-container {
        margin-top: 68px;
    }

    .navbar-brand{
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .vc-theme-button a,
    .vc-theme-button button,
    .vc-theme-button-pseudo-a,
    input[type="submit"],
    .wpcf7 input[type="submit"]{
        padding-top: 15px;
        padding-bottom: 15px;
    }



    .linsh-form-style-1 .field-group.mb-15:not(:last-child){
        margin-bottom: 20px;
    }

    .linsh-form-style-1 .field-group.mb-8:not(:last-child) {
        margin-bottom: 8px;
    }

    .linsh-contact-form .fg-radio + .fg-submit {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .linsh-form-style-1 input[type="text"],
    .linsh-form-style-1 input[type="email"],
    .linsh-form-style-1 input[type="date"],
    .linsh-form-style-1 input[type="tel"],
    .linsh-form-style-1 input[type="url"],
    .linsh-form-style-1 input[type="number"],
    .linsh-form-style-1 input[type="file"],
    .linsh-form-style-1 select,
    .linsh-form-style-1 textarea{
        font-size: 14px;
    }

    input[type="search"]::placeholder,
    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="number"]::placeholder,
    input[type="date"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="url"]::placeholder,
    textarea::placeholder{
        font-size: 14px;
    }

    input[type="search"]:-ms-input-placeholder,
    input[type="text"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder,
    input[type="number"]:-ms-input-placeholder,
    input[type="date"]:-ms-input-placeholder,
    input[type="tel"]:-ms-input-placeholder,
    input[type="url"]:-ms-input-placeholder,
    textarea:-ms-input-placeholder{
        font-size: 14px;
    }

    input[type="search"]::-ms-input-placeholder,
    input[type="text"]::-ms-input-placeholder,
    input[type="email"]::-ms-input-placeholder,
    input[type="number"]::-ms-input-placeholder,
    input[type="date"]::-ms-input-placeholder,
    input[type="tel"]::-ms-input-placeholder,
    input[type="url"]::-ms-input-placeholder,
    textarea::-ms-input-placeholder{
        font-size: 14px;
    }

    .header-ham-icon{
        margin-top: 2px;
        width: 32px;
    }

    .navbar-default.sticky,
    .navbar-default,
    #site-header .heder-right,
    #site-header.sticky .heder-right,
    #site-header .nav-menu,
    #site-header.sticky .nav-menu {
        min-height: 50px;
    }

    .linsh-vp-height {
        min-height: calc( 100vh - 50px );
    }

    .page-container {
        margin-top: 50px;
    }

    #left-sidebar{
        padding: 14px 16px;
        min-width: 315px;
        max-width: 315px;
    }

    #left-sidebar .nm-li{
        min-height: 40px;
    }

    #left-sidebar .nm-l-a{
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 13px;
        top: 8px;
    }

    #left-sidebar .sn-contact-info {
        margin-top: 30px;
    }

    #left-sidebar .nav-contact .fa-telegram-plane {
        top: calc( 50% + 1px );
        left: calc( 50% + -1px );
        font-size: 20px;
    }

    #left-sidebar .nav-contact .nav-c-l-whatsapp{
        font-size: 22px;
    }

    #left-sidebar .nav-contact .nav-c-r-number{
        font-size: 18px;
        margin-top: -1px;
    }

    #left-sidebar .nav-contact .nav-c-r-label {
        font-size: 12px;
    }

    #left-sidebar .nav-telegram .nav-c-r-label,
    #left-sidebar .nav-whatsapp .nav-c-r-label{
        position: relative;
        top: 1px;
    }

    #left-sidebar .nav-email .nav-c-r-number{
        margin-top: -6px;
    }

    #left-sidebar .nav-contact .nav-c-left {
        width: 40px;
        height: 40px;
    }

    #left-sidebar .nav-contact .nav-c-right:not(:first-child) {
        margin-left: 9px;
    }

    #left-sidebar .nav-contact .fa-envelope {
        top: calc( 50% + 0px );
        font-size: 19px;
    }

    #left-sidebar .nav-get-quote{
        min-height: 51px;
    }

    #left-sidebar .nav-contact.nav-get-quote .nav-c-r-label {
        font-size: 19px;
    }

    #left-sidebar .sn-l-img {
        max-width: 210px;
    }

    #left-sidebar .sn-logo{
        margin-top: 30px;
    }




    .linsh-contact-form .lcf-t-1{
        font-size: 25px;
    }

    .linsh-products.lvid-type-installations .linsh-overlay {
        background-color: rgba(0, 0, 0, 0.1);
    }


    .footer-widget-area .nav-c-left .fa-telegram-plane{
        font-size: 14px;
    }



    .linsh-form-style-1 .field-group.mb-15:not(:last-child) {
        margin-bottom: 25px;
    }

    .linsh-form-style-1 .field-group.mb-8:not(:last-child) {
        margin-bottom: 13px;
    }

    .linsh-contact-form .fg-radio label{
        font-size: 16px;
    }

    .linsh-contact-form .lcf-descr{
        font-size: 17px;
    }


    .linsh-contact-form .nav-contact .fa-phone{
        /* top: calc( 50% + 2px ); */
        left: calc( 50% - 1px );
    }
}

@media (min-width: 992px) and (max-width: 1119px) {
    #site-header .nav-contact.nav-whatsapp{
        display: none;
    }
}

@media (min-width: 1366px) and (max-width: 1449px) {
    .pg-get-a-quote .linsh-vid-section .linsh-contact-form .lcf-1,
    .footer-widget-area .linsh-contact-form .lcf-1{
        padding: 19px 27px 27px;
    }
    
    .footer-widget-area .linsh-contact-form .lcf-1{
        padding-top: 23px;
    }

    #linsh-contact-popup .linsh-contact-form .lcf-1 {
        padding-bottom: 60px;
        padding-top: 17px;
    }

    #linsh-contact-popup .lcp-close{
        bottom: 20px;
    }

    .footer-widget-area .lcf-title {
        margin-bottom: 20px;
    }
}



.bagels-cover-img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    top: 0;
    left: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-social_links .linsh-icon-ball{
    width: 64px;
    height: 64px;
    margin-bottom: 7px;
}

.linsh-social_links .linsh-icon-ball:not(:last-child){
    margin-right: 7px;
}

.linsh-social_links .linsh-icon-ball i{
    font-size: 28px;
}

.linsh-contact-link .lcl-1{
    display: flex;
    align-items: center;
}

.linsh-contact-link .lcl-r-label{
    font-size: 17px;
    line-height: 1;
    margin-bottom: 3px;
}

.linsh-contact-link .lcl-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.linsh-contact-link .lcl-r-value {
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
}

.linsh-contact-link .lcl-left {
    margin-right: 10px;
}

.linsh-contact-link .lcl-r-location {
    font-size: 18px;
    /* top: -6px; */
    position: relative;
    line-height: 1;
    margin-top: 4px;
}



.footer-widget-area .fwa-image{
    z-index: 1;
}

.footer-widget-area .fwa-1{
    padding-top: 1px;
}

.footer-widget-area .fwa-2{
    z-index: 4;
    position: relative;
    /* margin-top: 170px; */
    margin-top: 110px;
}

.footer-widget-area .fwa-1 .linsh-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.footer-widget-area .fwa-3{
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
}

.footer-widget-area .fwa-l-l-1 {
    max-width: 290px;
}

.footer-widget-area .fwa-l-logo{
    margin-bottom: 30px;
}

.footer-widget-area .fwa-l-descr{
    margin-bottom: 50px;
}

.footer-widget-area .fwa-l-descr {
    position: relative;
    display: inline-block;
}

.footer-widget-area .fwa-l-buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -15px;
}

.footer-widget-area .fwa-l-buttons .fwa-l-contact-button{
    margin-bottom: 15px;
}

.footer-widget-area .fwa-l-d-top{
    font-weight: 700;
    font-size: 55px;
}

.footer-widget-area .fwa-l-d-bottom{
    font-weight: 500;
    font-size: 53px;
}

.footer-widget-area .fwa-l-contact-button{
    display: flex;
}

.footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote{
    padding: 6px 11px 8px;
    min-width: 314px;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote .nav-c-r-label{
    font-weight: 600;
    font-size: 31px;
}

.footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote .nav-c-1{
    justify-content: center;
}

.footer-widget-area .fwa-l-2:not(:last-child){
    margin-bottom: 51px;
}

.footer-widget-area .fwa-l-contact-i-1,
.footer-widget-area .linsh-social_links {
    display: flex;
    align-items: center;
}

.footer-widget-area .fwa-l-contact-i-1{
    align-items: flex-start;
}

.footer-widget-area .linsh-social_links {
    flex-wrap: wrap;
    margin-bottom: -7px;
}

.footer-widget-area .fwa-l-contact-i-1:not(:last-child){
    margin-bottom: 30px;
}

.footer-widget-area .lcl-r-location i{
    font-size: 13px;
    position: relative;
    top: -1px;
    margin-left: 3px;
}

.footer-bottom .fb-1 {
    font-size: 19px;
    font-weight: 400;
    padding: 16px 0;
}

.footer-bottom .fb-author {
    position: relative;
}

.footer-bottom .fb-a-l-img {
    max-width: 27px;
}

.footer-bottom .fb-a-link,
.footer-bottom .fb-author{
    display: flex;
    align-items: center;
}

.footer-bottom .fb-a-link {
    margin-left: 7px;
}

.footer-bottom .fb-a-l-text{
    margin-left: 7px;
    line-height: 1;
    position: relative;
    top: 2px;
    font-weight: 400;
}


.linsh-about-us{
    position: relative;
}

.linsh-about-us .lau-1{
    z-index: 4;
    position: relative;
    padding: 45px 0 100px;
}

.linsh-about-us .lau-content {
    font-weight: 400;
    margin: auto;
    margin-top: 40px;
}

.linsh-about-us .lau-c-descr {
    position: relative;
    font-size: 20px;
}

.linsh-about-us .lau-c-descr p{
    line-height: 1.7;
}

.linsh-about-us .lau-c-descr p:not(:last-child){
    margin-bottom: 15px;
}

.linsh-about-us .lau-c-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -25px;
}

.linsh-about-us .lau-c-2-sb-span{
    display: block;
}


.owl-carousel{
    position: relative;
}

.owl-carousel .owl-nav button {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.owl-carousel .owl-nav .owl-prev{
    left: -30px;
}

.owl-carousel .owl-nav .owl-next{
    right: -30px;
}

.owl-carousel .owl-nav button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.owl-carousel button.owl-dot{
    width: 16px;
    height: 16px;
    border-radius: 50px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.owl-carousel button.owl-dot:not(:last-child){
    margin-right: 9px;
}



.linsh-vid-section{
    position: relative;
    display: flex;
    align-items: center;
}

.linsh-vid-section .linsh-theme-title .ltl-1:after{ display: none;}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(3),
.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(1),
.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(2){
    font-weight: 600;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(1) {
    font-size: 105px;
    margin-bottom: -6px;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(2) {
    font-size: 69px;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(3) {
    font-size: 54px;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(4) {
    font-size: 60px;
}


.linsh-vid-section > video {
    z-index: 1;
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
}

.linsh-vid-section .lvid-1 {
    position: relative;
    z-index: 4;
    padding-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.linsh-vid-section.lvid-sect-1 .linsh-theme-title{
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.linsh-vid-section .lvid-vid-link {
    margin-top: 10px;
}

.linsh-vid-section.lvid-sect-1 .lvid-sub-title .ltl-1{
    font-size: 40px;
}

.linsh-vid-section.lvid-sect-1 .lvid-descr {
    font-weight: 300;
    text-align: center;
    max-width: 1065px;
    margin: 25px auto 0;
    line-height: 1.4;
    font-size: 20px;
}

.linsh-vid-section-2 .lvid-container{
    z-index: 4;
}

.linsh-vid-section-2 .lvid-box {
    text-align: center;
    padding: 80px;
    line-height: 1;
    position: relative;
}

.linsh-vid-section-2 .lvid-box:after {
    content: "";
    width: calc( 100% - 50px );
    height: calc( 100% - 50px );
    border: 3px solid #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.linsh-vid-section-2 .lvid-ec {
    display: flex;
    justify-content: center;
}

.linsh-vid-section-2 .lvid-b-title {
    font-size: 78px;
    font-weight: 700;
}

.linsh-vid-section-2 .lvid-b-sub-title {
    font-weight: 300;
    font-size: 68px;
    margin-top: 5px;
}

.linsh-vid-section-2 .vc-theme-button{
    margin-top: 30px;
}

.lvid-virt-assts .lvid-va-1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -12px;
}

.lvid-virt-assts .lvid-va-s-img {
    display: flex;
    max-width: 36px;
    margin-right: 6px;
}

.lvid-virt-assts .lvid-va-single {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    min-width: 250px;
    padding: 10px;
    margin-bottom: 12px;
}

.lvid-virt-assts .lvid-va-s-t-tt-title {
    font-weight: 500;
    font-size: 19px;
    line-height: 1;
}

.lvid-virt-assts .lvid-va-s-t-top-text {
    font-size: 12px;
    line-height: 1;
}

.lvid-virt-assts .lvid-va-s-texts {
    position: relative;
    top: 1px;
}

.lvid-virt-assts:not(:first-child) {
    margin-top: 25px;
}



.linsh-motor-solutions {
    padding-top: 15px;
    padding-bottom: 20px;
}

.linsh-motor-solutions .lms-descr {
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.linsh-motor-solutions .lms-1 {
    border-radius: 17px;
    padding: 33px 40px 40px;
}

.linsh-motor-solutions .lms-descr:not(:last-child){
    margin-bottom: 30px;
}

.linsh-motor-solutions .lms-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -11px;
    justify-content: center;
}

.linsh-motor-solutions .lms-l-s-img{
    display: flex;
    align-items: center;
}

.linsh-motor-solutions .lms-l-s-i-1 {
    height: 35px;
}

.linsh-motor-solutions .lms-l-single {
    border-radius: 8px;
    overflow: hidden;
    /* padding: 7px 7px 5px; */
    padding: 7px;
    background-color: #fff;
    min-width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 11px;
}

@media (min-width: 768px) {
    .lms-l-single:not(:last-child):not(:nth-child(3n)) {
        margin-right: 11px;
    }
}

@media (min-width: 992px) {
    .lms-l-single:not(:last-child):not(:nth-child(4n)) {
        margin-right: 11px;
    }
}

@media (min-width: 1200px) {
    .lms-l-single:not(:last-child):not(:nth-child(5n)) {
        margin-right: 11px;
    }
}

@media (min-width: 1366px) {
    .linsh-about-us .lau-1{
        padding: 55px 0 110px;
    }
}

@media (min-width: 1440px) {
    .linsh-vid-section-2 .lvid-ec {
        margin-top: 110px;
    }
}

@media (min-width: 1680px) {
    .lms-l-single:not(:last-child):not(:nth-child(6n)) {
        margin-right: 11px;
    }

    .linsh-about-us .lau-1{
        padding: 75px 0 120px;
    }
}

@media (min-width: 1920px) {
    .lms-l-single:not(:last-child):not(:nth-child(7n)) {
        margin-right: 11px;
    }
}

@media (max-width: 991px) {
    .linsh-motor-solutions .lms-l-s-i-1 {
        height: 28px;
    }

    .linsh-vid-section-2 .lvid-b-title {
        font-size: 60px;
    }

    .linsh-vid-section-2 .lvid-b-sub-title {
        font-size: 53px;
    }
}

@media (max-width: 767px) {
    .linsh-motor-solutions .lms-l-single{
        min-width: calc( 50% - ( 11px / 2 ) );
        border-radius: 5px;
        padding: 10px 7px 8px;
    }

    .lms-l-single:not(:last-child):not(:nth-child(even)) {
        margin-right: 11px;
    }

    .linsh-motor-solutions .lms-l-s-i-1 {
        height: 21px;
    }

    .linsh-motor-solutions .lms-1{
        padding: 28px 30px 30px;
        border-radius: 14px;
    }

    .linsh-motor-solutions .lms-descr:not(:last-child) {
        margin-bottom: 25px;
        font-size: 14px;
    }

    .linsh-vid-section-2 .lvid-b-title {
        font-size: 35px;
    }

    .linsh-vid-section-2 .lvid-box{
        padding: 40px 20px;
    }

    .linsh-vid-section-2 .lvid-b-title {
        font-size: 37px;
    }

    .linsh-vid-section-2 .lvid-b-sub-title {
        font-size: 33px;
    }

    .linsh-vid-section-2 .lvid-container,
    .linsh-vid-section-2 .lvid-box,
    .linsh-vid-section-2 .lvid-ec{
        width: 100%;
    }

    .linsh-vid-section-2 .lvid-box:after {
        content: "";
        width: calc( 100% - 20px );
        height: calc( 100% - 20px );
        border-width: 1px;
    }

    .linsh-vid-section-2 .vc-theme-button {
        margin-top: 20px;
    }

    .linsh-vid-section.lvid-sect-prod-single .linsh-overlay{
        background-color: rgba(0, 0, 0, 0.5);
    }


    .pg-sin-prod .linsh-vid-section{
        align-items: flex-end;
    }

    .pg-sin-prod .lvid-1.linsh-vp-height{
        min-height: auto;
    }
}

@media (min-width: 1366px) and (max-width: 1439px) {
    .linsh-vid-section .lvid-1{
        padding-bottom: 10px;
    }

    .linsh-vid-section.lvid-sect-1 .lvid-descr{
        margin-top: 20px;
    }
}



.linsh-vid-popup-link{
    text-align: center;
}

.linsh-vid-popup-link .lvpl-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.linsh-vid-popup-link .lvpl-text {
    margin-left: 20px;
    font-size: 34px;
    font-weight: 300;
}

.linsh-vid-popup-link .lvid-vid-link {
    margin-top: 10px;
}



.linsh-play-circle{
    width: 70px;
    height: 70px;
    border-radius: 50px;
    position: relative;
    font-size: 25px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-play-circle i{
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
}


.linsh-contact-form .lcf-response{
    text-align: center;
    line-height: 1.3;
    font-size: 15px;
    margin-top: 16px;
    font-weight: 500;
    padding: 13px 10px;
    border-radius: 4px;
}

.linsh-contact-form .lcf-response.success{
    background-color: #328d34;
}

.linsh-contact-form .lcf-response.error{
    background-color: #d94843;
}

.linsh-contact-form input[type="search"].field-danger,
.linsh-contact-form input[type="text"].field-danger,
.linsh-contact-form input[type="email"].field-danger,
.linsh-contact-form input[type="number"].field-danger,
.linsh-contact-form input[type="date"].field-danger,
.linsh-contact-form input[type="tel"].field-danger,
.linsh-contact-form input[type="url"].field-danger,
.linsh-contact-form select.field-danger,
.linsh-contact-form textarea.field-danger{
    border: 1px solid #d94843 !important;
}



#linsh-contact-popup{
    display: none;
    padding: 0;
    background-color: transparent;
    position: relative;
}

.lcp-form-parent .lcp-1{
    display: flex;
    align-items: center;
    overflow: hidden;
    filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.15));
}

.lcp-form-parent .lcp-2{
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
    
.lcp-form-parent > [data-fancybox-close].fancybox-button{
    display: none;
}

.lcp-form-parent .lcp-close {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    font-weight: 100;
    font-size: 17px;
    line-height: 1;
}

#linsh-contact-popup .lcp-close{
    display: flex;
    font-weight: 400;
}

.lcp-form-parent .lcp-close i{
    margin-left: 7px;
    position: relative;
    font-size: 19px;
    top: 1px;
}

.lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1:after {
    display: none;
}

.lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-title{
    max-width: 69%;
    margin: auto;
}

.lcp-form-parent .lcp-form-3 .lcf-contact-section {
    margin-left: -33px;
    margin-right: -33px;
    padding: 16px 33px 20px;
}

.lcp-form-parent .lcp-form-3 .lcf-cs-number {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
}

.lcp-form-parent .lcp-form-3 .lcf-cs-number .nav-contact:not(:last-child){
    margin-bottom: 10px;
}

.lcp-form-parent .lcp-form-3 .lcf-cs-number .nav-contact .fa-whatsapp{
    font-size: 22px;
}

#linsh-contact-popup .lcp-form-parent .nav-contact .fa-whatsapp {
    font-size: 20px;
}

.lcp-form-parent .lcp-form-3 .lcf-cs-label {
    font-size: 19px;
    text-align: center;
}

.lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1 {
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 32px;
    line-height: 1;
    position: relative;
}

.lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1:before{
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    width: 0;
    height: 0;
    bottom: -13px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top-width: 22px;
    border-top-style: solid;
    z-index: 1;
    pointer-events: none;
    right: 1px;
    position: absolute;
    content: "";
    transform: rotateZ(-41deg);
}

.pg-get-a-quote .lcp-form-parent{
    max-width: 450px;
    margin: auto;
}

.pg-get-a-quote .pg-gaq-container{
    z-index: 3;
    position: relative;
    padding-top: 155px;
    padding-bottom: 162px;
}

.pg-get-a-quote ~ .footer-widget-area,
.pg-get-a-quote ~ .linsh-about-us{
    display: none;
}


.virtual-assistants {
    padding-top: 35px;
    padding-bottom: 20px;
}

@media (min-width: 768px){
    .navbar-brand{
        float: none;
    }

    .linsh-contact-form {
        max-width: 450px;
        min-width: 450px;
    }
    
    
    .lcp-form-parent .lcp-1{
        max-width: 450px;
    }

    .lcp-form-parent.stage-2 .lcp-form-1 {
        margin-left: -450px;
    }

    .lcp-form-parent.stage-3 .lcp-form-1 {
        margin-left: -900px;
    }

    .footer-widget-area .fwa-l-contact-info > .linsh-social_links {
        display: none;
    }

    .footer-bottom .fb-1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-bottom .fb-author {
        margin-left: 14px;
    }
    
    .footer-bottom .fb-author:before {
        position: relative;
        content: "|";
        left: -7px;
    }

    .footer-widget-area .fwa-l-image{
        display: none;
    }

    .footer-widget-area .fwa-l-2 > .linsh-overlay{
        display: none;
    }

    .footer-widget-area .fwa-l-buttons .fwa-l-contact-button:not(:last-child){
        margin-right: 15px;
    }
}

@media (min-width: 992px){
    #site-header.sticky .navbar-brand{
        padding: 10px 0;
    }

    #site-header.sticky .navbar-brand>img{
        max-width: 185px;
    }

    .linsh-about-us .lau-c-1 {
        display: flex;
        align-items: center;
    }

    .linsh-about-us .lau-c-descr {
        text-align: center;
    }


    .lvid-virt-assts .lvid-va-single:not(:last-child):not(:nth-child(4n)) {
        margin-right: 12px;
    }
}

@media (min-width: 1200px){
    .footer-widget-area .fwa-left {
        padding-right: 50px;
    }
}

@media (min-width: 1366px) {
    .linsh-about-us .lau-content {
        max-width: 95%;
    }

    .footer-widget-area .fwa-3{
        padding-bottom: 20px;
    }
}

@media (min-width: 1680px) {
    .linsh-about-us .lau-content {
        max-width: 77%;
    }
    
    .linsh-about-us .lau-c-r-5{
        font-size: 59px;
    }


    .lvid-virt-assts .lvid-va-single:not(:last-child):not(:nth-child(5n)) {
        margin-right: 12px;
    }
}

@media (min-width: 1920px) {
    .lvid-virt-assts .lvid-va-single:not(:last-child):not(:nth-child(6n)) {
        margin-right: 12px;
    }
}

@media (max-width: 1439px){
    .linsh-vid-section .linsh-vid-section .lvid-1s{
        padding-bottom: 45px;
    }
}

@media (max-width: 1199px){
    .footer-widget-area .fwa-3{
        flex-direction: column;
    }

    .footer-widget-area .fwa-2{
        margin-top: 70px;
    }

    .footer-widget-area .fwa-l-2:not(:last-child){
        margin-bottom: 60px;
    }

    .footer-widget-area .fwa-right {
        margin-top: 50px;
    }

    


    .linsh-about-us .lau-c-descr{
        font-size: 19px;
    }

    .linsh-about-us .lau-content{
        margin-top: 25px;
    }

    .linsh-about-us .lau-c-descr p:not(:last-child) {
        margin-bottom: 15px;
    }



    .lvid-virt-assts .lvid-va-single{
        min-width: 220px;
    }

    .lvid-virt-assts .lvid-va-s-t-top-text{
        font-size: 10px;
    }

    .lvid-virt-assts .lvid-va-s-t-tt-title{
        font-size: 18px;
    }


    .footer-widget-area .lcp-form-parent{
        box-shadow: none;
    }
}

@media (max-width: 991px){
    .linsh-theme-title .ltl-1{
        font-size: 55px;
    }


    .linsh-about-us .lau-c-descr{
        text-align: center;
    }



    .linsh-vid-section.lvid-sect-1 .lvid-descr{
        font-size: 21px;
    }



    .lvid-virt-assts .lvid-va-single:not(:last-child):not(:nth-child(2n)) {
        margin-right: 12px;
    }

    .lvid-virt-assts .lvid-va-single {
        min-width: 280px;
    }

    
    .footer-widget-area .fwa-l-l-1 {
        max-width: 270px;
    }

    .footer-widget-area .fwa-l-d-top{
        font-size: 48px;
    }

    .footer-widget-area .fwa-l-d-bottom{
        font-size: 48px;
    }


    .footer-bottom .fb-1{
        padding: 15px 0;
    }



    .linsh-testimonials .ltt-sect-1:after {
        content: "";
        display: block;
    }
}

@media (max-width: 767px){
    body { font-size: 15px; }

    input[type="search"]::placeholder,
    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="number"]::placeholder,
    input[type="date"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="url"]::placeholder{
        font-size: 14px;
        padding-top: 3px;
    }

    input[type="search"]:-ms-input-placeholder,
    input[type="text"]:-ms-input-placeholder,
    input[type="email"]:-ms-input-placeholder,
    input[type="number"]:-ms-input-placeholder,
    input[type="date"]:-ms-input-placeholder,
    input[type="tel"]:-ms-input-placeholder,
    input[type="url"]:-ms-input-placeholder{
        font-size: 15px;
        padding-top: 3px;
    }

    input[type="search"]::-ms-input-placeholder,
    input[type="text"]::-ms-input-placeholder,
    input[type="email"]::-ms-input-placeholder,
    input[type="number"]::-ms-input-placeholder,
    input[type="date"]::-ms-input-placeholder,
    input[type="tel"]::-ms-input-placeholder,
    input[type="url"]::-ms-input-placeholder{
        font-size: 15px;
        padding-top: 3px;
    }

    .navbar-brand{
        padding: 8px 0;
    }
    
    .navbar-brand>img {
        max-width: 140px;
    }

    .nav-contact{
        padding: 5px 11px 4px 6px;
    }
    
    #site-header .nav-c-left,
    #site-header.sticky .nav-c-left{
        width: 35px;
        height: 35px;
    }
    
    .nav-contact .nav-c-r-label{
        font-size: 10px;
        font-weight: 400;
    }

    .nav-contact .nav-c-r-number{
        font-size: 21px;
    }

    .nav-contact .icon-main{
        font-size: 16px;
    }
    
    #site-header .icon-main,
    #site-header.sticky .icon-main{
        font-size: 21px;
    }

    .linsh-contact-form .nav-contact .fa-wifi {
        font-size: 7px;
        top: 7px;
        right: 6px;
    }

    .linsh-contact-form .nav-contact .fa-wifi {
        top: 11px;
        right: 9px;
    }

    #linsh-contact-popup .nav-contact .fa-wifi{
        font-size: 7px;
    }

    .linsh-contact-form .nav-contact.nc-small{
        display: inline-block;
    }




    .linsh-icon-ball{
        width: 45px;
        min-height: 45px;
        min-width: 45px;
    }

    .linsh-icon-ball i{
        top: 50%;
        font-size: 17px;
    }

    .linsh-social_links .linsh-icon-ball {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
    }

    .linsh-social_links .linsh-icon-ball i {
        font-size: 20px;
    }

    .linsh-social_links .linsh-icon-ball:not(:last-child){
        margin-right: 14px;
    }

    .linsh-contact-link .lcl-r-label {
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 4px;
    }

    .linsh-contact-link .lcl-r-value{
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
    }

    .vc-theme-button a,
    .vc-theme-button button,
    .vc-theme-button-pseudo-a,
    input[type="submit"],
    .wpcf7 input[type="submit"]{
        font-size: 15px;
        font-weight: 600;
        padding: 12px 13px;
    }

    .vc-theme-button i,
    .vc-theme-button-pseudo-a i{
        margin-left: 15px;
        font-size: 13px;
    }

    .lcp-form-parent .lcp-2{
        min-width: 100%;
    }
        
    .lcp-form-parent .lcp-1{
        max-width: 100%;
    }

    .lcp-form-parent.stage-2 .lcp-form-1 {
        margin-left: -100%;
    }

    .lcp-form-parent.stage-3 .lcp-form-1 {
        margin-left: -200%;
    }

    .footer-widget-area .fwa-3 {
        flex-direction: column-reverse;
        padding-bottom: 15px;
    }

    .footer-widget-area .fwa-right {
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer-widget-area .fwa-l-l-1 {
        max-width: 180px;
        display: table;
        margin: auto;
    }

    .footer-widget-area .fwa-l-descr{
        text-align: center;
    }

    .footer-widget-area .fwa-l-d-top{
        font-size: 28px;
        margin-bottom: 0;
    }
    
    .footer-widget-area .fwa-l-d-bottom{
        font-size: 27px;
        letter-spacing: 1;
    }

    .footer-widget-area .fwa-l-logo{
        margin-bottom: 25px;
    }

    .footer-widget-area .fwa-l-descr{
        margin-bottom: 40px;
        display: block;
    }

    .footer-widget-area .fwa-l-contact-i-1 .linsh-social_links {
        display: none;
    }

    .footer-widget-area .linsh-social_links{
        margin-top: 20px;
        margin-bottom: -14px;
    }

    .footer-widget-area .fwa-l-buttons .fwa-l-contact-button:nth-child(odd){
        margin-right: 10px;
    }

    .footer-widget-area .fa-telegram-plane{
        top: calc( 50% + 1px );
        left: calc( 50% + -1px );
        font-size: 15px;
    }

    .footer-widget-area .fa-envelope{
        font-size: 13px;
    }
    
    .footer-widget-area .fwa-l-buttons .nav-c-left {
        width: 27px;
        height: 27px;
    }


    .linsh-contact-link .lcl-r-location{
        top: 0;
        font-size: 15px;
        margin-top: 5px;
        display: block;
    }

    .footer-bottom{
        text-align: center;
    }

    .footer-bottom .fb-author{
        justify-content: center;
        margin-top: 3px;
    }

    .footer-bottom .fb-1{
        font-size: 14px;
    }

    .footer-bottom .fb-a-l-img {
        max-width: 22px;
    }

    .footer-widget-area .fwa-l-contact-button{
        justify-content: center;
        min-width: calc( 50% - 5px );
    }

    .footer-widget-area .fwa-l-buttons .nav-contact{
        width: 100%;
    }

    .footer-widget-area .fwa-l-2{
        position: relative;
        margin-left: -15px;
        margin-right: -15px;
    }

    .footer-widget-area .fwa-l-logo,
    .footer-widget-area .fwa-l-descr,
    .footer-widget-area .fwa-l-buttons{
        margin-left: 15px;
        margin-right: 15px;
        position: relative;
        z-index: 4;
    }

    .footer-widget-area .fwa-l-descr {
        margin-bottom: 30px;
    }

    .footer-widget-area .fwa-l-2 .linsh-overlay{
        background-color: rgba(0, 0, 0, 0.6);
    }

    .footer-widget-area .fwa-l-3{
        padding-top: 60px;
    }

    .footer-widget-area .fwa-l-image{
        z-index: 1;
    }

    .footer-widget-area .fwa-l-2:not(:last-child){
        margin-bottom: 25px;
    }

    .footer-widget-area .lcl-r-location i{
        font-size: 11px;
        top: 0px;
        margin-left: 4px;
    }

    .footer-widget-area .fwa-image{
        display: none;
    }

    .footer-widget-area .fwa-2{
        margin-top: 55px;
    }

    .footer-widget-area .fwa-1 > .linsh-overlay{
        display: none;
    }

    .footer-widget-area .nav-contact .nav-c-r-number {
        font-size: 14px;
        margin-top: -1px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote{
        min-width: 167px;
        min-height: 44px;
        padding: 6px 11px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote .nav-c-r-label{
        font-size: 16px;
    }

    .footer-widget-area .fwa-l-buttons .fwa-l-contact-button{
        margin-bottom: 10px;
    }

    .footer-widget-area .fwa-l-buttons{
        margin-bottom: -10px;
    }

    .footer-widget-area .nav-get-quote,
    .footer-widget-area .fwa-l-ci-quote{
        width: 100%;
    }

    .footer-widget-area .fwa-l-ci-quote{
        margin-top: 30px;
    }



    .linsh-contact-form .lcf-1{
        padding: 22px;
        padding-bottom: 60px;
        font-size: 24px;
        font-weight: 400;
    }
    
    .footer-widget-area .linsh-contact-form .lcf-1{
        padding-bottom: 24px;
    }

    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-title,
    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-descr{
        min-width: 89%;
    }

    .lcp-form-parent .lcp-form-3 .lcf-cs-label,
    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-descr{
        font-size: 17px;
    }

    .lcp-form-parent .lcp-form-3 .linsh-contact-form .lcf-t-1{ font-size: 27px; }
    
    .linsh-form-style-1 .field-group:not(:last-child) {
        margin-bottom: 10px;
        display: flex;
    }

    .linsh-form-style-1 .lcf-submit-btn{ padding: 13px; }

    .linsh-contact-form .fg-submit button i{
        font-size: 12px;
        margin-left: 8px;
    }

    
    .linsh-theme-title .ltl-1{
        font-size: 36px;
        display: block;
    }

    .linsh-vid-section.lvid-sect-1 .lvid-sub-title .ltl-1 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(1) {
        font-size: 50px;
        margin-bottom: 0px;
    }

    .linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(2) { font-size: 36px; }

    .linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(3) { font-size: 35px; }

    .linsh-vid-section.lvid-sect-1 .linsh-theme-title .ltt-sect:nth-child(4) {
        font-size: 26px;
        margin-top: 4px;
    }
    


    .linsh-about-us .lau-content{ margin-top: 25px; }

    .linsh-about-us .lau-c-descr p:not(:last-child) { margin-bottom: 15px; }

    .linsh-about-us .lau-1 { padding: 45px 0 49px; }

    .linsh-about-us .lau-c-r-5{ margin-top: -1px; }


    .owl-carousel .owl-dots{ margin-top: 20px; }

    .owl-carousel button.owl-dot{
        width: 10px;
        height: 10px;
    }

    .owl-carousel button.owl-dot:not(:last-child) { margin-right: 7px; }


    .linsh-vid-popup-link .lvpl-text{
        font-size: 25px;
        margin-left: 10px;
    }


    .linsh-play-circle{
        height: 50px;
        width: 50px;
        font-size: 17px;
    }


    
    .linsh-vid-section .lvid-vid-link { margin-top: 5px; }

    .linsh-vid-section .lvid-1{ padding-bottom: 30px; }


    .linsh-theme-title .ltt-sect:nth-child(1){
        font-size: 75px;
        margin-bottom: -11px;
    }

    .linsh-theme-title .ltt-sect:nth-child(2) { font-size: 45px; }

    .linsh-theme-title .ltt-sect:nth-child(3){ font-size: 34px; }

    .linsh-theme-title .ltt-sect:nth-child(4) { font-size: 35px; }

    .linsh-vid-section.lvid-type-1 .lvid-1 {
        padding-bottom: 90px;
    }
    
    .linsh-vid-section.lvid-sect-1 .lvid-1 { padding-bottom: 30px; }
 
    .linsh-about-us .lau-c-descr{ font-size: 15px; }

    .pg-get-a-quote .pg-gaq-container{
        padding-top: 70px;
        padding-bottom: 70px;
        max-width: 100%;
    }

    .linsh-vid-section.lvid-sect-1 .lvid-descr{
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .lvid-virt-assts .lvid-va-single{
        margin-right: 0 !important;
    }

    .lvid-virt-assts .lvid-va-s-img{
        max-width: 40px;
    }

    .lvid-virt-assts .lvid-va-s-t-tt-title {
        font-size: 17px;
        margin-top: 2px;
    }

    .lvid-virt-assts .lvid-va-s-t-top-text {
        font-size: 11px;
    }

    .virtual-assistants{
        background-color: #000;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .linsh-motor-solutions {
        padding-top: 20px;
    }

    .lcp-form-parent .lcp-form-3 .lcf-contact-section{
        padding-top: 23px;
        padding-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1679px) {
    .linsh-social_links .linsh-icon-ball{
        width: 45px;
        height: 45px;
    }

    .linsh-icon-ball {
        min-width: 45px;
        min-height: 45px;
    }
    
    .linsh-icon-ball i {
        font-size: 20px;
    }
    
    .linsh-social_links .linsh-icon-ball i{
        font-size: 20px;
    }
    
    .linsh-contact-link .lcl-r-label{
        font-size: 16px;
    }

    .linsh-contact-link .lcl-r-value{
        font-size: 20px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-number{
        font-size: 27px;
        line-height: 1.3;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-label{
        font-size: 15px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-left{
        width: 45px;
        height: 45px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .fa-envelope{
        font-size: 23px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote {
        min-width: 284px;
        min-height: 66px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote .nav-c-r-label,
    #left-sidebar .nav-contact.nav-get-quote .nav-c-r-label {
        font-size: 27px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .pg-get-a-quote .pg-gaq-container{
        padding-top: 225px;
        padding-bottom: 164px;
    }

    .footer-widget-area .fwa-l-buttons .fwa-l-contact-button{
        min-width: calc( 50% - 8px );
    }
    
    .footer-widget-area .fwa-l-buttons .fwa-l-contact-button:nth-child(even){
        margin-right: 0;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact{
        width: 100%;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-number{
        font-size: 25px;
    }


    .footer-widget-area .fwa-l-buttons .nav-contact .fa-envelope {
        font-size: 23px;
        top: calc( 50% + 1px );
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote{
        min-height: 72px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-number{
        line-height: 1.4;
    }
}

@media (min-width: 992px) and (max-width: 1199px){
    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-number{
        font-size: 19px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-r-label {
        font-size: 13px;
    }

    .footer-widget-area .fwa-l-buttons .nav-c-r-number{
        margin-top: 1px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .nav-c-left {
        width: 40px;
        height: 40px;
    }

    .footer-widget-area .fwa-l-buttons .nav-c-left .fa-telegram-plane{
        font-size: 20px;
    }

    .footer-widget-area .fwa-l-buttons .nav-c-l-whatsapp {
        font-size: 22px;
    }

    .footer-widget-area .fwa-l-buttons .nav-contact .fa-envelope {
        font-size: 19px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote{
        min-height: 58px;
        min-width: 233px;
    }

    .footer-widget-area .fwa-l-contact-button .nav-contact.nav-get-quote .nav-c-r-label {
        font-size: 25px;
    }

    .footer-widget-area .fwa-l-d-top{
        font-size: 45px;
    }

    .footer-widget-area .fwa-l-d-bottom{
        font-size: 43px;
    }

    .footer-widget-area .fwa-l-l-1 {
        max-width: 260px;
    }

    .footer-widget-area .fwa-l-l-1 {
        max-width: 260px;
    }
}

@media (min-width: 1366px) and (max-width: 1439px){
    .linsh-vid-section.lvid-sect-1 .lvid-1{
        padding-bottom: 30px;
    }
}


.ui-datepicker td,
.ui-datepicker th{
    width: 45px;
    height: 45px;
    width: 36px;
    height: 36px;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled{
    opacity: 0.3;
}

.ui-widget-header .ui-state-disabled{
    opacity: 0.5;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next{
    /* background: #444444; */
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover{
    /* background: #5e5e5e; */
    border: none;
}

.ui-datepicker .ui-datepicker-next-hover{
    right: 2px;
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover{
    left: 2px;
    top: 2px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next{
    min-width: 46px;
    min-height: 46px;
    min-width: 36px;
    min-height: 36px;
    height: 36px;
    width: 36px;
}

.ui-datepicker .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-next:after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    color: #fff;
    font-size: 18px;
    font-size: 14px;
}

.ui-datepicker .ui-datepicker-prev:after{
    content: "\f053";   
}

.ui-datepicker .ui-datepicker-next:after{
    content: "\f054";
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span{
    display: none;
}

.ui-state-default,
.ui-button,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled,
html .ui-button.ui-state-disabled{
    border: 1px solid transparent;
    /* background: #242424; */
    /* background: #525252; */
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-size: 14px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    width: 36px;
    height: 36px;
}

.ui-state-default:hover,
.ui-button:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active{
    /* background: #444444; */

}

.ui-widget.ui-widget-content {
    /* border: 1px solid #2e2e2e; */
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* color: #fff; */
    margin-top: 10px;
    max-width: calc( 450px - 175px );
}

.ui-widget-content{
    /* background-color: #000; */
    background-color: #e9e9e9;
}

.ui-widget-header{
    /* background: #242424; */
    color: #fff;
    border-color: transparent;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-top: 3px !important;
    padding-bottom: 5px !important;
}

.ui-datepicker .ui-datepicker-title{
    font-size: 20px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    top: 2px;
}

.ui-datepicker th{
    font-weight: 500;
    font-size: 17px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .ui-widget.ui-widget-content{
        width: calc( 100% - 44px - 12px );
    }
}


@media (min-width: 768px) and (max-width: 991px){
    .slider-max-width {
        max-width: 90%;
        margin: auto;
    }
}

/*Extended container*/
    @media (min-width: 1366px){
        .extended-container{
            margin-left: -60px;
            margin-right: -60px;
        }
    }

    @media (min-width: 1440px){
        .extended-container{
            margin-left: -80px;
            margin-right: -80px;
        }
    }

    @media (min-width: 1600px){
        .extended-container{
            margin-left: -160px;
            margin-right: -160px;
        }
    }

    @media (min-width: 1920px){
        .extended-container{
            margin-left: -230px;
            margin-right: -230px;
        }
    }
/*Extended container*/



#site-header .navbar-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}



.linsh-testimonials{
    position: relative;
}

.linsh-testimonials .ltst-bg-image {
    z-index: 1;
}

.linsh-testimonials .linsh-overlay{
    z-index: 2;
}

.linsh-testimonials .ltst-1{
    z-index: 3;
    position: relative;
    padding: 75px 0 45px;
}

.pg-sin-prod .linsh-testimonials .ltst-1{
    padding-top: 60px;
}

.linsh-testimonials .ltst-slider{
    margin: auto;
}

.linsh-testimonials .ltst-title {
    margin-bottom: 40px;
}

.linsh-testimonials .ltst-s-single {
    border-radius: 10px;
    overflow: hidden;
}

.linsh-testimonials .ltst-s-s-r-u-img{
    width: 87px;
    height: 87px;
    border-radius: 50px;
    overflow: hidden;
    border-style: solid;
    border-width: 5px;
    margin: auto;
    margin-bottom: 30px;
}

.linsh-testimonials .ltst-s-s-right {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.linsh-testimonials .ltst-s-s-right:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.linsh-testimonials .linsh-overlay-from-top{
    background-image: linear-gradient(to bottom, #000 7%, transparent 80%);
}

.linsh-testimonials .linsh-overlay-from-bottom{
    background-image: linear-gradient(to top, #000 6%, transparent 49%);
}

.linsh-testimonials .ltst-s-s-left {
    position: relative;
    min-width: 43%;
    min-height: 525px;
}

.linsh-testimonials .ltst-s-s-left:after {
    content: "";
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.05);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.linsh-testimonials .ltst-s-s-r-u-name {
    font-size: 34px;
    font-weight: 600;
}

.linsh-testimonials .ltst-s-s-r-u-ratings i{
    font-size: 17px;
    margin-right: 3px;
}

.linsh-testimonials .ltst-s-s-r-descr {
    font-weight: 500;
    line-height: 1.7;
    margin-top: 25px;
    font-size: 20px;
}


.linsh-vid-slider,
.linsh-products {
    position: relative;
}

.linsh-vid-slider .lprd-bg-image,
.linsh-products .lprd-bg-image{
    z-index: 1;
}

.linsh-vid-slider > .linsh-overlay,
.linsh-products > .linsh-overlay {
    z-index: 2;
}

.linsh-vid-slider .lprd-1,
.linsh-products .lprd-1 {
    position: relative;
    z-index: 4;
    padding: 67px 0 80px;
}

.linsh-vid-slider .lprd-1{
    padding: 100px 0 110px;
}

.linsh-vid-slider .lprd-title,
.linsh-products .lprd-title {
    margin-bottom: 40px;
}

.linsh-vid-slider .lprd-s-single,
.linsh-products .lprd-s-single {
    display: flex;
}

.linsh-vid-slider .lprd-s-s-link,
.linsh-products .lprd-s-s-link {
    position: relative;
    height: 550px;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    max-height: calc( 100vh - 80px - 17px );
}

.linsh-vid-slider .lprd-s-s-link{
    border-radius: 7px;
    max-height: 290px;
}

.linsh-vid-slider .lprd-s-s-link:after,
.linsh-products .lprd-s-s-link:after {
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: transparent;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    z-index: 4;
}

.linsh-products .lprd-s-s-link:hover:after {
    background-color: rgba(27, 27, 27, 0.5);
}

.linsh-vid-slider .lprd-s-s-link .linsh-overlay{
    background-color: transparent;
}

.linsh-vid-slider .lprd-s-s-link .linsh-overlay-from-bottom{
    top: 50%;
}

.linsh-vid-slider .lprd-s-s-link:hover .linsh-overlay{
    background-color: rgba(0, 0, 0, 0.1);
}

.linsh-vid-slider .lprd-s-s-l-img,
.linsh-products .lprd-s-s-l-img{
    z-index: 1;
}

.linsh-vid-slider .linsh-vid-popup-link{
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.linsh-vid-slider .linsh-vid-popup-link .lvpl-1{
    pointer-events: none;
}

.linsh-gallery .linsh-vid-popup-link .lvpl-icon,
.linsh-vid-slider .linsh-vid-popup-link .lvpl-icon{
    background-color: rgba(255, 255, 255, 0.33);
    border-color: rgba(255, 255, 255, 0.33);
    width: 50px;
    height: 50px;
    font-size: 17px;
}

.linsh-vid-slider .owl-carousel .owl-nav button{
    transform: translateY(-93%);
}


.linsh-products .lprd-s-s-l-te-lb{
    display: block;
}

.linsh-products .lprd-s-s-l-title-expanded,
.linsh-products .lprd-s-s-l-title {
    z-index: 5;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.linsh-products .lprd-s-common-title {
    font-size: 26px;
}

.linsh-products .lprd-s-s-l-te-descr {
    font-weight: 300;
    font-size: 19px;
}

.linsh-products.lvid-type-installations .lprd-s-s-l-te-title {
    margin-bottom: 5px;
    line-height: 1;
}

.linsh-products .lprd-s-s-l-te-count,
.linsh-products .lprd-s-s-l-te-installed {
    font-size: 23px;
}

.linsh-products .lprd-s-s-l-te-count{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.linsh-products .lprd-s-s-l-te-c-icon {
    font-size: 17px;
    margin-left: 6px;
}

.linsh-products .lprd-s-s-l-te-c-icon,
.linsh-products .lprd-s-s-l-te-c-num{
    display: block;
}

.linsh-products .lprd-s-s-l-te-sub-title {
    font-weight: 300;
    margin-bottom: 5px;
    line-height: 1;
}

.linsh-products .lprd-s-s-l-te-sub-title-2 {
    margin-bottom: 0px;
}

.linsh-products.lvid-type-installations .vc-theme-button-pseudo-a{
    margin-top: 20px;
}

.linsh-products .lprd-s-s-l-te-descr {
    margin-bottom: 23px;
}

.linsh-products .lprd-s-s-l-te-btn{
    min-width: auto;
    font-weight: 400;
    font-size: 16px;
    border-radius: 4px;
    padding: 12px 20px;
    margin-top: 20px;
}

.linsh-products .lprd-s-s-l-te-btn i{
    margin-left: 18px;
    font-size: 13px;
}

.linsh-products .lprd-s-s-link > .linsh-overlay-from-bottom{
    top: 65%;
}

.linsh-vid-slider .ltst-s-1.owl-carousel .owl-dots,
.linsh-products .ltst-s-1.owl-carousel .owl-dots {
    margin-top: 21px;
}


.linsh-vid-slider .lprd-s-s-title {
    position: absolute;
    bottom: 24px;
    z-index: 4;
    font-size: 30px;
    width: 100%;
    text-align: center;
    padding: 0 40px;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.linsh-prod-slider{
    position: relative;
}

.linsh-prod-slider .linsh-overlay-from-top{
    background-image: linear-gradient(to bottom, #000000 12%, transparent 100%);
}

.linsh-prod-slider .linsh-overlay-from-bottom {
    background-image: linear-gradient(to top, #000000 -5%, transparent 60%);
}

.linsh-prod-slider .lprdsl-1 {
    z-index: 4;
    position: relative;
    padding: 86px 0 80px;
}

.linsh-prod-slider .lprdsl-descr {
    text-align: center;
    margin: 50px auto auto auto;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
}

.linsh-prod-slider .lprdsl-s-single {
    position: relative;
    height: calc( 100vh - 68px - 75px );
    max-height: 710px;
    border-radius: 15px;
    overflow: hidden;
}



.linsh-gallery {
    padding: 60px 0;
}

.linsh-gallery .lgal-s-1 {
    margin-top: 40px;
}

.linsh-gallery .lgal-descr p {
    line-height: 1.5;
}

.linsh-gallery .lgal-descr {
    text-align: center;
    max-width: 1105px;
    margin: 40px auto 0;
    font-size: 20px;
}

.linsh-gallery .lgal-s-single {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}

.linsh-gallery .lgal-s-s-link {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linsh-gallery .lgal-s-s-l-img{
    top: 0;
    left: 0;
}

.linsh-gallery .lgal-s-s-link .linsh-overlay{
    background-color: rgba(0, 0, 0, 0.3);
}

.linsh-gallery .lgal-s-s-link .linsh-vid-popup-link{
    z-index: 4;
    position: absolute;
    display: flex;
}

.linsh-gallery .lgal-s-single:not(.has-video):nth-child(n+2) .linsh-overlay{
    opacity: 0.4;
}

.linsh-gallery .lgal-s-s-link:hover .linsh-overlay{
    opacity: 0.2 !important;
}
    
.linsh-gallery .lgal-s-single:nth-child(n+5){
    display: none;
}

.linsh-gallery .lgal-s-s-see-more {
    z-index: 4;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.linsh-gallery .lgal-s-s-sm-icon {
    margin-left: 8px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .linsh-gallery.has-more-desktop .lgal-s-single:nth-child(4) .lgal-s-s-see-more{
        display: flex;
    }

    .linsh-gallery.has-more-desktop .lgal-s-single:nth-child(4) .linsh-vid-popup-link{
        display: none;
    }

    .linsh-gallery.has-more-desktop .lgal-s-single:nth-child(4) .lgal-s-s-link .linsh-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .linsh-gallery.has-more-desktop .lgal-s-single:nth-child(4) .lgal-s-s-link:hover .linsh-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 1 !important;
    }
}

@media (min-width: 992px) {
    .linsh-gallery .lgal-s-single:nth-child(1){ grid-area: childone; }
    .linsh-gallery .lgal-s-single:nth-child(2){ grid-area: childtwo; }
    .linsh-gallery .lgal-s-single:nth-child(3){ grid-area: childthree; }
    .linsh-gallery .lgal-s-single:nth-child(4){ grid-area: childfour; }
    
    .linsh-gallery .lgal-s-1{
        display: grid;
        height: 420px;
        gap: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .linsh-gallery.box-count-1 .lgal-s-1{
        max-width: 960px;
    }
    
    .linsh-gallery.box-count-4 .lgal-s-1{
        grid-template-areas: 
        'childone childone childone childone childone childone childone childtwo childtwo'
        'childone childone childone childone childone childone childone childtwo childtwo'
        'childone childone childone childone childone childone childone childtwo childtwo'
        'childone childone childone childone childone childone childone childthree childthree'
        'childone childone childone childone childone childone childone childthree childthree'
        'childone childone childone childone childone childone childone childthree childthree'
        'childone childone childone childone childone childone childone childfour childfour'
        'childone childone childone childone childone childone childone childfour childfour'
        'childone childone childone childone childone childone childone childfour childfour';
    }
    
    .linsh-gallery.box-count-3 .lgal-s-1{
        grid-template-areas: 
        'childone childone childone childone childone childone childtwo childtwo childtwo'
        'childone childone childone childone childone childone childtwo childtwo childtwo'
        'childone childone childone childone childone childone childtwo childtwo childtwo'
        'childone childone childone childone childone childone childtwo childtwo childtwo'
        'childone childone childone childone childone childone childthree childthree childthree'
        'childone childone childone childone childone childone childthree childthree childthree'
        'childone childone childone childone childone childone childthree childthree childthree'
        'childone childone childone childone childone childone childthree childthree childthree';
    }
    
    .linsh-gallery.box-count-2 .lgal-s-1{
        grid-template-areas: 
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo'
        'childone childone childone childone childtwo childtwo childtwo childtwo';
    }
    
    .linsh-gallery.box-count-1 .lgal-s-1{
        grid-template-areas: 
        'childone';
    }

    .linsh-gallery .lgal-s-single:first-child .linsh-vid-popup-link .lvpl-icon,
    .linsh-gallery.box-count-2 .lgal-s-single:nth-child(2) .linsh-vid-popup-link .lvpl-icon{
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .linsh-testimonials .owl-stage-outer{
        filter: drop-shadow(10px 0px 11px rgba(0, 0, 0, 0.20));
    }
}

@media (min-width: 1200px) {
    .linsh-gallery .lgal-1 {
        margin-left: 80px;
        margin-right: 80px;
    }
}

@media (min-width: 1366px) {
    .linsh-gallery .lgal-s-1 {
        height: 460px;
    }
}

@media (min-width: 1440px) {
    .linsh-gallery .lgal-s-1 {
        height: 705px;
    }
}

@media (min-width: 1680px) {
    .linsh-gallery .lgal-s-1 {
        height: 725px;
    }

    .linsh-vid-slider .lprd-1{
        padding: 120px 0 130px;
    }
}

@media (max-width: 1439px) {
    .linsh-gallery .lgal-descr{
        margin-left: 70px;
        margin-right: 70px;
    }
}

@media (max-width: 1365px) {
    .linsh-products .lprd-s-common-title {
        font-size: 28px;
    }
}

@media (max-width: 1199px) {
    .linsh-testimonials .ltst-s-s-right{
        padding: 55px 35px;
    }

    .linsh-testimonials .ltst-s-s-r-descr{
        font-size: 19px;
    }

    .linsh-testimonials .ltst-s-s-r-descr{
        margin-top: 20px;
    }

    .linsh-testimonials .ltst-s-s-r-u-img{
        margin-bottom: 25px;
    }

    .linsh-testimonials .ltst-s-s-r-u-name{
        font-size: 32px;
    }



    .linsh-products .lprd-s-s-l-te-count,
    .linsh-products .lprd-s-s-l-te-installed {
        font-size: 21px;
    }

    .linsh-products .lprd-s-s-l-te-c-icon{
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .linsh-gallery .lgal-s-1 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: -20px;
    }

    .linsh-gallery .lgal-s-single {
        width: calc( 50% - 10px );
        height: 490px;
        margin-bottom: 20px;
    }

    .linsh-gallery .linsh-vid-popup-link .lvpl-icon{
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .linsh-gallery .lgal-descr {
        margin-left: 40px;
        margin-right: 40px;
        font-size: 23px;
    }

    .linsh-vid-slider .linsh-vid-popup-link .lvpl-icon{
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .linsh-vid-slider .linsh-vid-popup-link .linsh-play-circle i{
        top: calc( 50% + 1px );
    }


    .linsh-vid-slider .lprd-1,
    .linsh-products .lprd-1{
        padding-top: 60px;
    }

    .linsh-vid-slider.proj-section .lprd-1{
        padding: 120px 0 130px;
    }


    .linsh-products .lprd-s-s-l-te-count,
    .linsh-products .lprd-s-s-l-te-installed {
        font-size: 19px;
    }

    .linsh-products .lprd-s-s-l-te-c-icon{
        font-size: 14px;
    }
}

@media (max-width: 767px){
    .linsh-gallery {
        padding: 40px 0;
    }

    .linsh-gallery .lgal-s-1 {
        margin-top: 30px;
    }

    .linsh-gallery .lgal-s-single {
        width: 100%;
        height: 230px;
    }

    .linsh-gallery .lgal-s-single:nth-child(n+2) {
        display: none;
    }

    .linsh-gallery .lgal-descr {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 20px;
    }
    
    .linsh-gallery .lgal-descr > p{
        font-size: 14px;
        line-height: 1.7;
        font-weight: 400;
    }

    .linsh-gallery .linsh-vid-popup-link .lvpl-icon {
        width: 60px;
        height: 60px;
        font-size: 21px;
    }

    .linsh-gallery .lgal-s-see-more-link{
        display: none;
        justify-content: center;
        margin-top: 15px;
    }
    
    .linsh-gallery.has-more-mobile .lgal-s-see-more-link,
    .linsh-gallery .lgal-s-see-more-link .lgal-s-s-see-more{
        display: flex;
    }

    .linsh-gallery .lgal-s-see-more-link .lgal-s-s-see-more{
        position: static;
    }

    .linsh-gallery .lgal-s-see-more-link .lgal-s-sml-1{
        font-size: 18px;
    }

    .linsh-gallery .lgal-s-see-more-link .lgal-s-s-sm-icon{
        position: relative;
        font-size: 16px;
    }

    .linsh-products .vc-theme-button-pseudo-a{
        display: inline-flex;
        align-items: center;
        font-size: 14px;
    }



    .linsh-vid-slider .linsh-vid-popup-link .lvpl-icon{
        width: 50px;
        height: 50px;
        font-size: 16px;
    }


    .pg-home .linsh-testimonials {
        margin-top: 40px;
    }

    

    .linsh-products .lprd-s-s-link:hover:after {
        background-color: rgba(27, 27, 27, 0.4);
    }

    .linsh-products .lprd-s-s-l-te-installed{
        margin-top: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .lgal-s-single:nth-child(odd):not(:last-child) {
        margin-right: 20px;
    }

    .linsh-gallery.box-count-1 .lgal-s-single {
        width: 80%;
    }
}

@media (min-width: 1366px) and (max-width: 1439px){
    .linsh-vid-slider .lprd-1 {
        padding: 70px 0 80px;
    }
}

@media (min-width: 768px){

    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title,
    .linsh-products .lprd-s-s-l-title-expanded{
        opacity: 0;
        visibility: hidden;
    }
    
    .linsh-products .lprd-s-s-l-title,
    .linsh-products.lvid-type-installations .lprd-s-s-link:hover .lprd-s-s-l-title,
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title-expanded{
        opacity: 1;
        visibility: visible;
    }
    
    .linsh-products .lprd-s-s-l-title,
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title-expanded{
        bottom: 30px;
    }
    
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title,
    .linsh-products .lprd-s-s-l-title-expanded {
        bottom: -35px;
    }
}

@media (min-width: 992px) {

    .linsh-testimonials .ltst-s-single {
        display: flex;
    }
}

@media(min-width: 1200px){
    .linsh-prod-slider .lprdsl-descr {
        max-width: 83%;
    }

    .linsh-products.lvid-type-installations .lprd-1 {
        padding-bottom: 100px;
    }
    
    .linsh-products.lvid-type-installations .lprd-1{
        padding-top: 80px;
    }
    
    .linsh-motor-solutions + .linsh-products.lvid-type-installations .lprd-1{
        padding-top: 60px;
    }
}

@media (min-width: 1680px) {
    .linsh-testimonials .ltst-slider {
        max-width: 76%;
    }
}

@media (max-width: 1679px){
    .linsh-vid-slider .lprd-s-s-title{
        bottom: 20px;
        font-size: 26px;
    }
}

@media (max-width: 1439px) {
    .linsh-testimonials .ltst-s-s-left{
        min-height: 470px;
    }

    .linsh-vid-slider .lprd-s-s-title{
        padding: 0 30px;
    }
}

@media (max-width: 1199px){
    .linsh-products .lprd-s-common-title{
        font-size: 22px;
    }

    .linsh-products .lprd-s-s-l-title,
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title-expanded {
        bottom: 25px;
    }

    .linsh-products .lprd-s-s-l-te-descr{
        font-size: 17px;
    }

    .linsh-products .lprd-s-s-l-te-descr {
        margin-bottom: 18px;
    }


    .linsh-vid-slider .lprd-s-s-link,
    .linsh-products .lprd-s-s-link{
        height: 442px;
    }

    .linsh-vid-slider .lprd-s-s-link{
        max-height: 170px;
        max-height: 255px;
    }

    .linsh-about-us .lau-1{
        padding-bottom: 60px;
    }
}

@media (max-width: 991px) {
    .linsh-prod-slider .lprdsl-s-single{
        max-height: 340px;
    }

    .linsh-prod-slider .lprdsl-descr{
        margin-top: 40px;
        font-size: 23px;
        line-height: 1.5;
    }
    
    .linsh-vid-slider .lprd-s-s-link{
        max-height: 320px;
    }
}

@media (max-width: 767px) {
    .linsh-testimonials .ltst-1{
        padding: 45px 0 25px;
    }

    .pg-sin-prod .linsh-testimonials .ltst-1{
        padding-top: 40px;
    }
    
    .linsh-testimonials .ltst-title {
        margin-bottom: 30px;
    }

    .linsh-testimonials .ltst-s-s-left {
        min-height: 200px;
    }

    .linsh-testimonials .ltst-s-s-right{
        padding: 0 30px 30px 30px;
        margin-top: -40px;
        position: relative;
        z-index: 2;
    }

    .linsh-testimonials .ltst-s-s-r-u-name {
        font-size: 23px;
    }

    .linsh-testimonials .ltst-s-s-r-u-img{
        width: 73px;
        height: 73px;
        border-width: 4px;
        margin-bottom: 21px;
    }

    .linsh-testimonials .ltst-s-s-r-descr{
        font-size: 15px;
        margin-top: 15px;
        line-height: 1.6;
    }

    .linsh-testimonials .ltst-s-s-right:after{
        top: 40px;
    }

    .linsh-testimonials .ltst-s-s-r-u-ratings i{
        font-size: 15px;
    }

    .linsh-testimonials .ltst-s-s-r-u-ratings{
        margin-top: 8px;
    }



    .linsh-vid-slider .lprd-1{
        padding: 55px 0 64px;
    }
    
    .linsh-vid-slider.proj-section .lprd-1{
        padding: 105px 0 114px;
    }
    
    .linsh-products .lprd-1{
        padding: 45px 0 54px;
    }

    .linsh-vid-slider .lprd-title,
    .linsh-products .lprd-title {
        margin-bottom: 30px;
    }

    .linsh-vid-slider .lprd-s-single:not(:last-child),
    .linsh-products .lprd-s-single:not(:last-child){
        margin-bottom: 15px;
    }

    .linsh-products .ltt-sect-1:after {
        content: "";
        display: block;
    }


    .linsh-products .lprd-s-s-link{
        height: 490px;
    }

    .linsh-vid-slider .lprd-s-s-link{
        max-height: 260px;
    }

    .linsh-vid-slider .lprd-s-s-title{
        font-size: 23px;
        padding: 0 20px;
    }



    .linsh-prod-slider .lprdsl-1{
        padding: 56px 0 50px;
    }

    .linsh-prod-slider .lprdsl-descr{
        margin-top: 25px;
        font-size: 17px;
    }

    .linsh-vid-slider .lprd-s-s-title{
        bottom: 15px;
    }
    
    .linsh-products .lprd-s-s-link .lprd-s-s-l-title-expanded,
    .linsh-products .lprd-s-s-link:hover .lprd-s-s-l-title-expanded{
        bottom: 30px;
    }

    .linsh-products.lvid-type-installations .lprd-s-s-l-te-sub-title,
    .linsh-products.lvid-type-installations .lprd-s-s-l-te-title,
    .linsh-products.lvid-type-installations .lprd-s-s-l-te-sub-title-2,
    .linsh-products.lvid-type-installations .lprd-s-s-l-te-sub-title{
        text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
    }

    .linsh-products.lp-modified .lprd-s-s-l-te-descr{
        font-size: 17px;
    }

    .linsh-products.lp-modified .lprd-s-s-link > .linsh-overlay-from-bottom{
        background-image: linear-gradient(to top, #000 15%, transparent 96%);
        top: 40%;
    }


    .ui-datepicker .ui-datepicker-title{
        font-size: 15px;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next{
        min-width: 31px;
        min-height: 31px;
        height: 31px;
        width: 31px;
    }

    .ui-datepicker .ui-datepicker-title{
        top: 1px;
    }

    .ui-datepicker th{
        font-size: 14px;
    }


    .linsh-products.lvid-type-installations .lprd-s-s-link .lprd-s-s-l-title{
        bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px){
    .linsh-vid-slider .lprd-s-s-title{
        padding: 0 40px;
        bottom: 24px;
        font-size: 35px;
    }
}