html {
  font-family: "Manrope", sans-serif;
  font-size: 1.08vw;
}
@media (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 834px) {
  html {
    font-size: 4.26vw;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-width: 200px;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.1s linear;
}

svg path {
  transition: all 0.1s linear;
}

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

/* * Grid
 * */
.container, .modal, .content-wrapper {
  width: 90rem;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 834px) {
  .container, .modal, .content-wrapper {
    width: 23.4375rem;
    padding: 0 1rem;
  }
}

.content-wrapper {
  padding-top: 3rem;
  padding-bottom: 5rem;
}

/* * Heading styles
 * */
h1, h2, h3, h4, h5,
.div-h2, .div-h3, .div-h4, .div-h5, .div-h6{
  font-weight: 700;
  color: #030303;
}

h1 {
  font-size: 2.25rem;
  line-height: 3rem;
}

h2, .div-h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h3, .div-h3 {
  font-size: 1.5rem;
  line-height: 2rem;
}

h4, .div-h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h5, .div-h5 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h6, .div-h6 {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 600;
}

/* * Paragraph styles
 * */
p {
  color: #030303;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
@media (max-width: 834px) {
  p {
    font-size: 1rem;
  }
}

ul.reset-offset {
  margin: 0;
  padding: 0;
}

label {
  font-size: 0.75rem;
  line-height: 0.875rem;
}
@media (max-width: 834px) {
  label {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
  }
}
label:hover {
  cursor: pointer;
}
label:hover .jq-checkbox {
  border-color: #030303;
}

/* * Form
 * */
input {
  font-family: "Manrope", sans-serif;
}
input[type=submit]:hover {
  cursor: pointer;
}
input:not([type=submit])::-moz-placeholder {
  opacity: 1;
}
input:not([type=submit])::placeholder {
  opacity: 1;
}
input:not([type=submit])::-moz-placeholder {
  opacity: 1;
}
input:not([type=submit])::-webkit-input-placeholder {
  opacity: 1;
}

.jq-checkbox {
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  border: 1px solid #EEEDED;
  margin: 0 0.5rem 0 0;
  transition: all 0.1s linear;
}
@media (max-width: 834px) {
  .jq-checkbox {
    margin-right: 0.625rem;
  }
}
.jq-checkbox.focused {
  border-color: #EEEDED;
}
.jq-checkbox.checked {
  background: #2E3A59;
  border-color: #2E3A59;
}
.jq-checkbox.checked .jq-checkbox__div {
  width: 0.4375rem;
  height: 0.3125rem;
  border: none;
  transform: none;
  background: url(images/icons/checked.svg) no-repeat center center/cover;
  margin: 0.3125rem 0 0 0.25rem;
}

.jq-radio {
  background: #ffffff;
  border: 1px solid #030303;
  box-shadow: none;
  margin: 0 0.5rem 0 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
.jq-radio.focused {
  border-color: #030303;
}
.jq-radio.checked .jq-radio__div {
  background: #030303;
  box-shadow: none;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.jq-number {
  padding: 0;
}
.jq-number.focused .jq-number__field {
  border-color: #cccccc;
}
.jq-number__field {
  border-bottom-color: #cccccc;
  box-shadow: none;
  border-radius: 0.25rem;
  width: 6.25rem;
}
.jq-number__field:hover {
  border-color: #cccccc;
}
.jq-number__field input {
  font-size: 1rem;
  font-weight: 500;
  color: #828282;
  padding: 0.625rem 1rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
}
.jq-number__spin {
  display: none;
}

.form-row.success:after {
  -webkit-mask: url(images/icons/checked.svg) no-repeat center center/cover;
          mask: url(images/icons/checked.svg) no-repeat center center/cover;
  background: #63A375;
  width: 1.3125rem;
  height: 0.9375rem;
}
.form-row.success input {
  border-color: #443DF6 !important;
}
.form-row.error:after {
  -webkit-mask: url(images/icons/error.svg) no-repeat center center/cover;
          mask: url(images/icons/error.svg) no-repeat center center/cover;
  background: #C5292A;
  width: 1.5rem;
  height: 1.5rem;
}
.form-row.error input {
  border-color: #C5292A !important;
}
.form-row.error .form-error {
  display: block;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: 1.4;
  color: #C5292A;
  margin: 0;
  padding: 0.25rem 0 0 0.75rem;
}
.form-row.icon {
  position: relative;
}
.form-row.icon input:not([type=submit], [type=checkbox], [type=radio]) {
  padding-right: 2.8125rem;
}
.form-row.icon:after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.form-row.float-label {
  position: relative;
}
.form-row.float-label label {
  position: absolute;
  top: 50%;
  visibility: hidden;
  left: 0.875rem;
  transform: translateY(-50%);
  color: #443DF6;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 0.85;
  background: #ffffff;
  padding: 0 0.25rem;
}
.form-row.float-label.focus label {
  top: 0;
  visibility: visible;
  z-index: 2;
}
.form-row .form-error {
  display: none;
}

.form-message {
  background: #030303;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: none;
}
@media (max-width: 834px) {
  .form-message {
    font-size: 1rem;
  }
}
.form-message.error {
  background: #C5292A;
}

.jq-selectbox {
  width: 100%;
}
.jq-selectbox__select {
  height: 3rem;
  border: 1px solid #EEEDED;
  border-radius: 0.25rem;
  background: transparent;
  box-shadow: none;
  font-size: 0.875rem;
  line-height: 3rem;
  padding: 0 3rem 0 1rem;
  font-family: "Manrope", sans-serif;
  text-shadow: none;
  color: #030303;
}
@media (max-width: 834px) {
  .jq-selectbox__select {
    font-size: 1rem;
  }
}
.jq-selectbox__select:hover {
  background: transparent;
}
.jq-selectbox__select:active {
  box-shadow: none;
}
.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #EEEDED;
}
.jq-selectbox__trigger {
  border: none;
  width: 0.625rem;
  height: 0.375rem;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  background: url(images/icons/down-arrow.svg) no-repeat center center/contain;
}
.jq-selectbox__trigger-arrow {
  display: none;
}
.jq-selectbox__dropdown {
  border-radius: 0.25rem;
  border: 1px solid #EEEDED;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Manrope", sans-serif;
}
.jq-selectbox li:hover, .jq-selectbox li.selected {
  background: #FFD100;
  color: #030303;
}

.default-form {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  flex-wrap: wrap;
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox]), .default-form .form-row textarea {
  width: 100%;
  border: 1px solid #EEEDED;
  border-radius: 0.25rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 1rem;
  color: #030303;
  transition: all 0.1s linear;
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox]):hover, .default-form .form-row textarea:hover {
  border-color: #030303;
}
@media (max-width: 834px) {
  .default-form .form-row input:not([type=submit], [type=radio], [type=checkbox]), .default-form .form-row textarea {
    font-size: 1.125rem;
  }
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, .default-form .form-row textarea::-moz-placeholder {
  color: #828282;
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox])::placeholder, .default-form .form-row textarea::placeholder {
  color: #828282;
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox])::-moz-placeholder, .default-form .form-row textarea::-moz-placeholder {
  color: #828282;
}
.default-form .form-row input:not([type=submit], [type=radio], [type=checkbox])::-webkit-input-placeholder, .default-form .form-row textarea::-webkit-input-placeholder {
  color: #828282;
}
.default-form .form-row textarea {
  resize: none;
  height: 6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: "Manrope", sans-serif;
}
.default-form .form-row.focus input:not([type=submit], [type=radio], [type=checkbox]) {
  border-color: #443DF6;
}
.default-form .form-row.error label {
  color: #C5292A;
}
.default-form .form-row.error input:not([type=submit], [type=radio], [type=checkbox]) {
  border-color: #C5292A;
}

/* * Modal
 * */
.full-modal {
  min-height: 100vh;
  padding: 10rem 0;
  position: relative;
  display: none;
  background: #030303;
}
.full-modal button.mfp-close {
  color: transparent;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  -webkit-mask: url(images/icons/close.svg) no-repeat center center/cover;
          mask: url(images/icons/close.svg) no-repeat center center/cover;
  opacity: 1;
  background: #CCCCCC;
}
.full-modal button.mfp-close:hover {
  background: #030303;
}

.modal {
  display: none;
  position: relative;
  margin: 10vh auto;
}
@media (max-width: 834px) {
  .modal {
    margin: 0 auto;
  }
}
.modal button.mfp-close {
  color: transparent;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-mask: url(images/icons/close.svg) no-repeat center center/cover;
          mask: url(images/icons/close.svg) no-repeat center center/cover;
  opacity: 1;
  top: 1rem;
  right: 1rem;
  background: #CCCCCC;
  transition: all 0.1s linear;
}
.modal button.mfp-close:hover {
  background: #030303;
}

.notify-modal {
  width: 27rem;
  background: #ffffff;
  font-size: 1.125rem;
  line-height: 2rem;
  padding: 3rem 2.5rem;
  text-align: center;
}
@media (max-width: 834px) {
  .notify-modal {
    width: calc(100% - 2rem);
  }
}
.notify-modal h3 {
  margin: 0;
}
.notify-modal p {
  margin: 2rem 0 0;
  font-size: 1.125rem;
  line-height: 1.77;
}
.notify-modal .default-button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.25rem;
}
.notify-modal .default-button:hover {
  cursor: pointer;
}

.mfp-content .full-modal {
  display: flex;
}
.mfp-content .modal {
  display: block;
}

/* Notify Message */
.notify-message {
  background: #030303;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  display: none;
  color: #ffffff;
}
@media (max-width: 834px) {
  .notify-message {
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.notify-message.error {
  background: #C5292A;
}
.notify-message p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
}
.notify-message p a {
  color: #FFD100;
}

/* Buttons */
.black-button {
  background: #030303;
  border-radius: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #F6C104;
  font-weight: 600;
  text-align: center;
  transition: all 0.1s linear;
}
.black-button:hover {
  background: #F6C104;
  color: #030303;
}
@media (max-width: 834px) {
  .black-button {
    font-size: 1.25rem;
    line-height: 1.2;
    padding: 0.75rem 1.25rem;
  }
}

.default-button {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid #FFD100;
  background: transparent;
  font-weight: 500;
  font-size: 0.875rem;
  color: #030303;
  text-align: center;
  line-height: 1.7;
  transition: all 0.1s linear;
}
.default-button:hover {
  background: #FFD100;
  color: #000;
}
@media (max-width: 834px) {
  .default-button {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    padding: 0.75rem 1.125rem;
  }
}

@-webkit-keyframes headerIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes headerIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* * Main header
 * */
@media (max-width: 834px) {
  .main-header.fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    -webkit-animation: headerIn;
            animation: headerIn;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
  }
}
@media (max-width: 834px) {
  .main-header.opened {
    height: 100vh;
    overflow-y: auto;
  }
  .main-header.opened::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.main-header p {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 0;
  color: #ffffff;
}
.main-header a {
  color: #ffffff;
}
.main-header-contact {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
}
.main-header-icon a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.main-header-icon a:not(.logout):hover {
  color: #FFD100;
}
.main-header-icon a:not(.logout):hover svg path {
  fill: #FFD100;
}
.main-header-social {
  display: flex;
}
@media (max-width: 834px) {
  .main-header-social {
    margin-top: 1.5rem;
  }
}
.main-header-social ul {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (max-width: 834px) {
  .main-header-social ul {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.main-header-social ul li {
  list-style: none;
}
.main-header-social ul li a {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.main-header-social ul li a:hover svg path {
  fill: #FFD100;
}
@media (max-width: 834px) {
  .main-header-social ul li a {
    width: 2rem;
    height: 2rem;
  }
  .main-header-social ul li a svg path {
    fill: #030303;
  }
}
.main-header-social ul li a img, .main-header-social ul li a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-header-nav {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 834px) {
  .main-header-nav {
    display: none;
  }
}
.main-header-cart p {
  font-size: 1rem;
  line-height: 1.5;
}
.main-header-logo {
  height: 100%;
  padding: 1.2rem 0 0.4375rem;
}
@media (max-width: 834px) {
  .main-header-logo {
    padding: 1.375rem 0 0.5rem;
  }
}
.main-header-logo img {
  width: 8.3rem;
}
.main-header-account p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-weight: 600;
}
.main-header-account p a.logout:hover svg path:first-child {
  fill: #FFD100;
}
.main-header-account p a.logout:hover svg path:last-child {
  stroke: #FFD100;
}
.main-header-account p .dealer-link {
  color: #FFD100;
}
.main-header-mobile-button {
  display: none;
}
@media (max-width: 834px) {
  .main-header-mobile-button {
    width: 2rem;
    height: 2rem;
    position: relative;
    display: inline-block;
  }
  .main-header-mobile-button span {
    width: 1.75rem;
    height: 0.1875rem;
    background: #F6C104;
    position: absolute;
    right: 0;
    transition: all 0.2s linear;
  }
  .main-header-mobile-button span:first-of-type {
    top: 0.625rem;
  }
  .main-header-mobile-button span:last-of-type {
    bottom: 0.625rem;
  }
  .main-header-mobile-button.active span:first-of-type {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .main-header-mobile-button.active span:last-of-type {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

.top-header {
  background: #2E3A59;
}
@media (max-width: 834px) {
  .top-header {
    display: none;
  }
}
.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.5rem;
}

.bottom-header {
  background: #101426;
}
@media (max-width: 834px) {
  .bottom-header {
    background: #030303;
  }
}
.bottom-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 834px) {
  .bottom-header .main-header-cart {
    display: none;
  }
}

/* * Mobile header
 * */
@media (min-width: 835px) {
  .mobile-header {
    display: none !important;
  }
}
@media (max-width: 834px) {
  .mobile-header {
    padding-top: 1.625rem;
    background: #ffffff;
    display: none;
  }
  .mobile-header-account {
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-top: 2.5rem;
  }
  .mobile-header-account-profile {
    flex-basis: calc(50% - 0.5rem);
  }
  .mobile-header-account-profile p {
    height: 100%;
  }
  .mobile-header-account-profile a {
    color: #030303;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.33;
    font-weight: 500;
    background: #F6F7F9;
    border-radius: 0.5rem;
    padding: 2rem 1rem;
  }
  .mobile-header-account-profile a svg {
    width: 3rem;
    height: 3rem;
  }
  .mobile-header-account-profile a svg path {
    fill: #030303;
  }
  .mobile-header-account-cart {
    flex-basis: calc(50% - 0.5rem);
  }
  .mobile-header-bottom {
    background: #F6C104;
    padding: 1.5rem 0;
  }
  .mobile-header-phone svg, .mobile-header-phone img {
    display: none;
  }
  .mobile-header-phone a {
    color: #030303;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.33;
  }
  .mobile-header-address {
    color: #030303;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

/* * Main footer
 * */
.main-footer {
  padding: 3rem 0 1.5rem;
  background: #FFD100;
}
@media (max-width: 834px) {
  .main-footer {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 834px) {
  .main-footer-logo {
    text-align: center;
  }
}
.main-footer-logo img {
  max-width: 100%;
}
.main-footer-content {
  display: flex;
  margin-top: 4rem;
  -moz-column-gap: 12.5rem;
       column-gap: 12.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 834px) {
  .main-footer-content {
    margin-top: 2rem;
    text-align: center;
  }
}
.main-footer-contact {
  flex-basis: 15.625rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (max-width: 834px) {
  .main-footer-contact {
    flex-basis: 100%;
    row-gap: 0;
  }
}
@media (max-width: 834px) {
  .main-footer-contact-data {
    margin-top: 2rem;
  }
}
.main-footer-contact-data ul {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.main-footer-contact-data ul li {
  list-style: none;
}
.main-footer-contact-data ul li a {
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 834px) {
  .main-footer-social {
    margin-top: 1.5rem;
  }
}
.main-footer-social ul {
  display: flex;
  -moz-column-gap: 1.625rem;
       column-gap: 1.625rem;
}
@media (max-width: 834px) {
  .main-footer-social ul {
    justify-content: center;
  }
}
.main-footer-social ul li {
  list-style: none;
}
.main-footer-social ul li a {
  line-height: 1;
  display: inline-block;
}
.main-footer-social ul li svg, .main-footer-social ul li img {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 834px) {
  .main-footer-social ul li svg, .main-footer-social ul li img {
    width: 3rem;
    height: 3rem;
  }
}
.main-footer-social ul li svg path {
  fill: #030303;
}
.main-footer-nav {
  display: flex;
  -moz-column-gap: 3.3125rem;
       column-gap: 3.3125rem;
}
@media (max-width: 834px) {
  .main-footer-nav {
    display: none;
  }
}
@media (max-width: 834px) {
  .main-footer-address {
    max-width: 15.5rem;
    margin: 0 auto;
  }
}
.main-footer-address p {
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 834px) {
  .main-footer-address p {
    line-height: 1.5;
  }
}
.main-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 834px) {
  .main-footer-bottom {
    flex-direction: column-reverse;
    margin-top: 4.5rem;
  }
}
.main-footer-policy {
  display: flex;
  -moz-column-gap: 6.25rem;
       column-gap: 6.25rem;
}
@media (max-width: 834px) {
  .main-footer-policy {
    flex-direction: column-reverse;
    text-align: center;
    row-gap: 1rem;
    margin-top: 1.5rem;
  }
}
.main-footer-policy p {
  font-size: 0.75rem;
  line-height: 1rem;
  margin: 0;
  font-weight: 500;
  color: #030303;
}
@media (max-width: 834px) {
  .main-footer-policy p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.main-footer-bank ul {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media (max-width: 834px) {
  .main-footer-bank ul {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.main-footer-bank ul li {
  list-style: none;
}
.main-footer-bank ul li svg {
  width: 3.125rem;
  height: 2rem;
}

/* Home Newing */
.home-new-products {
  padding-top: 5rem;
}
@media (max-width: 834px) {
  .home-new-products {
    padding-top: 1.5rem;
  }
}
.home-new-products .heading {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 3rem));
  gap: 3rem;
}
@media (max-width: 834px) {
  .home-new-products .heading {
    display: block;
  }
}
.home-new-products .heading h2 {
  margin: 0;
}
.home-new-products .heading p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.77;
  font-weight: 500;
}
@media (max-width: 834px) {
  .home-new-products .heading p {
    display: none;
  }
}
.home-new-products .catalog-top {
  margin-top: 3rem;
}
@media (max-width: 834px) {
  .home-new-products .catalog-top {
    margin-top: 1rem;
  }
}

/* Home Popular */
.home-popular-products {
  padding-top: 6rem;
}
@media (max-width: 834px) {
  .home-popular-products {
    padding-top: 4rem;
  }
}
.home-popular-products .heading h2 {
  margin: 0;
}
.home-popular-products .catalog-top {
  margin-top: 2rem;
}
@media (max-width: 834px) {
  .home-popular-products .catalog-top {
    margin-top: 1rem;
  }
}

/* Home About */
.home-about {
  padding: 5rem 0 3rem;
}
@media (max-width: 834px) {
  .home-about {
    padding-top: 4rem;
  }
}
.home-about-container {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 834px) {
  .home-about-container {
    row-gap: 2rem;
  }
}
.home-about-image {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 834px) {
  .home-about-image {
    flex-basis: 100%;
  }
}
.home-about-image h2 {
  margin: 0;
}
.home-about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
@media (max-width: 834px) {
  .home-about-logo {
    margin-top: 1.5rem;
  }
}
.home-about-logo img {
  max-width: 100%;
}
.home-about-text {
  flex-basis: calc(50% - 1.5rem);
}
@media (max-width: 834px) {
  .home-about-text {
    flex-basis: 100%;
  }
}
.home-about-text .big-paragraph {
  font-size: 1.125rem;
  line-height: 1.77;
  margin: 1.5rem 0 0;
}
.home-about-text .big-paragraph:first-of-type {
  margin: 0;
}
.home-about-text .small-paragraph {
  font-size: 0.875rem;
  line-height: 1.77;
  font-weight: 500;
  margin: 2rem 0 0;
}
.home-about-text .small-paragraph:first-of-type {
  margin: 0;
}

/* For What */
.for-what {
  background: url(images/for-what-bg.jpg) no-repeat center center/cover;
  padding: 3rem 0;
}
@media (max-width: 834px) {
  .for-what {
    padding: 2rem 0;
  }
}
.for-what-container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, calc(25% - 1.125rem));
}
@media (max-width: 834px) {
  .for-what-container {
    display: flex;
    overflow-x: auto;
    margin-right: -1rem;
    padding-right: 1rem;
  }
  .for-what-container::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.for-what-card {
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 834px) {
  .for-what-card {
    max-width: 15.5rem;
    min-width: 15.5rem;
  }
}
.for-what-card:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #50514F;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.4;
}
.for-what-card h6, .for-what-card p {
  color: #ffffff;
}
.for-what-card h6 {
  margin: 0;
}
.for-what-card p {
  margin: 1rem 0 0;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.33;
}
.for-what-card p:first-of-type {
  margin: 3rem 0 0;
}
@media (max-width: 834px) {
  .for-what-card p:first-of-type {
    margin-top: 2rem;
  }
}
div[id^="wait_"] {
  display: none !important;
}

.list-unstyled.who li {
  list-style: none;
  padding: 10px 0px;
}

.bx-authform {
  padding: 20px;
}

.contacts-wrapper {
  display: flex;
  gap: 20px;
}
.contacts-wrapper h4 {
  margin-top: 0;
}
@media (max-width: 834px) {
  .contacts-wrapper {
    display: block;
  }
  .contacts-wrapper h4 {
    margin-top: 2rem;
  }
}