@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Play;
  font-weight: 400;
}
body::after {
  content: "";
  display: block;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 11;
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.3s all ease;
}
body.blur::after {
  opacity: 1;
  visibility: visible;
}

.wrapper {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1920px) {
  .container {
    width: 1170px;
    margin: 0 auto;
  }
}
@media (max-width: 1600px) {
  .container {
    max-width: 1170px;
    margin: 0 auto;
  }
}
@media (max-width: 1160px) {
  .container {
    max-width: 1024px;
    padding: 0 10px;
  }
}
@media (max-width : 1023px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 0 10px;
  }
}

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

.header_hamburger {
  height: 50px;
  width: 50px;
  display: none;
  position: relative;
  z-index: 101;
}
@media (max-width : 1023px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    width: 50px;
    height: 36px;
  }
}
.header_hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header_hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header_hamburger span {
  height: 3px;
  width: 50px;
  background-color: #E22323;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
.header_hamburger span:nth-child(1) {
  top: 25%;
}
.header_hamburger span:nth-child(3) {
  top: 75%;
}

.off_screen_menu {
  background-color: rgb(34, 37, 49);
  display: flex;
  height: 100vh;
  width: 100vh;
  max-width: 80%;
  position: fixed;
  top: 0;
  right: -100%;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s all ease;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  gap: 0 39px;
}
.off_screen_menu.active {
  right: 0;
}
.off_screen_menu .nav_ul {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-direction: column;
  gap: 20px 0;
  list-style: none;
}
.off_screen_menu .nav_ul li a {
  color: #fff;
  font-family: Play;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 2px solid #fff;
  transition: 0.3s all ease;
}
.off_screen_menu .nav_ul li a:hover {
  color: #E22323;
}
.off_screen_menu .submit {
  display: flex;
  justify-content: center;
}
.off_screen_menu .submit a, .off_screen_menu .submit button {
  max-width: 242px;
  text-decoration: none;
  padding: 22px 56px;
  color: #FFF;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  background: linear-gradient(180deg, #FF8E8E 0%, #E22323 100%);
  box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.15) inset;
  transition: 0.3s all ease;
  outline: transparent;
  display: inline-block;
  border: none;
}
.off_screen_menu .submit a:hover, .off_screen_menu .submit button:hover {
  box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.5);
}

.submit {
  display: flex;
  justify-content: center;
}
@media (max-width : 1023px) {
  .submit {
    display: block;
  }
}
.submit a, .submit button {
  max-width: 242px;
  text-decoration: none;
  padding: 22px 54px;
  color: #FFF;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  background: linear-gradient(180deg, #FF8E8E 0%, #E22323 100%);
  box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.15) inset;
  transition: 0.3s all ease;
  outline: transparent;
  display: inline-block;
  transition: 0.3s all ease;
  border: none;
}
.submit a:hover, .submit button:hover  {
  box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.5);
}

.all_forum .forum_input_button {
  display: flex;
  align-items: center;
  gap: 0 24px;
  margin-bottom: 19px;
}
@media (max-width : 1023px) {
  .all_forum .forum_input_button {
    gap: 24px 0;
    align-items: start;
    flex-direction: column;
  }
}
.all_forum .forum_input_button .forum_input {
  padding: 22px 54px 22px 28px;
  border-radius: 15px;
  background: #F1F1F1;
  max-width: 255px;
}
.all_forum .forum_input_button .forum_input input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background-color: #F1F1F1;
}
.all_forum .forum_input_button .forum_input input::placeholder {
  color: #9E9E9E;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
}
.all_forum .forum_input_button .forum_input.white {
  background-color: #FFF;
  display: flex;
  align-items: center;
  gap: 0 7px;
}
.all_forum .forum_input_button .forum_input.white input {
  background-color: #FFF;
}
.all_forum .forum_politics {
  color: #9E9E9E;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width : 1023px) {
  .all_forum .forum_politics {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .all_forum .forum_politics {
    font-size: 9px;
  }
}
.all_forum .forum_politics a {
  color: #9E9E9E;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
  text-decoration-line: underline;
}
@media (max-width : 1023px) {
  .all_forum .forum_politics a {
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .all_forum .forum_politics a {
    font-size: 9px;
  }
}

.section_title {
  color: #3E3E3E;
  text-align: center;
  font-family: Play;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}
@media (max-width: 1160px) {
  .section_title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width : 1023px) {
  .section_title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .section_title {
    font-size: 20px;
  }
}

#cookies {
  position: fixed;
  bottom: 0;
  padding: 42px 0 43px 0;
  background: #6F6F6F;
  z-index: 100;
  width: 100%;
  display: block;
  z-index: 10001;
}
#cookies .cookies_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  #cookies .cookies_item {
    flex-direction: column;
    gap: 20px 0;
    text-align: center;
    margin: 0 -5px;
  }
}
#cookies .cookies_item .cookies_item_description {
  color: #FFF;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
}
@media (max-width : 1023px) {
  #cookies .cookies_item .cookies_item_description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  #cookies .cookies_item .cookies_item_description {
    font-size: 14px;
  }
}
#cookies .cookies_item button {
  padding: 20px 50px;
  border: none;
  color: #E22323;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  background: #FFF;
  /* 1 */
  box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.15) inset;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 1;
  visibility: hidden;
  transition: 0.3s all ease;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal.show .modal_content {
  transform: scale(1);
}
.modal .modal_content {
  max-width: 410px;
  border-radius: 20px;
  background: #FFF;
  position: relative;
  padding: 57px 58px 47px 59px;
  transform: scale(0);
  transition: 0.3s all ease;
}
@media (max-width: 480px) {
  .modal .modal_content {
    padding: 28px 30px 21px 30px;
  }
}
.modal .modal_content .modal_exit {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: block;
  border: none;
  background-color: #fff;
}
.modal .modal_content .modal_title {
  color: #3F2512;
  text-align: center;
  font-family: Play;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px; /* 136.364% */
  margin-bottom: 8px;
}
.modal .modal_content .modal_description {
  color: #3F2512;
  text-align: center;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 26px;
}
@media (max-width: 480px) {
  .modal .modal_content .modal_description {
    font-size: 14px;
  }
}
.modal .modal_content .submit a {
  max-width: none;
  width: 100%;
}
.modal .modal_content .all_forum {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal .modal_content .all_forum .forum_input_button {
  max-width: none;
  width: 100%;
  max-width: 255px;
  align-items: stretch;
}
.modal .modal_content .all_forum .forum_input_button .forum_input {
  max-width: none;
  width: 100%;
}
.modal .modal_content .all_forum .forum_input_button .submit a {
  max-width: none;
  width: 100%;
}
@media (max-width: 768px) {
  .modal .modal_content .all_forum .forum_input_button {
    align-items: center;
  }
}
.modal .modal_content .all_forum .forum_politics {
  color: rgba(48, 48, 48, 0.5);
  font-family: Play;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px; /* 125% */
}
.modal .modal_content .all_forum .forum_politics a {
  color: rgba(48, 48, 48, 0.5);
  font-family: Play;
  font-size: 12px;
  text-decoration: underline;
  font-weight: 400;
  line-height: 15px; /* 125% */
}
.modal .modal_content .forum_input_button {
  flex-direction: column;
  gap: 20px 0;
}

.modal_send {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 1;
  visibility: hidden;
  transition: 0.3s all ease;
}
.modal_send.show {
  opacity: 1;
  visibility: visible;
}
.modal_send.show .modal_content_send {
  transform: scale(1);
}
.modal_send .modal_content_send {
  max-width: 410px;
  border-radius: 20px;
  background: #FFF;
  position: relative;
  padding: 40px 58px 35px 51px;
  transform: scale(0);
  transition: 0.3s all ease;
  text-align: center;
}
.modal_send .modal_content_send .modal_closer {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: block;
  border: none;
  background-color: #fff;
}
.modal_send .modal_content_send .modal_send_title {
  color: #3F2512;
  font-family: Play;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px; /* 136.364% */
  margin-bottom: 18px;
}
.modal_send .modal_content_send .modal_send_description {
  display: flex;
  flex-direction: column;
  gap: 17px 0;
}
.modal_send .modal_content_send .modal_send_description .modal_send_descriptions {
  color: #3F2512;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
@media (max-width: 480px) {
  .modal_send .modal_content_send .modal_send_description .modal_send_descriptions {
    font-size: 16px;
  }
}

header {
  padding: 23px 0 33px 0;
}
@media (max-width : 1023px) {
  header {
    padding: 18px 0 5px 0;
  }
}
header .site_row {
  justify-content: space-between;
}
header .site_row .header_logo a {
  text-decoration: underline;
}
header .site_row .header_logo a img {
  width: 273.511px;
  height: 59px;
}
@media (max-width: 1160px) {
  header .site_row .header_logo a img {
    width: 250px;
    height: 100%;
  }
}
@media (max-width: 768px) {
  header .site_row .header_logo a img {
    width: 217px;
  }
}
header .site_row .nav_items {
  display: flex;
  align-items: center;
  gap: 0 39px;
}
@media (max-width : 1023px) {
  header .site_row .nav_items {
    display: none;
  }
}
header .site_row .nav_items .nav_ul {
  display: flex;
  align-items: center;
  gap: 0 43px;
  list-style: none;
}
header .site_row .nav_items .nav_ul li a {
  color: #4D4D4D;
  font-family: Play;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 2px solid #4D4D4D;
  transition: 0.3s all ease;
}
header .site_row .nav_items .nav_ul li a:hover {
  color: #E22323;
}
header .site_row .nav_items .submit {
  display: flex;
  justify-content: center;
}
header .site_row .nav_items .submit a {
  max-width: 242px;
  text-decoration: none;
  padding: 22px 56px;
  color: #FFF;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 16px;
  font-weight: 700;
  border-radius: 15px;
  background: linear-gradient(180deg, #FF8E8E 0%, #E22323 100%);
  box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.15) inset;
  transition: 0.3s all ease;
  outline: transparent;
  display: inline-block;
}
header .site_row .nav_items .submit a:hover {
  box-shadow: 0px 0px 11px 4px rgba(0, 0, 0, 0.5);
}

/* .hero {
  background-image: url(../images/hero_big_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: right center;
  padding-bottom: 50px;
}
@media (max-width: 1160px) {
  .hero {
    background-size: cover;
    background-position: center;
    padding-bottom: 170px;
  }
}
@media (max-width: 576px) {
  .hero {
    background-image: url(../images/hero_bg_mb.png);
    background-size: cover;
  }
} */


.hero {
  background-image: url(../images/hero_big_bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: right center;
  padding-bottom: 202px;
}
@media (max-width: 1600px) {
  .hero {
    background-image: url(../images/hero_bg.png);
    background-size: cover;
    background-position: right center;
    padding-bottom: 275px;
  }
}
@media (max-width: 1160px) {
  .hero {
    background-size: contain;
    background-position: center;
    padding-bottom: 170px;
  }
}
@media (max-width : 1023px) {
  .hero {
    background-size: contain;
    background-position: center;
  }
}
@media (max-width: 576px) {
  .hero {
    background-image: url(../images/hero_bg_mb.png);
    background-size: cover;
  }
}
.hero .hero_item {
  padding: 41px 0 0 0;
  max-width: 558px;
}
@media (max-width: 768px) {
  .hero .hero_item {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero .hero_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    width: 100%;
    text-align: center;
  }
}
.hero .hero_item h2 {
  color: #3E3E3E;
  font-family: Play;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 23px;
}
@media (max-width: 1600px) {
  .hero .hero_item h2 {
    font-size: 45px;
  }
}
@media (max-width: 1160px) {
  .hero .hero_item h2 {
    font-size: 35px;
  }
}
@media (max-width : 1023px) {
  .hero .hero_item h2 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .hero .hero_item h2 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .hero .hero_item h2 {
    font-size: 28px;
  }
}
.hero .hero_item h2 span {
  color: #E22323;
}
.hero .hero_item .hero_description {
  color: #4D4D4D;
  font-family: Play;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 33px;
}
@media (max-width: 1600px) {
  .hero .hero_item .hero_description {
    font-size: 23px;
  }
}
@media (max-width : 1023px) {
  .hero .hero_item .hero_description {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .hero .hero_item .hero_description {
    font-size: 13px;
  }
}
@media (max-width: 576px) {
  .hero .hero_item .hero_description {
    font-size: 18px;
    font-weight: 700;
  }
}
.hero .hero_item .hero_noutbuk {
  display: none;
}
@media (max-width: 576px) {
  .hero .hero_item .hero_noutbuk {
    display: block;
  }
  .hero .hero_item .hero_noutbuk img {
    width: 100%;
  }
}
@media (max-width : 1023px) {
  .hero .hero_item .all_forum .forum_input_button {
    max-width: 255px;
    align-items: stretch;
  }
  .hero .hero_item .all_forum .forum_input_button .forum_input {
    width: 100%;
    max-width: none;
  }
  .hero .hero_item .all_forum .forum_input_button .modal_sender {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 576px) {
  .hero .hero_item .all_forum {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero .hero_item .all_forum .forum_input_button {
    align-items: stretch;
  }
  .hero .hero_item .all_forum .forum_input_button .forum_input {
    width: 100%;
    max-width: none;
  }
  .hero .hero_item .all_forum .forum_input_button .modal_sender {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .hero .hero_item .all_forum .forum_politics {
    text-align: center;
    font-size: 9px;
  }
  .hero .hero_item .all_forum .forum_politics a {
    font-size: 9px;
  }
}

.works {
  padding: 0 0 110px 0;
  background-image: url(../images/works_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.works .site_row {
  justify-content: center;
  gap: 25px 190px;
  align-items: stretch;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .works .site_row {
    gap: 15px 0;
  }
}
.works .site_row .works_item {
  text-align: center;
  position: relative;
}
@media (max-width: 1160px) {
  .works .site_row .works_item {
    width: calc(40% - 20px);
  }
  .works .site_row .works_item:nth-child(1) {
    order: 2;
  }
  .works .site_row .works_item:nth-child(2) {
    order: 3;
  }
  .works .site_row .works_item:nth-child(3) {
    order: 5;
  }
  .works .site_row .works_item:nth-child(4) {
    order: 2;
  }
  .works .site_row .works_item:nth-child(5) {
    order: 4;
  }
}
@media (max-width : 1023px) {
  .works .site_row .works_item {
    width: calc(38% - 20px);
  }
}
@media (max-width: 768px) {
  .works .site_row .works_item {
    width: 100%;
  }
}
.works .site_row .works_item .works_image img {
  width: 150px;
  height: 150px;
}
@media (max-width: 768px) {
  .works .site_row .works_item .works_image img {
    width: 120px;
    height: 100%;
  }
}
.works .site_row .works_item .works_title {
  color: #4D4D4D;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
@media (max-width : 1023px) {
  .works .site_row .works_item .works_title {
    font-size: 14px;
  }
}
.works .site_row .works_item .items_arrows {
  position: absolute;
  left: 95px;
  bottom: -141px;
  display: block;
  z-index: 11;
}
@media (max-width: 1160px) {
  .works .site_row .works_item .items_arrows {
    display: none;
  }
}
.works .site_row .works_item .works_item_mobile_arrow {
  display: none;
}
@media (max-width: 768px) {
  .works .site_row .works_item .works_item_mobile_arrow {
    display: block;
    margin-top: 12px;
  }
}
.works .works_delivery_text {
  color: #9E9E9E;
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Mulish;
  font-size: 14px;
  font-weight: 500;
}

.famous_products {
  margin-bottom: 70px;
}
.famous_products .products {
  display: none;
}
@media (max-width: 768px) {
  .famous_products .products {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
    text-align: center;
    flex-wrap: wrap;
    text-decoration: underline;
  }
  .famous_products .products .product_item {
    width: calc(33.333% - 4px);
    flex: 0 0 auto;
  }
  .famous_products .products img {
    width: 120px;
    height: 100%;
  }
}
@media (max-width: 1600px) {
  .famous_products .famous_swiper {
    white-space: wrap;
    overflow: visible;
    /* margin: 0 160px; */
  }
}
@media (max-width: 1160px) {
  .famous_products .famous_swiper {
    /* margin: 0 0; */
  }
}
@media (max-width: 768px) {
  .famous_products .famous_swiper {
    display: none;
  }
}
@media (max-width: 1600px) {
  .famous_products .famous_swiper .swiper-wrapper .swiper-slide-active {
    margin-left: 0;
  }
}
.famous_products .famous_swiper .swiper-wrapper .swiper-slide-active {
  margin-left: 0;
}
.famous_products .famous_swiper .swiper-wrapper .swiper-slide .products_flags a {
  text-decoration: none;
}

.price {
  background-image: url(../images/price_bg.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}
.price .section_title {
  margin-bottom: 20px;
}
.price .price_description {
  color: #4D4D4D;
  text-align: center;
  font-family: Play;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 50px;
}
@media (max-width : 1023px) {
  .price .price_description {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .price .price_description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .price .price_description {
    font-size: 15px;
  }
}
.price .site_row {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px 0;
}
.price .site_row .price_item {
  width: calc(33.333% - 14.5px);
  border-radius: 10px;
  background: #F1F1F1;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1160px) {
  .price .site_row .price_item {
    width: calc(50% - 14.5px);
  }
}
@media (max-width : 1023px) {
  .price .site_row .price_item {
    width: calc(50% - 9.5px);
  }
}
@media (max-width: 768px) {
  .price .site_row .price_item {
    width: 100%;
  }
}
.price .site_row .price_item:nth-child(n+4) {
  display: none;
}
.price .site_row .price_item .price_item_top {
  border-bottom: 1px solid #C1C1C1;
  margin-bottom: 20px;
  padding: 36px 19px 21px 37px;
}
@media (max-width: 768px) {
  .price .site_row .price_item .price_item_top {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .price .site_row .price_item .price_item_top {
    display: block;
  }
}
.price .site_row .price_item .price_item_top.bg_red {
  background-color: #E22323;
  border-radius: 10px;
}
.price .site_row .price_item .price_item_top.bg_red .price_name {
  color: #fff;
}
.price .site_row .price_item .price_item_top.bg_red .price_cost {
  color: #fff;
}
.price .site_row .price_item .price_item_top.bg_red .price_item_description {
  color: #fff;
}
.price .site_row .price_item .price_item_top .price_name {
  color: #3E3E3E;
  font-family: Play;
  font-size: 28px;
  font-weight: 700;
  line-height: 21px; /* 75% */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price .site_row .price_item .price_item_top .price_cost {
  color: #E22323;
  font-family: Play;
  font-size: 28px;
  font-weight: 700;
  line-height: 21px; /* 75% */
  margin-bottom: 9px;
}
.price .site_row .price_item .price_item_top .price_item_description {
  color: #9E9E9E;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Mulish;
  font-size: 14px;
  font-weight: 500;
}
.price .site_row .price_item .price_item_bottom {
  padding: 0 19px 26px 37px;
}
@media (max-width: 768px) {
  .price .site_row .price_item .price_item_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .price .site_row .price_item .price_item_bottom {
    display: block;
  }
}
.price .site_row .price_item .price_item_bottom .price_item_advantages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  margin-bottom: 22px;
}
.price .site_row .price_item .price_item_bottom .price_item_advantages li {
  display: flex;
  align-items: start;
  gap: 0 4px;
}
.price .site_row .price_item .price_item_bottom .price_item_advantages li img {
  width: 16px;
  height: 12px;
}
.price .site_row .price_item .price_item_bottom .price_item_advantages li span {
  color: #4D4D4D;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}
.price .site_row .price_item .price_item_bottom .price_item_advantages li span.red {
  color: #E22323;
}
.price .site_row .price_item .submit {
  padding-bottom: 46px;
}
@media (max-width : 1023px) {
  .price .site_row .price_item .submit {
    display: flex;
  }
}
.price .more_price_item {
  text-align: center;
  margin-top: 40px;
  display: block;
  margin-bottom: 133px;
}
@media (max-width: 1160px) {
  .price .more_price_item {
    margin-bottom: 90px;
  }
}
.price .more_price_item a {
  text-decoration: none;
  color: #E22323;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Play;
  font-size: 20px;
  font-weight: 700;
  border-radius: 15px;
  border: 2px solid #FF8E8E;
  padding: 25px 28px;
  display: inline-block;
  box-shadow: 0px -2px 6px 0px rgba(0, 0, 0, 0.15) inset;
  transition: 0.3s all ease;
}
@media (max-width: 1160px) {
  .price .more_price_item a {
    font-size: 16px;
  }
}
.price .more_price_item a:hover {
  background-color: #E22323;
  color: #fff;
}

.discount {
  margin-bottom: 110px;
}
.discount .discount_item {
  padding: 60px 0 45px 70px;
  background-image: url(../images/discount_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1160px) {
  .discount .discount_item {
    padding: 39px 0 40px 34px;
  }
}
@media (max-width: 768px) {
  .discount .discount_item {
    padding: 50px 16px 285px 16px;
    background-image: url(../images/discount_bg2.png);
    background-position: center;
  }
}
@media (max-width: 576px) {
  .discount .discount_item {
    margin: 0 -15px;
  }
}
.discount .discount_item .discout_item_things {
  max-width: 577px;
}
@media (max-width: 768px) {
  .discount .discount_item .discout_item_things {
    width: 100%;
    max-width: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.discount .discount_item .discout_item_things .discount_title {
  color: #3E3E3E;
  font-family: Play;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}
@media (max-width : 1023px) {
  .discount .discount_item .discout_item_things .discount_title {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .discount .discount_item .discout_item_things .discount_title {
    font-size: 20px;
  }
}
.discount .discount_item .discout_item_things .site_row {
  display: flex;
  justify-content: start;
  position: relative;
  margin-bottom: 26px;
  background-image: url(../images/discount_item_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 20px 14px 20px 14px;
  max-width: 363px;
  gap: 0 60px;
  text-align: start;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .discount .discount_item .discout_item_things .site_row {
    gap: 0 50px;
  }
}
.discount .discount_item .discout_item_things .site_row .left_item {
  display: flex;
  flex-direction: column;
}
.discount .discount_item .discout_item_things .site_row .left_item .left_text {
  color: #626262;
  font-family: Play;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 480px) {
  .discount .discount_item .discout_item_things .site_row .left_item .left_text {
    font-size: 12px;
  }
}
.discount .discount_item .discout_item_things .site_row .left_item .left_price {
  color: #626262;
  font-family: Play;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
.discount .discount_item .discout_item_things .site_row .left_item .left_price::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 50%;
  width: 46%;
  height: 1px;
  background-color: #626262;
}
.discount .discount_item .discout_item_things .site_row .right_item {
  display: flex;
  flex-direction: column;
}
.discount .discount_item .discout_item_things .site_row .right_item .right_text {
  color: #FFF;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .discount .discount_item .discout_item_things .site_row .right_item .right_text {
    font-size: 12px;
  }
}
.discount .discount_item .discout_item_things .site_row .right_item .right_price {
  color: #FFF;
  font-family: Play;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
.discount .discount_item .discout_item_things .discount_description {
  color: #4D4D4D;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  line-height: 21px; /* 95.455% */
  margin-bottom: 24px;
}
@media (max-width : 1023px) {
  .discount .discount_item .discout_item_things .discount_description {
    font-size: 18px;
  }
}
.discount .discount_item .discout_item_things .discount_time .time_and_button {
  display: flex;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 768px) {
  .discount .discount_item .discout_item_things .discount_time .time_and_button {
    flex-direction: column-reverse;
    gap: 20px 0;
  }
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_title {
  color: #4D4D4D;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px; /* 116.667% */
  margin-bottom: 9px;
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to {
  display: flex;
  align-items: center;
  gap: 0 26px;
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .hour .spans {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .hour .spans span {
  background-image: url(../images/spans_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8px 16px 15px 17px;
  display: block;
  fill: #FFF;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  color: #E22323;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 21px; /* 95.455% */
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .hour .hour_title {
  text-align: center;
  color: #E22323;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px; /* 116.667% */
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .minute .spans {
  display: flex;
  align-items: center;
  gap: 0 8px;
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .minute .spans span {
  background-image: url(../images/spans_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8px 16px 15px 17px;
  display: block;
  fill: #FFF;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  color: #E22323;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 21px; /* 95.455% */
}
.discount .discount_item .discout_item_things .discount_time .time_and_button .time_to .minute .minutes_title {
  text-align: center;
  color: #E22323;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px; /* 116.667% */
}

.box_businness {
  margin-bottom: 97px;
}
.box_businness .site_row {
  align-items: stretch;
  gap: 30px 0;
  justify-content: space-between;
}
.box_businness .site_row .box_item {
  padding: 14px 14px 27px;
  border-radius: 10px;
  background: #F1F1F1;
  width: calc(33.333% - 15px);
  flex: 0 0 auto;
  /* тень */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1160px) {
  .box_businness .site_row .box_item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .box_businness .site_row .box_item {
    width: 100%;
  }
}
.box_businness .site_row .box_item .box_image {
  margin-bottom: 20px;
}
.box_businness .site_row .box_item .box_image img {
  border-radius: 10px;
  /* тень */
  width: 100%;
}
.box_businness .site_row .box_item .box_title {
  color: #4D4D4D;
  text-align: center;
  font-family: Play;
  font-size: 20px;
  font-weight: 400;
  line-height: 21px; /* 105% */
  margin-bottom: 10px;
}
.box_businness .site_row .box_item .box_description {
  color: #4D4D4D;
  text-align: center;
  font-family: Play;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px; /* 131.25% */
}

.mobile_app {
  margin-bottom: 110px;
}
.mobile_app .mobile_item {
  background-image: url(../images/mobile_app.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 83px 0 31px 70px;
}
@media (max-width: 1160px) {
  .mobile_app .mobile_item {
    padding: 45px 0 40px 25px;
  }
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item {
    padding: 44px 0 21px 25px;
    border-radius: 50px;
  }
}
@media (max-width: 768px) {
  .mobile_app .mobile_item {
    padding: 50px 10px 417px 10px;
    background-image: url(../images/mobileapp_bgM.png);
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .mobile_app .mobile_item {
    margin: 0 -15px;
    border-radius: 20px;
  }
}
.mobile_app .mobile_item .mobile_item_things {
  max-width: 541px;
}
@media (max-width: 768px) {
  .mobile_app .mobile_item .mobile_item_things {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.mobile_app .mobile_item .mobile_item_things .mobile_item_title {
  color: #3E3E3E;
  font-family: Play;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 23px;
}
@media (max-width: 1160px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_title {
    font-size: 25px;
  }
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_title {
    font-size: 20px;
  }
}
.mobile_app .mobile_item .mobile_item_things .mobile_item_title span {
  color: #E22323;
  font-family: Play;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1160px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_title span {
    font-size: 25px;
  }
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_title span {
    font-size: 19px;
  }
}
.mobile_app .mobile_item .mobile_item_things .mobile_item_description {
  color: #4D4D4D;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  line-height: 21px; /* 95.455% */
  margin-bottom: 23px;
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_description {
    font-size: 19px;
  }
}
.mobile_app .mobile_item .mobile_item_things .mobile_item_description_two {
  color: #4D4D4D;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  line-height: 21px; /* 95.455% */
  margin-bottom: 52px;
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item .mobile_item_things .mobile_item_description_two {
    font-size: 19px;
  }
}
@media (max-width : 1023px) {
  .mobile_app .mobile_item .mobile_item_things .all_forum {
    align-items: stretch;
    max-width: 255px;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button {
    align-items: stretch;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button .forum_input {
    width: 100%;
    max-width: none;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button .modal_sender {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 480px) {
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button {
    align-items: stretch;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button .forum_input {
    width: 100%;
    max-width: none;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_input_button .modal_sender {
    width: 100%;
    max-width: none;
  }
}
.mobile_app .mobile_item .mobile_item_things .all_forum .forum_politics {
  display: none;
}
@media (max-width: 768px) {
  .mobile_app .mobile_item .mobile_item_things .all_forum {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mobile_app .mobile_item .mobile_item_things .all_forum .forum_politics {
    display: block;
  }
}

.faq {
  background-image: url(../images/faq_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 0;
  padding: 0 0 114px 0;
}
@media (max-width: 768px) {
  .faq {
    background-image: none;
  }
}
.faq .section_title {
  margin-bottom: 101px;
}
.faq .site_row {
  flex-direction: column;
  justify-content: center;
  gap: 96px 0;
}
.faq .faq_item {
  position: relative;
  text-align: center;
  z-index: 1;
}
.faq .faq_item::before {
  content: "";
  width: 1px;
  display: block;
  height: 50px;
  background-color: #E22323;
  left: 50%;
  bottom: -61px;
  right: 50%;
  position: absolute;
}
@media (max-width: 768px) {
  .faq .faq_item::before {
    display: none;
  }
}
.faq .faq_item:last-child::before {
  display: none;
}
.faq .faq_item .faq_item_number {
  position: absolute;
  left: 0;
  top: -45px;
  right: 0;
  z-index: -1;
}
.faq .faq_item .faq_item_title {
  color: #5B5B5B;
  font-family: Play;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width : 1023px) {
  .faq .faq_item .faq_item_title {
    font-size: 18px;
  }
}
.faq .faq_item .faq_item_description {
  color: #5B5B5B;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width : 1023px) {
  .faq .faq_item .faq_item_description {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .faq .faq_item .faq_item_description {
    font-size: 16px;
  }
}

.created_box {
  margin-top: 24px;
  margin-bottom: 110px;
}
.created_box .section_title {
  margin-bottom: 20px;
}
.created_box .create-swiper {
  margin: 0 30px;
  position: relative;
}
.created_box .create-swiper .swiper_buttons .next_button {
  position: absolute;
  right: 30%;
  text-decoration: none;
  top: 47%;
  bottom: 50%;
  z-index: 99;
}
@media (max-width: 1160px) {
  .created_box .create-swiper .swiper_buttons .next_button {
    right: 36%;
    top: 60%;
  }
  .created_box .create-swiper .swiper_buttons .next_button img {
    width: 45px;
  }
}
@media (max-width : 1023px) {
  .created_box .create-swiper .swiper_buttons .next_button {
    right: 21%;
  }
}
@media (max-width: 768px) {
  .created_box .create-swiper .swiper_buttons .next_button {
    right: 13%;
  }
}
@media (max-width: 576px) {
  .created_box .create-swiper .swiper_buttons .next_button {
    right: 0%;
  }
}
@media (max-width: 480px) {
  .created_box .create-swiper .swiper_buttons .next_button {
    right: -2%;
    top: 64%;
  }
}
.created_box .create-swiper .swiper_buttons .prev_button {
  position: absolute;
  left: 30%;
  top: 47%;
  bottom: 50%;
  z-index: 99;
  text-decoration: none;
}
@media (max-width: 1160px) {
  .created_box .create-swiper .swiper_buttons .prev_button {
    left: 36%;
    top: 60%;
  }
  .created_box .create-swiper .swiper_buttons .prev_button img {
    width: 45px;
  }
}
@media (max-width : 1023px) {
  .created_box .create-swiper .swiper_buttons .prev_button {
    left: 21%;
  }
}
@media (max-width: 768px) {
  .created_box .create-swiper .swiper_buttons .prev_button {
    left: 13%;
  }
}
@media (max-width: 576px) {
  .created_box .create-swiper .swiper_buttons .prev_button {
    left: 0%;
  }
}
@media (max-width: 480px) {
  .created_box .create-swiper .swiper_buttons .prev_button {
    left: -2%;
    top: 64%;
  }
}
.created_box .create-swiper .gallery-paginations {
  display: flex;
  justify-content: center;
}
@media (max-width: 1160px) {
  .created_box .create-swiper .gallery-paginations {
    margin-top: -62px;
  }
}
.created_box .create-swiper .gallery-paginations .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 8px;
  background-color: #D0D0D0;
}
.created_box .create-swiper .gallery-paginations .swiper-pagination-bullet-active {
  background-color: #9E9E9E;
}
.created_box .swiper-wrapper {
  align-items: center;
}
.created_box .swiper-slide {
  transform: scale(0.8);
  transition: 0.3s all ease;
  opacity: 0.5;
}
@media (max-width: 1160px) {
  .created_box .swiper-slide {
    transform: scale(0.4);
  }
}
.created_box .swiper-slide-next .create_item, .created_box .swiper-slide-prev .create_item {
  text-align: center;
}
.created_box .swiper-slide-next .create_item .create_site_name, .created_box .swiper-slide-prev .create_item .create_site_name {
  display: none;
}
.created_box .swiper-slide-next .create_item .create_site_name a, .created_box .swiper-slide-prev .create_item .create_site_name a {
  text-decoration: underline;
  color: #E22323;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  display: none;
  transition: 0.3s all ease;
}
.created_box .swiper-slide-next .create_item .create_site_name a:hover, .created_box .swiper-slide-prev .create_item .create_site_name a:hover {
  color: red;
}
.created_box .swiper-slide-next .create_item .create_img img, .created_box .swiper-slide-prev .create_item .create_img img {
  max-width: 100%;
}
.created_box .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
}
@media (max-width: 1160px) {
  .created_box .swiper-slide-active {
    transform: scale(0.7);
  }
}
@media (max-width: 576px) {
  .created_box .swiper-slide-active {
    transform: scale(1);
  }
}
.created_box .swiper-slide-active .create_item {
  text-align: center;
}
.created_box .swiper-slide-active .create_item .create_site_name {
  display: block;
  position: relative;
  z-index: 20;
  margin-top: 30px;
}
.created_box .swiper-slide-active .create_item .create_site_name a {
  text-decoration: underline;
  color: #E22323;
  font-family: Play;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  display: inline-block;
  transition: 0.3s all ease;
}
.created_box .swiper-slide-active .create_item .create_site_name a:hover {
  color: red;
}
.created_box .swiper-slide-active .create_item .create_img img {
  max-width: 100%;
}

.comments {
  margin-bottom: 58px;
}
.comments .swiper_comments .swiper_buttonss .nextx_button {
  position: absolute;
  right: 16%;
  text-decoration: none;
  top: 16%;
  bottom: 50%;
  z-index: 99;
}
@media (max-width : 1023px) {
  .comments .swiper_comments .swiper_buttonss .nextx_button {
    right: 11%;
  }
}
@media (max-width: 768px) {
  .comments .swiper_comments .swiper_buttonss .nextx_button {
    right: 1%;
  }
  .comments .swiper_comments .swiper_buttonss .nextx_button img {
    width: 45px;
  }
}
@media (max-width: 576px) {
  .comments .swiper_comments .swiper_buttonss .nextx_button {
    right: 0%;
    top: 22%;
  }
}
@media (max-width: 480px) {
  .comments .swiper_comments .swiper_buttonss .nextx_button {
    top: 30%;
  }
}
.comments .swiper_comments .swiper_buttonss .prevv_button {
  position: absolute;
  left: 16%;
  top: 16%;
  bottom: 50%;
  z-index: 99;
  text-decoration: none;
}
@media (max-width : 1023px) {
  .comments .swiper_comments .swiper_buttonss .prevv_button {
    left: 11%;
  }
}
@media (max-width: 768px) {
  .comments .swiper_comments .swiper_buttonss .prevv_button {
    left: 1%;
  }
  .comments .swiper_comments .swiper_buttonss .prevv_button img {
    width: 45px;
  }
}
@media (max-width: 576px) {
  .comments .swiper_comments .swiper_buttonss .prevv_button {
    left: 0%;
    top: 22%;
  }
}
@media (max-width: 480px) {
  .comments .swiper_comments .swiper_buttonss .prevv_button {
    top: 30%;
  }
}
.comments .swiper_comments .gallery-paginations_two {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}
.comments .swiper_comments .gallery-paginations_two .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 8px;
  background-color: #D0D0D0;
}
.comments .swiper_comments .gallery-paginations_two .swiper-pagination-bullet-active {
  background-color: #9E9E9E;
}
.comments .swiper_comments .swiper-slide {
  width: fit-content;
}
.comments .swiper_comments .swiper-slide .comments_item {
  color: #5B5B5B;
  text-align: center;
  font-family: Play;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width : 1023px) {
  .comments .swiper_comments .swiper-slide .comments_item {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .comments .swiper_comments .swiper-slide .comments_item {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 576px) {
  .comments .swiper_comments .swiper-slide .comments_item {
    font-size: 14px;
    line-height: 20px;
  }
  .comments .swiper_comments .swiper-slide .comments_item br {
    display: none;
  }
}

.start_selling {
  margin-bottom: 50px;
}
.start_selling .start_item {
  background-image: url(../images/start_bg.png);
  background-repeat: no-repeat;
  background-position: top;
  border-radius: 20px;
  background-size: cover;
  padding: 119px 0 52px 70px;
}
@media (max-width: 1160px) {
  .start_selling .start_item {
    padding: 65px 0 22px 28px;
  }
}
@media (max-width : 1023px) {
  .start_selling .start_item {
    padding: 82px 0 12px 19px;
  }
}
@media (max-width: 768px) {
  .start_selling .start_item {
    padding: 60px 12px 39px 12px;
    background-image: url(../images/start_itembg.png);
    background-position: center;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .start_selling .start_item {
    margin: 0 -15px;
  }
}
.start_selling .start_item .start_item_things {
  max-width: 551px;
}
@media (max-width: 768px) {
  .start_selling .start_item .start_item_things {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.start_selling .start_item .start_item_things .start_title {
  color: #3E3E3E;
  font-family: Play;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 26px;
}
@media (max-width : 1023px) {
  .start_selling .start_item .start_item_things .start_title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .start_selling .start_item .start_item_things .start_title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .start_selling .start_item .start_item_things .start_title {
    font-size: 18px;
  }
}
.start_selling .start_item .start_item_things .start_description {
  color: #4D4D4D;
  font-family: Play;
  font-size: 22px;
  font-weight: 400;
  line-height: 21px; /* 95.455% */
  margin-bottom: 44px;
}
@media (max-width : 1023px) {
  .start_selling .start_item .start_item_things .start_description {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .start_selling .start_item .start_item_things .start_description {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .start_selling .start_item .start_item_things .start_description {
    font-size: 15px;
  }
}
.start_selling .start_item .start_item_things .forum_input_button {
  margin-bottom: 0;
}
@media (max-width : 1023px) {
  .start_selling .start_item .start_item_things .all_forum {
    align-items: stretch;
    max-width: 255px;
  }
  .start_selling .start_item .start_item_things .all_forum .forum_input_button {
    align-items: stretch;
  }
  .start_selling .start_item .start_item_things .all_forum .forum_input_button .forum_input {
    width: 100%;
    max-width: none;
  }
  .start_selling .start_item .start_item_things .all_forum .forum_input_button .modal_sender {
    width: 100%;
    max-width: none;
  }
}
.start_selling .start_item .start_item_things .all_forum .forum_politics {
  display: none;
}
@media (max-width: 576px) {
  .start_selling .start_item .start_item_things .all_forum .forum_politics {
    display: block;
    font-size: 8px;
  }
  .start_selling .start_item .start_item_things .all_forum .forum_politics a {
    font-size: 8px;
  }
}

footer {
  background: #D0D0D0;
  padding: 20px 0 18px 0;
}
footer .site_row {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer .site_row {
    gap: 20px 10px;
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  footer .site_row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
footer .site_row .footer_logo img {
  max-width: 100%;
}
@media (max-width : 1023px) {
  footer .site_row .footer_logo img {
    width: 200px;
    max-width: none;
  }
}
footer .site_row .footer_tab {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px 0;
}
@media (max-width: 768px) {
  footer .site_row .footer_tab {
    display: none;
  }
}
@media (max-width: 576px) {
  footer .site_row .footer_tab {
    display: none;
  }
}
footer .site_row .footer_tab li a {
  text-decoration: none;
  color: #4D4D4D;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
}
footer .site_row .footer_contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
footer .site_row .footer_contacts li a {
  display: flex;
  align-items: center;
  gap: 0 8px;
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .site_row .footer_contacts li a {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  footer .site_row .footer_contacts li a {
    flex-direction: column;
  }
}
footer .site_row .footer_contacts li a img {
  max-width: 100%;
}
footer .site_row .footer_contacts li a span {
  color: #4D4D4D;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
}
footer .site_row .footer_contacts li:last-child a {
  text-decoration: underline;
  color: #4D4D4D;
}
footer .site_row .footer_policy {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px 0;
}
@media (max-width: 576px) {
  footer .site_row .footer_policy {
    width: 100%;
    text-align: center;
  }
}
footer .site_row .footer_policy li a {
  color: #4D4D4D;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
  text-decoration-line: underline;
}
footer .site_row .footer_policy li:last-child {
  color: #4D4D4D;
  font-family: Play;
  font-size: 14px;
  font-weight: 400;
}/*# sourceMappingURL=main.css.map */