/* basic-css================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Jost;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body {
  background-color: #fff;
  position: relative;
}
::selection {
  color: #fff;
  background: #000;
}

/* navigation ---------------------------------*/
.navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 30px 50px;
  overflow: hidden;
}
.navigation-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 30px 50px;
  overflow: hidden;
}
.navigation-checkout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  max-width: 2500px;
  margin: auto;
  width: 100%;
  padding: 30px 50px;
  overflow: hidden;
}
.navigation .menu-icon {
  cursor: pointer;
  float: right;
  padding: 20px 10px;
  z-index: 110;
}
.navigation .menu-icon .nav-icon {
  background-color: #000;
  display: block;
  position: relative;
  height: 5px;
  width: 40px;
  border-radius: 10px;
  transition: background 0.2s ease-out;
}
.navigation .menu-icon .nav-icon::before,
.navigation .menu-icon .nav-icon::after {
  content: "";
  position: absolute;
  background-color: #000000;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-out;
}
.navigation .menu-icon .nav-icon::before {
  top: 12px;
  border-radius: 10px;
}
.navigation .menu-icon .nav-icon::after {
  top: -12px;
  border-radius: 10px;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon {
  background-color: transparent;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::before {
  transform: rotate(-45deg);
  top: 0;
}
.navigation .menu-btn:checked ~ .menu-icon .nav-icon::after {
  transform: rotate(45deg);
  top: 0;
}
.menu-btn {
  display: none;
}
.menu-btn:checked ~ .menu {
  top: 0;
  bottom: 0;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#menu-btn:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* menu--------------------------------- */
.menu {
  position: fixed;
  left: 0;
  background-color: #000000ee;
  z-index: 109;
  flex-direction: column;
  top: -100vh;
  bottom: 100vh;
  display: flex;
  gap: 20px;
  transition: all ease 0.5s;
  padding: 97px 40px 35px;
  align-items: center;
  overflow: hidden;
}

.menu li a {
  color: #e6e3e398;
  display: block;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.menu li a:hover {
  color: #ffffff;
  transition: all 0.3s ease;
}
.menu .logo2 {
  max-width: 120px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .logo2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.web {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}
.inst {
  color: #e6e3e398;
  font-size: 40px;
  transition: all 0.3s ease;
}
.inst:hover {
  color: #ffffff;
  transition: all 0.3s ease;
}
.tg {
  color: #e6e3e398;
  font-size: 40px;
  transition: all 0.3s ease;
}
.tg:hover {
  color: #ffffff;
  transition: all 0.3s ease;
}

footer {
  border-top: 1px solid #e6e3e398;
  width: 100%;
  padding: 0;
  margin-top: auto;
}
.copyright {
  display: block;
  color: #e6e3e398;
  font-size: 14px;
  margin-top: 10px;
}
.copyright span {
  color: #e6e3e398;
}
/* navbar------------------------------ */
#basket-btn {
  display: none;
}
.basket-icon {
  z-index: 110;
  cursor: pointer;
}
.basket-icon .fa-basket-shopping {
  font-size: 2rem;
}
.basket-icon .fa-xmark {
  font-size: 3rem;
}
.basket-icon i {
  position: relative;
  display: block;
}
.basket-icon .fa-xmark {
  text-align: center;
  display: none;
  padding: 0px 10px;
}
.basket-icon .fa-basket-shopping {
  text-align: center;
  display: block;
  padding: 0px 10px;
}
#basket-btn:checked ~ .basket-icon .fa-xmark {
  display: block;
}

#basket-btn:checked ~ .basket-icon .fa-basket-shopping {
  display: none;
}
#basket-btn:checked ~ .navbar {
  top: 0;
  bottom: 0;
}
.navbar {
  position: fixed;
  right: 0;
  background-color: #000000ee;
  z-index: 109;
  top: -100vh;
  bottom: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all ease 0.5s;
  padding: 97px 40px 35px;
  align-items: center;
  overflow: hidden;
}
.scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 15px;
}

.checkout {
  padding: 20px;
  margin-top: auto; /* Прижимаем к низу */
}

/* Кастомный скроллбар */
.scrollable-content::-webkit-scrollbar {
  width: 6px;
}

.scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
  background: #1d1d1da8;
  border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #2c2c2c6c;
}
.navbar li {
  color: #ffffff;
  max-width: 250px;
  display: block;
  text-align: center;
  font-size: 14px;
}
.navbar h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.mi-hr {
  border: solid 1px #e6e3e398;
  border-radius: 10px;
  height: 1px;
  width: 250px;
  margin: 5px 0 5px 0;
  z-index: 109;
}
.navbar h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  padding-bottom: 5px;
}
.checkout {
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-btn {
  width: 180px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e3e348;
  border: 1px solid #ffffff2c;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ffffff9f;
  letter-spacing: 1px;
  transition: all ease 0.3s;
}
.checkout-btn:hover {
  font-weight: 500;
  font-size: 0.95rem;
  color: #000000;
  background-color: #ffffff;
  transition: all ease 0.3s;
}
/* container----------------------------------------- */
#container {
  max-width: 1100px;
  width: 100%;
  margin: 30px auto;
}
.post-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 35px;
  margin: 20px 0;
}
.post-box {
  height: 460px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.post-box .post-img {
  width: 100%;
}
.post-box .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-box .post-img.post-2 {
  height: 256px;
}
.post-box .main-slider-text {
  margin: 15px 0;
}
.post-box .main-slider-text h1 {
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  z-index: 110;
}
.post-box .main-slider-text span {
  font-size: 15px;
  font-weight: 400;
  color: #0c0c0cb0;
  z-index: 110;
}
.post-box .main-slider-text h2 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  z-index: 110;
}
.post-box .main-slider-text h3 {
  font-weight: 500;
  font-size: 16px;
  margin: 10px 0;
  text-decoration: line-through;
  color: #0c0c0c79;
  z-index: 110;
}
.post-box .main-slider-text p {
  color: #f72c2cc2;
  z-index: 110;
}
.post-box .main-slider-text .price {
  display: flex;
  justify-content: flex-start;
  text-align: left;
}
.footer {
  margin: 500px;
}

.main-slider-overlay {
  position: absolute;
  width: 250px;
  height: 260px;
  left: 0;
  background-color: rgba(27, 27, 27, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all ease 0.7s;
  opacity: 0;
  border-radius: 15px;
}
.post-box:hover .main-slider-overlay {
  opacity: 1;
  transition: all ease 0.7s;
}
/* ITEMS------------------------- */
#header-item {
  display: flex;
  justify-content: space-between;
}

.fa-arrow-left {
  font-size: 30px;
  margin: 20px 30px;
  color: #0c0c0c79;
  transition: all ease 0.2s;
}
n .fa-arrow-left:hover {
  color: #000;
  transition: all ease 0.2s;
}
.back {
  display: flex;
  justify-content: center;
  align-items: center;
}
.back span {
  font-size: 25px;
  margin: 20px 0;
  color: #0c0c0c9c;
  transition: all ease 0.2s;
}
.back span:hover {
  color: #000;
  transition: all ease 0.2s;
}
.close {
  display: flex;
  justify-content: center;
  align-items: center;
}
.close i {
  color: #0c0c0c9c;
  font-size: 30px;
  margin: 20px 30px;
  transition: all ease 0.2s;
  cursor: pointer;
}
.close i:hover {
  transition: all ease 0.2s;
  color: #000;
}
/* ITEM------------------------------- */
.item {
  max-width: 1160px;
  width: 100%;
  margin: 30px auto;
  display: flex;
}
.items {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
}
.slider-img {
  overflow: hidden;
  cursor: pointer;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease 0.5s;
  transform: scale(0.95);
}
.slider-img:hover {
  transform: scale(1);
}
.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 110;
  display: none;
}
.pop-up img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
}
.pop-up span {
  position: fixed;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #eeeeff;
  font-size: 33px;
  text-align: center;
  line-height: 33px;
  border-radius: 20%;
  cursor: pointer;
  z-index: 111;
}
.description {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: 100%;
  text-align: left;
}
.description p {
  font-size: 19px;
}
.dolyami-btn {
  width: 380px;
  height: 44px;
  display: flex;
  align-items: center;
  background-color: #e6e3e348;
  border: 1px solid #0e0e0e57;
  border-radius: 10px;
  text-transform: uppercase;
  color: #0000009f;
  letter-spacing: 1px;
  transition: all ease 0.3s;
  margin: 20px 0px;
}
.dolyami-btn:hover {
  color: #fff;
  background-color: #000;
  transition: all ease 0.3s;
}
.dolyami-btn img {
  padding-right: 15px;
  padding-left: 10px;
}
.dolyami-btn span {
  width: 257px;
  height: 20px;
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
}
.size {
  position: relative;
  display: inline-block;
  width: 150px;
}
.size-name {
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px 25px;
  display: inline-block;
}
.size-name .no-presence {
  color: #000;
}
.size.active ul {
  display: block;
}
.size ul {
  position: absolute;
  left: 0;
  width: 150px;
  background: #000000b4;
  display: none;
  border-radius: 10px;
  top: 35px;
  list-style: none;
  z-index: 110;
}
.size ul li {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all ease 0.01s;
  text-transform: uppercase;
}
.size ul li:hover {
  transition: all ease 0.01s;
  border: solid rgb(255, 255, 255) 2px;
}
.size ul li a {
  color: #fff;
  margin: 0 5px;
  display: block;
}
.pattern {
  position: relative;
  display: inline-block;
  width: 160px;
}
.pattern.basic {
  width: 105px;
}
.pattern-name {
  color: #000;
  font-size: 20px;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px 25px;
  display: inline-block;
}
.pattern-name.basic {
  padding: 5px 19px;
}
.pattern.active ul {
  display: block;
}
.pattern ul {
  position: absolute;
  left: 0;
  width: 135px;
  background: #000000b4;
  display: none;
  border-radius: 10px;
  top: 40px;
  list-style: none;
  z-index: 110;
}
.pattern ul li {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all ease 0.01s;
  text-transform: uppercase;
}
.pattern ul li:hover {
  transition: all ease 0.01s;
  border: solid rgb(255, 255, 255) 2px;
}
.pattern ul li a {
  color: #fff;
  margin: 0 5px;
  display: block;
}
.buy-now-btn {
  width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000c7;
  border-radius: 10px;
  text-transform: uppercase;
  color: #ffffffbe;
  letter-spacing: 1px;
  transition: all ease 0.3s;
  margin: 20px 0px;
  font-weight: 600;
}
.buy-now-btn.no-presence {
  background-color: #00000080;
  color: #fff;
  opacity: 0.7;
}
.buy-now-btn.no-presence:hover {
  background-color: #00000080;
  color: #fff;
  opacity: 0.7;
}
.buy-now-btn:hover {
  color: #fff;
  background-color: #000000;
  transition: all ease 0.3s;
}
.cart-item {
  position: relative;
  padding-right: 30px;
}

.cart-item h3 {
  margin: 0 0 5px 0;
  font-size: 1.1em;
}

.cart-item p {
  margin: 2px 0;
  font-size: 0.9em;
  color: #ffffffd0;
}

.has-items {
  width: 100%;
  padding: 10px;
}
.cart-item {
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
}

.cart-item h3 {
  margin: 0 0 5px 0;
  font-size: 1.1em;
  color: #ffffffd0;
}

.cart-empty {
  padding: 20px;
  text-align: center;
  color: #ffffffd0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 8px;
  margin: 10px 0;
}

.cart-summary {
  display: block;
  gap: 20px;
  align-items: center;
}
.remove-item {
  position: absolute;
  right: 3%;
  top: 10%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  padding: 5px;
}
.remove-item:hover {
  color: #ffffff;
}
.info form {
  position: relative;
}
.info form input {
  border: 1px solid #000000;
  height: 56px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 22px;
  padding-bottom: 5px;
  line-height: 1.55;
  margin-bottom: 20px;
}
.info form label {
  display: flex;
  width: 538px;
  font-size: 22px;
  margin-bottom: 7px;
}
.info h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin: 15px 0px 25px;
}
.info-description {
  color: rgb(80, 80, 80);
  margin: -15px 0px 0px;
  font-size: 18px;
  color: #666;
}
.suggestions-container {
  position: absolute;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: white;
  z-index: 110;
  display: none;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.25);
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f0f0f0;
}

.info input {
  width: 100%;
  padding: 8px;
  margin: 5px 0 15px;
}
.checkout-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkout-item-btn {
  width: 538px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #16161648;
  border: 1px solid #ffffff2c;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #ffffff9f;
  letter-spacing: 1px;
  margin-top: 70px;
  transition: all ease 0.3s;
}
.checkout-item-btn:hover {
  font-weight: 500;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: #000;
  transition: all ease 0.3s;
}
.cart-item-checkout {
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #000000;
  border-radius: 15px;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart-item-checkout h3 {
  color: #000;
}
.remove-item-checkout {
  position: absolute;
  right: 3%;
  top: 10%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
  padding: 5px;
}
.remove-item-checkout:hover {
  color: #000000;
}
.mi-hr-checkout {
  border: solid 1px #00000098;
  border-radius: 10px;
  height: 1px;
  width: 350px;
  margin: 10px 0 10px 0;
  z-index: 109;
}
.navbar-checkout {
  right: 0;
  z-index: 109;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all ease 0.5s;
  padding: 100px 40px 35px;
  align-items: center;
  overflow: hidden;
}
.items-checkout {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  float: left;
  margin-left: 60px;
  margin-right: 60px;
}
.cart-total-checkout {
  display: flex;
  justify-content: flex-end;
  align-items: end;
}
.cart-total-checkout h2 {
  margin: 22px 25px;
}
.cart-summary-checkout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.total {
  font-size: 21px;
  font-weight: 600;
}
.nav-description {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-description h3 {
  font-size: 32px;
  font-weight: 700;
}
.mi-hr-nav {
  border: solid 1px #00000029;
  border-radius: 10px;
  height: 1px;
  width: 100%;
  margin: -34px 0px 0px 0;
  z-index: 109;
}
.delivery {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.delivery h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
  font-weight: 500;
}
.delivery p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
}
.offer {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.offer h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
}
.offer p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
}
.policy {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
}
.policy-description p {
  font-size: 25px;
  font-weight: 500;
}
.policy-description ul {
  list-style-type: circle;
}
.policy-description ul li {
  font-size: 20px;
  line-height: 1.55;
  margin: 10px 25px;
}
.policy-description span {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
}
.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.93);
  z-index: 111;
  display: none;
}

.popup-swiper {
  height: 100%;
  padding: 40px;
}

.popup-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-swiper img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.popup-swiper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.popup-swiper img {
  pointer-events: none;
}
.swiper-pagination-fraction {
  color: #ffffff;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.popup-swiper .swiper-slide-duplicate {
  display: none !important;
}
/* Responsive-------------------------------- */
@media (max-width: 1730px) {
  .basket-icon .fa-xmark {
    color: #fff;
  }
}
@media (max-width: 1535px) {
  .navigation .menu-btn:checked ~ .menu-icon .nav-icon::before {
    background-color: #fff;
  }
  .navigation .menu-btn:checked ~ .menu-icon .nav-icon::after {
    background-color: #fff;
  }
}
@media (max-width: 1250px) {
  .navbar {
    top: -100vh;
    bottom: 150vh;
  }
  .menu {
    top: -100vh;
    bottom: 150vh;
  }
  .item {
    padding: 10px 40px;
  }
  .slider-img {
    transform: scale(0.95);
  }
  .slider-img:hover {
    transform: scale(0.95);
  }
}
@media (max-width: 1150px) {
  .navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .main-slider-overlay {
    height: 325px;
    width: 326px;
  }
  .basket-icon {
    display: flex;
    justify-content: flex-end;
  }
  .post-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .post-box .post-img.post-2 {
    height: 325px;
  }
  #container {
    margin: 0;
    padding: 0px 40px;
  }
  .item.check {
    display: block;
  }
}
@media (max-width: 1030px) {
  .main-slider-overlay {
    height: 290px;
    width: 296px;
  }
  .menu .logo2 {
    max-width: 80px;
    margin-bottom: 29px;
  }
  .web {
    margin: 0;
  }
}
@media (max-width: 950px) {
  .post-box .post-img.post-2 {
    height: 273px;
  }
  .main-slider-overlay {
    height: 263px;
    width: 263px;
  }
  .items {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 850px) {
  .post-container {
    grid-template-columns: 1fr 1fr;
  }
  .post-box .post-img.post-2 {
    height: 370px;
  }
  .navbar {
    top: -150vh;
    bottom: 150vh;
  }
  .main-slider-overlay {
    height: 364px;
    width: 364px;
  }
  .post-box {
    height: 500px;
  }
  .item {
    display: block;
  }
  .description {
    margin-bottom: 50px;
  }
  .back span {
    font-size: 20px;
  }
  .fa-arrow-left {
    font-size: 20px;
    margin: 20px 10px;
  }
}
@media (max-width: 780px) {
  .main-slider-overlay {
    height: 330px;
    width: 335px;
  }
}
@media (max-width: 750px) {
  .post-box .post-img.post-2 {
    height: 322px;
  }
  .main-slider-overlay {
    height: 314px;
    width: 314px;
  }
  .navbar {
    top: -150vh;
    bottom: 150vh;
  }
}
@media (max-width: 670px) {
  .post-box .post-img.post-2 {
    height: 282px;
  }
  .main-slider-overlay {
    height: 280px;
    width: 280px;
  }
  .navbar {
    top: -150vh;
    bottom: 150vh;
  }
}
@media (max-width: 600px) {
  .post-container {
    grid-template-columns: 1fr;
  }
  .post-box {
    height: 100%;
  }
  .basket-icon .fa-basket-shopping {
    font-size: 2.5rem;
  }
  .basket-icon .fa-xmark {
    font-size: 2rem;
  }
  .main-slider-overlay {
    width: 510px;
    height: 516px;
  }
  .navigation-checkout {
    padding: 30px 0px;
  }
}
@media (max-width: 570px) {
  .logo img {
    width: 290px;
  }
  .main-slider-overlay {
    width: 482px;
    height: 440px;
  }
}
@media (max-width: 530px) {
  .main-slider-overlay {
    width: 446px;
    height: 452px;
  }
  .delivery h1 {
    font-size: 80px;
  }
  .offer {
    max-width: 400px;
  }
  .policy {
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  .main-slider-overlay {
    width: 416px;
    height: 416px;
  }
  .logo img {
    width: 250px;
  }
  .navbar {
    padding: 97px 108px 35px;
    z-index: 110;
  }
  .basket-icon {
    z-index: 111;
  }

  .navigation .menu-icon {
    z-index: 110;
  }
  .menu {
    padding: 97px 153px 36px;
  }
  .main-slider-overlay {
    width: 393px;
    height: 414px;
  }
  .navigation-item {
    padding: 0;
  }
  .pop-up span {
    right: 0;
    left: 15px;
  }
  .description {
    margin-left: 0;
  }
  .item {
    padding: 10px 20px;
  }
  .basket-icon .fa-basket-shopping {
    font-size: 1.5rem;
  }
  .navigation .menu-icon .nav-icon {
    height: 2px;
    width: 21px;
  }
  .navigation .menu-icon .nav-icon::before {
    top: 7px;
  }
  .navigation .menu-icon .nav-icon::after {
    top: -7px;
  }
  .delivery {
    max-width: 400px;
  }
  .info form label {
    width: 400px;
  }
  .nav-description h3 {
    font-size: 25px;
  }
  .back span {
    font-size: 18px;
  }
}
@media (max-width: 490px) {
  .menu {
    padding: 97px 136px 36px;
  }
}
@media (max-width: 470px) {
  .main-slider-overlay {
    width: 393px;
    height: 414px;
  }
  .menu {
    padding: 97px 135px 36px;
  }
  .navbar {
    padding: 97px 85px 35px;
  }
  .item {
    padding: 10px 20px;
  }
  .description {
    margin-left: 0;
  }
  .back span {
    font-size: 20px;
  }
  .fa-arrow-left {
    font-size: 20px;
    margin: 20px 10px;
  }
}
@media (max-width: 450px) {
  .logo img {
    width: 210px;
  }
  .main-slider-overlay {
    width: 336px;
    height: 342px;
  }
  .menu {
    padding: 97px 113px 36px;
  }
  .navbar {
    padding: 97px 63px 35px;
  }
  .delivery {
    max-width: 320px;
  }
  .delivery h1 {
    font-size: 60px;
  }
  .back span {
    display: none;
  }
}
@media (max-width: 400px) {
  .main-slider-overlay {
    width: 312px;
    height: 319px;
  }
  .logo img {
    width: 160px;
  }
  .menu {
    padding: 50px 86px 36px;
  }
  .navbar {
    padding: 97px 37px 35px;
  }
  .dolyami-btn {
    width: 290px;
  }
  .dolyami-btn span {
    width: 175px;
  }
  .offer {
    max-width: 320px;
  }
  .policy {
    max-width: 320px;
  }
  .info form label {
    width: 300px;
  }
  .fa-arrow-left {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .cart-item-checkout {
    width: 250px;
  }
  .mi-hr-checkout {
    width: 250px;
  }
  .nav-description h3 {
    font-size: 22px;
  }
}
@media (max-width: 370px) {
  .main-slider-overlay {
    width: 282px;
    height: 290px;
  }
  .nav-description h3 {
    font-size: 20px;
  }
}
@media (max-width: 350px) {
  .main-slider-overlay {
    width: 252px;
    height: 258px;
  }
  .logo img {
    width: 90px;
  }
  .menu {
    padding: 97px 60px 36px;
  }
  .navbar {
    padding: 97px 12px 35px;
  }
  .basket-icon .fa-xmark {
    font-size: 33px;
  }
  .delivery p {
    font-size: 18px;
  }
}
@media (max-width: 330px) {
  .main-slider-overlay {
    width: 245px;
    height: 252px;
  }
  .delivery {
    max-width: 250px;
  }
  .delivery h1 {
    font-size: 40px;
  }
  .offer {
    max-width: 270px;
  }
  .policy {
    max-width: 270px;
  }
  .info form label {
    width: 250px;
  }
}
@media (max-width: 300px) {
  .main-slider-overlay {
    width: 207px;
    height: 215px;
  }
  .menu {
    padding: 97px 52px 36px;
  }
  .navbar {
    padding: 97px 1px 3px;
  }
  .nav-description h3 {
    font-size: 17px;
  }
  .info form label {
    width: 230px;
  }
  .cart-item-checkout {
    width: 240px;
  }
  .mi-hr-checkout {
    width: 240px;
  }
}
