@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.container {
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hide {
  display: none;
}

@media screen and (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1240px) {
  .container {
    width: 1210px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #282828;
  padding: 10px 0;
}
header .main_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .main_menu .burger {
  display: none;
}
header .main_menu .logo {
  max-width: 150px;
}
header .main_menu .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .main_menu .phone {
  font-size: 20px;
  color: #FFBF33;
}
header .main_menu .menu {
  display: flex;
  list-style: none;
  align-items: center;
}
header .main_menu .menu li {
  color: #fff;
}
header .main_menu .menu li.addr {
  margin-left: 80px;
}
header .main_menu .menu li a {
  margin: 0 5px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

main {
  padding-top: 90px;
}
main .main {
  background: url("/img/main1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100vh - 90px);
  padding-top: 150px;
  margin-bottom: 60px;
}
main .main .wrap {
  display: flex;
  justify-content: space-between;
}
main .main .wrap .left {
  width: 60%;
  background: rgba(0, 0, 0, 0.6745098039);
  padding: 15px;
}
main .main .wrap .right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(0, 0, 0, 0.6745098039);
  padding: 15px;
}
main .main h1 {
  width: 100%;
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
}
main .main .text {
  width: 100%;
  font-size: 20px;
  color: #fff;
}
main .main form {
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 400px;
}
main .main form h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}
main .main form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 16px;
  outline: none;
}
main .main form .submit {
  font-size: 20px;
  background: #000;
  border: 1px solid #FFBF33;
  color: #FFBF33;
  cursor: pointer;
}
main .about {
  padding: 50px 0;
}
main .about h2 {
  margin: 10px 0 20px;
}
main .about .title {
  padding-left: 15px;
  font-size: 24px;
}
main .about p {
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 16px;
}
main .about .top_line, main .about .bottom_line {
  display: flex;
  margin-bottom: 25px;
}
main .about .top_line .text, main .about .bottom_line .text {
  padding: 0 15px;
}
main .about .top_line .text ul, main .about .bottom_line .text ul {
  margin-bottom: 15px;
  padding-left: 25px;
  font-size: 16px;
}
main .about .top_line .text ul li, main .about .bottom_line .text ul li {
  margin-bottom: 5px;
}
main .about .top_line .left, main .about .top_line .right, main .about .bottom_line .left, main .about .bottom_line .right {
  width: 50%;
}
main .about .top_line .left img, main .about .top_line .right img, main .about .bottom_line .left img, main .about .bottom_line .right img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .gallery_title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
}
main .gallery {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
main .gallery a {
  width: calc(33% - 5px);
  margin: 5px 0;
}
main .gallery a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .table_block {
  margin-bottom: 50px;
}
main .table_block .table_track {
  display: flex;
  flex-flow: column;
  border: 1px solid;
}
main .table_block .table_track .track {
  display: flex;
  border-bottom: 2px solid #000;
}
main .table_block .table_track .track:last-child {
  border: none;
}
main .table_block .table_track .track .left {
  width: 25%;
  padding: 10px;
}
main .table_block .table_track .track .left img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
main .table_block .table_track .track .right {
  width: 75%;
  padding: 10px;
}
main .table_block .table_track .track .right .title {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}
main .table_block .table_track .track .right .table {
  width: 100%;
  display: flex;
  flex-flow: column;
  border: 1px solid;
}
main .table_block .table_track .track .right .table .row {
  display: flex;
  flex-flow: row;
  border-bottom: 1px solid #000;
}
main .table_block .table_track .track .right .table .row:last-child {
  border-bottom: none;
}
main .table_block .table_track .track .right .table .row .column {
  width: 33.333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000;
  padding: 10px;
}
main .table_block .table_track .track .right .table .row .column:last-child {
  border: none;
  flex-flow: column;
}
main .form_block {
  margin: 30px 0;
}
main .form_block form {
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
}
main .form_block form h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
main .form_block form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 16px;
  outline: none;
}
main .form_block form .submit {
  font-size: 20px;
  background: #000;
  border: 1px solid #FFBF33;
  color: #FFBF33;
  cursor: pointer;
}
main .dop_text {
  margin-bottom: 30px;
}
main .dop_text p {
  margin-bottom: 10px;
}
main .dop_text h2 {
  margin: 10px 0 20px;
}
main .dop_text ul {
  padding-left: 25px;
  margin-bottom: 10px;
}
main .dop_text ul li {
  margin-bottom: 5px;
}
main .logos {
  margin: 30px 0 60px;
  text-align: center;
}

footer {
  padding: 30px 0;
  background: #282828;
  color: #fff;
}
footer .footer {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
footer .footer .left {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
footer .footer .left p {
  font-size: 16px;
  margin-bottom: 10px;
}
footer .footer .left p .phone {
  font-size: 20px;
  color: #FFBF33;
}
footer .footer .right form {
  display: flex;
  flex-flow: column;
  min-width: 320px;
}
footer .footer .right form h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
footer .footer .right form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 16px;
  outline: none;
}
footer .footer .right form .submit {
  font-size: 20px;
  background: #000;
  border: 1px solid #FFBF33;
  color: #FFBF33;
  cursor: pointer;
}
footer .copyright {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  header {
    z-index: 999;
  }
  header .main_menu .phone {
    font-size: 20px;
  }
  header .main_menu .menu {
    padding: 5px 0;
    position: absolute;
    top: 100%;
    background: #282828;
    left: 0;
    width: 100%;
    justify-content: space-evenly;
    z-index: 999;
    border-top: 1px solid #fff;
  }
  header .main_menu .menu .addr {
    display: none;
  }
  footer .footer {
    flex-flow: column-reverse;
  }
  footer .footer form {
    margin-bottom: 25px;
  }
  main {
    padding-top: 120px;
  }
  main .main {
    background: url("/img/mobile.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 30px;
    margin-bottom: 30px;
  }
  main .main .wrap {
    flex-flow: column;
  }
  main .main .wrap .left, main .main .wrap .right {
    width: 100%;
    padding: 10px;
  }
  main .main h1 {
    width: 100%;
    font-size: 24px;
    padding: 0;
    margin: 0;
    padding-bottom: 15px;
    color: #fff;
  }
  main .main .text {
    width: 100%;
    padding: 0;
    font-size: 20px;
    color: #fff;
    padding-bottom: 15px;
  }
  main .main form {
    min-width: unset;
    width: 100%;
  }
  main .about {
    padding: 15px 0 30px;
  }
  main .about .top_line {
    flex-flow: column;
  }
  main .about .top_line .left, main .about .top_line .right {
    width: 100%;
  }
  main .about .top_line .text {
    padding: 0;
  }
  main .about .bottom_line {
    flex-flow: column-reverse;
  }
  main .about .bottom_line .left, main .about .bottom_line .right {
    width: 100%;
  }
  main .about .bottom_line .text {
    padding: 0;
  }
  main .table_block .table_track .track {
    flex-flow: column;
  }
  main .table_block .table_track .track .right, main .table_block .table_track .track .left {
    width: 100%;
  }
  main .table_block .table_track .track .right .table {
    font-size: 14px;
  }
  main .table_block .table_track .track .right .table .row .column {
    padding: 10px 5px;
    width: 28%;
  }
  main .table_block .table_track .track .right .table .row .column:last-child {
    width: 44%;
  }
  main .gallery a {
    width: calc(50% - 5px);
  }
  main .gallery a:last-child {
    display: none;
  }
  main .logos {
    display: flex;
  }
  main .logos img {
    width: 33.333333%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}/*# sourceMappingURL=style.css.map */