@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Lobster&family=Montserrat:wght@200;300&family=Open+Sans:wght@300;400&family=Paytone+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Lobster&family=Montserrat:wght@200;300;400&family=Open+Sans:wght@300;400&family=Paytone+One&display=swap");
@import '/node_modules/normalize.css/normalize.css';
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

a {
  text-decoration: none;
}

h1 {
  margin: 0;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1380px;
  }

  * {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1364px) {
  .container {
    max-width: 1020px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  * {
    font-size: 16px;
  }

  .container {
    max-width: 750px;
  }
}
@media screen and (min-width: 595px) and (max-width: 767px) {
  * {
    font-size: 14px;
  }

  .container {
    max-width: 590px;
  }
}
@media screen and (min-width: 412px) and (max-width: 594px) {
  * {
    font-size: 14px;
  }

  .container {
    max-width: 412px;
  }
}
@media screen and (min-width: 380px) and (max-width: 411px) {
  * {
    font-size: 14px;
  }

  .container {
    max-width: 380px;
  }
}
@media screen and (min-width: 320px) and (max-width: 379px) {
  * {
    font-size: 14px;
  }

  .container {
    max-width: 310px;
  }
}
.header {
  padding: 5px;
}
.header .nav_bar {
  padding: 0 10px 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav_bar__logo > img {
  width: 250px;
  height: 110px;
}
.header .nav_bar__link {
  font-size: 18px;
  font-weight: 600;
  color: #0A69B3;
}
.header .nav_bar :hover {
  text-decoration: underline;
}
.header .mob_header, .header .mob_header__content {
  display: none;
  z-index: 10;
}
.header .header_sep {
  width: 100%;
  height: 1px;
  border: 1px solid black;
}

@media screen and (min-width: 1920px) {
  .header .nav_bar__logo > img {
    width: 290px;
    height: 150px;
  }
  .header .nav_bar__link {
    font-size: 24px;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) {
  .header .nav_bar {
    display: none;
  }
  .header .mob_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .mob_header__logo > img {
    width: 200px;
    height: 110px;
  }
  .header .mob_header__dash {
    margin: 3px 20px 0 0;
    width: 34px;
    height: 31px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .header .mob_header__dash div {
    width: 34px;
    height: 3px;
    background-color: #0A69B3;
    flex-shrink: 0;
  }
  .header .mob_header__content {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 320px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 45px;
    padding: 30px 25px 65px;
    background-color: gray;
    transform: translateY(-150%);
    /*animation: header 2s forwards;*/
  }
  @keyframes header {
    0% {
      transform: translateY(-150%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes headerBack {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-150%);
    }
  }
  .header .mob_header__content > a {
    font-size: 19px;
    font-weight: bold;
    color: #000;
  }
  .header .mob_header__content > a:hover {
    color: #0A69B3;
  }
  .header .mob_header__content > img {
    align-self: end;
  }
}
.first_section {
  padding: 90px 0;
}
.first_section__title {
  font-size: 25px;
  font-weight: 600;
  text-align: left;
  margin-left: 100px;
  margin-bottom: 35px;
  text-shadow: #0A69B3 1px 0 4px;
}
.first_section .first_section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 95px;
  padding: 10px 10px;
}
.first_section .service_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.first_section .service_wrap > img {
  z-index: 2;
  width: 630px;
  height: 425px;
  box-shadow: 5px 5px 5px black;
}
.first_section .service_wrap .service {
  min-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.first_section .service_wrap .service_name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.first_section .service_wrap .service_name .service_img {
  width: 40px;
  height: 40px;
}
.first_section .service_wrap .service_name .service_title {
  font-size: 22px;
  font-weight: 800;
  text-shadow: black 1px 0 1px;
}
.first_section .service_wrap .service .service_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.first_section .service_wrap .service .service_list > li {
  list-style-type: none;
}
.first_section .service_wrap .service .service_list > li::before {
  color: #0A69B3;
  content: "▪";
  padding-right: 10px;
}
.first_section .service_l {
  padding-left: 35px;
}
.first_section .service_left {
  z-index: 1;
  transform: translateX(-150%);
  /*animation: block 2.5s forwards;*/
}
@keyframes block {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
.first_section .service_right {
  z-index: 1;
  transform: translateX(150%);
  /*animation: block2 2.5s forwards;*/
}
@keyframes block_2 {
  0% {
    transform: translateX(150%);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (min-width: 1920px) {
  .first_section .service_wrap .service {
    min-width: 390px;
  }
  .first_section .service_l {
    padding-left: 55px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1364px) {
  .first_section .service_wrap > img {
    width: 530px;
    height: 345px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .first_section__title {
    margin-left: 70px;
  }
  .first_section .service_wrap > img {
    width: 350px;
    height: 245px;
  }
  .first_section .service_wrap .service {
    min-width: 300px;
    gap: 15px;
  }
  .first_section .service_wrap .service_name .service_img {
    width: 30px;
    height: 30px;
  }
  .first_section .service_wrap .service_name .service_title {
    font-size: 20px;
  }
}
@media screen and (min-width: 595px) and (max-width: 767px) {
  .first_section {
    padding: 45px 0;
  }
  .first_section__title {
    font-size: 20px;
    margin-left: 30px;
  }
  .first_section .first_section__wrapper {
    gap: 65px;
  }
  .first_section .service_wrap > img {
    width: 290px;
    height: 195px;
  }
  .first_section .service_wrap .service {
    min-width: 170px;
    gap: 10px;
  }
  .first_section .service_wrap .service_name {
    gap: 10px;
  }
  .first_section .service_wrap .service_name .service_img {
    width: 20px;
    height: 20px;
  }
  .first_section .service_wrap .service_name .service_title {
    font-size: 16px;
  }
  .first_section .service_wrap .service .service_list {
    gap: 10px;
  }
  .first_section .service_wrap .service .service_list > li {
    font-size: 13px;
  }
  .first_section .service_l {
    padding-left: 10px;
  }

  .service_left {
    transform: translateX(-120%);
  }
  @keyframes block {
    0% {
      transform: translateX(-120%);
    }
    100% {
      transform: translateY(0);
    }
  }

  .service_right {
    transform: translateX(120%);
  }
  @keyframes block_2 {
    0% {
      transform: translateX(120%);
    }
    100% {
      transform: translateY(0);
    }
  }
}
@media screen and (min-width: 412px) and (max-width: 594px) {
  .first_section {
    padding: 45px 0;
  }
  .first_section__title {
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .first_section .first_section__wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .first_section .service_wrap {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .first_section .service_wrap > img {
    align-self: center;
    width: 400px;
    height: 265px;
  }
  .first_section .service_wrap .service {
    min-width: 250px;
    gap: 10px;
  }
  .first_section .service_wrap .service_name .service_img {
    width: 20px;
    height: 20px;
  }
  .first_section .service_wrap .service_name .service_title {
    font-size: 16px;
  }
  .first_section .service_l {
    padding-left: 0;
  }
}
@media screen and (min-width: 380px) and (max-width: 411px) {
  .first_section {
    padding: 35px 0;
  }
  .first_section__title {
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .first_section .first_section__wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .first_section .service_wrap {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .first_section .service_wrap > img {
    align-self: center;
    width: 365px;
    height: 235px;
  }
  .first_section .service_wrap .service {
    min-width: 250px;
    gap: 10px;
  }
  .first_section .service_wrap .service_name .service_img {
    width: 20px;
    height: 20px;
  }
  .first_section .service_wrap .service_name .service_title {
    font-size: 16px;
  }
  .first_section .service_l {
    padding-left: 0;
  }
}
@media screen and (min-width: 320px) and (max-width: 379px) {
  .first_section {
    padding: 35px 0;
  }
  .first_section__title {
    font-size: 20px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 25px;
  }
  .first_section .first_section__wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .first_section .service_wrap {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .first_section .service_wrap > img {
    align-self: center;
    width: 295px;
    height: 190px;
  }
  .first_section .service_wrap .service {
    min-width: 250px;
    gap: 10px;
  }
  .first_section .service_wrap .service_name .service_img {
    width: 20px;
    height: 20px;
  }
  .first_section .service_wrap .service_name .service_title {
    font-size: 16px;
  }
  .first_section .service_l {
    padding-left: 0;
  }
}
.footer .footer_wrapper .fw_main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
}
.footer .footer_wrapper .fw_main .footer_img {
  width: 200px;
  height: 85px;
}
.footer .footer_wrapper .fw_main .footer_contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer_wrapper .fw_main .footer_contacts .contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer_wrapper .fw_main .footer_contacts .contact > img {
  width: 35px;
  height: 35px;
}
.footer .footer_wrapper .fw_main .footer_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer_wrapper .fw_main .footer_links > a:hover {
  text-decoration: underline;
}
.footer .footer_wrapper .footer_separ {
  width: 100%;
  height: 1px;
  border: 1px solid black;
}
.footer .footer_wrapper .autograph {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer .footer_wrapper .autograph > a {
  text-decoration: underline;
  font-size: 14px;
}
.footer .footer_wrapper .autograph > p {
  font-size: 14px;
}

@media screen and (min-width: 595px) and (max-width: 767px) {
  .footer .footer_wrapper .autograph > a {
    font-size: 12px;
  }
  .footer .footer_wrapper .autograph > p {
    font-size: 12px;
  }
}
@media screen and (min-width: 412px) and (max-width: 594px) {
  .footer .footer_wrapper .fw_main {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 25px;
    gap: 25px;
  }
  .footer .footer_wrapper .fw_main .footer_img {
    margin-top: -15px;
    width: 320px;
    height: 115px;
  }
  .footer .footer_wrapper .fw_main .footer_contacts .contact > img {
    width: 30px;
    height: 30px;
  }
  .footer .footer_wrapper .autograph > a {
    font-size: 12px;
  }
  .footer .footer_wrapper .autograph > p {
    font-size: 12px;
  }
}
@media screen and (min-width: 380px) and (max-width: 411px) {
  .footer .footer_wrapper .fw_main {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 25px;
    gap: 25px;
  }
  .footer .footer_wrapper .fw_main .footer_img {
    margin-top: -15px;
    width: 320px;
    height: 115px;
  }
  .footer .footer_wrapper .fw_main .footer_contacts .contact > img {
    width: 27px;
    height: 27px;
  }
  .footer .footer_wrapper .autograph > a {
    font-size: 12px;
  }
  .footer .footer_wrapper .autograph > p {
    font-size: 12px;
  }
}
@media screen and (min-width: 320px) and (max-width: 379px) {
  .footer .footer_wrapper .fw_main {
    flex-direction: column-reverse;
    align-items: center;
    padding-bottom: 25px;
    gap: 25px;
  }
  .footer .footer_wrapper .fw_main .footer_img {
    margin-top: -15px;
    width: 320px;
    height: 115px;
  }
  .footer .footer_wrapper .fw_main .footer_contacts .contact > img {
    width: 27px;
    height: 27px;
  }
  .footer .footer_wrapper .autograph > a {
    font-size: 10px;
  }
  .footer .footer_wrapper .autograph > p {
    font-size: 10px;
  }
}

/*# sourceMappingURL=leistungsspektrum.css.map */
