:root {
    --color-main-white: #ececec;
}

ul, ol {
    list-style: none;  /* Убираем маркеры */
    padding: 0;        /* Убираем внутренние отступы */
    margin: 0;         /* Убираем внешние отступы */
}

li {
    padding: 0;
    margin: 0;
}

.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.flex {
    display: flex;
}

.white {
    color: var(--color-main-white);
}

.uppercase {
    text-transform: uppercase;
}

.opacity05 {
    opacity: 0.5;
}

.padding3 {
    padding: 3rem;
}

.padding05 {
    padding: 0.5rem;
}

.max-width40 {
    max-width: 40%;
}

.scale {
    transition: transform 0.5s ease-in-out;
}

.scale:hover {
    transform: scale(1.05);
}

.scale:not(:hover) {
    transform: scale(1);
}

#section-header-top {
    position: fixed;
    width: 100%;
}

#section-main-top, #section-satellite-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#title {
    margin: 1rem;
    font-size: 1.5rem;
    transition: all .3s ease-in-out;
}

#header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00000070;
    height: 5rem;
    transition: all .3s ease-in-out;
}

#menu-top a {
    margin: 1rem;
    text-decoration: none;
    font-size: .8rem;
    color: var(--color-main-white);
}

#cart-icons-top a {
    padding: 0.5rem;
    color: var(--color-main-white);
}

.flags {
    display: none;
    line-height: 25px;
    text-decoration: none;
    padding: 1rem;
    width: 45px;
    color: var(--color-main-white);
}

.flags.active {
    display: flex;
}

.flags img {
    display: inline-block;
    margin: 2px;
    width: 20px;
    height: 20px;
}

#slider-main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/main-top-bg.jpg) center center no-repeat;
}

#subtitle {
    margin: 0;
    padding: 0;
    font-size: 5rem;
    color: var(--color-main-white);
}

#button-view-the-menu {
    display: inline-block;
    margin: 1rem 0 0 0;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 1px solid var(--color-main-white);
    transition: all .3s ease-in-out;
}

#section-contact-bar ul {
    display: flex;
    list-style: none;
}

#section-contact-bar {
    padding: 3rem;
    background: #e2e2e2;
    color: #797979;
}

#section-contact-bar ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
}

#section-contact-bar ul li i {
    font-size: 3rem;
    float: left;
    padding: 0.5rem 0.8rem;
    margin-right: 0.8rem;
    border-right: 1px solid #d7d7d7;
}

#section-contact-bar ul li {
    line-height: 30px;
}

#section-contact-bar ul li span {
    display: block;
    color: #bebebe;
    min-width: 300px;
}

