* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.modal__wrapper .modal {
  background: white;
  padding: 25px;
  border-radius: 5px;
  height: 350px;
  width: 300px;
}

.modal__wrapper .modal__title {
  text-align: center;
}

.modal__wrapper .modal__close {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid black;
  border-radius: 30px;
  height: 50px;
  width: 150px;
  cursor: pointer;
}

@font-face {
  font-family: "";
  src: url("") format("");
}

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

input,
button,
textarea {
  font-family: "Inter", sans-serif;
}

input:focus,
button:focus,
textarea:focus {
  outline: none;
}

input {
  border: 1px solid transparent;
}

input:valid {
  border: 1px solid #909090;
}

section {
  padding: 50px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.section-pretitle {
  max-width: 920px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

.big-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.big-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.8;
  padding-top: 10px;
}

.section-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  padding-bottom: clamp(3.438rem, 2.083rem + 5.56vw, 4.25rem);
}

.section-top .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.section-top .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.section-top .arrows div {
  cursor: pointer;
}

.section-top h3 {
  font-size: clamp(0.875rem, 0.815rem + 0.25vw, 1rem);
  font-family: "Poppins", sans-serif;
  color: #BA3620;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.section-top h3::before {
  content: "";
  width: 20px;
  height: 38px;
  background: #BA3620;
  display: inline-block;
  border-radius: 4px;
}

.section-top h2 {
  font-size: clamp(1rem, 0.398rem + 2.47vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 1.7px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f7f7ff;
}

body.locked {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 12px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: gray;
}

summary {
  list-style-type: none;
}

summary svg {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

details[open] summary svg {
  rotate: 180deg;
}

details {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 600;
  cursor: pointer;
}

details .dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  max-width: 300px;
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}

details .dropdown-menu h3 {
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

details .dropdown-menu h3 a {
  color: #d14836;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  padding: 18px 20px 16px;
  display: block;
  text-align: center;
  opacity: 1;
}

details .dropdown-menu .links a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 6px 0;
  color: #555555;
  text-align: left;
  opacity: 1;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

details .dropdown-menu .links a:hover {
  color: #ba3620;
}

details .dropdown-menu .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 20px;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.link {
  color: inherit;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #000;
  -webkit-transition: width 0.5s;
  -o-transition: width 0.5s;
  transition: width 0.5s;
}

.link:hover::after {
  width: 100%;
  left: 0;
  background-color: #000;
}

nav {
  background-color: #333333;
  overflow: visible;
  position: relative;
  z-index: 200;
}

.nav__wrapper {
  margin-top: 6px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(55, 52, 52, 0.4);
  border-top: 1px solid rgba(55, 52, 52, 0.4);
}

.nav__wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.navbar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}

.navbar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.navbar__inner .regis-btn {
  color: #fff;
  text-decoration: underline;
  padding-left: 15px;
  border-left: 1px solid #fff;
  line-height: 1.2;
}

.navbar__inner .regis-btn:hover {
  text-decoration: none;
}

.navbar__inner .login-btn {
  border-radius: 4px;
  color: #fff;
  padding: 12px 24px;
  background-color: #BA3620;
}

.navbar__inner .login-btn svg {
  width: 34px;
  height: 34px;
  display: none;
}

.logo {
  max-width: 140px;
  margin-right: auto;
}

.logo a {
  color: white;
}

.logo img {
  width: 100%;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.menu__top {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5555;
  width: 100%;
  background-color: #333333;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: none;
}

.menu__top img {
  width: 100px;
}

.menu__search {
  background-image: url('/static/imgs/search-icon.svg');
  background-repeat: no-repeat;
  background-position: 20px;
  background-size: 14px;
  margin: 26px 18px;
  padding: 15px;
  padding-left: 45px;
  font-family: Inter;
  font-size: 13.56px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0.2);
  color: #000;
  display: none;
}

.menu__search::-webkit-input-placeholder {
  color: #7e7e7e;
}

.menu__search::-moz-placeholder {
  color: #7e7e7e;
}

.menu__search:-ms-input-placeholder {
  color: #7e7e7e;
}

.menu__search::-ms-input-placeholder {
  color: #7e7e7e;
}

.menu__search::placeholder {
  color: #7e7e7e;
}

.menu details {
  display: none;
  border-bottom: 1px solid lightgray;
}

.menu details.material-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 0;
}

.menu details.material-nav summary {
  list-style: none;
  padding: 0;
  color: #ffffff;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menu details.material-nav summary::-webkit-details-marker {
  display: none;
}

.menu details.material-nav summary svg {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.menu details.material-nav summary svg path {
  fill: currentColor;
  fill-opacity: 0.85;
}

.menu details.material-nav[open] summary svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu details.material-nav .dropdown-menu {
  position: absolute !important;
  top: calc(100% + 14px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: min(720px, calc(100vw - 40px));
  max-width: calc(100vw - 32px);
  padding: 22px 26px 26px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #ba3620;
  background-color: #ffffff;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(180px, 1fr);
      grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 20px 28px;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  z-index: 1000;
  max-height: min(70vh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.menu details.material-nav .dropdown-menu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}

.menu details.material-nav .dropdown-menu h3 {
  margin: 0;
  padding: 8px 0 12px;
  border-bottom: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-transform: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: left;
}

.menu details.material-nav .dropdown-menu h3::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 16px;
  height: 1px;
  background-color: #eeeeee;
}

.menu details.material-nav .dropdown-menu h3 a {
  color: #d34127;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
  width: auto;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
  text-align: left;
}

.menu details.material-nav .dropdown-menu h3 a:hover {
  color: #ba3620;
}

.menu details.material-nav .dropdown-menu .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 14px 0 0;
  text-transform: none;
}

.menu details.material-nav .dropdown-menu .links a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555555;
  text-align: left;
  text-transform: none;
  letter-spacing: 0.01em;
}

.menu details.material-nav .dropdown-menu .links a:hover {
  color: #ba3620;
}

@media (max-width: 1100px) {
  .menu details.material-nav .dropdown-menu {
    -ms-grid-columns: minmax(160px, 1fr) minmax(160px, 1fr);
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    min-width: min(520px, calc(100vw - 40px));
  }
}

.menu details summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}

.menu details .dropdown-menu {
  position: static !important;
  border-top: 1px solid lightgray;
  background-color: #fff;
  padding: 0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: none;
  width: 100%;
  max-width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.menu details .dropdown-menu h3 {
  padding: 0;
  padding: 14px 25px 12px;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.menu details .dropdown-menu .links {
  padding: 12px 25px 16px;
  gap: 10px;
  text-transform: none;
}

.menu details .dropdown-menu .links a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #555555;
  letter-spacing: 0.01em;
}

.menu details .dropdown-menu .links a:hover {
  color: #ba3620;
}

.menu__item-link {
  font-weight: 600;
  color: white;
  letter-spacing: 0.2px;
}

.follow-box {
  margin-top: auto;
  display: none;
}

.follow-box h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 30px;
  padding-bottom: 0;
}

.follow-box .row {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  padding: 10px 30px;
}

.follow-box h4 {
  border-top: 1px solid lightgray;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  opacity: 0.6;
  padding: 30px;
}

.burger {
  display: none;
  cursor: pointer;
}

.btn-close {
  cursor: pointer;
}

.hero {
  padding: clamp(3.125rem, 1.62rem + 6.17vw, 6.25rem) 0;
  padding-bottom: 0px;
  /* .hero__wrapper */
  /* .hero__box */
  /* .hero__form */
}

.hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 20px 20px;
  padding-bottom: 50px;
}

.hero__box h1 {
  font-weight: 600;
  font-size: clamp(1.75rem, 1.389rem + 1.48vw, 2.5rem);
  line-height: 1.3;
}

.hero__box p {
  font-size: 16px;
  line-height: 1.1;
  color: #474746;
  margin: 30px 0 60px;
}

.hero__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.2);
  border-radius: 40px;
  overflow: hidden;
  width: 100%;
  max-width: clamp(12.5rem, 6.481rem + 24.69vw, 28rem);
}

.hero__form input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  max-width: none;
  width: auto;
  font-size: 17px;
  font-weight: 600;
  padding: 20px 30px 20px 70px;
  border-radius: 0;
  background-image: url('/static/imgs/search-icon.svg');
  background-size: 20px;
  background-position: 30px;
  background-repeat: no-repeat;
  border: 0px;
}

.hero__form input:focus {
  outline: none;
}

.hero__form button {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  padding: 20px 30px;
  background-color: #BA3620;
  border: 0;
  border-radius: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: nowrap;
}

.hero__cta {
  width: 100%;
  max-width: clamp(12.5rem, 6.481rem + 24.69vw, 28rem);
  margin-top: 14px;
}

.hero__cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}

.hero__cta-row > .hero__cta-btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.12);
  width: 100%;
  line-height: 1;
}

.hero__cta-btn--orange {
  background: #BA3620;
  border-color: #BA3620;
}

.hero__cta-btn--blue {
  background: #1F3D56;
  border-color: #1F3D56;
}

.hero__cta-btn--full {
  margin-top: 12px;
}

.hero__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero__cta-sub {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}

.hero__img {
  max-width: 600px;
  width: 100%;
}

.browse {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /* .browse__wrapper */
  /* .browse__item */
}

.browse__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.browse__wrapper a {
  display: block;
  max-width: 280px;
  width: 100%;
}

.browse__item {
  max-width: 280px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #6C6C6C;
  padding: 80px 10px 50px;
  border-radius: 20px;
  -webkit-box-shadow: 1px 1px 20px 1px rgba(186, 54, 32, 0.1);
          box-shadow: 1px 1px 20px 1px rgba(186, 54, 32, 0.1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.browse__item:hover {
  -webkit-box-shadow: 1px 1px 20px 1px rgba(186, 54, 32, 0.3);
          box-shadow: 1px 1px 20px 1px rgba(186, 54, 32, 0.3);
}

.browse__item p {
  font-size: 16px;
  color: #BA3620;
  font-weight: 600;
}

/* Keep category PNG icons (like Majstori) from overflowing the card */
.browse__item > img {
  width: 56px;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

/* Hide the old generated Majstori SVG (it contains a gray background + embedded text) */
.browse__item svg[version="1.0"][viewBox="0 0 2016 2100"] {
  display: none;
}

/* Make the Majstori icon match the same red as other icons */
.browse__item .browse__icon--majstori {
  color: #BA3620;
}

.who {
  padding-bottom: 0;
  /* .who__wrapper */
  /* .who__img */
}

.who__img {
  width: 100%;
}

.who .arrow-left,
.who .arrow-right {
  border: 1px solid lightgray;
  border-radius: 50%;
}

.products {
  /* .products__wrapper */
}

.products__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px 24px;
  margin-top: 40px;
}

.card {
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
  /* .card__img */
  /* .card__box */
  /* .card__star */
  /* .card__inner */
}

.card__img {
  background-color: #f4f5f7;
  height: 17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 6px;
}

.card__img img {
  mix-blend-mode: multiply;
  max-width: 100%;
  background-color: transparent;
  width: 100%;
}

.card__img h3 {
  margin-top: auto;
  font-size: 10px;
  font-weight: 400;
}

.card__img h3 span {
  font-weight: 600;
}

.card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}

.card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.card__inner .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.card__inner .col h2 {
  font-weight: 600;
  font-size: clamp(.75rem, .71rem + .25vw, 1.175rem);
  line-height: 1.3;
}

.card__inner .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  background-color: #BA3620;
  color: #fff;
  font-weight: 600;
  display: none;
}

.pags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.pags__btn {
  width: 30px;
  height: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  border-radius: 4px;
  border: 1px solid lightgray;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: 70px;
  background: none;
  color: #000;
}

.pags__btn:hover,
.pags__btn.active {
  border: 1px solid #ba3620;
  color: #ba3620;
}

.pags__btn.deactive {
  color: lightgray;
  background: gray;
}

.tips {
  /* .tips__wrapper */
  /* .tips__item */
  /* .tips__inner */
}

.tips__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 30px;
  grid-template-areas: "item-1 item-2" "item-1 item-3";
}

.tips__wrapper .item-1 {
  grid-area: item-1;
  background-image: url('/static/imgs/tips-bg-1.jpg');
}

.tips__wrapper .item-2 {
  grid-area: item-2;
  background-image: url('/static/imgs/tips-bg-2.jpg');
}

.tips__wrapper .item-3 {
  grid-area: item-3;
  background-image: url('/static/imgs/tips-bg-2.jpg');
}

.tips__item {
  min-height: 280px;
  height: 100%;
  padding: 15px clamp(1rem, 0.579rem + 1.73vw, 1.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.tips__item h2 {
  font-weight: 600;
  line-height: 1.2;
  font-size: 24px;
}

.tips__item p {
  font-size: 14px;
  line-height: 1.2;
  max-width: 380px;
}

.tips__item a {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  border-bottom: 1px solid black;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tips__item a:hover {
  border-bottom: 1px solid transparent;
}

.tips__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form {
  margin: 100px 0;
  padding: 80px 0;
  background-image: url('/static/imgs/form-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  /* .form__wrapper */
  /* .form__box */
}

.form__box h2 {
  max-width: 700px;
  font-size: clamp(2rem, 1.007rem + 4.07vw, 4.063rem);
  line-height: 1.1;
}

.form__box p {
  font-size: clamp(0.75rem, 0.569rem + 0.74vw, 1.125rem);
  padding: 22px 0 clamp(1.875rem, 0.37rem + 6.17vw, 5rem);
  color: #fff;
}

.form__box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form__box input {
  padding: 25px;
  background-color: #fff;
  background-image: url('/static/imgs/input-email-bg.png');
  background-repeat: no-repeat;
  background-size: 44px;
  background-position: 20px;
  padding-left: 80px;
  max-width: 470px;
  width: 100%;
  border: 0px !important;
}

.form__box input:focus {
  outline: none;
}

.form__box button {
  padding: 25px 40px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.about-hero {
  /* .about-hero__wrapper */
}

.about-hero__wrapper {
  background-color: rgba(51, 51, 51, 0.1);
  margin-top: 40px;
  padding: 40px 0;
}

.about-hero__wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.about-hero__wrapper h3 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 450px;
  width: 100%;
}

.about-hero__wrapper p {
  opacity: 0.5;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  max-width: 70%;
  width: 100%;
  padding: 20px 35px;
  border-left: 1px solid lightgray;
}

.about-wrap {
  /* .about-wrap__wrapper */
  /* .about-wrap__img */
  /* .about-wrap__box */
}

.about-wrap__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-wrap__img {
  max-width: 100%;
  width: 100%;
  border-radius: 0 80px 0 0;
}

.about-wrap__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.about-wrap__box span {
  width: 150px;
  height: 4px;
  border-radius: 20px;
  background: #ffac12;
  background: -o-linear-gradient(356deg, #ffac12 0%, black 100%);
  background: linear-gradient(94deg, #ffac12 0%, black 100%);
}

.about-wrap__box h3 {
  font-size: 44.71px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.1px;
  color: #b1301a;
}

.about-wrap__box p {
  font-size: 17.88px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: #b1301a;
}

.about-wrap__box a {
  font-size: 15.2px;
  font-weight: 700;
  color: #fff;
  padding: 20px 35px;
  background-color: #b1301a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 0 20px 0 0;
  letter-spacing: -0.3px;
}

.our {
  /* .our__box */
}

.our__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.our__box h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
}

.our__box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.5);
}

.category {
  padding-top: 100px;
  /* .category__title */
  /* .category__title */
  /* .category__pretitle */
  /* .category__wrap */
  /* .category__item */
}

.category .hero__form {
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
  right: 50px;
}

.category__title {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.category__subtitle {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.category__pretitle {
  text-transform: uppercase;
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 8px;
  max-width: 670px;
  margin: 0 auto;
  line-height: 1.5;
  margin-top: 10px;
}

.category__pretitle a {
  color: #000;
}

.category__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  grid-template-rows: 100px;
  grid-auto-rows: 100px;
  gap: 40px;
  margin-top: 80px;
}

.category__wrap a {
  display: block;
  height: 100%;
}

.category__item {
  height: 100%;
  border: 1px solid #ba3620;
  text-align: center;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 18px;
  -webkit-box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.category__item:hover {
  -webkit-box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 30px 1px rgba(0, 0, 0, 0.3);
}

.category__item h3 {
  font-size: 11.6px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.category-2 {
  max-width: 600px;
  width: 100%;
  margin-inline: auto;
}

.category-3 {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}


.category-list .section-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-list__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-list__sort p {
  padding-left: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.category-list__sort select {
  background: none;
  font-size: 16px;
  color: #000;
}

.product {
  /* .product__wrapper */
  /* .product__img */
  /* .product__box */
  /* .product__price */
  /* .product__notify */
}

.product .row {
  padding: 20px 0 10px;
}

.product .row .product__title {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  display: none;
}

.product__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.product__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 450px;
  padding: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

.product__img p {
  font-size: 12px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #191919;
  line-height: 1.2;
}

.product__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 6px;
}

.product__box b {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.product__box b span {
  font-weight: 400;
}

.product__box h2 {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 15px;
}

.product__shops {
  width: 100%;
}

.product__price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 13px 0;
  border-bottom: 1px solid #F0F0F0;
}

.product__price p {
  font-size: 22px;
  margin-left: auto;
}

.product__price a {
  color: #fff;
  padding: 14px 50px;
  background-color: #BA3620;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.product__price img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product__notify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}

.product__notify a {
  padding: 10px 13px;
  border: 1px solid #E73C17;
  color: #E73C17;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 11px;
}

.my-profile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

.my-profile__top h4 {
  font-size: 14px;
}

.my-profile__top h4 span {
  color: #BA3620;
}

.my-profile__beards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.my-profile__beards a {
  font-size: 14px;
  color: gray;
}

.my-profile__beards p {
  font-size: 14px;
  color: #000;
}

.my-profile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.my-profile__aside {
  width: 100%;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}

.my-profile__aside a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  padding: 25px;
  padding-left: 0;
  border-radius: 10px;
  font-weight: 600;
  background-color: transparent;
}

.my-profile__aside .active {
  color: #ba3620;
  background-color: transparent;
}

.my-profile__aside a svg {
  display: none;
}

.my-profile__form {
  width: 100%;
  -webkit-box-shadow: 0px 1px 13px 0px #0000000d;
          box-shadow: 0px 1px 13px 0px #0000000d;
  border-radius: 4px;
  padding: clamp(2.5rem, 1.591rem + 4.55vw, 5rem);
}

.my-profile__form h2 {
  color: #ba3620;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 26px;
}

.my-profile__form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 50px;
}

.my-profile__form .col {
  width: 100%;
  padding-bottom: 24px;
}

.my-profile__form .col p {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
}

.my-profile input {
  padding: 0 16px;
  border-radius: 4px;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  font-size: 16px;
}

.col2 {
  width: 100%;
  max-width: 46%;
}

.btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.btn__cancel {
  width: 53px;
  height: 24px;
  color: #000;
  background-color: transparent;
  font-size: 16px;
  font-weight: 400;
}

.btn__save {
  width: 206px;
  height: 56px;
  border-radius: 4px;
  background-color: #ba3620;
  color: #fafafa;
  font-size: 16px;
  font-weight: 500;
}

.my-profile__project {
  width: 100%;
}

.my-profile__project .btn_create {
  background-color: #ba3620;
  width: clamp(10rem, 9.136rem + 4.32vw, 12.375rem);
  height: clamp(2.25rem, 2.023rem + 1.14vw, 2.875rem);
  border-radius: 4px;
  color: #fafafa;
  font-size: 13.14px;
  font-weight: 500;
  margin-left: auto;
  display: block;
  margin-top: 15px;
}

.my-profile__project .my-profile__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.938rem, 0.369rem + 2.84vw, 2.5rem);
  position: relative;
  -webkit-box-shadow: 3px 15px 39px 0px #ba36200a;
          box-shadow: 3px 15px 39px 0px #ba36200a;
  background-color: #fff;
  margin: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem) 0;
  border-radius: 8px;
  padding: 20px;
}

.my-profile__project .my-profile__card .profile_img {
  width: 100%;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.my-profile__project .my-profile__card .profile_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.my-profile__project .my-profile__card .profile_txt h2 {
  font-family: Inter;
  font-size: 15.94px;
  font-weight: 500;
  line-height: 23.91px;
  letter-spacing: 0.02em;
  color: #0f001a;
  max-width: 250px;
}

.my-profile__project .my-profile__card .profile_txt h6 {
  color: #BA3620;
  margin-bottom: auto;
  font-weight: 500;
}

.my-profile__project .my-profile__card .profile_txt h4 {
  font-family: Inter;
  font-size: 11.16px;
  font-weight: 500;
  line-height: 23.91px;
  color: #979797;
}

.my-profile__project .my-profile__card .profile_txt span {
  line-height: 1;
}

.my-profile__project .my-profile__card .profile_txt span p {
  font-family: Inter;
  font-size: 11.16px;
  font-weight: 500;
  line-height: 23.91px;
  color: #ba3620;
  cursor: pointer;
}

.my-profile__project .my-profile__card::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: url("/static/imgs/trash.svg") no-repeat center center/cover;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 99;
}

.my-profile__title {
  display: none;
}

.projects__btns {
  margin-left: auto;
}

.projects__btns button {
  display: none;
}

.projects__btns .unscribe {
  display: block !important;
}

.projects__btns .del {
  background: none;
  display: block !important;
}

.tabs {
  width: 100%;
  margin-top: 100px;
}

.tabs__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs__header-item {
  margin: 0 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tabs__header-item.active {
  border-bottom: 2px solid #BA3620;
}

.tabs__content {
  margin-top: 50px;
}

.tabs__content h5 {
  max-width: 685px;
  margin: 0 auto;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: #191919;
}

.reviews {
  /* .reviews__top */
  /* .reviews__wrapper */
  /* .reviews__item */
}

.reviews__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reviews__top h2 {
  font-size: 22px;
  font-weight: 600;
}

.reviews__top h2 span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.reviews__top .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.reviews__top .row button {
  padding: 11px 18px;
  border-radius: 40px;
  background-color: #F0F0F0;
  color: #BA3620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-weight: 500;
}

.reviews__top .row button:first-child {
  padding: 11px;
}

.reviews__top .row button:last-child {
  background-color: #BA3620;
  color: #F0F0F0;
}

.reviews__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}

.reviews__item {
  padding: 24px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid lightgray;
}

.reviews__item h3 {
  font-size: 19px;
  font-weight: 600;
}

.reviews__item p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 1.2;
}

.reviews__item b {
  padding-top: 14px;
  font-size: 15px;
  font-weight: 500;
}

.related h4 {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
}

.related__wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.get-1::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 30%;
  height: 100dvh;
  background-color: #333333;
  top: 0;
  right: 0;
}

.get-2::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 45%;
  height: 100dvh;
  background-image: url('/static/imgs/get-2-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
}

.get-2 .get__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.get-3 .get__logo,
.get-4 .get__logo {
  margin: 0 auto;
}

.get-3 .get__box,
.get-4 .get__box {
  max-width: 400px;
  margin: 0 auto;
}

.get-3::after,
.get-4::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 45%;
  height: 100dvh;
  background-image: url('/static/imgs/get-2-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
}

.get-3 .get__wrapper,
.get-4 .get__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.get-3 .get__inner,
.get-4 .get__inner {
  position: relative;
  top: 40px;
}

.get-4 .get__inner {
  position: relative;
  top: 40px;
}

.get {
  padding-top: 130px;
  position: relative;
  /* .get__logo */
  /* .get__wrapper */
  /* .get__box */
  /* .get__footer */
  /* .get__map */
  /* .get__inner */
}

.get__logo {
  max-width: 140px;
  width: 100%;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  top: -70px;
}

.get__wrapper {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(250px, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
}

.get__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.get__box h5 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.get__box h6 {
  font-size: 16px;
}

.get__box h6 span {
  font-weight: 600;
}

.get__box form {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.get__box form input,
.get__box form textarea {
  font-family: "Poppins", sans-serif;
  padding: 12px 18px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.4px;
}

.get__box form input::-webkit-input-placeholder, .get__box form textarea::-webkit-input-placeholder {
  color: #828282;
}

.get__box form input::-moz-placeholder, .get__box form textarea::-moz-placeholder {
  color: #828282;
}

.get__box form input:-ms-input-placeholder, .get__box form textarea:-ms-input-placeholder {
  color: #828282;
}

.get__box form input::-ms-input-placeholder, .get__box form textarea::-ms-input-placeholder {
  color: #828282;
}

.get__box form input::placeholder,
.get__box form textarea::placeholder {
  color: #828282;
}

.get__box form button {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  background-color: #ba3620;
}

.get__box form a {
  font-size: 16px;
  color: #525252;
  text-align: right;
  display: block;
  margin-left: auto;
}

.get__box h1 {
  font-weight: 700;
  font-size: 54px;
}

.get__box h1 span {
  color: #ba3620;
}

.get__box p {
  font-size: 14px;
  line-height: 2;
}

.get__footer {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.get__footer h4 {
  text-align: center;
}

.get__footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.get__footer .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 13px;
}

.get__footer .col a {
  color: #ba3620;
}

.get__map img {
  width: 100%;
}

.get__inner {
  background-color: rgba(173, 49, 27, 0.4);
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid lightgray;
  max-width: 420px;
  width: 100%;
  border-radius: 30px;
  margin-left: 25%;
  position: relative;
}

.get__inner h3 {
  color: #fff;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.get__inner h2 {
  font-size: 32px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.get__inner h6 {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  max-width: 280px;
}

.get__inner .row {
  background-color: #fff;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  max-width: 280px;
  position: relative;
  left: 180px;
}

.get__inner .row p {
  font-size: 16px;
  line-height: 1.4;
  color: #000;
}

.get__inner .icon1 {
  width: 40px;
}

.get__inner .icon2 {
  width: 80px;
  position: absolute;
  left: -40px;
  bottom: 60px;
}

.get__variants {
  margin-top: 10px;
}

.get__variants h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  text-align: center;
  white-space: nowrap;
}

.get__variants h4::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F0EDFF;
  display: inline-block;
}

.get__variants h4::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F0EDFF;
  display: inline-block;
}

.terms__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.terms__wrapper h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 15px;
}

.terms__wrapper p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.terms__wrapper ol {
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer {
  background-color: #fff;
  padding: 80px 0;
  /* .footer__wrapper */
  /* .footer__box */
  /* .footer__link */
  /* .footer__soc */
  /* .footer__links */
}

.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 85px 0;
  border-top: 2px solid #ba3620;
  border-bottom: 2px solid rgba(186, 55, 32, 0.2);
}

.footer__wrapper .logo {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  margin-left: 80px;
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 350px;
  width: 100%;
}

.footer__box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.footer__link {
  font-family: Assistant;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #0a142f;
}

.footer__soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.footer__soc p {
  font-family: Assistant;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  text-align: left;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__links a {
  font-family: Assistant;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  color: #0a142f;
  font-weight: 500;
  text-transform: uppercase;
}

.footer__links p {
  font-family: Assistant;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0px;
  opacity: 0.5;
}

@media (max-width: 1400px) {
  .get__inner {
    margin-left: 15%;
  }
}

@media (max-width: 1200px) {
  .get__inner {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar .logo {
    margin: 0 auto;
  }

  .browse__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product__wrapper {
    gap: 40px;
  }

  .my-profile__aside a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
  }

  .my-profile__aside .active {
    background-color: #fdbaaf;
    color: #000;
  }

  .my-profile__aside a svg {
    display: block;
  }

  .my-profile__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .my-profile__aside {
    max-width: 100%;
  }

  .my-profile__form {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 4px;
    padding: 31px 0;
  }

  .my-profile__form .row {
    display: block;
    width: 100%;
  }

  .col2 {
    width: 100%;
    max-width: 100%;
  }

  .btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }

  .my-profile__title {
    color: #ba3620;
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    display: block;
    padding-top: 31px;
  }

  .get-1::after {
    background-color: transparent;
  }

  .get-2::after {
    background-image: none;
  }

  .get-2 .get__wrapper {
    grid-template-columns: 1fr;
  }

  .get-3::after,
  .get-4::after {
    background-image: none;
  }

  .get-3 .get__wrapper,
  .get-4 .get__wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991.98px) {
  .menu {
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    background: #fff;
    left: -120%;
    top: 0;
    height: 100vh;
    width: 90%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    pointer-events: all;
    z-index: 22;
    -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
    gap: 0px;
  }

  .menu.active {
    left: 0;
    top: 0;
    -webkit-box-shadow: 0 0 10px 140px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px 140px rgba(0, 0, 0, 0.5);
  }

  .menu__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__search {
    display: block;
  }

  .menu details {
    display: block;
  }

  .menu .follow-box {
    display: block;
  }

  .burger {
    display: block;
    position: relative;
    height: 20px;
    width: 30px;
    z-index: 2;
    cursor: pointer;
  }

  .burger.active-burger:before {
    background: "white";
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    top: 8px;
  }

  .burger.active-burger:after {
    background: "white";
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 10px;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .burger.active-burger span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }

  .burger:before,
  .burger:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    background-color: white;
  }

  .burger:before {
    top: 0;
  }

  .burger::after {
    bottom: 0;
  }

  .burger span {
    position: absolute;
    top: 9px;
    right: 0;
    width: 100%;
    background: white;
    background-color: white;
    height: 2px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    -o-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
    transition: cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.3s all;
  }

  .menu__item-link {
    padding: 25px;
    display: block;
    color: black;
    font-weight: 700;
    border-bottom: 1px solid lightgray;
  }

  .menu details.material-nav {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }

  .menu details.material-nav summary {
    color: #1e1e1e;
    padding: 25px;
    border-bottom: 1px solid lightgray;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .menu details.material-nav .dropdown-menu {
    position: static !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    border-top: 1px solid lightgray;
    padding: 16px 20px 20px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 16px;
    z-index: auto;
  }

  .menu details.material-nav .dropdown-menu h3 {
    min-height: 0;
  }

}

@media (max-width: 768px) {
  .nav__wrapper {
    display: none;
  }

  .profile-line {
    display: none;
  }

  .navbar__inner .regis-btn {
    display: none;
  }

  .navbar__inner .login-btn {
    padding: 4px;
    background-color: transparent;
  }

  .navbar__inner .login-btn span {
    display: none;
  }

  .navbar__inner .login-btn svg {
    display: block;
  }

  .hero__wrapper {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero__form,
  .hero__cta {
    max-width: 100%;
  }

  .hero__form button {
    padding-right: 24px;
    font-size: 15px;
  }

  .tips__wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "item-1" "item-2" "item-3";
  }

  .about-hero__wrapper .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }

  .about-hero__wrapper .container h3,
  .about-hero__wrapper .container p {
    max-width: 90%;
    text-align: center;
  }

  .about-wrap__wrapper {
    grid-template-columns: 1fr;
  }

  .category .hero__form {
    margin-top: 80px;
    right: 30px;
  }

  .category__subtitle {
    font-size: 22px;
    display: none;
  }

  .product .row .product__title {
    font-size: 22px;
    display: block;
  }

  .product__wrapper {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .projects__btns .del {
    display: none !important;
  }

  .my-profile__project .btn_create {
    font-size: 11px;
  }

  .my-profile__project .my-profile__card::after {
    content: "View";
    position: absolute;
    background: none;
    width: auto;
    height: auto;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 99;
    font-size: 10.39px;
    font-weight: 400;
    color: #ba3620;
  }

  .my-profile__project .my-profile__card span {
    display: none;
  }

  .my-profile__project .my-profile__card .profile_txt {
    display: block !important;
  }

  .my-profile__project .my-profile__card .profile_txt h4 {
    padding: clamp(0.438rem, 0.142rem + 1.48vw, 1.25rem) 0;
  }

  .my-profile__project .my-profile__card .projects__btns {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .my-profile__project .my-profile__card .projects__btns button {
    width: 100%;
    display: block;
    height: 36px;
    border-radius: 4px;
    background-color: #ba3620;
    color: #fafafa;
    font-size: 10.39px;
    font-weight: 500;
  }

  .tabs__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .get__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .get__box h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) and (max-width: 480px) {
  .about-hero__wrapper .container h3,
  .about-hero__wrapper .container p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-pretitle {
    font-size: 16px;
  }

  .big-title {
    font-size: 38px;
  }

  .section-top {
    padding-bottom: 30px;
  }

  .hero__form input {
    font-size: 15px;
    padding-left: 40px;
    background-position: 13px;
  }

  .products__wrapper {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px 18px;
  }

  .form {
    margin: 0;
    background-image: none;
  }

  .form__box {
    padding: 30px 22px;
    background-image: url('/static/imgs/form-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }

  .form__box form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }

  .form__box form input {
    border-radius: 50px;
    padding: 15px;
    padding-left: 50px;
    background-size: 20px;
  }

  .form__box form button {
    border-radius: 50px;
    padding: 15px;
    font-size: 14px;
    letter-spacing: normal;
    text-transform: capitalize;
  }

  .about-hero__wrapper h3 {
    font-size: 32px;
  }

  .about-hero__wrapper p {
    padding: 0;
    padding-top: 40px;
  }

  .category__pretitle {
    font-size: 12px;
  }

  .category__wrap {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .category-list__sort {
    gap: 10px;
  }

  .product .row .product__title {
    font-size: 20px;
  }

  .product__img img {
    height: 350px;
    padding: 20px;
  }

  .product__box h2 {
    font-size: 19px;
    display: none;
  }

  .product__price a {
    width: 100%;
    text-align: center;
  }

  .tabs {
    margin-top: 50px;
  }

  .reviews__wrapper {
    grid-template-columns: 1fr;
  }

  .get__box {
    gap: 10px;
  }

  .get__box form textarea {
    height: 100px;
  }

  .get__box h1 {
    font-size: 28px;
  }

  .get__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .get__map iframe {
    height: 400px;
  }

  .footer__wrapper {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .footer__wrapper .logo {
    margin: 0 auto;
  }
}

@media (max-width: 450px) {
  .my-profile__card {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .my-profile__card .profile_txt {
    text-align: center;
  }
}