html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.container {
  width: 72%;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 1599px) {
  .container {
    width: 98%;
  }
}

.header {
  position: relative;
  background-color: #222222;
}

.header__wrp {
  display: flex;
  align-items: center;
  min-height: 75px;
  justify-content: space-between;
}

.header__container {
  display: flex;
}

.header__logo {
  margin: 0 41px 0 0;
}

@media (max-width: 1599px) {
  .header__logo {
    margin-left: 16px;
  }
}

.header__search {
  display: flex;
  gap: 10px;
}

.header__search-input {
  border: 2px solid #f18b99;
  border-radius: 5px;
  outline: none;
  background: #f18b99;
  color: #ffffff;
  font-size: 16px;
}

@media (max-width: 767px) {
  .header__search-input {
    font-size: 5px;
    border-radius: 3px;
  }
}

.header__search-input:hover,
.header__search-input:focus {
  outline: 2px solid red;
}

.header__search-button {
  background: none;
  border: none;
}

.header__search-icon {
  fill: #e8e8e8;
}

.header__search-icon:hover {
  fill: #f16d7f;
}

.header__link {
  margin: 0 0 0 33px;
}

@media (max-width: 767px) {
  .header__link {
    display: none;
  }
}

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

.header__nav {
  position: absolute;
  width: 232px;
  height: 764px;
  background-color: white;
  top: 100%;
  right: 0;
  box-shadow: -10px 8px 10px 2px rgba(34, 60, 80, 0.2);
  display: none;
}

.header__nav-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: left;
  text-transform: uppercase;
  padding: 37px 0 24px 34px;
}

.header__burger {
  border: none;
  background-color: transparent;
}

@media (max-width: 767px) {
  .header__burger {
    margin-right: 16px;
  }
}

.header__burger-icon:hover + .header__nav,
.header__burger-icon:focus + .header__nav {
  display: block;
}

.header__nav:hover {
  display: block;
}

.header__burger-icon:hover {
  fill: #f18b99;
  cursor: pointer;
}

.header__burger-icon {
  fill: #e8e8e8;
}

.header__person-link {
  fill: #e8e8e8;
}

.header__person-link:hover {
  fill: #f18b99;
}

.header__basket-link {
  fill: #e8e8e8;
}

@media (max-width: 1599px) {
  .header__basket-link {
    margin-right: 41px;
  }
}

.header__basket-link:hover {
  fill: #f18b99;
}

.nav-item__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  color: #f16d7f;
  text-transform: uppercase;
  padding: 20px 0 12px 33px;
}

.nav-item__item {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  text-transform: capitalize;
  color: #6F6E6E;
  padding: 0 0 11px 54px;
}

.brand {
  height: 764px;
  margin: 0 0 65px 0;
  display: flex;
  background-color: #f1e4e6;
}

@media (max-width: 1599px) {
  .brand {
    width: 100%;
    height: 368px;
    margin: 0 0 20px 0;
  }
}

@media (max-width: 767px) {
  .brand {
    max-width: 100%;
    height: 363px;
  }
}

.brand__img {
  height: 100%;
  width: 50%;
  object-fit: scale-down;
}

@media (max-width: 1599px) {
  .brand__img {
    height: 100%;
    width: 50%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .brand__img {
    display: none;
  }
}

.brand__title-wrp {
  flex-grow: 1;
  padding: 0 0 0 92px;
  display: flex;
  align-items: center;
}

@media (max-width: 1599px) {
  .brand__title-wrp {
    width: 50%;
    padding: 0 0 0 39px;
  }
}

.brand__decor {
  width: 12px;
  height: 92px;
  background-color: #f16d7f;
  border: none;
  margin: 0 16px 0 0;
}

.brand__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 58px;
  text-transform: uppercase;
}

@media (max-width: 1599px) {
  .brand__title {
    font-size: 44px;
    font-weight: 900;
    line-height: 53px;
  }
}

.brand__title-lower {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  display: block;
}

@media (max-width: 1599px) {
  .brand__title-lower {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    letter-spacing: 0em;
  }
}

.brand__title-pink {
  color: #f18b99;
}

.sales__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .sales__list {
    justify-content: center;
    gap: 32px;
  }
}

.sales__item {
  height: 260px;
  width: 360px;
  background-color: #4e4544;
}

@media (max-width: 1599px) {
  .sales__item {
    height: 167px;
    width: 232px;
  }
}

@media (max-width: 767px) {
  .sales__item {
    height: 247px;
    width: 343px;
  }
}

.sales__item--women {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url(../img/women-sales.jpg);
}

@media (max-width: 1599px) {
  .sales__item--women {
    background-size: 100%;
  }
}

.sales__item--man {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url(../img/man-sales.jpg);
}

@media (max-width: 1599px) {
  .sales__item--man {
    background-size: 100%;
  }
}

.sales__item--kids {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: url(../img/kids-sales.jpg);
}

@media (max-width: 1599px) {
  .sales__item--kids {
    background-size: 100%;
  }
}

.sales__item--accesories {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 30px 0 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/accesories-sales.jpg);
}

@media (max-width: 1599px) {
  .sales__item--accesories {
    height: 116px;
  }
}

@media (max-width: 767px) {
  .sales__item--accesories {
    height: 111px;
    width: 343px;
    margin: 0 0 0 0;
  }
}

.sales__item-text {
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
  color: white;
}

.sales__item-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f18b99;
}

.products {
  margin: 96px 0 0 0;
}

@media (max-width: 1599px) {
  .products {
    margin: 154px 0 0 0;
  }
}

@media (max-width: 767px) {
  .products {
    margin: 64px 0 0 0;
  }
}

.products__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  text-transform: capitalize;
}

.products__sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  margin: 0 0 48px 0;
  color: #9f9f9f;
}

@media (max-width: 1599px) {
  .products__sub-title {
    margin: 0 0 73px 0;
  }
}

@media (max-width: 767px) {
  .products__sub-title {
    margin: 0 0 64px 0;
  }
}

.products__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.products__item {
  height: 581px;
  width: 360px;
  flex-direction: column;
  margin: 0 0 30px 0;
  position: relative;
}

@media (max-width: 1599px) {
  .products__item {
    margin: 0 16px 16px 0;
  }
}

.products__busket-img {
  height: 23px;
  width: 25px;
  border-radius: 0px;
}

.products__basket-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 0 10px;
  text-decoration: none;
}

.products__item:hover .button,
.products__item:hover .overlay {
  display: block;
  border: 1px solid #ffffff;
}

.products__item-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  padding: 25px 0 12px 0;
}

.products__item-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  color: #5d5d5d;
  padding: 0 0 18px 0;
}

.products__item-price {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #f16d7f;
}

.products__button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0 191px 0;
}

@media (max-width: 1599px) {
  .products__button {
    margin: 32px 0 65px 0;
  }
}

@media (max-width: 767px) {
  .products__button {
    margin: 41px 0 96px 0;
  }
}

.products__button-text:hover {
  color: #ffffff;
  cursor: pointer;
  background-color: #f16d7f;
}

.products__button-text:active {
  color: #ffffff;
  background-color: #f16d7f;
}

.products__button-text {
  height: 47px;
  width: 211px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  text-transform: capitalize;
  border: 1px solid #ff6a6a;
  color: #f16d7f;
}

.overlay {
  width: 100%;
  min-height: 420px;
  background: #3a3838db;
  position: absolute;
  top: 0;
}

.overlay {
  display: none;
}

.overlay:hover {
  display: block;
  border: 1px solid #ffffff;
}

.button {
  width: 138px;
  height: 43px;
  background-color: #3a3838db;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button:hover {
  background-color: #f16d7f;
  cursor: pointer;
}

.button:focus {
  border: 1px solid red;
}

.button:active {
  background-color: #f16d7f;
}

.button {
  display: none;
}

.button:hover {
  display: block;
  border: 1px solid #ffffff;
}

.feature {
  height: 341px;
  width: 100%;
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1599px) {
  .feature {
    height: 610px;
  }
}

.feature__list {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1599px) {
  .feature__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 0 0 0;
  }
}

.feature__item {
  height: 134;
  width: 360px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1599px) {
  .feature__item {
    padding: 0 0 48px 0;
  }
}

@media (max-width: 767px) {
  .feature__item {
    padding: 0 0 46px 0;
  }
}

.feature__item-title {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  padding: 26px 0 16px 0;
  color: #ffffff;
}

.feature__item-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  text-align: center;
  color: #ffffff;
}

.subscribe {
  height: 448px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/subscribe-img.jpg);
}

@media (max-width: 1599px) {
  .subscribe {
    height: 693px;
  }
}

@media (max-width: 767px) {
  .subscribe {
    height: 550px;
    width: 100%;
  }
}

.subscribe__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
}

@media (max-width: 1599px) {
  .subscribe__container {
    flex-direction: column;
    gap: 0;
  }
}

.subscribe__list {
  height: 224px;
  width: 359px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 97px 0 0 0;
}

@media (max-width: 1599px) {
  .subscribe__list {
    padding: 54px 0 0 0;
  }
}

.subscribe__inscription {
  height: 99px;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  padding: 15px 0 0 0;
}

.subscribe__form {
  height: 142px;
  width: 557px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 150px 0 0 0;
}

@media (max-width: 1599px) {
  .subscribe__form {
    margin: 48px 0 0 0;
  }
}

@media (max-width: 767px) {
  .subscribe__form {
    margin: 58px 0 0 0;
    height: 123px;
    width: 341px;
  }
}

.subscribe__heading {
  height: 61px;
  padding: 0 0 32px 0;
}

@media (max-width: 767px) {
  .subscribe__heading {
    height: 54px;
    padding: 0 0 22px 0;
  }
}

.subscribe__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .subscribe__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 37px;
  }
}

.subscribe__sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .subscribe__sub-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
}

.subscribe__form-submit {
  display: flex;
}

.subscribe__input {
  padding: 0 0 0 27px;
  text-align: left;
  height: 49px;
  width: 322px;
  border: none;
  background: #E1E1E1;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

@media (max-width: 767px) {
  .subscribe__input {
    height: 46px;
    width: 220px;
  }
}

.subcribe__button {
  padding: 7px 15px 6px 8px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border: none;
  background: #E05C6E;
  color: white;
}

.subcribe__button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.subscribe__sending {
  padding: 27px 0 0 0;
}

.footer {
  height: 79px;
  background-color: #222222;
}

@media (max-width: 767px) {
  .footer {
    height: 143px;
  }
}

.footer__icon {
  padding: 24px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1599px) {
  .footer__icon {
    margin: 0 32px 0 32px;
  }
}

@media (max-width: 767px) {
  .footer__icon {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

.footer__list {
  display: flex;
  width: 147px;
  height: 32px;
  gap: 8px;
}

@media (max-width: 767px) {
  .footer__list {
    margin: 23px 0 20px 0;
  }
}

.footer__copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #ffffff;
}

.footer__reference {
  width: 32px;
  height: 32px;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.footer__reference:hover {
  background: #f16d7f;
}

.footer__img:hover {
  fill: white;
}

.forms__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  text-transform: uppercase;
  margin: 59px 0 0 0;
  color: #f16d7f;
}

@media (max-width: 1599px) {
  .forms__title {
    margin-left: 16px;
  }
}

.forms__regitration {
  display: flex;
  justify-content: center;
  gap: 180px;
  margin: 124px 0 0 0;
}

@media (max-width: 1599px) {
  .forms__regitration {
    margin: 100px 16px 0 16px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .forms__regitration {
    flex-direction: column;
    margin: 100px 9px 0 9px;
  }
}

@media (max-width: 1599px) {
  .forms__list {
    width: 50%;
  }
}

.forms__list-name {
  display: flex;
  flex-direction: column;
}

.forms__list-title {
  font-size: 16px;
  font-weight: 300;
  line-height: 19px;
  padding: 0 0 20px 0;
}

.forms__list-input {
  height: 45px;
  width: 360px;
  border-radius: 0px;
  border: 1px solid #A4A4A4;
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  padding: 0 0 0 17px;
  margin: 0 0 20px 0;
}

.forms__list-radio {
  margin: 12px 0 35px 0;
}

.forms__list-select {
  width: 17px;
  height: 17px;
  margin: 0 10px 0 0;
}

.forms__list-sex {
  font-size: 15px;
  font-weight: 300;
  line-height: 13px;
  margin: 0 20px 0 0;
}

.forms__list-text {
  width: 359px;
  height: 32px;
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0em;
  margin: 15px 0 40px 0;
}

.forms__list-button {
  padding: 16px 46px 17px 29px;
  background: #f16d7f;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 0 86px 0;
}

@media (max-width: 767px) {
  .forms__list-button {
    margin: 0 0 40px 0;
  }
}

.forms__list-input:hover,
.forms__list-input:focus {
  border: 1px solid #f18b99;
}

.forms__list-button:hover,
.forms__list-button:focus {
  opacity: 0.7;
  cursor: pointer;
}

.forms__list-select:hover {
  cursor: pointer;
}

.forms__perks {
  width: 652px;
  height: 334px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1599px) {
  .forms__perks {
    height: 337px;
    width: 50%;
    margin: 0 0 100px 0;
  }
}

.forms__perks-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

@media (max-width: 1599px) {
  .forms__perks-title {
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
  }
}

@media (max-width: 767px) {
  .forms__perks-title {
    padding: 0 0 0 9px;
    height: 19px;
    width: 179px;
  }
}

.forms__perks-text {
  width: 652px;
  height: 58px;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0em;
  margin: 0 0 21px 0;
}

@media (max-width: 1599px) {
  .forms__perks-text {
    padding: 0 0 0 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    width: 354px;
    height: 57px;
  }
}

@media (max-width: 767px) {
  .forms__perks-text {
    padding: 0 0 0 9px;
  }
}

.forms__perks-item {
  position: relative;
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
  letter-spacing: 0em;
  padding: 0 0 16px 43px;
}

@media (max-width: 1599px) {
  .forms__perks-item {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 19px;
    height: 37px;
    width: 311px;
  }
}

@media (max-width: 767px) {
  .forms__perks-item {
    margin: 0 0 0 9px;
  }
}

.forms__perks-item:before {
  content: '';
  width: 20px;
  height: 16px;
  background: none;
  position: absolute;
  top: 5px;
  left: 6px;
  background-image: url(../img/check.svg);
}

.arrivals__list {
  display: flex;
  justify-content: space-between;
  margin: 59px 0 60px 0;
}

@media (max-width: 767px) {
  .arrivals__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 24px 0 85px 0;
  }
}

.arrivals__list--title {
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: #F16D7F;
}

.arrivals__menu {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

@media (max-width: 767px) {
  .arrivals__menu {
    gap: 2px;
    justify-content: center;
  }
}

.arrivals__menu--sub-title {
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  color: #636363;
}

.arrivals__menu--sub-title-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: #F16D7F;
}

.slider {
  margin: 41px 0 129px 0;
}

.slider__block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 767px) {
  .slider__block {
    height: 600px;
    width: 375px;
  }
}

.slider__title {
  padding: 0 0 12px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  color: #F16D7F;
}

.slider__border {
  margin: 0 0 12px 0;
  width: 63px;
  display: block;
  border-bottom: 3px solid #F16D7F;
}

.slider__sub-title {
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  color: #4D4D4D;
  padding: 0 0 48px 0;
}

.slider__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  text-align: center;
  height: 51px;
  width: 555px;
  color: #5E5E5E;
  margin: 0 0 32px 0;
}

@media (max-width: 767px) {
  .slider__text {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    height: 105px;
    width: 326px;
  }
}

.slider__value {
  font-size: 24px;
  font-weight: 300;
  line-height: 29px;
  color: #EF5B70;
  padding: 0 0 130px 0;
}

@media (max-width: 767px) {
  .slider__value {
    padding: 0 0 81px 0;
  }
}

.slider__list {
  display: flex;
  gap: 40px;
}

@media (max-width: 767px) {
  .slider__list {
    gap: 0;
  }
}

.slider__form {
  margin: 0 0 49px 0;
}

.slider__select {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #6F6E6E;
  border: none;
  text-transform: uppercase;
}

.slider__select:hover,
.slider__select:focus {
  cursor: pointer;
  color: #F16D7F;
}

.slider__option:hover,
.slider__option:focus {
  cursor: pointer;
  color: #F16D7F;
}

.slider__button {
  padding: 7px 25px;
  background: transparent;
  border: 1.5px solid #F16D7F;
}

.slider__button:hover,
.slider__button:focus {
  cursor: pointer;
  border: 1.5px solid #6F6E6E;
  background: #6F6E6E;
}

.slider__button-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #F26376;
  padding: 0 0 0 20px;
}

.slider__icon {
  fill: #F26376;
}

.cards__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 128px 0;
  gap: 30px;
}

@media (max-width: 1599px) {
  .cards__list {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .cards__list {
    flex-direction: column;
    gap: 0;
  }
}

.cards__item {
  height: 581px;
  width: 360px;
  display: flex;
  flex-direction: column;
}

.cards__item-woman {
  height: 581px;
  width: 360px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1599px) {
  .cards__item-woman {
    display: none;
  }
}

@media (max-width: 767px) {
  .cards__item-woman {
    display: block;
  }
}

.cards__item-men {
  height: 581px;
  width: 360px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .cards__item-men {
    display: none;
  }
}

.cards__item-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  padding: 24px 0 12px 0;
}

.cards__item-text {
  height: 51px;
  width: 314px;
  font-size: 14px;
  font-weight: 300;
  line-height: 17px;
  color: #5D5D5D;
  margin: 0 0 18px 0;
}

.cards__item-price {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #F16D7F;
}

.Woman {
  height: 581px;
  width: 360px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1599px) {
  .Woman {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */