.center {
  max-width: 1770px;
  width: 100%;
  margin: 0px auto;
  display: flex;
  position: relative;
  --mini-arrow-color: #111111;
  --arrow-color: #fff;
  z-index: 0;
  --smeta-main: #00aeff;
  --smeta-sec: #fff;
  --footer-social: #111111;
  --footer-icon: #111111;
  --menu-icon: #00aeff;
  --blue1: #9a9a9a;
  --blue2: #b5b5b5;
  --blue3: #f8f8f8;
  --blue4: #c7c7c7;
  --blue5: #fff;
  --blue6: #8e8e8e;
  --close-color: #111111;
}

body.overflow {
  overflow: hidden;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #a1a1a1;
  font-family: "ALS SectorR";
  font-size: 20px;
  line-height: 32px;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #a1a1a1;
  font-family: "ALS SectorR";
  font-size: 20px;
  line-height: 32px;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #a1a1a1;
  font-family: "ALS SectorR";
  font-size: 20px;
  line-height: 32px;
}
input::placeholder,
textarea::placeholder {
  color: #a1a1a1;
  font-family: "ALS SectorR";
  font-size: 20px;
  line-height: 32px;
}

.button {
  background: #ff1938;
  border-radius: 10px;
  display: flex;
  color: #fff;
  font-family: "ALS SectorB";
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  z-index: 1;
}
.button:after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #ff1938;
  z-index: -1;
  border-radius: 13px;
  left: 0px;
  top: 0px;
  transition: transform 0.3s;
}
.button:hover {
  box-shadow: 0 0 40px rgba(0, 174, 255, 0.5);
}
.button:hover:after {
  transform: rotate(-5deg);
}

.button_black {
  background: transparent;
  color: #111111;
  border: 2px solid #111111;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  border-radius: 10px;
  box-sizing: border-box;
  z-index: 1;
}
.button_black:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #111111;
  z-index: -1;
  border-radius: 9px;
  left: -2px;
  top: -2px;
  transition: transform 0.3s;
}
.button_black:hover {
  color: #fff;
  background: #111111;
  box-shadow: 0 0 20px rgba(0, 174, 255, 0.5);
}
.button_black:hover:after {
  transform: rotate(-5deg);
}

header {
  position: relative;
  z-index: 1;
}
header .line_1 {
  height: 36px;
  display: flex;
  background: #f6f7fb;
  --mini-arrow-color: #111111;
  z-index: 2;
  position: relative;
}
header .center {
  height: 100%;
  align-items: center;
}
header .line_1 .center .tfl__link {
  margin-right: 20px;
  display: flex;
  font-size: 12px;
  line-height: 167%;
  cursor: pointer;
  max-height: 18px;
  border: none;
}
.tfl-define-popup__desktop {
  left: 150px !important;
}
.tfl-define-popup__main {
  background-color: #00aeff !important;
  border-radius: 10px;
}
.tfl-define-popup__second {
  color: #00aeff !important;
  border-radius: 10px;
}
header .line_1 .center .tfl__link:before {
  content: url(../images/icon_point.svg);
  width: 13px;
  height: 18px;
  margin-right: 11px;
}
header .line_1 .center > ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
header .line_1 ul li {
  margin-right: 15px;
  position: relative;
}
header .line_1 ul li .container {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding-top: 8px;
  min-width: 203px;
}
header .line_1 ul li .container ul {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 0px 2px 15px rgba(51, 51, 51, 0.25);
  width: 100%;
}
header .line_1 ul li .container ul li {
  margin-bottom: 13px;
  margin-right: 0px;
}
header .line_1 ul li .container ul li:last-child {
  margin-bottom: 0px;
}
header .line_1 ul li:last-child {
  margin-right: 0px;
}
header .line_1 ul li a {
  font-size: 12px;
  line-height: 167%;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}
header .line_1 ul li a svg {
  margin-left: 9px;
  transition: stroke 0.3s;
  stroke: #111111;
}
header .line_1 ul li:hover > a {
  color: #00aeff;
}
header .line_1 ul li:hover > a svg {
  stroke: #00aeff;
}
header .line_1 ul li:hover .container {
  opacity: 1;
  visibility: visible;
}

header .line_2 {
  margin: 17px 0px 22px;
  position: relative;
  z-index: 1;
}
header .line_2 .center {
  flex-wrap: wrap;
}
header .line_2 .center > p:nth-child(2) {
  max-width: 260px;
  margin-left: 24px;
}
header .line_2 .center > a svg {
  float: left;
}
header .line_2 .center .search {
  width: 100%;
  max-width: 500px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 10px;
  height: 48px;
  overflow: hidden;
  margin: 0px 30px;
}
header .line_2 .center .search button {
  width: 19%;
  max-width: 100px;
  height: 100%;
  background: #e2e2e2;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer;
  color: #a1a1a1;
  font-size: 16px;
}
header .line_2 .center .search input {
  width: 94%;
  height: 100%;
  border: 0px;
  background: transparent;
  padding: 0px 24px;
  box-sizing: border-box;
  font-size: 18px;
}
header .line_2 .center > p:nth-child(4) {
  font-family: "ALS SectorB";
  font-size: 12px;
  display: flex;
  flex-direction: column;
  color: #a1a1a1;
}
header .line_2 .center > p:nth-child(4) a {
  color: #111111;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 5px;
}
header .line_2 .center > button {
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  max-width: 186px;
  font-size: 16px;
  line-height: 150%;
  font-family: "ALS SectorB";
  margin-left: 30px;
  cursor: pointer;
}
header .line_2 .center > p:nth-child(6) {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  align-items: flex-end;
}
header .line_2 .center > p:nth-child(6) span {
  font-size: 12px;
  line-height: 167%;
  display: flex;
  align-items: center;
}
header .line_2 .center > p:nth-child(6) span.online:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #16c67a;
  margin-right: 5px;
}
header .line_2 .center > p:nth-child(6) a {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 120%;
  color: #16c67a;
  font-family: "ALS SectorB";
}
header .line_2 .center > p:nth-child(6) a img {
  margin-right: 8px;
}
header .line_2 ul.cata {
  display: flex;
  margin-left: auto;
  margin-top: 25px;
  justify-content: flex-end;
  width: 100%;
  min-width: 300px;
}
header .line_2 ul.cata li {
  margin-right: 24px;
}
header .line_2 ul.cata li:last-child {
  margin-right: 0px;
}
header .line_2 ul.cata li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  line-height: 16px;
}
header .line_2 ul.cata li a span.count {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background: #ff1938;
  position: absolute;
  right: -7px;
  top: -5px;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 10px;
}
header .line_2 ul.cata li a img {
  margin-right: 11px;
}
header .line_2 ul.cata li.enter {
  display: flex;
  align-items: center;
}
header .line_2 ul.cata li.enter a {
  border-bottom: 1px solid;
  border-color: transparent;
  transition: border-color 0.3s;
}
header .line_2 ul.cata li.enter img {
  margin-right: 11px;
}
header .line_2 ul.cata li.enter span {
  margin: 0px 5px;
  line-height: 16px;
  margin-top: 2px;
}
header .line_2 ul.cata li.enter a:hover {
  border-color: #111111;
}

header .line_4 {
  display: flex;
  --mini-arrow-color: #fff;
  margin-top: 20px;
}
header .line_4 ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
header .line_4 .center .container {
  display: flex;
  background: #f6f7fb;
  border-radius: 10px;
  height: 48px;
  width: 100%;
  position: relative;
}
header .line_4 .center .container > button {
  background: #00aeff;
  border-radius: 10px;
  width: 21%;
  max-width: 370px;
  height: 100%;
  color: #fff;
  text-align: left;
  padding: 0px 11px;
  font-size: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .line_4 .center .container > button img {
  position: relative;
  top: -1px;
  margin-right: 10px;
}
header .line_4 .center .container > button svg {
  margin-left: auto;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
header .line_4 .center .container > button.closed svg {
  transform: rotate(0deg);
}
header .line_4 .center ul {
  margin: 0px;
  display: flex;
  align-items: center;
  width: 79%;
}
header .line_4 .center ul li {
  width: 16.6%;
  justify-content: center;
  min-height: 34px;
  display: flex;
  align-items: center;
  border-right: 1px solid #e5e5e5;
  box-sizing: border-box;
  position: relative;
}
header .line_4 .center ul li a {
  border-bottom: 1px solid;
  border-color: transparent;
  transition: border-color 0.3s;
  text-align: center;
}
header .line_4 .center ul li:nth-child(6),
header .line_4 .center ul li:last-child {
  border-right: 0px;
}
header .line_4 .center ul li a:hover {
  border-color: #111111;
}
header .line_4 .center ul li.mobile_point {
  display: none;
}

.spec_block {
  position: absolute;
  right: 0px;
  top: 100%;
  background: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-shadow: 0px 1.37226px 10.292px rgba(51, 51, 51, 0.25);
  min-width: 220px;
  border-radius: 0px 0px 10px 10px;
}
.spec_block.display {
  opacity: 1;
  visibility: visible;
}
.spec_block a {
  margin-bottom: 15px;
  border-right: 0px;
}
.spec_block a:last-child {
  margin-bottom: 0px;
}

.page_container .center {
  z-index: auto;
}
.page_container .left_side {
  width: 21%;
  max-width: 370px;
  margin-top: 14px;
  position: absolute;
  z-index: 6;
}
.page_container .left_side .sticky_cont {
  position: sticky;
  left: 0px;
  top: 90px;
  z-index: 999;
}
.page_container .left_side ul.main_list {
  transition: max-height 0.3s, box-shadow 0.3s;
  background: #fff;
  overflow: auto;
}
.page_container .left_side ul.main_list li {
  height: 60px;
  border-top: 1px solid #cccccc;
  box-sizing: border-box;
}
.page_container .left_side ul.main_list li:last-child {
  border-bottom: 1px solid #cccccc;
}
.page_container .left_side ul.main_list li > p {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  --arrow-color: #a1a1a1;
  padding: 0px 12px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.3s;
}
.page_container .left_side ul.main_list li > p:hover {
  background: #ededed;
}
.page_container .left_side ul.main_list li > p svg:nth-child(1) {
  position: relative;
  top: -1px;
  margin-right: 12px;
}
.page_container .left_side ul.main_list li > p svg:nth-child(3) {
  transform: rotate(-90deg);
  margin-left: auto;
}
.page_container .left_side ul.slided {
  max-height: 0px !important;
}
.page_container .left_side ul.visible {
  overflow: visible;
}
/*.page_container .left_side ul li */
.sec_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 100%;
  top: -1px;
  padding: 0px 0px 0px 20px;
}
/*.page_container .left_side ul li */
.sec_menu .container {
  background: #ffffff;
  box-shadow: 0px 2px 10px rgba(51, 51, 51, 0.25);
  padding: 50px;
  box-sizing: border-box;
  overflow: auto;
}
/*.page_container .left_side ul li */
.sec_menu .container p.cat {
  font-size: 28px;
  line-height: 26px;
  font-family: "ALS SectorB";
  margin-bottom: 12px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul {
  display: flex;
  flex-wrap: wrap;
  max-height: 380px;
  margin-bottom: 27px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li {
  margin: 20px 0px;
  width: 32%;
  margin-right: 2%;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li:nth-child(3n) {
  margin-right: 0px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li p {
  display: flex;
  align-items: center;
  line-height: 26px;
  font-size: 18px;
  font-family: "ALS SectorB";
  min-height: 50px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li p svg {
  max-width: 50px;
  margin-right: 12px;
  min-width: 50px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li a span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  padding-bottom: 3px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul:last-child {
  margin-bottom: 0px;
}
/*.page_container .left_side ul li */
.sec_menu .container ul li a span:hover {
  border-color: #111111;
}
/*.page_container .left_side ul li */
.sec_menu.shown {
  opacity: 1;
  visibility: visible;
}
.sec_menu .menu_close {
  position: absolute;
  right: 25px;
  top: 25px;
  cursor: pointer;
}
.sec_menu .menu_close:hover {
  --close-color: #00aeff;
}
.page_container .left_side .shadow {
  box-shadow: 0px 1.37226px 10.292px rgba(51, 51, 51, 0.25);
}
.page_container .left_side .shadow li:first-child {
  border-top: 0px;
}
.page_container .left_side .shadow .simplebar-content ul li:last-child {
  border-bottom: 0px;
}
.page_container .left_side.fixed {
  position: fixed;
}

.page_container .main_side {
  width: 100%;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.page_container .main_side.flex_catalog,
.page_container .main_side.flex_catalog > .search__wrap {
  display: flex;
}
.page_container .main_side.flex_catalog {
  margin: 0px;
}
.page_container .main_side.mainpage {
  max-width: calc(100% - 380px);
  margin-left: auto;
}
.page_container .main_side.no-left {
  width: 100%;
  max-width: 100%;
}
.page_container .main_side .mini_banner {
  height: 56px;
  background: linear-gradient(90.17deg, #00aeff 17.69%, #004160 100.12%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-family: "ALS SectorR";
  overflow: hidden;
  position: relative;
  font-size: 18px;
}
.page_container .main_side .mini_banner b {
  margin-right: 40px;
  font-size: 20px;
}
.page_container .main_side .mini_banner span {
  position: relative;
  z-index: 1;
}
.page_container .main_side .mini_banner .bg_left {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translate(0%, -50%);
}
.page_container .main_side .mini_banner .bg_right {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(0%, -50%) rotate(180deg);
}
.page_container .main_side .mini_banner .l_bulb {
  position: absolute;
  left: 0px;
  top: -10px;
}
.page_container .main_side .mini_banner .r_bulb {
  position: absolute;
  right: 128px;
  top: 0px;
}
.page_container .main_side .mini_banner .l_cab {
  position: absolute;
  left: 117px;
  top: 0px;
}
.page_container .main_side .mini_banner .r_cab {
  position: absolute;
  right: 224px;
  top: 0px;
}
.page_container .main_side .mini_banner .l_light {
  position: absolute;
  left: 215px;
  top: 0px;
}
.page_container .main_side .mini_banner .r_light {
  position: absolute;
  right: -18px;
  top: 0px;
}

.page_container .main_side .banner {
  margin-top: 30px;
  min-height: 380px;
  --arrow-color: #00aeff;
  position: relative;
}
.page_container .main_side .banner .bann_item .container {
  position: relative;
  height: 100%;
  min-height: 380px;
  max-height: unset;
  background-size: cover;
  padding: 38px 0px;
  padding-left: 58%;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.page_container .main_side .banner .bann_item .title {
  font-size: 50px;
  color: #232e41;
  line-height: 112%;
  font-family: "ALS SectorB";
  margin-bottom: 20px;
}
.page_container .main_side .banner .bann_item .text {
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 37px;
}
.page_container .main_side .banner .bann_item .item {
  position: absolute;
  left: 10%;
  top: 0px;
  max-width: 519px;
}
.page_container .main_side .banner .bann_item a {
  width: 201px;
  height: 48px;
  margin-bottom: 10px;
}
.page_container .main_side .banner .left_arr {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .banner .left_arr svg {
  transform: rotate(90deg);
}
.page_container .main_side .banner .right_arr {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translate(0%, -50%);
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .banner .right_arr svg {
  transform: rotate(-90deg);
}
.page_container .main_side .banner .slider-dots {
  position: absolute;
  bottom: 20px;
  left: 58%;
}
.page_container .main_side .banner .slider-dots ul {
  display: flex;
  margin-top: 50px;
}
.page_container .main_side .banner .slider-dots ul li {
  background: #a1a1a1;
  width: 50px;
  height: 4px;
  margin-right: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.page_container .main_side .banner .slider-dots ul li.slick-active {
  background: #111111;
}
.page_container .main_side .banner .slider-dots ul li:last-child {
  margin-right: 0px;
}
.page_container .main_side .banner .slider-dots ul li button {
  font-size: 0px;
  color: transparent;
}

.page_container .main_side .banner_cat {
  margin-top: 30px;
  display: flex;
}
.page_container .main_side .banner_cat .cat_cell {
  width: 27%;
  background: #f6f7fb;
  border-radius: 10px;
  margin-right: 2%;
  min-height: 200px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}
.page_container .main_side .banner_cat .cat_cell > span:nth-child(1) {
  max-width: 168px;
  font-size: 20px;
  line-height: 120%;
  font-family: "ALS SectorB";
}
.page_container .main_side .banner_cat .cat_cell > span:nth-child(1) span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.page_container .main_side .banner_cat .cat_cell > span.link {
  margin-top: auto;
  align-items: center;
  display: flex;
  font-size: 16px;
  color: #0070c9;
  font-family: "ALS SectorB";
}
.page_container .main_side .banner_cat .cat_cell > span.link span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.page_container .main_side .banner_cat .cat_cell > span.link svg {
  margin-left: 8px;
  margin-top: 1px;
  --mini-arrow-color: #0070c9;
}
.page_container .main_side .banner_cat .cat_cell > svg {
  position: absolute;
  bottom: 19px;
  right: 50px;
}
.page_container .main_side .banner_cat .cat_cell > svg path {
  transition: all 0.3s;
}
.page_container .main_side .banner_cat .cat_cell:last-child {
  margin-right: 0px;
}
.page_container .main_side .banner_cat .cat_cell.gift {
  width: 42%;
  background: #fed32a;
}
.page_container .main_side .banner_cat .cat_cell.gift > span:first-child {
  font-size: 14px;
  max-width: none;
  display: flex;
  align-items: center;
  line-height: 20px;
}
.page_container .main_side .banner_cat .cat_cell.gift > span:first-child svg {
  margin-right: 7px;
  position: relative;
  top: -2px;
}
.page_container .main_side .banner_cat .cat_cell.gift > span.colm {
  margin-top: 30px;
  font-size: 26px;
  font-family: "ALS SectorB";
  line-height: 26px;
  display: block;
  max-width: 352px;
}
.page_container .main_side .banner_cat .cat_cell.gift > span.colm span {
  font-size: 16px;
  line-height: 24px;
  font-family: "ALS SectorR";
  display: flex;
}
.page_container .main_side .banner_cat .cat_cell.gift > span.colm span span {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.page_container .main_side .banner_cat .cat_cell.gift > span.link {
  color: #232e41;
  --mini-arrow-color: #232e41;
  border-bottom: 1px solid transparent;
}
.page_container .main_side .banner_cat .cat_cell.gift > span.link svg {
  --mini-arrow-color: #232e41;
}
.page_container .main_side .banner_cat .cat_cell.gift > img {
  right: 20px;
  bottom: auto;
  top: 0px;
  position: absolute;
}
.page_container .main_side .banner_cat .cat_cell:hover span:nth-child(1) span {
  border-color: #232e41;
}
.page_container .main_side .banner_cat .cat_cell:hover > svg path {
  --blue1: #0070c9;
  --blue2: #0986e9;
  --blue3: #e4f6ff;
  --blue4: #00aeff;
  --blue5: #dff5ff;
}
.page_container .main_side .banner_cat .cat_cell:hover > span.link span {
  border-color: #0070c9;
}
.page_container .main_side .banner_cat .cat_cell.gift:hover > span.link span {
  border-color: #232e41;
}
.page_container
  .main_side
  .banner_cat
  .cat_cell.gift:hover
  span.colm
  > span
  span {
  border-color: #232e41;
}

.page_container .main_side .popuplar_cat {
  margin-top: 60px;
}
.page_container .main_side .popuplar_cat > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .popuplar_cat > p a svg {
  transform: rotate(-90deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.page_container .main_side .popuplar_cat ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.page_container .main_side .popuplar_cat ul li {
  width: 23.5%;
  margin-right: 2%;
  transition: box-shadow 0.3s;
  margin-bottom: 30px;
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  min-height: 200px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  transition: border-color 0.3s;
  overflow: hidden;
}
.page_container .main_side .popuplar_cat ul li:hover {
  border-color: rgba(0, 174, 255, 1);
}
.page_container .main_side .popuplar_cat ul li a {
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.page_container .main_side .popuplar_cat ul li:nth-child(4n) {
  margin-right: 0px;
}
.page_container .main_side .popuplar_cat ul li span {
  font-size: 20px;
  line-height: 24px;
  font-family: "ALS SectorB";
  max-width: 168px;
  position: relative;
  z-index: 2;
  display: block;
}
.page_container .main_side .popuplar_cat ul li img {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 100%;
  max-width: 277px;
}
.page_container .main_side .popuplar_cat ul li:hover {
  z-index: 2;
}
.page_container .main_side .popuplar_cat ul li:hover span {
  border-color: #232e41;
}
.page_container .main_side .popuplar_cat ul li:hover:after {
  opacity: 0;
}
.page_container .main_side .popuplar_cat ul li:hover:before {
  opacity: 1;
}

.page_container .main_side .video {
  margin-top: 30px;
}
.page_container .main_side .video > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .video > p a svg {
  transform: rotate(-90deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.page_container .main_side .video .video_block {
  width: 100%;
  background: url("../images/poster.jpg") no-repeat center center;
  min-height: 381px;
  border-radius: 10px;
  margin-top: 30px;
  position: relative;
  cursor: pointer;
}

.video-wrap {
  display: grid;
}

.page_container .main_side .video .video_block .play {
  position: absolute;
  width: 100px;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

@media (max-width: 500px) {
  .page_container .main_side .video .video_block .play {
    width: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }
}

.page_container .main_side .video .video_block video {
  max-width: 100%;
}
/* .page_container .main_side .video .video_block:after {
  content: url(../images/video_play.svg);
  width: 116px;
  height: 116px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s;
  transform-origin: top left;
} */
.page_container .main_side .video .video_block:hover:after {
  transform: scale(1.1) translate(-50%, -50%);
}

.page_container .main_side .popuplar_items {
  margin-top: 60px;
  --arrow-color: #00aeff;
}
.page_container .main_side .popuplar_items > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .popuplar_items > p a svg {
  transform: rotate(-90deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.page_container .main_side .popuplar_items .items {
  margin-top: 30px;
  width: 100%;
  position: relative;
}
.page_container .main_side .popuplar_items .items .items_container {
  width: 100%;
  display: flex;
  position: relative;
}
.page_container .main_side .popuplar_items .items .item_cont {
  box-sizing: border-box;
}
.page_container .main_side .popuplar_items .items .item {
  position: relative;
  background: #ffffff;
  box-sizing: border-box;
  padding: 10px;
  min-height: 240px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.page_container .main_side .popuplar_items .items .item > img {
  max-width: 230px;
  margin: 0px auto;
}
.page_container
  .main_side
  .popuplar_items
  .items
  .owl-carousel
  .owl-stage-outer {
  padding: 20px 0px;
  margin-top: -20px;
}
.page_container .main_side .popuplar_items .items .item:hover {
  border-color: rgba(
    0,
    174,
    255,
    1
  ); /*box-shadow: 0 0 20px rgba(0,174,255,0.5);*/
  z-index: 2;
}
.page_container .main_side .popuplar_items .items .item span {
  padding: 0px 10px;
  margin-top: auto;
}
.page_container .main_side .popuplar_items .items .owl-prev {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -65%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .popuplar_items .items .owl-prev svg {
  transform: rotate(90deg);
}
.page_container .main_side .popuplar_items .items .owl-next {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(40%, -65%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .popuplar_items .items .owl-next svg {
  transform: rotate(-90deg);
}
.page_container
  .main_side
  .popuplar_items
  .items
  .items_container
  .owl-nav.disabled {
  display: block;
}

.page_container .main_side .calculator {
  margin-top: 40px;
  min-height: 380px;
  background: #f6f7fb;
  border-radius: 10px;
  padding: 48px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}
.page_container .main_side .calculator > p {
  font-size: 36px;
  line-height: 40px;
  max-width: 510px;
}
.page_container .main_side .calculator ul {
  display: flex;
  max-width: 510px;
  margin-top: 20px;
}
.page_container .main_side .calculator ul li {
  display: flex;
  align-items: center;
}
.page_container .main_side .calculator ul li svg {
  margin-right: 12px;
}
.page_container .main_side .calculator > a {
  width: 308px;
  height: 48px;
  margin-top: 40px;
}
.page_container .main_side .calculator .block {
  background: #fed32a;
  border-radius: 10px;
  transform: rotate(-12.66deg);
  position: absolute;
  left: 750px;
  top: 142px;
  width: 681px;
  height: 377px;
}
.page_container .main_side .calculator .manager {
  position: absolute;
  left: 817px;
  bottom: 0px;
}

.page_container .main_side .projects {
  margin-top: 60px;
  --arrow-color: #00aeff;
}
.page_container .main_side .projects > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .projects > p a svg {
  transform: rotate(-90deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.page_container .main_side .projects .project_list {
  margin-top: 30px;
  position: relative;
}
.page_container .main_side .projects .project {
  padding: 60px;
  background: #f6f7fb;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.page_container .main_side .projects .project > div {
  display: flex;
  flex-direction: column;
  max-width: 520px;
}
.page_container .main_side .projects .project > img {
  position: absolute;
  bottom: 0px;
  left: 801px;
}
.page_container .main_side .projects .project .title {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.page_container .main_side .projects .project .description {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
}
.page_container .main_side .projects .project p:nth-child(3) {
  color: #232e41;
  font-family: "ALS SectorB";
  margin-bottom: 16px;
}
.page_container .main_side .projects .project ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 104px;
}
.page_container .main_side .projects .project ul li {
  margin-bottom: 12px;
  width: 50%;
}
.page_container .main_side .projects .project ul li a {
  color: #00aeff;
  border-bottom: 1px solid;
}
.page_container .main_side .projects .project ul li:nth-child(3n) {
  margin-bottom: 0px;
}
.page_container .main_side .projects .project .buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.page_container .main_side .projects .project .buttons a {
  font-size: 20px;
  line-height: 24px;
  font-family: "ALS SectorB";
  color: #0070c9;
  border-bottom: 1px solid;
}
.page_container .main_side .projects .project .buttons .more {
  margin-right: 30px;
  width: 201px;
  height: 48px;
  border: 2px solid #111111;
  box-sizing: border-box;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 20px;
  line-height: 24px;
  font-family: "ALS SectorB";
  color: #111111;
}
.page_container .main_side .projects .project .buttons .more:hover {
  color: #fff;
}
.page_container .main_side .projects .project_list .left_arr {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .projects .project_list .left_arr.slick-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_container .main_side .projects .project_list .left_arr svg {
  transform: rotate(90deg);
}
.page_container .main_side .projects .project_list .right_arr {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .projects .project_list .right_arr.slick-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_container .main_side .projects .project_list .right_arr svg {
  transform: rotate(-90deg);
}

.page_container .main_side .calculator_banner {
  margin-top: 60px;
  background: #f6f7fb;
  overflow: hidden;
  border-radius: 10px;
  min-height: 328px;
  position: relative;
}
.page_container .main_side .calculator_banner .textblock {
  max-width: 510px;
  margin: 60px 90px 60px auto;
  position: relative;
  z-index: 1;
}
.page_container .main_side .calculator_banner .textblock p:nth-child(1) {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.page_container .main_side .calculator_banner .textblock a {
  width: 330px;
  height: 48px;
  margin-top: 40px;
}
.page_container .main_side .calculator_banner .block {
  background: #fed32a;
  border-radius: 10px;
  transform: rotate(12.66deg);
  position: absolute;
  left: -70px;
  top: 102px;
  width: 708px;
  height: 377px;
}
.page_container .main_side .calculator_banner > img {
  position: absolute;
  left: 65px;
  bottom: 0px;
  z-index: 1;
}

.page_container .main_side .graphics {
  margin-top: 60px;
}
.page_container .main_side .graphics > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .graphics > p a svg {
  transform: rotate(-90deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.page_container .main_side .graphics .graphs {
  margin-top: 30px;
  display: flex;
}
.page_container .main_side .graphics .graphs .main_graph {
  background: #f6f7fb;
  border-radius: 10px;
  position: relative;
  width: calc(75% - 30px);
  margin-right: 30px;
  max-width: 1000px;
}
.page_container .main_side .graphics .graphs .main_graph img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  width: 94%;
  max-width: 890px;
}
.page_container .main_side .graphics .graphs .main_graph img.mob {
  display: none;
}
.page_container .main_side .graphics .graphs .main_graph img.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s, visibility 1.2s;
}
.page_container .main_side .graphics .graphs > ul {
  display: flex;
  flex-direction: column;
  max-width: 340px;
  width: 25%;
  margin-left: auto;
  position: relative;
}
.page_container .main_side .graphics .graphs > ul li {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 15px;
  min-height: 113px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.page_container .main_side .graphics .graphs > ul li:hover {
  border-color: rgba(0, 174, 255, 0.5);
}
.page_container .main_side .graphics .graphs > ul li.active {
  border-color: #00aeff;
}
.page_container .main_side .graphics .graphs > ul li:last-child {
  margin-bottom: 0px;
}
.page_container .main_side .graphics .graphs > ul li p:nth-child(1) {
  font-size: 36px;
  line-height: 40px;
  font-family: "ALS SectorB";
  margin-bottom: 4px;
}

.page_container .main_side .history {
  background: #fed32a;
  padding: 60px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-top: 30px;
}
.page_container .main_side .history > p {
  font-size: 36px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
.page_container .main_side .history > p a {
  margin-left: auto;
  font-size: 16px;
  line-height: 20px;
  color: #0070c9;
  font-family: "ALS SectorB";
  align-items: center;
  display: flex;
  margin-top: 11px;
}
.page_container .main_side .history > p a svg {
  margin-left: 8px;
  margin-top: 2px;
  --mini-arrow-color: #0070c9;
}
.page_container .main_side .history ul {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.page_container .main_side .history ul li {
  --smeta-main: #111111;
  --smeta-sec: #fed32a;
  display: flex;
  margin-right: 5%;
  font-size: 18px;
  width: 25%;
}
.page_container .main_side .history ul li:last-child {
  margin-right: 0px;
}
.page_container .main_side .history ul li svg {
  margin-right: 12px;
  min-width: 32px;
}
.page_container .main_side .history ul li:nth-child(1) {
  width: 23.5%;
}
.page_container .main_side .history ul li:nth-child(2) {
  width: 21%;
}
.page_container .main_side .history ul li:nth-child(3) {
  width: 22%;
}
.page_container .main_side .history ul li:nth-child(4) {
  width: 18.5%;
}
.page_container .main_side .history .mobile_link {
  display: none;
}

.page_container .main_side .reviews {
  margin-top: 60px;
}
.page_container .main_side .reviews .container {
  display: flex;
}
.page_container .main_side .reviews .left_part {
  width: 37%;
  max-width: 500px;
  margin-right: 6%;
}
.page_container .main_side .reviews > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .reviews .left_part .review_slider {
  margin-top: 30px;
}
.page_container .main_side .reviews .left_part .review_slider .review_text {
  display: flex;
  flex-direction: column;
}
.page_container
  .main_side
  .reviews
  .left_part
  .review_slider
  .review_text
  p:first-child {
  line-height: 24px;
}
.page_container .main_side .reviews .left_part .review_slider .review_text a {
  font-size: 16px;
  color: #0070c9;
  margin-top: 20px;
}
.page_container
  .main_side
  .reviews
  .left_part
  .review_slider
  .review_text
  p.author {
  margin-top: 74px;
  display: flex;
  flex-direction: column;
  font-family: "ALS SectorB";
}
.page_container
  .main_side
  .reviews
  .left_part
  .review_slider
  .review_text
  p.author
  span {
  margin-top: 4px;
  font-family: "ALS SectorR";
}
.page_container .main_side .reviews .right_part {
  width: 58%;
  position: relative;
  --arrow-color: #00aeff;
  margin-top: -24px;
}
.page_container .main_side .reviews .right_part .left_arr {
  position: absolute;
  left: 12px;
  top: 35%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .reviews .right_part .left_arr.slick-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_container .main_side .reviews .right_part .left_arr svg {
  transform: rotate(90deg);
}
.page_container .main_side .reviews .right_part .right_arr {
  position: absolute;
  right: -12px;
  top: 35%;
  transform: translate(-10%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .reviews .right_part .right_arr.slick-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_container .main_side .reviews .right_part .right_arr svg {
  transform: rotate(-90deg);
}
.page_container .main_side .reviews .right_part .review {
  margin: 0px 15px;
  min-width: 237px;
}
.page_container .main_side .reviews .right_part .review .img {
  background: #f6f7fb;
  border: 1px solid #f6f7fb;
  box-sizing: border-box;
  border-radius: 10px;
  max-width: 237px;
  height: 237px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: border-color 0.3s;
  cursor: pointer;
}
.page_container .main_side .reviews .right_part .review:hover .img {
  border-color: rgba(0, 174, 255, 0.5);
}
.page_container .main_side .reviews .right_part .review.slick-current .img {
  border-color: #00aeff;
}
.page_container .main_side .reviews .right_part .review p {
  font-family: "ALS SectorB";
  font-size: 16px;
  text-transform: uppercase;
  max-width: 185px;
  cursor: pointer;
}
.page_container .main_side .reviews .right_part .dots_block {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.page_container .main_side .reviews .right_part .dots_block ul {
  display: flex;
}
.page_container .main_side .reviews .right_part .dots_block ul li {
  margin-right: 16px;
  width: 50px;
  height: 4px;
  background: #a1a1a1;
  cursor: pointer;
  transition: background 0.3s;
}
.page_container .main_side .reviews .right_part .dots_block ul li:last-child {
  margin-right: 0px;
}
.page_container .main_side .reviews .right_part .dots_block ul li button {
  font-size: 0px;
  color: transparent;
}
.page_container .main_side .reviews .right_part .dots_block ul li.slick-active {
  background: #00aeff;
}

.page_container .main_side .certificates {
  margin-top: 60px;
  display: flex;
  position: relative;
}
.page_container .main_side .certificates .left_part {
  width: 39%;
  margin-right: 4.5%;
  z-index: 2;
  position: relative;
}
.page_container .main_side .certificates .left_part .info {
  color: #fff;
  margin-top: 90px;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}
.page_container .main_side .certificates .left_part > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .certificates .left_part .info p:nth-child(1) {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.page_container .main_side .certificates .left_part .info p:nth-child(2) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 20px;
}
.page_container .main_side .certificates .left_part .info p:nth-child(3) {
  margin-top: 272px;
}
.page_container .main_side .certificates .left_part .info a {
  color: #fff;
  --mini-arrow-color: #fff;
}
.page_container .main_side .certificates .left_part .info a svg {
  margin-left: 8px;
  margin-top: 1px;
}
.page_container .main_side .certificates .right_part {
  z-index: 2;
  position: relative;
  width: 56.5%;
}
.page_container .main_side .certificates .right_part ul {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.page_container .main_side .certificates .right_part ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
}
.page_container .main_side .certificates .right_part ul li:nth-child(3n) {
  margin-right: 0px;
}
.page_container .main_side .certificates .right_part ul li:nth-child(n + 4) {
  margin-bottom: 0px;
}
.page_container .main_side .certificates .right_part ul li .sert {
  cursor: pointer;
  position: relative;
  display: flex;
}
.page_container .main_side .certificates .right_part ul li .sert:after {
  opacity: 0;
  visibility: hidden;
  content: "";
  background: url(../images/zoom.png) no-repeat center center
    rgba(255, 255, 255, 0.5);
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 8px);
  transition: opacity 0.3s, visibility 0.3s;
  left: -4px;
  top: -4px;
}
.page_container .main_side .certificates .right_part ul li .sert:before {
  content: "";
  opacity: 0;
  visibility: hidden;
  position: absolute;
  box-sizing: border-box;
  width: calc(100% + 4px);
  height: calc(100% + 8px);
  border: 4px solid #00aeff;
  transition: opacity 0.3s, visibility 0.3s;
  left: -4px;
  top: -4px;
}
.page_container .main_side .certificates .right_part ul li .sert img {
  float: left;
  width: 100%;
  max-width: 244px;
}
.page_container .main_side .certificates .right_part ul li .sert:hover:after {
  opacity: 1;
  visibility: visible;
}
.page_container .main_side .certificates .right_part ul li .sert:hover:before {
  opacity: 1;
  visibility: visible;
}
.page_container .main_side .certificates > .block {
  background: #00aeff;
  height: 82%;
  width: 95.5%;
  border-radius: 10px;
  position: absolute;
  left: 0px;
  top: 52px;
}

.page_container .main_side .certificates .owl-prev {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .certificates .owl-prev svg {
  transform: rotate(90deg);
  --arrow-color: #00aeff;
}
.page_container .main_side .certificates .owl-next {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(40%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0px 15px 18px rgba(0, 0, 0, 0.1);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page_container .main_side .certificates .owl-next svg {
  transform: rotate(-90deg);
  --arrow-color: #00aeff;
}

.page_container .main_side .partners {
  margin-top: 40px;
}
.page_container .main_side .partners > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .partners .container {
  margin-top: 30px;
  background: #f6f7fb;
  border-radius: 10px;
  padding: 60px 60px 30px 60px;
  box-sizing: border-box;
}
.page_container .main_side .partners .container > p {
  font-size: 36px;
  line-height: 40px;
}
.page_container .main_side .partners .container ul {
  display: flex;
  flex-wrap: wrap;
}
.page_container .main_side .partners .container ul li {
  width: 18%;
  margin: 30px 9% 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_container .main_side .partners .container ul li:nth-child(4n) {
  margin-right: 0px;
}
.page_container .main_side .partners .container ul li img {
  width: 100%;
}

.page_container .main_side .form {
  margin-top: 60px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.page_container .main_side .form > p a {
  font-size: 26px;
  line-height: 32px;
  font-family: "ALS SectorB";
  --arrow-color: #232e41;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.page_container .main_side .form .form_container {
  max-width: 617px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.page_container .main_side .form .form_container > p:nth-child(1) {
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.page_container .main_side .form .form_container > p:nth-child(1) span {
  color: #ff1938;
  font-family: "ALS SectorB";
}
.page_container .main_side .form .form_container > p:nth-child(2) {
  font-size: 20px;
  line-height: 40px;
  display: flex;
  align-items: center;
}
.page_container .main_side .form .form_container > p:nth-child(2) svg {
  margin-right: 10px;
}
.page_container .main_side .form form {
  margin-top: 20px;
  max-width: 470px;
}
.page_container .main_side .form form .input_container {
  height: 48px;
  border: 1px solid #a1a1a1;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.3s;
}
.page_container .main_side .form form .input_container:last-of-type {
  margin-bottom: 0px;
}
.page_container .main_side .form form .input_container > * {
  height: 100%;
  display: flex;
  align-items: center;
  color: #111111;
}
.page_container .main_side .form form .input_container > p {
  color: #a1a1a1;
  min-width: 38px;
  font-size: 20px;
}
.page_container .main_side .form form .input_container input {
  width: 100%;
  font-size: 20px;
}
.page_container .main_side .form form .input_container label.error {
  position: absolute;
  color: #ff1938;
  top: 100%;
  left: 0px;
  line-height: 16px;
  height: auto;
  font-size: 12px;
}
.page_container .main_side .form form .input_container span.error {
  position: absolute;
  color: #ff1938;
  top: 100%;
  left: 0px;
  line-height: 16px;
  height: auto;
  font-size: 12px;
}
.page_container .main_side .form form .input_container.error {
  border-color: #ff1938;
}
.page_container .main_side .form form button {
  margin-top: 30px;
  width: 325px;
  height: 48px;
  margin-bottom: 16px;
  box-shadow: none;
}
.page_container .main_side .form form button:disabled {
  /* background: #e5e5e5;
  cursor: default; */
}
.button:disabled:after {
  display: none;
}
.page_container .main_side .form form button:disabled:hover {
  box-shadow: none;
}
.page_container .main_side .form form button:hover {
  box-shadow: 0 0 40px rgba(0, 174, 255, 0.5);
}
.page_container .main_side .form form .inform {
  font-size: 16px;
  line-height: 20px;
}
.page_container .main_side .form form .inform a {
  color: #00aeff;
}
.page_container .main_side .form .bg {
  position: absolute;
  left: 600px;
  bottom: 0px;
}
.page_container .main_side .form .balk {
  position: absolute;
  left: 958px;
  top: 0px;
}
.page_container .main_side .form .manager {
  position: absolute;
  left: 710px;
  bottom: 0px;
}

footer {
  margin-top: 40px;
}
footer .center {
  flex-direction: column;
}
footer .line_1 {
  margin-bottom: 44px;
}
footer .line_2 {
  margin-bottom: 45px;
  display: flex;
}
footer .line_2 .menu_column {
  width: 25%;
}
footer .line_2 .menu_part {
  margin-bottom: 12px;
}
footer .line_2 .menu_part:last-child {
  margin-bottom: 0px;
}
footer .line_2 .menu_part p.top {
  font-size: 18px;
  line-height: 24px;
  font-family: "ALS SectorB";
  text-transform: uppercase;
}
footer .line_2 .menu_part p.rows {
  display: flex;
  flex-direction: column;
  line-height: 24px;
  font-size: 18px;
}
footer .line_2 .menu_part ul {
  margin-top: 14px;
  padding-left: 10px;
  box-sizing: border-box;
}
footer .line_2 .menu_part ul li {
  margin-bottom: 8px;
}
footer .line_2 .menu_part ul li a {
  font-size: 18px;
  line-height: 24px;
}
footer .line_2 .menu_part ul li:last-child a {
  margin-bottom: 0px;
}
footer .line_2 .menu_part .icon_list {
  margin-top: 0px;
  padding-left: 0px;
  display: flex;
  align-items: center;
}
footer .line_2 .menu_part .icon_list li {
  margin-right: 20px;
  margin-bottom: 0px;
}
footer .line_2 .menu_part .icon_list li:last-child {
  margin-right: 0px;
}
footer .line_2 .menu_part .icon_list a svg {
  float: left;
}
footer .line_2 .menu_part .icon_list a svg path {
  transition: fill 0.3s;
}
footer .line_2 .menu_part .icon_list a svg:hover path {
  --footer-social: #00aeff;
}
footer .line_3 {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 20px;
}
footer a {
  transition: color 0.3s;
}
footer a:hover {
  color: #00aeff;
}

.fixed_header {
  position: fixed;
  left: 0px;
  top: 0px;
  background: #fff;
  z-index: 7;
  border-bottom: 1px solid #f6f7fb;
  max-height: 80px;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.fixed_header.shown {
  opacity: 1;
  visibility: visible;
}
.fixed_header .center {
  align-items: center;
  height: 100%;
}
.fixed_header .center > button.cata {
  background: #00aeff;
  border-radius: 10px;
  width: 188px;
  min-width: 188px;
  height: 48px;
  color: #fff;
  text-align: left;
  padding: 0px 11px;
  font-size: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 50px;
}
.fixed_header .center > button.cata img {
  position: relative;
  top: -1px;
  margin-right: 10px;
}
.fixed_header .center > button.cata svg {
  margin-left: auto;
  transform: rotate(180deg);
  transition: transform 0.3s;
}
.fixed_header .center > button.cata.closed svg {
  transform: rotate(0deg);
}
.fixed_header .center .search {
  width: 100%;
  max-width: 433px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 10px;
  height: 48px;
  overflow: hidden;
  margin: 0px 43px 0px 43px;
}
.fixed_header .center .search button {
  width: 19%;
  height: 100%;
  background: #e2e2e2;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer;
  color: #a1a1a1;
  font-size: 16px;
  margin-left: auto;
}
.fixed_header .center .search input {
  width: 81%;
  height: 100%;
  border: 0px;
  background: transparent;
  padding: 0px 24px;
  box-sizing: border-box;
  font-size: 18px;
}
.fixed_header .center .buttons {
  display: flex;
}
.fixed_header .center .buttons li {
  margin-right: 24px;
}
.fixed_header .center .buttons li:last-child {
  margin-right: 0px;
}
.fixed_header .center .buttons li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  position: relative;
  line-height: 16px;
}
.fixed_header .center .buttons li a span.count {
  width: 14px;
  height: 14px;
  border-radius: 14px;
  background: #ff1938;
  position: absolute;
  right: -7px;
  top: -5px;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: 10px;
}
.fixed_header .center .buttons li a img {
  margin-right: 11px;
}
.fixed_header .center .buttons li.enter {
  display: flex;
  align-items: center;
}
.fixed_header .center .buttons li.enter a {
  border-bottom: 1px solid;
  border-color: transparent;
  transition: border-color 0.3s;
}
.fixed_header .center .buttons li.enter img {
  margin-right: 11px;
}
.fixed_header .center .buttons li.enter span {
  margin: 0px 5px;
  line-height: 16px;
  margin-top: 2px;
}
.fixed_header .center .buttons li.enter a:hover {
  border-color: #111111;
}
.fixed_header .center .button_black {
  box-sizing: border-box;
  height: 48px;
  width: 100%;
  max-width: 186px;
  font-size: 16px;
  line-height: 150%;
  font-family: "ALS SectorB";
  margin-left: 50px;
  cursor: pointer;
}
.fixed_header .center .callme {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  align-items: flex-end;
}
.fixed_header .center .callme span {
  font-size: 12px;
  line-height: 167%;
  display: flex;
  align-items: center;
}
.fixed_header .center .callme span:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #16c67a;
  margin-right: 5px;
}
.fixed_header .center .callme a {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 120%;
  color: #16c67a;
  font-family: "ALS SectorB";
}
.fixed_header .center .callme a img {
  margin-right: 8px;
}

.mobile_header {
  display: none;
}
.footer_mobile {
  display: none;
}

.fancybox__thumbs {
  display: none;
}

.mobile_menu {
  position: fixed;
  top: 0%;
  overflow: auto;
  z-index: 10;
  background: #fff;
  padding: 20px 0px 80px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  box-sizing: border-box;
  height: 100%;
}
.mobile_menu.showmenu {
  opacity: 1;
  visibility: visible;
}
.mobile_menu .menu_row {
  width: 100%;
}
.mobile_menu .menu_row > li {
  min-height: 44px;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
  display: flex;
  flex-direction: column;
}
.mobile_menu .menu_row > li > p {
  margin: 10px 0px;
  display: flex;
  stroke: #111111;
  align-items: center;
  font-size: 16px;
  font-family: "ALS SectorB";
}
.mobile_menu .menu_row > li > p svg {
  margin-left: auto;
  min-width: 6px;
  margin-right: 10px;
  transition: transform 0.3s;
}
.mobile_menu .menu_row .submenu {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s;
  padding-left: 15px;
  box-sizing: border-box;
}
.mobile_menu .menu_row .submenu li {
  font-size: 14px;
  padding-bottom: 10px;
}
.mobile_menu .menu_row .submenu li:last-child {
  margin-bottom: 0px;
}
.mobile_menu .menu_row > li.email img,
.mobile_menu .menu_row > li.phone img {
  width: 18px;
  margin-right: 10px;
}
.mobile_menu .menu_row > li.map img {
  width: 16px;
  margin-right: 10px;
}
.mobile_menu .menu_row > li.email a,
.mobile_menu .menu_row > li.phone a {
  display: flex;
  align-items: center;
}
.mobile_menu .menu_row > li.map a {
  display: flex;
  align-items: center;
}
.mobile_menu .menu_row > li.buttn button {
  height: 34px;
  border-radius: 4px;
  width: 100%;
  max-width: 177px;
  margin-top: 20px;
}
.mobile_menu .menu_row > li.buttn .button_black:after {
  display: none;
}
.mobile_menu .menu_row > li:last-child {
  border-bottom: 0px;
}
.mobile_menu .menu_row > li.opened > p svg {
  transform: rotate(180deg);
}
.mobile_menu .menu_row > li.contacts > div {
  display: flex;
  flex-direction: column;
  line-height: 24px;
  font-size: 18px;
  align-items: center;
  margin: 20px 0px 0px;
}
.mobile_menu .menu_row > li.contacts > div p {
  margin-bottom: 10px;
}
.mobile_menu .menu_row > li.contacts > div p.rows {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile_menu .menu_row > li.contacts > div div {
  display: flex;
  align-items: center;
}
.mobile_menu .menu_row > li.contacts > div div a {
  margin-right: 20px;
}
.mobile_menu .menu_row > li.contacts > div div a:last-child {
  margin-right: 0px;
}

.mobile_catalog,
.fixed_catalog {
  display: none;
}

.search__wrap > .cat__sidebar2 {
  width: 21%;
  max-width: 370px;
}
.search__content {
  width: calc(79% - 20px);
}
.cat__wrap {
  padding-left: 20px;
  box-sizing: border-box;
}

@media (max-width: 1440px) {
  .sec_menu .container ul li {
    width: 48%;
  }

  .left_side .sec_menu .simplebar-content {
    padding: 25px !important;
  }
}

@media (max-width: 1100px) {
  .sec_menu .container ul li {
    width: 100%;
    margin: 10px 0px;
  }

  .left_side .sec_menu .simplebar-content {
    padding: 25px !important;
  }

  .search__content {
    width: 100%;
  }
}

.page_container .main_side .element__form.form {
  display: block;
  width: 100%;
  max-width: 1170px;
  margin: 65px auto 0 auto;
  background: #f6f7fb;
  border-radius: 10px;
  padding: 65px 50px;
  box-sizing: border-box;
  background-image: url("/local/templates/diodex_asd/assets/images/element-calculator.png");
  background-repeat: no-repeat;
  background-position: right center;
}

.page_container .main_side .element__form.form .form_container {
  margin: 0;
}

.page_container .main_side .element__form.form form .inform a {
  border: none;
}

.page_container .main_side .element__form.form form button {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .page_container .main_side .element__form.form {
    background-image: none;
    margin-top: 30px;
    padding: 65px 60px;
  }

  .page_container .main_side .element__form.form .form_container {
    max-width: unset;
  }

  .page_container .main_side .element__form.form form {
    max-width: unset;
  }

  .page_container .main_side .element__form.form form .input_container {
    max-width: unset;
    height: 53px;
  }

  .page_container
    .main_side
    .element__form.form
    .form_container
    > p:nth-child(1) {
    font-size: 26px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 20px;
  }

  .page_container
    .main_side
    .element__form.form
    .form_container
    > p:nth-child(2) {
    font-size: 20px;
    line-height: 40px;
    justify-content: center;
  }

  .page_container .main_side .element__form.form form button {
    font-size: 20px;
    line-height: 24px;
    max-width: 325px;
    padding: 12px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .page_container .main_side .element__form.form form .inform {
    font-size: 16px;
    line-height: 20px;
    max-width: 404px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .card__content {
    overflow: visible;
  }

  .page_container .main_side .element__form.form {
    width: calc(100% + 40px);
    margin-left: -20px;
    border-radius: 0;
    padding: 40px 15px;
  }

  .page_container
    .main_side
    .element__form.form
    .form_container
    > p:nth-child(1) {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 17px;
    text-align: left;
  }

  .page_container
    .main_side
    .element__form.form
    .form_container
    > p:nth-child(2) {
    font-size: 14px;
    line-height: 20px;
    justify-content: flex-start;
  }

  .page_container .main_side .element__form.form form {
    margin-top: 17px;
  }

  .page_container .main_side .element__form.form form .input_container {
    margin-bottom: 16px;
    height: 34px;
    border-radius: 4px;
  }

  .page_container .main_side .element__form.form form button {
    max-width: unset;
    font-size: 12px;
    line-height: 120%;
    font-weight: 400;
    padding: 10px;
    border-radius: 4px;
    margin-top: 17px;
    margin-bottom: 7px;
  }

  .page_container .main_side .element__form.form form .inform {
    font-size: 12px;
    line-height: 16px;
  }
}

.mob-head-links {
  display: flex;
  gap: 10px;
}