@import url("normalize.css");
@import url("base.css?v=1.1");

/* main styles */
body {
    position: relative;
    background: var(--bg-color);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--text-color);
}
.container {
    max-width: 100%;
    width: 1780px;    
    margin: 0 auto;
    padding: 0 15px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    background: rgba(13, 14, 16, 0.40);
    border-bottom: 1px solid var(--grey-light3);
    z-index: 3;
}
header .logo {
    filter: invert(1);
}
.header-row {
    gap: 64px;
}
.header-menu {
    gap: 24px;
}
.header-menu > li > a {
    display: flex;
    gap: 5.5px;
    font-size: 14px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.28px;
}
.header-menu > li.parent-menu > a:after {
    content: '';
    display: block;
    width: 9px;
    height: auto;
    background-image: url(../images/icons/chevron-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    filter: invert(1);
    transition: 0.35s all ease;
}
.header-contacts {
    margin-left: auto;
    gap: 12px;
}
.header-phone {
    margin-right: 12px;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    gap: 8px;
    transition: 0.35s all ease;
}
.header-phone:before {
    content: '';
    display: block;
    width: 24px;
    height: auto;
    background-image: url(../images/icons/phone.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: 0.35s all ease;
}
.header-cart {
    background: var(--grey-light3);
}
.hero {
    height: 100vh;
    background-image: url(../images/hero-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero > .container,
.hero-content {
    height: 100%;
}
.hero-content {
    text-align: center;
}
.hero-text {
    gap: 31px;    
    font-size: 18px;
    line-height: 1.22;
    margin-top: 16px;
    margin-bottom: 31px;
}
.hero-text:after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--white);
}