
/*********** Global layout
----------------------------------------------------------------------------------------*/
.site-header {
    width: 100%;
    background-color: #FFF;
}
.site-header__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.site-header__block img {
    max-width: 200px;
}
.site-nav {
    background-color: #028c9a;
}
.site-nav ul {
    display: flex;
    align-items: stretch;
    padding: 0;
    justify-content: space-between;
}
.site-nav li {
    list-style: none;
    border-right: 2px solid #FFF;
    flex: 1;
}
.site-nav li:hover {
    background-color: #231f20;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.site-nav a {
    color: #FFF;
    text-transform: uppercase;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}
.site-nav a:hover {
    text-decoration: none;
}
body {
    min-height: calc(100vh);
}
.site-footer {
    position: fixed;
    height: 48px;
    bottom: 0;
    background-color: #028c9a;
    color: #FFF;
    text-align: center;
    padding: 15px 30px;
    width: 100%;
}

@media screen and (min-width: 576px) {

}

@media screen and (min-width: 768px) {

}

@media screen and (min-width: 992px) {

}

@media screen and (min-width: 1200px) {
    .site-header__block img {
        max-width: 300px;
    }
}

@media screen and (min-width: 1400px) {

}

@media screen and (min-width: 1600px) {
    .site-header__block img {
        max-width: 350px;
    }
}

@media screen and (min-width: 1800px) {

}