@charset "UTF-8";
/* Подключение Montserrat Arm */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat arm";
  src: url("../../fonts/montserratarm/Montserratarm-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "arm bebas neue";
  src: url("../../fonts/armbebas/armbebas.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  font-family: "montserrat arm", sans-serif;
  transition: 0.3s;
  box-sizing: border-box;
}
*:hover {
  transition: 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #EFEFEF;
}

ul,
ol {
  list-style: none;
}

a {
  display: block;
  text-decoration: none;
}

img {
  display: block;
}

button,
input,
textarea,
select {
  display: block;
  outline: none;
  border: none;
  background: none;
}

button,
select {
  cursor: pointer;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.product {
  width: 100%;
  max-width: 244px;
  position: relative;
  background: #F9F5F5;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .product {
    max-width: 290px;
    min-width: 290px;
    background: transparent;
  }
}
.product__offer {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11px;
  color: #fff;
  font-weight: 500;
  z-index: 1020;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .product__offer {
    top: 15px;
    left: 20px;
  }
}
.product__pic {
  width: 100%;
  height: 186px;
  padding: 10px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1010;
}
@media (max-width: 768px) {
  .product__pic {
    height: 280px;
    width: 290px;
    border-radius: 36px;
    overflow: hidden;
  }
}
.product__pic:hover .product__pic_img {
  transform: scale(1.1);
}
.product__pic_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.product__wishlist {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 27px;
  height: 25px;
  z-index: 1030;
}
@media (max-width: 768px) {
  .product__wishlist {
    top: 16px;
    right: 32px;
    width: 35px;
    height: 32px;
  }
}
.product__wishlist_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.product__wishlist_icon.checked {
  opacity: 0;
}
.product__wishlist.active .product__wishlist_icon {
  opacity: 0;
}
.product__wishlist.active .product__wishlist_icon.checked {
  opacity: 1;
}
.product__desc {
  padding: 10px;
  height: 120px;
}
@media (max-width: 768px) {
  .product__desc {
    background: none;
    padding: 45px 25px 20px;
    height: 200px;
  }
}
.product__desc_time {
  display: none;
}
.product__desc_price {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product__desc_price_static {
  color: #000;
  opacity: 0.3;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 768px) {
  .product__desc_price_static {
    font-size: 24px;
    line-height: 30px;
  }
}
.product__desc_price_static::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(-10deg);
}
.product__desc_price_static .currency {
  font-weight: 600;
  font-size: 14px;
  color: #000;
}
.product__desc_price_new {
  color: #F62B02;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .product__desc_price_new {
    font-size: 32px;
    line-height: 30px;
  }
}
.product__desc_price_new .currency {
  font-weight: 600;
  font-size: 16px;
  color: #F62B02;
}
.product__desc_name, .product__desc_txt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__desc_name {
  margin: 5px 0 8px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .product__desc_name {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    margin: 8px 0;
  }
}
.product__desc_txt {
  font-size: 14px;
  color: #8F8F8F;
}
@media (max-width: 768px) {
  .product__desc_txt {
    font-size: 18px;
    line-height: 20px;
  }
}
.product__btn {
  background: #0080E5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 12px;
  border-radius: 2px;
  width: 100%;
  position: relative;
  z-index: 1030;
}
@media (max-width: 768px) {
  .product__btn {
    border-radius: 20px;
    border: 2px solid #FFFBFB;
    width: 77px;
    height: 73px;
    position: absolute;
    top: 226px;
    right: 10px;
  }
}
.product__btn:hover {
  background: #005fa8;
}
.product__btn_icon {
  width: 20px;
}
@media (max-width: 768px) {
  .product__btn_icon {
    width: 31px;
  }
}
.product__btn_txt {
  color: #fff;
  font-weight: 400;
}
@media (max-width: 768px) {
  .product__btn_txt {
    display: none;
  }
}

.seeMore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  width: 240px;
  padding: 14px;
  font-size: 14px;
  color: #0B2543;
  border: 0.86px solid #0B2543;
}
@media (max-width: 768px) {
  .seeMore {
    width: 100vw;
    max-width: 540px;
    padding: 22px;
  }
}
.seeMore:hover {
  border-color: #F62B02;
}

.footer a:hover {
  color: #F62B02;
}
.footer__lang {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__lang_btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__lang_btn:hover .footer__lang_btn_globus {
  transform: scale(1.2);
}
.footer__lang_btn_txt {
  font-size: 16px;
  font-weight: 400;
  color: #7F7F7F;
}
.footer__lang_btn_globus {
  width: 20px;
  height: 20px;
}
.footer__lang_btns {
  display: flex;
  max-width: 0px;
  overflow: hidden;
}
.footer__lang_btns_btn {
  font-size: 16px;
  font-weight: 400;
  color: #7F7F7F;
  white-space: nowrap;
  padding: 12px;
}
.footer__lang_btns_btn:hover {
  color: #fff;
}
.footer__container.gray {
  background: #151515;
  position: relative;
  padding: 36px 0;
}
@media (max-width: 768px) {
  .footer__container.gray {
    padding: 0 0 60px;
  }
}
.footer__container.gray::before {
  content: "";
  display: block;
  width: 50%;
  height: 7px;
  background: #F62B02;
  position: absolute;
  top: -7px;
  left: 0;
}
@media (max-width: 768px) {
  .footer__container.gray::before {
    display: none;
  }
}
.footer__container.gray::after {
  content: "";
  display: block;
  width: 50%;
  height: 7px;
  position: absolute;
  top: -7px;
  left: 50%;
  background: #0080E5;
}
@media (max-width: 768px) {
  .footer__container.gray::after {
    display: none;
  }
}
.footer__container.black {
  background: #000;
}
.footer__wrapper {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    padding: 0 26px;
  }
}
.footer__menu {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    gap: 0px;
  }
}
@media (max-width: 768px) {
  .footer__menu_el {
    width: 100%;
  }
  .footer__menu_el:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2509803922);
  }
}
.footer__menu_el_title {
  height: 40px;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 170px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__menu_el_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    max-width: 100%;
    padding: 35px 0;
    width: 100%;
    height: auto;
  }
}
.footer__menu_el_title img {
  display: none;
}
@media (max-width: 768px) {
  .footer__menu_el_title img {
    display: block;
  }
}
.footer__menu_el_title.active img {
  transform: rotate(180deg);
}
.footer__menu_el_list {
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__menu_el_list {
    gap: 0;
    overflow: hidden;
    max-height: 0px;
    margin-top: -10px;
  }
  .footer__menu_el_list li:last-child {
    display: block;
    padding-bottom: 20px;
  }
}
.footer__menu_el_list_link {
  font-size: 15px;
  line-height: 1.5;
  display: block;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.footer__bankList {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__bankList {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }
}
.footer__bankList_link {
  display: block;
  padding: 28px 0;
}
@media (max-width: 768px) {
  .footer__bankList_link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
  }
}
.footer__bankList_link:hover img {
  transform: scale(1.2);
}
.footer__content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 34px 0 20px;
}
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
  .footer__content.bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 65px 0px 50px 14px;
    gap: 50px;
  }
}
.footer__desc {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 490px;
}
@media (max-width: 768px) {
  .footer__desc {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .footer__desc.big {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .footer__desc.big .footer__desc_txt {
    font-size: 16px;
  }
}
.footer__desc_title {
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer__desc_title {
    font-size: 27px;
  }
}
.footer__desc_txt {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media (max-width: 768px) {
  .footer__desc_txt {
    font-size: 21px;
  }
}
@media (max-width: 768px) {
  .footer__desc_social {
    padding-top: 34px;
  }
}
.footer__desc_social_list {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .footer__desc_social_list {
    gap: 25px;
  }
}
.footer__desc_social_link, .footer__desc_social_txt {
  font-weight: 400;
  font-size: 14px;
  color: #D9D9D9;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .footer__desc_social_link, .footer__desc_social_txt {
    font-size: 19px;
    margin-bottom: 9px;
  }
}
@media (max-width: 768px) {
  .footer__desc_social_link_icon, .footer__desc_social_txt_icon {
    width: 28px;
    height: 28px;
  }
}
.footer__desc_social_link.bold, .footer__desc_social_txt.bold {
  font-weight: 500;
}
.footer__pic {
  width: 144px;
}
@media (max-width: 768px) {
  .footer__pic {
    grid-column: 1/2;
    grid-row: 1/2;
    width: 100%;
  }
  .footer__pic img {
    width: 100%;
  }
}
.footer__pic_txt {
  text-align: center;
  font-size: 10px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer__pic_txt {
    font-size: 16px;
    margin-top: 10px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #efefef;
  box-shadow: 0px 1px 8.7px 0px rgba(0, 0, 0, 0.2);
  z-index: 1090;
}
@media (max-width: 768px) {
  .navbar__container {
    display: none;
  }
}
.navbar__container.black {
  background: #000;
  padding: 6px 0;
}
.navbar__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1700px;
  padding: 0 15px;
  margin: 0 auto;
}
.navbar__wrapper.bottom {
  padding: 13px 15px;
}
.navbar__contacts {
  display: flex;
  gap: 30px;
}
.navbar__contacts_el {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__contacts_el_icon {
  width: 15px;
  height: auto;
}
.navbar__contacts_el_link {
  color: #7C7C7C;
  font-size: 13px;
  font-weight: 500;
}
.navbar__contacts_el_link:hover {
  color: #F73004;
}
.navbar__burger #burger {
  width: 100%;
  background: rgba(0, 0, 0, 0.5647058824);
  position: absolute;
  top: 0;
  z-index: 1100;
  left: -100%;
  transition: 0.3s;
  opacity: 0;
}
.navbar__burger #burger.active {
  left: 0;
  opacity: 1;
}
.navbar__burger #burger .burger {
  display: flex;
  width: 100%;
  height: 100%;
}
.navbar__burger #burger .burger__menu {
  position: relative;
  z-index: 1200;
}
.navbar__burger #burger .burger__menu, .navbar__burger #burger .burger__submenu {
  background: #fff;
  width: 330px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.navbar__burger #burger .burger__menu::-webkit-scrollbar, .navbar__burger #burger .burger__submenu::-webkit-scrollbar {
  background: #fff;
  width: 9px;
  border-radius: 20px;
}
.navbar__burger #burger .burger__menu::-webkit-scrollbar-thumb, .navbar__burger #burger .burger__submenu::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  width: 9px;
  border-radius: 20px;
}
.navbar__burger #burger .burger__menu_list, .navbar__burger #burger .burger__submenu_list {
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 13px;
}
.navbar__burger #burger .burger__menu_list_link, .navbar__burger #burger .burger__submenu_list_link {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 13px;
}
.navbar__burger #burger .burger__menu_list_link_txt, .navbar__burger #burger .burger__submenu_list_link_txt {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-left: 24px;
}
.navbar__burger #burger .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link_arr {
  display: block;
  margin-left: auto;
  opacity: 0;
}
.navbar__burger #burger .burger__menu_list_link:hover, .navbar__burger #burger .burger__menu_list_link.active, .navbar__burger #burger .burger__submenu_list_link:hover, .navbar__burger #burger .burger__submenu_list_link.active {
  background: #E8E4E4;
}
.navbar__burger #burger .burger__menu_list_link.active .burger__menu_list_link_arr, .navbar__burger #burger .burger__menu_list_link:hover .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link.active .burger__menu_list_link_arr, .navbar__burger #burger .burger__submenu_list_link:hover .burger__menu_list_link_arr {
  opacity: 1;
}
.navbar__burger #burger .burger__submenu {
  position: absolute;
  left: -100%;
  transition: 0.5s;
  z-index: 1100;
  padding: 20px 13px;
  height: -moz-fit-content;
  height: fit-content;
}
.navbar__burger #burger .burger__submenu_title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 0 13px;
}
.navbar__burger #burger .burger__submenu_list {
  padding: 0;
}
.navbar__burger #burger .burger__submenu_list_link {
  padding: 13px;
}
.navbar__burger #burger .burger__submenu.active {
  left: 330px;
}
.navbar__burger #burger .burger__submenu:hover {
  left: 330px;
}
.navbar__lang {
  position: relative;
}
@media (max-width: 768px) {
  .navbar__lang {
    border-radius: 6px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.navbar__lang_title {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .navbar__lang_title {
    font-size: 22px;
  }
}
.navbar__lang_list_link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 6px 3px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .navbar__lang_list_link {
    padding: 8px 0;
  }
}
.navbar__lang_list_link:hover {
  background: #E8E4E4;
}
.navbar__lang_list_link_checked {
  margin-left: auto;
  display: none;
}
.navbar__lang_list_link_checked.active {
  display: block;
}
.navbar__lang_list_link_flag {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .navbar__lang_list_link_flag {
    width: 32px;
    height: 32px;
  }
}
.navbar__lang_list_link_txten {
  color: #7C7C7C;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .navbar__lang_list_link_txten {
    font-size: 22px;
  }
}
.navbar__lang_list_link_txt {
  font-size: 15px;
  font-weight: 400;
  color: #161616;
}
.navbar__lang_btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 6px;
  border-radius: 6px;
  gap: 6px;
}
@media (max-width: 768px) {
  .navbar__lang_btn {
    background: none;
    padding: 12px;
  }
}
@media (min-width: 768px) {
  .navbar__lang_btn:hover {
    background: #fff;
  }
  .navbar__lang_btn:hover .navbar__lang_btn_txt {
    color: #000;
  }
}
.navbar__lang_btn_flag {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .navbar__lang_btn_flag {
    width: 32px;
    height: 32px;
  }
}
.navbar__lang_btn_txt {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .navbar__lang_btn_txt {
    display: none;
  }
}
.navbar__lang_wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  top: 35px;
  right: 0;
  width: 280px;
  z-index: 102000;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4392156863);
}
@media (max-width: 768px) {
  .navbar__lang_wrapper {
    padding: 12px;
    top: 70px;
  }
}
.navbar__lang_wrapper.active {
  visibility: visible;
  opacity: 1;
}
.navbar__search {
  width: 100%;
  max-width: 940px;
  position: relative;
}
@media (max-width: 1296px) {
  .navbar__search {
    max-width: 680px;
  }
}
.navbar__search_photo, .navbar__search_loop {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.navbar__search_photo input, .navbar__search_loop input {
  display: none;
}
.navbar__search_photo:hover .navbar__search_photo_icon, .navbar__search_photo:hover .navbar__search_loop_icon, .navbar__search_loop:hover .navbar__search_photo_icon, .navbar__search_loop:hover .navbar__search_loop_icon {
  transform: scale(1.1);
}
.navbar__search_photo {
  right: 19px;
}
.navbar__search_loop {
  right: 64px;
}
.navbar__search_inp {
  background: #fff;
  width: 100%;
  border-radius: 15px;
  padding: 21px 57px;
  font-size: 18px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 1296px) {
  .navbar__search_inp {
    font-size: 16px;
  }
}
.navbar__search_inp::-moz-placeholder {
  font-size: 18px;
}
.navbar__search_inp::placeholder {
  font-size: 18px;
}
@media (max-width: 1296px) {
  .navbar__search_inp::-moz-placeholder {
    font-size: 16px;
  }
  .navbar__search_inp::placeholder {
    font-size: 16px;
  }
}
.navbar__controls {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 1296px) {
  .navbar__controls {
    gap: 30px;
  }
}
.navbar__controls_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.navbar__controls_btn:hover .navbar__controls_btn_icon {
  transform: scale(1.2);
}
.navbar__controls_btn:hover .navbar__controls_btn_txt {
  color: #F73004;
}
.navbar__controls_btn_txt {
  font-size: 14px;
}
.navbar__controls_btn_icon {
  height: 24px;
}
.navbar__logo_img {
  width: 132px;
}
@media (max-width: 1296px) {
  .navbar__logo_img {
    width: 100px;
  }
}

.navbarMobile {
  display: none;
}
@media (max-width: 768px) {
  .navbarMobile {
    display: block;
  }
  .navbarMobile__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    box-shadow: 0px 1px 8.7px 0px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1200;
  }
  .navbarMobile__btns {
    display: flex;
    gap: 20px;
  }
  .navbarMobile__btns > * {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 15px;
  }
  .navbarMobile__btns_phone {
    background: #0080E5;
  }
  .navbarMobile__btns_phone_icon {
    width: 26px;
  }
  .navbarMobile__btns_sign, .navbarMobile__btns_basket {
    background: #E4E3E3;
    border: 1px solid #fff;
  }
  .navbarMobile__btns_sign_icon, .navbarMobile__btns_basket_icon {
    height: 28px;
  }
  .navbarMobile__btns_burger_icon {
    display: block;
    width: 61px;
    height: 64px;
  }
  .navbarMobile__btns_burger_icon.active {
    display: none;
  }
  .navbarMobile__btns_burger.active .navbarMobile__btns_burger_icon {
    display: none;
  }
  .navbarMobile__btns_burger.active .navbarMobile__btns_burger_icon.active {
    display: block;
  }
  .navbarMobile .mobileBurger {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1190;
    background: #EFEFEF;
    width: 100%;
  }
  .navbarMobile .mobileBurger.active {
    left: 0;
  }
  .navbarMobile .mobileBurger__search {
    padding: 20px 26px;
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .navbarMobile .mobileBurger__search form {
    width: 100%;
  }
  .navbarMobile .mobileBurger__search_lab {
    position: relative;
    width: 100%;
  }
  .navbarMobile .mobileBurger__search_lab_inp {
    width: 100%;
    border-radius: 15px;
    background: #FFFFFF;
    padding: 27px 25px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
  }
  .navbarMobile .mobileBurger__search_lab_inp::-moz-placeholder {
    font-size: 18px;
    font-weight: 400;
    color: rgba(124, 124, 124, 0.6980392157);
  }
  .navbarMobile .mobileBurger__search_lab_inp::placeholder {
    font-size: 18px;
    font-weight: 400;
    color: rgba(124, 124, 124, 0.6980392157);
  }
  .navbarMobile .mobileBurger__search_lab_btn {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translate(0, -50%);
  }
  .navbarMobile .mobileBurger__search_lab_btn_icon {
    width: 30px;
  }
  .navbarMobile .mobileBurger__search_lab_photo {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    cursor: pointer;
  }
  .navbarMobile .mobileBurger__search_lab_photo_icon {
    width: 40px;
  }
  .navbarMobile .mobileBurger__search_lab_photo_inp {
    display: none;
  }
  .navbarMobile .mobileBurger__container {
    padding: 0 26px 26px;
    position: relative;
  }
  .navbarMobile .mobileBurger__container::before {
    content: "";
    right: 26px;
    background: #0080E5;
  }
  .navbarMobile .mobileBurger__container::after {
    content: "";
    left: 26px;
    background: #F62B02;
  }
  .navbarMobile .mobileBurger__container::after, .navbarMobile .mobileBurger__container::before {
    display: block;
    width: calc(50% - 26px);
    height: 7px;
    position: absolute;
    bottom: 23px;
  }
  .navbarMobile .mobileBurger__wrapper {
    background: #fff;
    height: 100%;
    padding-right: 4px;
    padding-top: 4px;
  }
  .navbarMobile .mobileBurger__footer {
    display: grid;
    gap: 35px;
    padding: 30px 40px;
  }
  .navbarMobile .mobileBurger__footer_link {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
  .navbarMobile .mobileBurger__footer_link_icon {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navbarMobile .mobileBurger__footer_link_txt {
    font-size: 25px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu {
    position: relative;
    height: 67%;
    max-height: 67%;
    overflow-y: auto;
    padding: 0px 25px 0 13px;
  }
  .navbarMobile .mobileBurger__menu::-webkit-scrollbar {
    width: 9px;
    background: transparent;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu::-webkit-scrollbar-thumb {
    width: 9px;
    background: #AAAAAA;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn {
    display: flex;
    align-items: center;
    gap: 38px;
    margin: 2px 0;
    padding: 15px 20px;
    background: #E8E4E4;
    border-radius: 13px;
    width: 100%;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_icon {
    width: 38px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_arr {
    margin-left: auto;
    width: 14px;
  }
  .navbarMobile .mobileBurger__menu_btns_btn_txt {
    font-size: 28px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list {
    position: absolute;
    background: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 14px 25px;
    left: -100%;
  }
  .navbarMobile .mobileBurger__menu_list.active {
    left: 0;
  }
  .navbarMobile .mobileBurger__menu_list_title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 90%;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu {
    height: 86%;
    max-height: 86%;
    overflow-y: auto;
    padding: 5px 25px 0 13px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu::-webkit-scrollbar {
    width: 9px;
    background: transparent;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu::-webkit-scrollbar-thumb {
    width: 9px;
    background: #AAAAAA;
    border-radius: 20px;
  }
  .navbarMobile .mobileBurger__menu_list .mobileBurgerMenu__list_link {
    padding: 10px 0;
    font-size: 24px;
    font-weight: 400;
    color: #0B2543;
  }
  .navbarMobile .mobileBurger__menu_list_closeBtn {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .navbarMobile .mobileBurger__menu_list_closeBtn_icon {
    width: 24px;
  }
  .navbarMobile .mobileBurger__scroll {
    height: 100%;
  }
}

.news {
  padding: 90px 0 115px;
}
@media (max-width: 768px) {
  .news {
    padding: 80px 0 100px;
  }
}
.news__container {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .news__container {
    padding: 0 25px;
  }
}
.news__title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .news__title {
    margin-bottom: 45px;
    text-align: left;
  }
}
.news__wrapper {
  display: flex;
  gap: 15px;
}
@media (max-width: 1296px) {
  .news__wrapper {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .news__wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.news__about {
  width: 100%;
  max-width: 410px;
}
@media (max-width: 768px) {
  .news__about {
    max-width: 100%;
  }
}
.news__about_title {
  color: #0B2543;
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .news__about_title {
    font-size: 29px;
  }
}
.news__about_txt {
  font-size: 14px;
  margin: 10px 0 20px;
  color: #0B2543;
}
@media (max-width: 768px) {
  .news__about_txt {
    font-size: 18px;
    margin: 13px 0 25px;
  }
}
.news__about_video img,
.news__about_video video {
  width: 100%;
  border-radius: 2px;
}
.news__list {
  border-radius: 12px;
  background: #E8E4E4;
  padding: 12px 34px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1210px;
}
@media (max-width: 1296px) {
  .news__list {
    gap: 15px;
    border-radius: 0;
    padding: 12px 25px 25px;
  }
}
@media (max-width: 768px) {
  .news__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .news__list_el {
    padding: 5px 0;
  }
}
.news__list_el_logo {
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  .news__list_el_logo {
    margin-bottom: 25px;
  }
}
.news__list_el_media img,
.news__list_el_media video {
  width: 100%;
  height: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1296px) {
  .news__list_el_media img,
  .news__list_el_media video {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .news__list_el_media img,
  .news__list_el_media video {
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news__list_el_txt {
  font-size: 14px;
  margin: 16px 0 20px;
  color: #00305D;
}
@media (max-width: 768px) {
  .news__list_el_txt {
    font-size: 19px;
    margin: 21px 0 30px;
  }
}
.news__list_el_link {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  color: #0B2543;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .news__list_el_link {
    font-size: 19px;
  }
}
.news__list_el_link::before {
  content: "";
  display: block;
  height: 1px;
  width: 80px;
  border-top: 1px solid #0B2543;
  position: absolute;
  top: -6px;
  left: 0;
}
@media (max-width: 768px) {
  .news__list_el_link::before {
    width: 108px;
  }
}

.headerWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 20px 15px;
}
@media (max-width: 768px) {
  .headerWrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
.headerWrapper .seeMore {
  display: none;
}
@media (max-width: 768px) {
  .headerWrapper .seeMore {
    display: flex;
    min-width: 540px;
    margin-top: 24px;
  }
}
.headerWrapper .seeMoreDesktop {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #0080E5;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .headerWrapper .seeMoreDesktop {
    display: none;
  }
}
.headerWrapper .headerSlider {
  position: relative;
  grid-column: 2/4;
  width: 100%;
  background: #E8E4E4;
  border-radius: 12px;
  padding: 20px;
}
.headerWrapper .headerSlider .swiper-wrapper {
  height: auto;
}
@media (max-width: 768px) {
  .headerWrapper .headerSlider {
    padding: 20px 2px 45px;
    background: none;
  }
}
.headerWrapper .headerSlider__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .headerWrapper .headerSlider__title {
    padding-left: 26px;
    font-size: 20px;
    font-weight: 700;
  }
}
@media (max-width: 768px) {
  .headerWrapper .headerSlider__title_img {
    display: none;
  }
}
.headerWrapper .headerSlider__btns {
  position: absolute;
  top: 14px;
  right: 13px;
  display: flex;
  gap: 9px;
}
@media (max-width: 768px) {
  .headerWrapper .headerSlider__btns {
    top: 4px;
    right: 26px;
  }
}
.headerWrapper .headerSlider__btns_btn {
  width: 43px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.74px solid rgba(0, 0, 0, 0.3019607843);
}
@media (max-width: 768px) {
  .headerWrapper .headerSlider__btns_btn {
    width: 58px;
    height: 48px;
  }
}
.headerWrapper .headerSlider__btns_btn:hover {
  border-color: #F62B02;
}
.headerWrapper .headerSlider__btns_btn.next img {
  transform: rotate(180deg);
}
.headerWrapper .headerFilter {
  background: #E8E4E4;
  border-radius: 12px;
  padding: 20px;
}
@media (max-width: 768px) {
  .headerWrapper .headerFilter {
    margin: 20px 26px 50px;
    padding: 30px 25px;
  }
}
.headerWrapper .headerFilter .someLink {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #0080E5;
  margin-top: 18px;
}
.headerWrapper .headerFilter__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .headerWrapper .headerFilter__title {
    font-size: 20px;
    font-weight: 600;
    justify-content: space-between;
  }
}
.headerWrapper .headerFilter__title_arr {
  display: none;
}
@media (max-width: 768px) {
  .headerWrapper .headerFilter__title_arr {
    display: block;
    width: 20px;
  }
}
@media (max-width: 768px) {
  .headerWrapper .headerFilter__container_acc {
    max-height: 0;
    transition: 0.3s;
    overflow: hidden;
    margin-top: -20px;
  }
}
.headerWrapper .headerFilter__search {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
}
.headerWrapper .headerFilter__search_name {
  font-size: 26px;
  text-align: center;
  padding: 16px 20px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 600;
  background: #FFBD2F;
}
.headerWrapper .headerFilter__search_inp {
  width: 100%;
  background: #fff;
  padding: 21px 50px;
  color: #000;
  font-size: 18px;
}
.headerWrapper .headerFilter__search_inp::-moz-placeholder {
  color: rgba(124, 124, 124, 0.5019607843);
}
.headerWrapper .headerFilter__search_inp::placeholder {
  color: rgba(124, 124, 124, 0.5019607843);
}
.headerWrapper .headerFilter__search_btn {
  position: absolute;
  border-radius: 50%;
  padding: 10px;
  background: #E8E4E4;
  top: 12px;
  right: 12px;
  width: 39px;
  height: 39px;
}
.headerWrapper .headerFilter__search_btn:hover .headerWrapper .headerFilter__search_btn_icon {
  transform: scale(1.2);
}
.headerWrapper .headerFilter__submit {
  width: 100%;
  background: #1E1E1E;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "arm bebas neue", sans-serif;
}
.headerWrapper .headerFilter__submit:hover {
  background: #000;
}

@media (max-width: 768px) {
  .ads {
    max-width: 590px;
    overflow: hidden;
  }
}
.ads__wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 15px;
}
@media (max-width: 1296px) {
  .ads__wrapper {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .ads__wrapper {
    max-width: 590px;
    height: 200px;
    overflow: hidden;
    padding: 0 25px;
  }
}
.ads.blueGradient {
  background: linear-gradient(91.91deg, #0B2543 -1.62%, #0C94FF 101.26%);
}
.ads.greenGradient {
  background: linear-gradient(91.91deg, #306000 -1.62%, #6CFA00 101.26%);
}
.ads.greenGradient .ads__wrapper {
  gap: 60px;
}
.ads.gray {
  background: #E8E4E4;
}
@media (max-width: 768px) {
  .ads__desc {
    max-width: 290px;
  }
}
.ads__desc_title {
  font-size: 118px;
}
@media (max-width: 1296px) {
  .ads__desc_title {
    font-size: 72px;
  }
}
@media (max-width: 768px) {
  .ads__desc_title {
    font-size: 50px;
  }
}
.ads__desc_subtitle {
  font-size: 94px;
}
@media (max-width: 1296px) {
  .ads__desc_subtitle {
    font-size: 58px;
  }
}
@media (max-width: 768px) {
  .ads__desc_subtitle {
    font-size: 40px;
  }
}
.ads__desc_title, .ads__desc_subtitle {
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.ads__desc_title.black, .ads__desc_subtitle.black {
  color: #302F2F;
}
.ads__desc_title.textRight, .ads__desc_subtitle.textRight {
  text-align: right;
}
@media (max-width: 1296px) {
  .ads__img {
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .ads__img {
    width: 360px;
    max-height: 160px;
  }
}

.articles {
  padding: 60px 15px;
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .articles {
    padding: 40px 0 20px;
  }
}
.articles__container {
  padding: 65px 40px 35px;
  background: #E8E4E4;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .articles__container {
    border-radius: 0;
    overflow: hidden;
    padding: 25px 0 40px;
  }
}
.articles__title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  color: #0B2543;
}
.articles__pr {
  margin: 25px auto 35px;
  text-align: center;
  max-width: 780px;
  font-size: 16px;
  font-weight: 400;
  color: #0B2543;
}
@media (max-width: 768px) {
  .articles__pr, .articles__title {
    padding: 0 25px;
    text-align: left;
  }
}
.articles__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .articles__wrapper {
    overflow-x: auto;
    padding: 0 50px 10px;
    max-width: 590px;
  }
}
@media (max-width: 768px) {
  .articles__item {
    min-width: 365px;
  }
}
.articles__item_img {
  width: 100%;
  max-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles__item_txt {
  margin: 16px 0 20px;
  font-size: 14px;
  font-weight: 400;
  color: #00305D;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.articles__item_link {
  display: flex;
  gap: 45px;
  align-items: center;
  position: relative;
}
.articles__item_link::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 3px;
  width: 80px;
  height: 1px;
  background: transparent;
  border-top: 1px solid #0B2543;
}
.articles__item_link_txt {
  font-size: 14px;
  font-weight: 400;
  color: #0B2543;
  text-transform: uppercase;
}

.services {
  padding: 76px 0 100px;
}
@media (max-width: 768px) {
  .services {
    padding: 55px 0 50px;
  }
}
.services__container {
  width: 100%;
  max-width: 1626px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .services__container {
    padding: 0 25px;
  }
}
.services__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 18px;
}
@media (max-width: 768px) {
  .services__wrapper {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.services__link {
  padding: 50px;
  background: #E8E4E4;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #0B2543;
}
@media (max-width: 768px) {
  .services__link {
    padding: 27px 25px;
    text-align: left;
  }
}
.services__link:hover {
  transform: scale(1.1);
}
.services__title {
  font-weight: 500;
  margin-bottom: 36px;
  color: #0B2543;
}

.contactUs__container {
  width: 100%;
  max-width: 1622px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .contactUs__container {
    padding: 0 26px 30px;
  }
}
.contactUs__title {
  font-weight: 500;
  margin-bottom: 32px;
  color: #0B2543;
}
.contactUs__wrapper {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px 48px;
  background: #E8E4E4;
  border: 1px solid rgba(114, 114, 114, 0.2);
  padding: 66px 122px;
  border-radius: 20px;
}
@media (max-width: 1296px) {
  .contactUs__wrapper {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  .contactUs__wrapper {
    flex-direction: column;
    padding: 22px 25px 50px;
    border-radius: 0;
    gap: 0px;
  }
}
.contactUs__el {
  width: 100%;
  max-width: 540px;
}
.contactUs__el input,
.contactUs__el textarea {
  margin-bottom: 20px;
  background: #EFEFEF;
  padding: 22px 43px;
  border: 0.96px solid #C7C7C7;
  width: 100%;
  border-radius: 5px;
  color: #000;
}
@media (max-width: 768px) {
  .contactUs__el input,
  .contactUs__el textarea {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
.contactUs__el input::-moz-placeholder, .contactUs__el textarea::-moz-placeholder {
  color: #A5A7A8;
}
.contactUs__el input::placeholder,
.contactUs__el textarea::placeholder {
  color: #A5A7A8;
}
.contactUs__el textarea {
  height: 184px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contactUs__el textarea {
    margin-bottom: 10px;
    height: 234px;
  }
}
.contactUs__agree {
  display: flex;
  margin-bottom: 27px;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}
.contactUs__agree_inp {
  display: none;
}
.contactUs__agree_checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border: 2px solid #0080E5;
  border-radius: 3px;
}
.contactUs__agree_checkbox img {
  width: 15px;
  opacity: 0;
}
.contactUs__agree_inp:checked + .contactUs__agree_checkbox img {
  opacity: 1;
}
.contactUs__agree_txt {
  font-size: 11px;
  color: #484848;
  font-weight: 600;
}
.contactUs__txt {
  font-weight: 400;
  color: #484848;
  font-size: 15px;
  max-width: 460px;
}
.contactUs .file {
  width: 100%;
  max-width: 756px;
}
.contactUs__footer {
  width: 100%;
}
@media (max-width: 768px) {
  .contactUs__footer {
    margin-top: 30px;
  }
}
.contactUs__file {
  width: 100%;
}
.contactUs__file_inner {
  width: 100%;
  background: #efefef;
  border: 0.96px solid #C7C7C7;
  min-height: 350px;
  border-radius: 5px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-height: 350px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 768px) {
  .contactUs__file_inner {
    height: 104px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    grid-template-columns: repeat(2, 1fr);
  }
}
.contactUs__file_inner_decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contactUs__file_inner_decor.inactive {
  opacity: 0;
}
.contactUs__file_inner::-webkit-scrollbar {
  background: #E8E4E4;
  width: 9px;
}
.contactUs__file_inner::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  border-radius: 12px;
  border: 5px solid transparent;
  background-clip: padding-box;
}
.contactUs__file_inner .attachedWrapper {
  position: relative;
  width: 165px;
  height: 120px;
  border: 1px solid #C7C7C7;
}
.contactUs__file_inner .attachedWrapper__btn {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
  z-index: 1020;
}
.contactUs__file_inner .attachedWrapper__btn_icon {
  width: 20px;
  height: 20px;
}
.contactUs__file_inner .attachedImage {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contactUs__file_lab {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
  cursor: pointer;
}
.contactUs__file_lab_icon {
  width: 19px;
}
.contactUs__file_lab_icon.hover {
  opacity: 0;
  margin-left: -32px;
}
.contactUs__file_lab_txt {
  font-size: 13px;
  color: #0080E5;
}
.contactUs__file_lab_inp {
  display: none;
}
.contactUs__file_lab:hover .contactUs__file_lab_icon {
  opacity: 0;
}
.contactUs__file_lab:hover .contactUs__file_lab_icon.hover {
  opacity: 1;
}
.contactUs__file_lab:hover .contactUs__file_lab_txt {
  color: #F62B02;
}
.contactUs__submit {
  margin: -60px 0 0 auto;
  width: 290px;
  text-align: center;
  font-weight: 500;
  border-radius: 5px;
  padding: 22px;
  background: #0080E5;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 768px) {
  .contactUs__submit {
    margin-top: 40px;
    width: 100%;
  }
}
.contactUs__submit:hover {
  background: #005fa8;
}

.products__container {
  width: 100%;
  max-width: 1626px;
  margin: 0 auto;
  padding: 60px 15px 85px;
}
@media (max-width: 768px) {
  .products__container {
    padding: 50px 2px 120px;
  }
}
.products__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px 94px;
  margin-bottom: 78px;
}
@media (max-width: 768px) {
  .products__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-bottom: 30px;
  }
}
.products__title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .products__title {
    font-weight: 700;
    margin-bottom: 30px;
  }
}

.crumbs {
  padding: 24px 26px;
}
@media (max-width: 768px) {
  .crumbs {
    max-width: 590px;
    overflow-y: auto;
  }
  .crumbs::-webkit-scrollbar {
    display: none;
  }
}
.crumbs__list {
  display: flex;
  gap: 25px;
}
.crumbs__list_link {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 22px;
  color: #747474;
  white-space: nowrap;
}

.brands {
  padding-top: 28px;
}
@media (max-width: 768px) {
  .brands {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .brands .seeMore {
    max-width: 100%;
  }
}
.brands__container {
  width: 100%;
  max-width: 1676px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  border-radius: 12px;
  background: #E8E4E4;
}
@media (max-width: 768px) {
  .brands__container {
    padding: 25px 10px;
  }
}
.brands__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px 19px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .brands__wrapper {
    grid-template-columns: repeat(3, auto);
    margin-bottom: 25px;
  }
}
.brands__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  width: 100%;
}
@media (max-width: 768px) {
  .brands__link {
    padding: 16px 13px;
    gap: 12px;
  }
}
.brands__link:hover .brands__link_img {
  transform: scale(1.05);
}
.brands__link span {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .brands__link span {
    display: block;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }
}
.brands__link_img {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
.brands__title {
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .brands__title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
}

.select {
  margin-bottom: 16px;
  position: relative;
}
.select__btn {
  width: 100%;
  display: flex;
  align-items: center;
  background: #F3F3F3;
  border: 1px solid rgba(0, 0, 0, 0.2509803922);
  justify-content: space-between;
  padding: 17px 20px;
}
.select__btn::before {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  border-right: 1px solid rgba(0, 0, 0, 0.5019607843);
  position: absolute;
  top: 18px;
  right: 50px;
}
.select__btn:hover, .select__btn.active {
  border-color: #F73004;
}
.select__options {
  background: #E8E4E4;
  position: absolute;
  width: 100%;
  top: 55px;
  z-index: 1089;
  max-height: 0px;
  overflow: hidden;
}
.select__options.active {
  border: 0.5px solid #F62B02;
}
.select__options_wrapper {
  max-height: 390px;
  overflow-y: auto;
  background: #fff;
}
.select__options_wrapper::-webkit-scrollbar {
  background: #E8E4E4;
  width: 19px;
}
.select__options_wrapper::-webkit-scrollbar-thumb {
  background: #AAAAAA;
  border-radius: 12px;
  border: 5px solid transparent;
  background-clip: padding-box;
}
.select__options_wrapper::before {
  content: "";
  position: absolute;
  top: 48px;
  border-radius: 2px;
  right: 3.5px;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #AAAAAA transparent;
  pointer-events: none;
  z-index: 1;
}
.select__options_title {
  font-weight: 600;
  padding: 21px 31px;
}
.select__options_el {
  border: 0.82px solid rgba(195, 195, 195, 0.5019607843);
  width: 100%;
  padding: 20px 31px;
  background: #fff;
  text-align: left;
}
.select__options_el:hover {
  background: #F73004;
  color: #fff;
}

.header {
  padding: 174px 0 0;
}
@media (max-width: 768px) {
  .header {
    padding-top: 95px;
  }
}
.header .crumbs {
  padding: 24px 0;
}
.header .brands {
  display: none;
}
@media (max-width: 768px) {
  .header .brands {
    display: block;
    padding: 0 0 30px;
    margin-top: -10px;
  }
  .header .brands .seeAll {
    width: 100%;
    border-radius: 2px;
    background: #F62B02;
    color: #fff;
    padding: 22px;
    text-align: center;
  }
}
.header__brands {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
}
.header__brands_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -135px;
  background: #E8E4E4;
  padding-right: 15px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .header__brands_top {
    flex-direction: column;
    padding: 0;
    margin: 0;
    background: none;
  }
}
.header__brands_top_btns {
  display: flex;
  gap: 22px;
}
@media (max-width: 768px) {
  .header__brands_top_btns {
    gap: 25px;
    margin-top: 18px;
  }
}
.header__brands_top_btns_btn {
  border: 1px solid rgba(0, 0, 0, 0.3019607843);
  background: #e9e9e9;
  padding: 15px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header__brands_top_btns_btn {
    padding: 24px 63px;
    border-radius: 8px;
    font-size: 26px;
  }
}
.header__brands_top_btns_btn:hover, .header__brands_top_btns_btn.active {
  background: #F62B02;
  color: #e9e9e9;
}
.header__brands_top_wrapper {
  width: 100%;
  position: relative;
  max-width: 1110px;
  background: #F62B02;
  padding-left: 140px;
}
@media (max-width: 768px) {
  .header__brands_top_wrapper {
    padding-left: 26px;
    max-width: 510px;
    margin-right: auto;
    margin-left: -16px;
  }
}
.header__brands_top_title {
  color: #EFEFEF;
  font-size: 75px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .header__brands_top_title {
    font-size: 36px;
  }
}
.header__brands_top_img {
  position: absolute;
  width: 240px;
  right: -100px;
  top: -19px;
}
@media (max-width: 768px) {
  .header__brands_top_img {
    width: 116px;
    right: -50px;
    top: -10px;
  }
}
.header__brands_slider {
  padding: 24px;
  border-radius: 12px;
  background: #E8E4E4;
}
@media (max-width: 768px) {
  .header__brands_slider {
    display: none;
  }
}
.header__brands_slider_seeAll {
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  background: #F62B02;
  padding: 12px 28px;
  color: #EFEFEF;
  font-size: 17px;
}
.header__brands_slider_title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
}
.header__brands_slider_el {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 16px 20px;
}
.header__brands_slider_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  background: #fff;
  padding: 16px 24px;
}
.header__brands_slider_link:hover .header__brands_slider_link_img {
  transform: scale(1.1);
}
.header__brands_slider_link span {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .header__brands_slider_link span {
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    display: block;
  }
}
.header__brands_slider_link_img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 90px;
  height: 90px;
}
.header__brands_slider_btns {
  position: absolute;
  top: 14px;
  right: 13px;
  display: flex;
  gap: 9px;
}
@media (max-width: 768px) {
  .header__brands_slider_btns {
    top: 4px;
    right: 26px;
  }
}
.header__brands_slider_btns_btn {
  width: 43px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.74px solid rgba(0, 0, 0, 0.3019607843);
}
@media (max-width: 768px) {
  .header__brands_slider_btns_btn {
    width: 58px;
    height: 48px;
  }
}
.header__brands_slider_btns_btn:hover {
  border-color: #F62B02;
}
.header__brands_slider_btns_btn.next img {
  transform: rotate(180deg);
}

.problemFix {
  padding: 75px 15px 40px;
}
@media (max-width: 768px) {
  .problemFix {
    padding: 30px 0;
  }
}
.problemFix__wrapper {
  width: 100%;
  max-width: 1592px;
  margin: 0 auto;
  border-radius: 20px;
  background: #E8E4E4;
  border: 1px solid rgba(114, 114, 114, 0.2);
  padding: 45px 35px 45px;
}
@media (max-width: 768px) {
  .problemFix__wrapper {
    padding: 45px 50px 30px;
    padding-right: 0;
    border-radius: 0;
  }
}
.problemFix__title {
  font-size: 16px;
  font-weight: 500;
  color: #0B2543;
  padding-left: 15px;
  margin-bottom: 45px;
}
.problemFix__accs_item {
  display: none;
}
.problemFix__accs_item.active {
  display: block;
}
.problemFix__accs .problemFixSlider {
  position: relative;
  margin: 0 110px;
  padding-bottom: 55px;
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider {
    margin: 0;
    padding-right: 50px;
    padding-bottom: 35px;
  }
}
.problemFix__accs .problemFixSlider .swiper-pagination {
  bottom: 0;
}
.problemFix__accs .problemFixSlider .swiper-pagination-bullet {
  margin: 0 7px;
  width: 13px;
  background: #B4B4B4;
  height: 13px;
  opacity: 1;
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider .swiper-pagination-bullet {
    margin: 0 5px;
    width: 8px;
    height: 8px;
  }
}
.problemFix__accs .problemFixSlider .swiper-pagination-bullet-active {
  background: #F62B02;
  opacity: 1;
}
.problemFix__accs .problemFixSlider__btns {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider__btns {
    display: none;
  }
}
.problemFix__accs .problemFixSlider__btns_btn {
  width: 43px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.74px solid rgba(0, 0, 0, 0.3019607843);
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider__btns_btn {
    width: 58px;
    height: 48px;
  }
}
.problemFix__accs .problemFixSlider__btns_btn:hover {
  border-color: #F73004;
}
.problemFix__accs .problemFixSlider__btns_btn.next img {
  transform: rotate(180deg);
}
.problemFix__accs .problemFixSlider__el {
  padding: 30px 10px 15px;
  border-radius: 5px;
  background: #F5F3F3;
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider__el {
    padding: 20px 30px 10px;
  }
}
.problemFix__accs .problemFixSlider__el:not(:last-child) {
  margin-bottom: 20px;
}
.problemFix__accs .problemFixSlider__el_img {
  margin: 0 auto 18px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider__el_img {
    margin-bottom: 10px;
  }
}
.problemFix__accs .problemFixSlider__el:hover img {
  transform: scale(1.1);
}
.problemFix__accs .problemFixSlider__el_title {
  font-size: 22px;
  font-weight: 400;
  color: #0B2543;
  text-align: center;
}
@media (max-width: 768px) {
  .problemFix__accs .problemFixSlider__el_title {
    font-size: 14px;
  }
}
.problemFix__accs_item {
  position: relative;
}
.problemFix__accs_btns {
  display: flex;
  border-bottom: 3px solid #CBCBCB;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .problemFix__accs_btns {
    margin-bottom: 40px;
    margin-left: -25px;
    max-width: 562px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .problemFix__accs_btns::-webkit-scrollbar {
    display: none;
  }
}
.problemFix__accs_btns_btn {
  padding: 12px 28px;
  border-bottom: 5px solid transparent;
  margin-bottom: -2px;
  font-size: 24px;
  font-weight: 400;
  height: 60px;
  white-space: nowrap;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.problemFix__accs_btns_btn.active {
  font-size: 26px;
  font-weight: 500;
  border-color: #F62B02;
}
.problemFix__accs_btns_btn:hover {
  border-color: #F62B02;
}/*# sourceMappingURL=cars.css.map */