html{
    zoom: 80%;
}

header{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #bcc3d0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.logo{
    margin: 5px 40px 0 5px;
}

.title a{
    margin-right: 60px;
    text-transform: uppercase;
    letter-spacing: .20em;
    color: #303030;
    font-size: larger;
    text-decoration: none;
}

.menu{
    flex-grow: 1;
}

.menu ul{
    display: flex;
    flex-flow: row nowrap;
    margin: 2px 0 0;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
    list-style: none;
}
.menu li{
    margin-right: 20px;
}
.menu li:last-child {
    margin-right: 0;
}

.menu li .second{
    border-radius: 5px;
    position: absolute;
    background-color:#a4a4a4;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.menu li:hover .second{
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transition-property: opacity, visibility; 
    transition-duration: 0.2s;
}

.menu a{ 
    color: #000;
    text-decoration: none;
    padding: 8px 10px; 
    display: block;
    text-transform: uppercase;
    letter-spacing: .20em;
}
.menu a:hover{
    text-transform: uppercase;
    letter-spacing: .20em;
    color: #fff;
    padding: 8px 10px;
    background-color: #888888;
    border-radius: 8px;
}

.tel{
    font-size: 20px;
    line-height: 24px;
    margin-right: 20px;
    color: #000;
    text-decoration: none;
}

footer{
    position:fixed;
    bottom: 0;
    left: 0;
    height: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: #bcc3d0;
    opacity: 0.9;
    font-family: Arial, sans-serif;
}

.footer-menu{
    flex-grow: 1;
    flex-flow: row nowrap;
    padding: 0;
    display: flex;
    color: #303030;
    margin-left: 40px;
}
.footer-menu h1{
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-menu ul{
    padding: 0;
    font-size: 18px;
    line-height: 18px;
    list-style: none;
    margin-right: 200px;
}
.footer-menu ul:last-child {
    margin-right: 0;
}

.footer-menu li{
    margin-right: 20px;
}
.footer-menu li:last-child {
    margin-right: 0;
}

body{
    background: #fff url(./images/white-grey-scratone.png);
    background-repeat: repeat;
    font-family: Arial, sans-serif;
    letter-spacing: .05em;
}

.image{
    width: 100%;
    height: 150px;
    border-radius: 5px;
}

.body-image{
    display: block;
    margin: 30px auto;
}

h2{
    font-size: 28px;
    color: #303030 ;
    text-transform: uppercase;
    margin-left: 270px;
}

h3{
    margin-left: 20%;
    margin-bottom: 50px;
    margin-top: 50px;
    font-size: 24px;
    color: #303030;
}

h4{
    margin-left: 20%;
    font-size: 20px;
    color: #303030;
    font-weight: normal;
}

h5{
    margin-left: 20%;
    font-size: 16px;
    font-weight: normal;
}

.sidenav{
    position:absolute;
    z-index: 1;
    overflow-x: hidden;
    margin-left: 7%;
}

.sidenav a{
    color:#303030;
    background-color: #e8e8e8;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    letter-spacing: .10em;
    font-size: 20px;
    padding: 8px 10px;
    width: 180px;
}

.sidenav a:hover{
    color: #fff;
    background-color: #888888;
    border-radius: 5px;
}

.sidenav a:first-child{
    margin-top: 10px;
}

.go-back{
    position:fixed;
    z-index: 1;
    overflow-x: hidden;
    margin-left: 7%;
    margin-top: 22%;
}

.go-back a{
    color:#303030;
    background-color: #e8e8e8;
    border-radius: 5px;
    text-decoration: none;
    display: block;
    letter-spacing: .10em;
    font-size: 20px;
    padding: 8px 10px;
    width: 150px;
}

.go-back a:hover{
    color: #fff;
    background-color: #888888;
    border-radius: 5px;
}

p{
    margin-left: 20%;
    margin-right: 20%;
}


.about h4{
    margin-top: 0;
    margin-bottom: 30px;
}

.about h4:last-child{
    margin-bottom: 150px;
}

.production-table table{
    margin-left: 20%;
    margin-top: 50px;
    margin-bottom: 150px;
}

.production-table td{
    width: 300px;
    height: 300px;
    padding:10px 5px 5px 10px;
    background-color:#e8e8e8;
    border-radius: 10px;
    margin: 5px;
}

.production-table h4{
    text-align: center;
    margin:20px 10px 10px 0;
    color: #303030;
}
.production-table img{
    margin: 0;
    width: 300px;
    height: 200px;
    object-fit:cover;
    border-radius: 5px;
}

.lit-production li{
    margin-left: 20%;
    margin-bottom: 5px;
}


.slider{
    max-width: 300px;
    position: absolute;
    margin-left: 20%;
    height: 300px;
}

.slider .item img {
    object-fit: cover;
    width: 300px;
    height: 300px;
    object-fit: scale-down;
}

.slider .previous, .slider .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color:#ffffff;
    background-color: #e8e8e8;
    font-weight: bold;
    font-size: 16px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}
.slider .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slider .previous:hover,
.slider .next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}


.slider .item {
    animation-name: fade;
    animation-duration: 1.5s;
}
@keyframes fade {
    from {
        opacity: 0.4
    }
    to {
        opacity: 1
    }
}
.products-text {
    margin-left: 25%;
    margin-bottom: 150px;
}
.products-text h3{
    width: 600px;
}

b{
    color: #303030;
}

.product-img{
    margin-left: 20%;
    width: 300px;
    height: 300px;
    position: absolute;
    object-fit: scale-down;
}

.map{
    margin: 30px 20% 150px;
}

.site-map li{
    margin-left: 12%;
    margin-bottom: 5px;
}
.site-map li:last-child{
    margin-bottom: 20px;
}
.site-map a{
    text-decoration: none;
    font-size: 24px;
    color: #303030;
}
.site-map{
    margin-bottom: 10%;
}

.products h2{
    margin-left: 45%;
}
.products table{
    width: 60%;
    margin-left: 10%;
}
.products img{
    filter: blur(40%);
    width: 450px;
    height: 330px;
    border-radius: 10px;
}
.products img:hover{
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.products p{
    color: #303030;
    font-size: 24px;
    margin-left: 10%;
    margin-right: 10%;
}

.tizery-vr {
    position:absolute;
    z-index: 1;
    overflow-x: hidden;
	padding: 5px;
    margin-left: 80%;
}
.tizery-vr img {
	height: 200px;
	margin: 0 10px 0 0;
	padding: 5px 0 0 0;
	width: 200px; 
    object-fit:scale-down;
}
.tizery-vr a {
    text-decoration: none;
    color:#303030;
	display: flex;
	margin: 10px 0;
}
.tizery-vr a:hover{
    text-decoration: underline;
}
 
.tizery-vr p {
	margin: 10px 0;
    margin-right: 10px;
    text-align: right;
}

.mech-production p:last-child{
    margin-bottom: 150px;
}
