@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", sans-serif;
  background: var(--black, #262727);
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
  margin: 0;
  padding: 0;
}

a,
a:hover {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

button {
  border: none;
  background-color: transparent;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1320px;
}

header {
  background-image: url(../img/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  /* MOBILE MENU */
  /* RESPONSIVE */
}

header .headers_start {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
}

header .headers_start .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2100;
  /* Mega Menu */
  /* Catalog Menu */
  /* Solutions Menu */
  /* Support Menu */
  /* Company Menu */
  /* Overlay */
}

header .headers_start .header_block .menu ul {
  display: flex;
  gap: 32px;
}

header .headers_start .header_block .menu ul li a {
  color: #fff;
  font-weight: 500;
}

header .headers_start .header_block .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(26, 26, 26);
  border-radius: 20px;
  padding: 40px;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  min-width: 100%;
  z-index: 1000;
}

header .headers_start .header_block .menu li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

header .headers_start .header_block .menu li:hover .mega-menu-overlay {
  opacity: 1;
  visibility: visible;
}

header .headers_start .header_block .mega-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

header .headers_start .header_block .mega-menu-title {
  font-size: 28px;
  font-weight: 600;
  color: rgb(222, 222, 222);
}

header .headers_start .header_block .page-link {
  color: var(--text-gray, #C3C3C3);
  text-decoration: underline;
  font-size: 18px;
  transition: color 0.3s;
}

header .headers_start .header_block .page-link:hover {
  color: #f4c430;
}

header .headers_start .header_block .catalog-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

header .headers_start .header_block .categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .headers_start .header_block .menu-families {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .headers_start .header_block .section-title {
  font-size: 18px;
  color: rgb(222, 222, 222);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

header .headers_start .header_block .families-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

header .headers_start .header_block .menu-item {
  color: rgb(195, 195, 195);
  text-decoration: none;
  padding: 8px 0;
  border-radius: 6px;
  transition: all 0.3s;
  font-size: 18px;
  display: block;
}

header .headers_start .header_block .menu-item:hover {
  background: #2a2a2a;
  color: #fff;
}

header .headers_start .header_block .menu-item.highlighted {
  color: #f4c430;
}

header .headers_start .header_block .menu-item.highlighted::after {
  content: "→";
  margin-left: 8px;
}

header .headers_start .header_block .solutions-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

header .headers_start .header_block .solution-column h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

header .headers_start .header_block .solution-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .headers_start .header_block .support-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

header .headers_start .header_block .support-column h3 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 500;
}

header .headers_start .header_block .support-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .headers_start .header_block .support-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

header .headers_start .header_block .company-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

header .headers_start .header_block .company-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

header .headers_start .header_block .mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 90;
  pointer-events: none;
}

@media (max-width: 1024px) {
  header .headers_start .header_block .mega-menu {
    min-width: 95vw;
    padding: 30px 20px;
  }

  header .headers_start .header_block .catalog-content {
    grid-template-columns: 180px 1fr;
  }

  header .headers_start .header_block .families-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  header .headers_start .header_block .solutions-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  header .headers_start .header_block .company-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

header .headers_start .header_block .btns_header {
  display: flex;
  gap: 12px;
}

header .headers_start .header_block .btns_header .support_btn {
  background: #FDC400;
  border-radius: 50px;
  padding: 12px 24px;
  border: none;
  font-weight: 600;
}

@media (max-width: 1280px) {
  header .headers_start .header_block .btns_header .support_btn {
    font-size: 14px;
  }
}

header .headers_start .burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

header .headers_start .burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

header .mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #1c1c1c;
  z-index: 2000;
  padding: 20px;
  transition: 0.35s;
}

header .mobile_menu.active {
  left: 0;
}

header .mobile_menu .mobile_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.header_block .logo{
  max-width: 100px;
}
.header_block .logo img{
  width: 100%;
}
header .mobile_menu .mobile_header .mobile_logo {
  width: 90px;
}

header .mobile_menu .mobile_header .close_mobile {
  margin-left: auto;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

header .mobile_menu .mobile_body {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 20px 16px;
}

header .mobile_menu .mobile_body .mobile_btns {
  display: flex;
  justify-content: space-between;
}

header .mobile_menu .mobile_body .mobile_btns .support_m {
  background: #ffc727;
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 14px;
  border: none;
  font-weight: 600;
}

header .mobile_menu .mobile_nav {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

header .mobile_menu .mobile_nav li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  header .mobile_menu .mobile_nav li {
    padding: 14px 0;
  }

  header .mobile_menu .mobile_nav li {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
  }
}

header .mobile_menu .mobile_nav li a {
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .mobile_menu .mobile_nav li span {
  color: #fff;
  font-size: 16px;
  opacity: 0.5;
}

/* Стили для кнопки "Назад" и sub-menu (начиная с планшета) */
@media (max-width: 1212px) {

  /* Кнопка "Назад" */
  header .mobile_menu .mobile_back_btn {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  header .mobile_menu .mobile_back_btn .back-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    transition: opacity 0.3s;
  }

  header .mobile_menu .mobile_back_btn .back-btn span {
    font-size: 18px;
  }

  header .mobile_menu .mobile_back_btn .back-btn:hover {
    opacity: 0.8;
  }

  /* Контейнер sub-menu */
  header .mobile_menu .mobile_sub_menu {
    margin-top: 10px;
    position: relative;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }

  /* Стили для скроллбара в WebKit браузерах */
  header .mobile_menu .mobile_sub_menu::-webkit-scrollbar {
    width: 6px;
  }

  header .mobile_menu .mobile_sub_menu::-webkit-scrollbar-track {
    background: transparent;
  }

  header .mobile_menu .mobile_sub_menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }

  header .mobile_menu .mobile_sub_menu::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* Заголовок sub-menu */
  header .mobile_menu .mobile_sub_menu .mobile_sub_menu_header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }

  /* Контент sub-menu */
  header .mobile_menu .mobile_sub_menu .mobile_sub_menu_content {
    display: block;
  }

  header .mobile_menu .mobile_sub_menu .mobile_sub_menu_header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }

  header .mobile_menu .mobile_sub_menu .mobile_sub_menu_header .mobile_go_to_link {
    color: #87888A;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
  }

  header .mobile_menu .mobile_sub_menu .mobile_sub_menu_header .mobile_go_to_link:hover {
    color: #fff;
  }

  /* Скрываем sub-menu и mega-menu в основном меню на планшете */
  header .mobile_menu .mobile_main_menu .sub-menu,
  header .mobile_menu .mobile_main_menu .mega-menu {
    display: none !important;
  }

  /* Показываем sub-menu в контейнере sub-menu */
  header .mobile_menu .mobile_sub_menu .sub-menu {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Показываем mega-menu в контейнере sub-menu */
  header .mobile_menu .mobile_sub_menu .mega-menu {
    display: block !important;
    padding-bottom: 40px;
  }



  /* Скрываем header мега-меню в мобильной версии */
  header .mobile_menu .mobile_sub_menu .mega-menu .mega-menu-header {
    display: none;
  }

  /* Стили для catalog-content в мобильном меню */
  header .mobile_menu .mobile_sub_menu .catalog-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px;
  }

  header .mobile_menu .mobile_sub_menu .categories {
    margin-bottom: 0;
  }

  header .mobile_menu .mobile_sub_menu .categories .section-title,
  header .mobile_menu .mobile_sub_menu .catalog-column .section-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
    display: block !important;
  }

  header .mobile_menu .mobile_sub_menu .categories .menu-item,
  header .mobile_menu .mobile_sub_menu .catalog-column .menu-item {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    opacity: .8;
    display: block;
    padding: 4px 0;
    transition: color 0.3s;
  }

  header .mobile_menu .mobile_sub_menu .categories .menu-item:hover,
  header .mobile_menu .mobile_sub_menu .catalog-column .menu-item:hover {
    color: #FDC400;
  }

  header .mobile_menu .mobile_sub_menu .catalog-column-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  header .mobile_menu .mobile_sub_menu .catalog-column-grid>div {
    display: block !important;
  }

  /* Стили для элементов в sub-menu */
  header .mobile_menu .mobile_sub_menu .sub-menu li {
    display: block;
    margin-bottom: 0;
    padding: 0;
  }

  header .mobile_menu .mobile_sub_menu .sub-menu li a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s;
  }

  header .mobile_menu .mobile_sub_menu .sub-menu li a:hover {
    color: #FDC400;
  }

  /* Скрываем стрелки в sub-menu */
  header .mobile_menu .mobile_sub_menu .sub-menu li a span,
  header .mobile_menu .mobile_sub_menu .sub-menu li>span {
    display: none;
  }

  /* Стили для вложенных sub-menu (второй уровень) */
  header .mobile_menu .mobile_sub_menu .sub-menu .sub-menu {
    margin-left: 20px;
    margin-top: 5px;
  }

  header .mobile_menu .mobile_sub_menu .sub-menu .sub-menu li a {
    font-size: 14px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Стили для элементов с дочерними элементами в sub-menu */
  header .mobile_menu .mobile_sub_menu .sub-menu .menu-item-has-children>a {
    font-weight: 600;
  }
}

@media (max-width: 1212px) {

  header .headers_start .menu,
  header .headers_start .btns_header {
    display: none;
  }

  header .headers_start .burger {
    display: flex;
  }
}

@media (max-width: 499px) {

  header .headers_start .menu,
  header .headers_start .btns_header {
    display: none;
  }

  header .headers_start .menu .search_btn,
  header .headers_start .btns_header .search_btn {
    display: none;
  }

  header .headers_start .menu .support_btn,
  header .headers_start .btns_header .support_btn {
    display: none;
  }

  header .headers_start .burger {
    display: flex;
  }
}

header .header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .header_block .menu ul {
  display: flex;
  gap: 30px;
}

header .header_block .menu ul li a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 1280px) {
  header .header_block .menu ul li a {
    font-size: 16px;
  }
}

header .header_block .btns_header {
  display: flex;
  gap: 16px;
}

header .header_block .btns_header .btn_head button {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
}

header .hero_block {
  padding-top: 267px;
}

@media (max-width: 900px) {
  header .hero_block {
    order: 2;
    padding-top: 0;
    padding-bottom: 170px;
  }
}

header .hero_block h1 {
  color: var(--white, #fff);
  font-size: 68px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 68px */
  margin-bottom: 20px;
  max-width: 747px;
}

@media (max-width: 900px) {
  header .hero_block h1 {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  header .hero_block h1 {
    font-size: 36px;
    padding-top: 300px;
  }
}

header .hero_block p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 63px;
}

@media (max-width: 480px) {
  header .hero_block p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
#menu-bottom-5 li a{
  color: #dedede;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}

footer .footer_block .bottom-section .bottom-column .menu-item a{
    color: #5C5C5C;
}
footer .footer_block .bottom-section .bottom-column .menu-item .sub-menu li a{
  color: #dedede;
}
#menu-bottom-4 li a{
  color: #dedede;
}
#menu-bottom-4 li a:hover {
  color: #fcd602;
}
#menu-bottom-5 li a:hover{
  color: #fcd602;

}
footer .footer_block .bottom-section .bottom-column .menu-item .sub-menu li a:hover {
  color: #fcd602;
}
header .hero_block .btns_hero {
  display: flex;
  gap: 20px;
}
.menu-bottom-1-container #menu-item-28 .sub-menu li{
  width: fit-content;
}
.menu-bottom-1-container #menu-item-28 .sub-menu{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 232px;
}


footer .footer_block .bottom-section .bottom-column ul li a.active {
  color: #fcd602;
  font-weight: 600;
}

@media (max-width: 480px) {
  header .hero_block .btns_hero {
    flex-direction: column;
    text-align: center;
  }
}

header .hero_block .btns_hero a {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  padding: 15px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 26px;
}

@media (max-width: 480px) {
  header .hero_block .btns_hero a {
    font-size: 16px;
  }
}

header .hero_block .btns_hero button {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 15px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 26px;
}

@media (max-width: 480px) {
  header .hero_block .btns_hero button {
    font-size: 16px;
  }
}

header .hero_btns {
  padding-top: 75px;
  padding-bottom: 161px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: end;
  align-items: end;
}

@media (max-width: 900px) {
  header .hero_btns {
    order: 1;
    text-align: start;
    align-items: start;
    padding-top: 365px;
    padding-bottom: 30px;
  }
}

@media (max-width: 480px) {
  header .hero_btns {
    display: none;
  }
}

header .hero_btns .item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

header .hero_btns .item:last-child {
  margin-bottom: 0;
}

header .hero_btns .item a {
  color: var(--white, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  padding: 8px;
  border-radius: 100px;
  border: 1px solid var(--btn-arrow, #87888a);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  width: 250px;
}

@media (max-width: 900px) {
  .hero__container {
    display: flex;
    flex-direction: column;
  }
}

.support_clay {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .support_clay {
    padding-bottom: 100px;
  }
}

.support_clay .support_block {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  transform: translateY(-113px);
  margin-bottom: -113px;
}

.support_clay .support_block .title_form {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .support_clay .support_block .title_form {
    flex-direction: column;
  }
}

.support_clay .support_block .title_form h3 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 480px) {
  .support_clay .support_block .title_form h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.support_clay .support_block .title_form p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  display: flex;
}

.support_clay .support_block .title_form p img {
  margin-right: 12px;
}

@media (max-width: 900px) {
  .support_clay .support_block .title_form p br {
    display: none;
  }
}

@media (max-width: 480px) {
  .support_clay .support_block .title_form p {
    font-size: 16px;
  }
}

.support_clay .support_block .contact-form {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  border-radius: 10px;
  padding-top: 20px;
}

.support_clay .support_block .contact-form input[type=text],
.support_clay .support_block .contact-form input[type=email] {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  outline: none;
  flex: 1;
  transition: 0.3s;
  width: 202px;
}

.support_clay .support_block .contact-form input[type=text]::placeholder,
.support_clay .support_block .contact-form input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.support_clay .support_block .contact-form input[type=text]:focus,
.support_clay .support_block .contact-form input[type=email]:focus {
  border-color: #fcd602;
}

@media (max-width: 480px) {

  .support_clay .support_block .contact-form input[type=text],
  .support_clay .support_block .contact-form input[type=email] {
    font-size: 14px;
  }
}

.support_clay .support_block .contact-form button {
  background: #FDC400;
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  width: 300px;
}

@media (max-width: 480px) {
  .support_clay .support_block .contact-form button {
    width: 100%;
  }
}

.support_clay .support_block .contact-form button:hover {
  background: #ffe13a;
}

.support_clay .support_block .contact-form .bottom_options {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  gap: 189px;
}

@media (max-width: 900px) {
  .support_clay .support_block .contact-form .bottom_options {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}

.support_clay .support_block .contact-form .options {
  font-size: 14px;
  color: #fff;
  display: flex;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.support_clay .support_block .contact-form .options .options_s {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.support_clay .support_block .contact-form .options input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.support_clay .support_block .contact-form .options input[type=checkbox]:hover {
  border-color: #fcd602;
}

.support_clay .support_block .contact-form .options input[type=checkbox]:checked {
  background-color: #fcd602;
  border-color: #fcd602;
}

.support_clay .support_block .contact-form .options input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.support_clay .support_block .contact-form .options p {
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}

.support_clay .support_block .contact-form .options label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.support_clay .support_block .contact-form .options label input {
  accent-color: #fcd602;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
}

.support_clay .support_block .contact-form .agreement {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 5px;
  color: var(--text-gray, #C3C3C3);
}

.support_clay .support_block .contact-form .agreement a {
  color: #fcd602;
  text-decoration: underline;
}

.support_clay .support_block .contact-form .agreement label {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 500px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .support_clay .support_block .contact-form .agreement label {
    font-size: 14px;
  }
}

.support_clay .support_block .contact-form .agreement label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

@media (max-width: 900px) {
  .support_clay .support_block .contact-form .agreement label input[type=checkbox] {
    flex: 0 0 24px;
  }
}

.support_clay .support_block .contact-form .agreement label input[type=checkbox]:hover {
  border-color: #fcd602;
}

.support_clay .support_block .contact-form .agreement label input[type=checkbox]:checked {
  background-color: #fcd602;
  border-color: #fcd602;
}

.support_clay .support_block .contact-form .agreement label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.support_clay .support_block .contact-form .agreement label .text a {
  color: var(--text-gray, #C3C3C3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.support_clay .support_block .contact-form label.required {
  position: relative;
  display: inline-block;
}

.support_clay .support_block .contact-form label.required::after {
  content: " *";
  color: #f44336;
  position: absolute;
  right: 15px;
  top: 10px;
  font-weight: bold;
  font-size: 18px;
  pointer-events: none;
}

@media (max-width: 480px) {
  .support_clay .support_block .contact-form label.required {
    width: 100%;
  }
}

.support_clay .support_block .contact-form input[type=tel] {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
  outline: none;
  flex: 1;
  transition: 0.3s;
  width: 202px;
}

@media (max-width: 480px) {
  .support_clay .support_block .contact-form input[type=tel] {
    width: 100%;
  }
}

.support_clay .support_block .contact-form input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.support_clay .support_block .contact-form input[type=tel]:focus {
  border-color: #fcd602;
}

@media (max-width: 480px) {
  .support_clay .support_block .contact-form input[type=tel] {
    font-size: 14px;
  }
}

.fixtures .fixtures_block .lights-section {
  position: relative;
  padding: 40px 0;
}

.fixtures .fixtures_block .lights-section .swiper {
  position: static;
}

.fixtures .fixtures_block .lights-section .section-header {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .fixtures .fixtures_block .lights-section .section-header {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}

.fixtures .fixtures_block .lights-section .section-header h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-right: 16px;
}

@media (max-width: 900px) {
  .fixtures .fixtures_block .lights-section .section-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .fixtures .fixtures_block .lights-section .section-header h2 {
    font-size: 26px;
  }
}

.fixtures .fixtures_block .lights-section .section-header .view-all {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
}

.fixtures .fixtures_block .lights-section .section-header .view-all:hover {
  text-decoration: underline;
}

.fixtures .fixtures_block .lights-section .swiper {
  padding-bottom: 40px;
}

.fixtures .fixtures_block .lights-section .light-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.fixtures .fixtures_block .lights-section .light-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.fixtures .fixtures_block .lights-section .light-card p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.fixtures .fixtures_block .lights-section .light-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: end;
  opacity: 0;
  transition: all 0.4s ease;
}

.fixtures .fixtures_block .lights-section .light-card .overlay button {
  color: #000;
  font-weight: 600;
  border: none;
  padding: 25px;
  border-radius: 25px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fixtures .fixtures_block .lights-section .light-card:hover img {
  transform: scale(1.05);
}

.fixtures .fixtures_block .lights-section .light-card:hover .overlay {
  opacity: 1;
}

.fixtures .fixtures_block .lights-section .light-card:hover .overlay button {
  opacity: 1;
  transform: translateY(0);
}

.fixtures .fixtures_block .lights-section .swiper-button-prev,
.fixtures .fixtures_block .lights-section .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: 0.3s;
  top: 45%;
  color: #fff;
}

.fixtures .fixtures_block .lights-section .swiper-button-prev:hover,
.fixtures .fixtures_block .lights-section .swiper-button-next:hover {
  color: #000;
}

.fixtures .fixtures_block .lights-section .swiper-navigation-icon {
  display: none;
}

.fixtures .fixtures_block .lights-section .swiper-button-prev {
  left: 1200px;
  top: 65px;
  background-image: url(../img/btn-arrow1.png);
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  .fixtures .fixtures_block .lights-section .swiper-button-prev {
    display: none;
  }
}

.fixtures .fixtures_block .lights-section .swiper-button-next {
  right: 8px;
  top: 65px;
  background-image: url(../img/btn-arrow1.png);
}

@media (max-width: 480px) {
  .fixtures .fixtures_block .lights-section .swiper-button-next {
    display: none;
  }
}

.equipent {
  padding-top: 80px;
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .equipent {
    padding-top: 10px;
    padding-bottom: 100px;
  }
}

.equipent .equipment h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .equipent .equipment h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .equipent .equipment .equipment-block {
    display: flex;
    overflow-x: scroll;
  }
}

.equipent .equipment .equipment-block .grids_S {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

@media (max-width: 900px) {
  .equipent .equipment .equipment-block .grids_S img {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .equipent .equipment .equipment-block .grids_S {
    width: auto !important;
  }
}

.equipent .equipment .equipment-block .grids_S .equip-card {
  position: relative;
}

@media (max-width: 480px) {
  .equipent .equipment .equipment-block .grids_S .equip-card {
    max-width: 320px;
  }
}

.equipent .equipment .equipment-block .grids_S .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: end;
  opacity: 0;
  transition: all 0.4s ease;
}

.equipent .equipment .equipment-block .grids_S .overlay button {
  color: #000;
  font-weight: 600;
  border: none;
  padding: 25px;
  border-radius: 25px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.equipent .equipment .equipment-block .grids_S:hover .overlay {
  opacity: 1;
}

.equipent .equipment .equipment-block .grids_S:hover .overlay button {
  opacity: 1;
  transform: translateY(0);
}

.technical_support .technical .rows_s {
  display: flex;
  gap: 16px;
}

.technical_support .technical .support {
  color: #fff;
  font-family: "Inter", sans-serif;
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .technical_support .technical .support {
    padding-bottom: 120px;
  }
}

.technical_support .technical .support h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .technical_support .technical .support h2 {
    font-size: 30px;
  }
}

.technical_support .technical .support .support-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .technical_support .technical .support .support-wrap {
    grid-template-columns: 1fr;
  }
}

.technical_support .technical .support .support-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .technical_support .technical .support .support-left {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.technical_support .technical .support .support-left .support-item {
  position: relative;
  background: #2b2b2b;
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

@media (max-width: 900px) {
  .technical_support .technical .support .support-left .support-item {
    flex: 0 0 calc(50% - 7.5px);
  }
}

@media (max-width: 480px) {
  .technical_support .technical .support .support-left .support-item {
    flex: 0 0 calc(100% - 7.5px);
  }
}

.technical_support .technical .support .support-left .support-item .text h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 28px;
}

@media (max-width: 480px) {
  .technical_support .technical .support .support-left .support-item .text h3 {
    font-size: 18px;
  }
}

.technical_support .technical .support .support-left .support-item .text p {
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

@media (max-width: 480px) {
  .technical_support .technical .support .support-left .support-item .text p {
    font-size: 14px;
  }
}

.technical_support .technical .support .support-left .support-item .arrow {
  position: absolute;
  right: 25px;
  top: 24%;
  transform: translateY(-50%) scale(0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FDC400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.technical_support .technical .support .support-left .support-item .arrow::after {
  font-weight: bold;
}

.technical_support .technical .support .support-left .support-item:hover {
  background: #3a3a3a;
}

.technical_support .technical .support .support-left .support-item:hover .arrow {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.technical_support .technical .support .info_fames {
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  justify-content: space-between;
}

.technical_support .technical .support .info_fames .info_list {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
  opacity: 0.6;
  padding-left: 20px;
}

.technical_support .technical .support .info_fames .info_list li {
  margin-bottom: 6px;
}

.technical_support .technical .support .info_fames .info_list li:last-child {
  margin-bottom: 0;
}

.technical_support .technical .support .info_fames .info_list li::before {
  content: "•";
  color: #fff;
  display: inline-block;
  width: 1em;
  opacity: 0.6;
  margin-left: -1em;
}

.technical_support .technical .support .support-right {
  background: #2b2b2b;
  border-radius: 15px;
  padding: 16px;
}

.technical_support .technical .support .support-right .lead {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 30px;
  display: flex;
}

@media (max-width: 480px) {
  .technical_support .technical .support .support-right .lead {
    font-size: 16px;
  }
}

.technical_support .technical .support .support-right .lead img {
  margin-right: 12px;
}

.technical_support .technical .support .support-right .support-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.technical_support .technical .support .support-right .support-form input {
  height: 50px;
}

.technical_support .technical .support .support-right .support-form textarea {
  height: 226px;
}

.technical_support .technical .support .support-right .support-form input,
.technical_support .technical .support .support-right .support-form textarea {
  width: 100%;
  background: #3a3a3a;
  border: none;
  border-radius: 25px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.technical_support .technical .support .support-right .support-form input::placeholder,
.technical_support .technical .support .support-right .support-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.technical_support .technical .support .support-right .support-form input:focus,
.technical_support .technical .support .support-right .support-form textarea:focus {
  border: 1px solid #FDC400;
  background: #414141;
}

.technical_support .technical .support .support-right .support-form .row {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .technical_support .technical .support .support-right .support-form .row {
    flex-direction: column;
  }
}

.technical_support .technical .support .support-right .support-form textarea {
  min-height: 120px;
  border-radius: 15px;
  resize: none;
}

.technical_support .technical .support .support-right .support-form .check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #c3c3c3;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.technical_support .technical .support .support-right .support-form .check input {
  display: none;
}

.technical_support .technical .support .support-right .support-form .check .custom {
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.2s ease;
}

.technical_support .technical .support .support-right .support-form .check input:checked+.custom {
  background: #fcd602;
  border-color: #fcd602;
}

.technical_support .technical .support .support-right .support-form .check input:checked+.custom::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6.5px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.technical_support .technical .support .support-right .support-form .check .text a {
  color: #c3c3c3;
  text-decoration: underline;
}

.technical_support .technical .support .support-right .support-form .check:hover .custom {
  border-color: #fcd602;
}

.technical_support .technical .support .support-right .support-form button {
  background: #FDC400;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.technical_support .technical .support .support-right .support-form button:hover {
  background: rgb(255, 199.9938735178, 10.85);
}

.banners {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .banners {
    padding-bottom: 100px;
  }
}

.banners .banner_block .title {
  margin-bottom: 40px;
}

.banners .banner_block .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 480px) {
  .banners .banner_block .title h2 {
    font-size: 26px;
  }
}

.banners .banner_block .banne {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .banners .banner_block .banne {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
}

.banners .banner_block .banne img {
  transform: translate(-128px, 21px);
}

@media (max-width: 900px) {
  .banners .banner_block .banne img {
    width: 45%;
    transform: translate(0, 0);
    position: absolute;
    bottom: -50px;
    right: 50px;
  }
}

@media (max-width: 480px) {
  .banners .banner_block .banne img {
    width: 70%;
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 480px) {
  .banners .banner_block .banne .item {
    z-index: 2;
  }
}

.banners .banner_block .banne .item h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .banners .banner_block .banne .item h3 {
    font-size: 20px;
  }
}

.banners .banner_block .banne .item p {
  color: var(--text-gray, #c3c3c3);
  /* 1920/text-18 */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  max-width: 650px;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .banners .banner_block .banne .item p {
    margin-bottom: 215px;
  }
}

@media (max-width: 480px) {
  .banners .banner_block .banne .item p {
    font-size: 16px;
  }
}

.banners .banner_block .banne .item a {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 480px) {
  .banners .banner_block .banne .item a {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
  }
}

.cards .card_block .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

.cards .card_block .title-section {
  display: flex;
  align-items: end;
  gap: 15px;
  align-items: center;
}

@media (max-width: 480px) {
  .cards .card_block .title-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cards .card_block .swiper-button-next {
  top: 35px;
  background-repeat: no-repeat;
}

.cards .card_block .swiper-button-prev {
  right: 55px;
  left: auto;
  top: 35px;
  background-repeat: no-repeat;
}

.cards .card_block .swiper-button-next svg,
.cards .card_block .swiper-button-prev svg {
  display: none;
}

.cards .card_block .title-section h1 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.cards .card_block .view-all {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
}

.cards .card_block .view-all:hover {
  color: #fff;
}

.cards .card_block .nav-buttons {
  display: flex;
  gap: 10px;
}

.cards .card_block .swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .cards .card_block .swiper-button {
    display: none;
  }
}

.cards .card_block .swiper-button:hover {
  background: #3a3a3a;
  color: #fff;
}

.cards .card_block .swiper-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cards .card_block .filter-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.cards .card_block .filter-btn {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}

.cards .card_block .filter-btn.active {
  background: #FDC400;
  color: #000;
}

.cards .card_block .filter-btn:not(.active) {
  background: transparent;
  color: #fff;
  border: 1px solid #444;
}

.cards .card_block .filter-btn:not(.active):hover {
  border-color: #666;
  background: #2a2a2a;
}

.cards .card_block .swiper {
  width: 100%;
  padding: 10px 0 30px 0;
}

.cards .card_block .swiper-slide {
  height: auto;
}

.cards .card_block .product-card {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 8px 8px 16px 8px;
}

.cards .card_block .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cards .card_block .badge {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.cards .card_block .new-badge {
  position: absolute;
  top: 13px;
  right: 17px;
  color: var(--orange, #fdc400);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 10;
}

.cards .card_block .product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}

.cards .card_block .product-image img {
  width: 100%;
  border-radius: 8px;
}

.cards .card_block .product-image svg {
  width: 120px;
  height: 120px;
  fill: #333;
}

.cards .card_block .product-info {
  color: #000;
  padding-top: 16px;
  position: relative;
}

.cards .card_block .product-name {
  color: var(--white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.cards .card_block .product-type {
  color: var(--btn-arrow, #87888a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.cards .card_block .product-code {
  font-size: 12px;
  color: #999;
  text-align: right;
  position: absolute;
  right: 0;
  top: 48px;
}

.cards .card_block .swiper-pagination {
  bottom: 0 !important;
}

.cards .card_block .swiper-pagination-bullet {
  background: #666;
  opacity: 1;
}

.cards .card_block .swiper-pagination-bullet-active {
  background: #ffd700;
}

@media (max-width: 768px) {
  .cards .card_block .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 768px) and (max-width: 900px) {
  .cards .card_block .header {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .cards .card_block .title-section h1 {
    font-size: 22px;
  }
}

.teams {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .teams {
    padding-bottom: 100px;
  }
}

.teams .community {
  color: #ffffff;
  padding-top: 180px;
}

@media (max-width: 900px) {
  .teams .community {
    padding-top: 100px;
  }
}

.teams .community h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 480px) {
  .teams .community h2 {
    font-size: 26px;
  }
}

.teams .community .rows_s {
  display: flex;
  gap: 16px;
}

@media (max-width: 480px) {
  .teams .community .rows_s {
    flex-direction: column;
  }
}

.teams .community .avatars {
  position: absolute;
  bottom: -21px;
  right: -37px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .teams .community .avatars {
    display: block;
    top: 30px;
    bottom: auto;
    right: -120px;
    z-index: 1;
  }

  .teams .community .avatars img {
    width: 65%;
  }
}

@media (max-width: 480px) {
  .teams .community .avatars {
    top: 180px;
  }
}

.teams .community .community-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  /* Chap blok */
  /* O‘ng blok */
}

@media (max-width: 900px) {
  .teams .community .community-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .teams .community .community-block {
    padding: 10px;
    gap: 200px;
  }
}

.teams .community .community-block .left {
  border-radius: 15px;
  padding: 30px;
  position: relative;
}

@media (max-width: 900px) {
  .teams .community .community-block .left {
    padding: 0px;
  }
}

.teams .community .community-block .left .text {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  padding-bottom: 108px;
}

@media (max-width: 900px) {
  .teams .community .community-block .left .text {
    font-size: 24px;
    padding-bottom: 16px;
    position: relative;
    z-index: 100;
  }
}

@media (max-width: 480px) {
  .teams .community .community-block .left .text {
    font-size: 20px;
  }
}

.teams .community .community-block .left .info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .teams .community .community-block .left .info {
    position: relative;
    z-index: 100;
  }
}

.teams .community .community-block .left .info p {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  display: flex;
}

@media (max-width: 900px) {
  .teams .community .community-block .left .info p {
    font-size: 14px;
  }
}

.teams .community .community-block .left .info p img {
  margin-right: 12px;
}

.teams .community .community-block .right {
  background: #2b2b2b;
  border-radius: 15px;
  padding: 30px;
}

@media (max-width: 480px) {
  .teams .community .community-block .right {
    padding: 10px;
    background-color: transparent;
  }
}

.teams .community .community-block .right .community-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.teams .community .community-block .right .community-form input {
  width: 100%;
  background: #3a3a3a;
  border: none;
  border-radius: 25px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

@media (max-width: 480px) {
  .teams .community .community-block .right .community-form input {
    border: 1px solid #5c5c5c;
  }
}

.teams .community .community-block .right .community-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.teams .community .community-block .right .community-form input:focus {
  border: 1px solid #fcd602;
  background: #414141;
}

.teams .community .community-block .right .community-form .row {
  display: flex;
  gap: 10px;
}

@media (max-width: 600px) {
  .teams .community .community-block .right .community-form .row {
    flex-direction: column;
  }
}

.teams .community .community-block .right .community-form .check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-top: 5px;
}

.teams .community .community-block .right .community-form .check input {
  display: none;
}

.teams .community .community-block .right .community-form .check .custom {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  background: transparent;
  position: relative;
  flex-shrink: 0;
  margin-top: 3px;
  transition: all 0.2s ease;
}

.teams .community .community-block .right .community-form .check input:checked+.custom {
  background: #fcd602;
  border-color: #fcd602;
}

.teams .community .community-block .right .community-form .check input:checked+.custom::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 6.5px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.teams .community .community-block .right .community-form .check a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.teams .community .community-block .right .community-form .check:hover .custom {
  border-color: #fcd602;
}

.teams .community .community-block .right .community-form button {
  background: #FDC400;
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s ease;
}

.teams .community .community-block .right .community-form button:hover {
  background: #ffe13a;
}

.breadcrumbs {
  padding-top: 100px;
}

.innovations {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .innovations {
    padding-bottom: 100px;
  }
}

.innovations .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .innovations .title {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .innovations .title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.innovations .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 900px) {
  .innovations .title h2 {
    font-size: 30px;
  }
}

.innovations .title a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .innovations .title a {
    font-size: 16px;
  }
}

.innovations .block_ino {
  display: flex;
  gap: 20px;
  gap: 20px;
}

@media (max-width: 900px) {
  .innovations .block_ino {
    flex-direction: column;
  }
}

.innovations .block_ino .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.innovations .block_ino .item .child {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  height: 326px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.innovations .block_ino .item .child h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
}

@media (max-width: 900px) {
  .innovations .block_ino .item .child h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .innovations .block_ino .item .child h3 {
    font-size: 20px;
  }
}

.innovations .block_ino .item .child p {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 900px) {
  .innovations .block_ino .item__second {
    display: flex;
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .innovations .block_ino .item__second {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fixtures_second .descriptionss {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4px;
}

.fixtures_second .descriptionss p {
  color: var(--btn-arrow, #87888a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 12px;
}

.fixtures_second .descriptionss h3 {
  overflow: hidden;
  color: var(--white, #fff);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .fixtures_second .descriptionss h3 {
    font-size: 18px;
    white-space: unset;
  }
}

.fixtures_second .descriptionss h4 {
  overflow: hidden;
  color: var(--text-gray, #c3c3c3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 900px) {
  .fixtures_second .descriptionss h4 {
    font-size: 13px;
  }
}

.studyies {
  padding-bottom: 180px;
  padding-top: 150px;
}

@media (max-width: 900px) {
  .studyies {
    padding-bottom: 100px;
    padding-top: 20px;
  }
}

.studyies .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.studyies .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.studyies .title a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 18px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
}

.studyies .item {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  height: 503px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .studyies .item {
    height: 600px;
    justify-content: flex-start;
  }

  .studyies .item img {
    position: static;
    width: 60%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .studyies .item {
    height: auto;
  }

  .studyies .item .infos {
    z-index: 2;
  }

  .studyies .item img {
    width: 60%;
    object-fit: cover;
    z-index: 1;
  }
}

.studyies .item h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .studyies .item h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .studyies .item h3 {
    font-size: 20px;
  }
}

.studyies .item p {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .studyies .item p {
    font-size: 16px;
  }
}

.studyies .item p:last-child {
  margin-bottom: 0;
}

.studyies .item img {
  position: absolute;
  bottom: 0;
  right: 10px;
}

.studyies .item a {
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  padding: 16px;
  width: 100%;
  border-radius: 100px;
  background: var(--orange, #fdc400);
  line-height: normal;
  text-align: center;
}

@media (max-width: 900px) {
  .studyies .item a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 77%;
    padding: 16px 26px;
  }
}

@media (max-width: 480px) {
  .studyies .item a {
    width: 100%;
    position: static;
    transform: translateX(0);
    text-align: center;
    margin-top: 30px;
  }
}

.banner_top {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 89px;
}

.banner_top .infos {
  padding-top: 506px;
  padding-bottom: 131px;
}

@media (max-width: 900px) {
  .banner_top .infos {
    padding-top: 400px;
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .banner_top .infos {
    padding-top: 300px;
    padding-bottom: 50px;
  }
}

.banner_top .infos h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .banner_top .infos h2 {
    font-size: 26px;
  }
}

.banner_top .infos p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 20px;
  max-width: 610px;
}

@media (max-width: 480px) {
  .banner_top .infos p {
    font-size: 16px;
  }
}

.banner_top .infos p:last-child {
  margin-bottom: 30;
}

.banner_top .infos a {
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 26px;
  border-radius: 100px;
  background: var(--orange, #fdc400);
}

@media (max-width: 480px) {
  .banner_top .infos a {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
  }
}

.faqs {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .faqs {
    padding-bottom: 100px;
  }
}

.faqs .faq {
  color: #fff;
  padding: 60px 0;
  /* ikkita ustun */
}

@media (max-width: 480px) {
  .faqs .faq {
    padding: 0;
  }
}

.faqs .faq h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.faqs .faq .faq-row {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .faqs .faq .faq-row {
    flex-direction: column;
  }
}

.faqs .faq .faq-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.faqs .faq .faq-item {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  border-radius: 15px;
  padding: 20px 25px;
  transition: background 0.2s ease;
  cursor: pointer;
  overflow: hidden;
}

@media (max-width: 900px) {
  .faqs .faq .faq-item {
    padding: 15px 20px;
  }
}

.faqs .faq .faq-item .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faqs .faq .faq-item .faq-header h3 {
  display: block;
  color: var(--white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 24px */
}

@media (max-width: 900px) {
  .faqs .faq .faq-item .faq-header h3 {
    font-size: 16px !important;
  }
}

.faqs .faq .faq-item .faq-header .toggle {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #87888a;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

@media (max-width: 900px) {
  .faqs .faq .faq-item .faq-header .toggle {
    width: 30px;
    height: 30px;
    padding: 22px;
  }
}

.faqs .faq .faq-item .faq-header .toggle::before,
.faqs .faq .faq-item .faq-header .toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #000;
  transform: translate(-50%, -50%);
  transition: 0.15s;
}

.faqs .faq .faq-item .faq-header .toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faqs .faq .faq-item .faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.faqs .faq .faq-item .faq-body p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.faqs .faq .faq-item.active {
  background: #3a3a3a;
}

.faqs .faq .faq-item.active .faq-body {
  max-height: 150px;
  opacity: 1;
}

.faqs .faq .faq-item.active .toggle {
  background: #fcd602;
}

.faqs .faq .faq-item.active .toggle::before,
.faqs .faq .faq-item.active .toggle::after {
  background: #000;
}

.faqs .faq .faq-item.active .toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faqs .faq .faq-item:hover {
  background: #353535;
}

.footer_ellips {
  width: 100%;
  height: 187px;
  background: url(../img/footer-ellips.svg);
  background-size: cover;
  background-position: center;
  transform: translateY(70px);
}

footer {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background-color: rgb(38, 39, 39);
}

footer .footer_block .logo {
  margin-bottom: 40px;
}

footer .footer_block .bottom-section {
  color: #fff;
}

footer .footer_block .bottom-section .bottom-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: flex-start;
}

footer .footer_block .bottom-section .bottom-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

footer .footer_block .bottom-section .bottom-column h3 {
  color: #dedede;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
}

footer .footer_block .bottom-section .bottom-column .sub {
  color: var(--stroke-input, #5c5c5c);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 21.6px */
  margin-bottom: 12px;
}

footer .footer_block .bottom-section .bottom-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

footer .footer_block .bottom-section .bottom-column ul li a {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}


footer .footer_block .bottom-section .bottom-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

footer .footer_block .bottom-section .bottom-footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  transition: color 0.2s ease;
}

footer .footer_block .bottom-section .bottom-footer a:hover {
  color: #fcd602;
}

@media (max-width: 1200px) {
  footer .footer_block .bottom-section .bottom-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer .footer_block .bottom-section .bottom-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 480px) {
  footer .footer_block .bottom-section .bottom-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.banners_two {
  padding-bottom: 0;
}

.breadcrumb {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  margin-top: 30px;
  opacity: 0.6;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0.6;
}

.breadcrumb a:hover {
  color: #fcd602;
}

.breadcrumb p {
  margin: 0 5px;
  color: #fff;
  opacity: 0.6;
}

.breadcrumb span {
  color: #fff;
  opacity: 0.6;
}

.views .doc-section {
  color: #fff;
  padding: 0px 0 0px;
  margin-bottom: 180px;
}

@media (max-width: 900px) {
  .views .doc-section {
    padding-bottom: 120px;
  }
}

@media (max-width: 480px) {
  .views .doc-section {
    padding-bottom: 0px;
  }
}

.views .doc-section .breadcrumb {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
  gap: 5px;
  opacity: 0.6;
}

.views .doc-section .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.views .doc-section .breadcrumb a:hover {
  color: #fcd602;
}

.views .doc-section .breadcrumb span {
  color: #fcd602;
}

.views .doc-section h1 {
  color: var(--white, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 52px */
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .views .doc-section h1 {
    font-size: 42px;
  }
}

.views .doc-section .doc-intro {
  display: flex;
  gap: 100px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-intro {
    flex-direction: column;
    gap: 40px;
  }
}

.views .doc-section .desc {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .views .doc-section .desc {
    font-size: 16px;
  }
}

.views .doc-section .select-device {
  width: fit-content;
  max-width: 600px;
}

@media (max-width: 900px) {
  .views .doc-section .select-device {
    max-width: none;
  }
}

.views .doc-section .select-device .label {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 10px;
  display: block;
  text-align: end;
}

.views .doc-section .dropdown {
  position: relative;
  width: 100%;
}

.views .doc-section .dropdown-button {
  width: 100%;
  background: #4a4a4a;
  border: none;
  border-radius: 50px;
  padding: 20px 30px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.views .doc-section .dropdown-button:hover {
  background: #555;
}

.views .doc-section .dropdown-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.views .doc-section .dropdown-arrow.open {
  transform: rotate(180deg);
}

.views .doc-section .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #4a4a4a;
  border-radius: 20px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.views .doc-section .dropdown-menu.open {
  max-height: 400px;
  opacity: 1;
}

.views .doc-section .dropdown-item {
  padding: 18px 30px;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
  border-bottom: 1px solid #555;
}

.views .doc-section .dropdown-item:last-child {
  border-bottom: none;
}

.views .doc-section .dropdown-item:hover {
  background: #555;
}

.views .doc-section .doc-card {
  margin-top: 40px;
  border-radius: 15px;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.views .doc-section .doc-card .product-image-card {
  display: flex;
  flex-wrap: wrap;
  border-radius: 40px;
  width: 100%;
  gap: 20px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card .product-image-card {
    justify-content: center;
  }
}

.views .doc-section .doc-card .product-image-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.views .doc-section .doc-card .product-image-card__badge-icon {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.views .doc-section .doc-card .product-image-card__badge-shield {
  fill: #0066cc;
}

.views .doc-section .doc-card .product-image-card__badge-text {
  fill: white;
  font-weight: bold;
  font-size: 20px;
}

.views .doc-section .doc-card .product-image-card__label {
  position: absolute;
  top: 14px;
  left: 75%;
  padding: 10px 24px;
  border-radius: 25px;
  color: var(--orange, #fdc400);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card .product-image-card__label {
    left: 75%;
    top: 7px;
  }
}

.views .doc-section .doc-card .product-image-card__image-container {
  position: relative;
}

.views .doc-section .doc-card .product-image-card__image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}

.views .doc-section .doc-card .product-image-card__reflection {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .views .doc-section .doc-card .product-image-card {
    padding: 30px;
    border-radius: 30px;
  }

  .views .doc-section .doc-card .product-image-card__badge {
    top: 30px;
    left: 30px;
  }

  .views .doc-section .doc-card .product-image-card__badge-icon {
    width: 50px;
  }

  .views .doc-section .doc-card .product-image-card__label {
    top: 30px;
    right: 30px;
    padding: 8px 18px;
    font-size: 14px;
  }

  .views .doc-section .doc-card .product-image-card__image-container {
    padding: 30px 10px 10px;
  }
}

.views .doc-section .doc-card .doc-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.views .doc-section .doc-card .doc-right .doc-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
  flex-direction: column;
}

.views .doc-section .doc-card .doc-right .doc-top .lft_block {
  display: flex;
  gap: 10px;
  align-items: end;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card .doc-right .doc-top .lft_block {
    flex-direction: column;
    align-items: flex-start;
  }
}

.views .doc-section .doc-card .doc-right .doc-top .bottoms_s {
  display: flex;
  justify-content: space-between;
  gap: 54px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card .doc-right .doc-top .bottoms_s {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
  }
}

.views .doc-section .doc-card .doc-right .doc-top .bottoms_s p {
  color: var(--white, #fff);
  /* 1920/text-18 */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  opacity: 0.6;
}

.views .doc-section .doc-card .doc-right .doc-top .bottoms_s a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.views .doc-section .doc-card .doc-right .doc-top h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 38px */
}

.views .doc-section .doc-card .doc-right .doc-top .model {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.4;
}

.views .doc-section .doc-card .doc-right .doc-top .link {
  margin-left: auto;
  font-size: 13px;
  color: #fcd602;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .views .doc-section .doc-card .doc-right .doc-top .link {
    margin-left: 0;
    margin-top: 10px;
  }
}

.views .doc-section .doc-buttons {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-buttons {
    margin-bottom: 100px;
  }
}

.views .doc-section .doc-buttons .title {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 480px) {
  .views .doc-section .doc-buttons .title {
    flex-direction: column;
    align-items: flex-start;
  }
}

.views .doc-section .doc-buttons .title h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
}

.views .doc-section .doc-buttons .title a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}

.views .doc-section .doc-buttons .items_btn {
  margin-bottom: 20px;
}

.views .doc-section .doc-buttons .items_btn:last-child {
  margin-bottom: 0;
}

.views .doc-section .doc-buttons .items_btn .item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 900px) {
  .views .doc-section .doc-buttons .items_btn .item {
    flex-wrap: wrap;
  }
}

.views .doc-section .doc-buttons .items_btn .item button {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  padding: 5px 18px 5px 5px;
}

@media (max-width: 480px) {
  .views .doc-section .doc-buttons .items_btn .item button {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    text-align: start;
  }
}

.views .doc-section .doc-buttons .items_btn .item .yellow {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
}

.views .tech_info {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
}

.views .tech_info h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
}

.views .tech_info .items {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .views .tech_info .items {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
  }
}

.views .tech_info .items .item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
}

.views .tech_info .items .item.item-long {
  flex: 1 1 100%;
  width: 100%;
}

.views .tech_info .items .item h4 {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

.views .tech_info .items .item p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  opacity: 0.6;
}

.videos_block {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .videos_block {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .videos_block .video_s {
    width: 100% !important;
  }
}

.videos_block .video-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #fff;
  margin-top: 20px;
}

.videos_block .video-filter-bar .filters-left,
.videos_block .video-filter-bar .filters-right {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 900px) {

  .videos_block .video-filter-bar .filters-left,
  .videos_block .video-filter-bar .filters-right {
    width: 100%;
  }
}

.videos_block .video-filter-bar .filter-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

@media (max-width: 480px) {
  .videos_block .video-filter-bar .filter-item {
    width: 100%;
  }
}

.videos_block .video-filter-bar .filter-item label {
  color: var(--btn-arrow, #87888a);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.videos_block .video-filter-bar .filter-item .select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #3a3a3a;
  border-radius: 25px;
  padding: 8px 18px;
  min-width: 200px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 334px;
  height: 50px;
}

@media (max-width: 480px) {
  .videos_block .video-filter-bar .filter-item .select {
    width: 100%;
  }
}

.videos_block .video-filter-bar .filter-item .select span {
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.videos_block .video-filter-bar .filter-item .select .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.videos_block .video-filter-bar .filter-item .select .clear {
  position: absolute;
  right: 14px;
  width: 14px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.videos_block .video-filter-bar .filter-item .select .clear::before,
.videos_block .video-filter-bar .filter-item .select .clear::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) rotate(45deg);
}

.videos_block .video-filter-bar .filter-item .select .clear::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.videos_block .video-filter-bar .filter-item .select .options {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background: #2b2b2b;
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  z-index: 10;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.videos_block .video-filter-bar .filter-item .select .options li {
  padding: 8px 18px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.videos_block .video-filter-bar .filter-item .select .options li:hover {
  background: #3a3a3a;
}

.videos_block .video-filter-bar .filter-item .select.open .options {
  display: block;
}

.videos_block .video-filter-bar .filter-item .select.open .arrow {
  transform: rotate(-135deg);
}

.videos_block .video-filter-bar .filter-item .select:hover {
  background: #464646;
}

.videos_block .video-filter-bar .yellow-btn {
  background: #fdc400;
  border: none;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background 0.2s ease;
}

@media (max-width: 480px) {
  .videos_block .video-filter-bar .yellow-btn {
    width: 100%;
  }
}

.videos_block .video-filter-bar .yellow-btn:hover {
  background: #ffe13a;
}

.videos_block .filters-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.videos_block .video-count {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.videos_block .reset-btn {
  color: var(--black, #262727);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 26px;
  gap: 10px;
  border-radius: 100px;
  background: var(--yellow, #FFEEB2);
}

.videos_block .all_videos {
  padding-top: 40px;
}

@media (max-width: 900px) {
  .videos_block .all_videos a {
    width: 100%;
  }
}

.videos_block .all_videos .item {
  margin-bottom: 20px;
}

.videos_block .all_videos .item p {
  color: var(--white, #fff);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  margin-top: 3px;
}

@media (max-width: 900px) {
  .videos_block .all_videos .item p {
    font-size: 20px;
  }
}

.videos_block .all_videos .item img {
  width: 100%;
}

.videos_block .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  font-family: "Inter", sans-serif;
}

.videos_block .pagination button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videos_block .pagination button.page {
  background: #2b2b2b;
  color: #fff;
}

.videos_block .pagination button.page:hover {
  background: #3a3a3a;
}

.videos_block .pagination button.page.active {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  color: #000;
  font-weight: 600;
}

.videos_block .pagination button.nav {
  background: #4c4c4c;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: 0.2s;
}

.videos_block .pagination button.nav:hover {
  background: #5a5a5a;
}

.videos_block .pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.videos_block .title h2 {
  color: var(--white, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 52px */
}

@media (max-width: 900px) {
  .videos_block .title h2 {
    font-size: 42px;
  }
}

.videos_block .title p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .videos_block .title p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.videos_block .all_videos .item .contest {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  margin-top: 3px;
}

.videos_block .all_videos .item .contest h4 {
  color: var(--btn-arrow, #87888a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.videos_block .all_videos .item .contest p {
  color: var(--white, #fff);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin: 0;
  padding: 0;
  border: none;
}

.videos_block .all_videos .item .contest h5 {
  overflow: hidden;
  color: var(--text-gray, #c3c3c3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-top: 12px;
  line-height: 140%;
  /* 25.2px */
  border: none;
}

.titles_block {
  margin-bottom: 20px;
}

.titles_block .title h1 {
  color: var(--white, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 52px */
  margin-bottom: 20px;
}

.titles_block .title p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  max-width: 616px;
}

.families {
  padding-top: 180px;
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .families {
    padding: 100px 0;
  }
}

.families .familes_title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.families .items_btns .item {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.families .items_btns .item a {
  padding: 16px 28px;
  color: var(--black, #262727);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
}

.families .items_btns .item:last-child {
  margin-bottom: 0;
}

.filtrs {
  padding-top: 170px;
  padding-bottom: 180px;
}

.filtrs .filtrers_block {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .filtrs .filtrers_block {
    flex-wrap: wrap;
  }
}

.filtrs .filtrers_block .filter-container {
  width: 400px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .filtrs .filtrers_block .filter-container {
    width: 100%;
  }
}

.filtrs .filtrers_block .filter-header {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 24px;
}

.filtrs .filtrers_block .filter-content {
  padding: 16px 12px;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
}

@media (max-width: 900px) {
  .filtrs .filtrers_block .filter-content {
    width: 100%;
  }
}

.filtrs .filtrers_block .filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.filtrs .filtrers_block .filter-title {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  /* 94.444% */
}

.filtrs .filtrers_block .clear-all {
  color: var(--text-gray, #c3c3c3);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  cursor: pointer;
  text-decoration: underline;
}

.filtrs .filtrers_block .clear-all:hover {
  color: #6ba4e6;
}

.filtrs .filtrers_block .selected-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 10px;
}

.filtrs .filtrers_block .filter-tag {
  border-radius: 100px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  cursor: pointer;
}

.filtrs .filtrers_block .filter-tag:hover {
  border-color: #ffeeb2;
}

.filtrs .filtrers_block .filter-tag:hover button {
  background-color: #ffeeb2;
  color: #000;
}

.filtrs .filtrers_block .filter-tag span {
  color: var(--white, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 14px */
}

.filtrs .filtrers_block .filter-tag button {
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2f3030;
  font-size: 24px;
}

.filtrs .filtrers_block .filter-section {
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--gray-block, #353536);
  padding: 16px;
  margin-bottom: 8px;
}

.filtrs .filtrers_block .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.filtrs .filtrers_block .section-title {
  color: var(--white, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  padding: 0;
  line-height: 17px;
  margin: 0;
  /* 94.444% */
  display: flex;
  gap: 8px;
}

.filtrs .filtrers_block .info-icon {
  width: 24px;
  height: 22px;
  border-radius: 100px;
  border: 1px solid var(--text-gray, #c3c3c3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

.filtrs .filtrers_block .collapse-icon {
  font-size: 12px;
  color: #999;
  transition: transform 0.2s;
}

.filtrs .filtrers_block .section-header.collapsed .collapse-icon {
  transform: rotate(-90deg);
}

.filtrs .filtrers_block .section-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, opacity 0.3s ease;
  padding-top: 22px;
  padding-bottom: 12px;
  opacity: 1;
}

.filtrs .filtrers_block .section-header.collapsed+.section-content {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.filtrs .filtrers_block .filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 4px;
  padding-bottom: 16px;
}

.filtrs .filtrers_block .filter-option:hover {
  background: #4a4a4a;
}

.filtrs .filtrers_block .checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #666;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.filtrs .filtrers_block .checkbox.checked {
  background: orange;
  border-color: orange;
}

.filtrs .filtrers_block .checkbox.checked::after {
  content: "✓";
  color: #000;
  font-size: 21px;
}

.filtrs .filtrers_block .option-label {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.filtrs .filtrers_block .reset-btn {
  color: var(--text-gray, #c3c3c3);
  font-feature-settings: "liga" off, "clig" off;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  cursor: pointer;
  text-decoration: underline;
}

.filtrs .filtrers_block .reset-btn:hover {
  background: #4a4a4a;
}

.filtrs .filters_contnts {
  width: 100%;
}

.filtrs .filters_contnts .contents_top .top_info {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.filtrs .filters_contnts .contents_top .results_con {
  color: var(--btn-arrow, #87888a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filtrs .filters_contnts .contents_top .selects h4 {
  color: var(--btn-arrow, #87888a);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 8px;
}

.filtrs .filters_contnts .contents_top .selects .sort-dropdown {
  width: 100%;
  width: 300px;
  outline: none;
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  cursor: pointer;
  appearance: none;
  background-image: url(../img/Variant3.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  border-radius: 100px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background-color: var(--input, #494949);
  padding: 10px 20px;
}

.filtrs .filters_contnts .contents_top .selects .sort-dropdown:hover {
  background-color: #555;
  border-color: #888;
}

.filtrs .filters_contnts .contents_top .items_contents {
  padding-top: 20px;
}

.filtrs .filters_contnts .contents_top .items_contents .item {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

@media (max-width: 480px) {
  .filtrs .filters_contnts .contents_top .items_contents .item {
    flex-wrap: wrap;
  }
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-card {
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 8px 8px 16px 8px;
}

@media (max-width: 480px) {
  .filtrs .filters_contnts .contents_top .items_contents .item .product-card {
    width: 100%;
  }
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filtrs .filters_contnts .contents_top .items_contents .item .badge {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

.filtrs .filters_contnts .contents_top .items_contents .item .new-badge {
  position: absolute;
  top: 13px;
  right: 17px;
  color: var(--orange, #fdc400);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 10;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-image {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-image img {
  width: 100%;
  border-radius: 8px;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-image svg {
  width: 120px;
  height: 120px;
  fill: #333;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-info {
  color: #000;
  padding-top: 16px;
  position: relative;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-name {
  color: var(--white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-type {
  color: var(--btn-arrow, #87888a);
  font-size: 16px;
  font-style: normal;
  max-width: 80%;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.filtrs .filters_contnts .contents_top .items_contents .item .product-code {
  font-size: 12px;
  color: #999;
  text-align: right;
  position: absolute;
  right: 0;
  top: 48px;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  font-family: "Inter", sans-serif;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button.page {
  background: #2b2b2b;
  color: #fff;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button.page:hover {
  background: #3a3a3a;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button.page.active {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  color: #000;
  font-weight: 600;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button.nav {
  background: #4c4c4c;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: 0.2s;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button.nav:hover {
  background: #5a5a5a;
}

.filtrs .filters_contnts .contents_top .items_contents .pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.device .doc-section_device .doc-card {
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .device .doc-section_device .doc-card {
    flex-direction: column;
  }
}

.device .product-gallery {
  width: 500px;
  color: #fff;
  position: relative;
}

.device .doc-section {
  padding-top: 0;
}

.device .doc-section .doc-card .doc-right .doc-top h2 {
  font-size: 52px;
}

.device .doc-section .doc-card {
  align-items: flex-start;
}

.device .doc-section .doc-card .doc-left img {
  width: 100%;
  height: auto;
}

.device .doc-section .doc-card .doc-right {
  display: block;
}

.device .main-image {
  position: relative;
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.device .main-image img {
  width: 100%;
  border-radius: 10px;
}

.device .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 5px;
}

.device .new {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffb300;
  font-size: 14px;
}

.device .thumbs-swiper {
  margin: 25px 72px;
  position: relative;
}

.device .thumbs-swiper .swiper-slide {
  background: #2a2a2a;
  border-radius: 10px;
  max-width: 100px !important;
  max-height: 100px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.2s;
}

.device .thumbs-swiper .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

.device .thumbs-swiper .swiper-slide:hover {
  transform: scale(1.05);
}

.device .swiper-navigation-icon {
  display: none;
}

.device .swiper-button-prev {
  background: url(../img/Frame2.png);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(180deg);
  top: 30px;
}

.device .swiper-button-next {
  background: url(../img/Frame2.png);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 30px;
}

.device .swiper-button-prev::after,
.device .swiper-button-next::after {
  font-size: 16px;
}

/* Стрелки навигации для thumbs-swiper в doc-left */
.device .doc-left .thumbs-swiper-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.device .doc-left .thumbs-swiper {
  margin: 0;
  width: 430px;
}

.device .doc-left .thumbs-swiper-container .thumbs-nav-prev,
.device .doc-left .thumbs-swiper-container .thumbs-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../img/Frame2.png) no-repeat center;
  background-size: contain;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.device .doc-left .thumbs-swiper-container .thumbs-nav-prev {
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
}

.device .doc-left .thumbs-swiper-container .thumbs-nav-next {
  right: 0px;
  transform: translateY(-50%);
}

.device .doc-left .thumbs-swiper-container .thumbs-nav-prev::after,
.device .doc-left .thumbs-swiper-container .thumbs-nav-next::after {
  display: none;
}

@media (max-width: 1200px) {

  .device .doc-left .thumbs-swiper-container .thumbs-nav-prev,
  .device .doc-left .thumbs-swiper-container .thumbs-nav-next {
    display: none;
  }
}

@media (max-width: 480px) {

  .device .doc-left .thumbs-swiper-container .thumbs-nav-prev,
  .device .doc-left .thumbs-swiper-container .thumbs-nav-next {
    display: none;
  }

  .device .doc-left .thumbs-swiper-container .thumbs-nav-prev {
    left: -20px;
  }

  .device .doc-left .thumbs-swiper-container .thumbs-nav-next {
    right: -20px;
  }
}

.support_clay2 {
  padding-bottom: 40px;
}

.infoos_all {
  margin-bottom: 100px;
}

.infoos_all .info_block .info-slider {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
}

.infoos_all .info_block .info-title {
  color: var(--white, #fff);
  margin-bottom: 40px;
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.infoos_all .info_block .info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.infoos_all .info_block .tag {
  padding: 13px 4px 13px 12px;
  border-radius: 20px;
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #bbb;
  cursor: pointer;
  transition: 0.2s;
  border-radius: 100px;
  background: var(--input, #494949);
}

.infoos_all .info_block .tag span {
  font-weight: 400;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  margin-left: 8px;
}

.infoos_all .info_block .slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  gap: 25px;
  padding: 25px 5px;
  border-radius: 12px;
}

@media (max-width: 1150px) {
  .infoos_all .info_block .slide-content {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.infoos_all .info_block .text-left h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 20px;
}

.infoos_all .info_block .text-left p {
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 15px;
}

.infoos_all .info_block .text-left p:last-child {
  margin-bottom: 0;
}

.infoos_all .info_block .image-center img {
  width: 100%;
  transition: 0.3s;
}

.infoos_all .info_block .image-center h4 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 4px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
}

.infoos_all .info_block .text-right {
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  padding: 20px;
  margin-top: 53px;
  height: 372px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.infoos_all .info_block .text-right h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.infoos_all .info_block .text-right p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  opacity: 0.6;
}

.infoos_all .info_block .text-right a {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 16px */
  text-decoration: underline;
}

.infoos_all .info_block .image-center img:hover {
  transform: scale(1.03);
}

.infoos_all .info_block .swiper-button-prev {
  background: url(../img/Frame2.png);
  transform: rotate(180deg);
  width: 38px;
  height: 38px;
  top: 30px;
  background-size: cover;
  left: 1163px;
}

.infoos_all .info_block .swiper-button-next {
  color: #fff;
  background: url(../img/Frame2.png);
  width: 38px;
  height: 38px;
  top: 30px;
  background-size: cover;
}

.infoos_all .info_block .swiper-navigation-icon {
  display: none;
}

.infoos_all .info_block .swiper-button-prev::after,
.infoos_all .info_block .swiper-button-next::after {
  font-size: 18px;
}

.infoos_all2 {
  margin-top: 40px;
}

.mini_banner {
  background: var(--yellow, #ffeeb2);
  margin-bottom: 40px;
}

.mini_banner .menuss ul {
  display: flex;
  gap: 83px;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: none;
  /* Firefox uchun */
  -ms-overflow-style: none;
  /* eski IE/Edge uchun */
}

@media (max-width: 900px) {
  .mini_banner .menuss ul {
    gap: 30px;
  }
}

.mini_banner .menuss ul li a {
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 900px) {
  .mini_banner .menuss ul li a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.mini_banner .menuss ul button {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.new_infoss .title {
  display: flex;
  align-items: end;
  margin-bottom: 40px;
  gap: 20px;
}

.new_infoss .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.new_infoss .title a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
}

.new_infoss .items {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  margin-bottom: 20px;
}

.new_infoss .items h2 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 20px;
}

.new_infoss .items ul li {
  color: var(--white, #fff) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  list-style: disc;
  opacity: 0.8 !important;
  margin-bottom: 8px;
  margin-left: 20px;
}

.new_infoss .items ul li strong {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400 !important;
  opacity: 0.8;

}

.new_infoss .items .light-source {
  color: #fff;
}

.new_infoss .items .light-source .spec-row {
  display: inline-block;

  gap: 8px;
  font-size: 15px;
  color: #ddd;
  margin-bottom: 15px;
  position: relative;
}

.new_infoss .items .light-source .spec-row .label {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  line-height: 140%;
  /* 25.2px */
  position: relative;
  opacity: 0.8;
}

.new_infoss .items .light-source .spec-row .dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.24);
  margin: 0 5px;
  width: 10px;
  height: 1px;
  position: relative;
  bottom: 5px;
}

.new_infoss .items .light-source .spec-row .value {
  width: 290px;
  z-index: 1;
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  opacity: 0.8;
}

.new_infoss .items .light-source .spec-row .label,
.new_infoss .items .light-source .spec-row .value {
  position: relative;
  z-index: 1;
}

.new_infoss .items .light-source .note {
  font-size: 13px;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0.8;
  line-height: 1.4;
}

.new_infoss .frame-15 {
  width: 100%;
}

@media (max-width: 900px) {
  .new_infoss .frame-15 {
    width: 100%;
  }
}

.gibo {
  padding-bottom: 150px;
}

.gibo .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.gibo .item img {
  width: 100%;
}

.gibo .item .info {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  margin-top: 4px;
}

.gibo .item .info h3 {
  overflow: hidden;
  color: var(--white, #fff);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 12px;
}

.gibo .item .info p {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

.cards_device {
  padding-bottom: 0px;
}

@media (max-width: 900px) {
  .cards_device {
    padding-bottom: 100px;
  }
}

.fixtures_seconds {
  padding-top: 180px;
}

.fixtures_secondsq {
  padding-bottom: 150px;
}

@media (max-width: 900px) {
  .fixtures_secondsq {
    padding-bottom: 100px;
  }
}

.views_dev .doc-section .doc-buttons {
  border: none;
  padding: 0;
  background-color: transparent;
}

.views_dev .doc-section .doc-buttons h3 {
  color: var(--white, #fff);
  font-size: 38px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.fames {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .fames {
    padding-bottom: 100px;
  }
}

.fames .fames_block {
  display: flex;
  gap: 20px;
}

@media (max-width: 1150px) {
  .fames .fames_block {
    flex-wrap: wrap;
  }

  .fames .fames_block .fames_img {
    width: 100%;
  }
}

.fames .fames_block .info_fame {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
}

.fames .fames_block .info_fame h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .fames .fames_block .info_fame h2 {
    font-size: 26px;
  }
}

.fames .fames_block .info_fame h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  opacity: 0.6;
}

@media (max-width: 480px) {
  .fames .fames_block .info_fame h3 {
    font-size: 20px;
  }
}

.fames .fames_block .info_fame p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 20px;
  opacity: 0.6;
}

@media (max-width: 480px) {
  .fames .fames_block .info_fame p {
    font-size: 16px;
  }
}

.fames .fames_block .info_fame .btn_project {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 90px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
}

@media (max-width: 900px) {
  .fames .fames_block .info_fame .btn_project {
    width: 100%;
  }
}

@media (max-width: 1150px) {
  .fames .fames_block .info_fame {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .support_page {
    padding-bottom: 40px;
  }
}

.teamss .community {
  padding-top: 0;
}

.why_clay {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .why_clay {
    padding-bottom: 100px;
  }
}

.why_clay .block_clay {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
}

.why_clay .block_clay .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .why_clay .block_clay .title {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.why_clay .block_clay .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 900px) {
  .why_clay .block_clay .title h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .why_clay .block_clay .title h2 {
    font-size: 20px;
  }
}

.why_clay .block_clay .title a {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  text-decoration: underline;
}

.why_clay .block_clay .items {
  display: flex;
  gap: 20px;
}

@media (max-width: 1150px) {
  .why_clay .block_clay .items {
    flex-wrap: wrap;
  }
}

.why_clay .block_clay .items .item {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
}

@media (max-width: 900px) {
  .why_clay .block_clay .items .item {
    flex: 1 1 100%;
  }
}

.why_clay .block_clay .items .item h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .why_clay .block_clay .items .item h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .why_clay .block_clay .items .item h3 {
    font-size: 18px;
  }
}

.why_clay .block_clay .items .item p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  opacity: 0.6;
}

.flow_technolig {
  margin-bottom: 40px;
}

.flow_technolig .cards_device {
  padding-bottom: 0 !important;
}

.flow_technolig .flow {
  border-radius: 20px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
  padding: 20px 16px;
}

.flow_technolig .flow .top_items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 12px;
}

@media (max-width: 768px) {
  .flow_technolig .flow .top_items {
    flex-direction: column;
  }
}

.flow_technolig .flow .top_items .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  padding: 20px;
}

@media (max-width: 900px) {
  .flow_technolig .flow .top_items .text {
    width: 100%;
  }
}

.flow_technolig .flow .top_items .text h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
}

.flow_technolig .flow .top_items .text p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  max-width: 514px;
}

.flow_technolig .flow .top_items .text a {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 16px */
  text-decoration: underline;
}

.flow_technolig .flow .top_items .img_inov img {
  width: 100%;
  border-radius: 16px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  font-family: "Inter", sans-serif;
}

.pagination button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination button.page {
  background: #2b2b2b;
  color: #fff;
}

.pagination button.page:hover {
  background: #3a3a3a;
}

.pagination button.page.active {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  color: #000;
  font-weight: 600;
}

.pagination button.nav {
  background: #4c4c4c;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: 0.2s;
}

.pagination button.nav:hover {
  background: #5a5a5a;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}

.services .block_services .title {
  margin-bottom: 40px;
}

.services .block_services .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.services .block_services .block_info {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  display: flex;
  justify-content: space-between;
}

.services .block_services .block_info .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services .block_services .block_info .item p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 20px;
  opacity: 0.6;
}

.services .block_services .block_info .item a {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 331px;
}

@media (max-width: 480px) {
  .services .block_services .block_info .item a {
    max-width: 100%;
    text-align: center;
  }
}

.services .block_services .block_info .item img {
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 480px) {
  .services .block_services .block_info {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.study {
  padding-bottom: 180px;
}

.study .study_blocks {
  border-radius: 20px;
  background: var(--gray-block, #353536);
  padding: 20px;
}

.study .study_blocks .title {
  margin-bottom: 40px;
}

.study .study_blocks .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.study .study_blocks .items {
  display: flex;
  justify-content: space-between;
  hanging-punctuation: 20px;
  gap: 20px;
}

.study .study_blocks .items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: linear-gradient(216deg, #494949 48.65%, #5c5c5c 96.92%), #494949;
  padding: 16px;
  width: 613px;
  height: 258px;
}

.study .study_blocks .items .item h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  max-width: 283px;
}

.study .study_blocks .items .item p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  max-width: 345px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .study .study_blocks .items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.vnemani .fixtures .fixtures_block .lights-section a {
  width: 100%;
}

.vnemani .fixtures .fixtures_block .lights-section .light-card {
  margin-bottom: 20px;
}

.vnemani .fixtures .fixtures_block .lights-section .section-header h2 {
  font-size: 37px;
}

@media (max-width: 900px) {
  .vnemani .fixtures .fixtures_block .lights-section .section-header h2 {
    font-size: 26px;
  }
}

.vnemani .fixtures_secondsq {
  padding-bottom: 130px;
}

.fames_project {
  padding-bottom: 40px !important;
}

.fames_about {
  padding-bottom: 40px;
}

.missions {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .missions {
    padding-bottom: 100px;
  }
}

.missions .title {
  margin-bottom: 40px;
}

.missions .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

@media (max-width: 900px) {
  .missions .title h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .missions .title h2 {
    font-size: 26px;
  }
}

.missions .items img {
  width: 100%;
}

.missions .items .item_text {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.missions .items .item_text h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .missions .items .item_text h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .missions .items .item_text h3 {
    font-size: 20px;
  }
}

.missions .items .item_text p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 15px;
  opacity: 0.6;
}

.missions .items .item_text a {
  display: block;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 16px 26px;
  text-align: center;
  width: 100%;
  margin-top: 90px;
}

.why_clay .title_why h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.why_clay .title_abut h2 {
  font-size: 24px !important;
}

.why_clay_about .block_clay .items .item {
  height: 225px;
  text-align: left;
  display: flex;
  justify-content: end;
  align-items: end;
}

.why_clay_about .block_clay .items .item h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.services_support .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.services_support .first_items {
  display: flex;
  gap: 100px;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  flex-wrap: wrap;
}

.services_support .first_items .img_s {
  transform: translate(12px, 89px);
}

@media (max-width: 480px) {
  .services_support .first_items .img_s {
    display: none;
  }
}

.services_support .first_items .info h3 {
  color: var(--white, #fff);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 33.6px */
  margin-bottom: 16px;
}

.services_support .first_items .info p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  margin-bottom: 16px;
  max-width: 581px;
  opacity: 0.6;
}

.services_support .second_items {
  display: flex;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.services_support .second_items .img_items img {
  width: 100%;
}

.services_support .second_items .text_info {
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services_support .second_items .text_info h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.services_support .second_items .text_info p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  max-width: 555px;
  opacity: 0.6;
}

.services_support .second_items .text_info a {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 16px 26px;
  width: 100%;
  text-align: center;
}

.flow_technolig_about .flow {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
}

.flow_technolig_about .sertivfikat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  padding: 20px;
  height: 350px;
}

.flow_technolig_about .sertivfikat .item h4 {
  color: var(--white, #fff);
  /* 1920/h4-24 */
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
}

.flow_technolig_about .sertivfikat .item p {
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  opacity: 0.6;
}

.flow_technolig_about .sertivfikat a {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: underline;
  max-width: 300px;
}

.services_support2 .first_items .img_s {
  transform: translate(12px, 21px);
}

.missions_s {
  padding-top: 180px;
}

.inov {
  padding-bottom: 180px;
}

@media (max-width: 900px) {
  .inov {
    padding-bottom: 100px;
  }
}

.inov .inov_blocks .filtrss .filter-section {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  border-bottom: 0;
}

@media (max-width: 900px) {
  .inov .inov_blocks .filtrss .filter-section {
    align-items: flex-start;
    gap: 15px;
  }
}

.inov .inov_blocks .filtrss .filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .inov .inov_blocks .filtrss .filter-group {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .inov .inov_blocks .filtrss .sort-group {
    order: 2;
  }
}

.inov .inov_blocks .filtrss .filter-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.inov .inov_blocks .filtrss .select-wrapper {
  position: relative;
  min-width: 200px;
}

.inov .inov_blocks .filtrss select {
  width: 320px;
  padding: 10px 20px;
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
}

@media (max-width: 900px) {
  .inov .inov_blocks .filtrss select {
    width: 100%;
  }
}

.inov .inov_blocks .filtrss select:hover {
  background: #353535;
  border-color: #4d4d4d;
}

.inov .inov_blocks .filtrss select:focus {
  outline: none;
  border-color: #ffd500;
  background: #353535;
}

.inov .inov_blocks .filtrss .select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  font-size: 10px;
}

.inov .inov_blocks .filtrss .btn-primary {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 11px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.inov .inov_blocks .filtrss .btn-primary:hover {
  background: #ffdf33;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.inov .inov_blocks .filtrss .btn-primary:active {
  transform: translateY(0);
}

.inov .inov_blocks .filtrss .results-section {
  display: flex;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
  border-top: 1px solid #2d2d2d;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .inov .inov_blocks .filtrss .results-section {
    order: 1;
    padding: 0;
    margin: 0;
  }
}

.inov .inov_blocks .filtrss .results-count {
  font-size: 14px;
  color: #999;
}

.inov .inov_blocks .filtrss .btn-reset {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  padding: 16px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 768px) {
  .inov .inov_blocks .filtrss .filter-section {
    flex-direction: column;
  }

  .inov .inov_blocks .filtrss .select-wrapper {
    width: 100%;
  }

  .inov .inov_blocks .filtrss .btn-primary {
    width: 100%;
    margin-top: 10px;
  }

  .inov .inov_blocks .filtrss .results-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) and (max-width: 900px) {
  .inov .inov_blocks .filtrss .results-section {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .inov .inov_blocks .filtrss .btn-reset {
    width: 100%;
  }
}

.inov .inov_blocks .title h2 {
  color: var(--white, #fff);
  /* 1920/h2 */
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .inov .inov_blocks .title h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .inov .inov_blocks .title h2 {
    font-size: 26px;
  }
}

.inov .inov_blocks .items {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1150px) {
  .inov .inov_blocks .items {
    flex-wrap: wrap;
  }
}

@media (max-width: 1150px) {
  .inov .inov_blocks .items .item {
    width: 100%;
  }
}

.inov .inov_blocks .items .item h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
  padding: 20px;
  border-radius: 20px;
  background: var(--gray-block, #353536);
  width: 440px;
}

@media (max-width: 900px) {
  .inov .inov_blocks .items .item h3 {
    width: 100%;
  }
}

.inov .inov_blocks .items .item ul {
  border-radius: 20px;
  background: var(--gray-block, #353536);
  padding: 16px 30px;
  width: 100%;
}

.inov .inov_blocks .items .item li {
  color: var(--white, #fff);
  /* 1920/text-16 */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  list-style: disc;
  opacity: 0.6;
}

.inov .inov_blocks .items .item_s {
  width: 100%;
}

.inov .inov_blocks .items .item_s h4 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 33.6px */
  margin-bottom: 20px;
}

.inov .inov_blocks .items .item_s a {
  display: block;
}

.inov .inov_blocks .items .item_s p {
  color: var(--text-gray, #c3c3c3);
  /* 1920/text-16 */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
}

.inov .inov_blocks .items .item_s:hover h4 {
  color: var(--orange, #fdc400);
}

.why_clay .block_clay .items .item p {
  max-width: 275px;
}

.users_team {
  display: flex;
  flex-direction: column;
  padding-bottom: 180px;
  position: relative;
}

.users_team .board-bg {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.users_team .container {
  z-index: 2;
}

.users_team .user_block .top_title {
  margin-bottom: 60px;
}

.users_team .user_block .top_title h2 {
  color: var(--white, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 52px */
  margin-bottom: 20px;
}

.users_team .user_block .top_title p {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 140%;
  /* 25.2px */
  max-width: 710px;
}

.users_team .user_block .top_title p:last-child {
  margin-bottom: 0;
}

.users_team .user_block .users .title h3 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
  margin-bottom: 40px;
}

.users_team .user_block .users .items {
  display: flex;
  gap: 20px;
}

@media (max-width: 1150px) {
  .users_team .user_block .users .items {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.users_team .user_block .users .items .item .info {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  margin-top: 4px;
}

.users_team .user_block .users .items .item .info h5 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 12px;
}

.users_team .user_block .users .items .item .info p {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

@media (max-width: 480px) {
  .users_team .user_block .users .items .item {
    width: 100%;
  }

  .users_team .user_block .users .items .item img {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
}

.videos_block .title p {
  max-width: 710px;
  margin-top: 20px;
}

.videos_block .all_videos .item .contest h5 {
  max-width: 373px;
  overflow: initial;
  color: var(--text-gray, #c3c3c3);
  text-overflow: revert;
  white-space: normal;
}

.videos_block .title p {
  max-width: 710px;
  margin-top: 20px;
}

.videos_block .all_videos .item .contest h5 {
  max-width: 373px;
  overflow: initial;
  color: var(--text-gray, #c3c3c3);
  text-overflow: revert;
  white-space: normal;
}

.filtrss .filter-section {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  border-bottom: 0;
  gap: 20px;
}

@media (max-width: 900px) {
  .filtrss .filter-section {
    flex-direction: column;
    align-items: center;
  }
}

.filtrss .filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .filtrss .filter-group {
    width: 100%;
  }
}

.filtrss .sort-group {
  margin-left: auto;
}

@media (max-width: 900px) {
  .filtrss .sort-group {
    margin-left: 0;
  }
}

.filtrss .filter-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

.filtrss .select-wrapper {
  position: relative;
  min-width: 200px;
}

.filtrss select {
  width: 320px;
  padding: 10px 20px;
  color: var(--text-gray, #c3c3c3);
  font-size: 16px;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
  border-radius: 100px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
}

@media (max-width: 900px) {
  .filtrss select {
    width: 100%;
  }
}

.filtrss select:hover {
  background: #353535;
  border-color: #4d4d4d;
}

.filtrss select:focus {
  outline: none;
  border-color: #ffd500;
  background: #353535;
}

.filtrss .select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  font-size: 10px;
}

.filtrss .btn-primary {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 11px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 900px) {
  .filtrss .btn-primary {
    width: 100%;
  }
}

.filtrss .btn-primary:hover {
  background: #ffdf33;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 213, 0, 0.3);
}

.filtrss .btn-primary:active {
  transform: translateY(0);
}

.filtrss .results-section {
  display: flex;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
  border-top: 1px solid #2d2d2d;
  margin-bottom: 40px;
}

.filtrss .results-count {
  font-size: 14px;
  color: #999;
}

.filtrss .btn-reset {
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  padding: 16px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 768px) {
  .filtrss .filter-section {
    flex-direction: column;
  }

  .filtrss .select-wrapper {
    width: 100%;
  }

  .filtrss .btn-primary {
    width: 100%;
    margin-top: 10px;
  }

  .filtrss .results-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .filtrss .btn-reset {
    width: 100%;
  }
}

.videos_block .all_videos .item .contest h4 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.videos_block2 .all_videos .item .contest {
  height: 251px;
}

.fames .item {
  border-radius: 16px;
  background: var(--input, #494949);
  padding: 16px;
  margin-bottom: 20px;
}

.fames .item:last-child {
  margin-bottom: 0;
}

.fames .item h5 {
  color: var(--white, #fff);
  /* 1920/h4-24 */
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
}

.fames .item h6 {
  color: var(--text-gray, #c3c3c3);
  /* 1920/text-18 */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  margin-bottom: 12px;
}

.fames .item h6 img {
  margin-right: 6px;
}

.fames .item h6:last-child {
  margin-bottom: 0;
}

.maps {
  padding-bottom: 180px;
}

.maps iframe {
  width: 100%;
  height: 480px;
}

.links {
  padding-bottom: 180px;
}

.links .title {
  margin-bottom: 40px;
}

.links .title h2 {
  color: var(--white, #fff);
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 45.6px */
}

.links .items {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links .items a {
  color: var(--text-gray, #c3c3c3);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

.links .items a:hover {
  color: var(--orange, #fdc400);
}

.links .items a img {
  margin-left: 8px;
}

.links .items .active {
  color: var(--orange, #fdc400);
}

.view {
  margin-top: 60px;
}

.view .infos p {
  color: var(--text-gray, #c3c3c3);
  /* 1920/text-16 */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 140%;
  /* 22.4px */
}

.view .items_block {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}

.view .items_block .item_q {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
  padding: 20px;
  height: 225px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 48%;
}

@media (max-width: 900px) {
  .view .items_block .item_q {
    width: 100%;
  }
}

.view .items_block .item_q h3 {
  color: var(--white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 28.8px */
}

.view .items_block .item_q p {
  color: var(--text-gray, #c3c3c3);
  /* 1920/text-18 */
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
}

.fames .fames_block .info_fame h3 {
  margin-bottom: 16px;
}

.fames .inf_s h4 {
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 25.2px */
  opacity: 0.6;
  margin-top: 30px;
  margin-bottom: 12px;
}

.fames .inf_s .btns {
  margin-bottom: 150px;
}

@media (max-width: 900px) {
  .fames .inf_s .btns {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .fames .inf_s .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.fames .inf_s .btns .iteme {
  margin-bottom: 8px;
}

.fames .inf_s .btns .iteme a {
  color: var(--black, #262727);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  border-radius: 100px;
  background: var(--yellow, #ffeeb2);
  padding: 6px 20px;
}

.fames .inf_s .btn-primary {
  border-radius: 100px;
  background: var(--orange, #fdc400);
  padding: 11px 26px;
  color: var(--black, #262727);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 480px) {
  .fames .inf_s .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.why_clay_f .block_clay {
  background-color: transparent;
  border: none;
  padding: 0;
}

.why_clay_f .block_clay .items .item {
  border-radius: 20px;
  border: 1px solid var(--stroke-block, #2f3030);
  background: var(--gray-block, #353536);
}

.address .info_fame {
  width: 600px !important;
}

.fames_block iframe {
  height: auto;
}

.search_block {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .search_block {
    flex-wrap: wrap;
  }
}

.search_block h1 {
  color: var(--white, #fff);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

@media (max-width: 900px) {
  .search_block h1 {
    font-size: 42px;
  }
}

.search_block span {
  display: inline-block;
  background-color: #353536;
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--white, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.viewSwiper img {
  width: 100%;
  height: 100%;
}

.viewSwiper .swiper-pagination-bullet {
  width: 300px;
  height: 4px;
  border-radius: 0;
  background-color: #fff;
  border-radius: 100px;
}

@media (max-width: 1150px) {
  .viewSwiper .swiper-pagination-bullet {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .viewSwiper .swiper-pagination-bullet {
    width: auto;
  }
}

.links_inov {
  max-width: 400px;
}

.links_inov a {
  display: inline-block;
  color: #fff;
  opacity: 0.6;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 10px;
}

.links_inov a:hover {
  opacity: 1;
}

.block_info-text {
  max-width: 481px;
}

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 1000;
  animation: fadeIn 0.3s;
}

.search-modal.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.search-modal-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  animation: slideDown 0.3s;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-header {
  position: relative;
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
  background: #1a1a1a;
  border: 1px solid rgb(47, 48, 48);
  border-radius: 100px;
  padding: 15px 60px 15px 50px;
  transition: border-color 0.3s;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 20px;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  outline: none;
}

.search-input::placeholder {
  color: #666;
}

.close-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.3s;
}

.close-search:hover {
  color: #fff;
}

.search-section {
  background: rgb(26, 26, 26);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  margin-top: 80px;
}

.section-title {
  font-size: 18px;
  color: rgb(222, 222, 222);
  margin-bottom: 20px;
}

.popular-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popular-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: rgb(195, 195, 195);
  font-size: 18px;
}

.popular-item:hover {
  color: #d4af37;
}

.popular-item.highlighted {
  color: #d4af37;
}

.arrow {
  color: #d4af37;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.popular-item:hover .arrow {
  opacity: 1;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.view-all {
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
}

.view-all:hover {
  color: #d4af37;
}

.result-item {
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 10px;
}

.result-item:hover {
  background: #2a2a2a;
  border-color: #d4af37;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: #666;
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .search-modal-content {
    padding: 20px;
  }

  .search-input {
    font-size: 16px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal-container {
  background: rgb(47, 48, 48);
  width: 90%;
  max-width: 90%;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}

.modal-container .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: 1px solid #555;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.modal-content .modal-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
  max-width: 450px;
  font-weight: 400;
}

.modal-content p {
  color: rgb(195, 195, 195);
  line-height: 140%;
  font-size: 18px;
  font-weight: 400;
  max-width: 435px;
}

.modal-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 326px;
  color: rgb(195, 195, 195);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.modal-badge .dot {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: rgb(253, 196, 0);
  border-radius: 50%;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-form input {
  background: rgb(73, 73, 73);
  border: 1px solid rgb(92, 92, 92);
  padding: 14px 20px;
  color: rgb(195, 195, 195);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 400;
}

.modal-form input::placeholder {
  color: rgb(195, 195, 195);
}

.modal-form input:focus {
  outline: none;
}

.modal-form textarea {
  padding: 14px 20px;
  background: rgb(73, 73, 73);
  border: 1px solid rgb(92, 92, 92);
  border-radius: 20px;
  height: 120px;
  resize: none;
}

.modal-form textarea::placeholder {
  color: rgb(195, 195, 195);
}

.modal-form textarea:focus {
  outline: none;
}

.modal-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-form .options {
  font-size: 14px;
  color: #fff;
  display: flex;
  margin-top: 10px;
}

.modal-form .options .options_s {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.modal-form .options input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  padding: 0;
}

.modal-form .options input[type=checkbox]:hover {
  border-color: #fcd602;
}

.modal-form .options input[type=checkbox]:checked {
  background-color: #fcd602;
  border-color: #fcd602;
}

.modal-form .options input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 8px;
  height: 16px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal-form .options p {
  margin-right: 10px;
  font-size: 14px;
  color: #fff;
}

.modal-form .options label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.modal-form .options label input {
  accent-color: #fcd602;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid var(--stroke-input, #5c5c5c);
  background: var(--input, #494949);
}

.modal-form .submit-btn {
  background: rgb(253, 196, 0);
  border: none;
  padding: 15px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s;
}

.modal-form .submit-btn:hover {
  transform: scale(1.02);
}

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