@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.cdnfonts.com/css/acumin-pro");
@import url("https://fonts.cdnfonts.com/css/acumin-pro");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
* {
  font-family: "Acumin Pro", sans-serif;
}

.wrapper {
  width: 100%;
  background-color: #45494E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  min-width: 360px;
  left: 0px;
  top: 0;
  z-index: 10;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}
.header__wrapper {
  position: relative;
  width: 90%;
  overflow: visible;
  margin: auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
.header__logo {
  height: 70px;
  width: 70px;
  z-index: 4;
  margin-top: -5px;
  overflow: visible;
}
.header__logo img {
  height: 70px;
  width: 70px;
  overflow: visible;
}
.header img {
  height: 70px;
  width: 70px;
  -webkit-transition: 1s;
  transition: 1s;
}

.menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
.menu__list > li {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__list > li:last-child {
  max-width: 150px;
  margin-right: -10px;
}
.menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__link {
  margin: 0 auto;
  font-family: "Acumin Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.menu__link:hover {
  color: #F9A800;
}
.menu__link:focus {
  color: #fff;
  text-decoration: none;
}
.menu__icon {
  display: none;
}
.menu__sub-list {
  position: absolute;
  top: 90%;
  right: 0;
  background-color: #000;
  padding: 15px;
  min-width: 70px;
  z-index: 10;
}
.menu__sub-list li {
  margin-bottom: 10px;
  text-align: center;
}
.menu__sub-list li:last-child {
  margin-bottom: 0px;
}
.menu__sub-link {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
}
.menu__sub-link:hover {
  text-decoration: underline;
}
.menu__arrow {
  display: none;
}

.menu__list {
  margin-bottom: 0;
}

.contacts {
  padding: 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contacts__icons {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.contacts__icons_icon {
  margin-left: 10px;
  height: 22px;
  width: 22px;
}
.contacts__icons_icon img {
  width: 100%;
  height: 100%;
}
.contacts__number {
  text-align: right;
  color: #f9a800;
  margin-bottom: 3px;
}
.contacts__adr {
  text-align: right;
  color: #fff;
}

.cic {
  margin-top: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bigger {
  height: 30px;
  width: 30px;
  margin-left: 15px;
}

.bigger1 {
  margin-left: 0;
}

.cab_but {
  padding: 5px 6px 4px 6px;
  border-radius: 5px;
  background-color: #F9A800;
}
.cab_but:hover {
  color: #Fff;
  padding: 8px 8px 6px 8px;
}

body.pc .menu__list > li:hover .menu__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(25px, 0%);
          transform: translate(25px, 0%);
  pointer-events: all;
  z-index: 7;
}

body._touch .menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

body._touch .menu__link {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #fff;
}

body._touch .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(25px, 0%);
          transform: translate(25px, 0%);
  pointer-events: all;
}

body._touch .menu__list > li._active .menu__arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

@media (min-width: 767px) {
  .menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu__list > li {
    padding: 10px 0;
  }
  .menu__sub-list {
    -webkit-transform: translate(25px, 10%);
            transform: translate(25px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 767px) {
  .header {
    height: 70px;
  }
  .header__logo {
    height: 60px;
    width: 60px;
  }
  .header__logo img {
    height: 60px;
    width: 60px;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu {
    margin-bottom: 25px;
  }
  .menu__icon {
    margin-top: 25px;
    z-index: 5;
    display: block;
    position: relative;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .menu__icon::before {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #fff;
  }
  .menu__icon::before {
    content: "";
    top: 0;
  }
  .menu__icon::after {
    content: "";
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    -webkit-transform: scale(1) translate(0px, -50%);
            transform: scale(1) translate(0px, -50%);
  }
  .menu__icon._active span {
    -webkit-transform: scale(0) translate(0px, -50%);
            transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    -webkit-transform: rotate(-45deg) translate(0px, -50%);
            transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    bottom: 50%;
    -webkit-transform: rotate(45deg) translate(0px, 50%);
            transform: rotate(45deg) translate(0px, 50%);
  }
  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px 30px 30px 30px;
    -webkit-transition: left 0.4s ease 0s;
    transition: left 0.4s ease 0s;
    overflow: auto;
  }
  .menu__body._active {
    left: 0;
  }
  .menu__list > li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
    -webkit-transition: top 0.3s ease 0s;
    transition: top 0.3s ease 0s;
    text-align: center;
    z-index: 20;
    margin-right: 0;
    /*
    &:nth-child(4) {
    	display: none;
    }
    */
  }
  .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .menu__list > li:last-child div div {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
    width: 170px;
    margin-bottom: 18px;
    font-size: 18px;
  }
  .menu__list > li:last-child div div a {
    margin-left: 0;
    width: 30px;
    height: 30px;
    margin-bottom: 2px;
  }
  .menu__list > li:first-child {
    margin-top: 15px;
  }
  body._touch .menu__list > li {
    margin: 40px 0 0 0px;
  }
  body._touch .menu__list > li:nth-child(6) {
    margin-bottom: 50px;
  }
  .menu__list > li._active .menu__sub-list {
    display: block;
  }
  /*
  .menu__list > li._active {
  	display: grid;
  	grid-template: 36px 1fr / 1fr 1fr;
  	//grid-template-columns: 1fr 1fr;
  	//grid-template-areas: 'title arrow' 'footer footer';
  }
  .menu__list > li._active .menu__link{
  	grid-area: title;
  	text-align-last: left;
  }
  .menu__list > li._active .menu__arrow{
  	grid-area: arrow;
  	text-align-last: right;
  }
  .menu__list > li._active form{
  	grid-area: footer;
  	text-align-last: center;
  }
  */
  .menu__link {
    font-size: 24px;
  }
  .menu__sub-list {
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-top: 20px;
    display: none;
    -webkit-transition: top 0.3s ease 0s;
    transition: top 0.3s ease 0s;
  }
  .menu__sub-link {
    font-size: 20px;
    color: #fff;
  }
}
footer {
  font-family: "Acumin Pro", sans-serif;
  width: 100%;
  background: #ffbb00;
  -webkit-box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.35) inset;
          box-shadow: 0px 4px 2px 0px rgba(0, 0, 0, 0.35) inset;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 10px;
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  height: 100%;
}

.footer__links_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__titles {
  color: #45494E;
  font-family: "Acumin Pro", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  margin-bottom: 30px;
  height: 50px;
  letter-spacing: 1px;
}

.footer__link {
  color: #45494E;
  font-family: "Acumin Pro", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer__link:hover {
  color: #000;
}
.footer__link_text {
  color: #000;
  display: none;
}
.footer__link_text._active {
  font-size: 15px;
  font-weight: 400;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 140%;
}
.footer__link_text._active div {
  text-align: left;
}
.footer__link_text._active a {
  color: #fff;
  letter-spacing: 1px;
}

.footer__logo {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo_text {
  font-family: "Acumin Pro", sans-serif;
  color: #45494E;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 850px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .cic {
    margin-top: 10px;
  }
  .footer__list {
    width: 100%;
  }
  .footer__link {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    width: 100%;
  }
  .footer__link_text {
    display: none;
  }
  .footer__link_text._active {
    max-width: 400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__link_text._active div {
    text-align: center;
  }
  .footer__titles {
    margin-bottom: 20px;
    text-align: center;
    font-size: 40px;
    width: 100%;
  }
}
.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 20px 40px;
  padding-top: 130px;
}
.main__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  gap: 20px;
  margin: 0 auto;
}
.main__wrapper_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  width: 720px;
  background-color: #000;
  border-radius: 35px;
  padding: 5px 15px;
  margin: 0 auto;
  margin-bottom: 25px;
  -webkit-box-shadow: 4px 7px 15px 7px rgba(0, 0, 0, 0.45);
          box-shadow: 4px 7px 15px 7px rgba(0, 0, 0, 0.45);
}
.main__wrapper_item_title {
  width: 100%;
  height: 146px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
.main__wrapper_item_title_img {
  height: 110px;
  min-width: 100px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.main__wrapper_item_title_img:hover {
  -webkit-transform: scale(1.1) translate(0px, 0px);
          transform: scale(1.1) translate(0px, 0px);
}
.main__wrapper_item_title_img img {
  height: 100%;
  width: 100%;
}
.main__wrapper_item_title_text {
  margin-left: 10px;
  font-family: "Acumin Pro", sans-serif;
  color: #f9a800;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main__wrapper_item_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.main__wrapper_item_data_elem {
  margin-bottom: 10px;
  width: 100%;
}
.main__wrapper_item_data_elem_title {
  text-align: left;
  color: #f9a800;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.main__wrapper_item_data_elem_list_item {
  margin-left: 15px;
  line-height: 150%;
  margin-top: 7px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main__wrapper_item_footer {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.main__wrapper_item_footer_text {
  text-align: center;
  font-family: "Acumin Pro", sans-serif;
  color: #fff;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main__wrapper_item_footer_text:hover {
  font-size: 32px;
}

.inner {
  font-weight: 700;
  color: transparent;
  text-shadow: 2px 2px 3.5px rgba(69, 73, 78, 0.4), 0 0 #090909;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}

/*
.inneryellow {
	//color:rgb(249, 168, 0);
	//font-size: 90px;
	font-weight: 700;
	//background-color: #45494E;
	//background-color: #121212;
	color: transparent;
	 //text-shadow: 2px 2px 3.75px rgba(0,0,0,0.5), 0 0 #444;
	 text-shadow: 0px 2px 1px rgba(255, 168, 0,0.8), 0 0 #5c4801;
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text; 
}
*/
.yellow-square {
  width: 6px;
  height: 6px;
  background-color: #f9a800;
  display: inline-block; /* Чтобы элементы были в одной строке */
  margin-right: 5px; /* Расстояние между квадратом и элементами списка */
  vertical-align: middle;
  margin-bottom: 4px;
}

@media (max-width: 820px) {
  .main {
    padding: 50px 10px;
    padding-top: 100px;
  }
  .main__wrapper {
    width: 100%;
  }
  .main__wrapper_item {
    width: 90%;
  }
}
@media (max-width: 500px) {
  .main {
    padding: 50px 10px;
    padding-top: 80px;
  }
  .main__wrapper_item {
    width: 96%;
    margin-bottom: 10px;
  }
  .main__wrapper_item_title {
    margin-bottom: 0;
    height: 140px;
  }
  .main__wrapper_item_title_img {
    height: 100px;
    width: 90px;
  }
  .main__wrapper_item_title_text {
    font-size: 25px;
  }
  .main__wrapper_item_data_elem {
    margin-bottom: 3px;
  }
  .main__wrapper_item_footer {
    padding-top: 10px;
  }
  .main__wrapper_item_footer_text {
    font-size: 24px;
  }
  .main__wrapper_item_footer_text:hover {
    font-size: 26px;
  }
}