/* FontS
==============================*/
@import url('https://fonts.googleapis.com/css?family=Poppins:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:500,900&display=swap');

/* General
==============================*/
*,*:focus {
    outline: none!important;
}
:root {
    --main_color: #14619b;
    --second_color: #eb3745;
}
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    overflow: hidden;
    width: 100%;
}

/* Page Setting
==============================*/
section{
    position: relative;
    padding: 50px 0px;
}
.section-color{
    background-color:#fcfcfc
}
.page-content{
    position: relative;
}
.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.010) !important;
}

/* Page Head
=======================*/
.page-head{
    padding: 160px 0 50px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.page-head:before{
    content: " ";
    position:absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 40, 49, 0.97);
}
.page-head h3{
    color: #fff;
    letter-spacing: 3px;
    margin: 10px auto;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 900;
}
.breadcrumb {
    margin: 0 auto;
    padding: 0;
    background-color: transparent;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
    display: block;
}
.breadcrumb > li + li:before {
    padding: 0px 5px;
    color: #777;
    content: "/";
}
.breadcrumb li{
    display:inline-block;
}
.breadcrumb li ,
.breadcrumb a {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
}
.breadcrumb a i{
    margin-right: 5px;
}

/*Section title
========================*/
.section-title{
    display: block;
    position: relative;
    text-align: center;
    color: #0b0b0b;
    font-size: 20px;
    line-height: 30px;
    margin: 0 auto 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.section-icon{
    width: 40px;
    height: 40px;
    position: relative;
    margin: auto auto 15px;
    text-align: center;
}
.section-icon:before{
    content: " ";
    height: 50px;
    width: 2px;
    background-color: var(--main_color);
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}
.section-icon i{
    height: 40px;
    line-height: 40px;
    position: relative;
    color: #fff;
    width: 40px;
    font-size: 18px;
    text-align: center;
    padding-left: 4px;
}
.section-icon svg{
    width: 100%;
    height: 100%;
}

/* Links
==============================*/
a,a:hover,a:focus {
    cursor: pointer;
    text-decoration: none;
}

/* Lists
==============================*/
ul,li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}
.dot-list{
    margin: 15px auto;
}
.dot-list li{
    line-height: 22px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #555;
    margin: 5px auto;
    padding-left: 20px;
}
.dot-list li:before{
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--second_color);
    left: 0;
    top: 7px;
}

/*Images
==============================*/
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Custom-btn
==============================*/
.custom-btn {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    background: none;
    border: none;
    color: #ffffff;
    background-color: var(--main_color);
    margin: 15px auto;
    padding: 0 20px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.custom-btn span{
    position: relative;
}
.custom-btn i{
    margin-left: 5px;
}
.custom-btn:before{
    content: " ";
    height: 100%;
    width: 0%;
    position:absolute;
    left: 0;
    border-radius: 5px;
    background-color: var(--second_color);
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.custom-btn:hover {
    color: #ffffff;
}
.custom-btn:hover:before{
    width: 100%;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}

/*Form Inputs
==============================*/
label{
    display: block;
    color: #5e5e5f;
    font-size: 12px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: left;
}
.form-control {
    background-color: transparent;
    border: 1px solid #f4f5f7;
    margin: 0px auto;
    color: #6c757d;
    padding: 0 15px;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.form-control:hover,
.form-control:focus {
    outline: 0;
    background-color: transparent;
    border: 1px solid #d9d9d9;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
textarea.form-control {
    height: 120px!important;
    resize: none;
    overflow-x: hidden;
    line-height: 30px;
    font-size: 13px;
}

/* Scroll
==============================*/
::-webkit-scrollbar {
    width: 10px;
    background-color: #f1f1f1;
}
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background-color:  var(--main_color);
}

/* Loader
================================*/
/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader img {
    position: relative;
} */

/* Map Shap
==============================*/
.map-shap{
    position: relative;
    width: 100%;
    background-color: #1f2831;
    overflow: hidden;
}
.map-shap:before{
    content: " ";
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 640px;
    max-width: 1200px;
    background: url(../images/bc2.jpg) center no-repeat;
    background-size: cover;
    margin: auto;
    -webkit-animation: move 50s infinite alternate linear;
    -moz-animation: move 50s infinite alternate linear;
    -o-animation: move 50s infinite alternate linear;
    animation: move 50s infinite alternate linear;
}
@keyframes move{
    0%{
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
    100%{
        -webkit-transform: translateX(20%);
        -moz-transform: translateX(20%);
        -o-transform: translateX(20%);
        transform: translateX(20%);
    }
}

/* Shap
===========================*/
.shap{
    width: 35px;
    height: 35px;
    fill: var(--main_color);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 0;
}
.shap:hover{
    fill: var(--second_color);
}

/*Side Shap
=======================*/
.side-shap{
    width: 160px;
    height: 160px;
    fill: #1c252c;
    top: auto;
    left: -30px;
    bottom: 5%;
    opacity: 0.8;
}
.side-shap.fa-spin{
    animation-duration: 10s;
}

/* Social
==========================*/
.social {
    height: 30px;
    overflow: hidden;
}
.social li{
    display: inline-block;
}
.social li a{
    display: block;
    color: #fff;
    overflow: hidden;
    font-size: 12px;
    position: relative;
}
.social li a i{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    display: block;
    font-style: normal;
}

/* Top Header
==============================*/
.top-header{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--main_color);
    z-index: 9998;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}
.top-header ul li{
    display: inline-block;
    vertical-align: middle;
}
.top-header .top-contact{
    float: left;
    margin: 10px auto;
}
.top-header .top-contact li{
    float: left;
    color:#fff;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 20px;
    display: block;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}
.top-header .top-contact li:last-child {
    border-right: 0;
}
.top-header .top-contact li i{
    font-size: 14px;
    margin-right: 3px;
}
.top-header .top-contact li a{
    color: #fff;
}
.top-header .social{
    float: right;
    padding: 5px 0;
    height: 100%;
}
.top-header .social svg{
    width: 30px;
    height: 30px;
    fill: #fff;
}
.top-header .social i{
    color: var(--main_color)
}
.top-header .social li:last-child a svg ,
.top-header .social a:hover svg{
    fill: var(--second_color);
}
.top-header .social li:last-child a i ,
.top-header .social a:hover i{
    color:#fff;
}

/* Header
==============================*/
header{
    width: 100%;
    background-color: #fff;
    min-height: 80px;
    overflow: hidden;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 9998;
}
header:before{
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/factory2.png) center no-repeat;
    z-index: 0;
    opacity: 0.03;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
header .container-fluid{
    padding: 0;
}
header .navbar{
    padding: 0;
    margin: 0;
}
header .navbar-brand{
    margin: 0;
    height: 80px;
    position: absolute;
    left: 0;
    padding: 2px 0;
    top: 0;
}
header .navbar-brand img{
    height: 100%;
}
.header-widget{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 35px;
    z-index: 999;
}
header .header-widget .icon-btn:hover svg{
    fill: var(--second_color);
}
header .header-widget .icon-btn.menu-btn{
    display:none;
}
header .header-widget .icon-btn{
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    text-align: center;
    border: 0;
    background-color: transparent;
    position: relative;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}
header .header-widget .icon-btn i{
    position: relative;
    color:#fff;
    line-height: 35px;
    font-style: normal;
}
header .header-widget .menu-btn.change-icon i:before{
    content: "\f00d";
}
header .search-form{
    position: absolute;
    left: 0;
    bottom: -80px;
    height: 100%;
    width: 100%;
    margin: 0;
    background-color: #fff;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
header .search-form.move{
    visibility: visible;
    opacity: 1;
    bottom: 0;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
header .search-form .form-group{
    margin: 0;
}
header .search-form .form-group .form-control{
    height: 100%;
    border: 0;
    margin: 0;
}
header .search-form .form-group .icon-btn{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 35px;
    height: 30px;
    width: 30px;
    color: #fff;
    background-color: var(--main_color);
    border: 0;
    border-radius: 50px;
    font-size: 12px;
    padding: 0;
}
header .search-form .form-group .icon-btn:last-child{
    right: 0px;
    background-color: var(--second_color);
}
header .navbar ul.navbar-nav{
    margin: auto 0 auto auto;
    padding-right: 45px;
}
header .navbar ul.navbar-nav li{
    padding: 25px 0;
}
header .navbar ul.navbar-nav li a {
    position:relative;
    display: block;
    padding: 0 10px;
    font-size: 13px;
    text-transform: uppercase;
    color: #0b0b0b;
    text-align: center;
    line-height: 30px;
    letter-spacing: 1px;
}
header .navbar ul.navbar-nav li a i{
    margin-right: 5px;
}
header .navbar ul.navbar-nav li:last-child a{
    border: 0;
}
header .navbar ul.navbar-nav li a:focus,
header .navbar ul.navbar-nav li a:hover{
    color: var(--second_color);
}
header .navbar ul.navbar-nav li.active a:focus,
header .navbar ul.navbar-nav li.active a:hover,
header .navbar ul.navbar-nav li.active > a{
    background-color: var(--second_color);
    color:#fff;
    border-radius: 4px;
}

/* Main Section
===============================*/
.main-section{
    overflow: hidden;
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    background-color: #1f2831;
}
.main-section:before{
    bottom: -50px;
}
.main-section .wel-text{
    max-width: 767px;
    margin: auto;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 999;
}
.main-section .wel-text h1{
    font-size: 52px;
    letter-spacing: 5px;
    line-height: 50px;
    margin: 30px 0;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-family: "Poppins";
}
.main-section .wel-text h2{
    font-size: 28px;
    letter-spacing: 2px;
    line-height: 40px;
    margin: 30px 0;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.main-section .wel-text p{
    font-size: 12px;
    letter-spacing: 1px;
    margin: 15px auto;
    line-height: 20px;
    color: #fcfcfc;
}
.main-section .scroll-btn{
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    z-index: 999;
    color: #fff;
    text-align: center;
}
.main-section .scroll-btn i{
    z-index: 99;
    position:relative;
    line-height: 50px;
    width:50px;
    text-align: center;
    display: block;
    color: #fff;
}
.main-section .scroll-btn svg{
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, .3);
}
.main-section .scroll-btn:hover svg{
    fill: rgba(255, 255, 255, .6);
}
.bounce {
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    60% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

/* Footer
============================*/
footer{
    padding: 70px 0 35px;
}
footer:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(31, 40, 48, 0.95);
    width: 100%;
    height: 100%;
    z-index: 9;
}
footer .row{
    position:relative;
    z-index: 99;
}
footer h3{
    color: #fff;
    position: relative;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 30px;
    margin: 0 auto 25px;
}
footer h3 i{
    margin-right: 5px;
    width: 35px;
    color: #fff;
    position: relative;
    text-align: center;
    display: block;
    letter-spacing: 0;
    font-size: 12px;
}
footer img{
    background-color: #fff;
    padding: 15px;
    margin: 0;
    width: 90px;
    border-radius: 5px;
}
footer p{
    margin: 15px auto 15px 0;
    font-size: 11px;
    line-height: 22px;
    letter-spacing: 1px;
    color: #fcfcfc;
    max-width: 330px;
}
footer ul{
    margin-bottom: 25px;
}
footer ul li a{
    position:relative;
    color: #ffffff;
    line-height: 25px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    display: block;
    padding-left: 20px;
}
footer ul li a:before{
    content: " ";
    position: absolute;
    left: 0;
    content: "\f0c1";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    width: 20px;
}
footer ul li a:hover{
    color:var(--second_color);
}
.newsletters{
    margin: 0;
    border-radius: 5px;
    text-align: left;
    padding: 0 25px 15px;
}
.newsletters label{
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
}
.newsletters .form-control{
    max-width: 360px;
    width: 100%;
    background-color: #fff;
    margin: 0;
}
.newsletters .icon-btn{
    padding: 0;
    color: #fff;
    border: 0;
    font-size: 12px;
    margin: 15px 0;
    width: 35px;
    height: 35px;
    background-color: transparent;
    text-align: center;
    position: relative;
}
.newsletters .icon-btn i{
    color: #fff;
    position: relative;
    text-align: center;
    width: 35px;
}
.copyrights{
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    margin: 10px auto 0;
}

/* Up Btn
=============================*/
.up-btn{
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 999;
    padding: 0;
    color: #fff;
    border: 0;
    font-size: 12px;
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: transparent;
}
.up-btn svg{
    width: 100%;
    height: 100%;
}
.up-btn i{
    position: relative;
}
.up-btn:hover .shap{
    fill: var(--main_color);
}

/* About
================================*/
.about .head-title{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 4px;
    font-size: 36px;
    line-height: 50px;
    position: relative;
    padding-left: 40px;
    font-family: "Poppins";
    margin: 20px auto;
}
.about .sub-title{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 25px;
    font-family: "Poppins";
    margin: 25px auto 10px;
}
.about .head-title span{
    display: block;
    transform: rotate(-90deg);
    font-size: 11px;
    position: absolute;
    left: -30px;
    top: 30px;
    color: var(--second_color);
    letter-spacing: 2px;
    border-bottom: 4px double var(--second_color);
    line-height: 35px;
}
.about p{
    font-size: 14px;
    line-height: 30px;
    color: #777;
}
.about-img{
    position: relative;
}
.iframe_mob{
    display: none;
}
.iframe_mob iframe{
    padding: 0;
}
.about-img a{
    position: absolute;
    display: block;
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.about-img a .shap{
    width: 100%;
    height: 100%;
}
.about-img a i{
    color: #fff;
    font-size: 60px;
    z-index: 999;
    position: relative;
    text-align: center;
    width: 100%;
    line-height: 120px;
    padding-left: 15px;
}
.about .custom-btn:last-child{
    background-color: var(--second_color)
}
.player-wave {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 998;
}
.player-wave .waves {
    -webkit-animation: 3s ease-in-out 0s normal none infinite running waves;
    animation: 3s ease-in-out 0s normal none infinite running waves;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    background: var(--main_color);
}
.player-wave .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.player-wave .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.player-wave .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}
@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}

/* Product
================================*/
.product-item{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 25px auto;
    min-height: 285px;
    padding: 25px 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    overflow: hidden;
    line-height: 40px;
    color: var(--main_color);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}
.product-item img{
    width: 130px;
    margin-bottom: 15px;
}
.product-item:hover{
    color: var(--second_color);
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;

}
.colors {
    text-align: center;
}
.colors li{
    display: inline-block;
    vertical-align: middle;
    margin: 5px auto 0;
}
.colors li img{
    width: 30px;
}

/* Product
==============================*/
.product{
    padding: 25px;
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.product-show-wrapper {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    margin: 15px auto;
    padding-left: 60px;
}
.product-show-wrapper .general-img {
    width: 100%;
    border: 2px solid #fcfcfc;
    padding: 15px;
}
.product-show-wrapper .general-img img {
    width: 100%;
    max-width: 460px;
}
.product-gall a {
    display: block;
    margin: 5px auto;
}
.product-gall a img {
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 1;
}
.thumblist-box {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.caroufredsel_wrapper , .product-gall{
    float: none !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    text-align: center !important;
    margin: auto !important;
}
.thumblist-box .prev,.thumblist-box .next {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 3px;
    color: #fff;
    padding: 0;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.thumblist-box .next {
    left: auto;
    right: 0;
}
.thumblist-box a i{
    line-height: 30px;
}
.thumblist-box .prev:hover,.thumblist-box .next:hover {
    text-decoration: none;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.product .cover{
    margin: 25px auto;
    position: relative;
}
.product .cover img{
    max-width: 340px;
    margin: 0 auto auto auto;
}
.product .cover .colors{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.product .cover .colors li {
    display: block;
    width: 100%;
}
.product .cover .colors li img{
    width: 40px;
    margin: 3px;
}
.product h3{
    color: var(--main_color);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 15px;
}
.product p{
    font-size: 13px;
    color: #040404;
    line-height: 23px;
    margin: 15px auto;
}
.table{
    margin: 25px auto;
}
.table tr td{
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 45px;
    padding: 0 15px;
    border-color: #f1f1f1;
}

/* Catalogue
===============================*/
.catalogue{
    background-color: #d4d4d4;
    padding: 0;
}
.catalogue .head-title{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 7px;
    font-size: 42px;
    line-height: 55px;
    position: relative;
    font-family: "Poppins";
    margin: 140px auto 20px;
}
.inner_cat .custom-btn{
    margin: auto auto 15px auto;
    display: block;
    text-align: center;
    max-width: 255px;
}
.inner_cat .head-title{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 2px;
    font-size: 15px;
    line-height: 30px;
    position: relative;
    font-family: "Poppins";
    margin: 0 auto 15px;
}
.inner_cat .contact-form{
    padding: 15px;
    background-color: #fcfcfc;
    margin: 15px auto;
}
.catalog-slid{
    display: none !important;
}
/* .inner_cat .gallery_wrap_pdf{
    display:none;
} */
.inner_cat .gallery_wrap_pdf .gall-item{

    box-shadow: 1px 1px 5px rgba(241, 241, 241, 0.4);

    border-radius: 0;
}

/* Factory
===============================*/
.factory .head-title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 2px;
    font-size: 20px;
    line-height: 55px;
    position: relative;
    font-family: "Poppins";
    margin: 20px auto 40px;
}
.factory .head-title span{
    display: block;
    font-size: 13px;
    color: var(--second_color);
    letter-spacing: 2px;
    border-bottom: 4px double var(--second_color);
    line-height: 35px;
    max-width: 205px;
    margin: auto;
}
.factory .factory-img{
    position: sticky;
    top: 140px;
}
.factory .factory-img img{
    margin: 15px auto;
}
.factory .bottom-img{
    opacity: 0.03;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
.factory-table tr td{
    line-height: 22px;
    letter-spacing: 0.5px;
    padding: 5px 15px;
    text-transform: inherit;
}
.min-wide{
    width: 220px;
    text-transform: uppercase;
}

/* Blog
===============================*/
.blog-item{
    margin: 15px auto;
    border-radius: 5px;
    overflow: hidden;
}
.blog-item .blog-img{
    position: relative;
    overflow: hidden;
    display: block;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.blog-item .blog-img img{
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.blog-item .blog-img:before {
    content: " ";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: 999;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
.blog-item .blog-cont{
    padding: 25px 25px 15px;
    background-color: #fff;
}
.blog-item .blog-cont span{
    color: #777;
    font-size: 12px;
    display: block;
    line-height: 15px;
}
.blog-item .blog-cont h3{
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 22px;
    margin: 10px auto;
}
.blog-item .blog-cont .icon-btn{
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 0;
    background-color: transparent;
    position: relative;
    display: block;
    position: relative;
}
.blog-item .blog-cont .icon-btn i{
    position: relative;
    color:#fff;
    width: 100%;
    line-height: 40px;
    text-align: center;
}
.blog-item .blog-cont .icon-btn .shap{
    width: 100%;
    height: 100%;
}
.blog-item .blog-cont .icon-btn:hover .shap{
    fill: var(--second_color);
}
.blog-item:hover .blog-img img{
    -webkit-transform: scale(1.05) rotate(3deg);
    -moz-transform: scale(1.05) rotate(3deg);
    -o-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.blog-item:hover .blog-img:before{
    left: 100%;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

/* News Item
==========================*/
.news-item{
    background-color: #fff;
    margin: 15px auto;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: block;
}
.news-item img{
    width: 100%;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    height: 300px;
}
.news-item:before {
    content: " ";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    z-index: 999;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    transition: all 0.7s;
}
.news-item h3{
    font-size: 12px;
    padding: 15px;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 20px;
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
}
.news-item:hover img{
    -webkit-transform: scale(1.05) rotate(3deg);
    -moz-transform: scale(1.05) rotate(3deg);
    -o-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.news-item:hover:before{
    left: 100%;
    -webkit-transition: all .7s;
    -moz-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
}

/* Inner Blog
=========================*/
.blog{
    background-color: #f6f6f6;
    padding: 25px;
    max-width: 992px;
    border-radius: 5px;
    margin: auto;
}
.blog img{
    border-radius: 5px;
    margin: 15px auto;
    width: 100%;
}
.blog h3{
    margin: 0 auto 15px;
    font-size: 16px;
    letter-spacing: 1px;
    color: var(--main_color);
    line-height: 25px;
}
.blog p{
    font-size: 13px;
    line-height: 22px;
    color: #666;
    margin: 15px auto;
}
.blog .info{
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.blog .info li{
    display: inline-block;
    line-height: 35px;
    padding: 0 15px;
    font-size: 12px;
    color: #777;
}
.blog .info li i{
    margin-right: 3px;
}


/* CEO
===============================*/
.ceo .row{
    z-index: 999;
    position: relative;
}
.ceo img{
    margin: auto 0 auto auto;
    border-radius: 5px;
    overflow: hidden;
}
.ceo-word{
    background-color: #fcfcfc;
    padding: 30px 70px;
    margin: 45px auto 40px -80px;
    position: relative;
    border-radius: 5px;
}
.ceo-word:before{
    content: " ";
    position: absolute;
    width: 100%;
    height:100%;
    background: url(../images/factory2.png) center no-repeat;
    z-index: 0;
    opacity: 0.03;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.ceo-word .head-title{
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main_color);
    letter-spacing: 2px;
    font-size: 24px;
    line-height: 40px;
    position: relative;
    padding-left: 45px;
    font-family: "Poppins";
    margin: 25px auto;
}
.ceo-word .head-title span{
    display: block;
    transform: rotate(-90deg);
    font-size: 10px;
    position: absolute;
    left: -25px;
    top: 27px;
    line-height: 25px;
    color: var(--second_color);
    letter-spacing: 2px;
    border-bottom: 4px double var(--second_color);
}
.ceo-word p{
    font-size: 14px;
    color: #777;
    line-height: 22px;
    letter-spacing: 1px;
}
.ceo-word .author{
    display: block;
    text-align:right;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Poppins";
    color: var(--main_color);
    margin-top: 25px;
}

/* Gallery
===============================*/
.gall-item{
    display: block;
    position: relative;
    overflow: hidden;
    margin: 15px auto;
    border-radius: 5px;
}
.gall-item img{
    width: 100%;
}
.gall-item .hover{
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(4, 4, 4, .7);
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility:hidden;
    display: flex;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}
.gall-item .hover a {
    text-align: center;
    display: block;
    position: relative;
    margin: auto;
    color: #fff;
    width: 50px;
    height: 50px;
    display: block;
}
.gall-item .hover a i{
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    position: relative;
    font-size: 16px;
}
.gall-item .hover a svg{
    width: 100%;
    height: 100%;
}
.gall-item .hover a:hover svg{
    fill: var(--second_color)
}
.gall-item:hover .hover{
    opacity: 1;
    visibility:visible;
    -webkit-transition: .5s all ease-in;
    -moz-transition: .5s all ease-in;
    transition: .5s all ease-in;
}

/* Contact
===============================*/
.contact-form{
    padding: 25px;
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.form-title {
    width: 100%;
    position: relative;
    text-align: left;
    color: var(--main_color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 auto 15px;
}
.form-title.sub{
    color: var(--second_color);
    font-size: 14px;
    letter-spacing: 3px;
}
.contact-info{
    padding: 25px 25px 5px;
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.contact-info li{
    color: #040404;
    letter-spacing: 1px;
    margin: 15px auto;
    position: relative;
    font-size: 12px;
    line-height: 22px;
    padding: 8px 0 5px 45px;
}
.contact-info li i{
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 5px;
    margin: auto;
}
.contact-info li a{
    color: #040404;
}
.contact-info li svg{
    margin: auto;
    top: 5px;
    bottom: auto;
}
iframe{
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* Career
==========================*/
.careers-block , .career-form{
    padding: 25px 25px 1px;
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.careers-block h3{
    width: 100%;
    position: relative;
    text-align: left;
    color: var(--main_color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 15px auto;
}
.careers-block .career-item{
    display: block;
    width: 100%;
    padding: 15px 25px;
    color: #333;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #f9f9f9;
    border-radius: 5px;
    margin-top: 15px;
}
.careers-block .title{
    font-size: 14px;
    color: var(--second_color);
    margin: 10px 0;
}
.careers-block ul li{
    display: inline-block;
    font-size: 11px;
    padding-right: 15px;
    line-height: 25px;
}
.careers-block p{
    font-size: 12px;
    color: #777;
    text-transform: lowercase;
    line-height: 20px;
    margin: 5px 0;
}
.apply-form{
    position: sticky;
    top: 120px;
    padding: 25px 25px 1px;
    background-color: #fff;
    border-radius: 5px;
    margin: 15px auto;
}
.file {
    position: relative;
    display: block;
    cursor: pointer;
    height: 45px;
    background-color: #fff;
    margin: 0;
    overflow: hidden;
}
.file input {
    width: 100%;
    margin: 0;
    filter: alpha(opacity=0);
    opacity: 1;
    height: 100%;
    line-height: 35px;
}
.file-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    z-index: 5;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
    height: 100%;
    line-height: 45px;
    color: #555;
    background-color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.file-custom:before {
    position: absolute;
    display: block;
    content: "Choose File";
    height: 100%;
    width: 100%;
    line-height: 45px;
    color: #fff;
    background-color: var(--main_color);
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
}

/*Projects
===========================*/
.project-item{
    border-radius: 5px;
    overflow: hidden;
    margin: 15px auto;
    background-color: #fff;
    color: #333;
}
.project-item img{
    width: 100%;
    height: 250px;
}
.project-item ul{
    padding: 15px;
}
.project-item ul li{
    line-height: 27px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-item ul li i{
    font-size: 12px;
    color: #777;
}
.project_imgs-slid{
    width: 100%;
}

/* Media Query
===============================*/
@media all and (min-width: 992px) and (max-width: 1200px){
    header .navbar ul.navbar-nav li a {
        padding: 0 10px;
        font-size: 12px;
    }
    .factory .head-title{
        font-size: 35px;
    }
    .ceo-word{
        padding: 30px;
    }
}
@media (max-width: 991px){
    .inner_cat .row{
        flex-direction: column-reverse;
    }
    .map-shap:before{
        max-width: 100%;
        max-height: 100%;
    }
    header > .container , header .navbar {
        min-height: 60px;
    }
    header .navbar-collapse > .container{
        padding: 0;
        width: 100%;
        border-radius: 0;
    }
    header .header-widget .icon-btn.menu-btn{
        display: inline-block;
    }
    header .navbar-collapse {
        margin-top: 60px;
        position: relative;
        width: 100%;
        display: block;
        height: 280px;
        overflow-y: auto;
        z-index: 9999;
        background-color: var(--main_color);
    }
    header .nav-main-collapse.collapse {
        display: none !important;
    }
    header .nav-main {
        display: block;
        float: none;
        width: 100%;
        padding: 0;
        clear: both;
    }
    header .navbar ul.navbar-nav{
        display: block;
        padding: 0;
    }
    header .navbar ul.navbar-nav li{
        display: block;
        width:100%;
        padding: 0;
    }
    header .navbar ul.navbar-nav li a {
        line-height: 35px;
        border: 0;
        border-bottom: 1px solid #115386;
        text-align: left;
        color: #fff !important;
        font-size: 11px;
        padding: 0 15px;
    }
    .top-header .container{
        max-width: 100%;
    }
    header{
        min-height: 60px;
    }
    header:before{
        display:none;
    }
    header .container{
        max-width: 100%;
        padding: 0;
    }
    header .navbar-brand{
        left: 15px;
        height: 60px;
        padding: 5px;
    }
    header .header-widget{
        top: 12px;
        right: 15px;
        bottom: auto;
    }
    .ceo-word .head-title ,
    .about .head-title ,
    .factory .head-title{
        padding: 0;
        font-size: 28px;
        line-height: 30px;
        letter-spacing: 2px;
    }
    .ceo-word .head-title span ,
    .about .head-title span,
    .factory .head-title span{
        position: relative;
        transform: rotate(0deg);
        left: auto;
        top: auto;
        border: 0;
    }
    .ceo-word .head-title{
        font-size: 22px;
    }
    .ceo img{
        margin: auto;
        width: 100%;
    }
    .ceo-word{
        margin: 15px auto;
        padding: 15px;
    }
    .top-header .top-contact{
        display: none;
    }
    .about-img{
        display: none;
    }
    .inner_cat .gallery_wrap_pdf{
        display: flex;
        flex-direction: row;
    }
    .catalog-slid{
        display: block !important;
    }
    .embed_frame{
        display: none;
    }

}
@media all and (max-width: 576px){
    section{
        padding: 25px 0 !important;
    }
    .main-section {
        text-align: center;
        height: auto;
        padding: 100px 0 !important;
    }
    .main-section .wel-text h1{
        font-size: 36px;
    }
    .main-section .wel-text h2{
        font-size: 20px;
        letter-spacing: 1px;
        line-height: 30px;
        margin: 15px 0;
    }
    .header-widget .icon-btn:first-child{
        display: none;
    }
    .about-img img{
        width: 100%
    }
    .section-title{
        font-size: 16px;
    }
    .section-icon:before {
        height: 25px;
        top: -25px;
    }
    .product-show-wrapper{
        padding: 0;
        text-align: center;
    }
    .thumblist-box{
        position: relative;
        width: 100%;
        height: auto;
        text-align: center;
        margin: 15px auto;
    }
    .thumblist-box .colors{
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        display: block;
        width: 100%;
        text-align: center;
        margin: 15px auto;
    }
    .thumblist-box .product-gall{
        text-align:center;
    }
    .thumblist-box .product-gall a {
        display: inline-block;
        width: 35px;
    }
    .inner_cat .embed_frame embed{
        width: auto;
        height: auto;
        margin:auto;
        display:block;
        min-width: 420px;
        min-height: 420px;
    }
}
@media all and (max-width: 420px){
    .main-section .wel-text h2{
        font-size: 16px;
    }
    .ceo-word .head-title,
    .about .head-title,
    .factory .head-title{
        font-size: 16px;
        margin-bottom: 5px;
        line-height: 20px;
    }
    .ceo-word .head-title span,
    .about .head-title span,
    .factory .head-title span{
        margin-bottom: 5px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    .ceo-word .head-title{
        font-size: 13px;
    }
    .ceo-word p ,
    .about p{
        line-height: 20px;
        font-size: 12px;
        margin: 5px auto;
    }
    .custom-btn{
        letter-spacing: 0.5px;
        font-size: 12px;
        margin: 5px auto;
    }
    .about .custom-btn{
        width: 100%;
        text-align:center;
    }
    .newsletters{
        padding:15px 10px
    }
    .newsletters label{
        font-size: 12px;
        margin-bottom: 10px;
    }
    .copyrights{
        margin: 5px auto;
    }
    footer{
        padding: 25px 0 10px;
    }
    footer h3{
        font-size:14px;
        margin-bottom: 10px;
    }
    .inner_cat .embed_frame embed{
        min-width: 320px;
    }
}
