@import url(./fonts.css);


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    outline: none;
    border: none;
}

.container {
    max-width: 1140px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #322E41;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__nav-logo {
        max-width: 100px ;
        width: 100%;
    }

.header__nav-list {
    display: flex;
    align-items: center;
}

.header__nav-list_item-link {
    display: inline-block;
    background: transparent;
    padding: 24px 18px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: 300ms linear;
}

.header__nav-list_item-link:hover {
    background: #fff;
    color: #D47300;
}

.banner {
    background: url(../img/nikeBg.png) no-repeat center/cover;
    height: 500px;
}

.banner__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner__title {
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.banner__slogan {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

.banner__slogan span {
    font-weight: 700;
}

.cards {
    background: #ebebeb;
}

.cards__wrap {
    display: flex;
    gap: 30px;
    transform: translateY(-30px);
}

.cards__left {
    background: #fff;
    max-width: 540px;
    width: 100%;
    height: 468px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 6px;
    padding: 15px;
}

.cards__left-img {
    width: 100%;
}

.cards__left-img img {
    width: 100%;
}

.cards__left-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.cards__left-desc_h {
    font-weight: 700;
    font-size: 22px;
    color: #2C2A2A;
}

.cards__left-desc_p {
    font-weight: 400;
    font-size: 16px;
    color: #9B9B9B;
}

.cards__right {
    max-width: 540px;
    width: 100%;
    height: 468px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    gap: 30px;
}

.cards__right-item {
    max-width: 255px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.cards__right-item_img {
    width: 80px;
    height: 80px;
    border: 2px solid #D47300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
}

.cards__right-item_img img {
    width: 100%;
}

.cards__right-item_desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.cards__right-item_desc-h {
    font-weight: 700;
    font-size: 22px;
    color: #2C2A2A;
    line-height: 11px;
}

.cards__right-item_desc-p {
    font-weight: 400;
    font-size: 16px;
    color: #9B9B9B;
    line-height: 18px;
}

.footer {
    padding: 40px 0;
    background: #322E41;
}

.footer__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__form {
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__form-input {
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.footer__form-input::placeholder {
    color: #9B9B9B;
    transition: 0.3s;
}

.footer__form-input:focus::placeholder {
    color: transparent;
}


.footer__form-textarea {
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    resize: none;
    height: 86px;
}

.footer__form-textarea::placeholder {
    color: #9B9B9B;
    transition: 0.3s;
}

.footer__form-textarea:focus::placeholder {
    color: transparent;
}

.footer__form-btn {
    padding: 10px;
    background: #544294;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    max-width: 250px;
    width: 100%;
    max-height: 106px;
    gap: 10px;
}

.footer-list_item-link {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}

.footer-list_item-link:hover {
    color: #D47300;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer__links-item_link svg path{
    transition: 0.3s;
}

.footer__links-item_link:hover svg path{
    fill: #D47300;
}