/**
 * Базовые стили для всего сайта
 */
body {
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    min-width: 320px;
    overflow-x: hidden;
    height: auto;
}


/**
 * Другие стили
 */
.header {
    width: 100%;
    height: 45px;
    background-color: #242424;
}

.header .container {
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.work-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-time .work-time_text {
    display: flex;
    margin-left: 20px;
    align-items: center;
}

.work-time_text .work-time_workday {
    padding-right: 5px;
}

.work-time_img img {
    color: #ffffff;
}

.address {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.address .address-text {
    margin-left: 20px;
}
.social-network {
    display: flex;
    justify-content: space-between;
    align-items: center
}
.social-network .inst {
    margin-right: 20px;
}

.swiper {
    width: 100%;
    height: 800px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar {
    width: 100%;
    height: 85px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    background: #e13e20;
}

.navbar .container {
    height: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-menu {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-menu li {
    display: inline-block;
}

.navbar-menu li a {
    display: inline-block;
    color: #000000;
    opacity: 0.6;
    text-decoration: none;
    padding: 10px;
}

.navbar-menu li a:after {
    display: block;
    content: "";
    height: 3px;
    width: 0;
    background-color: #000000;
    transition: width 0.4s ease-in-out;
}

.navbar-menu li a:hover:after,
.navbar-menu li a:focus:after {
    width: 100%;
}

.navbar-wrap {
    display: flex;
    flex-flow: row nowrap;
}

.navbar-brand {
    font-weight: 700;
}







