.welcome {
    text-align: center;
    color: rgba(0, 0, 0, .7);
}

.welcome h1 {
    font-size: 2rem;
    margin: 0;
}

.welcome a {
    height: 2rem;
    display: -webkit-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    margin: 2rem auto;
    text-decoration: none;
    color: inherit;
}

.welcome svg {
    height: 2rem;
    width: 2rem;
    margin-left: .5rem;
}

.goods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: 68rem;
    justify-content: space-between;
    margin: auto;
    flex-wrap: wrap;
}

.good {
    box-sizing: border-box;
    width: 23%;
    display: inline-block;
    background-color: #fff;
    text-align: center;
    border-radius: .25rem;
    margin: 1rem auto;
}

@media all and (max-width: 68rem) {
    .good {
        width: 30%;
    }
}

@media all and (max-width: 50rem) {
    .good {
        width: 45%;
    }
}

@media all and (max-width: 40rem) {
    .good {
        width: 90%;
    }
}

.good__header {
    background-color: #efefef;
    padding: 1rem;
    line-height: 1;
    border-radius: .25rem .25rem 0 0;
}

.good__header h3 {
    margin: 0;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 1rem;
}

.good__header p {
    margin: .5rem 0 0;
    font-size: .875rem;
    color: rgba(0, 0, 0, .6);
}

.good__body {
    padding: 1rem;
}

.good img {
    width: 150px;
}

.good__price {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, .7);
    margin: 1rem 0;
}

.good button {
    border: none;
    padding: .75rem 1rem;
    text-transform: uppercase;
    font-family: inherit;
    font-size: .875rem;
    color: #fff;
    background-color: #ff6c86;
    border-radius: .25rem;
    width: 100%;
    cursor: pointer;
    outline: none;
    transition: opacity .2s;
}

.good button:hover {
    opacity: .85;
}

.good button:active {
    -ms-transform: translateY(1px);
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}

.fullwidth-banner {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.fullwidth-banner img.hero-img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Адаптация */
@media (max-width: 1024px) {
    .fullwidth-banner img.hero-img {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .fullwidth-banner img.hero-img {
        height: 300px;
    }
}
/* Обнуляем скругления у всех элементов */
*, *::before, *::after {
  border-radius: 0 !important;
}

/* Обнуляем отдельно у часто используемых классов */
button,
.btn,
input,
textarea,
.good,
.good button,
.s1p > div,
.s5p,
.car,
.cta ul li,
.prof,
.form,
.form1 {
  border-radius: 0 !important;
}