@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #A65E2E;
}

html,
body {
  font-family: "Inter", sans-serif;
  color: #2a2a2a;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  max-width: calc(1140px + 2rem);
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.wrapper > .wrapper__items:first-child {
  height: 100%;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: white;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 99;
}
#loader img {
  height: 100px;
}
#loader.hidden {
  display: none;
}

.main {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: rgba(238, 238, 238, 0.3137254902);
  margin-top: 1rem;
  height: 500px;
}
@media screen and (max-width: 960px) {
  .main {
    background: transparent;
  }
}
@media screen and (max-width: 480px) {
  .main {
    width: 100%;
    height: 350px;
    margin-top: 0;
  }
}
.main__container {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .main__container {
    width: 100%;
  }
}
.main__container span {
  color: #A65E2E;
  font-weight: 700;
}
.main__container h1 {
  font-weight: 500;
  line-height: 1.35;
  font-size: 32px;
  margin: 16px 0;
}
@media screen and (max-width: 960px) {
  .main__container h1 {
    color: white;
  }
}
@media screen and (max-width: 480px) {
  .main__container h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .main__container h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 350px) {
  .main__container h1 {
    font-size: 24px;
  }
}
.main__container p {
  font-weight: 500;
  font-size: 20px;
  color: rgba(42, 42, 42, 0.3137254902);
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .main__container p {
    color: white;
    font-weight: 400;
  }
}
@media screen and (max-width: 375px) {
  .main__container p {
    font-size: 18px;
  }
}
@media screen and (max-width: 340px) {
  .main__container p {
    font-size: 16px;
  }
}
.main__container button {
  background-color: #A65E2E;
  border-radius: 10px;
  color: white;
  width: 235px;
  height: 60px;
  margin-top: 24px;
  font-size: 20px;
  user-select: none;
}
@media screen and (max-width: 480px) {
  .main__container button {
    height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .main__container button {
    font-size: 18px;
  }
}
.main__container:first-child {
  padding: 0 48px;
}
@media screen and (max-width: 960px) {
  .main__container:first-child {
    background: rgba(0, 0, 0, 0.3764705882);
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .main__container:first-child {
    padding: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .main__container:first-child {
    border-radius: 0;
    padding: 1rem;
  }
}
.main__container:last-child {
  background: url("../images/background/bg.png");
  background-size: cover;
  height: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .main__container:last-child {
    position: absolute;
    width: calc(100% - 2rem);
    height: 500px;
    z-index: -1;
  }
}
@media screen and (max-width: 480px) {
  .main__container:last-child {
    border-radius: 0;
    width: 100%;
    height: 350px;
    background: url("../images/background/bg-mobile.png");
  }
}

.assortment {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
@media screen and (max-width: 776px) {
  .assortment {
    flex-direction: column;
  }
}
.assortment__container {
  margin-right: 45px;
}
@media screen and (max-width: 776px) {
  .assortment__container {
    margin-right: 0;
  }
  .assortment__container:not(:first-child) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 381px) {
  .assortment__container, .assortment__container img {
    width: 100%;
  }
}
.assortment__container img {
  margin-bottom: 10px;
  user-select: none;
}
.assortment__container p, .assortment__container span {
  line-height: 1.5;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .assortment__container p, .assortment__container span {
    font-size: 20px;
  }
}
.assortment__container span {
  color: #B4B4B4;
}
@media screen and (max-width: 821px) {
  .assortment__container:nth-child(2) {
    margin-top: 2rem;
  }
}
.assortment__container:last-child {
  margin: 0;
}
@media screen and (max-width: 1171px) {
  .assortment__container:last-child {
    margin-top: 2rem;
  }
}

.advantages {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 48px;
}
.advantages__items {
  width: 100%;
}
.advantages__items:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.advantages__items:first-child p {
  font-size: 32px;
  font-weight: 700;
}
.advantages__items:first-child hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.advantages__items:last-child {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
}
.advantages__items:last-child img {
  user-select: none;
}
.advantages__containers {
  display: flex;
  align-items: center;
  flex: 1 0 50%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .advantages__containers {
    flex: 1 0 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .advantages__containers {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .advantages__containers {
    flex-direction: column;
  }
}
.advantages__container {
  font-weight: 500;
}
.advantages__container:first-child {
  margin-right: 1rem;
}
.advantages__container p {
  font-size: 24px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .advantages__container p {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .advantages__container p {
    text-align: center;
    margin-top: 0.5rem;
  }
}
.advantages__container span {
  color: rgba(42, 42, 42, 0.3137254902);
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .advantages__container span {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .advantages__container span {
    text-align: center;
    display: block;
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #A65E2E;
}

html,
body {
  font-family: "Inter", sans-serif;
  color: #2a2a2a;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  max-width: calc(1140px + 2rem);
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.wrapper > .wrapper__items:first-child {
  height: 100%;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: white;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 99;
}
#loader img {
  height: 100px;
}
#loader.hidden {
  display: none;
}

.div {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .div {
    flex-direction: column;
  }
}

.categories {
  padding: 2rem 1.75rem;
  min-height: calc(100vh - 6rem - 94px);
  margin: 1rem 1rem 0;
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 20px;
}
@media screen and (max-width: 1200px) {
  .categories {
    min-height: auto;
    margin: 1rem;
  }
}
.categories p {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 370px) {
  .categories p {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
}
.categories ul {
  list-style: none;
}
.categories ul li {
  font-size: 24px;
  line-height: 1.75;
  margin-right: 1rem;
  text-wrap: nowrap;
  cursor: pointer;
}
.categories ul li.active {
  color: #A65E2E;
}
@media screen and (max-width: 370px) {
  .categories ul li {
    font-size: 20px;
  }
}

.products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: calc(1264px + 1rem);
}
.products__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 10px;
  width: 400px;
  height: 357px;
  margin: 1rem;
}
@media screen and (min-width: 1660px) {
  .products__container:nth-last-child(-n+3) {
    margin: 1rem 1rem 0;
  }
  .products__container:nth-child(3n) {
    margin: auto 0 auto 1rem;
  }
  .products__container:last-child {
    margin: 1rem 0 0 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .products__container {
    flex: 0 0 calc(50% - 2rem);
  }
}
@media screen and (max-width: 600px) {
  .products__container {
    flex: 1 0 calc(100% - 2rem);
    width: 100%;
    margin: 1rem 1rem 0;
  }
}
@media screen and (max-width: 370px) {
  .products__container {
    height: auto;
  }
}
.products__container-image {
  display: flex;
  justify-content: center;
  height: 200px;
  user-select: none;
}
.products__container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 370px) {
  .products__container-image {
    height: 175px;
    margin-bottom: 1rem;
  }
}
.products__container-info {
  padding: 0 1rem;
}
.products__container-info p {
  color: rgba(42, 42, 42, 0.3137254902);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
}
.products__container-info span {
  font-weight: 500;
  font-size: 24px;
}
.products__container-buttons {
  display: flex;
  margin: 1rem 0;
  user-select: none;
}
.products__container-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  background-color: white;
  width: calc(100% - 150px - 1rem);
}
.products__container-buttons button:last-child {
  background-color: #2a2a2a;
  color: white;
  width: 150px;
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .products__container-buttons button:last-child {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 768px) {
  .products__container-buttons button {
    width: calc(50% + 2rem);
  }
}
@media screen and (max-width: 370px) {
  .products__container-buttons button {
    font-size: 18px;
  }
}
.products__detail {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  margin-top: -66px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5647058824);
}
@media screen and (max-width: 1200px) {
  .products__detail {
    top: 0;
    margin: 0;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1400px) {
  .products__detail {
    align-items: flex-start;
    overflow-y: scroll;
    padding: 1rem;
  }
}
.products__detail-items {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .products__detail-items {
    flex-direction: column-reverse;
  }
}
.products__detail-items__product:first-child {
  background-color: white;
  border-radius: 20px;
  max-width: 1140px;
  min-height: 590px;
  width: 100%;
  padding: 48px;
}
@media screen and (max-width: 1140px) {
  .products__detail-items__product:first-child {
    padding: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .products__detail-items__product:first-child {
    padding: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .products__detail-items__product:first-child {
    height: 100%;
  }
}
.products__detail-items__product-block:first-child {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .products__detail-items__product-block:first-child {
    flex-direction: column-reverse;
  }
}
.products__detail-items__product-block:last-child {
  margin-top: 2rem;
  margin-left: 121px;
}
.products__detail-items__product-block:last-child b {
  font-weight: 500;
}
.products__detail-items__product-block:last-child p {
  margin-top: 1rem;
  line-height: 1.25;
}
.products__detail-items__product-block:last-child span {
  line-height: 1.25;
}
@media screen and (max-width: 1140px) {
  .products__detail-items__product-block:last-child {
    margin: 0 0 0 calc(75px + 2rem);
  }
}
@media screen and (max-width: 1024px) {
  .products__detail-items__product-block:last-child {
    margin: 2rem 0 0 0;
  }
}
.products__detail-items__product-block__elem:first-child {
  display: flex;
  flex-direction: column;
  user-select: none;
}
@media screen and (max-width: 1023px) {
  .products__detail-items__product-block__elem:first-child {
    flex-direction: row;
  }
}
.products__detail-items__product-block__elem:first-child img {
  height: 75px;
  width: 75px;
  object-fit: cover;
  outline: 2px solid rgba(238, 238, 238, 0.3137254902);
  outline-offset: -2px;
  border-radius: 10px;
  margin-bottom: 1rem;
  cursor: pointer;
}
.products__detail-items__product-block__elem:first-child img:last-child {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .products__detail-items__product-block__elem:first-child img {
    margin: 0 1rem 0 0;
  }
}
@media screen and (max-width: 425px) {
  .products__detail-items__product-block__elem:first-child img {
    margin: 0 8px 0 0;
  }
}
@media screen and (max-width: 400px) {
  .products__detail-items__product-block__elem:first-child img {
    height: 60px;
    width: 60px;
  }
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:first-child img {
    height: 50px;
    width: 50px;
  }
}
.products__detail-items__product-block__elem:nth-child(2) img {
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 10px;
  width: 525px;
  margin: 0 46px;
  user-select: none;
}
@media screen and (max-width: 1140px) {
  .products__detail-items__product-block__elem:nth-child(2) img {
    margin: 0 2rem;
    height: 100%;
    max-width: calc(525px - 4rem);
  }
}
@media screen and (max-width: 1024px) {
  .products__detail-items__product-block__elem:nth-child(2) img {
    margin: 0 1rem;
    max-width: calc(525px - 2rem);
  }
}
@media screen and (max-width: 1023px) {
  .products__detail-items__product-block__elem:nth-child(2) img {
    max-width: 525px;
    width: 100%;
    margin: 24px 0 8px;
  }
}
.products__detail-items__product-block__elem:last-child h2 {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.22;
}
@media screen and (max-width: 480px) {
  .products__detail-items__product-block__elem:last-child h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 400px) {
  .products__detail-items__product-block__elem:last-child h2 {
    font-size: 28px;
  }
}
.products__detail-items__product-block__elem:last-child p {
  font-weight: 500;
  font-size: 28px;
  margin: 0.5rem 0 1rem;
}
@media screen and (max-width: 480px) {
  .products__detail-items__product-block__elem:last-child p {
    font-size: 24px;
  }
}
@media screen and (max-width: 400px) {
  .products__detail-items__product-block__elem:last-child p {
    font-size: 20px;
  }
}
.products__detail-items__product-block__elem:last-child span {
  line-height: 1.25;
}
.products__detail-items__product-block__elem:last-child div {
  display: flex;
  margin-top: 24px;
}
.products__detail-items__product-block__elem:last-child div div {
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  min-width: 115px;
  height: 50px;
  margin: 0;
  user-select: none;
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:last-child div div {
    min-width: 90px;
  }
}
.products__detail-items__product-block__elem:last-child div div p {
  font-size: 18px;
  margin: 0;
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:last-child div div p {
    font-size: 16px;
  }
}
.products__detail-items__product-block__elem:last-child div div span {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  padding: 0 0.75rem;
}
.products__detail-items__product-block__elem:last-child div div span svg {
  width: 17px;
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:last-child div div span svg {
    width: 10px;
  }
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:last-child div div span {
    padding: 0 0.5rem;
  }
}
.products__detail-items__product-block__elem:last-child div button {
  background-color: #2a2a2a;
  border-radius: 10px;
  color: white;
  height: 50px;
  width: 100%;
  max-width: 170px;
  font-size: 20px;
  font-weight: 500;
  margin-left: 1rem;
  user-select: none;
}
@media screen and (max-width: 400px) {
  .products__detail-items__product-block__elem:last-child div button {
    font-size: 18px;
  }
}
@media screen and (max-width: 340px) {
  .products__detail-items__product-block__elem:last-child div button {
    max-width: 150px;
  }
}
.products__detail-items__product:last-child {
  margin-left: 1rem;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .products__detail-items__product:last-child {
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.products__cart {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  margin-top: -66px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5647058824);
}
@media screen and (max-width: 1200px) {
  .products__cart {
    top: 0;
    margin: 0;
  }
}
.products__cart-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  max-height: 400px;
  height: 100%;
  width: 100%;
  max-width: 600px;
  margin: 0 1rem;
}
@media screen and (max-width: 370px) {
  .products__cart-items {
    max-height: 350px;
  }
}
.products__cart-items svg {
  margin-bottom: 24px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 480px) {
  .products__cart-items svg {
    width: 85px;
    height: 85px;
  }
}
.products__cart-items p {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin: 0 1rem;
}
@media screen and (max-width: 370px) {
  .products__cart-items p {
    font-size: 20px;
  }
}
.products__cart-items span {
  font-weight: 600;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.2509803922);
  text-align: center;
  margin: 10px 1rem 0;
}
@media screen and (max-width: 370px) {
  .products__cart-items span {
    font-size: 16px;
  }
}
.products__cart-items div {
  margin: 2rem 1rem 0;
}
.products__cart-items div button {
  width: 150px;
  height: 50px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  background-color: #eeeeee;
}
@media screen and (max-width: 385px) {
  .products__cart-items div button {
    width: 120px;
  }
}
@media screen and (max-width: 370px) {
  .products__cart-items div button {
    font-size: 18px;
  }
}
@media screen and (max-width: 325px) {
  .products__cart-items div button {
    width: 110px;
  }
}
.products__cart-items div a {
  margin-left: 1rem;
}
.products__cart-items div a button {
  background-color: #2a2a2a;
  color: white;
}

@media screen and (min-width: 1180px) {
  .image {
    min-height: 300px;
  }
}

.image-slider.active {
  outline: 2px solid #A65E2E !important;
}

.reviews {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  margin: 48px 1rem 1rem;
  min-height: calc(100vh - 11rem - 48px);
  height: 100%;
  user-select: none;
}
.reviews img {
  max-width: 633px;
}
@media screen and (max-width: 373px) {
  .reviews img {
    width: 100%;
  }
}

#contacts {
  margin-top: 48px;
}
#contacts .contacts__items:first-child {
  flex-direction: row;
  margin-bottom: 0;
}
@media screen and (max-width: 350px) {
  #contacts .contacts__items:first-child {
    flex-direction: column;
  }
}

iframe {
  border-radius: 20px;
  border: none;
  margin: 48px 1rem;
  max-width: 1140px;
  width: calc(100% - 2rem);
  height: 420px;
  user-select: none;
}
@media screen and (max-width: 480px) {
  iframe {
    height: 300px;
  }
}

.contacts-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contacts-form__title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contacts-form__title p {
  font-size: 32px;
  font-weight: 700;
}
.contacts-form__title hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.contacts-form form {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 2rem);
  margin: 2rem 1rem 0;
}
.contacts-form form input {
  margin: 0 1rem 1rem 0;
  width: 100%;
  height: 70px;
  padding: 0 1.5rem;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  border: solid 1px rgba(42, 42, 42, 0.3137254902);
  font-size: 24px;
  font-weight: 400;
  user-select: none;
}
@media screen and (max-width: 370px) {
  .contacts-form form input {
    font-size: 20px;
  }
}
.contacts-form form input:first-child {
  width: calc(280px + 0.5rem);
}
.contacts-form form input:nth-child(2) {
  width: calc(400px + 0.5rem);
}
.contacts-form form input:nth-child(3) {
  width: 412px;
  margin: 0;
}
.contacts-form form input[type=submit] {
  cursor: pointer;
  margin: 0;
  border: none;
  width: 412px;
  color: white;
  background-color: #A65E2E;
}
@media screen and (max-width: 768px) {
  .contacts-form form input[type=submit] {
    width: 100%;
  }
}
@media screen and (max-width: 1171px) {
  .contacts-form form input:not(input[type=submit]) {
    width: 33% !important;
  }
}
@media screen and (max-width: 768px) {
  .contacts-form form input:not(input[type=submit]) {
    width: 100% !important;
  }
}
.contacts-form form textarea {
  width: calc(100% - 1rem - 412px);
  min-height: 200px;
  padding: 1.5rem;
  margin-right: 1rem;
  font-family: "Inter", sans-serif;
  resize: vertical;
  border-radius: 20px;
  border: solid 1px rgba(42, 42, 42, 0.3137254902);
  font-size: 24px;
  font-weight: 400;
  user-select: none;
}
@media screen and (max-width: 370px) {
  .contacts-form form textarea {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contacts-form form textarea {
    margin: 0 0 0 1rem;
    width: calc(100% - 412px);
    resize: none;
  }
}
@media screen and (max-width: 650px) {
  .contacts-form form textarea {
    margin: 1rem 0 0 0;
    width: 100%;
    resize: vertical;
  }
}
.contacts-form form div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 412px;
}
@media screen and (max-width: 768px) {
  .contacts-form form div {
    max-width: 100%;
    margin-top: 1rem;
  }
}
.contacts-form form p {
  line-height: 1.5;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contacts-form form p {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 650px) {
  .contacts-form form p {
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .contacts-form form p {
    font-size: 18px;
  }
}
@media screen and (max-width: 340px) {
  .contacts-form form p {
    font-size: 16px;
  }
}
.contacts-form form p a {
  color: #A65E2E;
}
.contacts-form__input {
  flex-direction: row !important;
  max-width: 100% !important;
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .contacts-form__input {
    flex-direction: column !important;
  }
}
@media screen and (max-width: 650px) {
  .contacts-form__input {
    width: 100% !important;
  }
}

.required {
  color: red;
  font-size: 24px;
  position: absolute;
  margin: 1.2rem 1.5rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
@media screen and (max-width: 1023px) and (min-width: 769px) {
  .required {
    display: none;
  }
}
.required__1 {
  margin-left: 145px;
}
@media screen and (max-width: 370px) {
  .required__1 {
    margin-left: 127px;
  }
}
.required__2 {
  margin-left: 910px;
}
@media screen and (max-width: 1171px) {
  .required__2 {
    margin-left: 950px;
  }
}
@media screen and (max-width: 1171px) {
  .required__2 {
    margin-left: 950px;
  }
}
@media screen and (max-width: 1140px) {
  .required__2 {
    margin-left: 931px;
  }
}
@media screen and (max-width: 1100px) {
  .required__2 {
    margin-left: 891px;
  }
}
@media screen and (max-width: 1024px) {
  .required__2 {
    margin-left: 855px;
  }
}
@media screen and (max-width: 768px) {
  .required__2 {
    margin-left: 180px;
    margin-top: 11.8rem;
  }
}
@media screen and (max-width: 370px) {
  .required__2 {
    margin-left: 156px;
  }
}
.required__3 {
  margin-top: 6.6rem;
  margin-left: 165px;
}
@media screen and (max-width: 768px) {
  .required__3 {
    margin-left: 573px;
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 650px) {
  .required__3 {
    margin-top: 17.4rem;
    margin-left: 162px;
  }
}
@media screen and (max-width: 370px) {
  .required__3 {
    margin-left: 142px;
  }
}

.send {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  margin-top: -66px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5647058824);
}
@media screen and (max-width: 1200px) {
  .send {
    top: 0;
    margin: 0;
  }
}
.send-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
  border-radius: 20px;
  max-height: 400px;
  height: 100%;
  width: 100%;
  max-width: 600px;
  margin: 0 1rem;
}
@media screen and (max-width: 370px) {
  .send-items {
    max-height: 350px;
  }
}
.send-items svg {
  margin-bottom: 24px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 480px) {
  .send-items svg {
    width: 85px;
    height: 85px;
  }
}
.send-items p {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin: 0 1rem;
}
@media screen and (max-width: 370px) {
  .send-items p {
    font-size: 20px;
  }
}
.send-items span {
  font-weight: 600;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.2509803922);
  text-align: center;
  margin: 10px 1rem 0;
}
@media screen and (max-width: 370px) {
  .send-items span {
    font-size: 16px;
  }
}
.send-items div {
  margin: 2rem 1rem 0;
}
.send-items div button {
  width: 150px;
  height: 50px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  background-color: #eeeeee;
}
@media screen and (max-width: 385px) {
  .send-items div button {
    width: 120px;
  }
}
@media screen and (max-width: 370px) {
  .send-items div button {
    font-size: 18px;
  }
}
@media screen and (max-width: 325px) {
  .send-items div button {
    width: 110px;
  }
}
.send-items div a {
  margin-left: 1rem;
}
.send-items div a button {
  background-color: #2a2a2a;
  color: white;
}
.send {
  top: 0;
  margin: 0;
}

.policy {
  width: calc(100% - 2rem);
  max-width: 1140px;
}
.policy__items {
  margin-top: 48px;
}
.policy__items:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.policy__items:first-child p {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 370px) {
  .policy__items:first-child p {
    font-size: 24px;
  }
}
@media screen and (max-width: 340px) {
  .policy__items:first-child p {
    font-size: 22px;
  }
}
.policy__items:first-child hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.policy__items:last-child {
  margin-top: 2rem;
}
.policy__items:last-child p {
  font-size: 24px;
  font-weight: 400;
}
@media screen and (max-width: 370px) {
  .policy__items:last-child p {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .policy__items:last-child p {
    font-size: 18px;
  }
}
.policy__items:last-child div {
  padding-left: 40px;
}
@media screen and (max-width: 600px) {
  .policy__items:last-child div {
    padding-left: 20px;
  }
}
.policy__items:last-child span, .policy__items:last-child a {
  font-weight: 500;
}
.policy__items:last-child a:hover {
  text-decoration: underline;
}
.policy__items:last-child b {
  display: block;
  margin: 1rem 0;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 370px) {
  .policy__items:last-child b {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .policy__items:last-child b {
    font-size: 18px;
  }
}

.cart {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 400;
  text-align: center;
  height: 100%;
  min-height: calc(100vh - 10rem);
}
.cart__items:not(.block) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 10rem);
  height: 100%;
}
.cart__items:not(.block) p {
  font-size: 32px;
  margin: 48px 0 1rem;
}
@media screen and (max-width: 480px) {
  .cart__items:not(.block) p {
    font-size: 28px;
    margin: 32px 0 1rem;
  }
}
.cart__items:not(.block) span {
  color: rgba(42, 42, 42, 0.3137254902);
  font-size: 24px;
  margin: 0 1rem;
  line-height: 1.5;
}
.cart__items:not(.block) span a {
  color: #A65E2E;
}
.cart__items:not(.block) span a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .cart__items:not(.block) span {
    font-size: 20px;
  }
}
.cart__items.block {
  height: 100%;
  margin-top: 48px;
}
@media screen and (max-width: 750px) {
  .cart__items.block {
    width: 100%;
  }
}
.cart__items-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cart__items-container:first-child:not(.cart__items-container .cart__items-container) p {
  font-size: 32px;
  font-weight: 700;
}
.cart__items-container:first-child:not(.cart__items-container .cart__items-container) hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.cart__items-container:last-child {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 10px;
  max-width: 1140px;
  width: calc(100% - 2rem);
  padding: 2rem;
  margin: 2rem 1rem 0;
}
@media screen and (max-width: 1171px) {
  .cart__items-container:last-child {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .cart__items-container:last-child {
    padding: 1rem;
  }
}
.cart__items-container:not(.block > .cart__items-container) {
  display: block;
  border-radius: 0;
  background: none;
  max-width: inherit;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .cart__items-container:not(.block > .cart__items-container) {
    width: 100%;
  }
}
.cart__items-container:not(.block > .cart__items-container):last-child {
  background-color: white;
  border-radius: 20px;
  width: 305px;
  height: 240px;
  margin-left: 2rem;
  padding: 1.5rem;
}
@media screen and (max-width: 1171px) {
  .cart__items-container:not(.block > .cart__items-container):last-child {
    margin: 2rem 0 0;
    width: 100%;
    height: inherit;
  }
}
@media screen and (max-width: 750px) {
  .cart__items-container:not(.block > .cart__items-container):last-child {
    margin: 1rem 0 0;
  }
}
.cart__items-container:not(.block > .cart__items-container):last-child p {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.cart__items-container:not(.block > .cart__items-container):last-child span:not(p span) {
  display: block;
  text-align: left;
  font-size: 14px;
  color: rgba(42, 42, 42, 0.3137254902);
  line-height: 1.5;
  margin: 1rem 0;
}
.cart__items-container:not(.block > .cart__items-container):last-child button {
  background-color: #2a2a2a;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  height: 54px;
  user-select: none;
}
.cart__items-container.wrap_3 {
  min-height: 240px;
}
@media screen and (max-width: 1171px) {
  .cart__items-container.wrap_3 {
    min-height: auto;
  }
}
.cart__items-container__elem {
  background-color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 739px;
  height: 104px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .cart__items-container__elem {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem {
    margin-bottom: 1rem;
    flex-direction: column;
    height: 100%;
  }
}
.cart__items-container__elem:last-child {
  margin: 0;
}
.cart__items-container__elem div {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem div {
    width: 100%;
  }
}
.cart__items-container__elem div.wrap {
  user-select: none;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem div.wrap {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (max-width: 375px) {
  .cart__items-container__elem div.wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem div.wrap_1 {
    margin: 1rem;
    width: calc(100% - 2rem);
  }
}
.cart__items-container__elem div.wrap_2 {
  width: auto;
  text-wrap: nowrap;
}
.cart__items-container__elem div img {
  width: 150px;
  user-select: none;
}
@media screen and (max-width: 834px) {
  .cart__items-container__elem div img {
    width: 125px;
  }
}
@media screen and (max-width: 350px) {
  .cart__items-container__elem div img {
    width: 100px;
  }
}
.cart__items-container__elem div img[alt="Мармелад жевательный страйпсы"] {
  border-radius: 10px;
  margin: 0 1rem;
  zoom: 0.82;
}
.cart__items-container__elem div p:not(.cart__items-container__elem-items__item:first-child p):not(.cart__items-container__elem-items__item:last-child p) {
  font-size: 16px;
  text-align: left;
  line-height: 1.75;
  width: 240px;
}
@media screen and (max-width: 834px) {
  .cart__items-container__elem div p:not(.cart__items-container__elem-items__item:first-child p):not(.cart__items-container__elem-items__item:last-child p) {
    width: 200px;
  }
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem div p:not(.cart__items-container__elem-items__item:first-child p):not(.cart__items-container__elem-items__item:last-child p) {
    width: 100%;
  }
}
.cart__items-container__elem span:not(.cart__items-container__elem-items__item:first-child span) {
  font-size: 18px;
  font-weight: 500;
  min-width: 175px;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem span:not(.cart__items-container__elem-items__item:first-child span) {
    min-width: auto;
  }
}
.cart__items-container__elem svg:not(.cart__items-container__elem-items__item:first-child span svg) {
  margin-right: 2rem;
  cursor: pointer;
  min-width: 18px;
  height: 18px;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem svg:not(.cart__items-container__elem-items__item:first-child span svg) {
    display: none;
    margin-right: 0;
  }
}
.cart__items-container__elem-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cart__items-container__elem-items:last-child {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem-items:last-child {
    flex-direction: column-reverse;
    height: 40px;
  }
}
@media screen and (max-width: 375px) {
  .cart__items-container__elem-items:last-child {
    height: 65px;
  }
}
.cart__items-container__elem-items__item:first-child {
  display: flex;
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  width: 113px;
  height: 40px;
}
.cart__items-container__elem-items__item:first-child p {
  font-size: 18px;
}
.cart__items-container__elem-items__item:first-child span {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
  padding: 0 0.75rem;
}
.cart__items-container__elem-items__item:first-child span svg {
  width: 16px;
}
.cart__items-container__elem-items__item:last-child {
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem-items__item:last-child {
    width: auto;
  }
}
.cart__items-container__elem-items__item:last-child p {
  font-size: 14px !important;
  color: rgba(42, 42, 42, 0.3137254902);
  margin-top: 8px;
  text-wrap: nowrap;
}
@media screen and (max-width: 750px) {
  .cart__items-container__elem-items__item:last-child p {
    margin: 0 0 0 8px;
  }
}
@media screen and (max-width: 375px) {
  .cart__items-container__elem-items__item:last-child p {
    margin: 8px 0 0 0;
  }
}

@media screen and (min-width: 750px) {
  .close2 {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .close2 {
    display: block !important;
    margin: 0 1rem;
    margin-right: 1rem !important;
  }
}

.checkout {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 48px 1rem 0;
  max-width: 764px;
  width: calc(100% - 2rem);
  min-height: calc(100vh - 13rem);
}
.checkout__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.checkout__items:first-child p {
  font-size: 32px;
  font-weight: 700;
}
.checkout__items:first-child hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.checkout__items-container {
  width: 100%;
}
.checkout__items-container:first-child {
  background-color: rgba(238, 238, 238, 0.3137254902);
  border-radius: 20px;
  margin: 2rem 0;
  padding: 2rem;
  font-size: 18px;
}
@media screen and (max-width: 625px) {
  .checkout__items-container:first-child {
    padding: 1rem;
  }
}
.checkout__items-container:nth-child(2) {
  background-color: #eeeeee;
  border-radius: 10px;
  display: flex;
  font-size: 24px;
  font-weight: 500;
  height: 62px;
  margin-bottom: 2rem;
  user-select: none;
}
@media screen and (max-width: 370px) {
  .checkout__items-container:nth-child(2) {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .checkout__items-container:nth-child(2) {
    font-size: 18px;
  }
}
.checkout__items-container:nth-child(2) p {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 50%;
  cursor: pointer;
}
.checkout__items-container:nth-child(2) p.active {
  background-color: #2a2a2a;
  color: white;
}
.checkout__items-container:nth-child(3) form {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .checkout__items-container:nth-child(3) form {
    flex-direction: column;
  }
}
.checkout__items-container:nth-child(3) form input {
  margin: 0 24px 24px 0;
  width: calc(50% - 12px);
  height: 70px;
  padding: 0 1.5rem;
  font-family: "Inter", sans-serif;
  border-radius: 20px;
  border: solid 1px rgba(42, 42, 42, 0.3137254902);
  font-size: 24px;
  font-weight: 400;
  user-select: none;
}
@media screen and (max-width: 370px) {
  .checkout__items-container:nth-child(3) form input {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .checkout__items-container:nth-child(3) form input {
    font-size: 20px;
  }
}
@media screen and (max-width: 340px) {
  .checkout__items-container:nth-child(3) form input {
    padding: 0 1rem;
    font-size: 20px;
  }
}
@media screen and (max-width: 625px) {
  .checkout__items-container:nth-child(3) form input {
    margin: 0 1rem 1rem 0;
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 480px) {
  .checkout__items-container:nth-child(3) form input {
    margin: 0 0 1rem 0;
    width: 100%;
  }
}
.checkout__items-container:nth-child(3) form input:nth-child(2n) {
  margin: 0 0 24px 0;
}
@media screen and (max-width: 625px) {
  .checkout__items-container:nth-child(3) form input:nth-child(2n) {
    margin: 0 0 1rem 0;
  }
}
.checkout__items-container:nth-child(3) form input#address {
  width: 100%;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 625px) {
  .checkout__items-container:nth-child(3) form input#address {
    margin: 0 0 1rem 0;
  }
}
.checkout__items-container:nth-child(3) form input[type=submit] {
  cursor: pointer;
  margin: 0;
  border: none;
  width: 100%;
  color: white;
  background-color: #A65E2E;
}
.checkout__items-container:nth-child(3) form textarea {
  border-radius: 20px;
  border: solid 1px rgba(42, 42, 42, 0.3137254902);
  font-size: 24px;
  font-weight: 400;
  user-select: none;
  width: 100%;
  padding: 1.5rem;
  min-height: 140px;
  font-family: "Inter", sans-serif;
  resize: vertical;
}
@media screen and (max-width: 370px) {
  .checkout__items-container:nth-child(3) form textarea {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .checkout__items-container:nth-child(3) form textarea {
    font-size: 22px;
  }
}
@media screen and (max-width: 340px) {
  .checkout__items-container:nth-child(3) form textarea {
    padding: 1rem;
    font-size: 20px;
  }
}
.checkout__items-container:nth-child(3) form div {
  display: flex;
  margin-top: 24px;
}
.checkout__items-container:nth-child(3) form div p {
  margin-left: 1rem;
  line-height: 1.75;
  font-size: 20px;
  font-weight: 400;
}
.checkout__items-container:nth-child(3) form div p a {
  color: #A65E2E;
}
@media screen and (max-width: 768px) {
  .checkout__items-container:nth-child(3) form div p {
    margin: 1rem 0 0;
  }
}
@media screen and (max-width: 682px) {
  .checkout__items-container:nth-child(3) form div p {
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .checkout__items-container:nth-child(3) form div p {
    font-size: 18px;
  }
}
@media screen and (max-width: 340px) {
  .checkout__items-container:nth-child(3) form div p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .checkout__items-container:nth-child(3) form div {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 625px) {
  .checkout__items-container:nth-child(3) form div {
    margin-top: 1rem;
  }
}
.checkout__items-container__elem {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  height: 50px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 625px) {
  .checkout__items-container__elem {
    height: auto;
  }
}
.checkout__items-container__elem:last-child {
  font-size: 20px;
  height: 70px;
  margin: 0;
}
.checkout__items-container__elem:last-child p {
  font-weight: 600;
}
.checkout__items-container__elem:last-child p:last-child {
  font-weight: 600;
}
.checkout__items-container__elem p:last-child {
  font-weight: 500;
  text-wrap: nowrap;
  margin-left: 1rem;
}
.checkout__items-container.min {
  display: flex;
  font-size: 24px;
  line-height: 1.65;
}
.checkout__items-container.min div p {
  font-weight: 500;
}
.checkout__items-container.min div span {
  color: rgba(0, 0, 0, 0.2509803922);
}
.checkout__items-container.min svg {
  margin-left: 2rem;
}
@media screen and (max-width: 680px) {
  .checkout__items-container.min svg {
    margin: 0 0 1rem;
  }
}
@media screen and (max-width: 680px) {
  .checkout__items-container.min {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .checkout__items-container.min {
    font-size: 18px;
  }
}
.checkout + .send {
  background-color: white;
}
.checkout + .send .send-items {
  max-width: 550px;
}
.checkout + .send span {
  line-height: 1.65;
  margin: 1rem 0 0;
}
@media screen and (max-width: 400px) {
  .checkout + .send span {
    font-size: 16px;
  }
}
.checkout + .send a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  background-color: #2a2a2a;
  color: white;
  margin: 2rem 1rem 0;
}
@media screen and (max-width: 400px) {
  .checkout + .send a {
    margin: 1.75rem 1rem 0;
  }
}
@media screen and (max-width: 370px) {
  .checkout + .send a {
    font-size: 18px;
  }
}

.req {
  color: red;
  font-size: 24px;
  position: absolute;
  margin: 1.2rem 1.5rem;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.req__1 {
  margin-left: 80px;
}
@media screen and (max-width: 370px) {
  .req__1 {
    margin-left: 72px;
  }
}
@media screen and (max-width: 340px) {
  .req__1 {
    margin-left: calc(72px - 0.5rem);
  }
}
.req__2 {
  margin-top: 113px;
  margin-left: 127px;
}
@media screen and (max-width: 625px) {
  .req__2 {
    margin-top: calc(113px - 0.5rem);
  }
}
@media screen and (max-width: 480px) {
  .req__2 {
    margin-top: 187px;
  }
}
@media screen and (max-width: 370px) {
  .req__2 {
    margin-left: 113px;
  }
}
@media screen and (max-width: 340px) {
  .req__2 {
    margin-left: calc(113px - 0.5rem);
  }
}
.req__3 {
  margin-top: 207px;
  margin-left: 102px;
}
@media screen and (max-width: 625px) {
  .req__3 {
    margin-top: calc(207px - 1rem);
  }
}
@media screen and (max-width: 480px) {
  .req__3 {
    margin-top: 361px;
  }
}
@media screen and (max-width: 370px) {
  .req__3 {
    margin-left: 90px;
  }
}
@media screen and (max-width: 340px) {
  .req__3 {
    margin-left: calc(90px - 0.5rem);
  }
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #2a2a2a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #A65E2E;
}

html,
body {
  font-family: "Inter", sans-serif;
  color: #2a2a2a;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-weight: 500;
  cursor: pointer;
  outline: none;
  border: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  max-width: calc(1140px + 2rem);
  width: 100%;
  justify-content: space-between;
  height: 100%;
}

.wrapper > .wrapper__items:first-child {
  height: 100%;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  background-color: white;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 99;
}
#loader img {
  height: 100px;
}
#loader.hidden {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  user-select: none;
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
}
.nav p {
  font-size: 32px;
  font-weight: 900;
}
.nav ul {
  list-style: none;
  display: flex;
  padding-right: 8rem;
}
.nav ul li {
  margin-right: 35px;
  font-weight: 500;
}
.nav ul li:last-child {
  margin: 0;
}
@media screen and (max-width: 750px) {
  .nav ul {
    display: none;
  }
}
.nav img {
  cursor: pointer;
  width: 18px;
  height: 23px;
}
.nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #A65E2E;
  font-size: 9px;
  font-weight: 700;
  height: 15px;
  min-width: 15px;
  outline: 1px solid white;
  outline-offset: -1px;
  color: white;
  position: absolute;
  top: 1rem;
  margin-left: 0.5rem;
  padding: 2px;
}
.nav__active {
  color: #A65E2E;
}
.nav__close {
  display: none;
  height: 18px !important;
  width: 20px !important;
  margin-left: 1rem;
}
@media screen and (max-width: 750px) {
  .nav__close {
    display: inline;
  }
}

.menu {
  display: none;
  user-select: none;
  background-color: rgba(238, 238, 238, 0.3137254902);
  height: 70px;
  width: 100%;
}
.menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  height: 100%;
}
.menu ul li {
  font-weight: 500;
  margin: 0 0.5rem;
}
.menu__active {
  color: #A65E2E;
}

.contacts {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .contacts {
    margin-top: 48px;
  }
}
.contacts__items {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 350px) {
  .contacts__items {
    flex-direction: column;
  }
}
.contacts__items:first-child {
  flex-direction: column;
  margin-bottom: 2rem;
}
.contacts__items:first-child p {
  font-size: 32px;
  font-weight: 700;
}
.contacts__items:first-child hr {
  margin-top: 25px;
  width: 75px;
  border: solid 1px #A65E2E;
}
.contacts__container {
  display: flex;
}
.contacts__container, .contacts__container a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 715px) {
  .contacts__container:not(a), .contacts__container a:not(a) {
    align-items: flex-start;
  }
}
@media screen and (max-width: 350px) {
  .contacts__container:not(a), .contacts__container a:not(a) {
    align-items: center;
  }
}
.contacts__container img {
  user-select: none;
}
@media screen and (max-width: 715px) {
  .contacts__container:first-child {
    flex-direction: column;
  }
}
@media screen and (max-width: 715px) {
  .contacts__container:first-child a:first-child img {
    width: 56px;
  }
}
@media screen and (max-width: 370px) {
  .contacts__container:first-child a:first-child img {
    width: 46px;
  }
}
.contacts__container:first-child a:first-child, .contacts__container:first-child a:nth-child(2) {
  margin-right: 2rem;
}
@media screen and (max-width: 370px) {
  .contacts__container:first-child a:nth-child(2) img {
    width: 40px;
  }
}
.contacts__container:first-child a:nth-child(2) p {
  margin-left: 1rem;
}
.contacts__container:first-child a p {
  font-weight: 500;
  font-size: 20px;
  margin-left: 0.5rem;
}
@media screen and (max-width: 431px) {
  .contacts__container:last-child {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 350px) {
  .contacts__container:last-child {
    flex-direction: row;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 715px) {
  .contacts__container:last-child a img {
    width: 50px;
  }
}
@media screen and (max-width: 370px) {
  .contacts__container:last-child a img {
    width: 40px;
  }
}
.contacts__container:last-child a:last-child {
  margin-left: 0.75rem;
}
@media screen and (max-width: 431px) {
  .contacts__container:last-child a:last-child {
    margin-top: 0.5rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 350px) {
  .contacts__container:last-child a:last-child {
    margin-top: 0;
    margin-left: 0.75rem;
  }
}

.footer {
  max-width: 1140px;
  width: calc(100% - 2rem);
  margin: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin: 48px 1rem 1rem;
}
@media screen and (max-width: 540px) {
  .footer {
    flex-direction: column-reverse;
  }
}
.footer p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  .footer p {
    line-height: 2;
    text-align: center;
  }
}
@media screen and (max-width: 370px) {
  .footer p {
    font-size: 18px;
  }
}
@media screen and (max-width: 340px) {
  .footer p {
    font-size: 16px;
  }
}
.footer p a {
  color: #A65E2E;
}
.footer p a:hover {
  text-decoration: underline;
}

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

/* NEW */
.nav ul li a:hover,
.menu ul li a:hover,
.categories ul li:hover,
.contacts-form form p a:hover,
.checkout__items-container:nth-child(3) form div p a:hover {
    text-decoration: underline;
}
.main__container button:hover,
.contacts-form form input[type=submit]:hover,
.checkout__items-container:nth-child(3) form input[type=submit]:hover {
    background-color: #8a4e26;
}
.products__container-buttons button:hover,
.products__cart-items div button:hover {
    box-shadow: 1px 1px 3px rgba(100, 100, 100, 0.3);
}
.products__container-buttons button:last-child:hover,
.products__detail-items__product-block__elem:last-child div button:hover,
.products__cart-items div a button:hover,
.cart__items-container:not(.block > .cart__items-container):last-child button:hover,
.checkout + .send a:hover {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}