/*
Theme Name: SZ-WH
Author: YP
*/

:root {
    --main-color-gray: gray;
    --main-color-light-gray: rgb(193, 193, 193);
    --main-color-orange: #F38903;
    --main-color-dark: rgb(56, 55, 61);
    --color-highlight: rgb(244, 244, 163);

    --shadow-small: 0 0 2px 2px rgba(0,0,0,.1);
    --shadow-middle: 0 0 5px 5px rgba(0,0,0,.2);
    --shadow-big: 0 0 10px 10px rgba(0,0,0,.2);
}

@font-face {
    font-family: "Exo 2"; 
    src: url("./assets/fonts/Exo2-VariableFont_wght.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}

h1 {
    font-size: 24px;
    margin-top: 0;
} 

body {
    margin: 0;
    padding: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body * {
    box-sizing: border-box;
    font-family: "Exo 2";
    color: var(--main-color-dark)
}

.footer-wrap,
.header-wrap,
main {
    max-width: 1040px;
    width: 100%;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

main {
    min-height: calc(100vh - 270px);
}

.hidden {
    display: none;
}

.header-wrap {
    height: 100px;
    display: flex;
    justify-content: space-between;
    min-height: 100px;
}

.header-logotype {
    height: 60px; 
    width: auto;   
}

.header-navigation-wrap {
    display: flex;
    align-items: center;
}

.header-navigation-phone {
    padding-left: 20px;
    border-left: 1px dotted var(--main-color-gray);
    font-size: 16px;
    font-weight: 600;
    margin-left: 40px;
}

.header-slider {
    background-color: whitesmoke;
    height: 500px;
    width: 100%;
    background-image: url(./assets/img/slides/2.jpg);
    background-size: cover;
    background-position: center;
}

ul {
    list-style-type: none;
    padding: 0;
}

a {
    transition: ease-in-out .5s;
    text-decoration: none;
}

a:hover {
    transition: ease-in-out .5s;
    color: var(--main-color-orange);
}

main {
    padding-top:40px;
    padding-bottom: 40px;
}

footer {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: var(--main-color-dark);
}

footer * {
    color: white
}

.swiper,
.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-wrapper {
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.footer-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    min-height: 100px;
}

.footer-wrap * {
    font-size: 12px;
}

.footer-logotype {
    margin-bottom: 20px;
    height: 40px;
}

#menu-top-menu {
    display: flex;
}

#menu-top-menu li {
    margin-right: 10px;
}

#menu-top-menu-1 li {
    margin-bottom: 5px
}

tr:nth-child(odd) {
    background-color: whitesmoke;
}

td {
    padding: 5px;
}

td {
	border-color: white !important;
}


 