/* fonts */
* {
  box-sizing: border-box;
}

ul, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body {
  position: relative;
  font-family: "Unbounded", sans-serif;
  color: #020202;
  cursor: default;
}

img, a {
  display: block;
}

.clearFix {
  clear: both;
}

.container {
  padding: 0 60px;
}
@media screen and (max-width: 960px) {
  .container {
    padding: 0 12px;
  }
}

.bg {
  background: #FCFCFC;
}

.bg-dark {
  background: #020202;
}

.title-main {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.03em;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .title-main {
    font-size: 20px;
    line-height: 25px;
  }
}
.title-main .uppercase {
  text-transform: uppercase;
}
.title-main .yellow {
  color: #F0FE6D;
}

.no-scroll {
  overflow: hidden;
}

/*---------------------------------------------------

header

---------------------------------------------------*/
.header {
  padding-top: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .header {
    padding: 0;
  }
}
.header .header-scroll-line {
  display: none;
}
.header .header-scroll-line-mobile {
  display: none;
}
.header.has-scroll-line {
  padding-top: 34px;
}
.header.has-scroll-line .header-scroll-line {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  position: fixed;
  height: 34px;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .header.has-scroll-line .header-scroll-line {
    display: none;
  }
}
.header.has-scroll-line .header-scroll-line .header-scroll-line-holder {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--my-gap);
  position: relative;
  height: 100%;
  width: 100%;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--my-end-pos));
  }
}
.header.has-scroll-line .header-scroll-line .header-scroll-line-holder .header-scroll-line-message {
  flex: 0 0 auto;
  display: block;
  position: relative;
  height: 20px;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  color: #020202;
  text-decoration: none;
}
.header.has-scroll-line .header-scroll-line-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .header.has-scroll-line .header-scroll-line-mobile {
    position: fixed;
    display: block;
    top: 132px;
    height: auto;
    width: 308px;
    left: auto;
    right: 34px;
    background: rgba(240, 254, 109, 0.5);
    backdrop-filter: blur(9px);
    padding: 51px 31px;
    border-radius: 16px;
    overflow: initial;
  }
  .header.has-scroll-line .header-scroll-line-mobile.closed {
    display: none;
  }
}
.header.has-scroll-line .header-scroll-line-mobile .header-scroll-line-message {
  flex: 0 0 auto;
  display: block;
  position: relative;
  height: auto;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  color: #212121;
  text-decoration: none;
}
.header .close-btn {
  position: absolute;
  top: 11px;
  right: 11px;
  height: 40px;
  width: 40px;
  background: #020202;
  border-radius: 99px;
  cursor: pointer;
}
.header .close-btn:hover {
  background: #6C7680;
}
.header .close-btn:before, .header .close-btn:after {
  position: absolute;
  display: block;
  left: 19px;
  top: 8px;
  content: "";
  height: 24px;
  width: 2px;
  background-color: #F0FE6D;
  border-radius: 2px;
}
.header .close-btn:before {
  transform: rotate(45deg);
}
.header .close-btn:after {
  transform: rotate(-45deg);
}
.header .cities {
  position: fixed;
  display: block;
  top: 132px;
  height: auto;
  width: 500px;
  left: auto;
  right: 73px;
  background: rgba(240, 254, 109, 0.5);
  backdrop-filter: blur(9px);
  padding: 56px 63px;
  border-radius: 16px;
  overflow: initial;
  z-index: 99;
}
.header .cities.closed {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .cities {
    display: none;
  }
}
.header .cities .cities-title {
  position: relative;
  margin-bottom: 32px;
  color: #212121;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 24px;
  white-space: nowrap;
  text-align: center;
}
.header .cities .cities-inner {
  display: block;
  position: relative;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  color: #212121;
  text-decoration: none;
  line-height: 0.8;
  column-count: 2;
}
.header .cities .cities-inner a {
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  color: #212121;
  text-decoration: none;
}
.header .top {
  border-radius: 16px;
  background: #F0FE6D;
  padding: 14px 41px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1380px) {
  .header .top {
    padding: 10px 24px;
  }
}
@media screen and (max-width: 960px) {
  .header .top {
    background: #181818;
    padding: 10px 24px;
    position: fixed;
    z-index: 100;
    top: 8px;
    left: 12px;
    width: calc(100% - 24px);
  }
}
.header .top .left {
  display: flex;
  align-items: center;
}
.header .top .logo {
  margin-right: 113px;
}
.header .top .logo img {
  width: 149px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .header .top .logo img {
    display: none;
    width: 80px;
  }
}
.header .top .logo .logo--m {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .top .logo .logo--m {
    display: block;
    width: 103px;
  }
}
@media screen and (max-width: 1540px) {
  .header .top .logo {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1290px) {
  .header .top .logo {
    margin-right: 15px;
  }
}
@media screen and (max-width: 960px) {
  .header .top .logo {
    margin-right: 0;
  }
}
.header .top .menu {
  display: flex;
}
@media screen and (max-width: 960px) {
  .header .top .menu {
    display: none;
  }
}
.header .top .item {
  text-decoration: none;
  color: #020202;
  text-transform: uppercase;
  padding: 0 10px;
  position: relative;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-align: center;
}
.header .top .item:before {
  display: block;
  content: attr(title);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.header .top .item:after {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: -4px;
  left: 10px;
  width: 0;
  height: 2px;
  background: #020202;
  transition: all 0.3s ease;
}
.header .top .item:hover {
  font-weight: 600;
}
.header .top .item:hover:after {
  width: calc(100% - 20px);
}
@media screen and (max-width: 1560px) {
  .header .top .item {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1430px) {
  .header .top .item {
    padding: 0 5px;
  }
  .header .top .item:after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 5px;
    width: 0;
    height: 2px;
    background: #020202;
    transition: all 0.3s ease;
  }
  .header .top .item:hover {
    font-weight: 600;
  }
  .header .top .item:hover:after {
    width: calc(100% - 10px);
  }
}
@media screen and (max-width: 1290px) {
  .header .top .item {
    font-size: 10px;
    line-height: 13px;
  }
}
.header .top .item--select {
  font-weight: 600;
}
.header .top .item--select:after {
  width: calc(100% - 20px);
}
@media screen and (max-width: 1400px) {
  .header .top .item--select:after {
    width: calc(100% - 10px);
  }
}
.header .top .right {
  display: flex;
  align-items: center;
}
.header .top .search {
  display: flex;
  align-items: center;
  width: 211px;
  cursor: pointer;
  padding: 14px 0 14px 16px;
  border-radius: 8px;
  color: #FCFCFC;
  font-size: 14px;
  line-height: 24px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  background: #181818;
}
.header .top .search img {
  margin-right: 10px;
  width: 15px;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .header .top .search {
    padding: 7px 0 7px 8px;
    width: 150px;
  }
}
@media screen and (max-width: 1210px) {
  .header .top .search {
    width: 29px;
  }
  .header .top .search div {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header .top .search {
    display: none;
  }
}
.header .top .phones {
  margin: 0 13px 0 24px;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
}
.header .top .phones a {
  color: #020202;
  text-decoration: none;
  margin-bottom: 4px;
}
.header .top .phones a:last-child {
  margin-bottom: 0;
}
.header .top .phones .all-the-cities {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 8px;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .header .top .phones .all-the-cities {
    display: none;
  }
}
@media screen and (max-width: 1320px) {
  .header .top .phones {
    font-size: 10px;
    line-height: 13px;
    margin: 0 13px 0 15px;
  }
}
@media screen and (max-width: 960px) {
  .header .top .phones {
    font-size: 12px;
    line-height: 1;
    margin: 0 0 0 11px;
    order: 1;
  }
  .header .top .phones a {
    color: #FCFCFC;
    margin: 0;
  }
  .header .top .phones a:last-child {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .header .top .phones {
    margin: 0 0 0 10px;
  }
}
.header .top .social {
  display: flex;
  align-items: center;
}
.header .top .social a {
  margin-right: 18px;
}
.header .top .social a:last-child {
  margin-right: 0;
}
.header .top .social img {
  height: 19px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .header .top .social {
    order: 0;
  }
  .header .top .social a {
    margin-right: 15px;
  }
  .header .top .social a:last-child {
    margin-right: 0;
  }
  .header .top .social img {
    height: 22px;
  }
}
.header .top .cart-icon {
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: 0;
  transform: translateY(100%);
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .header .top .cart-icon {
    bottom: -12px;
  }
}
.header .top .cart-icon img {
  width: 78px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .header .top .cart-icon img {
    width: 58px;
  }
}
.header .top .cart-icon div {
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  border: 1px solid #dbdbdb;
  font-size: 12px;
  line-height: 15px;
  color: #dc0404;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .header .top .cart-icon div {
    width: 16px;
    height: 16px;
    font-size: 8px;
    line-height: 10px;
    bottom: 4px;
    right: 4px;
  }
}
.header .top .lang {
  flex: 0 0 auto;
  display: flex;
  position: relative;
  margin-left: 24px;
  width: 52px;
  height: 31px;
}
@media screen and (max-width: 1290px) {
  .header .top .lang {
    margin-left: 15px;
  }
}
@media screen and (max-width: 960px) {
  .header .top .lang {
    display: none;
  }
}
.header .top .lang .lang-list {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid #000;
  background: #F0FE6D;
}
.header .top .lang .lang-list .lang-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  cursor: pointer;
}
.header .top .lang .lang-list .lang-list-item a {
  color: #020202;
  text-decoration: none;
}
.header .submenu {
  position: absolute;
  bottom: 0;
  transform: translateY(calc(100% + 8px));
  left: 0;
  width: 100%;
  border-radius: 16px;
  background: #F0FE6D;
  padding: 24px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .header .submenu {
    display: none;
  }
}
.header .submenu-inner {
  border-radius: 16px;
  overflow: hidden;
  background: #181818;
}
.header .submenu-row {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
}
.header .submenu-row:last-child {
  border-bottom: none;
}
.header .submenu-row a {
  text-decoration: none;
  padding: 23px 0;
  color: #FCFCFC;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  text-align: center;
}
@media screen and (max-width: 1350px) {
  .header .submenu-row a {
    font-size: 12px;
    line-height: 16px;
  }
}
@media screen and (max-width: 1080px) {
  .header .submenu-row a {
    font-size: 10px;
    line-height: 14px;
  }
}
.header .submenu-row a:hover {
  color: #F0FE6D;
  transition: all 0.3s ease;
}
.header .submenu-row-dyn a {
  flex: 1 0 20%;
  border-right: 1px solid rgba(240, 254, 109, 0.2);
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
}
.header .submenu-row-dyn a:last-child {
  border: none;
}
.header .submenu-row-4 a {
  border-right: 1px solid rgba(240, 254, 109, 0.2);
  width: 25%;
}
.header .submenu-row-4 a:last-child {
  border: none;
}
.header .submenu-row-5 a {
  border-right: 1px solid rgba(240, 254, 109, 0.2);
  width: 20%;
}
.header .submenu-row-5 a:last-child {
  border: none;
}
.header .submenu-row-3 a {
  border-right: 1px solid rgba(240, 254, 109, 0.2);
  width: 33.33333333%;
}
.header .submenu-row-3 a:last-child {
  border: none;
}
.header .submenu-row-2 a {
  border-right: 1px solid rgba(240, 254, 109, 0.2);
  width: 50%;
}
.header .submenu-row-2 a:last-child {
  border: none;
}
.header .bottom {
  display: none;
}
@media screen and (max-width: 960px) {
  .header .bottom {
    padding-bottom: 11px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    z-index: 100;
    bottom: 8px;
    left: 12px;
    width: calc(100% - 24px);
    height: 56px;
    border-radius: 16px;
    background: transparent url("../images/header-bottom-bg.svg") no-repeat top center;
  }
  .header .bottom:after {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    left: 0;
    top: 0;
    background: #181818;
    border-radius: 16px 0 0 16px;
    z-index: 0;
  }
}
@media screen and (max-width: 960px) and (max-width: 500px) {
  .header .bottom:after {
    width: 20%;
  }
}
@media screen and (max-width: 960px) {
  .header .bottom:before {
    content: "";
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
    background: #181818;
    border-radius: 0 16px 16px 0;
    z-index: 0;
  }
}
@media screen and (max-width: 960px) and (max-width: 500px) {
  .header .bottom:before {
    width: 20%;
  }
}
.header .bottom .item {
  flex: 1 1 20%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  color: #FCFCFC;
  text-decoration: none;
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.header .bottom .item img {
  width: 20px;
  height: auto;
  margin: 0 auto 8px auto;
}
.header .bottom .item div {
  width: 100%;
  text-align: center;
}
.header .bottom .search {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: #F0FE6D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header .bottom .search img {
  width: 16px;
  height: auto;
}

.header-page {
  padding: 26px 0;
  background: #FCFCFC;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  border-bottom: 1px solid #C2C2C2;
}
@media screen and (max-width: 960px) {
  .header-page {
    padding: 12px 0;
    position: absolute;
  }
}
.header-page .logo {
  width: 112px;
  height: auto;
}
.header-page .back {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #020202;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .header-page .back {
    left: 12px;
    top: initial;
    transform: none;
    bottom: -47px;
  }
}
.header-page .back img {
  width: 16px;
  height: auto;
  margin-right: 12px;
}

.bg-dark .header.has-scroll-line .header-scroll-line {
  background: #020202;
}
.bg-dark .header.has-scroll-line .header-scroll-line .header-scroll-line-message {
  color: #F0FE6D;
}

/*---------------------------------------------------

google

---------------------------------------------------*/
.google {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCFCFC;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.03em;
}
.google .google-logo {
  width: 24px;
  height: auto;
}
.google .google-rating {
  display: flex;
  align-items: center;
  margin: 0 12px;
}
.google .google-num {
  margin-right: 3px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.google .google-stars {
  display: flex;
  align-items: center;
}
.google .google-stars img {
  width: 13px;
  height: auto;
  margin-right: 2px;
}
.google .google-stars img:last-child {
  margin-right: 0;
}
.google .google-reviews {
  text-decoration: none;
  color: #FCFCFC;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

/*---------------------------------------------------

footer

---------------------------------------------------*/
.footer {
  background: #020202;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .footer {
    padding-top: 23px;
    padding-bottom: 120px;
  }
}
.footer .logo {
  margin: 0 auto 33px auto;
  width: fit-content;
}
.footer .logo img {
  width: 242px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .footer .logo {
    margin-bottom: 16px;
  }
  .footer .logo img {
    width: 101px;
  }
}
.footer .menu-title {
  padding-bottom: 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .footer .menu-title {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 8px;
  }
}
.footer .row {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  .footer .row {
    flex-direction: column;
    align-items: center;
  }
}
.footer .row-center {
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  .footer .row-center {
    padding: 16px 0;
  }
}
.footer .left {
  width: 57%;
  margin-right: 32px;
}
@media screen and (max-width: 960px) {
  .footer .left {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
.footer .right {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .footer .right {
    width: 100%;
  }
}
.footer .bg {
  background: #181818;
  border-radius: 16px;
}
.footer .menu {
  display: flex;
  flex-wrap: wrap;
}
.footer .item {
  text-align: center;
  text-decoration: none;
  color: #FCFCFC;
  padding: 27px 0;
  position: relative;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}
.footer .item:hover {
  color: #F0FE6D;
}
@media screen and (max-width: 960px) {
  .footer .item {
    padding: 17px 0;
    font-size: 10px;
    line-height: 12px;
  }
}
.footer .item33 {
  width: 33.333%;
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
}
.footer .item33:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  height: calc(100% - 20px);
  width: 1px;
  background: rgba(240, 254, 109, 0.2);
}
@media screen and (max-width: 960px) {
  .footer .item33:after {
    height: 100%;
    top: 0;
  }
}
.footer .item33:nth-child(3):after {
  display: none;
}
.footer .item50 {
  width: 50%;
}
.footer .item50:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  height: calc(100% - 20px);
  width: 1px;
  background: rgba(240, 254, 109, 0.2);
}
@media screen and (max-width: 960px) {
  .footer .item50:after {
    top: 0;
    height: 100%;
  }
}
.footer .item50:last-child:after {
  display: none;
}
.footer .google-holder {
  display: flex;
  justify-content: center;
}
.footer .google-holder .google {
  flex-direction: column;
}
.footer .google-holder .google:after {
  content: "";
  width: 102px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .footer .google-holder .google:after {
    margin-top: 8px;
  }
}
.footer .google-holder .google .google-rating {
  margin: 14px 0;
}
@media screen and (max-width: 960px) {
  .footer .google-holder .google .google-rating {
    margin: 6px 0;
  }
}
@media screen and (max-width: 960px) {
  .footer .google-holder {
    padding: 17px 0;
  }
}
.footer .contacts,
.footer .socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .contacts {
  padding: 27px 0;
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
  border-top: 1px solid rgba(240, 254, 109, 0.2);
}
@media screen and (max-width: 1500px) {
  .footer .contacts .list {
    flex-direction: column;
  }
  .footer .contacts .list a {
    margin: 0 0 10px 0;
  }
  .footer .contacts .list a:last-child {
    margin: 0;
  }
}
@media screen and (max-width: 960px) {
  .footer .contacts .list a {
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1390px) {
  .footer .contacts {
    align-items: flex-start;
    padding: 14px 0;
  }
}
.footer .contacts-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1380px) {
  .footer .contacts-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.footer .list {
  display: flex;
  align-items: center;
}
.footer .list a {
  color: #FCFCFC;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-decoration: none;
  margin-right: 12px;
}
.footer .list a:last-child {
  margin-right: 0;
}
.footer .socials {
  width: 100%;
}
.footer .socials .list {
  border-radius: 8px;
  background: #181818;
  padding: 10px 15px;
}
.footer .socials .list a {
  background: #020202;
  margin-right: 15px;
}
.footer .socials .list a:last-child {
  margin-right: 0;
}
.footer .socials .list a img {
  width: 38px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .footer .socials .list {
    padding: 12px 10px;
  }
  .footer .socials .list a {
    margin-right: 20px;
  }
  .footer .socials .list a:last-child {
    margin-right: 0;
  }
  .footer .socials .list a img {
    width: auto;
    height: 22px;
  }
}
.footer .pay {
  padding: 32px 0 32px 124px;
}
@media screen and (max-width: 1380px) {
  .footer .pay {
    padding: 32px;
  }
}
@media screen and (max-width: 960px) {
  .footer .pay {
    padding: 12px 0 12px 12px;
  }
}
.footer .pay-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  padding-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .footer .pay-title {
    font-size: 10px;
    line-height: 14px;
    padding-bottom: 4px;
  }
}
.footer .pay-logo {
  display: flex;
  align-items: flex-end;
}
.footer .pay-logo img {
  height: auto;
}
.footer .pay-logo img:first-child {
  width: 283px;
  margin-right: 20px;
}
@media screen and (max-width: 1240px) {
  .footer .pay-logo img:first-child {
    width: 165px;
  }
}
@media screen and (max-width: 360px) {
  .footer .pay-logo img:first-child {
    width: 135px;
  }
}
.footer .pay-logo img:last-child {
  width: 196px;
}
@media screen and (max-width: 1240px) {
  .footer .pay-logo img:last-child {
    width: 116px;
  }
}
@media screen and (max-width: 360px) {
  .footer .pay-logo img:last-child {
    width: 100px;
  }
}
.footer .cards {
  display: flex;
}
@media screen and (max-width: 960px) {
  .footer .cards {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.footer .cards img {
  margin-right: 12px;
}
.footer .cards img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .footer .cards img {
    width: 42px;
    height: auto;
    margin-right: 4px;
  }
  .footer .cards img:last-child {
    margin-right: 0;
  }
}
.footer .copy {
  padding-top: 48px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .footer .copy {
    padding-top: 16px;
    font-size: 12px;
    line-height: 17px;
  }
}
.footer .additional-pages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .footer .additional-pages {
    flex-flow: wrap;
  }
}
.footer .additional-pages .additional-page {
  padding-top: 48px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
  color: #FCFCFC;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .footer .additional-pages .additional-page {
    padding-top: 16px;
    font-size: 12px;
    line-height: 17px;
  }
}

/*---------------------------------------------------

header-slider

---------------------------------------------------*/
.header-slider {
  margin: 140px 60px 0 60px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1380px) {
  .header-slider {
    margin: 110px 60px 0 60px;
  }
}
@media screen and (max-width: 960px) {
  .header-slider {
    margin: 70px 12px 0 12px;
  }
}
.header-slider .track {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 640px;
}
@media screen and (max-width: 960px) {
  .header-slider .track {
    min-height: 500px;
  }
}
.header-slider .slide {
  flex: 0 0 100%;
  padding: 193px 0 0 84px;
  color: #FCFCFC;
  border-radius: 16px;
  margin-right: 60px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s linear;
}
.header-slider .slide.active {
  opacity: 1;
  z-index: 99;
}
.header-slider .slide > picture > img, .header-slider .slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 960px) {
  .header-slider .slide > picture > img, .header-slider .slide > img {
    max-height: 500px;
  }
}
@media screen and (max-width: 960px) {
  .header-slider .slide {
    margin-right: 12px;
    padding: 134px 0 0 24px;
    min-height: 500px;
  }
}
.header-slider .title {
  position: relative;
  font-weight: 700;
  font-size: 64px;
  line-height: 69px;
  letter-spacing: 0.03em;
}
.header-slider .title b {
  color: #F0FE6D;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .header-slider .title {
    font-size: 24px;
    line-height: 30px;
  }
}
.header-slider .desc {
  position: relative;
  padding: 36px 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  width: 597px;
}
.header-slider .desc a {
  display: inline;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .header-slider .desc {
    padding: 24px 0;
    font-size: 12px;
    line-height: 18px;
    width: 275px;
  }
}
.header-slider .request {
  position: relative;
  width: 201px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
}
.header-slider .request:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .header-slider .request {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 960px) {
  .header-slider .request--mobile {
    background: transparent;
    width: 171px;
    border: 1px solid #F0FE6D;
    color: #F0FE6D;
  }
  .header-slider .request--mobile:hover {
    background: transparent;
    border: 1px solid #F0FE6D;
    color: #F0FE6D;
    box-shadow: none;
  }
}
.header-slider .corner {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI4LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCo0LDRgF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzY1LjMxIDMyMC4xNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzY1LjMxIDMyMC4xNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBkPSJNMzcuNDcsMTguODRjLTEwLjQxLDAtMTguODQsOC40NC0xOC44NCwxOC44NHYyNjMuNjVjMCwxMC4zMy04LjMyLDE4LjcxLTE4LjYzLDE4LjgzaDE4LjYzdjAuMDFoMzQ2LjY4VjE4Ljg0VjAuMDNsMCwwCgljMCwxMC4zMy04LjMyLDE4LjcxLTE4LjYzLDE4LjgzIi8+Cjwvc3ZnPgo=");
  background-size: cover;
  width: 366px;
  height: 323px;
}
@media screen and (max-width: 960px) {
  .header-slider .corner {
    width: 250px;
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .header-slider .corner {
    width: 180px;
    height: 158px;
  }
}
.header-slider .video {
  width: 327px;
  height: 284px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  border: 1px solid #F0FE6D;
  border-radius: 16px;
  background: transparent url("../images/video-preview.png") no-repeat 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .header-slider .video {
    width: 220px;
    height: 190px;
  }
}
@media screen and (max-width: 767px) {
  .header-slider .video {
    width: 158px;
    height: 135px;
    border-radius: 12px;
  }
}
.header-slider .video-img {
  position: absolute;
  z-index: 1;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjYiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA2NiA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMzIDY1QzUwLjY3MzEgNjUgNjUgNTAuNjczMSA2NSAzM0M2NSAxNS4zMjY5IDUwLjY3MzEgMSAzMyAxQzE1LjMyNjkgMSAxIDE1LjMyNjkgMSAzM0MxIDUwLjY3MzEgMTUuMzI2OSA2NSAzMyA2NVoiIGZpbGw9IiMwMjAyMDIiLz4KPHBhdGggZD0iTTI1IDIzLjI4OTFDMjUgMjEuNzYxOCAyNSAyMC45OTgxIDI1LjMxOTIgMjAuNTcxOEMyNS41OTczIDIwLjIwMDIgMjYuMDIzMSAxOS45Njc4IDI2LjQ4NiAxOS45MzQ3QzI3LjAxNzIgMTkuODk2OCAyNy42NTk2IDIwLjMwOTcgMjguOTQ0MyAyMS4xMzU2TDQ0LjA1MDIgMzAuODQ2NkM0NS4xNjUxIDMxLjU2MzMgNDUuNzIyNSAzMS45MjE2IDQ1LjkxNSAzMi4zNzczQzQ2LjA4MzIgMzIuNzc1NCA0Ni4wODMyIDMzLjIyNDYgNDUuOTE1IDMzLjYyMjhDNDUuNzIyNSAzNC4wNzg0IDQ1LjE2NTEgMzQuNDM2NyA0NC4wNTAyIDM1LjE1MzRMMjguOTQ0MyA0NC44NjQ0QzI3LjY1OTYgNDUuNjkwMyAyNy4wMTcyIDQ2LjEwMzIgMjYuNDg2IDQ2LjA2NTNDMjYuMDIzMSA0Ni4wMzIyIDI1LjU5NzMgNDUuNzk5OCAyNS4zMTkyIDQ1LjQyODJDMjUgNDUuMDAxOSAyNSA0NC4yMzgzIDI1IDQyLjcxMDlWMjMuMjg5MVoiIGZpbGw9IiMwMjAyMDIiLz4KPHBhdGggZD0iTTMzIDY1QzUwLjY3MzEgNjUgNjUgNTAuNjczMSA2NSAzM0M2NSAxNS4zMjY5IDUwLjY3MzEgMSAzMyAxQzE1LjMyNjkgMSAxIDE1LjMyNjkgMSAzM0MxIDUwLjY3MzEgMTUuMzI2OSA2NSAzMyA2NVoiIHN0cm9rZT0iI0YwRkU2RCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNSAyMy4yODkxQzI1IDIxLjc2MTggMjUgMjAuOTk4MSAyNS4zMTkyIDIwLjU3MThDMjUuNTk3MyAyMC4yMDAyIDI2LjAyMzEgMTkuOTY3OCAyNi40ODYgMTkuOTM0N0MyNy4wMTcyIDE5Ljg5NjggMjcuNjU5NiAyMC4zMDk3IDI4Ljk0NDMgMjEuMTM1Nkw0NC4wNTAyIDMwLjg0NjZDNDUuMTY1MSAzMS41NjMzIDQ1LjcyMjUgMzEuOTIxNiA0NS45MTUgMzIuMzc3M0M0Ni4wODMyIDMyLjc3NTQgNDYuMDgzMiAzMy4yMjQ2IDQ1LjkxNSAzMy42MjI4QzQ1LjcyMjUgMzQuMDc4NCA0NS4xNjUxIDM0LjQzNjcgNDQuMDUwMiAzNS4xNTM0TDI4Ljk0NDMgNDQuODY0NEMyNy42NTk2IDQ1LjY5MDMgMjcuMDE3MiA0Ni4xMDMyIDI2LjQ4NiA0Ni4wNjUzQzI2LjAyMzEgNDYuMDMyMiAyNS41OTczIDQ1Ljc5OTggMjUuMzE5MiA0NS40MjgyQzI1IDQ1LjAwMTkgMjUgNDQuMjM4MyAyNSA0Mi43MTA5VjIzLjI4OTFaIiBzdHJva2U9IiNGMEZFNkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-size: cover;
}
.header-slider .video-img:hover {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjYiIGhlaWdodD0iNjYiIHZpZXdCb3g9IjAgMCA2NiA2NiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMzIDY1QzUwLjY3MzEgNjUgNjUgNTAuNjczMSA2NSAzM0M2NSAxNS4zMjY5IDUwLjY3MzEgMSAzMyAxQzE1LjMyNjkgMSAxIDE1LjMyNjkgMSAzM0MxIDUwLjY3MzEgMTUuMzI2OSA2NSAzMyA2NVoiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTI1IDIzLjI4OTFDMjUgMjEuNzYxOCAyNSAyMC45OTgxIDI1LjMxOTIgMjAuNTcxOEMyNS41OTczIDIwLjIwMDIgMjYuMDIzMSAxOS45Njc4IDI2LjQ4NiAxOS45MzQ3QzI3LjAxNzIgMTkuODk2OCAyNy42NTk2IDIwLjMwOTcgMjguOTQ0MyAyMS4xMzU2TDQ0LjA1MDIgMzAuODQ2NkM0NS4xNjUxIDMxLjU2MzMgNDUuNzIyNSAzMS45MjE2IDQ1LjkxNSAzMi4zNzczQzQ2LjA4MzIgMzIuNzc1NCA0Ni4wODMyIDMzLjIyNDYgNDUuOTE1IDMzLjYyMjhDNDUuNzIyNSAzNC4wNzg0IDQ1LjE2NTEgMzQuNDM2NyA0NC4wNTAyIDM1LjE1MzRMMjguOTQ0MyA0NC44NjQ0QzI3LjY1OTYgNDUuNjkwMyAyNy4wMTcyIDQ2LjEwMzIgMjYuNDg2IDQ2LjA2NTNDMjYuMDIzMSA0Ni4wMzIyIDI1LjU5NzMgNDUuNzk5OCAyNS4zMTkyIDQ1LjQyODJDMjUgNDUuMDAxOSAyNSA0NC4yMzgzIDI1IDQyLjcxMDlWMjMuMjg5MVoiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTMzIDY1QzUwLjY3MzEgNjUgNjUgNTAuNjczMSA2NSAzM0M2NSAxNS4zMjY5IDUwLjY3MzEgMSAzMyAxQzE1LjMyNjkgMSAxIDE1LjMyNjkgMSAzM0MxIDUwLjY3MzEgMTUuMzI2OSA2NSAzMyA2NVoiIHN0cm9rZT0iI0YwRkU2RCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0yNSAyMy4yODkxQzI1IDIxLjc2MTggMjUgMjAuOTk4MSAyNS4zMTkyIDIwLjU3MThDMjUuNTk3MyAyMC4yMDAyIDI2LjAyMzEgMTkuOTY3OCAyNi40ODYgMTkuOTM0N0MyNy4wMTcyIDE5Ljg5NjggMjcuNjU5NiAyMC4zMDk3IDI4Ljk0NDMgMjEuMTM1Nkw0NC4wNTAyIDMwLjg0NjZDNDUuMTY1MSAzMS41NjMzIDQ1LjcyMjUgMzEuOTIxNiA0NS45MTUgMzIuMzc3M0M0Ni4wODMyIDMyLjc3NTQgNDYuMDgzMiAzMy4yMjQ2IDQ1LjkxNSAzMy42MjI4QzQ1LjcyMjUgMzQuMDc4NCA0NS4xNjUxIDM0LjQzNjcgNDQuMDUwMiAzNS4xNTM0TDI4Ljk0NDMgNDQuODY0NEMyNy42NTk2IDQ1LjY5MDMgMjcuMDE3MiA0Ni4xMDMyIDI2LjQ4NiA0Ni4wNjUzQzI2LjAyMzEgNDYuMDMyMiAyNS41OTczIDQ1Ljc5OTggMjUuMzE5MiA0NS40MjgyQzI1IDQ1LjAwMTkgMjUgNDQuMjM4MyAyNSA0Mi43MTA5VjIzLjI4OTFaIiBzdHJva2U9IiNGMEZFNkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .header-slider .video-img {
    width: 46px;
    height: 46px;
  }
}
.header-slider .bottom {
  display: none;
  align-items: center;
  padding-top: 12px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .header-slider .bottom {
    align-items: flex-start;
    padding-top: 32px;
  }
}
.header-slider .column {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .header-slider .column {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 37px;
  }
  .header-slider .column:last-child {
    margin-right: 0;
  }
}
.header-slider .text {
  margin-right: 24px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #FCFCFC;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1080px) {
  .header-slider .text {
    margin: 0 0 24px 0;
  }
}
@media screen and (max-width: 960px) {
  .header-slider .text {
    font-size: 12px;
    line-height: 17px;
  }
}
.header-slider .text b {
  font-family: "Unbounded", sans-serif;
  color: #F0FE6D;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .header-slider .text b {
    font-size: 16px;
    line-height: 20px;
  }
}
.header-slider .text-img {
  width: 86px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .header-slider .text-img {
    display: none;
  }
}

.header-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 62px 0;
}
.header-slider-dots div {
  margin: 0 8px;
  width: 18px;
  height: 18px;
  background: #6c7680;
  border-radius: 50%;
  cursor: pointer;
}
.header-slider-dots div:hover {
  background: #f8ffb4;
}
@media screen and (max-width: 960px) {
  .header-slider-dots {
    margin: 16px 0 60px 0;
  }
  .header-slider-dots div {
    margin: 0 4px;
    width: 8px;
    height: 8px;
  }
}
.header-slider-dots .active {
  background: #F0FE6D;
}

.service-page-slider .header-slider .corner {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI4LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9ItCo0LDRgF8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIKCSB2aWV3Qm94PSIwIDAgMzY1LjMxIDMyMC4xNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMzY1LjMxIDMyMC4xNzsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8cGF0aCBmaWxsPSIjRkNGQ0ZDIiBkPSJNMzcuNDcsMTguODRjLTEwLjQxLDAtMTguODQsOC40NC0xOC44NCwxOC44NHYyNjMuNjVjMCwxMC4zMy04LjMyLDE4LjcxLTE4LjYzLDE4LjgzaDE4LjYzdjAuMDFoMzQ2LjY4VjE4Ljg0VjAuMDNsMCwwCgljMCwxMC4zMy04LjMyLDE4LjcxLTE4LjYzLDE4LjgzIi8+Cjwvc3ZnPgo=");
}
.service-page-slider .header-slider .slide {
  padding-top: 137px;
}
@media screen and (max-width: 960px) {
  .service-page-slider .header-slider .slide {
    padding-top: 62px;
  }
}
.service-page-slider .header-slider-dots div {
  width: 12px;
  height: 12px;
  margin: 0 4px;
}
@media screen and (max-width: 690px) {
  .service-page-slider .header-slider-dots div {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
.service-page-slider .active {
  background: #020202;
}
.service-page-slider .bottom {
  display: flex;
}
.service-page-slider .desc {
  width: 460px;
}
@media screen and (max-width: 960px) {
  .service-page-slider .desc {
    width: 280px;
  }
}

/*---------------------------------------------------

services

---------------------------------------------------*/
.services {
  padding: 60px 44px 100px 60px;
}
@media screen and (max-width: 960px) {
  .services {
    padding: 60px 8px 60px 4px;
  }
}
.services .title {
  padding: 0 0 32px 0;
}
@media screen and (max-width: 960px) {
  .services .title {
    padding-bottom: 8px;
  }
}
.services .block {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
}
.services .block:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .services .block {
    gap: 8px;
    padding-bottom: 8px;
  }
  .services .block:last-child {
    padding-bottom: 0;
  }
}
.services .arrow {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .services .arrow {
    width: 50px;
    height: 50px;
    background-size: cover;
  }
}
@media screen and (max-width: 960px) {
  .services .arrow {
    width: 34px;
    height: 34px;
  }
}
.services .item {
  text-decoration: none;
  position: relative;
  z-index: 0;
  border-radius: 16px;
  overflow: hidden;
}
.services .item-text {
  margin: 32px 0 0 32px;
}
@media screen and (max-width: 960px) {
  .services .item-text {
    margin: 24px 0 0 24px;
    width: 80%;
  }
}
.services .price {
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  padding: 4px 8px;
  width: fit-content;
  border-radius: 16px;
  background: #F0FE6D;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .services .price {
    font-size: 6px;
    line-height: 7px;
  }
}
.services .item-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.03em;
  color: #FCFCFC;
  padding-top: 16px;
}
@media screen and (max-width: 1200px) {
  .services .item-title {
    font-size: 22px;
    line-height: 30px;
    padding-top: 8px;
  }
}
@media screen and (max-width: 960px) {
  .services .item-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.services .bg-holder {
  border-radius: 0 0 8px 8px;
  width: 100%;
  height: 184px;
}
@media screen and (max-width: 960px) {
  .services .bg-holder {
    height: 90px;
  }
}
.services .big,
.services .medium {
  height: 429px;
}
@media screen and (max-width: 1200px) {
  .services .big,
  .services .medium {
    height: 400px;
  }
}
@media screen and (max-width: 960px) {
  .services .big,
  .services .medium {
    height: 175px;
  }
}
.services .big {
  width: calc(58% - 16px);
  background: #020202 url("../images/services-1.png") no-repeat center center;
  background-size: cover;
}
.services .big .arrow {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiNGQ0ZDRkMiLz4KPC9zdmc+Cg==");
}
.services .big:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 960px) {
  .services .big {
    width: calc(100% - 8px);
  }
  .services .big .arrow {
    top: initial;
    left: initial;
    transform: none;
    right: 16px;
    bottom: 16px;
  }
}
.services .medium {
  width: calc(42% - 16px);
  background: #020202 url("../images/services-2.png") no-repeat center center;
  background-size: cover;
}
.services .medium .arrow {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiNGQ0ZDRkMiLz4KPC9zdmc+Cg==");
}
.services .medium:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 960px) {
  .services .medium {
    width: calc(50% - 8px);
  }
  .services .medium .arrow {
    top: initial;
    bottom: 55px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.services .small,
.services .yellow,
.services .gray {
  width: calc(33.333% - 16px);
  height: 347px;
}
@media screen and (max-width: 960px) {
  .services .small,
  .services .yellow,
  .services .gray {
    height: 175px;
  }
}
.services .small {
  background: #020202 url("../images/services-4.png") no-repeat center center;
  background-size: cover;
}
.services .small .bg-holder {
  display: none;
}
.services .small .arrow {
  bottom: 101px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiNGMEZFNkQiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
.services .small:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iIzZDNzY4MCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 960px) {
  .services .small {
    width: calc(64% - 8px);
  }
  .services .small .arrow {
    bottom: 16px;
    right: 16px;
    left: initial;
    transform: none;
  }
}
.services .gray {
  background: #6c7680;
}
.services .gray .bg-holder {
  background: #020202 url("../images/services-3.png") no-repeat center center;
  background-size: cover;
}
.services .gray .item-title {
  padding-top: 12px;
}
.services .gray .price {
  color: #F0FE6D;
  background: #020202;
}
.services .gray .arrow {
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiNGQ0ZDRkMiLz4KPC9zdmc+Cg==");
}
.services .gray:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 960px) {
  .services .gray {
    width: calc(50% - 8px);
  }
  .services .gray .item-text {
    margin-top: 12px;
  }
  .services .gray .item-title {
    padding-top: 8px;
  }
  .services .gray .arrow {
    top: 28px;
  }
}
.services .yellow {
  background: #F0FE6D;
}
.services .yellow .bg-holder {
  background: #020202 url("../images/services-5.png") no-repeat center center;
  background-size: cover;
}
.services .yellow .price {
  display: none;
}
.services .yellow .item-title {
  color: #020202;
  padding-top: 36px;
}
.services .yellow .arrow {
  right: 32px;
  bottom: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiMxODE4MTgiLz4KPHBhdGggZD0iTTQ2LjM5ODUgMjguMzE2M0M0Ni4zOTg1IDI3Ljc2NCA0NS45NTA4IDI3LjMxNjMgNDUuMzk4NSAyNy4zMTYzTDM2LjM5ODUgMjcuMzE2M0MzNS44NDYyIDI3LjMxNjMgMzUuMzk4NSAyNy43NjQgMzUuMzk4NSAyOC4zMTYzQzM1LjM5ODUgMjguODY4NiAzNS44NDYyIDI5LjMxNjMgMzYuMzk4NSAyOS4zMTYzTDQ0LjM5ODUgMjkuMzE2M0w0NC4zOTg1IDM3LjMxNjNDNDQuMzk4NSAzNy44Njg2IDQ0Ljg0NjIgMzguMzE2MyA0NS4zOTg1IDM4LjMxNjNDNDUuOTUwOCAzOC4zMTYzIDQ2LjM5ODUgMzcuODY4NiA0Ni4zOTg1IDM3LjMxNjNMNDYuMzk4NSAyOC4zMTYzWk0yOC4xMzY4IDQ2Ljk5MjNMNDYuMTA1NiAyOS4wMjM0TDQ0LjY5MTQgMjcuNjA5MkwyNi43MjI2IDQ1LjU3OEwyOC4xMzY4IDQ2Ljk5MjNaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 1200px) {
  .services .yellow .arrow {
    bottom: 38px;
  }
}
.services .yellow:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDMuNjgzNyA0Ni4zOTg1QzQ0LjIzNiA0Ni4zOTg1IDQ0LjY4MzcgNDUuOTUwOCA0NC42ODM3IDQ1LjM5ODVMNDQuNjgzNyAzNi4zOTg1QzQ0LjY4MzcgMzUuODQ2MiA0NC4yMzYgMzUuMzk4NSA0My42ODM3IDM1LjM5ODVDNDMuMTMxNCAzNS4zOTg1IDQyLjY4MzcgMzUuODQ2MiA0Mi42ODM3IDM2LjM5ODVMNDIuNjgzNyA0NC4zOTg1TDM0LjY4MzcgNDQuMzk4NUMzNC4xMzE0IDQ0LjM5ODUgMzMuNjgzNyA0NC44NDYyIDMzLjY4MzcgNDUuMzk4NUMzMy42ODM3IDQ1Ljk1MDggMzQuMTMxNCA0Ni4zOTg1IDM0LjY4MzcgNDYuMzk4NUw0My42ODM3IDQ2LjM5ODVaTTI1LjAwNzcgMjguMTM2OEw0Mi45NzY2IDQ2LjEwNTZMNDQuMzkwOCA0NC42OTE0TDI2LjQyMiAyNi43MjI2TDI1LjAwNzcgMjguMTM2OFoiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
@media screen and (max-width: 960px) {
  .services .yellow {
    width: calc(36% - 8px);
  }
  .services .yellow .arrow {
    right: initial;
    bottom: initial;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .services .yellow .item-title {
    padding-top: 0;
  }
}

/*---------------------------------------------------

catalog

---------------------------------------------------*/
.catalog {
  padding: 60px 44px 80px 60px;
}
@media screen and (max-width: 960px) {
  .catalog {
    padding: 60px 4px 60px 8px;
  }
}
.catalog .title {
  padding-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .catalog .title {
    padding-bottom: 13px;
  }
}
.catalog .list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
}
.catalog .list:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .catalog .list {
    gap: 8px;
    padding-bottom: 8px;
  }
  .catalog .list:last-child {
    padding-bottom: 0;
  }
}
.catalog .item {
  background: #181818;
  border-radius: 16px;
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.catalog .item-title {
  color: #FCFCFC;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  padding: 32px 0 0 32px;
}
@media screen and (max-width: 960px) {
  .catalog .item-title {
    font-size: 14px;
    line-height: 17px;
    padding: 0;
    position: absolute;
    top: 135px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .catalog .item-title {
    top: 80px;
    left: 16px;
    transform: none;
    text-align: left;
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 380px) {
  .catalog .item-title {
    font-size: 10px;
  }
}
.catalog .corner {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 160px;
}
@media screen and (max-width: 960px) {
  .catalog .corner {
    width: 75px;
    right: initial;
    left: 0;
    bottom: -2px;
    transform: rotate(90deg);
  }
}
.catalog .arrow {
  position: absolute;
  z-index: 1;
  width: 61px;
  height: 61px;
  bottom: 0;
  right: 0;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .catalog .arrow {
    width: 34px;
    height: 34px;
    right: initial;
    left: 0;
  }
}
.catalog .big,
.catalog .medium {
  height: 429px;
}
.catalog .big .img,
.catalog .medium .img {
  position: absolute;
  height: 321px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .catalog .big,
  .catalog .medium {
    height: 180px;
  }
  .catalog .big .img,
  .catalog .medium .img {
    top: 15px;
    left: 50%;
    bottom: initial;
    height: 100px;
    object-fit: contain;
    transform: translateX(-50%);
  }
}
.catalog .big {
  width: calc(60% - 16px);
}
.catalog .big .arrow {
  width: 72px;
  height: 72px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiMxODE4MTgiLz4KPHBhdGggZD0iTTQ2LjM5ODUgMjguMzE2M0M0Ni4zOTg1IDI3Ljc2NCA0NS45NTA4IDI3LjMxNjMgNDUuMzk4NSAyNy4zMTYzTDM2LjM5ODUgMjcuMzE2M0MzNS44NDYyIDI3LjMxNjMgMzUuMzk4NSAyNy43NjQgMzUuMzk4NSAyOC4zMTYzQzM1LjM5ODUgMjguODY4NiAzNS44NDYyIDI5LjMxNjMgMzYuMzk4NSAyOS4zMTYzTDQ0LjM5ODUgMjkuMzE2M0w0NC4zOTg1IDM3LjMxNjNDNDQuMzk4NSAzNy44Njg2IDQ0Ljg0NjIgMzguMzE2MyA0NS4zOTg1IDM4LjMxNjNDNDUuOTUwOCAzOC4zMTYzIDQ2LjM5ODUgMzcuODY4NiA0Ni4zOTg1IDM3LjMxNjNMNDYuMzk4NSAyOC4zMTYzWk0yOC4xMzY4IDQ2Ljk5MjNMNDYuMTA1NiAyOS4wMjM0TDQ0LjY5MTQgMjcuNjA5MkwyNi43MjI2IDQ1LjU3OEwyOC4xMzY4IDQ2Ljk5MjNaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
.catalog .big:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDMuNjgzNyA0Ni4zOTg1QzQ0LjIzNiA0Ni4zOTg1IDQ0LjY4MzcgNDUuOTUwOCA0NC42ODM3IDQ1LjM5ODVMNDQuNjgzNyAzNi4zOTg1QzQ0LjY4MzcgMzUuODQ2MiA0NC4yMzYgMzUuMzk4NSA0My42ODM3IDM1LjM5ODVDNDMuMTMxNCAzNS4zOTg1IDQyLjY4MzcgMzUuODQ2MiA0Mi42ODM3IDM2LjM5ODVMNDIuNjgzNyA0NC4zOTg1TDM0LjY4MzcgNDQuMzk4NUMzNC4xMzE0IDQ0LjM5ODUgMzMuNjgzNyA0NC44NDYyIDMzLjY4MzcgNDUuMzk4NUMzMy42ODM3IDQ1Ljk1MDggMzQuMTMxNCA0Ni4zOTg1IDM0LjY4MzcgNDYuMzk4NUw0My42ODM3IDQ2LjM5ODVaTTI1LjAwNzcgMjguMTM2OEw0Mi45NzY2IDQ2LjEwNTZMNDQuMzkwOCA0NC42OTE0TDI2LjQyMiAyNi43MjI2TDI1LjAwNzcgMjguMTM2OFoiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
@media screen and (max-width: 960px) {
  .catalog .big {
    width: calc(50% - 8px);
  }
  .catalog .big .arrow {
    width: 34px;
    height: 34px;
  }
}
@media screen and (max-width: 600px) {
  .catalog .big .item-title {
    left: auto;
    right: 16px;
    top: auto;
    bottom: 16px;
    text-align: right;
  }
  .catalog .big .img {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 380px) {
  .catalog .big .item-title {
    font-size: 10px;
  }
}
.catalog .medium {
  width: calc(40% - 16px);
  background: #F0FE6D;
}
.catalog .medium .item-title {
  color: #020202;
}
.catalog .medium .arrow {
  width: 72px;
  height: 72px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiNGMEZFNkQiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
.catalog .medium:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iIzZDNzY4MCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
@media screen and (max-width: 960px) {
  .catalog .medium {
    width: calc(50% - 8px);
  }
  .catalog .medium .corner {
    bottom: initial;
    top: -2px;
    right: 0;
    left: initial;
    transform: rotate(-90deg);
  }
  .catalog .medium .arrow {
    width: 34px;
    height: 34px;
    bottom: initial;
    top: 0;
    right: 0;
    left: initial;
  }
}
@media screen and (max-width: 600px) {
  .catalog .medium .img {
    top: auto;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .catalog .medium .item-title {
    left: 16px;
    top: 16px;
  }
}
@media screen and (max-width: 380px) {
  .catalog .medium .item-title {
    font-size: 10px;
  }
}
.catalog .small {
  width: calc(25% - 16px);
  height: 347px;
}
.catalog .small .img {
  position: absolute;
  height: 221px;
  width: auto;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.catalog .small .item-title {
  margin: 0;
  position: absolute;
  top: 265px;
  left: 24px;
  padding: 0;
}
.catalog .small .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiMxODE4MTgiLz4KPHBhdGggZD0iTTQ2LjM5ODUgMjguMzE2M0M0Ni4zOTg1IDI3Ljc2NCA0NS45NTA4IDI3LjMxNjMgNDUuMzk4NSAyNy4zMTYzTDM2LjM5ODUgMjcuMzE2M0MzNS44NDYyIDI3LjMxNjMgMzUuMzk4NSAyNy43NjQgMzUuMzk4NSAyOC4zMTYzQzM1LjM5ODUgMjguODY4NiAzNS44NDYyIDI5LjMxNjMgMzYuMzk4NSAyOS4zMTYzTDQ0LjM5ODUgMjkuMzE2M0w0NC4zOTg1IDM3LjMxNjNDNDQuMzk4NSAzNy44Njg2IDQ0Ljg0NjIgMzguMzE2MyA0NS4zOTg1IDM4LjMxNjNDNDUuOTUwOCAzOC4zMTYzIDQ2LjM5ODUgMzcuODY4NiA0Ni4zOTg1IDM3LjMxNjNMNDYuMzk4NSAyOC4zMTYzWk0yOC4xMzY4IDQ2Ljk5MjNMNDYuMTA1NiAyOS4wMjM0TDQ0LjY5MTQgMjcuNjA5MkwyNi43MjI2IDQ1LjU3OEwyOC4xMzY4IDQ2Ljk5MjNaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
.catalog .small .corner {
  width: 130px;
}
.catalog .small:hover .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDMuNjgzNyA0Ni4zOTg1QzQ0LjIzNiA0Ni4zOTg1IDQ0LjY4MzcgNDUuOTUwOCA0NC42ODM3IDQ1LjM5ODVMNDQuNjgzNyAzNi4zOTg1QzQ0LjY4MzcgMzUuODQ2MiA0NC4yMzYgMzUuMzk4NSA0My42ODM3IDM1LjM5ODVDNDMuMTMxNCAzNS4zOTg1IDQyLjY4MzcgMzUuODQ2MiA0Mi42ODM3IDM2LjM5ODVMNDIuNjgzNyA0NC4zOTg1TDM0LjY4MzcgNDQuMzk4NUMzNC4xMzE0IDQ0LjM5ODUgMzMuNjgzNyA0NC44NDYyIDMzLjY4MzcgNDUuMzk4NUMzMy42ODM3IDQ1Ljk1MDggMzQuMTMxNCA0Ni4zOTg1IDM0LjY4MzcgNDYuMzk4NUw0My42ODM3IDQ2LjM5ODVaTTI1LjAwNzcgMjguMTM2OEw0Mi45NzY2IDQ2LjEwNTZMNDQuMzkwOCA0NC42OTE0TDI2LjQyMiAyNi43MjI2TDI1LjAwNzcgMjguMTM2OFoiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
@media screen and (max-width: 1300px) {
  .catalog .small .img {
    height: 180px;
  }
  .catalog .small .item-title {
    font-size: 16px;
    line-height: 19px;
  }
}
@media screen and (max-width: 960px) {
  .catalog .small {
    height: 180px;
    width: calc(50% - 8px);
  }
  .catalog .small .item-title {
    font-size: 14px;
    line-height: 17px;
    top: 135px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
  }
  .catalog .small .img {
    top: 15px;
    left: 50%;
    bottom: initial;
    height: 100px;
    object-fit: contain;
  }
  .catalog .small .corner {
    width: 75px;
  }
}
@media screen and (max-width: 600px) {
  .catalog .small .img {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
  .catalog .small .item-title {
    top: auto;
    bottom: 16px;
    left: auto;
    right: 16px;
    transform: none;
    text-align: right;
  }
}
@media screen and (max-width: 380px) {
  .catalog .small .item-title {
    font-size: 10px;
  }
}
.catalog .small33 {
  width: calc(33% - 16px);
}
@media screen and (max-width: 960px) {
  .catalog .small33 {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 960px) {
  .catalog .gray-m {
    background: #6c7680;
  }
  .catalog .gray-m .arrow {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiM2Qzc2ODAiLz4KPHBhdGggZD0iTTQ3LjI4NjggMjcuNDI4QzQ3LjI4NjggMjYuODc1NyA0Ni44MzkxIDI2LjQyOCA0Ni4yODY4IDI2LjQyOEwzNy4yODY4IDI2LjQyOEMzNi43MzQ1IDI2LjQyOCAzNi4yODY4IDI2Ljg3NTcgMzYuMjg2OCAyNy40MjhDMzYuMjg2OCAyNy45ODAzIDM2LjczNDUgMjguNDI4IDM3LjI4NjggMjguNDI4TDQ1LjI4NjggMjguNDI4TDQ1LjI4NjggMzYuNDI4QzQ1LjI4NjggMzYuOTgwMyA0NS43MzQ1IDM3LjQyOCA0Ni4yODY4IDM3LjQyOEM0Ni44MzkxIDM3LjQyOCA0Ny4yODY4IDM2Ljk4MDMgNDcuMjg2OCAzNi40MjhMNDcuMjg2OCAyNy40MjhaTTI4LjEzNjggNDYuOTkyM0w0Ni45OTM5IDI4LjEzNTFMNDUuNTc5NyAyNi43MjA5TDI2LjcyMjYgNDUuNTc4TDI4LjEzNjggNDYuOTkyM1oiIGZpbGw9IiNGQ0ZDRkMiLz4KPC9zdmc+Cg==");
  }
  .catalog .gray-m:hover .arrow {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDQuNTcyIDQ3LjI4NDlDNDUuMTI0MyA0Ny4yODQ5IDQ1LjU3MiA0Ni44MzcyIDQ1LjU3MiA0Ni4yODQ5TDQ1LjU3MiAzNy4yODQ5QzQ1LjU3MiAzNi43MzI2IDQ1LjEyNDMgMzYuMjg0OSA0NC41NzIgMzYuMjg0OUM0NC4wMTk3IDM2LjI4NDkgNDMuNTcyIDM2LjczMjYgNDMuNTcyIDM3LjI4NDlMNDMuNTcyIDQ1LjI4NDlMMzUuNTcyIDQ1LjI4NDlDMzUuMDE5NyA0NS4yODQ5IDM0LjU3MiA0NS43MzI2IDM0LjU3MiA0Ni4yODQ5QzM0LjU3MiA0Ni44MzcyIDM1LjAxOTcgNDcuMjg0OSAzNS41NzIgNDcuMjg0OUw0NC41NzIgNDcuMjg0OVpNMjUuMDA3NyAyOC4xMzQ4TDQzLjg2NDkgNDYuOTkyTDQ1LjI3OTEgNDUuNTc3OEwyNi40MjIgMjYuNzIwNkwyNS4wMDc3IDI4LjEzNDhaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
  }
}

.catalog-page {
  padding-top: 170px;
}
@media screen and (max-width: 960px) {
  .catalog-page {
    padding-top: 92px;
  }
}

/*---------------------------------------------------

places

---------------------------------------------------*/
.places {
  padding: 80px 60px;
  margin: 80px 0;
  background: #F0FE6D;
}
@media screen and (max-width: 960px) {
  .places {
    padding: 54px 12px 48px 12px;
    border-radius: 16px;
    margin: 60px 0;
  }
}
.places .title {
  color: #020202;
  padding-bottom: 44px;
  width: 1085px;
  text-transform: uppercase;
}
@media screen and (max-width: 1150px) {
  .places .title {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .places .title {
    padding-bottom: 24px;
  }
}
.places .block {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1150px) {
  .places .block {
    flex-wrap: wrap;
  }
}
.places .block-item {
  background: #020202;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
}
.places .left {
  width: 57%;
  margin-right: 24px;
}
@media screen and (max-width: 1150px) {
  .places .left {
    order: 1;
    margin: 24px 0 0 0;
    width: 100%;
  }
}
.places .block-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .places .block-title {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 12px;
  }
}
.places .items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.places .w33 {
  width: 33.333%;
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
}
.places .w50 {
  width: 50%;
  border-bottom: 1px solid rgba(240, 254, 109, 0.2);
}
.places .w100 {
  width: 100%;
}
.places .item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FCFCFC;
  transition: all 0.3s ease;
  padding: 15px 0;
  position: relative;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.places .item:hover {
  color: #F0FE6D;
}
@media screen and (max-width: 1380px) {
  .places .item {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 960px) {
  .places .item {
    font-size: 12px;
    line-height: 15px;
  }
}
.places .border:after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 1px;
  height: calc(100% - 4px);
  background: rgba(240, 254, 109, 0.2);
}
@media screen and (max-width: 960px) {
  .places .border:after {
    height: 100%;
    top: 0;
  }
}
.places .right {
  flex: 1 0 auto;
  padding: 16px 0;
}
@media screen and (max-width: 1150px) {
  .places .right {
    flex: 0 0 auto;
    width: 100%;
    order: 0;
  }
}
.places .top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
}
.places .medal {
  height: 86px;
  width: auto;
  margin: 0 22px;
}
@media screen and (max-width: 960px) {
  .places .medal {
    height: 46px;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1150px) {
  .places .google {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .places .google .google-rating {
    margin: 8px 0;
  }
}

.places-nomargin {
  margin: 0;
}

/*---------------------------------------------------

reviews

---------------------------------------------------*/
.reviews {
  padding: 80px 0 80px 0;
}
@media screen and (max-width: 960px) {
  .reviews {
    padding: 60px 0 60px 0;
  }
}
.reviews .title {
  padding-left: 60px;
  padding-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .reviews .title {
    padding-left: 12px;
    padding-bottom: 12px;
  }
}
.reviews .controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 32px 60px;
}
@media screen and (max-width: 960px) {
  .reviews .controls {
    padding: 0 12px 12px 12px;
  }
}
.reviews .controls-text {
  color: #FCFCFC;
  width: 440px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .reviews .controls-text {
    width: 90%;
    font-size: 12px;
    line-height: 17px;
  }
}
.reviews .arrows {
  display: flex;
  align-items: center;
}
.reviews .arrows img {
  margin-right: 16px;
  cursor: pointer;
}
.reviews .arrows img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reviews .arrows {
    display: none;
  }
}
.reviews .arrow {
  width: 79px;
  height: 44px;
  background-size: cover;
  cursor: pointer;
}
.reviews .arrow-l {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iNzgiIHk9IjQzIiB3aWR0aD0iNzciIGhlaWdodD0iNDIiIHJ4PSIyMSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCA3OCA0MykiIHN0cm9rZT0iI0YwRkU2RCIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0zMC43MzY1IDIwLjc5MjlDMzAuMzQ2IDIxLjE4MzQgMzAuMzQ2IDIxLjgxNjYgMzAuNzM2NSAyMi4yMDcxTDM3LjEwMDUgMjguNTcxMUMzNy40OTEgMjguOTYxNiAzOC4xMjQyIDI4Ljk2MTYgMzguNTE0NyAyOC41NzExQzM4LjkwNTIgMjguMTgwNSAzOC45MDUyIDI3LjU0NzQgMzguNTE0NyAyNy4xNTY5TDMyLjg1NzkgMjEuNUwzOC41MTQ3IDE1Ljg0MzFDMzguOTA1MiAxNS40NTI2IDM4LjkwNTIgMTQuODE5NSAzOC41MTQ3IDE0LjQyODlDMzguMTI0MiAxNC4wMzg0IDM3LjQ5MSAxNC4wMzg0IDM3LjEwMDUgMTQuNDI4OUwzMC43MzY1IDIwLjc5MjlaTTQ3IDIwLjVMMzEuNDQzNiAyMC41TDMxLjQ0MzYgMjIuNUw0NyAyMi41TDQ3IDIwLjVaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
  margin-right: 16px;
}
.reviews .arrow-r {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9Ijc3IiBoZWlnaHQ9IjQyIiByeD0iMjEiIHN0cm9rZT0iI0YwRkU2RCIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik00OC4yNjM1IDIzLjIwNzFDNDguNjU0IDIyLjgxNjYgNDguNjU0IDIyLjE4MzQgNDguMjYzNSAyMS43OTI5TDQxLjg5OTUgMTUuNDI4OUM0MS41MDkgMTUuMDM4NCA0MC44NzU4IDE1LjAzODQgNDAuNDg1MyAxNS40Mjg5QzQwLjA5NDggMTUuODE5NSA0MC4wOTQ4IDE2LjQ1MjYgNDAuNDg1MyAxNi44NDMxTDQ2LjE0MjEgMjIuNUw0MC40ODUzIDI4LjE1NjlDNDAuMDk0OCAyOC41NDc0IDQwLjA5NDggMjkuMTgwNSA0MC40ODUzIDI5LjU3MTFDNDAuODc1OCAyOS45NjE2IDQxLjUwOSAyOS45NjE2IDQxLjg5OTUgMjkuNTcxMUw0OC4yNjM1IDIzLjIwNzFaTTMyIDIzLjVINDcuNTU2NFYyMS41SDMyVjIzLjVaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
}
.reviews .slider {
  padding-left: 60px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .reviews .slider {
    padding-left: 12px;
  }
}
.reviews .track {
  display: flex;
  align-items: center;
  transition: all 0.4s ease-out;
}
.reviews .dots {
  display: none;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
}
.reviews .dots div {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c7680;
  margin: 0 2px;
}
.reviews .dots .active {
  background: #F0FE6D;
}
@media screen and (max-width: 960px) {
  .reviews .dots {
    display: flex;
  }
}
.reviews .slide {
  flex: 0 0 660px;
  margin-right: 16px;
  background: #181818;
  padding: 24px;
  border-radius: 16px;
}
.reviews .slide:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reviews .slide {
    flex: 0 0 calc(100% - 26px);
  }
}
.reviews .text b {
  font-weight: 900;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.03em;
  color: #F0FE6D;
  display: block;
}
.reviews .text b:last-child {
  text-align: right;
}
.reviews .text p {
  margin: 32px 0;
  height: 156px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  font-family: "Inter", sans-serif;
  color: #FCFCFC;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .reviews .text p {
    padding: 12px 0;
    font-size: 12px;
    line-height: 17px;
  }
}
.reviews .author {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
}
.reviews .photo {
  width: 85px;
  height: auto;
  border-radius: 50%;
  margin-right: 12px;
}
@media screen and (max-width: 960px) {
  .reviews .photo {
    width: 58px;
  }
}
.reviews .stars {
  display: flex;
  align-items: center;
}
.reviews .stars img {
  width: 13px;
  margin-right: 2px;
}
.reviews .stars img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reviews .stars img {
    width: 11px;
  }
}
.reviews .name {
  padding: 10px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .reviews .name {
    padding: 6px 0;
    font-size: 14px;
    line-height: 17px;
  }
}
.reviews .role {
  color: #F0FE6D;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .reviews .role {
    padding-bottom: 6px;
    font-size: 10px;
    line-height: 14px;
  }
}
.reviews .date {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .reviews .date {
    font-size: 8px;
    line-height: 12px;
  }
}

.reviews-bg-dark {
  background: #020202;
}

.reviews-bg-gray {
  background: #e2e2e2;
  border-radius: 16px 16px 0 0;
}
.reviews-bg-gray .title {
  color: #020202;
}
.reviews-bg-gray .controls-text {
  color: #020202;
}
.reviews-bg-gray .arrow-l {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iNzgiIHk9IjQzIiB3aWR0aD0iNzciIGhlaWdodD0iNDIiIHJ4PSIyMSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCA3OCA0MykiIHN0cm9rZT0iIzIxMUMxQyIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0zMC43MzY1IDIwLjc5MjlDMzAuMzQ2IDIxLjE4MzQgMzAuMzQ2IDIxLjgxNjYgMzAuNzM2NSAyMi4yMDcxTDM3LjEwMDUgMjguNTcxMUMzNy40OTEgMjguOTYxNiAzOC4xMjQyIDI4Ljk2MTYgMzguNTE0NyAyOC41NzExQzM4LjkwNTIgMjguMTgwNSAzOC45MDUyIDI3LjU0NzQgMzguNTE0NyAyNy4xNTY5TDMyLjg1NzkgMjEuNUwzOC41MTQ3IDE1Ljg0MzFDMzguOTA1MiAxNS40NTI2IDM4LjkwNTIgMTQuODE5NSAzOC41MTQ3IDE0LjQyODlDMzguMTI0MiAxNC4wMzg0IDM3LjQ5MSAxNC4wMzg0IDM3LjEwMDUgMTQuNDI4OUwzMC43MzY1IDIwLjc5MjlaTTQ3IDIwLjVMMzEuNDQzNiAyMC41TDMxLjQ0MzYgMjIuNUw0NyAyMi41TDQ3IDIwLjVaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
.reviews-bg-gray .arrow-r {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9Ijc3IiBoZWlnaHQ9IjQyIiByeD0iMjEiIHN0cm9rZT0iIzIxMUMxQyIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik00OC4yNjM1IDIzLjIwNzFDNDguNjU0IDIyLjgxNjYgNDguNjU0IDIyLjE4MzQgNDguMjYzNSAyMS43OTI5TDQxLjg5OTUgMTUuNDI4OUM0MS41MDkgMTUuMDM4NCA0MC44NzU4IDE1LjAzODQgNDAuNDg1MyAxNS40Mjg5QzQwLjA5NDggMTUuODE5NSA0MC4wOTQ4IDE2LjQ1MjYgNDAuNDg1MyAxNi44NDMxTDQ2LjE0MjEgMjIuNUw0MC40ODUzIDI4LjE1NjlDNDAuMDk0OCAyOC41NDc0IDQwLjA5NDggMjkuMTgwNSA0MC40ODUzIDI5LjU3MTFDNDAuODc1OCAyOS45NjE2IDQxLjUwOSAyOS45NjE2IDQxLjg5OTUgMjkuNTcxMUw0OC4yNjM1IDIzLjIwNzFaTTMyIDIzLjVINDcuNTU2NFYyMS41SDMyVjIzLjVaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}

/*---------------------------------------------------

faq

---------------------------------------------------*/
.faq {
  padding-top: 70px;
  padding-bottom: 160px;
  display: flex;
  align-items: flex-start;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .faq {
    padding-top: 60px;
    padding-bottom: 120px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.faq .left {
  padding-right: 100px;
  width: 40%;
}
@media screen and (max-width: 960px) {
  .faq .left {
    width: 100%;
    padding: 0 0 48px 0;
  }
}
.faq .title.title-main {
  color: #020202;
}
.faq .desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  padding: 24px 0;
}
@media screen and (max-width: 960px) {
  .faq .desc {
    padding: 16px 24px 16px 0;
    font-size: 12px;
    line-height: 17px;
  }
}
.faq .btn {
  width: 216px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
}
.faq .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .faq .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.faq .right {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .faq .right {
    width: 100%;
  }
}
.faq .question {
  background: #181818;
  padding: 32px;
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 16px;
  color: #FCFCFC;
}
.faq .question:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .faq .question {
    margin-bottom: 12px;
    padding: 24px;
  }
  .faq .question:last-child {
    margin-bottom: 0;
  }
}
.faq .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq .text {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  width: calc(100% - 32px - 16px);
}
.faq .text img {
  width: 32px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .faq .text {
    font-size: 18px;
    line-height: 22px;
  }
}
.faq .bottom {
  padding-top: 32px;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
  display: none;
}
@media screen and (max-width: 960px) {
  .faq .bottom {
    padding-top: 24px;
    font-size: 12px;
    line-height: 17px;
  }
}
.faq .open .bottom {
  display: block;
}
.faq .open img {
  transition: all 0.3s ease;
  transform: rotate(-180deg);
}

.bg-dark .faq {
  color: #FCFCFC;
}
.bg-dark .faq .title.title-main {
  color: #FCFCFC;
}
.bg-dark .faq .question {
  background: #181818;
  color: #FCFCFC;
}

/*---------------------------------------------------

info

---------------------------------------------------*/
.info {
  color: #FCFCFC;
  background: #242424;
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .info {
    padding: 40px 0;
  }
}
.info .title {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .info .title {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 600px) {
  .info .title {
    font-size: 16px;
    line-height: 21px;
  }
}
.info .btn {
  text-transform: uppercase;
  width: fit-content;
  margin: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  padding: 25px 132px;
  border-radius: 16px;
  border: 2px solid #F0FE6D;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .info .btn {
    font-size: 12px;
    line-height: 15px;
    padding: 9px 25px;
  }
}
.info .hide {
  display: none;
}
.info .content {
  padding: 60px 60px 0 60px;
}
@media screen and (max-width: 960px) {
  .info .content {
    padding: 48px 12px 0 12px;
  }
}
.info .content a {
  color: #F0FE6D;
}
.info .content h2 {
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 48px 0 24px 0;
  margin: 0;
  color: #F0FE6D;
}
@media screen and (max-width: 960px) {
  .info .content h2 {
    font-size: 16px;
    line-height: 19px;
    padding: 38px 0 20px 0;
  }
}
.info .content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  padding: 48px 0 24px 0;
  margin: 0;
  color: #F0FE6D;
}
@media screen and (max-width: 960px) {
  .info .content h3 {
    font-size: 16px;
    line-height: 19px;
    padding: 38px 0 20px 0;
  }
}
.info .content p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .info .content p {
    font-size: 12px;
    line-height: 18px;
  }
}
.info .content ul, .info .content ol {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .info .content ul, .info .content ol {
    font-size: 12px;
    line-height: 18px;
  }
}
.info .content img {
  width: 100%;
  display: block;
  margin-top: 40px;
  border-radius: 16px;
}
@media screen and (max-width: 960px) {
  .info .content img {
    margin-top: 20px;
  }
}
.info .content a {
  display: inline;
}

.no-title {
  border-radius: 16px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .no-title {
    margin-bottom: 0;
  }
}
.no-title .title {
  display: none;
}
.no-title .hide h3 {
  color: #FCFCFC;
}

.info-radius {
  border-radius: 16px 16px 0 0;
  margin-bottom: 0;
}

/*---------------------------------------------------

map

---------------------------------------------------*/
.map {
  position: relative;
}
.map .img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .map .img {
    border-radius: 16px;
  }
}
@media screen and (max-width: 600px) {
  .map .img {
    border-radius: 0;
  }
}
.map .title-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .map .title-mobile {
    display: block;
    padding: 120px 12px 16px 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.03em;
  }
}
.map .contacts {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 16px;
  background: #181818;
  color: #FCFCFC;
  padding: 8px 24px 48px 24px;
}
@media screen and (max-width: 960px) {
  .map .contacts {
    position: initial;
    top: initial;
    left: initial;
    transform: none;
    border-radius: 0;
    margin-top: -15px;
  }
}
.map .title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  padding: 40px 0 8px 0;
}
.map .title img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}
@media screen and (max-width: 1200px) {
  .map .title {
    font-size: 16px;
    line-height: 20px;
  }
  .map .title img {
    width: 14px;
  }
}
.map .field {
  width: 470px;
  border-bottom: 1px solid #F0FE6D;
  padding: 16px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .map .field {
    width: 330px;
  }
}
@media screen and (max-width: 960px) {
  .map .field {
    width: 100%;
  }
}
.map .field a {
  font-size: 16px;
  color: #FCFCFC;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .map .field a {
    font-size: 12px;
  }
}
.map .field img {
  margin-right: 8px;
}
.map .field div {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.map .field span {
  font-size: 18px;
  color: #F0FE6D;
}
@media screen and (max-width: 1200px) {
  .map .field span {
    font-size: 14px;
  }
}
.map .field-days {
  justify-content: space-between;
}
.map .btn {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  margin-top: 40px;
}
.map .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .map .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 960px) {
  .map .btn {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .map.contacts-map {
    border-radius: 0;
  }
}

/*---------------------------------------------------

repair

---------------------------------------------------*/
.repair {
  padding: 60px 52px 80px 0;
}
@media screen and (max-width: 1300px) {
  .repair {
    padding: 60px 0 80px 0;
  }
}
@media screen and (max-width: 960px) {
  .repair {
    padding: 60px 0 60px 0;
  }
}
.repair .title {
  color: #020202;
  padding-left: 60px;
}
@media screen and (max-width: 960px) {
  .repair .title {
    padding-left: 12px;
  }
}
.repair .desc {
  padding: 24px 0 32px 60px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  width: 400px;
}
@media screen and (max-width: 960px) {
  .repair .desc {
    width: 250px;
    padding: 16px 0 16px 12px;
    font-size: 12px;
    line-height: 17px;
  }
}
.repair .slider {
  overflow: hidden;
}
.repair .track {
  display: flex;
  align-items: stretch;
  gap: 8px;
  padding-left: 60px;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 960px) {
  .repair .track {
    padding-left: 12px;
  }
}
.repair .slide {
  background: #181818;
  border-radius: 16px;
  padding: 32px 24px;
  color: #FCFCFC;
  width: calc(25% - 8px);
}
@media screen and (max-width: 1300px) {
  .repair .slide {
    padding: 24px;
    flex: 0 0 calc(50% - 8px);
  }
}
@media screen and (max-width: 960px) {
  .repair .slide {
    flex: 0 0 calc(100% - 26px);
  }
}
.repair .slide-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #F0FE6D;
  padding-bottom: 12px;
}
@media screen and (max-width: 1300px) {
  .repair .slide-title {
    font-size: 18px;
    line-height: 27px;
    padding-bottom: 4px;
  }
}
.repair .row {
  display: flex;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  padding: 20px 0;
  border-bottom: 1px solid #494646;
}
.repair .row-text {
  width: 70%;
  min-height: 40px;
}
.repair .row-price {
  flex: 1 0 auto;
  text-align: right;
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
  color: #F0FE6D;
}
.repair .total {
  text-align: right;
  padding-top: 32px;
  color: #F0FE6D;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1300px) {
  .repair .total {
    font-size: 18px;
    line-height: 22px;
    padding-top: 24px;
  }
}
.repair .dots {
  display: none;
}
@media screen and (max-width: 1300px) {
  .repair .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
  }
}
.repair .dots div {
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c7680;
  margin: 0 4px;
}
.repair .dots .active {
  background: #020202;
}

/*---------------------------------------------------

complex

---------------------------------------------------*/
.complex {
  background: #020202;
  border-radius: 16px;
  padding: 80px 52px 80px 60px;
  margin: 80px 0;
}
@media screen and (max-width: 960px) {
  .complex {
    padding: 24px 12px 16px 12px;
    margin: 60px 0;
  }
}
.complex .title {
  width: 880px;
}
@media screen and (max-width: 960px) {
  .complex .title {
    width: 100%;
  }
}
.complex .inner {
  display: flex;
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  .complex .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.complex .img {
  margin-right: 8px;
  width: calc(33.333% - 8px);
  background: url("../images/complex-img.png") no-repeat 50% 50%;
  background-size: cover;
  border-radius: 16px;
}
@media screen and (max-width: 1200px) {
  .complex .img {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .complex .img {
    height: 224px;
  }
}
.complex .list {
  width: 66.666%;
}
@media screen and (max-width: 1200px) {
  .complex .list {
    width: 100%;
    margin-top: 24px;
  }
}
.complex .row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 8px;
  height: calc(33.333% - 8px);
}
.complex .row:last-child {
  margin-bottom: 0;
  height: 33.333%;
}
@media screen and (max-width: 1200px) {
  .complex .row {
    align-items: center;
    height: auto;
  }
  .complex .row:last-child {
    height: auto;
  }
}
@media screen and (max-width: 960px) {
  .complex .row {
    gap: 0;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.complex .item {
  width: calc(50% - 8px);
  background: #181818;
  border-radius: 8px;
  padding: 24px;
}
@media screen and (max-width: 960px) {
  .complex .item {
    width: 100%;
    margin-bottom: 8px;
    padding: 24px 34px;
    text-align: center;
  }
}
.complex .item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #F0FE6D;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .complex .item-title {
    flex-direction: column;
    padding: 0;
    font-size: 16px;
    line-height: 23px;
  }
  .complex .item-title h3 {
    order: 1;
    padding: 16px 0;
  }
  .complex .item-title h3 br {
    display: none;
  }
  .complex .item-title img {
    order: 0;
  }
}
.complex .desc {
  color: #FCFCFC;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .complex .desc {
    font-size: 12px;
    line-height: 17px;
  }
}

/*---------------------------------------------------

expertise

---------------------------------------------------*/
.expertise {
  background: #020202;
  border-radius: 16px;
  padding: 60px;
  margin: 80px 0;
}
@media screen and (max-width: 960px) {
  .expertise {
    padding: 24px 12px 16px 12px;
    margin: 60px 0;
  }
}
.expertise .title {
  width: 100%;
}
.expertise .title span {
  display: block;
}
.expertise .tabs-holder {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .expertise .tabs-holder {
    display: none;
  }
}
.expertise .tabs-holder .tabs {
  flex: 1 1 41%;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.expertise .tabs-holder .tabs .tab {
  width: 100%;
  background: #181818;
  border-radius: 8px;
  padding: 24px;
  color: #F0FE6D;
  font-size: 18px;
  line-height: 1.46;
  transition: background-color 0.4s ease-in-out;
  cursor: pointer;
}
.expertise .tabs-holder .tabs .tab.active, .expertise .tabs-holder .tabs .tab:hover {
  background: #2E2E2E;
}
.expertise .tabs-holder .tab-data-holder {
  flex: 1 1 59%;
  background: #181818;
  border-radius: 8px;
  padding: 24px;
  font-family: "Inter", sans-serif;
  color: #FCFCFC;
  font-size: 14px;
  line-height: 1.63;
}
.expertise .accordion-holder-mobile {
  display: none;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .expertise .accordion-holder-mobile {
    display: flex;
    flex-flow: column;
    gap: 16px;
  }
}
.expertise .accordion-holder-mobile .accordion-block {
  display: flex;
  flex-flow: column;
  gap: 24px;
  width: 100%;
  background: #181818;
  border-radius: 8px;
  padding: 24px;
}
.expertise .accordion-holder-mobile .accordion-block.active .accordion-block-info {
  display: block;
}
.expertise .accordion-holder-mobile .accordion-block.active .accordion-block-arrow-up {
  transform: rotate(0deg);
}
.expertise .accordion-holder-mobile .accordion-block-title {
  display: flex;
  gap: 24px;
  cursor: pointer;
}
.expertise .accordion-holder-mobile .accordion-block-title span {
  flex: 1 1 auto;
  display: block;
  color: #F0FE6D;
  font-size: 16px;
  line-height: 1.46;
}
.expertise .accordion-holder-mobile .accordion-block-info {
  display: none;
  position: relative;
  max-width: 100%;
  font-family: "Inter", sans-serif;
  color: #FCFCFC;
  font-size: 12px;
  line-height: 1.63;
  word-wrap: break-word;
  text-align: justify;
}
.expertise .accordion-holder-mobile .accordion-block-arrow-up {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url("/images/yellow_up_arrow.svg") no-repeat center/contain;
  transform: rotate(180deg);
}
.expertise .alert-holder {
  display: flex;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 580px) {
  .expertise .alert-holder {
    flex-flow: column;
    align-items: center;
  }
}
.expertise .alert-holder img {
  flex: 0 0 71px;
  width: 71px;
  height: 63px;
  object-fit: contain;
}
.expertise .alert-holder .alert {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column;
  gap: 24px;
  padding: 24px;
  background: #F0FE6D;
  border-radius: 8px;
  max-width: 100%;
}
.expertise .alert-holder .title {
  padding: 0;
  font-size: 18px;
  line-height: 1.46;
}
.expertise .alert-holder .alert-info {
  max-width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.63;
  word-wrap: break-word;
  text-align: justify;
}

/*---------------------------------------------------

types

---------------------------------------------------*/
.types {
  padding-top: 80px;
  padding-bottom: 80px;
}
.types .title {
  width: 530px;
  padding-bottom: 32px;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .types .title {
    width: 270px;
    padding-bottom: 16px;
  }
}
.types .list {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  .types .list {
    gap: 8px;
    flex-direction: column;
    justify-content: center;
  }
}
.types .item {
  width: 25%;
  text-align: center;
  padding: 40px 35px 24px;
  border-radius: 16px;
  text-decoration: none;
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .types .item {
    padding: 40px 15px 24px;
  }
}
@media screen and (max-width: 960px) {
  .types .item {
    width: 100%;
    height: 260px;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 600px) {
  .types .item {
    height: 170px;
    padding: 32px 32px 15px 32px;
  }
}
.types .item-1 {
  background: #020202 url("../images/type-1.png") no-repeat 50% 50%;
  background-size: cover;
}
.types .item-2 {
  background: #020202 url("../images/type-2.png") no-repeat 50% 50%;
  background-size: cover;
}
.types .item-3 {
  background: #020202 url("../images/type-3.png") no-repeat 50% 50%;
  background-size: cover;
}
.types .item-4 {
  background: #020202 url("../images/type-4.png") no-repeat 50% 50%;
  background-size: cover;
}
.types .item-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0.03em;
  color: #F0FE6D;
}
@media screen and (max-width: 1380px) {
  .types .item-title {
    font-size: 18px;
    line-height: 22px;
  }
}
.types .desc {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: #FCFCFC;
}
.types .desc img {
  margin-left: 12px;
}
@media screen and (max-width: 960px) {
  .types .desc {
    bottom: 15px;
    font-size: 12px;
    line-height: 15px;
  }
  .types .desc img {
    width: 10px;
    height: auto;
  }
}

/*---------------------------------------------------

need

---------------------------------------------------*/
.need {
  margin: 80px 0;
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.need.cta {
  flex-flow: row-reverse;
}
.need .img {
  width: 58%;
}
@media screen and (max-width: 1300px) {
  .need .img {
    width: 100%;
    position: relative;
    z-index: 0;
  }
}
@media screen and (max-width: 450px) {
  .need .img {
    height: 308px;
    width: auto;
    margin-left: -95px;
  }
}
.need .text {
  flex: 1 0 auto;
  background: #F0FE6D;
  padding: 0 0 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1300px) {
  .need .text {
    position: absolute;
    background: transparent;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1300px) {
  .need .inner {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.need .title {
  width: 450px;
  color: #020202;
}
@media screen and (max-width: 1300px) {
  .need .title {
    color: #FCFCFC;
  }
}
@media screen and (max-width: 960px) {
  .need .title {
    width: 265px;
  }
}
.need .desc {
  width: 380px;
  color: #020202;
  padding: 32px 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.03em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1300px) {
  .need .desc {
    color: #FCFCFC;
  }
}
@media screen and (max-width: 960px) {
  .need .desc {
    padding: 20px 0 24px 0;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    width: 233px;
  }
}
.need .btn {
  width: 201px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #181818;
  color: #F0FE6D;
}
.need .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .need .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.need .btn:hover {
  background: #181818;
  color: #F0FE6D;
}
@media screen and (max-width: 1300px) {
  .need .btn {
    background: #F0FE6D;
    color: #020202;
  }
}

/*---------------------------------------------------

crumbs

---------------------------------------------------*/
.crumbs {
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .crumbs {
    padding-top: 84px;
    padding-bottom: 28px;
  }
}
.crumbs .link {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #6c7680;
  margin-right: 8px;
  text-decoration: none;
  position: relative;
  padding-left: 10px;
  flex: 0 0 auto;
}
@media screen and (max-width: 960px) {
  .crumbs .link {
    font-size: 10px;
    line-height: 12px;
  }
}
.crumbs .link:after {
  content: "|";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 960px) {
  .crumbs .link:after {
    font-size: 12px;
    line-height: 1;
  }
}
.crumbs .link:first-child {
  padding-left: 0;
}
.crumbs .link:first-child:after {
  display: none;
}
.crumbs .link:last-child {
  font-weight: 600;
  color: #020202;
  text-overflow: ellipsis;
  max-width: 450px;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 0;
  flex: 0 1 auto;
}
.crumbs .link:hover {
  transition: all 0.3s ease;
  color: #020202;
}

/*---------------------------------------------------

products-list

---------------------------------------------------*/
.products-list {
  padding: 24px 44px 80px 60px;
}
@media screen and (max-width: 960px) {
  .products-list {
    padding: 14px 4px 60px 12px;
  }
}
.products-list.after-material {
  margin-top: -150px;
}
@media screen and (max-width: 960px) {
  .products-list.after-material {
    margin-top: -70px;
  }
}
.products-list .title {
  width: 710px;
  padding-bottom: 32px;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .products-list .title {
    width: 100%;
    padding-bottom: 24px;
  }
}
.products-list .list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .products-list .list {
    gap: 8px;
  }
}
.products-list .item {
  position: relative;
  border: 1px solid #C2C2C2;
  border-radius: 16px;
  width: calc(25% - 16px);
  overflow: hidden;
  color: #020202;
}
@media screen and (max-width: 1300px) {
  .products-list .item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 960px) {
  .products-list .item {
    width: calc(50% - 8px);
  }
}
.products-list .img-link {
  background: #ffffff;
  padding: 16px 0 24px 0;
  display: block;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .products-list .img-link {
    padding-bottom: 12px;
  }
}
.products-list .img {
  height: 164px;
  width: auto;
  margin: auto;
  position: relative;
}
.products-list .img:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  background: #fff url("/images/noimage.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .products-list .img {
    height: 118px;
  }
}
.products-list .product-info {
  padding: 12px 16px 16px 16px;
}
@media screen and (max-width: 960px) {
  .products-list .product-info {
    padding: 12px;
  }
}
.products-list .product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .products-list .product-title {
    padding-bottom: 12px;
  }
}
.products-list .producer {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  width: 70%;
  min-height: 40px;
}
@media screen and (max-width: 960px) {
  .products-list .producer {
    font-size: 10px;
    line-height: 12px;
    min-height: 20px;
  }
}
@media screen and (max-width: 400px) {
  .products-list .producer {
    font-size: 8px;
    line-height: 10px;
  }
}
.products-list .status {
  font-size: 10px;
  line-height: 12px;
  color: #F0FE6D;
  padding: 6px 10px;
  border-radius: 16px;
  background: #181818;
  flex: 0 0 auto;
}
@media screen and (max-width: 960px) {
  .products-list .status {
    font-size: 6px;
    line-height: 8px;
    padding: 2px 6px;
  }
}
.products-list .status-top-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
}
.products-list .status-top {
  position: relative;
  font-size: 10px;
  line-height: 12px;
  color: #F0FE6D;
  padding: 6px 10px;
  border-radius: 16px;
  background: #181818;
  flex: 0 0 auto;
}
.products-list .status-top.gray {
  color: #FCFCFC;
  background: #6C7680;
}
.products-list .status-top.yellow {
  color: #181818;
  background: #F0FE6D;
}
.products-list .status-top.red {
  color: #FCFCFC;
  background: #DC0404;
}
.products-list .status-top.orange {
  color: #181818;
  background: #FFA63F;
}
@media screen and (max-width: 960px) {
  .products-list .status-top {
    font-size: 6px;
    line-height: 8px;
    padding: 2px 6px;
  }
}
.products-list .name-holder {
  padding: 16px 0;
  border-top: 1px solid #C8C8C8;
  border-bottom: 1px solid #C8C8C8;
  color: #020202;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .products-list .name-holder {
    padding: 12px 0;
  }
}
.products-list .name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .products-list .name {
    font-size: 8px;
    line-height: 12px;
  }
}
.products-list .product-reviews {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 7px;
  border-radius: 16px;
  border: 1px solid #C8C8C8;
  margin: 16px 0;
}
@media screen and (max-width: 960px) {
  .products-list .product-reviews {
    margin: 12px 0;
  }
}
.products-list .total {
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .products-list .total {
    font-size: 7px;
  }
}
@media screen and (max-width: 960px) {
  .products-list .stars .star {
    margin-right: 4px;
    height: 8px;
    width: 8px;
  }
  .products-list .stars .star:last-child {
    margin-right: 0;
  }
}
.products-list .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-list .bottom a {
  text-decoration: none;
  width: 117px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  color: #F0FE6D;
  background: #181818;
  padding: 9px 0;
}
.products-list .bottom a:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .products-list .bottom a {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.products-list .bottom a:hover {
  color: #020202;
}
@media screen and (max-width: 960px) {
  .products-list .bottom a {
    width: 59px;
    padding: 8px 0;
    font-size: 8px;
    line-height: 10px;
  }
}
.products-list .price {
  font-size: 10px;
}
@media screen and (max-width: 960px) {
  .products-list .price {
    font-size: 6px;
  }
}
.products-list .price span:nth-child(2) {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .products-list .price span:nth-child(2) {
    font-size: 10px;
  }
}
@media screen and (max-width: 960px) {
  .products-list .price span {
    font-size: 10px;
  }
}
.products-list .products-more {
  width: 352px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #181818;
  color: #F0FE6D;
  margin: 32px auto 0 auto;
}
.products-list .products-more:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .products-list .products-more {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.products-list .products-more:hover {
  color: #020202;
}
@media screen and (max-width: 960px) {
  .products-list .products-more {
    margin-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .products-list .products-more {
    width: 100%;
  }
}

.stars {
  display: flex;
  align-items: center;
}
.stars .star {
  width: 14px;
  height: 12px;
  margin-right: 5px;
}
.stars .star:last-child {
  margin-right: 0;
}
.stars .star0 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyOSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjYyOTYgMS4wMjIyM0wxOC43ODQ0IDguNDMxMDlMMTguODk4OSA4LjYzNTI1TDE5LjEyOSA4LjY3ODA5TDI3LjU5MDEgMTAuMjUzTDIxLjY5NzIgMTYuMzg4OUwyMS41MzEyIDE2LjU2MThMMjEuNTYyIDE2Ljc5OTVMMjIuNjQ2OSAyNS4xNjY5TDE0LjgzOTEgMjEuNTY0NUwxNC42Mjk2IDIxLjQ2NzlMMTQuNDIwMSAyMS41NjQ1TDYuNjEyMzEgMjUuMTY2OUw3LjY5NzIgMTYuNzk5NUw3LjcyODAzIDE2LjU2MThMNy41NjE5NyAxNi4zODg5TDEuNjY5MTEgMTAuMjUzTDEwLjEzMDIgOC42NzgwOUwxMC4zNjAzIDguNjM1MjVMMTAuNDc0OCA4LjQzMTA5TDE0LjYyOTYgMS4wMjIyM1oiIHN0cm9rZT0iI0MyQzJDMiIvPgo8L3N2Zz4K");
  background-size: cover;
}
.stars .star50 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyOSAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjcwMzcgMFYyMi4wMTg1TDYuMDc0MiAyNkw3LjI3NTQ1IDE2LjczNTNMMC43NDA3MjMgOS45MzEwNkwxMC4xMTI4IDguMTg2NTNMMTQuNzAzNyAwWiIgZmlsbD0iI0ZGQzUzMCIvPgo8cGF0aCBkPSJNMTQuNzAzNyAxLjAyMjIzTDE4Ljg1ODUgOC40MzEwOUwxOC45NzMgOC42MzUyNUwxOS4yMDMxIDguNjc4MDlMMjcuNjY0MiAxMC4yNTNMMjEuNzcxMyAxNi4zODg5TDIxLjYwNTIgMTYuNTYxOEwyMS42MzYxIDE2Ljc5OTVMMjIuNzIxIDI1LjE2NjlMMTQuOTEzMiAyMS41NjQ1TDE0LjcwMzcgMjEuNDY3OUwxNC40OTQyIDIxLjU2NDVMNi42ODY0MSAyNS4xNjY5TDcuNzcxMyAxNi43OTk1TDcuODAyMTIgMTYuNTYxOEw3LjYzNjA3IDE2LjM4ODlMMS43NDMyIDEwLjI1M0wxMC4yMDQzIDguNjc4MDlMMTAuNDM0NCA4LjYzNTI1TDEwLjU0ODkgOC40MzEwOUwxNC43MDM3IDEuMDIyMjNaIiBzdHJva2U9IiNDMkMyQzIiLz4KPC9zdmc+Cg==");
  background-size: cover;
}
.stars .star100 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyOCAyNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjk2MyAwTDE4LjU1MzkgOC4xODY1M0wyNy45MjU5IDkuOTMxMDZMMjEuMzkxMiAxNi43MzUzTDIyLjU5MjQgMjZMMTMuOTYzIDIyLjAxODVMNS4zMzM0OCAyNkw2LjUzNDcyIDE2LjczNTNMMCA5LjkzMTA2TDkuMzcyMDcgOC4xODY1M0wxMy45NjMgMFoiIGZpbGw9IiNGRkM1MzAiLz4KPC9zdmc+Cg==");
  background-size: cover;
}

/*---------------------------------------------------

product

---------------------------------------------------*/
.product {
  padding-top: 20px;
}
@media screen and (max-width: 960px) {
  .product {
    padding: 0;
  }
}
.product .top {
  display: flex;
  padding-bottom: 80px;
}
@media screen and (max-width: 1150px) {
  .product .top {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .product .top {
    padding: 0 0 80px 0;
  }
}
.product .left {
  margin-right: 58px;
}
@media screen and (max-width: 1280px) {
  .product .left {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1150px) {
  .product .left {
    margin-right: 0;
  }
}
.product .img-holder {
  position: relative;
}
.product .big-img {
  border-radius: 16px;
  border: 1px solid #C2C2C2;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  width: 663px;
  height: 530px;
}
.product .big-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product .big-img img:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  background: #fff url("/images/noimage.png") no-repeat center/contain;
}
@media screen and (max-width: 1280px) {
  .product .big-img {
    width: 563px;
    height: 430px;
  }
}
@media screen and (max-width: 1150px) {
  .product .big-img {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .product .big-img {
    border-radius: 0;
    border-right: none;
    border-left: none;
    height: 276px;
    position: relative;
    z-index: 0;
  }
  .product .big-img img {
    height: 224px;
  }
}
@media screen and (max-width: 960px) {
  .product .small-img-list {
    position: absolute;
    height: 100%;
    width: 98px;
    top: 0;
    overflow: auto;
    padding: 0 12px;
  }
}
.product .small-img {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-flow: row wrap;
}
.product .small-img div {
  border: 1px solid #C2C2C2;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  cursor: pointer;
  width: 148px;
  height: 138px;
  border-radius: 16px;
}
@media screen and (max-width: 960px) {
  .product .small-img div {
    width: 74px;
    height: 70px;
  }
}
.product .small-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .product .small-img img {
    height: 46px;
  }
}
.product .small-img img:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  background: #fff url("/images/noimage.png") no-repeat center/contain;
}
@media screen and (max-width: 960px) {
  .product .small-img {
    position: absolute;
    z-index: 1;
    flex-direction: column;
  }
}
.product .right {
  flex-basis: 100%;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .product .right {
    padding-top: 24px;
  }
}
@media screen and (max-width: 960px) {
  .product .right {
    padding: 24px 12px 0 12px;
  }
}
.product .status-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  width: 100%;
}
.product .status {
  position: relative;
  font-size: 14px;
  line-height: 17px;
  color: #F0FE6D;
  padding: 8px 12px;
  border-radius: 16px;
  background: #181818;
  width: fit-content;
}
.product .status.gray {
  color: #FCFCFC;
  background: #6C7680;
}
.product .status.yellow {
  color: #181818;
  background: #F0FE6D;
}
.product .status.red {
  color: #FCFCFC;
  background: #DC0404;
}
.product .status.orange {
  color: #181818;
  background: #FFA63F;
}
@media screen and (max-width: 960px) {
  .product .status {
    font-size: 10px;
    line-height: 12px;
    padding: 8px 12px;
  }
}
.product .name {
  font-weight: 600;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 0.03em;
  padding: 40px 0 54px 0;
}
@media screen and (max-width: 960px) {
  .product .name {
    padding: 24px 0;
    font-size: 16px;
    line-height: 25px;
  }
}
.product .rating {
  display: flex;
  align-items: center;
}
.product .rating .stars .star {
  margin-right: 2px;
  width: 28px;
  height: 26px;
}
.product .rating .stars .star:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .product .rating .stars .star {
    width: 16px;
    height: 15px;
  }
}
.product .rating .num {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  margin: 0 16px 0 8px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .product .rating .num {
    font-size: 12px;
    line-height: 15px;
  }
}
.product .rating a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  color: #6c7680;
  font-family: "Inter", sans-serif;
}
.product .price-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 46px 0 24px 0;
}
@media screen and (max-width: 960px) {
  .product .price-holder {
    padding: 21px 0 32px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.product .price {
  font-size: 10px;
}
.product .price span:first-child {
  font-size: 18px;
  font-weight: 700;
}
.product .quantity {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .product .quantity {
    padding-bottom: 24px;
  }
}
.product .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.03em;
  padding-right: 31px;
}
.product .quantity-holder {
  display: flex;
  align-items: center;
}
.product .quantity-holder img {
  cursor: pointer;
  width: 20px;
  height: auto;
}
.product .field {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  border-radius: 16px;
  border: 1px solid #181818;
  margin: 0 14px;
}
.product .btns-holder {
  width: 600px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1400px) {
  .product .btns-holder {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .product .btns-holder {
    padding-bottom: 32px;
  }
}
.product .btns-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 33px;
  width: 600px;
  padding-bottom: 48px;
}
@media screen and (max-width: 1400px) {
  .product .btns-list {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .product .btns-list {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .product .btns-list {
    gap: 16px;
  }
}
.product .buy {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #181818;
  color: #F0FE6D;
}
.product .buy:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .product .buy {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.product .buy:hover {
  color: #020202;
}
@media screen and (max-width: 960px) {
  .product .buy {
    width: 100%;
  }
}
.product .add {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #F0FE6D;
  color: #020202;
  margin: 12px 0 16px 0;
}
.product .add:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .product .add {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.product .add:hover {
  box-shadow: none;
  background: #181818;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .product .add {
    width: 100%;
    margin: 8px 0 12px 0;
  }
}
.product .question {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #FCFCFC;
  border: 1px solid #181818;
  margin: 12px 0 16px 0;
}
.product .question:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .product .question {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.product .question:hover {
  box-shadow: none;
  background: #181818;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .product .question {
    width: 100%;
    margin: 8px 0 12px 0;
  }
}
.product .free {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.03em;
  color: #6c7680;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .product .free {
    font-size: 12px;
    line-height: 15px;
  }
}
.product .variant {
  padding: 32px 0;
  border-top: 1px solid #C2C2C2;
}
.product .variant:last-child {
  border-bottom: 1px solid #C2C2C2;
}
@media screen and (max-width: 960px) {
  .product .variant {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 24px 12px;
  }
}
.product .variant-name {
  padding-bottom: 16px;
  font-weight: 500;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .product .variant-name {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 12px;
  }
}
.product .holder {
  display: flex;
  align-items: center;
}
.product .holder img {
  height: 40px;
  width: auto;
  margin-right: 4px;
}
.product .holder img:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .product .holder img {
    height: 26px;
  }
}
.product .bottom-holder {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: #f4f4f4;
}
.product .bottom-holder.open {
  padding: 0 0 160px;
  max-height: none;
}
.product .bottom-holder.open .about-cutter .about-cutter-btn {
  transform: translate(-50%, -23.8%) rotate(180deg);
}
.product .bottom-holder.open .about-cutter .about-cutter-text .about-cutter-closed {
  display: none;
}
.product .bottom-holder.open .about-cutter .about-cutter-text .about-cutter-opened {
  display: block;
}
.product .bottom-holder .about-cutter {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 159px;
}
.product .bottom-holder .about-cutter .about-cutter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -23.8%);
  width: 109px;
  height: 109px;
  border-radius: 999px;
  background: #f4f4f4;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .product .bottom-holder .about-cutter .about-cutter-btn {
    width: 65px;
    height: 65px;
  }
}
.product .bottom-holder .about-cutter .about-cutter-btn:before {
  content: "";
  display: block;
  position: relative;
  height: 66%;
  width: 66%;
  background: url("/images/about-arrow.svg") no-repeat center/contain;
  border-radius: 999px;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.product .bottom-holder .about-cutter .about-cutter-btn:hover:before {
  opacity: 0.7;
}
.product .bottom-holder .about-cutter .about-cutter-text {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 209px;
  height: 40px;
  top: 93px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .product .bottom-holder .about-cutter .about-cutter-text {
    width: 155px;
    height: 34px;
    top: 60px;
    font-size: 14px;
  }
}
.product .bottom-holder .about-cutter .about-cutter-text .about-cutter-closed {
  display: block;
}
.product .bottom-holder .about-cutter .about-cutter-text .about-cutter-opened {
  display: none;
}
.product .bottom-holder .about-cutter .about-cutter-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(240, 254, 109, 0.6);
  backdrop-filter: blur(3px);
}
.product .bottom {
  padding: 80px 60px 40px 60px;
  display: flex;
  flex-flow: column;
  gap: 25px;
  border-radius: 16px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1050px) {
  .product .bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .product .bottom {
    padding: 80px 12px;
    margin-bottom: 66px;
  }
}
.product .bottom:first-child {
  margin-bottom: 0;
}
.product .bottom-2 {
  padding: 80px 60px 40px 60px;
  display: flex;
  justify-content: flex-start;
  border-radius: 16px;
  margin-top: -56px;
  margin-bottom: 56px;
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .product .bottom-2 {
    overflow: auto;
  }
}
@media screen and (max-width: 960px) {
  .product .bottom-2 {
    padding: 80px 12px;
    margin-top: -66px;
    margin-bottom: 66px;
  }
}
.product .bottom-2 table {
  position: relative;
  left: 0;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 1050px) {
  .product .bottom-2 table {
    min-width: 960px;
  }
}
.product .bottom-2 table thead tr {
  height: 50px;
}
.product .bottom-2 table thead tr th {
  height: 50px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .product .bottom-2 table thead tr th {
    font-size: 12px;
  }
}
.product .bottom-2 table thead tr th.comment {
  width: 360px;
}
.product .bottom-2 table tbody tr {
  height: 50px;
}
.product .bottom-2 table tbody tr td {
  height: 50px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  padding: 0 25px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .product .bottom-2 table tbody tr td {
    padding: 0 15px;
    font-size: 10px;
  }
}
.product .about {
  column-count: 2;
  column-gap: 50px;
  column-width: min-content;
}
@media screen and (max-width: 960px) {
  .product .about {
    column-count: initial;
    column-gap: 0;
    display: flex;
    flex-direction: column;
  }
}
.product .about-item {
  margin-bottom: 40px;
  break-inside: avoid;
}
@media screen and (max-width: 960px) {
  .product .about-item {
    width: 100%;
    margin-bottom: 32px;
  }
}
.product .about-item:last-child {
  margin-bottom: 0;
  height: 300px;
}
@media screen and (max-width: 960px) {
  .product .about-item:last-child {
    height: auto;
  }
}
.product .about-item:nth-child(1) {
  order: 1;
}
.product .about-item:nth-child(2) {
  order: 3;
}
.product .about-item:nth-child(3) {
  order: 5;
}
.product .about-item:nth-child(4) {
  order: 6;
}
.product .about-item:nth-child(5) {
  order: 7;
}
.product .about-item:nth-child(6) {
  order: 2;
}
.product .about-item:nth-child(7) {
  order: 4;
}
.product .about-item:nth-child(8) {
  order: 8;
}
.product .about-item:nth-child(9) {
  order: 9;
}
.product .about-name {
  padding-bottom: 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 31px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .product .about-name {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 16px;
  }
}
.product .about-desc {
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  .product .about-desc {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .product .about-text {
    padding-top: 32px;
  }
}
.product .about-btn {
  display: none;
}
@media screen and (max-width: 1050px) {
  .product .about-btn {
    display: block;
    width: 350px;
    cursor: pointer;
    padding: 18px 0;
    border-radius: 16px;
    background: #F0FE6D;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #020202;
    text-align: center;
    text-decoration: none;
    background: #6C7680;
    color: #FCFCFC;
    margin-top: 32px;
  }
  .product .about-btn:hover {
    box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
    background: #f4ff8c;
  }
}
@media screen and (max-width: 1050px) and (max-width: 960px) {
  .product .about-btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 1050px) {
  .product .about-btn:hover {
    background: #6C7680;
    color: #FCFCFC;
  }
}
@media screen and (max-width: 960px) {
  .product .about-btn {
    width: 100%;
  }
}
.product .action-counter {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
}
.product .action-counter .action-counter-title {
  position: relative;
  color: #000;
  font-size: 14px;
}
.product .action-counter .action-counter-data {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.product .action-counter .action-counter-data .action-counter-time {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}
.product .action-counter .action-counter-data .action-counter-time .action-counter-time-col {
  flex: 0 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3px;
  position: relative;
  width: 100px;
}
.product .action-counter .action-counter-data .action-counter-time .action-counter-time-col .action-counter-time-big {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 40px;
  background: #F0FE6D;
  border-radius: 10px;
  font-weight: 600;
}
.product .action-counter .action-counter-data .action-counter-time .action-counter-time-col .action-counter-time-small {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 12px;
  font-size: 10px;
  text-align: center;
}
.product .action-counter .action-counter-data .action-counter-time .action-counter-time-col .action-counter-time-small-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 12px;
  font-size: 10px;
  text-align: center;
}
.product .action-counter .action-counter-data .action-counter-price {
  flex: 1 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  max-width: 300px;
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-old {
  flex: 0 0 auto;
  position: relative;
  color: #9B9999;
  font-size: 18px;
  font-weight: 700;
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-old:before, .product .action-counter .action-counter-data .action-counter-price .action-counter-price-old:after {
  position: absolute;
  display: block;
  left: calc(50% - 16px);
  top: calc(50% - 2px);
  content: "";
  width: 32px;
  height: 4px;
  background-color: #C92B2B;
  border-radius: 4px;
  transform-origin: center;
  z-index: 9;
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-old:before {
  transform: rotate(45deg);
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-old:after {
  transform: rotate(-45deg);
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-old span:last-child {
  font-size: 10px;
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-new {
  flex: 0 0 auto;
  position: relative;
  color: #211C1C;
  font-size: 18px;
  font-weight: 700;
}
.product .action-counter .action-counter-data .action-counter-price .action-counter-price-new span:last-child {
  font-size: 10px;
}

@media screen and (max-width: 960px) {
  .reviews-product {
    padding: 20px 12px 40px 12px;
  }
}
@media screen and (max-width: 960px) {
  .reviews-product .inner {
    border-radius: 16px;
    background: #F0FE6D;
    padding: 24px 12px;
  }
}
.reviews-product .controls-text {
  color: #020202;
  font-weight: 500;
  font-size: 40px;
  line-height: 62px;
  letter-spacing: 0.03em;
  font-family: "Unbounded", sans-serif;
  width: auto;
}
@media screen and (max-width: 960px) {
  .reviews-product .controls-text {
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 960px) {
  .reviews-product .controls {
    padding: 0;
  }
}
.reviews-product .arrow-l {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iNzgiIHk9IjQzIiB3aWR0aD0iNzciIGhlaWdodD0iNDIiIHJ4PSIyMSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCA3OCA0MykiIHN0cm9rZT0iIzIxMUMxQyIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0zMC43MzY1IDIwLjc5MjlDMzAuMzQ2IDIxLjE4MzQgMzAuMzQ2IDIxLjgxNjYgMzAuNzM2NSAyMi4yMDcxTDM3LjEwMDUgMjguNTcxMUMzNy40OTEgMjguOTYxNiAzOC4xMjQyIDI4Ljk2MTYgMzguNTE0NyAyOC41NzExQzM4LjkwNTIgMjguMTgwNSAzOC45MDUyIDI3LjU0NzQgMzguNTE0NyAyNy4xNTY5TDMyLjg1NzkgMjEuNUwzOC41MTQ3IDE1Ljg0MzFDMzguOTA1MiAxNS40NTI2IDM4LjkwNTIgMTQuODE5NSAzOC41MTQ3IDE0LjQyODlDMzguMTI0MiAxNC4wMzg0IDM3LjQ5MSAxNC4wMzg0IDM3LjEwMDUgMTQuNDI4OUwzMC43MzY1IDIwLjc5MjlaTTQ3IDIwLjVMMzEuNDQzNiAyMC41TDMxLjQ0MzYgMjIuNUw0NyAyMi41TDQ3IDIwLjVaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
.reviews-product .arrow-r {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzkiIGhlaWdodD0iNDQiIHZpZXdCb3g9IjAgMCA3OSA0NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9Ijc3IiBoZWlnaHQ9IjQyIiByeD0iMjEiIHN0cm9rZT0iIzIxMUMxQyIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik00OC4yNjM1IDIzLjIwNzFDNDguNjU0IDIyLjgxNjYgNDguNjU0IDIyLjE4MzQgNDguMjYzNSAyMS43OTI5TDQxLjg5OTUgMTUuNDI4OUM0MS41MDkgMTUuMDM4NCA0MC44NzU4IDE1LjAzODQgNDAuNDg1MyAxNS40Mjg5QzQwLjA5NDggMTUuODE5NSA0MC4wOTQ4IDE2LjQ1MjYgNDAuNDg1MyAxNi44NDMxTDQ2LjE0MjEgMjIuNUw0MC40ODUzIDI4LjE1NjlDNDAuMDk0OCAyOC41NDc0IDQwLjA5NDggMjkuMTgwNSA0MC40ODUzIDI5LjU3MTFDNDAuODc1OCAyOS45NjE2IDQxLjUwOSAyOS45NjE2IDQxLjg5OTUgMjkuNTcxMUw0OC4yNjM1IDIzLjIwNzFaTTMyIDIzLjVINDcuNTU2NFYyMS41SDMyVjIzLjVaIiBmaWxsPSIjMjExQzFDIi8+Cjwvc3ZnPgo=");
}
.reviews-product .slide {
  flex: 0 0 625px;
  height: 320px;
  border: 1px solid #C2C2C2;
  background: #F0FE6D;
  padding: 32px 32px 48px 32px;
  position: relative;
  text-decoration: none;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .reviews-product .slide {
    flex: 0 0 100%;
    padding: 24px 16px 27px 24px;
    height: 178px;
  }
}
.reviews-product .rep-slide-top {
  position: relative;
}
.reviews-product .rep-slide-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-title {
    font-size: 14px;
    line-height: 17px;
    padding-bottom: 16px;
  }
}
.reviews-product .rep-slide-desc {
  width: 410px;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-desc {
    width: 90%;
    font-size: 12px;
    line-height: 17px;
  }
}
@media screen and (max-width: 600px) {
  .reviews-product .rep-slide-desc {
    width: 100%;
  }
}
.reviews-product .rep-slide-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: auto;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-icon {
    width: 20px;
    top: -6px;
  }
}
.reviews-product .rep-slide-bottom {
  width: calc(100% - 64px);
  position: absolute;
  bottom: 48px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-bottom {
    bottom: 27px;
    flex-direction: column;
    align-items: stretch;
    left: 24px;
    width: calc(100% - 40px);
  }
}
.reviews-product .rep-slide-price {
  font-size: 16px;
  line-height: 24px;
}
.reviews-product .rep-slide-price span:first-child {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-price {
    font-size: 10px;
    line-height: 24px;
  }
  .reviews-product .rep-slide-price span {
    font-size: 14px;
    line-height: 36px;
  }
}
.reviews-product .rep-slide-decor {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
}
.reviews-product .rep-slide-decor label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.reviews-product .rep-slide-decor label .rep-slide-decor-checked {
  position: relative;
  margin-right: 4px;
  height: 18px;
  width: 18px;
  background: url("../images/rep-slide-check.svg") no-repeat center/contain;
  display: none;
}
.reviews-product .rep-slide-decor label .rep-slide-decor-unchecked {
  position: relative;
  margin-right: 4px;
  height: 18px;
  width: 18px;
  background: url("../images/rep-slide-uncheck.svg") no-repeat center/contain;
  display: block;
}
.reviews-product .rep-slide-decor label input:checked + .rep-slide-decor-unchecked + .rep-slide-decor-checked {
  display: block;
}
.reviews-product .rep-slide-decor label input:checked + .rep-slide-decor-unchecked {
  display: none;
}
@media screen and (max-width: 960px) {
  .reviews-product .rep-slide-decor {
    justify-content: flex-end;
    font-size: 12px;
    line-height: 15px;
  }
  .reviews-product .rep-slide-decor .rep-slide-decor-checked, .reviews-product .rep-slide-decor .rep-slide-decor-unchecked {
    margin-right: 6px;
    height: 10px;
    width: 10px;
  }
}
.reviews-product .dots {
  display: flex;
  padding-top: 32px;
}
@media screen and (max-width: 960px) {
  .reviews-product .dots {
    padding-top: 16px;
  }
}
.reviews-product .dots div {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 960px) {
  .reviews-product .dots div {
    width: 8px;
    height: 8px;
  }
}
.reviews-product .dots .active {
  background: #181818;
}

/*---------------------------------------------------

reviews-block

---------------------------------------------------*/
.reviews-block {
  background: #f4f4f4;
  border-radius: 16px 16px 0 0;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  gap: 160px;
}
@media screen and (max-width: 1280px) {
  .reviews-block {
    gap: 80px;
  }
}
@media screen and (max-width: 1160px) {
  .reviews-block {
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .reviews-block {
    padding: 85px 0 80px 0;
    margin-top: 40px;
  }
}
.reviews-block .title {
  color: #020202;
  padding-bottom: 28px;
}
@media screen and (max-width: 1160px) {
  .reviews-block .title {
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  .reviews-block .title {
    font-size: 16px;
    line-height: 25px;
  }
}
.reviews-block .left {
  flex: 1 0 auto;
}
@media screen and (max-width: 1160px) {
  .reviews-block .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  .reviews-block .left {
    padding: 0 12px;
  }
}
.reviews-block .right {
  width: 64%;
}
@media screen and (max-width: 1160px) {
  .reviews-block .right {
    width: 100%;
  }
}
.reviews-block .rating {
  display: flex;
  align-items: center;
}
.reviews-block .rating .stars .star {
  margin-right: 2px;
  width: 28px;
  height: 26px;
}
.reviews-block .rating .stars .star:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reviews-block .rating .stars .star {
    width: 16px;
    height: 15px;
  }
}
.reviews-block .rating .num {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin: 0 16px 0 8px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .reviews-block .rating .num {
    font-size: 12px;
    line-height: 15px;
  }
}
.reviews-block .rating a {
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.03em;
  color: #6c7680;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .reviews-block .rating a {
    font-size: 12px;
    line-height: 15px;
  }
}
.reviews-block .single {
  display: flex;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid #C2C2C2;
}
.reviews-block .single:first-child {
  border-top: 1px solid #C2C2C2;
}
@media screen and (max-width: 960px) {
  .reviews-block .single {
    gap: 16px;
    flex-direction: column;
    padding: 24px 12px;
  }
}
.reviews-block .author {
  flex: 1 0 auto;
}
@media screen and (max-width: 960px) {
  .reviews-block .author {
    display: flex;
    align-items: center;
  }
}
.reviews-block .author img {
  width: 64px;
  height: auto;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .reviews-block .author img {
    width: 50px;
    margin-right: 7px;
  }
}
.reviews-block .author .name {
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #252525;
  padding: 8px 0 4px 0;
}
@media screen and (max-width: 960px) {
  .reviews-block .author .name {
    width: auto;
    font-size: 12px;
    line-height: 15px;
    padding: 0;
  }
}
.reviews-block .author .status {
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: #6c7680;
  font-family: "Inter", sans-serif;
  padding-bottom: 4px;
}
@media screen and (max-width: 960px) {
  .reviews-block .author .status {
    font-size: 10px;
    line-height: 12px;
    padding: 4px 0;
  }
}
.reviews-block .author .date {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.02em;
  color: #211c1c;
}
@media screen and (max-width: 960px) {
  .reviews-block .author .date {
    font-size: 8px;
    line-height: 12px;
  }
}
.reviews-block .comment-rating {
  display: flex;
  align-items: center;
  padding-bottom: 23px;
}
@media screen and (max-width: 960px) {
  .reviews-block .comment-rating {
    padding-bottom: 16px;
  }
}
.reviews-block .comment-rating .num {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  color: #6c7680;
  font-family: "Inter", sans-serif;
  margin-right: 7px;
}
.reviews-block .comment-rating .stars .star {
  width: 24px;
  height: 22px;
  margin-right: 4px;
}
.reviews-block .comment-rating .stars .star:last-child {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  .reviews-block .comment-rating .stars .star {
    width: 18px;
    height: 18px;
  }
}
.reviews-block .comment {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .reviews-block .comment {
    font-size: 12px;
    line-height: 18px;
  }
}

/*---------------------------------------------------

paginator

---------------------------------------------------*/
.paginator {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 32px auto 0 auto;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .paginator {
    margin-top: 24px;
  }
}
.paginator .cell {
  color: #344054;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  width: 50px;
  height: 50px;
  position: relative;
  border-right: 1px solid #D0D5DD;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .paginator .cell {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 359px) {
  .paginator .cell {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.paginator .cell:hover {
  transition: all 0.3s ease;
  background: #f9fafb;
}
.paginator .cell img {
  width: 12px;
  height: auto;
}
.paginator .cell:first-child {
  width: 110px;
}
.paginator .cell:first-child img {
  margin-right: 12px;
}
@media screen and (max-width: 960px) {
  .paginator .cell:first-child {
    width: 96px;
  }
  .paginator .cell:first-child img {
    margin-right: 6px;
  }
}
@media screen and (max-width: 359px) {
  .paginator .cell:first-child {
    width: 75px;
  }
}
.paginator .cell:last-child {
  width: 120px;
  border: none;
}
.paginator .cell:last-child img {
  margin-left: 12px;
}
@media screen and (max-width: 960px) {
  .paginator .cell:last-child {
    width: 96px;
  }
  .paginator .cell:last-child img {
    margin-left: 6px;
  }
}
@media screen and (max-width: 359px) {
  .paginator .cell:last-child {
    width: 75px;
  }
}
.paginator .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .paginator .cell-mobile {
    display: none;
  }
}
.paginator .active {
  transition: all 0.3s ease;
  background: #f9fafb;
}

.pagination {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 32px auto 0 auto;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .pagination {
    margin-top: 24px;
  }
}
.pagination .prev-button {
  width: 110px;
  border-right: 1px solid #D0D5DD;
}
.pagination .prev-button:before {
  content: "";
  position: relative;
  display: block;
  background: url("/images/paginator-arrow-l.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
}
.pagination .next-button {
  width: 120px;
  border: none;
}
.pagination .next-button:after {
  content: "";
  position: relative;
  display: block;
  background: url("/images/paginator-arrow-r.svg") no-repeat center/contain;
  width: 12px;
  height: 12px;
}
.pagination .prev-button, .pagination .next-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #344054;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  position: relative;
  background: #ffffff;
  height: 50px;
  text-decoration: none;
}
.pagination .prev-button:hover, .pagination .next-button:hover {
  transition: all 0.3s ease;
  background: #f9fafb;
}
@media screen and (max-width: 960px) {
  .pagination .prev-button, .pagination .next-button {
    gap: 6px;
    width: 96px;
    height: 40px;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .pagination .prev-button, .pagination .next-button {
    width: 80px;
  }
}
@media screen and (max-width: 359px) {
  .pagination .prev-button, .pagination .next-button {
    width: 80px;
    height: 35px;
    font-size: 12px;
  }
}
.pagination .pagination-item, .pagination .pagination-space {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #344054;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  width: 50px;
  height: 50px;
  position: relative;
  border-right: 1px solid #D0D5DD;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .pagination .pagination-item, .pagination .pagination-space {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }
  .pagination .pagination-item:first-of-type, .pagination .pagination-item:last-of-type, .pagination .pagination-space:first-of-type, .pagination .pagination-space:last-of-type {
    display: none;
  }
}
@media screen and (max-width: 359px) {
  .pagination .pagination-item, .pagination .pagination-space {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.pagination .pagination-item:hover, .pagination .pagination-space:hover {
  transition: all 0.3s ease;
  background: #f9fafb;
}
@media screen and (max-width: 960px) {
  .pagination .pagination-space {
    display: none;
  }
}
.pagination .flex.align-row.g-20 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.pagination .selected {
  transition: all 0.3s ease;
  background: #f9fafb;
}

/*---------------------------------------------------

cart

---------------------------------------------------*/
.cart {
  padding: 168px 60px 160px 60px;
}
@media screen and (max-width: 1050px) {
  .cart {
    padding: 168px 0 80px 0;
  }
}
@media screen and (max-width: 960px) {
  .cart {
    padding-top: 130px;
  }
}
.cart .title {
  text-align: center;
  color: #020202;
  padding-bottom: 70px;
}
@media screen and (max-width: 1050px) {
  .cart .title {
    text-align: left;
    padding: 0 12px 24px 12px;
    font-size: 16px;
    line-height: 25px;
  }
}
.cart .column-1 {
  width: 44%;
}
@media screen and (max-width: 1050px) {
  .cart .column-1 {
    width: 100%;
  }
}
.cart .column-2 {
  width: 20%;
}
@media screen and (max-width: 1050px) {
  .cart .column-2 {
    width: fit-content;
  }
}
.cart .column-3 {
  width: 20%;
}
@media screen and (max-width: 1050px) {
  .cart .column-3 {
    width: fit-content;
  }
}
.cart .column-4 {
  width: 16%;
}
@media screen and (max-width: 1050px) {
  .cart .column-4 {
    width: fit-content;
  }
}
.cart .top {
  border-bottom: 1px solid #C2C2C2;
  padding-bottom: 16px;
  display: flex;
}
@media screen and (max-width: 1050px) {
  .cart .top {
    padding: 0 12px;
    border: none;
  }
}
.cart .top-title {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #646567;
}
@media screen and (max-width: 1050px) {
  .cart .top-title {
    display: none;
  }
}
.cart .top-title-4 {
  text-align: right;
}
.cart .top-title-2 {
  padding-left: 30px;
}
.cart .top-title-3 {
  padding-left: 24px;
}
@media screen and (max-width: 1050px) {
  .cart .top-title-1 {
    display: block;
    border-bottom: 1px solid #C2C2C2;
    padding-bottom: 12px;
  }
}
.cart .prod-holder {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #C2C2C2;
  padding: 24px 0;
}
@media screen and (max-width: 1050px) {
  .cart .prod-holder {
    padding: 16px 0 42px 0;
    margin: 0 12px;
    position: relative;
  }
}
.cart .prod-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cart .prod-cell .delete {
  margin-left: 15px;
  cursor: pointer;
  font-size: 14px;
  color: #646567;
}
.cart .prod-cell .delete:hover {
  color: #020202;
}
@media screen and (max-width: 1050px) {
  .cart .prod-cell-price {
    position: absolute;
    right: 0;
    bottom: 16px;
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 1050px) {
  .cart .prod-cell-quant {
    position: absolute;
    top: 90px;
    left: 195px;
  }
}
@media screen and (max-width: 600px) {
  .cart .prod-cell-quant {
    left: 112px;
    top: 70px;
  }
}
@media screen and (max-width: 1050px) {
  .cart .prod-cell-total {
    display: none;
  }
}
.cart .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  .cart .inner {
    align-items: flex-start;
  }
}
.cart .prod {
  position: relative;
  border: 1px solid #c2c2c2;
  border-radius: 16px;
  width: 179px;
  height: 142px;
  background: #ffffff;
  margin-right: 16px;
}
@media screen and (max-width: 600px) {
  .cart .prod {
    width: 96px;
    height: 96px;
  }
}
.cart .prod img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 114px;
  width: auto;
}
@media screen and (max-width: 1050px) {
  .cart .prod img {
    height: 60px;
  }
}
.cart .prod-name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 600px;
  font-size: 18px;
  line-height: 27px;
}
@media screen and (max-width: 1620px) {
  .cart .prod-name {
    width: 222px;
  }
}
@media screen and (max-width: 1050px) {
  .cart .prod-name {
    width: 65%;
  }
}
@media screen and (max-width: 600px) {
  .cart .prod-name {
    font-size: 16px;
    line-height: 25px;
    width: calc(90% - 112px);
  }
}
.cart .price {
  font-size: 10px;
  color: #211c1c;
}
@media screen and (max-width: 1050px) {
  .cart .price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
  }
}
.cart .price div span:first-child {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 1050px) {
  .cart .price div span {
    font-size: 14px;
  }
}
.cart .price s {
  text-decoration: none;
  color: #6c7680;
  font-size: 10px;
  padding-bottom: 6px;
}
@media screen and (max-width: 1050px) {
  .cart .price s {
    padding: 0 11px 0 0;
    font-size: 12px;
    line-height: 19px;
  }
}
.cart .price s span:first-child {
  text-decoration: line-through;
  font-size: 14px;
}
@media screen and (max-width: 1050px) {
  .cart .price s span {
    font-size: 12px;
  }
}
.cart .price-total {
  text-align: right;
}
@media screen and (max-width: 1050px) {
  .cart .quantity {
    align-items: center;
  }
}
.cart .quantity img {
  width: 20px;
  height: auto;
  cursor: pointer;
}
.cart .field {
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.03em;
  border-radius: 16px;
  border: 1px solid #181818;
  margin: 0 14px;
}
@media screen and (max-width: 600px) {
  .cart .field {
    margin: 0 23px;
    padding: 5px 12px;
    border-radius: 8px;
  }
}
.cart .total-holder {
  padding: 24px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1050px) {
  .cart .total-holder {
    padding: 32px 12px 16px 12px;
    border-bottom: 1px solid #C2C2C2;
    justify-content: space-between;
  }
}
.cart .total-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #646567;
  margin-right: 16px;
}
@media screen and (max-width: 1050px) {
  .cart .total-text {
    font-size: 14px;
    line-height: 22px;
    color: #020202;
  }
}
.cart .total-price {
  color: #181818;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 1050px) {
  .cart .total-price {
    font-size: 14px;
    line-height: 22px;
  }
}
.cart .btns-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1050px) {
  .cart .btns-holder {
    padding-top: 22px;
  }
}
@media screen and (max-width: 960px) {
  .cart .btns-holder {
    flex-direction: column;
    justify-content: center;
    padding: 22px 12px 0 12px;
  }
}
.cart .continue {
  width: 295px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #FCFCFC;
  border: 1px solid #181818;
  margin-right: 7px;
  padding: 15px 0;
}
.cart .continue:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .cart .continue {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.cart .continue:hover {
  box-shadow: none;
  background: #181818;
  color: #FCFCFC;
}
@media screen and (max-width: 960px) {
  .cart .continue {
    order: 2;
    margin: 8px 0 0 0;
    width: 100%;
  }
}
.cart .pay {
  width: 295px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #181818;
  color: #F0FE6D;
  padding: 15px 0;
}
.cart .pay:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .cart .pay {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.cart .pay:hover {
  color: #020202;
}
@media screen and (max-width: 960px) {
  .cart .pay {
    order: 1;
    width: 100%;
  }
}

/*---------------------------------------------------

checkout

---------------------------------------------------*/
.checkout {
  display: flex;
  padding-top: 88px;
}
@media screen and (max-width: 960px) {
  .checkout {
    flex-direction: column;
    padding-top: 0;
  }
}
.checkout .left {
  width: 54%;
}
@media screen and (max-width: 960px) {
  .checkout .left {
    width: 100%;
    order: 2;
  }
}
.checkout .right {
  width: 46%;
  background: #f4f4f4;
  padding: 60px 60px 0 48px;
}
@media screen and (max-width: 960px) {
  .checkout .right {
    width: 100%;
    order: 1;
    padding: 130px 0 32px 0;
  }
}
.checkout .top {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  padding-top: 40px;
}
.checkout .top:first-child {
  padding-top: 0;
}
@media screen and (max-width: 1150px) {
  .checkout .top {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .checkout .top {
    padding: 0 12px 32px 12px;
  }
}
.checkout .img-holder {
  width: 179px;
  height: 142px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #C2C2C2;
  position: relative;
  margin-right: 24px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1150px) {
  .checkout .img-holder {
    width: 100%;
    margin: 0;
  }
}
.checkout .img-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 114px;
  width: auto;
}
@media screen and (max-width: 1150px) {
  .checkout .item-info {
    width: 100%;
    padding-top: 20px;
  }
}
.checkout .num {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #6c7680;
  letter-spacing: 0.03em;
}
.checkout .num span:last-child {
  padding-left: 6px;
  font-weight: 700;
  color: #181818;
}
.checkout .name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  margin: 20px 0;
}
@media screen and (max-width: 960px) {
  .checkout .name {
    font-size: 16px;
    line-height: 25px;
  }
}
.checkout .price {
  font-size: 10px;
  color: #211c1c;
}
.checkout .price span:first-child {
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .checkout .price span {
    font-size: 16px;
  }
}
.checkout .bottom {
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .checkout .bottom {
    padding: 32px 12px 0 12px;
  }
}
@media screen and (max-width: 1150px) {
  .checkout .text-r {
    width: 185px;
    text-align: right;
  }
}
.checkout .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 25px;
  color: #646567;
  padding-bottom: 24px;
}
.checkout .text:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 1150px) {
  .checkout .text {
    align-items: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .checkout .text {
    font-size: 14px;
    line-height: 22px;
  }
}
.checkout .text-price {
  color: #181818;
}
.checkout .text-middle .text-r {
  color: #6c7680;
}
.checkout .text-bottom {
  font-weight: 600;
  color: #020202;
}
.checkout .text-bottom .text-r {
  color: #181818;
}
.checkout .left {
  padding: 81px 50px 160px 60px;
}
@media screen and (max-width: 960px) {
  .checkout .left {
    padding: 48px 12px 80px 12px;
  }
}
.checkout .left .title {
  color: #020202;
  font-size: 24px;
  letter-spacing: 0.03em;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .checkout .left .title {
    font-size: 20px;
    line-height: 31px;
  }
}
.checkout .left .title-1 {
  padding-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .checkout .left .title-1 {
    padding-bottom: 16px;
  }
}
.checkout .left .title-2 {
  padding: 56px 0 16px 0;
}
.checkout .left .subtitle {
  font-family: "Inter", sans-serif;
}
.checkout .left .subtitle-1 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #344054;
  padding-bottom: 6px;
}
.checkout .left .subtitle-2 {
  font-size: 14px;
  line-height: 20px;
  color: #6c7680;
  letter-spacing: 0.02em;
  padding-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .checkout .left .subtitle-2 {
    padding-bottom: 16px;
  }
}
.checkout .left .input {
  display: block;
  width: 100%;
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  background: #fff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.5;
  color: #6c7680;
  font-family: "Inter", sans-serif;
}
.checkout .left .input::placeholder {
  color: #6c7680;
}
.checkout .left .input-email {
  margin: 8px 0;
}
.checkout .left .subscribe label {
  display: flex;
  align-items: center;
}
.checkout .left .pseudo-holder {
  cursor: pointer;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  background: #ffffff;
  position: relative;
}
.checkout .left .pseudo-holder label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.checkout .left .pseudo-holder--mar {
  margin: 8px 0;
}
.checkout .left .delivery-icon {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
.checkout .left .delivery-img-holder {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.checkout .left .delivery-img-holder img {
  height: 19px;
  width: auto;
  margin-right: 2px;
}
.checkout .left .delivery-img-holder img:last-child {
  margin-right: 0;
}
.checkout .left .subscribe-text {
  flex: 0 0 auto;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.66667;
  color: #475467;
}
.checkout .left .pseudo {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #181818;
  cursor: pointer;
  background-size: cover;
  margin-right: 8px;
  flex: 0 0 auto;
}
.checkout .left .hidden-checkbox {
  display: none;
}
.checkout .left .hidden-checkbox:checked ~ .pseudo {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiByeD0iOCIgZmlsbD0iIzE4MTgxOCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTExLjM5NzcgNC45MjY2MUw2LjYyNDM0IDkuNTMzMjhMNS4zNTc2NyA4LjE3OTk0QzUuMTI0MzQgNy45NTk5NCA0Ljc1NzY3IDcuOTQ2NjEgNC40OTEgOC4xMzMyOEM0LjIzMSA4LjMyNjYxIDQuMTU3NjcgOC42NjY2MSA0LjMxNzY3IDguOTM5OTRMNS44MTc2NyAxMS4zNzk5QzUuOTY0MzQgMTEuNjA2NiA2LjIxNzY3IDExLjc0NjYgNi41MDQzNCAxMS43NDY2QzYuNzc3NjcgMTEuNzQ2NiA3LjAzNzY3IDExLjYwNjYgNy4xODQzNCAxMS4zNzk5QzcuNDI0MzQgMTEuMDY2NiAxMi4wMDQzIDUuNjA2NjEgMTIuMDA0MyA1LjYwNjYxQzEyLjYwNDMgNC45OTMyOCAxMS44Nzc3IDQuNDUzMjggMTEuMzk3NyA0LjkxOTk0VjQuOTI2NjFaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
  border: none;
}
.checkout .left .delivery-text {
  font-size: 16px;
  line-height: 24px;
  color: #101828;
  font-family: "Inter", sans-serif;
}
.checkout .left .active {
  background: #F0FE6D;
}
.checkout .left .active .pseudo {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2IiByeD0iOCIgZmlsbD0iIzE4MTgxOCIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTExLjM5NzcgNC45MjY2MUw2LjYyNDM0IDkuNTMzMjhMNS4zNTc2NyA4LjE3OTk0QzUuMTI0MzQgNy45NTk5NCA0Ljc1NzY3IDcuOTQ2NjEgNC40OTEgOC4xMzMyOEM0LjIzMSA4LjMyNjYxIDQuMTU3NjcgOC42NjY2MSA0LjMxNzY3IDguOTM5OTRMNS44MTc2NyAxMS4zNzk5QzUuOTY0MzQgMTEuNjA2NiA2LjIxNzY3IDExLjc0NjYgNi41MDQzNCAxMS43NDY2QzYuNzc3NjcgMTEuNzQ2NiA3LjAzNzY3IDExLjYwNjYgNy4xODQzNCAxMS4zNzk5QzcuNDI0MzQgMTEuMDY2NiAxMi4wMDQzIDUuNjA2NjEgMTIuMDA0MyA1LjYwNjYxQzEyLjYwNDMgNC45OTMyOCAxMS44Nzc3IDQuNDUzMjggMTEuMzk3NyA0LjkxOTk0VjQuOTI2NjFaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
  border: none;
}
.checkout .left .pseudo-holder2x {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
@media screen and (max-width: 1150px) {
  .checkout .left .pseudo-holder2x {
    flex-direction: column;
  }
}
.checkout .left .pseudo-holder2x .pseudo-holder {
  width: 50%;
}
@media screen and (max-width: 1150px) {
  .checkout .left .pseudo-holder2x .pseudo-holder {
    width: 100%;
  }
}
.checkout .left .pseudo-holder2x .input {
  width: 50%;
}
@media screen and (max-width: 1150px) {
  .checkout .left .pseudo-holder2x .input {
    width: 100%;
  }
}
.checkout .left .address-fields {
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.checkout .left .address-fields .pseudo-holder2x {
  padding: 0;
}
.checkout .left .address-fields .pseudo-holder3x {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .checkout .left .address-fields .pseudo-holder3x {
    flex-direction: column;
  }
}
.checkout .left .address-fields .pseudo-holder3x .dropdown-holder {
  width: 33.333%;
}
@media screen and (max-width: 1150px) {
  .checkout .left .address-fields .pseudo-holder3x .dropdown-holder {
    width: 100%;
  }
}
.checkout .left .address-fields .pseudo-holder3x .dropdown-holder .input {
  width: 100%;
  position: relative;
  z-index: 0;
}
.checkout .left .address-fields .pseudo-holder3x .input {
  width: 33.333%;
}
@media screen and (max-width: 1150px) {
  .checkout .left .address-fields .pseudo-holder3x .input {
    width: 100%;
  }
}
.checkout .left .np-fields .pseudo-holder2x {
  margin-bottom: 8px;
}
.checkout .left .np-fields .pseudo-holder2x:last-child {
  margin-bottom: 0;
}
.checkout .left .np-fields .pseudo-holder2x .dropdown-holder {
  width: 50%;
}
@media screen and (max-width: 1150px) {
  .checkout .left .np-fields .pseudo-holder2x .dropdown-holder {
    width: 100%;
  }
}
.checkout .left .np-fields .pseudo-holder2x .dropdown-holder .input {
  width: 100%;
  position: relative;
  z-index: 0;
}
.checkout .left .input-address {
  margin: 8px 0;
}
.checkout .left .self-fields .input-address {
  margin: 0;
}
.checkout .left .self-fields .dropdown-holder:first-child {
  z-index: 1;
}
.checkout .left .self-fields .dropdown-holder:last-child {
  z-index: 0;
}
.checkout .left .dropdown-holder {
  position: relative;
}
.checkout .left .dropdown-holder img {
  position: absolute;
  width: 10px;
  height: auto;
  right: 19px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  z-index: 1;
  transition: all 0.3s ease;
}
.checkout .left .dropdown-holder .dropdown {
  background: #ffffff;
  border-color: #d0d5dd;
  font-family: "Inter", sans-serif;
}
.checkout .left .open img {
  transform: translateY(-50%) rotate(180deg);
}
.checkout .left .btn {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  background: #181818;
  color: #F0FE6D;
  margin-top: 16px;
}
.checkout .left .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .checkout .left .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.checkout .left .btn:hover {
  color: #020202;
}
@media screen and (max-width: 960px) {
  .checkout .left .btn {
    width: 100%;
  }
}
.checkout .left .btn.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  box-shadow: none;
  background: #020202;
  color: #F0FE6D;
  opacity: 0.6;
  cursor: default;
}
@media screen and (max-width: 960px) {
  .checkout .left .btn.preloader {
    padding: 6px 0;
  }
}
.checkout .left .btn.preloader .custom-loader {
  width: 25px;
  height: 25px;
  display: grid;
  color: #F0FE6D;
  background: radial-gradient(farthest-side, currentColor calc(100% - 3px), rgba(0, 0, 0, 0) calc(100% - 2.5px) 0);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 6.5px), #000 calc(100% - 6px));
  border-radius: 50%;
  animation: s9 4s infinite linear;
}
.checkout .left .btn.preloader .custom-loader::before,
.checkout .left .btn.preloader .custom-loader::after {
  content: "";
  grid-area: 1/1;
  background: linear-gradient(currentColor 0 0) center, linear-gradient(currentColor 0 0) center;
  background-size: 100% 5px, 5px 100%;
  background-repeat: no-repeat;
}
.checkout .left .btn.preloader .custom-loader::after {
  transform: rotate(45deg);
}
@keyframes s9 {
  100% {
    transform: rotate(1turn);
  }
}

/*---------------------------------------------------

dropdown

---------------------------------------------------*/
.dropdown {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(96%);
  border: 1px solid #6c7680;
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: #FCFCFC;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  width: 100%;
  padding: 10px 14px;
  height: 300px;
  overflow: auto;
  z-index: 999;
}
.dropdown::-webkit-scrollbar {
  width: 3px;
}
.dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.dropdown::-webkit-scrollbar-thumb {
  background: #6c7680;
}
.dropdown .option {
  border-bottom: 1px solid #DEDEDE;
  font-size: 14px;
  line-height: 24px;
  color: #6c7680;
  cursor: pointer;
  padding: 3px 0;
  transition: all 0.3s ease;
}
.dropdown .option:hover {
  color: #020202;
}

/*---------------------------------------------------

materials

---------------------------------------------------*/
.materials {
  padding: 40px 60px 180px 60px;
}
@media screen and (max-width: 960px) {
  .materials {
    padding: 16px 12px 120px 12px;
  }
}
.materials .title {
  color: #020202;
  padding-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .materials .title {
    padding-bottom: 16px;
  }
}
.materials .item {
  border-top: 1px solid #C2C2C2;
  text-decoration: none;
  color: #020202;
  padding: 24px 0;
  display: flex;
  align-items: center;
  position: relative;
}
.materials .item:last-of-type {
  border-bottom: 1px solid #C2C2C2;
}
.materials .item:hover .decor {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIHRyYW5zZm9ybT0icm90YXRlKDkwIDM2IDM2KSIgZmlsbD0iI0YwRkU2RCIvPgo8cGF0aCBkPSJNNDMuNjgzNyA0Ni4zOTg1QzQ0LjIzNiA0Ni4zOTg1IDQ0LjY4MzcgNDUuOTUwOCA0NC42ODM3IDQ1LjM5ODVMNDQuNjgzNyAzNi4zOTg1QzQ0LjY4MzcgMzUuODQ2MiA0NC4yMzYgMzUuMzk4NSA0My42ODM3IDM1LjM5ODVDNDMuMTMxNCAzNS4zOTg1IDQyLjY4MzcgMzUuODQ2MiA0Mi42ODM3IDM2LjM5ODVMNDIuNjgzNyA0NC4zOTg1TDM0LjY4MzcgNDQuMzk4NUMzNC4xMzE0IDQ0LjM5ODUgMzMuNjgzNyA0NC44NDYyIDMzLjY4MzcgNDUuMzk4NUMzMy42ODM3IDQ1Ljk1MDggMzQuMTMxNCA0Ni4zOTg1IDM0LjY4MzcgNDYuMzk4NUw0My42ODM3IDQ2LjM5ODVaTTI1LjAwNzcgMjguMTM2OEw0Mi45NzY2IDQ2LjEwNTZMNDQuMzkwOCA0NC42OTE0TDI2LjQyMiAyNi43MjI2TDI1LjAwNzcgMjguMTM2OFoiIGZpbGw9IiMyMTFDMUMiLz4KPC9zdmc+Cg==");
}
@media screen and (max-width: 960px) {
  .materials .item {
    align-items: flex-start;
  }
}
.materials .item--top {
  align-items: flex-start;
}
.materials .img {
  height: 104px;
  border-radius: 16px;
  background: #FCFCFC;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .materials .img {
    height: 76px;
  }
}
.materials .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px 0 24px;
  width: calc(100% - 201px);
}
@media screen and (max-width: 960px) {
  .materials .text {
    padding: 0 0 0 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;
  }
}
.materials .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .materials .name {
    font-size: 16px;
    line-height: 23px;
    padding-bottom: 16px;
  }
}
.materials .date {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.03em;
  color: #6c7680;
}
@media screen and (max-width: 960px) {
  .materials .date {
    font-size: 12px;
    line-height: 18px;
  }
}
.materials .decor {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNzIiIGhlaWdodD0iNzIiIHZpZXdCb3g9IjAgMCA3MiA3MiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzYiIGN5PSIzNiIgcj0iMzYiIGZpbGw9IiMxODE4MTgiLz4KPHBhdGggZD0iTTQ2LjM5ODUgMjguMzE2M0M0Ni4zOTg1IDI3Ljc2NCA0NS45NTA4IDI3LjMxNjMgNDUuMzk4NSAyNy4zMTYzTDM2LjM5ODUgMjcuMzE2M0MzNS44NDYyIDI3LjMxNjMgMzUuMzk4NSAyNy43NjQgMzUuMzk4NSAyOC4zMTYzQzM1LjM5ODUgMjguODY4NiAzNS44NDYyIDI5LjMxNjMgMzYuMzk4NSAyOS4zMTYzTDQ0LjM5ODUgMjkuMzE2M0w0NC4zOTg1IDM3LjMxNjNDNDQuMzk4NSAzNy44Njg2IDQ0Ljg0NjIgMzguMzE2MyA0NS4zOTg1IDM4LjMxNjNDNDUuOTUwOCAzOC4zMTYzIDQ2LjM5ODUgMzcuODY4NiA0Ni4zOTg1IDM3LjMxNjNMNDYuMzk4NSAyOC4zMTYzWk0yOC4xMzY4IDQ2Ljk5MjNMNDYuMTA1NiAyOS4wMjM0TDQ0LjY5MTQgMjcuNjA5MkwyNi43MjI2IDQ1LjU3OEwyOC4xMzY4IDQ2Ljk5MjNaIiBmaWxsPSIjRjBGRTZEIi8+Cjwvc3ZnPgo=");
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .materials .decor {
    width: 40px;
    height: 40px;
  }
}

/*---------------------------------------------------

single-material

---------------------------------------------------*/
.single-material {
  padding: 40px 60px 160px 60px;
}
@media screen and (max-width: 1050px) {
  .single-material br {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .single-material {
    padding: 5px 12px 80px 12px;
  }
}
.single-material section {
  padding: 30px 0;
}
.single-material section a {
  display: inline;
}
.single-material section img {
  max-width: 100%;
}
.single-material .title {
  color: #020202;
  padding-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .single-material .title {
    padding-bottom: 16px;
  }
}
.single-material .img100 {
  width: 100%;
}
.single-material h3 {
  margin: 0;
  padding: 48px 0 24px 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 960px) {
  .single-material h3 {
    padding: 24px 0 20px 0;
    font-size: 16px;
    line-height: 20px;
  }
}
.single-material p {
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .single-material p {
    font-size: 14px;
    line-height: 21px;
  }
}
.single-material p b {
  font-weight: 700;
}
.single-material ul, .single-material ol {
  padding-inline-start: 40px;
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.single-material ul li, .single-material ol li {
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 960px) {
  .single-material ul li, .single-material ol li {
    font-size: 14px;
    line-height: 21px;
  }
}
.single-material .column {
  display: flex;
  gap: 96px;
}
@media screen and (max-width: 1050px) {
  .single-material .column {
    flex-direction: column;
    gap: 24px;
  }
}
.single-material .btn {
  position: relative;
  margin: 25px auto;
  width: 201px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
}
.single-material .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .single-material .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.single-material .video-iframe-holder {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  margin: auto;
  max-width: 1280px;
}
.single-material .video-iframe-holder iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------------------

menu-mobile

---------------------------------------------------*/
.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 101;
  background: #020202;
}
.menu-mobile .top {
  background: #020202;
  padding: 16px 26px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.menu-mobile .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 36px;
  bottom: 20px;
}
.menu-mobile .bottom .lang-list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border-radius: 8px;
  border: 1px solid #211C1C;
  overflow: hidden;
}
.menu-mobile .bottom .lang-list .lang-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 12px;
  background: #000000;
  border-left: 1px solid #211C1C;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.menu-mobile .bottom .lang-list .lang-list-item a {
  color: #fff;
  text-decoration: none;
}
.menu-mobile .bottom .lang-list .lang-list-item:first-child {
  border: none;
}
.menu-mobile .bottom .lang-list .lang-list-item.selected {
  background: #F0FE6D;
  color: #000;
}
.menu-mobile .bottom .lang-list .lang-list-item.selected a {
  color: #000;
  text-decoration: none;
}
.menu-mobile .logo img {
  width: 147px;
  height: auto;
}
.menu-mobile .close {
  cursor: pointer;
}
.menu-mobile .close img {
  width: 20px;
  height: auto;
}
.menu-mobile .list {
  padding: 160px 0;
  height: 100%;
  overflow-y: auto;
}
.menu-mobile .list::-webkit-scrollbar {
  display: none;
}
.menu-mobile .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  border-bottom: 1px solid #211C1C;
  color: #FCFCFC;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}
.menu-mobile .item.item-small {
  font-size: 8px;
  font-weight: 300;
}
.menu-mobile .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.menu-mobile .submenu {
  background: #181818;
  display: none;
  width: 100%;
}
.menu-mobile .submenu .item {
  font-size: 12px;
}
.menu-mobile .submenu .cities-title {
  margin-top: 10px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
}
.menu-mobile .submenu .cities-inner {
  margin: 10px auto;
  width: 224px;
  column-count: 2;
}
.menu-mobile .submenu .cities-inner a {
  color: #fff;
  font-size: 8px;
  font-weight: 300px;
  text-decoration: none;
}
.menu-mobile .arrow {
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMSAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUuNSAxVjExTTUuNSAxMUwxMC41IDZNNS41IDExTDAuNSA2IiBzdHJva2U9IiNGQ0ZDRkMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
  background-size: cover;
  margin-left: 4px;
}
.menu-mobile .open {
  padding-bottom: 0;
  border: none;
  background: #181818;
  color: #F0FE6D;
}
.menu-mobile .open .submenu {
  display: block;
}
.menu-mobile .open .arrow {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMTFMNiAxTTYgMUwwLjk5OTk5OSA2TTYgMUwxMSA2IiBzdHJva2U9IiNGMEZFNkQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}

/*---------------------------------------------------

catalog-search

---------------------------------------------------*/
.catalog-search {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #181818;
  z-index: 102;
  overflow-y: auto;
}
.catalog-search::-webkit-scrollbar {
  display: none;
}
.catalog-search .close {
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 26px;
}
.catalog-search .close img {
  width: 20px;
  height: auto;
}
.catalog-search .inner {
  padding: 60px;
}
@media screen and (max-width: 1179px) {
  .catalog-search .inner {
    padding: 80px 24px;
  }
}
.catalog-search .title {
  padding-bottom: 24px;
}
@media screen and (max-width: 1179px) {
  .catalog-search .title {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 24px;
  }
}
.catalog-search .search-holder {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1179px) {
  .catalog-search .search-holder {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 48px;
  }
}
.catalog-search .search-item {
  width: 25%;
}
@media screen and (max-width: 1179px) {
  .catalog-search .search-item {
    width: 100%;
  }
  .catalog-search .search-item:nth-child(2) {
    z-index: 1;
  }
  .catalog-search .search-item:nth-child(3) {
    z-index: 0;
  }
}
.catalog-search .search-title {
  padding-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #F0FE6D;
}
.catalog-search .input-holder {
  border: 1px solid #6c7680;
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  background: #FCFCFC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.catalog-search .input-holder img {
  width: 8px;
  height: auto;
  transition: all 0.3s ease;
}
.catalog-search .input-holder .dropdown {
  border: 1px solid #6c7680;
  border-top: none;
  width: calc(100% + 2px);
  left: -1px;
  transform: translateY(96%);
}
.catalog-search .open img {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.catalog-search .input-holder > div {
  flex-grow: 1;
}
.catalog-search .input {
  outline: none;
  background: #FCFCFC;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #020202;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.catalog-search .input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #6c7680;
}
.catalog-search .btn {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
}
.catalog-search .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .catalog-search .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 960px) {
  .catalog-search .btn {
    width: 100%;
    font-size: 12px;
    line-height: 15px;
    padding: 13px 0;
  }
}
.catalog-search .result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #FCFCFC;
  gap: 12px;
}
.catalog-search .result-top.left {
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 1179px) {
  .catalog-search .result-top {
    padding-bottom: 20px;
  }
}
.catalog-search .result-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.03em;
  color: #FCFCFC;
}
@media screen and (max-width: 1179px) {
  .catalog-search .result-title {
    font-size: 20px;
    line-height: 25px;
  }
}
.catalog-search .result-more {
  width: 218px;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
  background: #6c7680;
  color: #F0FE6D;
}
.catalog-search .result-more:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .catalog-search .result-more {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
.catalog-search .result-more:hover {
  color: #020202;
}
@media screen and (max-width: 1179px) {
  .catalog-search .result-more {
    font-size: 12px;
    line-height: 15px;
    padding: 13px 0;
    width: 141px;
  }
}
.catalog-search .result-list {
  padding-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-decoration: none;
}
@media screen and (max-width: 1179px) {
  .catalog-search .result-list {
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .catalog-search .result-list {
    flex-direction: column;
    justify-content: center;
  }
}
.catalog-search .result-item {
  width: calc(25% - 24px);
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-decoration: none;
}
@media screen and (max-width: 1179px) {
  .catalog-search .result-item {
    margin-bottom: 0;
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 600px) {
  .catalog-search .result-item {
    width: 100%;
  }
}
.catalog-search .result-item img {
  border-radius: 16px;
  background: #ffffff;
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  margin-right: 10px;
  position: relative;
}
.catalog-search .result-item img:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
  background: #fff url("/images/noimage.png") no-repeat center/contain;
}
.catalog-search .name {
  font-weight: 700;
  font-size: 14px;
  padding-bottom: 8px;
  color: #F0FE6D;
}
.catalog-search .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: 0.03em;
  color: #FCFCFC;
}

/*---------------------------------------------------

popup

---------------------------------------------------*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.popup .inner {
  border: 2px solid #F0FE6D;
  border-radius: 16px;
  background: #eee;
  padding: 40px 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .popup .inner {
    width: calc(100% - 24px);
    padding: 48px 24px;
  }
}
.popup .send-complete {
  color: #020202;
}
.popup .close {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  background: #181818;
  top: 16px;
  right: 16px;
}
@media screen and (max-width: 600px) {
  .popup .close {
    width: 32px;
    height: 32px;
  }
}
.popup .close img {
  width: 20px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .popup .close img {
    width: 12px;
  }
}
.popup .title {
  text-align: center;
  padding-bottom: 32px;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 600px) {
  .popup .title {
    font-size: 20px;
    line-height: 29px;
    padding-bottom: 30px;
  }
}
.popup .input {
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  background: #fff;
  outline: none;
  width: 416px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6c7680;
}
.popup .input::placeholder {
  font-size: 16px;
  line-height: 24px;
  color: #6c7680;
}
@media screen and (max-width: 600px) {
  .popup .input {
    width: 100%;
    font-size: 14px;
  }
  .popup .input::placeholder {
    font-size: 14px;
  }
}
.popup .subtitle {
  padding: 20px 0 6px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 600px) {
  .popup .subtitle {
    font-size: 14px;
  }
}
.popup .input-comment {
  display: block;
  margin: 20px 0;
  height: 130px;
  resize: none;
}
@media screen and (max-width: 600px) {
  .popup .input-comment {
    margin: 12px 0;
  }
}
.popup .input-comment.no-top-margin {
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .popup .input-comment.no-top-margin {
    margin-top: 0;
  }
}
.popup .btn {
  width: 100%;
  cursor: pointer;
  padding: 18px 0;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
  padding: 14px 0;
  margin-top: 20px;
}
.popup .btn:hover {
  box-shadow: 0 6px 20px 0 rgba(240, 254, 109, 0.16);
  background: #f4ff8c;
}
@media screen and (max-width: 960px) {
  .popup .btn {
    width: 171px;
    padding: 11px 0;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (max-width: 960px) {
  .popup .btn {
    width: 100%;
    font-size: 14px;
    line-height: 17px;
    padding: 13px 0;
  }
}
.popup.contacts-form {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  z-index: auto;
}
@media screen and (max-width: 960px) {
  .popup.contacts-form {
    justify-content: center;
  }
}
.popup.contacts-form .inner {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}
@media screen and (max-width: 1280px) {
  .popup.contacts-form .inner {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  .popup.contacts-form .inner {
    width: 100%;
    padding: 48px 24px;
  }
}
@media screen and (max-width: 1280px) {
  .popup.contacts-form .inner .input {
    width: 300px;
  }
}
@media screen and (max-width: 960px) {
  .popup.contacts-form .inner .input {
    width: 450px;
  }
}
@media screen and (max-width: 600px) {
  .popup.contacts-form .inner .input {
    width: 100%;
  }
}

/*---------------------------------------------------

search-results

---------------------------------------------------*/
.search-results {
  padding: 20px 60px 180px 60px;
}
@media screen and (max-width: 960px) {
  .search-results {
    padding: 0 12px 80px 12px;
  }
}
@media screen and (max-width: 600px) {
  .search-results {
    padding: 0 0 80px 0;
  }
}
.search-results .title {
  padding-bottom: 32px;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .search-results .title {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 960px) {
  .search-results .title {
    padding: 0 12px 24px 12px;
  }
}
.search-results .table-holder {
  overflow-x: auto;
}
.search-results .table-holder::-webkit-scrollbar {
  display: none;
}
.search-results .table-holder .head-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-results .table-holder .head-1 img {
  width: 10px;
  height: auto;
  margin-left: 4px;
}
.search-results .table-holder table {
  width: 100%;
  text-align: center;
  border: 2px solid #211c1c;
  border-radius: 16px;
  background: #eee;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .search-results .table-holder table {
    width: 660px;
    margin: 0 12px;
  }
}
.search-results .table-holder table th {
  border: none;
  padding: 17px 0;
  font-weight: 500;
  font-size: 14px;
  background: #6c7680;
}
@media screen and (max-width: 1100px) {
  .search-results .table-holder table th {
    font-size: 12px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 600px) {
  .search-results .table-holder table th {
    padding: 8px 4px;
  }
  .search-results .table-holder table th:first-child {
    width: 156px;
  }
  .search-results .table-holder table th:last-child {
    width: 156px;
  }
}
.search-results .table-holder table tr td {
  border-bottom: 1px solid #ababab;
  padding: 27px 0;
  font-weight: 600;
  font-size: 14px;
}
.search-results .table-holder table tr td h3 {
  font-weight: 600;
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  .search-results .table-holder table tr td h3 {
    font-size: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .search-results .table-holder table tr td {
    font-size: 12px;
  }
}
.search-results .table-holder table tr a {
  color: #020202;
}
.search-results .table-holder table tr:last-child td {
  border: none;
}

/*---------------------------------------------------

types

---------------------------------------------------*/
.video-holder {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
}
.video-holder .close {
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
}
@media screen and (max-width: 960px) {
  .video-holder .close {
    top: 25px;
    right: 25px;
  }
}
.video-holder .close img {
  width: 20px;
  height: auto;
}
.video-holder .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .video-holder .inner {
    width: 100%;
  }
}
.video-holder .inner iframe {
  width: 900px;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 960px) {
  .video-holder .inner iframe {
    width: 100%;
  }
}

/*---------------------------------------------------

thank

---------------------------------------------------*/
.thank {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
  padding: 170px 44px 100px 60px;
}
@media screen and (max-width: 960px) {
  .thank {
    gap: 24px;
    padding: 60px 8px 60px 4px;
  }
}
.thank .thank-key-image img {
  height: 249px;
}
@media screen and (max-width: 960px) {
  .thank .thank-key-image img {
    height: 175px;
  }
}
.thank .title {
  padding: 0 0 32px 0;
}
@media screen and (max-width: 960px) {
  .thank .title {
    padding-bottom: 8px;
  }
}
.thank .go-main-btn {
  cursor: pointer;
  padding: 18px 24px;
  border-radius: 16px;
  background: #F0FE6D;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #020202;
  text-align: center;
  text-decoration: none;
}

/*---------------------------------------------------

contacts-info

---------------------------------------------------*/
.contacts-info {
  position: relative;
  padding: 170px 60px 80px 60px;
}
@media screen and (max-width: 960px) {
  .contacts-info {
    padding: 92px 12px 60px 12px;
  }
}
.contacts-info .title {
  padding-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .contacts-info .title {
    padding-bottom: 13px;
  }
}
.contacts-info .contacts-info-tabs-holder {
  position: relative;
  width: 100%;
  overflow: auto;
}
@-moz-document url-prefix() {
  .contacts-info .contacts-info-tabs-holder {
    scrollbar-width: none;
  }
}
.contacts-info .contacts-info-tabs-holder::-webkit-scrollbar {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0);
}
.contacts-info .contacts-info-tabs-holder::-webkit-scrollbar-thumb {
  width: 4px;
  height: 4px;
  border-radius: 3px;
  background-color: #181818;
}
.contacts-info .contacts-info-tabs-holder .contacts-info-tabs {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  height: 48px;
}
.contacts-info .contacts-info-tabs-holder .contacts-info-tabs .contacts-info-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 0 12px;
  border: rgba(240, 255, 120, 0.2) 1px solid;
  font-size: 18px;
  color: #FCFCFC;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.contacts-info .contacts-info-tabs-holder .contacts-info-tabs .contacts-info-tab:hover {
  color: #020202;
  background: #F0FE6D;
}
.contacts-info .contacts-info-tabs-holder .contacts-info-tabs .contacts-info-tab.selected {
  color: #020202;
  background: #F0FE6D;
  cursor: default;
}
@media screen and (max-width: 600px) {
  .contacts-info .contacts-info-tabs-holder .contacts-info-tabs .contacts-info-tab {
    font-size: 14px;
  }
}
.contacts-info .contacts-info-split {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  width: 100%;
  margin-top: 68px;
}
@media screen and (max-width: 960px) {
  .contacts-info .contacts-info-split {
    flex-flow: row wrap;
    margin-top: 32px;
  }
}
.contacts-info .contacts-info-split .contacts-info-left, .contacts-info .contacts-info-split .contacts-info-right {
  flex: 1 1 50%;
  align-self: stretch;
}
@media screen and (max-width: 960px) {
  .contacts-info .contacts-info-split .contacts-info-left, .contacts-info .contacts-info-split .contacts-info-right {
    flex: 1 0 100%;
  }
}
.contacts-info .contacts-info-line {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  border-top: rgba(240, 255, 120, 0.2) 1px solid;
}
.contacts-info .contacts-info-line:last-child {
  border-bottom: rgba(240, 255, 120, 0.2) 1px solid;
}
@media screen and (max-width: 960px) {
  .contacts-info .contacts-info-line {
    max-width: 450px;
    margin: auto;
  }
}
.contacts-info .contacts-info-line .contacts-info-line-cell {
  flex: 1 1 50%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  padding: 32px 0;
  white-space: nowrap;
  color: #FCFCFC;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1380px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell {
    font-size: 12px;
  }
}
.contacts-info .contacts-info-line .contacts-info-line-cell.title-cell {
  align-items: flex-start;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1380px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell.title-cell {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell.title-cell {
    font-size: 16px;
  }
}
.contacts-info .contacts-info-line .contacts-info-line-cell .contacts-info-line-cell-inner {
  white-space: nowrap;
  color: #FCFCFC;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
@media screen and (max-width: 1380px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell .contacts-info-line-cell-inner {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .contacts-info .contacts-info-line .contacts-info-line-cell .contacts-info-line-cell-inner {
    font-size: 12px;
  }
}

.send-complete {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #FCFCFC;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .send-complete {
    padding: 60px 15px;
    font-size: 24px;
  }
}

.sitemap .title {
  width: 710px;
  padding-bottom: 32px;
  color: #020202;
}
@media screen and (max-width: 960px) {
  .sitemap .title {
    width: 100%;
    padding-bottom: 24px;
  }
}
.sitemap .sitemap-root {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 60px;
  flex-flow: wrap;
  padding-left: 22px;
  padding-bottom: 80px;
}
.sitemap .sitemap-root > li > ul > li > a {
  font-size: 20px;
}
.sitemap b > a {
  font-size: 24px;
}
.sitemap a {
  color: #020202;
  font-size: 18px;
  text-decoration: none;
}
.sitemap li {
  padding: 12px;
}

/*---------------------------------------------------

brands

---------------------------------------------------*/
.brands {
  padding: 60px 52px 80px 0;
}
@media screen and (max-width: 1300px) {
  .brands {
    padding: 60px 0 80px 0;
  }
}
@media screen and (max-width: 960px) {
  .brands {
    padding: 60px 0 60px 0;
  }
}
.brands .brands-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 58px;
  row-gap: 40px;
}
.brands a {
  text-decoration: none;
}
.brands .brand {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.brands img {
  display: block;
  width: 138px;
  height: 89px;
  object-fit: contain;
}
.brands .brand-name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #181818;
  width: 138px;
  height: 31px;
  border-radius: 99px;
  color: #F0FE6D;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/*
 * Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
:root {
  --ck-content-image-style-spacing: 1.5em;
  --ck-content-inline-image-style-spacing: calc(var(--ck-content-image-style-spacing) / 2);
}

.ck-content {
  /* See: https://github.com/ckeditor/ckeditor5/issues/16317 */
  /* Simulates margin collapsing with the preceding paragraph, which does not work for the floating elements. */
}
.ck-content a {
  display: inline;
  color: #F0FE6D;
  background: #000;
  padding: 0 10px;
  border-radius: 10px;
  text-decoration: none;
}
.ck-content figure.image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: column;
  gap: 8px;
}
.ck-content figure.image.image-style-block-align-right {
  align-items: flex-end;
}
.ck-content figure.image.image-style-block-align-left {
  align-items: flex-start;
}
.ck-content figure.image figcaption {
  font-style: italic;
  margin: 0 8px;
}
.ck-content .image {
  /* Provides a minimal side margin for the left and right aligned images, so that the user has a visual feedback
  confirming successful application of the style if image width exceeds the editor's size.
  See https://github.com/ckeditor/ckeditor5/issues/9342 */
  /* Allows displaying multiple floating images in the same line.
  See https://github.com/ckeditor/ckeditor5/issues/9183#issuecomment-804988132 */
}
.ck-content .image.image-style-block-align-left, .ck-content .image.image-style-block-align-right {
  max-width: calc(100% - var(--ck-content-image-style-spacing));
}
.ck-content .image.image-style-align-left, .ck-content .image.image-style-align-right {
  clear: none;
}
.ck-content .image.image-style-side {
  float: right;
  margin-left: var(--ck-content-image-style-spacing);
  max-width: 50%;
}
.ck-content .image.image-style-align-left {
  float: left;
  margin-right: var(--ck-content-image-style-spacing);
}
.ck-content .image.image-style-align-right {
  float: right;
  margin-left: var(--ck-content-image-style-spacing);
}
.ck-content .image.image-style-block-align-right {
  justify-content: flex-end;
  margin-right: 0;
  margin-left: auto;
}
.ck-content .image.image-style-block-align-left {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}
.ck-content .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}
.ck-content .image-style-align-left {
  float: left;
  margin-right: var(--ck-content-image-style-spacing);
}
.ck-content .image-style-align-right {
  float: right;
  margin-left: var(--ck-content-image-style-spacing);
}
.ck-content p + .image.image-style-align-left, .ck-content p + .image.image-style-align-right, .ck-content p + .image.image-style-side {
  margin-top: 0;
}
.ck-content .image-inline.image-style-align-left, .ck-content .image-inline.image-style-align-right {
  margin-top: var(--ck-content-inline-image-style-spacing);
  margin-bottom: var(--ck-content-inline-image-style-spacing);
}
.ck-content .image-inline.image-style-align-left {
  margin-right: var(--ck-content-inline-image-style-spacing);
}
.ck-content .image-inline.image-style-align-right {
  margin-left: var(--ck-content-inline-image-style-spacing);
}

.ck.ck-splitbutton {
  /* The button should display as a regular drop-down if the action button
  is forced to fire the same action as the arrow button. */
}
.ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__action:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__arrow:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__arrow:not(.ck-disabled):not(:hover), .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__action:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
  background-color: var(--ck-color-button-on-background);
}
.ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__action:not(.ck-disabled)::after, .ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__arrow:not(.ck-disabled)::after, .ck.ck-splitbutton.ck-splitbutton_flatten:hover > .ck-splitbutton__arrow:not(.ck-disabled):not(:hover)::after, .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__action:not(.ck-disabled)::after, .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled)::after, .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open > .ck-splitbutton__arrow:not(.ck-disabled):not(:hover)::after {
  display: none;
}
.ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open:hover > .ck-splitbutton__action:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open:hover > .ck-splitbutton__arrow:not(.ck-disabled), .ck.ck-splitbutton.ck-splitbutton_flatten.ck-splitbutton_open:hover > .ck-splitbutton__arrow:not(.ck-disabled):not(:hover) {
  background-color: var(--ck-color-button-on-hover-background);
}

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