@charset "UTF-8";
/* --------- ОБНУЛЕНИЕ СТИЛЕЙ ----------*/
@import url(https://fonts.googleapis.com/css?family=Poppins:regular,500,600&display=swap);
*, *:before, *:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

@font-face {
  font-family: CalSans;
  font-display: swap;
  src: url("../fonts/CalSans-SemiBold.woff2") format("woff2"), url("../fonts/CalSans-SemiBold.woff") format("woff");
  font-weight: 4 0;
  font-style: normal;
}
/* -------- СТИЛИ --------- */
html, body {
  height: 100%;
  min-width: 320px;
}

body {
  font-family: Poppins;
  line-height: 1;
  color: #666666;
}

/* ---------------WRAPPER-------------------- */
.wrapper {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* -----------------TITLE------------------ */
.title {
  font-family: CalSans;
  color: #121212;
  text-align: center;
  font-size: 44px;
  line-height: 1.2;
}
.title span {
  color: #FF6428;
}

@media (max-width: 767.98px) {
  .title {
    font-size: 38px;
  }
}
/* ----------------PAGE------------------- */
.page {
  flex: 1 1 auto;
}

/* ---------------CONTAINER-------------------- */
[class*=__container] {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0px 15px;
}

/* ------------- HEADER ----------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.header__container {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  gap: 131px;
  align-items: center;
  min-height: 152px;
}

.menu {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

.menu__list {
  display: flex;
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.menu__link {
  color: rgba(18, 18, 18, 0.4);
  font-weight: 500;
  line-height: 1.5;
}

.menu__link:hover {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1092px) {
  .header__container {
    gap: 50px;
    min-height: 100px;
  }
  .menu__list {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    gap: 50px;
    min-height: 65px;
  }
}
@media (max-width: 479.98px) {
  .header__container {
    gap: 20px;
  }
  .menu__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .menu {
    padding: 0px;
  }
  .header__logo {
    width: 28px;
    overflow: hidden;
  }
}
/* ----------------MAIN------------------- */
.main {
  padding-bottom: 80px;
}

@media (max-width: 991.98px) {
  .main {
    padding-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .main {
    padding-bottom: 30px;
  }
}
.main__container {
  display: flex;
}

.main__content {
  flex: 0 1 50%;
  align-self: flex-end;
  padding-bottom: 60px;
  padding-top: 120px;
}

.main__title {
  font-family: CalSans;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.2;
  color: #121212;
}
.main__title span {
  color: #FF6428;
}

.main__title:not(:last-child) {
  margin-bottom: 16px;
}

.main__text {
  font-weight: 500;
  line-height: 1.5;
  max-width: 390px;
}

.main__text:not(:last-child) {
  margin-bottom: 33px;
}

.actions-main {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.actions-main__link {
  text-align: center;
  padding: 18px 48px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  background: #FF6428;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.actions-main__link:hover {
  background: #000000;
  color: #FF6428;
}

.actions-main__link:not(:last-child) {
  margin-right: 40px;
}

.actions-main__icon:not(:last-child) {
  margin-right: 27px;
}

.main__decor {
  flex: 0 1 50%;
}

.main__image {
  display: inline-block;
  margin-right: -135px;
  position: relative;
  padding-left: 10px;
}
.main__image img {
  max-width: 672px;
  border-radius: 0 0 150px 360px;
}

.main__image::after {
  content: "";
  background: url("../img/main/decor.png") 0 0 no-repeat;
  width: 80px;
  height: 80px;
  position: absolute;
  right: 36.3%;
  bottom: 0;
  transform: translate(0, 50%);
}

@media (max-width: 1092px) {
  .main__content {
    flex: 0 0 60%;
    padding-bottom: 0px;
  }
  .main__title {
    font-size: 44px;
  }
  .main__decor {
    flex: 0 0 40%;
  }
  .main__image img {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .main__content {
    flex: 1 1 100%;
    padding-right: 0;
    padding-top: 80px;
  }
  .main__decor {
    display: none;
  }
}
@media (max-width: 479.98px) {
  .actions-main {
    flex-wrap: wrap;
    justify-content: center;
  }
  .actions-main__link {
    flex: 1 1 100%;
  }
  .actions-main__link:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
/* ------------------STORE-------------------- */
.store {
  padding-top: 80px;
  padding-bottom: 90px;
}

.store__title {
  margin-bottom: 86px;
}

.body-store__header {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.body-store__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #121212;
  text-transform: uppercase;
}

.body-store__all {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #868686;
}

.body-store__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.item {
  display: grid;
  transition: all 0.2s ease-in;
}
.item:hover {
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.25);
}

.item__image {
  text-align: center;
}
.item__image img {
  max-width: 100%;
}

.item__image:not(:last-child) {
  margin-bottom: 40px;
}

.item__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #121212;
  justify-self: start;
}
.item__title:hover {
  text-decoration: underline;
}

.item__title:not(:last-child) {
  margin-bottom: 7px;
}

.item__price {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .store {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .store__title {
    margin-bottom: 50px;
  }
  .body-store__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .store {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .store__title {
    margin-bottom: 30px;
  }
  .item__image:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 560px) {
  .body-store__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* --------------CATEGORIES-------------- */
.categories {
  padding-top: 90px;
  padding-bottom: 110px;
}

.categories__title {
  margin-bottom: 80px;
}

.categories__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 35px;
}

.item-category {
  position: relative;
  transition: all 0.3s ease 0s;
}
.item-category:hover {
  transform: scale(1.1);
}

.item-category__title {
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  padding: 30px 20px;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

.item-category__image {
  position: relative;
  padding-bottom: 128%;
  overflow: hidden;
  border-radius: 25px;
}
.item-category__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.item-category__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

@media (max-width: 1230px) {
  .categories__items {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 991.98px) {
  .categories {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .categories__items {
    -moz-column-gap: 30px;
         column-gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .categories__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 479.98px) {
  .categories {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .categories__items {
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .categories__title {
    margin-bottom: 20px;
  }
}
/*  ------------------BRANDS-------------------- */
.brands {
  padding-top: 110px;
  padding-bottom: 180px;
}

.brands__title {
  margin-bottom: 75px;
}

.brands__items {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 80px;
}

@media (max-width: 991.98px) {
  .brands {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .brands__title {
    margin-bottom: 40px;
  }
  .brands__items {
    grid-template-columns: repeat(3, auto);
    row-gap: 50px;
  }
}
@media (max-width: 767.98px) {
  .brands {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .brands__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .brands__items {
    justify-content: center;
    grid-template-columns: repeat(2, auto);
    row-gap: 20px;
  }
}
/* --------------WHY------------------- */
.why {
  background-color: #121212;
  padding-top: 90px;
  padding-bottom: 90px;
}

.why__title {
  margin-bottom: 80px;
  color: #FFFFFF;
}

.why__items {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: 30px;
}

.item-why {
  display: grid;
  justify-items: center;
  padding: 40px;
  text-align: center;
}

.item-why__icon {
  background: #262626;
  border-radius: 20px;
  display: flex;
  width: 72px;
  height: 72px;
  justify-content: center;
  align-items: center;
}
.item-why__icon:not(:last-child) {
  margin-bottom: 40px;
}

.item-why__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
.item-why__title:not(:last-child) {
  margin-bottom: 12px;
}

.item-why__text {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .why {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .why__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .item-why {
    padding: 20px;
  }
  .why__items {
    grid-template-columns: repeat(1, auto);
    justify-content: stretch;
  }
}
/* ------------------REVIEWS-------------------- */
.rewiews {
  padding-top: 240px;
  padding-bottom: 240px;
}

.reviews__title {
  margin-bottom: 100px;
}

.slide-swiper-reviews {
  display: flex;
}

.slide-swiper-reviews__picture {
  flex: 0 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slide-swiper-reviews__image {
  width: 320px;
  height: 320px;
  position: relative;
}
.slide-swiper-reviews__image img {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: center;
     object-fit: center;
}
.slide-swiper-reviews__image::before {
  content: "";
  position: absolute;
  width: 284.72px;
  height: 257.89px;
  top: 38px;
  right: 90px;
  background-color: #FF6428;
  border-radius: 40px 0px 400px 400px;
  transform: rotate(-7.72deg);
}

.slide-swiper-reviews__body {
  flex: 0 1 50%;
}

.slide-swiper-reviews__text {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
}
.slide-swiper-reviews__text:not(:last-child) {
  margin-bottom: 56px;
}

.slide-swiper-reviews__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.6;
  color: #000000;
}
.slide-swiper-reviews__name:not(:last-child) {
  margin-bottom: 8px;
}

.slide-swiper-reviews__position {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #868686;
}

.swiper-reviews__pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.swiper-reviews__pagination .swiper-pagination-bullet {
  opacity: 1;
  flex: 0 0 10px;
  height: 16px;
  background: #C4C4C4;
  border-radius: 20px;
  transition: all 0.3s ease 0s;
}

.swiper-reviews__pagination .swiper-pagination-bullet-active {
  flex: 0 0 24px;
  height: 12px;
  background: #FF6428;
}

@media (max-width: 1230px) {
  .reviews__swiper.swiper {
    margin-left: -15px;
  }
}
@media (max-width: 991.98px) {
  .rewiews {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .reviews__title {
    margin-bottom: 50px;
  }
  .slide-swiper-reviews__body {
    padding-left: 15px;
  }
  .slide-swiper-reviews {
    flex-direction: column;
  }
  .slide-swiper-reviews__picture {
    margin-bottom: 25px;
  }
  .swiper-reviews__pagination.swiper-pagination {
    position: relative;
    bottom: 0;
    justify-content: center;
    transform: translate(0px, 0px);
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .rewiews {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .reviews__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 479.98px) {
  .slide-swiper-reviews__image {
    width: 270px;
    height: 270px;
  }
  .slide-swiper-reviews__image::before {
    width: 220px;
    height: 210px;
    top: 38px;
    right: 80px;
  }
  .slide-swiper-reviews__text {
    font-size: 18px;
  }
  .slide-swiper-reviews__text:not(:last-child) {
    margin-bottom: 25px;
  }
}
/* ------------FAVORITE----------------*/
.favorite {
  padding-bottom: 120px;
}

.favorite__container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.favorite__body {
  padding-right: 20px;
  flex: 0 1 50%;
}

.favorite__title {
  text-align: left;
  font-size: 48px;
  line-height: 140%;
}
.favorite__title:not(:last-child) {
  margin-bottom: 60px;
}

.apps-favorite {
  display: flex;
  gap: 25px;
}

.apps-favorite__item img {
  max-width: 100%;
}

.favorite__images {
  text-align: center;
  flex: 0 1 50%;
}
.favorite__images img {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .favorite {
    padding-bottom: 50px;
  }
  .favorite__container {
    flex-direction: column;
  }
  .favorite__title {
    text-align: center;
    font-size: 38px;
  }
  .favorite__title:not(:last-child) {
    margin-bottom: 25px;
  }
  .apps-favorite {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .favorite {
    padding-bottom: 30px;
  }
}
/*--------------FOOTER--------------*/
.footer {
  background: #EEEEEE;
  padding-top: 80px;
  padding-bottom: 40px;
}

.body-footer {
  display: flex;
  gap: 30px;
}

.body-footer__column--full {
  flex: 1 1 auto;
}

.body-footer__logo {
  display: inline-block;
}
.body-footer__logo:not(:last-child) {
  margin-bottom: 28px;
}

.contacts-footer__item:not(:last-child) {
  margin-bottom: 20px;
}

.contacts-footer__link {
  color: #666;
  display: inline-block;
  line-height: 24px;
  padding-left: 44px;
}
.contacts-footer__link:hover {
  text-decoration: underline;
}

.contacts-footer__link--mail {
  background: url("../img/footer/01.svg") left no-repeat;
}

.contacts-footer__link--location {
  background: url("../img/footer/02.svg") left no-repeat;
}

.menu-footer {
  display: flex;
  gap: 126px;
  justify-content: center;
}

.menu-footer__title {
  text-transform: uppercase;
  color: #121212;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}

.menu-footer__item:not(:last-child) {
  margin-bottom: 16px;
}

.menu-footer__link {
  color: #666;
}
.menu-footer__link:hover {
  text-decoration: underline;
}

.social-footer__title {
  text-transform: uppercase;
  color: #121212;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}

.social-footer__items {
  display: flex;
  gap: 32px;
}

.social-footer__item {
  transition: all 0.3s ease 0s;
  border-radius: 20px;
}
.social-footer__item:hover {
  transform: scale(1.3);
}

.footer__copy {
  padding-top: 80px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .body-footer {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .body-footer__column:first-child {
    flex: 1 1 100%;
    text-align: center;
  }
  .menu-footer {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
  }
  .body-footer__column--full {
    flex: 0 1 auto;
  }
  .social-footer {
    text-align: center;
  }
}