:root {
  --primary: #CAB0F4;
  --light: #F4F4F4;
  --dark: #49404B;
  --bg: #F1F1F1;
  --white: #ffffff;
  --status-bg: #BDBDBD;
  --green: #27AE60;
  --gradient-main: linear-gradient(318.34deg, #A068D9 31.43%, #BA98F1 101.27%);
  --link-hover: #A068D9;
  --tit-big: 3.2em;
  --tit: 1.8em;
  --tit-sub: 1.2em;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/*
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
*/
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%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1;
  color: var(--dark);
}

body.no-scroll {
  overflow: hidden;
}

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;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

button.disable {
  background: #BDBDBD;
  color: var(--dark);
  box-shadow: none;
  cursor: default;
}

button.disable:after {
  display: none;
}

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

textarea {
  resize: none;
  font-family: inherit;
  font-size: inherit;
}

input {
  font-family: inherit;
}

select {
  position: relative;
  margin: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 5px), calc(100% - 15px) calc(1em + 5px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select:focus {
  background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%);
  background-position: calc(100% - 15px) calc(1em + 5px), calc(100% - 20px) calc(1em + 5px);
  background-size: 5px 5px, 5px 5px;
}

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

.btn {
  position: relative;
  background: var(--gradient-main);
  color: var(--light);
  border-radius: 50px;
  border: none;
  box-shadow: 0px 7px 30px rgba(162, 106, 218, 0.4);
  transition: background .2s ease;
  cursor: pointer;
  z-index: 0;
}

.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(318.34deg, #8F54CA 31.43%, #B988EC 101.27%);
  opacity: 0;
  border-radius: 50px;
  transition: opacity .2s ease;
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
}

.field {
  width: 100%;
  background-color: var(--white);
  padding: 0 20px;
  font-size: inherit;
  border: 1px solid var(--dark);
  border-radius: 50px;
  transition: border-color .2s ease;
}

.field:hover, .field:focus {
  border-color: #8f54ca;
}

.carousel__btn-prev, .carousel__btn-next {
  position: absolute;
  top: 60%;
  width: 50px;
  height: 50px;
  background-color: rgba(202, 176, 244, 0.5);
  border-radius: 50px;
  transform: translateY(-50%);
  transition: background-color .15s ease;
  cursor: pointer;
  z-index: 3;
}

.carousel__btn-prev:before, .carousel__btn-next:before {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: color .15s ease;
}

.carousel__btn-prev:hover, .carousel__btn-next:hover {
  background-color: #cab0f4;
}

.carousel__btn-prev:hover:before, .carousel__btn-next:hover:before {
  color: var(--white);
}

.carousel__btn-prev {
  left: 0;
}

.carousel__btn-prev:before {
  transform: translate(-80%, -50%) rotate(180deg);
}

.carousel__btn-next {
  right: 0;
}

.carousel-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.carousel-pagination.swiper-pagination-bullets.swiper-pagination-horizontal span {
  margin: 0 8px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  opacity: .4;
}

.carousel-pagination.swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet-active {
  opacity: 1;
}

#carousel-reviews-prev {
  top: 55%;
  left: 20%;
}

#carousel-reviews-next {
  top: 55%;
  right: 20%;
}

.cart-float {
  position: fixed;
  right: 0;
  bottom: 150px;
  background: var(--gradient-main);
  border-radius: 30px 0 0 30px;
  z-index: 15;
}

.cart-float:after {
  border-radius: 30px 0 0 30px;
}

.cart-float__link {
  display: block;
  padding: 40px 30px;
  color: var(--white);
  text-align: center;
}

.cart-float__link span.icon-cart {
  display: block;
  margin-bottom: 7px;
  font-size: var(--tit-big);
}

.cart-float__price {
  display: block;
  font-weight: 700;
}

.header {
  position: relative;
  background-color: var(--light);
  width: 100%;
  padding: 45px 0;
  transition: all .2s ease;
  z-index: 15;
}

.header.header-page {
  background-color: var(--white);
}

.header > .container {
  position: relative;
}

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

.header__logo {
  display: block;
  width: 100%;
  max-width: 155px;
}

.header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header__location span {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  transition: color .2s ease;
}

.header__location span:before {
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
}

.header__location span:hover {
  color: var(--link-hover);
}

.header__nav-link {
  position: relative;
  color: var(--dark);
  margin-right: 25px;
  transition: color .2s ease;
}

.header__nav-link:last-child {
  margin-right: 0;
}

.header__nav-link.icon-drop {
  padding-right: 20px;
}

.header__nav-link:after {
  position: absolute;
  top: 60%;
  right: 0;
  font-size: 10px;
  transform: translateY(-50%);
  transition: transform .15s ease;
}

.header__nav-link:hover {
  color: var(--link-hover);
}

.header__nav-link.active:after {
  transform: rotate(180deg) translateY(70%);
}

.header__cb {
  position: relative;
  display: flex;
  flex-direction: column;
}

.header__phone {
  display: block;
  color: var(--dark);
  transition: color .2s ease;
}

.header__phone:hover {
  color: var(--link-hover);
}

.header__cb-btn {
  width: 100%;
  margin-top: 10px;
}

.header__mob {
  display: flex;
  align-items: center;
}

.header__cart {
  display: none;
  position: relative;
  margin-right: 20px;
  font-size: 1.4em;
  color: var(--dark);
}

.header__burger {
  position: relative;
  display: none;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header__burger span {
  top: calc(50% - 1px);
  left: 0px;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  border-radius: 50px;
  transition: all 0.2s ease;
}

.header__burger span:first-child {
  top: 0px;
}

.header__burger span:nth-child(2) {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.header__burger span:last-child {
  top: auto;
  bottom: 0px;
}

.header__burger.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.header__burger.active span:nth-child(2) {
  transform: scale(0);
}

.header__burger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}

.header__catalog {
  position: absolute;
  display: none;
  top: 69px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 35px 50px;
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 15;
}

.catalog {
  display: grid;
  grid-template: repeat(1, 1fr)/repeat(4, 1fr);
  grid-gap: 30px;
}

.catalog__item {
  display: block;
  padding: 10px;
  border: 1px solid var(--white);
  border-radius: 4px;
  transition: border-color .2s ease;
}

.catalog__item:hover {
  border-color: rgba(202, 176, 244, 0.7);
}

.catalog__item-inner {
  display: flex;
  align-items: center;
}

.catalog__item-inner span {
  max-width: 100px;
  color: var(--dark);
  transition: color .2s ease;
}

.catalog__item-inner:hover span {
  color: var(--link-hover);
}

.catalog__item-img {
  flex: 0 0 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 98px;
  margin-right: 5px;
  border-radius: 4px;
}

.catalog__item-img img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

.mob__nav {
  display: none;
}

.mob__cb-btn {
  display: none;
}

.intro {
  background-color: var(--light);
  padding-top: 10px;
  padding-bottom: 50px;
}

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

.intro__offer {
  width: 100%;
  max-width: 500px;
}

.intro__offer-title {
  margin-bottom: 15px;
  font-size: 2.2em;
  font-weight: 700;
}

.intro__offer-btn {
  display: block;
  width: 260px;
  height: 54px;
  margin-top: 45px;
  text-align: center;
  font-size: 1.2em;
}

.intro__offer-img {
  width: 100%;
  max-width: 723px;
}

.intro__offer-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.why {
  padding: 50px 0;
}

.why__inner-title {
  font-size: var(--tit);
}

.why__inner-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 45px;
}

.why__inner-list-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.why__inner-list-item:last-child {
  margin-right: 0;
}

.why__inner-list-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-right: 20px;
}

.why__inner-list-item span {
  font-size: var(--tit-sub);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2em;
}

.constructor {
  margin-bottom: 65px;
}

.constructor__title {
  background: var(--gradient-main);
  padding: 15px 0;
  color: var(--light);
  font-size: var(--tit-big);
  font-weight: 700;
  text-align: center;
}

.constructor__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 35px;
}

.constructor__step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.constructor__step span {
  display: block;
  margin-left: 25px;
  font-size: var(--tit-big);
  font-weight: 700;
}

.constructor__carousel {
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 35px 15px;
}

.constructor__carousel-item {
  background-color: var(--light);
  padding-bottom: 25px;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.constructor__carousel-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 345px;
  margin-bottom: 45px;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
  background-size: cover !important;
}


.constructor__carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none ;
}

.constructor__carousel-img:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  width: 140px;
  height: 140px;
  color: var(--white);
  font-size: 50px;
  border-radius: 100%;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 3;
}

.constructor__carousel-img:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 2;
}

.constructor__carousel-img:hover:before {
  opacity: 1;
}

.constructor__carousel-img:hover:after {
  opacity: .4;
}

.constructor__carousel-title {
  margin: 0 25px;
  font-size: var(--tit-sub);
  font-weight: 700;
  display: inline-block;
}

.constructor__carousel-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 25px 0 25px;
}

.constructor__carousel-add span {
  display: inline-block;
  margin-right: 15px;
  font-size: var(--tit);
  font-weight: 700;
}

.constructor__carousel-btn {
  width: 100%;
  max-width: 190px;
  height: 55px;
  font-size: var(--tit-sub);
}

.card {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 20;
}

.card.show {
  display: flex;
}

.card__body {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1024px;
  padding: 45px 45px 35px 45px;
  background-color: var(--white);
  border-radius: 20px;
  overflow-y: auto;
}

.card__cancel {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  font-size: 1.3em;
  border: none;
  opacity: .4;
  transition: opacity .2s ease;
}

.card__cancel:hover {
  opacity: 1;
}

.card__gallery {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-right: 45px;
}

.card__gallery > .carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.card__gallery > .carousel__nav div {
  position: relative;
  width: auto;
  margin: 0 15px;
}

.card__gallery > .carousel__nav div:not(:nth-child(2)) {
  flex: 0 0 50px;
  top: auto;
  transform: none;
  margin: 0;
}

.card__carousel {
  border-radius: 20px;
}

.card__carousel-item {
  position: relative;
}

.card__carousel-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.card__carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__carousel-img:before {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  width: 140px;
  height: 140px;
  color: var(--white);
  font-size: 50px;
  border-radius: 100%;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 3;
}

.card__carousel-img:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 2;
}


.card__title {
  margin-bottom: 60px;
  font-size: 2.2em;
  font-weight: 700;
}

.card__desc-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 45px;
}

.card__desc-row span {
  flex: 0 0 125px;
  display: inline-block;
  margin-right: 15px;
  font-size: var(--tit-sub);
  font-weight: 700;
}

.card__desc-row p {
  line-height: 1.4em;
}

.card__time {
  display: flex;
  align-items: center;
}

.card__time p {
  font-weight: 700;
}

.card__time-icon {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.card__time-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.constructor-checkout__inner {
  background-color: var(--light);
  margin-top: 35px;
  padding: 65px 0;
}

.constructor-checkout__form {
  display: flex;
  align-items: center;
}

.constructor-checkout__form-col {
  width: 100%;
  max-width: 50%;
  padding: 0 35px;
}

.constructor-checkout__form-col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.constructor-checkout__comment p {
  font-size: 1.1em;
  font-weight: 700;
}

.constructor-checkout__comment textarea {
  width: 100%;
  height: 150px;
  background-color: var(--white);
  margin-top: 15px;
  padding: 15px 20px;
  border-color: var(--dark);
  border-radius: 20px;
}

.constructor-checkout__form-col-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  font-size: 1.4em;
  line-height: 1.3em;
}

.constructor-checkout__form-col-row span {
  display: inline-block;
  margin-right: 30px;
  font-weight: 700;
}

.constructor-checkout__form-btn {
  width: 100%;
  height: 70px;
  font-size: var(--tit-sub);
  font-weight: 700;
}

.file-upload {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 35px;
}

.file-upload-u label, .file-add-a label {
  width: 100%;
  text-align: center;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease;
}

.file-upload-u label:before, .file-add-a label:before {
  display: block;
  margin-bottom: 15px;
  font-size: 170px;
  font-weight: normal;
}

.file-upload-u label input, .file-add-a label input {
  display: none;
}

.file-upload-u label span, .file-add-a label span {
  display: block;
  width: 100%;
  text-align: center;
}

.file-upload-u label:hover, .file-add-a label:hover {
  color: #8f54ca;
}

.file-add-a {
  margin-left: 35px;
  opacity: .6;
}

.cb {
  background-color: var(--light);
  width: 100%;
  max-width: 1270px;
  margin: 115px auto;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid var(--dark);
}

.cb__inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.cb__title {
  display: block;
  margin-bottom: 20px;
  font-size: var(--tit-big);
  font-weight: 700;
}

.cb__desc {
  margin-bottom: 40px;
  font-size: var(--tit-sub);
}

.cb__form {
  margin-bottom: 40px;
}

.cb__field {
  height: 70px;
  margin-bottom: 40px;
}

.cb__form-btn {
  width: 100%;
  max-width: 480px;
  height: 70px;
  font-weight: 700;
}

.reviews {
  position: relative;
  margin: 80px 0;
  padding-bottom: 30px;
}

.reviews__title {
  display: block;
  text-align: center;
  font-size: var(--tit-big);
  font-weight: 700;
}

.reviews__carousel {
  margin: 40px 0;
}

.reviews__carousel-inner {
  align-items: center;
}

.reviews__carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1360px;
  opacity: .5;
  transition: all .2s ease;
}

.reviews__carousel-item img {
  width: 90%;
  height: 50%;
  object-fit: contain;
}

.reviews__carousel-item.swiper-slide-active {
  opacity: 1;
}

.reviews__carousel-item.swiper-slide-active img {
  width: 100%;
  
}

.action {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.action__link {
  display: block;
}

.action__link:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity .2s ease;
}

.action__link:hover:after {
  opacity: 1;
}

.action__link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about {
  margin: 90px 0;
}

.about__title {
  margin-bottom: 45px;
  text-align: center;
  font-size: var(--tit-big);
  font-weight: 700;
}

.about__text p {
  margin-bottom: 25px;
  line-height: 1.4em;
}

.contacts {
  position: relative;
  height: 600px;
}

.contacts__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contacts__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.contacts__card {
  position: relative;
  background-color: var(--white);
  padding: 35px 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contacts__card ul {
  margin-bottom: 25px;
}

.contacts__card ul li {
  margin-bottom: 15px;
}

.contacts__card ul li a {
  position: relative;
  display: block;
  padding-left: 33px;
  color: var(--dark);
  transition: color .15s ease;
}

.contacts__card ul li a:before {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 27px;
  top: 50%;
  left: 0;
  font-size: 0.9em;
  transform: translateY(-50%);
}

.contacts__card ul li a:hover {
  color: var(--link-hover);
}

.contacts__title {
  font-size: var(--tit-sub);
  text-transform: uppercase;
  margin-bottom: 25px;
}

.contacts__btn {
  width: 100%;
  height: 55px;
}

.footer {
  background-color: #5B5269;
  padding: 65px 0;
  color: var(--light);
}

.footer__top {
  padding-bottom: 30px;
  border-bottom: 3px solid var(--light);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-right: 115px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__info {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer__menu {
  margin-right: 45px;
}

.footer__menu:first-child > .footer__menu-inner {
  display: flex;
  align-items: flex-start;
}

.footer__menu:first-child > .footer__menu-inner > .footer__menu-submenu {
  width: 100%;
  max-width: 215px;
  margin-right: 65px;
}

.footer__menu:first-child > .footer__menu-inner > .footer__menu-submenu:last-child {
  margin-right: 0;
}

.footer__menu:last-child > .footer__menu-inner > .footer__menu-submenu a {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 30px;
}

.footer__menu:last-child > .footer__menu-inner > .footer__menu-submenu a:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  text-align: center;
  transform: translateY(-50%);
}

.footer__menu:last-child {
  margin-right: 0;
}

.footer__menu-subtitle {
  position: relative;
  display: block;
  font-size: var(--tit);
  font-weight: 700;
}

.footer__menu-subtitle:after {
  display: none;
  transition: transform .15s ease;
}

.footer__menu-subtitle.active:after {
  transform: rotate(180deg) translateY(70%);
}

.footer__menu-inner {
  margin-top: 8px;
}

.footer__menu-item a {
  display: block;
  color: var(--light);
  line-height: 1.5em;
  transition: color .15s ease;
}

.footer__menu-item a:hover {
  color: var(--primary);
}

.footer__soc {
  display: flex;
  align-items: center;
  margin-top: 65px;
}

.footer__soc a {
  display: block;
  margin-right: 20px;
}

.footer__soc img {
  max-height: 50px;
}



.footer__soc a:last-child {
  margin-right: 0;
}

.footer__bot {
  padding-top: 30px;
}

.footer__requisites span {
  display: block;
  font-size: var(--tit-big);
  font-weight: 700;
  margin-bottom: 35px;
}

.footer__requisites ul li {
  font-size: var(--tit-sub);
  font-weight: 700;
  line-height: 1.3em;
  text-transform: uppercase;
}

.footer__bot-info a {
  display: block;
}

.footer__bot-info a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 150px;
}

.footer__pay {
  margin-top: 45px;
}

.footer__pay span {
  display: block;
  margin-bottom: 15px;
}

.footer__pay-list img {
  margin-right: 12px;
}

.footer__pay-list img:last-child {
  margin-right: 0;
}

.footer__cop {
  margin-top: 75px;
  padding: 0 15px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3em;
}

.bc {
  background-color: var(--light);
  padding: 10px 0;
}

.bc ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.bc ul li {
  position: relative;
  margin-right: 5px;
  padding-right: 10px;
  line-height: 1.2em;
}

.bc ul li:after {
  content: '/';
  position: absolute;
  display: block;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.bc ul li:last-child:after {
  display: none;
}

.bc ul li a {
  color: var(--dark);
  transition: color .15s ease;
}

.bc ul li a:hover {
  color: var(--link-hover);
}

.page {
  padding-top: 0;
}

.page__header {
  width: 100%;
  height: 200px;
}

.page__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page__inner {
  padding-top: 45px;
}

.page__inner--order {
  display: flex;
  align-items: flex-start;
}

.page__title-wrapper {
  display: flex;
  align-items: center;
}

.page__title {
  font-size: var(--tit);
  font-weight: 700;
}

.page__auth-btn {
  width: 130px;
  height: 35px;
  margin-left: 30px;
  text-transform: uppercase;
}

.page__info {
  background-color: var(--light);
  margin-top: 80px;
  padding: 75px 0;
}

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

.page__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page__info-item span {
  display: block;
  margin-top: 20px;
  font-size: var(--tit-sub);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.page__info-item:not(:last-child) {
  margin-right: 30px;
}

.page__info-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
}

.page__info-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart {
  display: flex;
  align-items: flex-start;
  margin-top: 35px;
}

.cart__wrapper {
  flex: 1 1 auto;
}

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart__head span {
  display: block;
  width: 90px;
  margin-right: 25px;
}

.cart__head span:first-child {
  flex: 1 1 90px;
}

.cart__head span:last-child {
  width: 30px;
  margin-right: 0;
}

.cart__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart__item > * {
  flex: 0 0 90px;
  margin-right: 25px;
}

.cart__item > *:last-child {
  flex: 0 0 30px;
  margin-right: 0;
}

.cart__img {
  flex: 0 0 105px;
  height: 120px;
  margin-right: 20px;
  border-radius: 15px;
  overflow: hidden;
}

.cart__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart__name {
  flex: 1 1 375px;
  line-height: 1.5em;
  color: var(--dark);
  transition: color .15s ease;
}

.cart__name:hover {
  color: var(--link-hover);
}

.cart__price {
  font-weight: 700;
}

.cart__count {
  display: flex;
  align-items: center;
}

.cart__remove {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  opacity: .5;
  transition: opacity .15s ease;
}

.cart__remove:hover {
  opacity: 1;
}

.cart__control button {
  min-width: 55px;
  height: 55px;
  font-size: inherit;
  font-weight: 700;
  text-transform: uppercase;
}

.cart__control button:not(:last-child) {
  margin-right: 20px;
  padding: 0 25px;
}

.cart__status {
  background-color: var(--light);
  width: 100%;
  max-width: 440px;
  margin-left: 30px;
  padding: 25px 30px;
  border-radius: 20px;
}

.cart__order-go {
  background-color: var(--green);
  width: 100%;
  height: 55px;
  color: var(--light);
  font-size: var(--tit-sub);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: background-color .2s ease;
}

.cart__order-go:hover {
  background-color: #23a157;
}

.cart__status-desc {
  margin: 15px 0;
  line-height: 1.3em;
}

.cart__status-desc a {
  color: #a775df;
}

.cart__status-desc a:hover {
  text-decoration: underline;
}

.cart__promo-filed {
  height: 55px;
  margin-bottom: 20px;
}

.cart__status-info {
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart__status-info-title {
  display: block;
  margin-bottom: 25px;
  font-size: var(--tit-sub);
  font-weight: 700;
  text-transform: uppercase;
}

.cart__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cart__status-row:last-child {
  margin-bottom: 0;
}

.cart__status-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: var(--tit-sub);
  font-weight: 700;
  text-transform: uppercase;
}

.cart__status-total span {
  margin-top: 10px;
}

.cart__status-total span:first-child {
  margin-right: 15px;
}

.count_minus {
  display: inline-block;
  background-color: var(--primary);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
}

.count_field {
  width: 100%;
  max-width: 30px;
  margin: 0 5px;
  text-align: center;
}

.count_plus {
  display: inline-block;
  background-color: var(--primary);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: var(--white);
  border-radius: 50px;
  cursor: pointer;
}

.order {
  flex: 0 0 600px;
  margin-right: 30px;
}

.order__content {
  margin-top: 35px;
}

.order__row {
  margin-bottom: 35px;
}

.order__row:last-child {
  margin-bottom: 0;
}

.order__row-title {
  padding-bottom: 10px;
  font-size: var(--tit-sub);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order__row-field {
  margin-top: 20px;
}

.order__row-field label {
  display: block;
  margin-bottom: 7px;
}

.order__row-field textarea {
  height: 150px;
  padding: 10px 20px;
  border-radius: 20px;
}

.order__field {
  height: 55px;
}

.order__delivery {
  margin-top: 15px;
}

.order__delivery-tab {
  display: flex;
  align-items: center;
}

.order__delivery-tab a {
  display: block;
  width: 155px;
  height: 40px;
  margin-right: 15px;
  text-align: center;
  line-height: 40px;
}

.order__delivery-tab a:last-child {
  margin-right: 0;
}

.order__delivery-tab a.active {
  background: #BDBDBD;
  color: var(--dark);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.order__delivery-tab a.active:hover::after {
  display: none;
}

.order__delivery-tab-content {
  display: none;
}

.order__delivery-tab-content.active {
  display: block;
}

.order__delivery-time {
  display: flex;
  align-items: flex-start;
}

.order__delivery-time div:first-child {
  margin-right: 30px;
}

.order__delivery-time-field {
  height: 55px;
  cursor: pointer;
}

.page__about {
  padding: 45px 0;
}

.page__about p {
  line-height: 1.4em;
  margin-bottom: 25px;
}

@media (max-width: 1400px) {
  .carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel__btn-prev, .carousel__btn-next, .carousel-pagination {
    position: relative;
    top: auto;
    transform: none;
  }
  .carousel-pagination {
    margin: 0 20px;
  }
  .carousel__btn-prev, .carousel__btn-next {
    flex: 0 0 50px;
  }
  .carousel-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
  }
  #carousel-reviews-next, #carousel-reviews-prev {
    left: auto;
    right: auto;
  }
  .footer__top > .footer__inner {
    flex-direction: column;
  }
  .footer__logo {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 1250px) {
  .cart {
    flex-direction: column;
  }
  .cart__wrapper {
    width: 100%;
  }
  .cart__status {
    max-width: none;
    margin-left: 0;
    margin-top: 45px;
  }
  .cart__statuse-desc {
    text-align: center;
  }
  .order {
    flex: 0 0 470px;
  }
}

@media (max-width: 1050px) {
  .header {
    position: fixed;
    padding: 15px 0;
  }
  .header.sticky {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .header__logo {
    margin-right: 50px;
  }
  .header__location {
    flex: 1 1 auto;
  }
  .header__nav, .header__cb {
    display: none;
  }
  .header__cart, .header__burger, .mob__nav, .mob__cb-btn {
    display: block;
  }
  .header__catalog {
    padding: 20px;
    border-radius: 0 0 30px 30px;
  }
  .catalog {
    grid-template: auto/repeat(3, 1fr);
    padding-bottom: 20px;
  }
  .catalog__item {
    padding: 8px;
  }
  .catalog__item:hover {
    border-color: var(--white);
  }
  .mob__menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  .mob__nav {
    display: flex;
    align-items: center;
  }
  .mob__nav li {
    margin-right: 25px;
  }
  .mob__nav li:last-child > a {
    font-weight: 700;
  }
  .mob__nav li a {
    position: relative;
    position: relative;
    color: var(--dark);
  }
  .mob__nav li a.icon-drop {
    padding-right: 20px;
  }
  .mob__nav li a:after {
    position: absolute;
    top: 60%;
    right: 0;
    font-size: 10px;
    transform: translateY(-50%);
    transition: transform .15s ease;
  }
  .mob__cb-btn {
    width: 150px;
    height: 35px;
  }
  .intro {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .intro__inner {
    flex-direction: column-reverse;
  }
  .intro__offer {
    max-width: 600px;
  }
  .intro__offer-title, .intro__offer-desc {
    text-align: center;
  }
  .intro__offer-btn {
    margin: 35px auto;
  }
  .why__inner-list-item {
    width: 230px;
  }
  .why__inner-list-item span {
    font-size: 1em;
  }
  .constructor__title, .constructor__step span, .reviews__title, .about__title {
    font-size: 2.2em;
  }
  .constructor-checkout__inner {
    padding: 35px 0;
  }
  .constructor-checkout__form {
    flex-direction: column;
    align-items: flex-start;
  }
  .constructor-checkout__form-col {
    max-width: none;
    padding: 30px 0;
  }
  .constructor-checkout__form-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .cb {
    width: auto;
    margin: 80px 15px;
  }
  .cart-float {
    display: none;
  }
  .footer__menu-subtitle {
    font-size: 1.6em;
  }
  .footer__menu:first-child > .footer__menu-inner > .footer__menu-submenu {
    margin-right: 45px;
  }
  .footer__menu-item a {
    font-size: 0.8em;
  }
  .footer__requisites span {
    font-size: var(--tit);
  }
  .footer__requisites ul li {
    font-size: 1em;
  }
  .footer__info {
    flex: initial;
    width: 100%;
  }
  .page {
    padding-top: 85px;
  }
}

@media (max-width: 992px) {
  .constructor__carousel {
    padding: 35px 10px;
  }
  .constructor__carousel-img {
    margin-bottom: 30px;
  }
  .constructor__carousel-title {
    margin: 0 20px;
  }
  .constructor__carousel-add {
    margin: 8px 20px 0 20px;
  }
  .constructor__carousel-btn {
    max-width: 150px;
    height: 45px;
    font-size: 1em;
  }
  .constructor__carousel-add span {
    font-size: 1.5em;
  }
  .card__body {
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    border-radius: 0;
  }
  .card__gallery {
    max-width: none;
    margin-right: 0;
    margin-bottom: 35px;
  }
  .reviews {
    padding: 0 15px;
  }
  .contacts {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
  }
  .contacts__map {
    position: relative;
    height: 300px;
  }
  .contacts__card {
    width: 100%;
    margin-bottom: 25px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer__inner {
    flex-direction: column;
  }
  .footer__info {
    flex-wrap: wrap;
  }
  .footer__menu {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer__menu-subtitle {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__menu-subtitle:after {
    position: absolute;
    display: block;
    top: 60%;
    right: 0;
    font-size: 10px;
    transform: translateY(-50%);
  }
  .footer__menu-inner {
    display: none;
  }
  .footer__soc {
    margin-top: 15px;
  }
  .footer__soc a > img {
    width: 55px;
    height: 55px;
  }
  .footer__top {
    padding-bottom: 60px;
  }
  .footer__bot {
    padding-top: 60px;
  }
  .footer__bot-info {
    margin-top: 30px;
  }
  .footer__cop {
    font-size: 0.8em;
  }
  .cart__img {
    flex: 0 0 85px;
    height: 100px;
  }
  .cart__name {
    font-size: 0.9em;
    line-height: 1.3em;
  }
  .page__inner--order {
    flex-direction: column;
  }
  .order {
    flex: auto;
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  body.no-scroll {
    overflow: hidden;
  }
  .header__logo {
    flex: 1 1 auto;
    max-width: none;
    margin-right: 0;
  }
  .header__logo img {
    max-width: 100px;
  }
  .header__location {
    margin-right: 20px;
  }
  .header__location span {
    display: inline-block;
    padding-left: 0;
    padding-top: 22px;
    font-size: 12px;
  }
  .header__location span:before {
    top: 0;
    left: 50%;
    font-size: 20px;
    transform: translateX(-50%);
  }
  .header__catalog {
    position: fixed;
    top: 65px;
    height: 100%;
    padding: 20px 20px 100px 20px;
    border-radius: 0;
  }
  .catalog {
    grid-template: auto/repeat(2, 1fr);
  }
  .mob__menu {
    flex-wrap: wrap;
  }
  .mob__nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .mob__nav li {
    width: 100%;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  .mob__nav li a {
    display: block;
  }
  .mob__cb-btn {
    width: 100%;
    height: 40px;
    margin-top: 20px;
  }
  .intro__offer-title {
    font-size: 1.8em;
  }
  .why__inner-list {
    justify-content: space-between;
  }
  .why__inner-list-item {
    flex-direction: column;
    width: 100px;
  }
  .why__inner-list-item img {
    width: 60px;
    height: 60px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .why__inner-list-item span {
    text-align: center;
    font-size: .8em;
  }
  .constructor__title, .constructor__step span, .reviews__title, .about__title {
    font-size: 1.8em;
  }
  .constructor__step img {
    width: 65px;
    height: 65px;
  }
  .card__body {
    padding: 55px 25px 25px 25px;
  }
  .card__gallery {
    margin-bottom: 25px;
  }
  .card__title {
    margin-bottom: 30px;
    font-size: 1.8em;
  }
  .card__desc-row span {
    font-size: 1em;
  }
  .card__desc-row p {
    line-height: 1.2em;
  }
  .card__desc-row {
    margin-bottom: 30px;
  }
  .card__time {
    justify-content: center;
    padding-top: 20px;
  }
  .card__time-icon {
    width: 45px;
    height: 45px;
  }
  .constructor-checkout__inner {
    padding: 10px 0;
  }
  .file-upload-u label {
    font-size: 1em;
  }
  .file-upload-u label:before, .file-add-a label:before {
    font-size: 80px;
  }
  .constructor-checkout__form-col-row, .constructor-checkout__form-btn {
    font-size: 1.1em;
  }
  .constructor-checkout__form-col-row span {
    margin-right: 15px;
  }
  .cb {
    padding: 35px 20px;
  }
  .cb__title {
    margin-bottom: 15px;
    font-size: var(--tit);
  }
  .cb__desc {
    font-size: 1em;
  }
  .cb__field {
    margin-bottom: 25px;
  }
  .cb__info {
    font-size: 0.8em;
  }
  .about__title {
    margin-bottom: 25px;
  }
  .cart__head {
    display: none;
  }
  .cart__item {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cart__img {
    margin-bottom: 20px;
  }
  .cart__control {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart__control button:not(:last-child) {
    flex: 1 1 auto;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .cart__control button:last-child {
    margin-left: 15px;
  }
  .cart__status {
    margin-top: 35px;
  }
  .cart__order-go, .cart__status-info-title, .cart__status-total {
    font-size: 1em;
  }
  .cart__statuse-desc {
    font-size: 0.9em;
  }
  .cart__status-total {
    flex-wrap: wrap;
  }
  .page__info-item span {
    font-size: .8em;
  }
  .page__title {
    font-size: 1.4em;
  }
  .order__delivery-time {
    flex-direction: column;
  }
  .order__row-field {
    width: 100%;
  }
  .order__delivery-time div:first-child {
    margin-right: 0;
  }
  .page {
    padding-top: 65px;
  }
}

@media (max-width: 480px) {
  .header__catalog {
    padding: 15px 15px 90px 15px;
  }
  .catalog {
    grid-gap: 15px;
  }
  .catalog__item {
    padding: 0;
  }
  .catalog__item-img {
    flex: 0 0 68px;
    height: 68px;
  }
  .catalog__item-img img {
    height: 100%;
  }
  .catalog__item-inner span {
    font-size: 0.8em;
  }
  .mob__cb-btn {
    margin-top: 10px;
  }
  .intro {
    padding-top: 90px;
    padding-bottom: 20px;
  }
  .intro__offer-title {
    font-size: 1.4em;
  }
  .intro__offer-desc {
    font-size: 0.8em;
  }
  .intro__offer-btn {
    margin: 25px auto;
  }
  .why__inner-title {
    font-size: 1.1em;
  }
  .constructor__carousel {
    padding: 30px 10px;
  }
  .constructor__inner {
    padding-top: 45px;
  }
  .constructor__step span {
    font-size: 1.3em;
  }
  .carousel-pagination {
    margin: 0 12px;
  }
  .carousel-pagination.swiper-pagination-bullets.swiper-pagination-horizontal span {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
  .card__gallery > .carousel__nav div:not(:nth-child(2)) {
    flex: 0 0 45px;
    height: 45px;
  }
  .card__desc-row {
    flex-direction: column;
  }
  .card__desc-row span {
    flex: initial;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .card__time {
    padding-top: 0;
  }
  .constructor-checkout__form-col-row {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .constructor-checkout__form-col-row span {
    margin-right: 0;
  }
  .constructor-checkout__comment textarea {
    font-size: 0.8em;
  }
  .about__text p {
    margin-bottom: 15px;
    font-size: 0.9em;
  }
  .contacts__card {
    padding: 30px 20px;
  }
  .contacts__title {
    font-size: 1em;
  }
  .contacts__card ul li a {
    font-size: 0.9em;
  }
  .footer__top {
    padding-bottom: 40px;
  }
  .footer__logo, .footer__bot-info a {
    width: 150px;
  }
  .footer__menu-subtitle {
    font-size: 1.2em;
  }
  .footer__menu-inner {
    flex-wrap: wrap;
  }
  .footer__menu:first-child > .footer__menu-inner > .footer__menu-submenu {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .footer__menu-item a {
    line-height: 1.8em;
  }
  .footer__requisites span {
    margin-bottom: 25px;
    font-size: var(--tit-sub);
  }


  .footer__requisites ul li {
    font-size: 0.8em;
  }
  .footer__pay {
    margin-top: 25px;
  }
  .footer__cop {
    margin-top: 35px;
    font-size: 0.6em;
  }
  .cart__item > * {
    margin-right: 15px;
  }
  .cart__name {
    flex: 1 1 200px;
    padding-right: 5px;
  }
  .cart__remove {
    position: absolute;
    right: 0;
  }
  .page__info-inner {
    flex-direction: column;
  }
  .page__info-item:not(:last-child) {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .page__title-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .page__auth-btn {
    margin-top: 10px;
    margin-left: 0;
    font-size: 0.8em;
  }
  .order__row-title {
    font-size: 1em;
  }
  .bc ul li {
    font-size: 0.8em;
  }
  .page__header {
    height: 120px;
  }
}

@media (max-width: 361px) {
  .catalog__item-inner {
    flex-direction: column;
  }
  .catalog__item-inner span {
    text-align: center;
  }
  .catalog__item-img {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .intro__offer-title {
    font-size: 1.2em;
  }
  .why__inner-list-item span {
    font-size: 0.7em;
  }
  .constructor__carousel-img {
    height: 280px;
  }
  .constructor__carousel-title, .constructor__carousel-add span {
    font-size: 1.2em;
  }
  .constructor__carousel-btn {
    max-width: 135px;
    font-size: 0.9em;
  }
  .cb {
    padding: 30px 15px;
  }
  .cb__title {
    margin-bottom: 15px;
    font-size: 1.4em;
  }
  .cb__desc {
    font-size: .8em;
  }
  .cb__form {
    margin-bottom: 30px;
  }
  .cb__field {
    margin-bottom: 25px;
    height: 55px;
  }
  .cb__form-btn {
    height: 55px;
  }
  .cb__info {
    font-size: 0.7em;
  }
  .contacts__btn {
    height: 45px;
  }
  .cart__control button {
    font-size: 0.9em;
  }
  .cart__status {
    padding: 20px;
  }
  .cart__order-go {
    font-size: 0.9em;
  }
  .cart__item > * {
    flex: 1 1 auto;
  }
  .cart__img {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 10px;
  }
  .cart__name {
    flex: 1 1 200px;
    margin-bottom: 15px;
  }
  

}

@media (max-width: 400px) {
  .page__content {font-size: 12px;}
}

b {font-weight: 900;}

.reviews__carousel-item.swiper-slide-active img {
  border-radius: 20px;





}


/*# sourceMappingURL=style.css.map */