@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Roboto;
    font-weight: 400;
}
.container {
    max-width: 1140px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}
.header__nav {
    background: #322E41;
    padding: 14px 0;
}
.header__nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__nav-list {
    display: flex;
}
.header__nav-list a {
    padding: 27px 23px;
    color: #fff;
    transition: 500ms;
}
.header__nav-list a:hover {
    background: white;
    color: #D47300;
}
.header__content {
    background: url(../images/headerBG.jpg) center / cover;
    height: 500px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
h1 {
    font-size: 50px;
    font-weight: 700;
}
.header__content p {
    font-size: 18px;
}
.header__content span {
    font-weight: 700;
}
.main__left {
    max-width: 540px;
    width: 100%;
}
.card {
    background: white;
    padding: 8px;
    border-radius: 6px;
}
.card h2 {
    font-weight: 700;
    font-size: 22px;
    margin: 10px 0 5px;
}
.card p {
    color: #9B9B9B;
}
body {
    background: #EBEBEB;
}
.main__left img {
    width: 100%;
}
.main__right {
    max-width: 540px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.main__right .card {
    width: 255px;
    text-align: center;
}
.main__right h2 {
    margin: 0 0 10px;
}
.main__right p {
    line-height: 16px;
}
.main {
    display: flex;
    gap: 30px;
    transform: translateY(-37px);
}
.footer {
    background: #322E41;
    padding: 40px 0;
}
.footer__form {
    display: flex;
    flex-direction: column;
    width: 350px;
    gap: 10px;
}
input, textarea, button {
    border: none;
    outline: none;
    resize: none;
    padding: 9px;
    border-radius: 6px;
    color: #9B9B9B;
    font-size: 16px;
}
button {
    color: white;
    background: #544294;
    cursor: pointer;
}
.footer__list a {
    color: white;
    transition: .3s;
}
.footer__list a:hover {
    color: #D47300;
}
.footer__list {
    display: flex;
    flex-flow: column wrap;
    height: 106px;
    gap: 9px 73px;
}
.footer__social {
    display: flex;
    gap: 40px;
    align-items: center;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}