.header {
  width: 100%;
  height: 112px;
  box-sizing: border-box;
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: space-between;
}
.header_Mob {
  display: flex;
  align-items: center;
}
.header_button {
  display: flex;
  align-items: center;
}
.header_logo {
  background: url("../img/logo_Protocol.svg");
  min-width: 223.85px;
  height: 69.67px;
}
.header_registration {
  display: flex;
  background: #F2C25B;
  border-radius: 4px;
  padding: 0 19px;
  width: 177px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.header_registration:hover {
  background: #FFCC60;
}
.header_registration a {
  text-decoration: none;
  color: black;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.header_enter {
  margin-left: 1.2vw;
  padding: 0 19px;
  display: flex;
  background: #BD462B;
  border-radius: 4px;
  color: white;
  width: 80px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16px;
  transition: 0.4s;
}
.header_enter:hover {
  background: #B62C0C;
}
.header_enter a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}
.header_loggedBox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header_loggedBox__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header_loggedBox__block.img {
  height: 19px;
  width: 32px;
}
.header_loggedBox__block.link {
  width: 40px;
  height: 40px;
  background-color: white;
  transition: 0.4s;
}
.header_loggedBox__block.link:hover {
  background-color: #FFF2D9;
  border-radius: 20px;
  transform: scale(1.2);
}
.header_loggedBox__block.counter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF3B20;
  border-radius: 7px;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
}
.header_loggedBox__profile {
  width: 68px;
  height: 68px;
  background: url("../img/Oval.png");
}

select {
  margin-left: 1.7vw;
  width: 60px;
  height: 40px;
  background: #F5F5F5;
  box-shadow: 3px 3px 80px rgba(55, 84, 170, 0.1), -3px -3px 80px #FFFFFF, inset 4px 4px 20px rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  border: 1px solid #D8D8D8;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 11px 15px 18px 15px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .header_Mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_button {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_logo {
    background-repeat: no-repeat;
    margin-bottom: 16.2px;
  }
  .header select {
    float: right;
    margin-right: 0;
  }
  .header_enter {
    margin-left: 60px;
  }
  .header_loggedBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1150px) {
  .header {
    padding: 0vw;
    justify-content: space-around;
  }

  select {
    margin-right: 10vw;
  }
}
.navMobile {
  display: none;
}

.nav {
  width: 100%;
  min-height: 48px;
  background: #BD462B;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.nav_list {
  min-width: 1140px;
  max-width: 1140px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.nav_list__item a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
  line-height: 19px;
  transition: 0.4s;
}
.nav_list__item a:hover {
  background: #E45332;
}

@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }

  .navMobile {
    margin-top: 16px;
    display: flex;
    float: right;
    align-items: center;
    justify-content: space-around;
    height: 50px;
    width: 100%;
    background: #BD462B;
  }
}
#menu__toggle {
  opacity: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  float: right;
  top: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 21px;
  height: 2px;
  background-color: #ffffff;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  text-align: center;
  background-color: #BD462B;
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
  z-index:100;
}

.menu__item {
  display: block;
  padding: 12px 24px;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
.menu__item a {
  color: #FFFFFF;
}

.menu__item:hover {
  background-color: #E45332;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__text {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}

@media screen and (max-width: 960px) {
  .nav_list__item a {
    font-size: 75%;
  }
}
.section1 {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  height: 468px;
  max-width: 1120px;
}
.section1_heading {
  margin-top: 107px;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #383838;
  max-width: 679px;
}
.section1 .section5_paragraph {
  margin-top: 33px;
  font-size: 18px;
  line-height: 25px;
  color: #383838;
  max-width: 697px;
}
.section1_button {
  margin-top: 33px;
  grid-area: button;
  cursor: pointer;
  background: #F2C25B;
  border-radius: 4px;
  max-width: 307px;
  height: 48px;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.section1_button:hover {
  background: #FFCC60;
}
.section1_button a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.section1_img {
  position: absolute;
  right: 0;
  bottom: 40px;
}

@media screen and (max-width: 1050px) {
  .section1 {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .section1_heading {
    margin-top: 15px;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
  }
  .section1_paragraph {
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
  }
  .section1_img {
    position: unset;
    margin-bottom: 12px;
  }
  .section1_button {
    margin-bottom: 33px;
    width: 100%;
  }

  .b_img img {
    max-width: 100%;
  }

  .b_img2 {
    margin: 0;
  }

  .section3_flexbox__block1 p, .section3_flexbox__block2 p, .section3_flexbox__block3 p {
    max-width: 311px;
    width: 100%;
    height: 79px;
    margin-top: 0;
  }

  div.section3_flexbox2__block1, div.section3_flexbox2__block2, div.section3_flexbox2__block3 {
    height: 390px;
    width: 246px;
  }

  .b_text {
    display: flex;
    flex-direction: column;
  }

  .section3_flexbox2__block1, .section3_flexbox2__block2, .section3_flexbox2__block3 {
    flex-direction: column;
    display: flex;
  }

  div.section3_flexbox2 .b_img2 {
    margin-left: 0;
  }

  .section3_flexbox2 img {
    height: 130px;
  }

  section.section4 {
    padding: 2.8vw 10px;
  }

  section img.section4_img {
    width: 400px;
  }

  .section4_textblock__heading {
    margin: 0;
  }

  section.section6 {
    padding: 10px;
  }

  .nav_list {
    min-width: 100%;
  }

  section.section5 {
    width: auto;
  }

  section.section9 {
    padding: 10px;
  }

  div.b_button {
    padding: 0 24px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  div .section3_flexbox__block1 p, div .section3_flexbox__block2 p, div .section3_flexbox__block3 p {
    max-width: 311px;
    width: 100%;
    height: 129px;
  }

  .section4Mob_img {
    width: 41vw;
    margin: 0 auto;
  }

  iframe.section4Mob_video {
    margin: 0 auto;
  }

  .section4Mob_button {
    margin: 15px auto 0;
  }

  img.section5_img {
    width: 520px;
  }

  img.section6_newsBlock__img, img.section6_dataBlock__img, img.section6_analytics__img {
    box-sizing: border-box;
    padding-right: 0;
    margin-bottom: 10px;
  }

  div.num {
    font-size: 34px;
    line-height: 67px;
  }

  div.section7_counters__counter {
    max-width: 160px;
  }

  .section9_container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
  }

  .section9_firstBlock, .section9_secondBlock, .section9_thirdBlock {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1050px) {
  h1.section3_heading {
    width: 100%;
    height: 58px;
    font-family: Open Sans, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 23px;
    line-height: 29px;
    text-align: center;
    color: #383838;
    margin: 20px auto;
  }

  .section3_flexbox, .section3_flexbox2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-direction: column;
  }

  div.section3_flexbox__block1, div.section3_flexbox__block2, div.section3_flexbox__block3 {
    width: 100%;
    max-width: 100%;
  }

  div .section3_flexbox__block1 p, div .section3_flexbox__block2 p, div .section3_flexbox__block3 p {
    max-width: 100%;
    width: 100%;
    height: 50%;
  }

  div.section3_flexbox__block1, div.section3_flexbox__block2, div.section3_flexbox__block3 {
    width: 100%;
    max-width: 100%;
    align-items: center;
    margin: 5px auto;
  }

  div.section3_flexbox2__block1, div.section3_flexbox2__block2, div.section3_flexbox2__block3 {
    height: 390px;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .section9_secondBlock {
    order: 3;
  }

  .section1 {
    margin-bottom: 10px;
  }

  h1.section1_heading {
    text-align: center;
  }

  .section1_button {
    width: 90%;
  }

  .b_text {
    justify-content: center;
    align-items: center;
  }

  div.b_button {
    width: 100%;
    max-width: 90%;
  }

  .header_enter {
    margin-left: 40px;
  }

  section.section6 {
    height: auto;
  }

  div.section6_flexbox {
    flex-direction: column;
  }

  img.section6_dataBlock__img, img.section6_newsBlock__img, img.section6_analytics__img {
    width: 56px;
  }

  div.section6_dataBlock {
    margin-top: 108px;
  }

  h2.section6_heading {
    display: flex;
    font-size: 24px;
    line-height: 33px;
    justify-content: center;
  }

  div.section7_counters {
    justify-content: space-around;
  }

  div.section3_flexbox2__block1, div.section3_flexbox2__block2, div.section3_flexbox2__block3 {
    max-width: 100%;
    width: 100%;
    margin: 0 0 10px 0;
    height: 460px;
  }

  div.section3_flexbox {
    margin-bottom: 5px;
  }

  h2.section4Mob_heading {
    text-align: center;
  }

  .section3 {
    padding: 0;
  }

  div.b_button {
    height: 48px;
    min-height: 48px;
  }

  div.section4Mob_button {
    width: 90%;
  }

  .section3_flexbox2__block1 .b_img2, .section3_flexbox2 img, div.section3_flexbox2 .b_img2 {
    width: 100%;
    height: 100%;
  }

  .section4Mob_img {
    width: 100%;
    margin: 0 auto;
  }

  div.section5_button {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    bottom: 10px;
    z-index: 2;
    left: 0;
    right: 0;
  }

  img.section5_img {
    position: relative;
    width: 100%;
  }

  section.section5 {
    height: 100%;
  }

  section.section5 {
    height: 600px;
    padding-bottom: 5px;
  }

  .section7 {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  h2.section7_heading, .section7_heading {
    padding-left: 10px;
  }

  .section7_linkBlock {
    padding: 10px;
  }
}
@media screen and (max-width: 400px) {
  .header {
    padding: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  iframe {
    max-width: 100%;
  }

  .section1_img {
    max-width: 100%;
  }

  div.header_registration {
    width: 80%;
    margin-bottom: 5px;
  }

  .header_enter {
    margin-left: 0px;
    width: 80%;
	margin-bottom:5px;
  }

  .header_search {
    margin-right: 0;
    width: 92%;
    margin-bottom: 5px;
  }

  label {
    width: 95%;
    display: flex;
    margin-bottom: 5px;
  }

  div.section9_thirdBlock {
    margin-bottom: 0;
  }
  .arrow{
	  display:none;
  }
}
.section2 {
  height: 613px;
  background: #F4F0EB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.section2_heading {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
}
.section2_video__mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .section2 {
    height: 296px;
  }
  .section2_heading {
    font-size: 24px;
    line-height: 33px;
  }
  .section2_video {
    display: none;
  }
  .section2_video__mobile {
    margin: 22px 23px 30px 21px;
    display: flex;
  }
   
}
.section3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px 25px 0px;
}
.section3_flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.section3_flexbox__block1, .section3_flexbox__block2 {
  margin-right: 15px;
}
.section3_flexbox__block1, .section3_flexbox__block2, .section3_flexbox__block3 {
  width: 100%;
  max-width: 370px;
  height: 608px;
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section3_flexbox__block1 p, .section3_flexbox__block2 p, .section3_flexbox__block3 p {
  max-width: 311px;
  width: 100%;
  height: 79px;
}

.b_button {
  
  background: #F2C25B;
  border-radius: 4px;
  padding: 16px 24px;
  text-align: center;
  transition: 0.4s;
}
.b_button a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.b_button:hover {
  background: #FFCC60;
}

.b_img {
  height: 100%;
  display: flex;
}

.b_text {
  padding: 22px 22px 22px 22px;
}
.b_text h2 {
  margin: 0px 0px 20px 0px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #383838;
}

.section3_heading {
  width: 670px;
  max-width:100%;
	
  font-family: Open Sans;
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  color: #383838;
  margin: 20px auto;
}

.section3_flexbox2 {
  display: flex;
}
.section3_flexbox2__block1, .section3_flexbox2__block2 {
  margin-right: 15px;
}
.section3_flexbox2__block1, .section3_flexbox2__block2, .section3_flexbox2__block3 {
  padding-top: 20px;
  background: #F4F0EB;
  max-width: 370px;
  width: 100%;
  justify-content: space-between;
  height: 100%;
}
.section3_flexbox2 h2 {
  font-size: 20px;
}

.section3_flexbox2__block3 .b_img2 {
  content: "";
  background: url("../img/law_search.png");
  height: 130px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 290px;
  background-position: center center;
  margin-left: 20px;
}

.section3_flexbox2__block1 .b_img2 {
  content: "";
  background: url("../img/Comunity.png");
  height: 130px;
  background-repeat: no-repeat;
  background-size: contain;
  width: 290px;
  background-position: center center;
  margin-left: 20px;
}

.b_img2 {
  height: 130px;
}

@media screen and (max-width: 1150px) {
  .b_text {
    position: relative;
  }
  .b_text h2 {
    position: absolute;
    top: -35px;
    left: 20px;
  }
}
.section4Mob {
  display: none;
}

.section4 {
  height: 100%;
  font-family: "Open Sans", sans-serif;
  background: #F4F0EB;
  padding-bottom: 1px;
}
.section4_container {
  max-width: 1140px;
  display: flex;
  flex-direction: row-reverse;
  margin: 30px auto;
}
.section4 img {
  width: inherit;
}
.section4_textblock {
  display: flex;
  flex-direction: column;
  float: left;
  justify-content: space-between;
}
.section4_textblock__heading {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #383838;
}
.section4_textblock__paragraph {
  font-size: 18px;
  line-height: 25px;
  color: #383838;
}
.section4_textblock__button {
  margin-top: 31px;
  cursor: pointer;
  background: #F2C25B;
  border-radius: 4px;
  width: 152px;
  height: 48px;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.section4_textblock__button:hover {
  background: #FFCC60;
}
.section4_textblock__button a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .section4 {
    display: none;
  }

  .section4Mob {
    display: flex;
    flex-direction: column;
    padding: 21px 17px 21px 18px;
  }
  .section4Mob_heading {
    float: left;
    font-weight: bold;
    font-size: 24px;
    line-height: 33px;
    color: #383838;
  }
  .section4Mob_paragraph {
    float: left;
    font-size: 14px;
    line-height: 19px;
    color: #383838;
  }
  .section4Mob_button {
    margin-top: 21px;
    cursor: pointer;
    background: #F2C25B;
    border-radius: 4px;
    width: 152px;
    height: 48px;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
  }
  .section4Mob_button:hover {
    background: #FFCC60;
  }
}
.section5 {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  height: 468px;
  max-width: 1120px;
}
.section5_heading {
  grid-area: heading;
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #383838;
}
.section5 .section5_paragraph {
  font-size: 18px;
  line-height: 25px;
  color: #383838;
  max-width: 697px;
}
.section5_button {
  margin-top: 20px;
  grid-area: button;
  cursor: pointer;
  background: #F2C25B;
  border-radius: 4px;
  width: 152px;
  height: 48px;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.section5_button:hover {
  background: #FFCC60;
}
.section5_button a {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000000;
  text-decoration: none;
}
.section5_img {
  position: absolute;
  right: 0;
  bottom: 0px;
}

.section6 {
  background: #F4F0EB;
  height: 556px;
  font-family: "Open Sans", sans-serif;
  padding: 1px 0;
}
.section6_container {
  max-width: 1140px;
  margin: 40px auto;
}
.section6_heading {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #383838;
}
.section6_flexbox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.section6_newsBlock {
  float: left;
  display: flex;
  flex-direction: column;
  height: 285px;
  justify-content: space-between;
}
.section6_newsBlock__img {
  box-sizing: border-box;
  padding-right: 220px;
  margin-bottom: 10px;
}
.section6_newsBlock__heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1D1D1D;
  margin-bottom: 40px;
}
.section6_newsBlock__link {
  text-decoration: none;
  margin-bottom: 10px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #BD462B;
}
.section6_dataBlock {
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section6_dataBlock__img {
  box-sizing: border-box;
  padding-right: 220px;
}
.section6_dataBlock__heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1D1D1D;
}
.section6_dataBlock__link {
  text-decoration: none;
  margin-bottom: 10px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #BD462B;
}
.section6_analytics {
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section6_analytics__img {
  box-sizing: border-box;
  padding-right: 220px;
}
.section6_analytics__heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #1D1D1D;
}
.section6_analytics__link {
  text-decoration: none;
  margin-bottom: 10px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #BD462B;
}

.section7 {
  max-width: 1140px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  margin: 0 auto;
}
.section7_heading {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  color: #383838;
}
.section7_counters {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  color: #383838;
}
.section7_counters__counter {
  max-width: 230px;
}
.section7_linkBlock {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section7_linkBlock img {
  margin-right: 15px;
}
.section7_linkBlock a {
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #383838;
  text-decoration: none;
  display: flex;
  margin-bottom: 18px;
  text-align: left;
}

.num {
  font-weight: 600;
  font-size: 64px;
  line-height: 87px;
  color: #BD462B;
}

.section7_linkBLock__link img {
  margin-right: 20px;
}

.section8 {
  width: 100%;
  margin-bottom: -8px;
}
.section8_waves {
  background: url("../img/wawes.svg");
  height: 188px;
}

.section9 {
  font-family: "Open Sans", sans-serif;
  background: #F2DAA9;
  min-height: 325px;
  padding: 1px 0;
}
.section9_container {
  display: flex;
  justify-content: space-between;
  max-width: 1140px;
  margin: 30px auto;
}
.section9_img {
  grid-area: img;
}
.section9_firstBlock {
  max-width: 404px;
  font-family: Open Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 14px;
  text-align: justify;
  margin-left: 25px;
}
.section9_firstBlock__heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #383838;
}
.section9_firstBlock__paragraph {
  font-size: 10px;
  line-height: 14px;
  text-align: justify;
}
.section9_firstBlock__link {
  font-size: 12px;
  line-height: 16px;
  text-align: justify;
  text-decoration-line: underline;
  color: #BD462B;
}
.section9_firstBlock__copyright {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #383838;
}
.section9_secondBlock {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 22px;
  margin-left: 25px;
}
.section9_secondBlock__heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #383838;
}
.section9_secondBlock__link {
  font-size: 14px;
  line-height: 19px;
  text-align: justify;
  text-decoration-line: underline;
  color: #BD462B;
  margin-bottom: 9px;
}
.section9_secondBlock__social {
  width: 15vw;
  display: flex;
  flex-direction: row;
}
.section9_secondBlock__social a {
  margin-right: 0.5vw;
}
.section9_thirdBlock {
  display: flex;
  max-width: 247px;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  margin-left: 25px;
}
.section9_thirdBlock__heading {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #383838;
}
.section9_thirdBlock__linkBlock1 {
  display: flex;
  flex-direction: column;
}
.section9_thirdBlock__linkBlock1 a {
  font-size: 10px;
  line-height: 13px;
  text-align: justify;
  text-decoration-line: underline;
  color: #BD462B;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.section9_thirdBlock__linkBlock2 {
  display: flex;
  flex-direction: column;
}
.section9_thirdBlock__linkBlock2 a {
  font-size: 10px;
  line-height: 13px;
  text-align: justify;
  text-decoration-line: underline;
  color: #BD462B;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}

body {
  font-family: "Roboto", sans-serif;
  width: 100%;
  margin: 0;
}
.choose-block{
	width:228px; height:223px;background: #FFFCF9;
border: 2px solid #BD462B;
box-sizing: border-box;
border-radius: 4px;
margin:5% auto;
	}
.choose-block-img{
	width:88px;
	margin:auto; 
	margin-top:52px;
}
.choose-block-text{
text-align:center;font-family: Open Sans;
font-style: normal;
font-weight: bold;
font-size: 18px;
line-height: 25px;
color: #000000;
}
.lk-bracum{
	background-color:black;
	text-align:center;
	width:100%;
}
.lk-bracum-con{
	margin:auto;
	}
	
.user-nav-wrapper {
    background: #232323;
}
.user-nav__item {
  
    padding: 0 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 50px;
    color: #fff;
}
.user-nav__item:last-of-type {
    float: right;
    padding: 0;
}
.user-nav__item_active, .user-nav__item:hover {
    border-bottom: 5px solid #bd462b;
	 text-decoration:none;
	
}
.user-nav__button {
    position: absolute;
    top: 0;
    right:0;
	display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 23px;
    color: #fff;
    cursor: pointer;
}
.user-nav__button i {
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s,  -webkit-transform .3s;
}
.user-nav__button_active i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}	
.icon-profile {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    width: 39px;
    height: 25px;
    background: url(../img/profile-icon.png);
}	
@media only screen and (max-width: 1200px) {
    .user-nav__item {
        padding: 0 20px
    }
}



@media only screen and (max-width: 991px) {
    .user-nav {
      
        overflow: hidden;
        -webkit-transition: height .3s;
        transition: height .3s
    }
    .user-nav__item {
        display: block;
        font-size: 14px
    }
    .user-nav__item:not(.active){
        display: none;
    }
    .user-nav__item:hover {
        border-bottom: nonel;
		 border-bottom: 5px solid #bd462b;
		 text-decoration:none;
    }
    .user-nav__item:last-of-type {
        float: none
    }
    
    .user-nav_show {
        height: 300px
    }
    .user-profile__right-column {
        float: none;
        text-align: left
    }
	.user-nav__button {
    display: block;
    border-left: 1px solid #eee;
}
	.user-nav__item.show_mob {
   	 	display: block;
	}
}
.cont_profile_nast{

	padding-left:0px;
	padding-right:0px;
	}
.row_naw_profile_left_active{
	background: #FFF9EC;
	border-left: 5px solid #bd462b;
	}
.row_naw_profile_left:hover{
	background: #FFF9EC;
	border-left: 5px solid #bd462b;
	text-decoration:none;
	color: #232323;
	}
.row_naw_profile_left{
	padding: 15px;
	margin-top:3px;
	text-decoration:none;
	font-family: Roboto,sans-serif;
font-size: 12px;
font-weight: 500;
color: #232323;
}
.title_edit_page
{
	font-family: Roboto,sans-serif;
font-size: 16px;
font-weight: 500;
border-bottom: 1px solid #e1e1e1;

padding:0;

}
.margin-top{
	margin-top:5px;}
.formfiledadd{
    width: 100%;
    height: 37px;
    color: #232323;
    font-size: 16px;
    font-weight: 500;
    border: none;
        border-bottom-color: currentcolor;
        border-bottom-style: none;
        border-bottom-width: medium;
    border-bottom: 1px solid #c2c2c2;
}
.formfiledadd:focus {
  border-bottom: 1px solid #933;
}
.bttadds{
    width: 125px;
    height: 40px;
    border: none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #bd462b;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: background .3s;
    transition: background .3s;
}
.chatprofil__link{
	margin-top:15px;
	}
.form-group label {
    color: #5e5e5e;
    font-size: 12px;
    font-weight: 500;
}
.img-data-profile{
	width:150px;
	height:150px;}
.conteyner-data-user{
	margin-top:15px;
	margin-bottom:15px;
	}
.upload-file-profile{
	font-size:40px;
	color:#bd462b;}
.chatprofil__img{
	margin:auto;
	width:150px;
	text-align:center;}	
/*# sourceMappingURL=style.css.map */
.services-list {
    font-family: Roboto,sans-serif;
    font-size: 14px;
    margin: 30px 0;
}
.services-list__head {
    font-weight: 700;
}
.services-list-item, .services-list__head {
    padding: 15px 25px;
    border: 1px solid #ccc;
        border-bottom-color: rgb(204, 204, 204);
        border-bottom-style: solid;
        border-bottom-width: 1px;
    border-bottom: none;
}
.services-list__del {
    border: none;
    background: 0 0;
    float: right;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    color: #d90123;
}
.fpopuporm__pass-vis-toggle {
    position:relative;
	bottom:40px;
	
	left:95%;
    line-height: 46px;
    font-size: 22px;
    cursor: pointer;
    color: #000;
}
.img-data-doc{
	width:75px;
	height:auto;}
#uristdoc-imagefile{
	background-color:red;}	
	
.upload-file-doc{
padding: 13px 25px;
display: inline-block;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 2px solid #bd462b;
text-align: center;
line-height: 1;
font-family: Roboto,sans-serif;
font-size: 14px;
color: #bd462b;
font-weight: 500;
-webkit-transition: background .3s,color .3s;
transition: background .3s,color .3s;
text-decoration:none;
cursor:pointer;
}
.upload-file-doc:hover{
	color:white;
	background-color:#bd462b;
	text-decoration:none;
}


.nav-wrapper {
  width: 50px;
  text-align: center;

margin-left:15px

}
  .sl-nav {
  display: inline;
  margin-top:15px;
  margin-left:15px;
  margin-right:15px;
  
}
.sl-nav ul {
  margin:0;
  padding:0;
  list-style: none;
  position: relative;
  display: inline-block;
}
.sl-nav li {
  cursor: pointer;
  padding-bottom:10px;
}
.sl-nav li ul {
  display: none;
}
.sl-nav li:hover ul {
  position: absolute;
  top:29px;
  right:-15px;
  display: block;
  background: #fff;
  width: 55px;
  padding-top: 0px;
  z-index: 1;
  border-radius:5px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.sl-nav li:hover .triangle {
  position: absolute;
  top: 15px;
  right: -10px;
  z-index:10;
  height: 14px;
  overflow:hidden;
  width: 30px;
  background: transparent;
}
.sl-nav li:hover .triangle:after {
  content: '';
  display: block;
  z-index: 20;
  width: 15px;
  transform: rotate(45deg) translateY(0px) translatex(10px);
  height: 15px;
  background: #fff;
  border-radius:2px 0px 0px 0px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.sl-nav li ul li {
  position: relative;
  text-align: left;
  background: transparent;
  padding: 15px 15px;
  padding-bottom:0;
  z-index: 2;
  font-size: 15px;
  color: #3c3c3c;
}
.sl-nav li ul li:last-of-type {
  padding-bottom: 15px;
}
.sl-nav li ul li span {
  padding-left: 5px;
}
.sl-nav li ul li span:hover, .sl-nav li ul li span.active {
  color: #146c78;
}
.bal_balrow{

font-size: 9px;
line-height: 11px;
text-transform: uppercase;

color: #000000;
	}
.bal_balnum{
font-family: PingFangSC;
font-size: 16px;
line-height: 19px;

color: #000000;	
	}
.bal_link{
background: #F5F5F5;
border-radius: 20px;
padding:3px 25px;
text-decoration:none;
}	
.bal_link:hover{
	text-decoration:none;
}
.cont_profile_page{
	background: #FFFFFF;
border: 1px solid #E5E5E5;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0742734);
border-radius: 4px;
padding:0;
padding-bottom:20px;}
.cur_bal_con{
	display:block;
	float:right;
	background-color: #F5F5F5;
	padding:10px 20px;
}
.count_balance{
font-family: OpenSans;
font-size: 16px;
line-height: 19px;

color: #BD462B;
}
.user_page_name_tx{
	line-height: 60px;
	display:block;
	float:left;
	margin-left:10px;
}
.clear{
	clear:both;
}
.cont_finance_act{
	border-bottom: 1px solid #e1e1e1;
	padding:0;
	text-decoration:none;
	}
.cont_finance_act_st{
	padding:0;
	text-decoration:none;
}
.finance_act_link{
	padding:10px 15px;
	color: #585858;
	cursor:pointer;
	text-align:center;
	}
.finance_act_link_active{

	border-bottom:4px solid #BD462B;
}
.margin-top-20{
	margin-top:20px;}
.margin-top-30{
	margin-top:30px;}	
.margin-top-10{
	margin-top:10px;}
.margin-top-15{
	margin-top:15px;}
.margin-bottom-15{
	margin-bottom:15px;}
.margin-bottom-10{
	margin-bottom:10px;}
.margin-bottom-5{
	margin-bottom:5px;}
.margin-bottom-20{
	margin-bottom:20px;}
.margin-10{
	margin:10px;}
.hide{
	display:none;
}
.add-order-form__button {
    display: inline-block;
    margin: 20px 0;
    padding: 18px 58px;
    border: none;
    background-color: #bd3111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .07px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: background .3s;
    transition: background .3s;
}

.video-wrapper {
	width:480px;
    margin: 20px 0;
    -webkit-box-shadow: 0 3px 7px rgba(0,0,0,.35);
    box-shadow: 0 3px 7px rgba(0,0,0,.35);
    background-color: #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}
.center{
	text-align:center;}
.info-message {
    position: relative;
    max-width: 600px;
    margin: 20px 0;
        margin-left: 0px;
    margin-left: 0px;
    margin-left: 45px;
    padding: 5px 15px 5px 18px;
    border-left: 4px solid #cd8032;
    font-family: "Roboto",sans-serif;
    font-size: 18px;
    line-height: 22px;
}
.info-message__icon {
    position: absolute;
    left: -45px;
    top: 0;
    color: #bd462b;
    font-size: 36px;
}
.info-message__title {
    font-size: 22px;
    color: #bd462b;
    font-weight: 700;
}
.info-message__text {
    margin-top: 15px;
    color: #000;
    font-weight: 600;
}
.btn_change_lanf{
	font-size:20px;
	color:black;
	text-decoration:none;
	
}
.btn_change_lanf:hover{

	color:black;
	text-decoration:none;	
}
.btn_change_lanf_chan{
	font-size:20px;
	color:black;
	text-decoration:none;
	
	margin-left:6px;

}
