:root {
    --color-black: #192123;
    --color-white: #E7E7E7;
}

/* box-sizing — критично для flex */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* убираем стандартные отступы */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol {
    margin: 0;
    padding: 0;
}

/* списки */
ul, ol {
    list-style: none;
}

/* ссылки */
a {
    text-decoration: none;
    color: inherit;
    color: var(--color-white);
}

/* изображения */
img {
    max-width: 100%;
    display: block;
}

/* кнопки и инпуты */
button,
input,
textarea {
    font: inherit;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body{
    background-color: #E3E8E4;
    font-family: 'Google Sans', sans-serif;
    line-height: 1.5;
}

#header{
    background: var(--color-black);


}
.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 71px;
}
.header-logo {
    font-family: 'Inter';
    font-weight: 900;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
}
.header-menu {
    font-family: 'Google Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
}
ul#menu-main {
    display: flex;
    gap: 24px;
}


.text-color-black{
    color: var(--color-black);
}
.text-color-white{
    color: var(--color-white);
}
.btn-primary{
    background: var(--color-white);
    color: var(--color-black);
    width: 150px;
    height: 40px;
    padding-top: 14px;
    padding-right: 18px;
    padding-bottom: 14px;
    padding-left: 18px;
    gap: 5px;
    border-radius: 15px;
    line-height: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.padding-top-30{
    padding-top: 30px;
}
.padding-bottom-30{
    padding-bottom: 30px;
}
.padding-top-60{
    padding-top: 60px;
}
.padding-bottom-60{
    padding-bottom: 60px;
}
.padding-top-90{
    padding-top: 90px;
}
.padding-bottom-90{
    padding-bottom: 90px;
}
.margin-top-30{
    margin-top: 30px;
}
.margin-bottom-30{
    margin-bottom: 30px;
}
.margin-top-60{
    margin-top: 60px;
}
.margin-bottom-60{
    margin-bottom: 60px;
}
.margin-top-90{
    margin-top: 90px;
}
.margin-bottom-90{
    margin-bottom: 90px;
}
.text-two-blocks-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
}
.text-two-blocks-content>div{
    width: 50%;
}
.text-two-blocks-content h2{
    font-family: Google Sans;
font-weight: 500;
font-size: 50px;
line-height: 50px;
letter-spacing: -5%;

}
.text-two-blocks-content p{
    font-family: Google Sans;
font-weight: 500;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
.hero{
    background: linear-gradient(180deg, #182022 0%, #2B3638 90.87%);
    color: var(--color-white);
}
.hero-left {
    width: 383px;
    height: 405px;
    line-height: 48px;
        display: flex;
    flex-direction: column;
    gap: 30px;
}
.hero-right p {
    font-family: 'Google Sans';
    font-weight: 400;
    font-style: Italic;
    font-size: 22px;
    line-height: 31px;
    letter-spacing: 0%;
}
.hero-right{
    width: 355px;
    height: 173px;
}
.hero-content {
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 190px 0px;
    background-position: bottom;
}
.hero-left h1{
    font-family: 'Google Sans';
    font-weight: 500;
    font-size: 50px;
    line-height: 48px;
    letter-spacing: 0%;
        width: 80%;
}
.hero-left p{
    font-family: 'Google Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}
.bg-image-text-left .text-two-blocks-left {
    height: 436px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.bg-image-text-left .text-two-blocks-left span{

    color: #bfbfbf;
    text-shadow: 0 -1px 0 #fff, 0 -2px 2px rgba(255, 255, 255, 0.6), 0 1px 0 #666, 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 255, 255, 0.3);
    opacity: 0.5;
    font-family: Inter;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    text-transform: uppercase;

}
.bg-image-text-left .text-two-blocks-left h2{
    font-family: 'Google Sans';
font-weight: 700;
font-size: 40px;
line-height: 40px;
letter-spacing: -5%;

}
.bg-image-text-left .text-two-blocks-left p{
font-family: 'Google Sans';
font-weight: 400;
font-size: 22px;
letter-spacing: -5%;
line-height: 30px;
}
.bg-image-text-left .text-two-blocks-left b{
font-style: italic;
}
.bg-image-text-left {
    background-position: center;
    background-size: cover;
}
@media (max-width: 1200px) {
    
}