@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;800&display=swap");
/* Causten */
@font-face {
  font-family: "Causten";
  src: url("../fonts/Causten-Regular.woff2") format("woff2"), url("../fonts/Causten-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/Causten-Medium.woff2") format("woff2"), url("../fonts/Causten-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/Causten-SemiBold.woff2") format("woff2"), url("../fonts/Causten-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Causten";
  src: url("../fonts/Causten-Bold.woff2") format("woff2"), url("../fonts/Causten-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Core Sans */
@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/CoreSansC-45Regular.woff2") format("woff2"), url("../fonts/CoreSansC-45Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/CoreSansC-55Medium.woff2") format("woff2"), url("../fonts/CoreSansC-55Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/CoreSansC-65Bold.woff2") format("woff2"), url("../fonts/CoreSansC-65Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/CoreSansC-75ExtraBold.woff2") format("woff2"), url("../fonts/CoreSansC-75ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Core Sans C";
  src: url("../fonts/CoreSansC-85Heavy.woff2") format("woff2"), url("../fonts/CoreSansC-85Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html,
body {
  line-height: 1;
  height: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  color: inherit;
  background-color: transparent;
}

button,
select,
option {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

address {
  font-style: normal;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background-color: #ffffff;
  color: #3C4242;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  gap: 10px;
}
@media screen and (max-width: 767.98px) {
  .header__container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header__search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 879.98px) {
  .header__search {
    max-width: 110px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .header__search {
    max-width: 100%;
  }
  .menu-open .header__search {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .header__search {
    position: fixed;
    top: 15px;
    left: -100%;
    width: 80%;
  }
  .menu-open .header__search {
    display: block;
    left: 45%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.header__search input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  background-color: #F6F6F6;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 267px;
          flex: 1 1 267px;
  min-width: 70px;
  width: 100%;
  padding: 12px 5px 12px 30px;
}
.header__search::-webkit-input-placeholder {
  position: relative;
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 16px;
  padding-left: 50px;
}
.header__search::-moz-placeholder {
  position: relative;
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 16px;
  padding-left: 50px;
}
.header__search:-ms-input-placeholder {
  position: relative;
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 16px;
  padding-left: 50px;
}
.header__search::-ms-input-placeholder {
  position: relative;
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 16px;
  padding-left: 50px;
}
.header__search::placeholder {
  position: relative;
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 16px;
  padding-left: 50px;
}
@media (max-width: 991.98px) {
  .header__search::-webkit-input-placeholder {
    font-size: 12px;
  }
  .header__search::-moz-placeholder {
    font-size: 12px;
  }
  .header__search:-ms-input-placeholder {
    font-size: 12px;
  }
  .header__search::-ms-input-placeholder {
    font-size: 12px;
  }
  .header__search::placeholder {
    font-size: 12px;
  }
}
.header__search::before {
  content: "";
  background: url("../img/icons/search.svg") 0 0/20px 20px no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 7px;
  top: calc(50% - 10px);
}

.menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 480px;
          flex: 0 1 480px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .menu {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: -100%;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    padding: 80px 15px 30px 15px;
    background-color: #3c686c;
  }
  .menu::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: -100%;
    z-index: 2;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
    background-color: #d08c5f;
  }
  .menu-open .menu {
    left: 0;
  }
  .menu-open .menu::before {
    left: 0;
  }
}
@media (max-width: 479.98px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 115px;
  }
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767.98px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
    padding-top: 30px;
    gap: 20px;
  }
}
@media screen and (max-width: 479.98px) {
  .menu__list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.menu__item {
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 22px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .menu__item:hover {
    color: #3C4242;
    font-weight: 700;
  }
}
@media screen and (max-width: 991.98px) {
  .menu__item {
    font-size: 20px;
  }
}
@media screen and (max-width: 767.98px) {
  .menu__item {
    font-size: 36px;
    color: #BEBCBD;
    font-weight: 700;
  }
}
@media screen and (max-width: 767.98px) and (any-hover: hover) {
  .menu__item:hover {
    color: #ffffff;
  }
}
.menu__item--active {
  color: #3C4242;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .menu__item--active {
    color: #ffffff;
  }
}

.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767.98px) {
  .menu-open .icon {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .icon {
    position: fixed;
    top: 70px;
    left: -100%;
  }
  .menu-open .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 50%;
    gap: 30px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 15px 0;
    background-color: #3c686c;
  }
}
.icon__item {
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #F6F6F6;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .icon__item:hover {
    border: 1px solid #3C4242;
  }
}
.icon__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .icon__item:hover img {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 767.98px) {
  .icon-menu {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
            flex: 0 0 30px;
    width: 30px;
    height: 18px;
    position: relative;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #000000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
  }
  .icon-menu span {
    top: 50%;
    margin-top: -1px;
  }
  .menu-open .icon-menu span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .icon-menu::before {
    top: 0;
  }
  .menu-open .icon-menu::before {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 50%;
    margin-top: -1px;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .menu-open .icon-menu::after {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 50%;
    margin-bottom: -1px;
  }
}

.hero {
  color: #ffffff;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 90vh;
  }
}
.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  aspect-ratio: 1449/716;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 0%;
     object-position: 80% 0%;
  z-index: 0;
}
@media screen and (max-width: 991.98px) {
  .hero__image {
    -o-object-position: 60% 0%;
       object-position: 60% 0%;
  }
}
.hero__container {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991.98px) {
  .hero__container {
    min-height: 90vh;
  }
}
@media screen and (max-width: 767.98px) {
  .hero__container {
    height: 80vh;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 439px;
          flex: 0 1 439px;
  margin: 0 90px;
  max-width: 439px;
  row-gap: clamp(20px, 3vw, 40px);
  z-index: 2;
}
@media (max-width: 647.98px) {
  .hero__content {
    margin: 0 auto;
  }
}
.hero__subtitle {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.157px;
  text-transform: capitalize;
}
.hero__title {
  font-size: clamp(54px, 7.5vw, 78px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.315px;
  text-transform: capitalize;
}
.hero__text {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0.315px;
  text-transform: lowercase;
}
.hero__button {
  color: #3C4242;
  background-color: #ffffff;
  font-family: "Causten", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: clamp(10px, 2.5vw, 16px) clamp(40px, 5vw, 72px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (any-hover: hover) {
  .hero__button:hover {
    color: #ffffff;
    background-color: #576161;
    border: 1px solid #ffffff;
  }
}
.hero__arrow {
  width: 24px;
  height: 45px;
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .hero__arrow {
    top: 90%;
  }
}
.hero__arrow--left {
  background: url("../img/icons/chevron-left.svg") 0 0/100% no-repeat;
  left: 40px;
}
@media (any-hover: hover) {
  .hero__arrow--left:hover {
    -webkit-transform: translateY(-50%) translateX(-10px);
        -ms-transform: translateY(-50%) translateX(-10px);
            transform: translateY(-50%) translateX(-10px);
  }
}
.hero__arrow--right {
  background: url("../img/icons/chevron-right.svg") 0 0/100% no-repeat;
  right: 40px;
}
@media (any-hover: hover) {
  .hero__arrow--right:hover {
    -webkit-transform: translateY(-50%) translateX(10px);
        -ms-transform: translateY(-50%) translateX(10px);
            transform: translateY(-50%) translateX(10px);
  }
}
.hero__indicators {
  position: absolute;
  bottom: 49px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.deals {
  color: #ffffff;
}
.deals__container {
  padding: 130px 15px 50px;
}
@media (max-width: 991.98px) {
  .deals__container {
    padding: 80px 15px 50px;
  }
}
@media (max-width: 767.98px) {
  .deals__container {
    padding: 50px 15px 25px;
  }
}
@media (max-width: 479.98px) {
  .deals__container {
    padding: 25px 15px;
  }
}
.deals__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}
@media (max-width: 479.98px) {
  .deals__content {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
  }
}

.card {
  display: grid;
  justify-items: start;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  color: #ffffff;
  padding: 55px 28px;
  z-index: 1;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}
@media (any-hover: hover) {
  .card:hover img {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.card__info {
  position: relative;
  max-width: 264px;
}
.card__info *:last-child {
  margin-bottom: 0;
}
.card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  aspect-ratio: 605/356;
  z-index: -1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.card__label {
  font-family: "Montserrat", serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.67;
  letter-spacing: 0.251px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.card__title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.33;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-bottom: 9px;
}
.card__discount {
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.251px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.card__link {
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
  text-transform: capitalize;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.card__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .card__link:hover::after {
    width: 100%;
    left: 0;
  }
}

.arrival__container {
  padding: 50px 15px;
}
@media (max-width: 767.98px) {
  .arrival__container {
    padding: 25px 15px;
  }
}
.arrival__products {
  display: grid;
  grid-template-columns: 37px 1fr 37px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767.98px) {
  .arrival__products {
    grid-template-columns: 1fr;
  }
}

.products__arrow {
  width: 20px;
  height: 20px;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 767.98px) {
  .products__arrow {
    display: none;
  }
}
.products__arrow--left {
  background: url("../img/icons/arrow-left.svg") 0 0/14px 12px no-repeat;
}
@media (any-hover: hover) {
  .products__arrow--left:hover {
    -webkit-transform: translateX(-5px) scale(1.1);
        -ms-transform: translateX(-5px) scale(1.1);
            transform: translateX(-5px) scale(1.1);
  }
}
.products__arrow--right {
  background: url("../img/icons/arrow-right.svg") 0 0/14px 12px no-repeat;
  justify-self: end;
}
@media (any-hover: hover) {
  .products__arrow--right:hover {
    -webkit-transform: translateX(5px) scale(1.1);
        -ms-transform: translateX(5px) scale(1.1);
            transform: translateX(5px) scale(1.1);
  }
}
.products__block {
  display: grid;
  gap: 50px 37px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 876.98px) {
  .products__block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .products__block {
    gap: 30px 20px;
  }
}
@media (max-width: 479.98px) {
  .products__block {
    grid-template-columns: 1fr;
  }
}
.products__info {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 32px;
}
.products__info *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .products__info {
    row-gap: 10px;
  }
}
.products__img {
  height: 263px;
  max-width: 263px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.products__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 263/263;
  border-radius: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .products__img:hover {
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
  }
  .products__img:hover img {
    -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
            transform: scale(1.03);
  }
}
.products__description {
  max-width: 263px;
}
.products__title {
  font-family: "Causten", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  position: relative;
}
.products__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #8A33FD;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .products__title:hover::after {
    width: 100%;
    left: 0;
  }
}

.save__container {
  padding: 50px 15px;
}
@media (max-width: 767.98px) {
  .save__container {
    padding: 25px 15px;
  }
}
.save__offers {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 20px;
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  .save__offers {
    margin-bottom: 50px;
  }
}
@media (max-width: 479.98px) {
  .save__offers {
    margin-bottom: 25px;
  }
}
.save__zone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767.98px) {
  .save__zone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.save__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 626px;
          flex: 0 1 626px;
  overflow: hidden;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media (max-width: 767.98px) {
  .save__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    border-radius: 12px;
  }
}
.save__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  aspect-ratio: 626/640;
}

.offers__block {
  position: relative;
  display: grid;
  align-self: center;
  border-radius: 12px;
  border-radius: 12px;
  padding: 64px 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .offers__block:hover {
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
  }
  .offers__block:hover .block__arrow {
    -webkit-transform: translateY(30px) rotate(360deg);
        -ms-transform: translateY(30px) rotate(360deg);
            transform: translateY(30px) rotate(360deg);
  }
  .offers__block:hover img {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }
}

.block--small {
  grid-column: span 4;
  padding: 64px 20px;
}
.block--button {
  padding: 31px 20px;
}
.block--big {
  grid-column: span 6;
  padding-right: 15%;
}
@media (max-width: 579.98px) {
  .block--big {
    padding-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .block {
    grid-column: span 6;
  }
  .block--last {
    grid-column: span 12;
  }
}
@media (max-width: 579.98px) {
  .block {
    grid-column: span 12;
  }
}
.block__img {
  border-radius: 12px;
  z-index: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.block__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block__info {
  position: relative;
  display: grid;
  align-self: center;
  justify-self: end;
}
.block__info--white {
  color: #ffffff;
}
.block__link .block__info--white {
  border: 2px solid #ffffff;
}
.block__info--start {
  justify-self: start;
}
@media (max-width: 991.98px) {
  .block__info--start {
    color: #3C4242;
  }
}
.block__info--right {
  justify-items: end;
}
.block__info *:last-child {
  margin-bottom: 0;
}
.block__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.37;
  letter-spacing: 0.56px;
  margin-bottom: 13px;
}
.block__description {
  font-family: "Causten", serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.block__discount {
  font-family: "Causten", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.block__actions {
  display: grid;
  gap: 10px;
  width: 110px;
}
.block__actions--big {
  width: 132px;
}
@media (max-width: 579.98px) {
  .block__actions--big {
    width: 110px;
  }
}
@media (any-hover: hover) {
  .block__actions:hover .block__arrow {
    -webkit-animation: arrow 1s infinite;
            animation: arrow 1s infinite;
  }
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
    50% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    100% {
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
    50% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
    }
    100% {
      -webkit-transform: translateY(30px);
              transform: translateY(30px);
    }
  }
}
.block__arrow {
  justify-self: center;
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-name: arrow;
          animation-name: arrow;
}
.block__link {
  text-align: center;
  font-family: "Causten", serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid #3C4242;
  padding: 10px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.block__link--white {
  border-color: #ffffff;
}
@media (any-hover: hover) {
  .block__link:hover {
    background-color: #576161;
    color: #ffffff;
    border-color: #ffffff;
  }
}
.block__button {
  font-family: "Causten", serif;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 25px;
  background-color: #3C4242;
  border-radius: 4px;
  margin-bottom: 28px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .block__button:hover {
    background-color: #576161;
    border: 1px solid #ffffff;
  }
}

.fashion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: #ffffff;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.fashion__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: url("../img/save/background.webp") center/cover no-repeat;
  max-width: 614px;
  width: 100%;
  padding: 10%;
}
@media (max-width: 767.98px) {
  .fashion__info {
    max-width: none;
    border-radius: 12px;
    margin-bottom: 10px;
  }
}
.fashion__title {
  font-size: clamp(24px, 5.5vw, 34px);
  font-weight: 800;
  line-height: 1.47;
  letter-spacing: 0.208px;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .fashion__title {
    margin-bottom: 20px;
  }
}
.fashion__description {
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  .fashion__description {
    margin-bottom: 30px;
  }
}
.fashion__description p {
  font-family: "Causten", serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}
@media screen and (max-width: 767.98px) {
  .fashion__description p {
    font-size: 18px;
  }
}
.fashion__button {
  color: #3C4242;
  font-family: "Causten", serif;
  font-size: 18px;
  font-weight: 600;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 12px 44px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 479.98px) {
  .fashion__button {
    font-size: 16px;
    padding: 10px 36px;
  }
}
@media (any-hover: hover) {
  .fashion__button:hover {
    color: #ffffff;
    background-color: #576161;
    border: 1px solid #ffffff;
  }
}
.fashion__image {
  overflow: hidden;
}
.fashion__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  aspect-ratio: 626/640;
  z-index: -1;
}

.categories__container {
  padding: 50px 15px;
}
@media (max-width: 767.98px) {
  .categories__container {
    padding: 25px 15px;
  }
}
.categories__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  justify-items: center;
  gap: 50px;
}

.item__img {
  max-width: 270px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 270/394;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .item__img img:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (any-hover: hover) {
  .item__img:hover {
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
}
.item__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 270px;
  width: 100%;
}

.description__title {
  position: relative;
  color: #2A2F2F;
  font-family: "Causten", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: -0.715px;
  margin-bottom: 5px;
}
.description__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #8A33FD;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .description__title:hover::after {
    width: 100%;
    left: 0;
  }
}
.description__text {
  color: #7F7F7F;
  font-family: "Causten", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.536px;
}
.description__link {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .description__link:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.brands__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-color: #3C4242;
  color: #ffffff;
  padding-top: 44px;
  padding-bottom: 60px;
  padding: 44px 10px 60px;
}
.brands__title {
  font-size: 50px;
  font-size: clamp(35px, 5.5vw, 50px);
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
}
.brands__subtitle {
  font-family: "Causten", serif;
  font-size: 22px;
  margin-bottom: 67px;
  text-align: center;
}
.brands__subtitle span {
  color: #FBD103;
  font-weight: 700;
}
.brands__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}
.brands__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 177px;
  height: 85px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 3px solid transparent;
  outline: 3px solid transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .brands__link:hover {
    border: 3px solid #3C4242;
    outline: 3px solid #ffffff;
  }
}
.brands__link img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.limelight__container {
  padding: 50px 15px;
}
@media (max-width: 767.98px) {
  .limelight__container {
    padding: 25px 15px;
  }
}
.limelight__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  justify-items: center;
  gap: 36px;
}
.limelight__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.limelight__images {
  position: relative;
  border-radius: 12px;
}
.limelight__link {
  max-width: 282px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.limelight__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 282/370;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .limelight__link img:hover {
    -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
            transform: scale(1.01);
  }
}
@media (any-hover: hover) {
  .limelight__link:hover {
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
            box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
}
.limelight__favorite {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 27px;
  right: 20px;
  background: url("../img/icons/favorite.svg") center/contain no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .limelight__favorite:hover {
    background: url("../img/icons/favorite-active.svg") center/contain no-repeat;
  }
}
.limelight__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3C4242;
  font-family: "Causten", serif;
}
.limelight__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.limelight__product {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .limelight__product:hover {
    color: #8A33FD;
  }
}
.limelight__brand {
  color: #807D7E;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .limelight__brand:hover {
    text-decoration-color: #8A33FD;
  }
}
.limelight__price {
  border-radius: 8px;
  background-color: #F6F6F6;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
}

.feedback__container {
  padding: 50px 15px 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991.98px) {
  .feedback__container {
    padding: 50px 15px 80px;
  }
}
@media (max-width: 767.98px) {
  .feedback__container {
    padding: 25px 15px 50px;
  }
}
.feedback__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
  justify-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 479.98px) {
  .feedback__list {
    grid-template-columns: 1fr;
  }
}
.feedback__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
  border: 1.8px solid #BEBCBD;
  padding: 23px;
  gap: 20px;
}
.feedback__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feedback__person {
  width: 58px;
  height: 58px;
}
.feedback__person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}
.feedback__name {
  color: #3C4242;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.44px;
}
.feedback__text p {
  color: #807D7E;
  font-family: "Causten", serif;
  font-size: 14px;
  letter-spacing: 0.28px;
}
.feedback__switch {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  gap: 8px;
}
.feedback__switch-item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 8px;
  height: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  border-radius: 50%;
  background-color: #BEBCBD;
}
.feedback__switch-item:first-child {
  background-color: #3C4242;
}

.footer {
  color: #ffffff;
  background-color: #3C4242;
}
.footer__content {
  padding: 50px 90px;
}
@media (max-width: 767.98px) {
  .footer__content {
    padding: 50px 15px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .footer__menu {
    margin-bottom: 20px;
  }
}
@media (max-width: 547.98px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__menu * {
    text-align: center;
  }
}
.footer__title {
  color: #F6F6F6;
  font-family: "Causten", serif;
  font-size: 28.5px;
  font-weight: 700;
  line-height: 2.17;
}
.footer__address {
  color: #F6F6F6;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.17;
}
.footer__address span {
  cursor: pointer;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .footer__address span:hover {
    color: #8A33FD;
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 619.98px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 619.98px) {
  .footer__download h3 {
    text-align: center;
  }
}
.footer__apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 367.98px) {
  .footer__apps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__link {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 5px;
  -webkit-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
}
@media (any-hover: hover) {
  .footer__link:hover {
    border-color: #8A33FD;
  }
}
.footer__popular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(190, 188, 189, 0.4);
  border-bottom: 1px solid rgba(190, 188, 189, 0.4);
  padding: 20px 80px;
}
@media (max-width: 767.98px) {
  .footer__popular {
    padding: 20px 15px;
  }
}
.footer__arrow {
  width: 20px;
  height: 20px;
  background: url("../img/icons/arrow-down.svg") center/20px 10px no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .footer__arrow:hover {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.footer__copyright {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  padding-top: 37px;
  padding-bottom: 60px;
}
.footer__email {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .footer__email:hover {
    color: #8A33FD;
  }
}

.column {
  display: grid;
  gap: 5px;
}
.column__item a {
  position: relative;
  color: #F6F6F6;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.17;
}
@media (any-hover: hover) {
  .column__item a:hover::after {
    width: 100%;
    left: 0;
  }
}
.column__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #8A33FD;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.social__item {
  width: 37px;
  height: 37px;
  border-radius: 11px;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (any-hover: hover) {
  .social__item img:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (any-hover: hover) {
  .social__item:hover {
    border-color: #8A33FD;
    outline-color: #ffffff;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 767.98px) {
  .menu-open body {
    overflow: hidden;
  }
}

.wrapper {
  min-height: 100%;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #3C4242;
  background-color: #ffffff;
  font-family: "Core Sans C", sans-serif;
}
.wrapper main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

[class*=__container] {
  max-width: 1270px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.page {
  position: relative;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: 0.68px;
  margin-bottom: 70px;
  gap: clamp(10px, 1.5vw, 20px);
}
.title::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  width: 6px;
  height: clamp(24px, 3.5vw, 30px);
  border-radius: 10px;
  background-color: #8A33FD;
  margin-top: clamp(0px, 0.3vw, 3px);
}
@media (max-width: 767.98px) {
  .title {
    margin-bottom: 30px;
  }
}

.button-up {
  position: fixed;
  width: 50px;
  height: 50px;
  background-color: rgba(139, 51, 253, 0.5);
  right: 15px;
  bottom: -100px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
@media (any-hover: hover) {
  .button-up:hover {
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
    background-color: #8A33FD;
  }
}
@media (max-width: 575.98px) {
  .button-up {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media (max-width: 479.98px) {
  .button-up {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.button-up::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  top: 20px;
  right: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}