* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.burger-menu_button {
  position: relative;
  top: 0px;
  right: 18px;
  z-index: 30;
  width: 60px;
  height: 60px;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  filter: brightness(0.7);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #0b5394;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.burger-menu_nav {
  padding-top: 80px;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  flex-flow: column;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  right: -100%;
  transition: 0.8s;
}

.burger-menu_active .burger-menu_nav {
  right: 0;
  transition: 0.4s;
  width: 100%;
}

.burger-menu_link {
  padding: 10px 35px;
  font-size: 22px;
  text-decoration: none;
  font-weight: 600;
  color: #000;
}
.burger-menu_link:hover {
  text-decoration: underline;
  color: #000;
}

.burger-menu_link:hover {
  filter: brightness(0.9);
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup {
  border-radius: 5px;
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 10px;
}

.popup p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.popup .input-email {
  border: 3px solid var(--color-accent);
  box-sizing: border-box;
  border-radius: 25px;
  width: 432px;
  height: 52px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  outline: none;
  border: 1px solid #000;
}

.popup .btn-email {
  background-color: #f7d61e;
  padding: 15px 25px;
  color: #000;
  border: none;
  display: inline-block;
  margin-top: 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  border: none;
  width: 432px;
  height: 52px;
}

.popup a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-decoration: none;
  color: #000000;
  margin-top: -10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background-color: #000;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.overlay-1 {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  z-index: 10000000000000000;
}

.popup-1 {
  text-align: center;
  position: absolute;
  width: 640px;
  left: 50%;
  top: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  padding: 50px 100px;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  box-shadow: 0px 4px 8px 8px rgba(0, 0, 0, 0.16);
}

.popup-bg {
  height: auto;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 70px;
  border-radius: 0px;
  background-color: #2d2d2d;
}

.popup-bg img {
  margin-bottom: 65px;
}

.popup-bg h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

.popup-bg span {
  font-size: 18px;
  font-weight: 400;
}

.close-popup-1 {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 23px;
  height: 23px;
  cursor: pointer;
}

.close-popup-1:before {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  left: -4px;
  transform: rotate(-45deg);
}

.close-popup-1:after {
  content: "";
  background-color: #fff;
  position: absolute;
  height: 1px;
  width: 31px;
  top: 11px;
  transform: rotate(45deg);
  left: -4px;
}

@media screen and (max-width: 768px) {
  .popup-1 {
    width: 90%;
    height: auto;
    font-size: 15px;
  }
}
.js-overlay-campaign-1 img {
  width: 100px;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
}

.h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.a-btn {
  padding: 10px 30px;
  border-radius: 20px;
  background-color: #0b5394;
  color: #fff;
  text-decoration: none;
}
.a-btn svg {
  margin-right: 5px;
}
.a-btn:hover {
  color: #fff;
}

.header .header-top {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .logo {
  display: flex;
  align-items: center;
  color: #ACACAC;
  text-transform: uppercase;
  text-decoration: none;
  font-style: italic;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
}
.header .header-top .logo img {
  width: 130px;
  margin-right: 20px;
}
.header .tell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .tell a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.header .tell a:hover {
  text-decoration: underline;
}
.header .nav {
  background-color: #0b5394;
  padding: 20px 0;
  margin-top: 20px;
}
.header .nav nav {
  width: 100%;
}
.header .nav nav .ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header .nav nav .ul li {
  list-style-type: none;
}
.header .nav nav .a {
  margin: 0 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}
.header .nav nav .a:hover {
  text-decoration: underline;
}

.header-items .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background-color: #f2f2f2;
  padding: 20px;
}
.header-items .items .item {
  color: #000;
  text-decoration: none;
  background-color: #fff;
  overflow: hidden;
}
.header-items .items .item img {
  width: 100%;
  border-bottom: 5px solid #0b5394;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(70%);
  overflow: hidden;
  transition: 0.2s all;
}
.header-items .items .item img:hover {
  transform: scale(1.1);
  overflow: hidden;
}
.header-items .items .item h3 {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: -50px;
  padding: 10px;
  position: relative;
  z-index: 99;
  color: #fff;
}
.header-items .items .item p {
  font-size: 12px;
  padding: 10px;
  padding-top: 15px;
}

.carousel {
  margin-top: 15px;
}
.carousel img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(70%);
}
.carousel .carousel-caption {
  text-align: left;
}
.carousel .carousel-caption h3 {
  font-weight: 300;
  font-size: 22px;
  text-transform: uppercase;
}
.carousel .carousel-caption h2 {
  font-weight: bold;
  text-transform: uppercase;
}
.carousel .carousel-caption p {
  font-size: 14px;
}
.carousel .carousel-caption a {
  display: inline-block;
  margin-bottom: 30px;
}

.action .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.action .container .left {
  padding: 30px;
  background-color: #0b5394;
  color: #fff;
  text-decoration: none;
}
.action .container .left h3 {
  font-weight: 300;
  text-transform: uppercase;
}
.action .container .left h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 15px 0;
}
.action .container .left p {
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.action .container .left p svg {
  margin-left: 10px;
  width: 20px;
}
.action .container .right {
  padding: 30px;
  background-color: #fff;
  color: #0b5394;
  text-decoration: none;
}
.action .container .right h3 {
  font-weight: 300;
  text-transform: uppercase;
}
.action .container .right h2 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 15px 0;
}
.action .container .right p {
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.action .container .right p svg {
  margin-left: 10px;
  width: 20px;
}

.about {
  padding: 50px 0;
}
.about .img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.about .img img {
  width: 100%;
}
.about .text {
  margin-top: 50px;
}
.about .text .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .text .title h2 {
  text-transform: uppercase;
  font-weight: bold;
  width: 50%;
}
.about .text .title .items {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about .text .title .items .item {
  display: flex;
  align-items: center;
}
.about .text .title .items .item img {
  width: 60px;
  margin-right: 15px;
}
.about .text .title .items .item h6 {
  text-transform: uppercase;
  font-size: 18px;
}
.about .text .p {
  padding: 30px;
  background-color: #f2f2f2;
  margin-top: 50px;
}
.about .text .p span {
  font-style: italic;
  font-weight: 500;
}
.about .items-pr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}
.about .items-pr .item {
  text-align: center;
}
.about .items-pr .item img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .items-pr .item h3 {
  margin-top: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer {
  padding: 30px 0;
}
.footer .footer-top .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-top .items a {
  background-color: #ACACAC;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s all;
}
.footer .footer-top .items a svg {
  width: 30px;
}
.footer .footer-top .items a:hover {
  filter: brightness(85%);
}
.footer .footer-top .items .a-1 {
  background-color: #f2f2f2;
  color: #0b5394;
}
.footer .footer-top .items .a-2 {
  background-color: rgb(228, 227, 227);
  color: #0b5394;
}
.footer .footer-top .items .a-3 {
  background-color: #2c83d0;
}
.footer .footer-top .items .a-4 {
  background-color: #1867ac;
}
.footer .footer-top .items .a-5 {
  background-color: #0b5394;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #0b5394;
}
.footer .footer-content .logo img {
  width: 130px;
}
.footer .footer-content .logo h3 {
  margin: 20px 0;
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
}
.footer .footer-content .logo p {
  font-size: 14px;
}
.footer .footer-content .items h3 {
  color: #2E444A;
  font-size: 22px;
  margin-bottom: 20px;
}
.footer .footer-content .items a {
  display: block;
  color: #2E444A;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 5px;
}
.footer .footer-content .items a:hover {
  text-decoration: underline;
}
.footer .footer-content .items .tell {
  display: flex;
  flex-direction: column;
}
.footer .footer-content .items .tell a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.footer .footer-content .items .tell a:hover {
  text-decoration: underline;
}
.footer .footer-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.footer .footer-media a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
}
.footer .footer-media a svg {
  width: 25px;
}

.kontact {
  padding-bottom: 30px;
  padding-top: 50px;
}
.kontact .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.kontact .content .text {
  padding: 30px;
  background-color: #f2f2f2;
}
.kontact .content .text a {
  color: #000;
  font-weight: bold;
}
.kontact .content iframe {
  width: 100%;
  height: 100%;
}
.kontact form {
  width: 100%;
}
.kontact form .input-email {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
  padding: 10px 0;
}
.kontact form .btn-email {
  border: none;
}

.poslugi-block {
  padding-bottom: 30px;
  padding-top: 50px;
}
.poslugi-block .logo-items {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.poslugi-block .logo-items img {
  height: 60px;
}
.poslugi-block .img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.poslugi-block .img img {
  width: 100%;
  height: 350px;
  border: 1px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
}
.poslugi-block .text {
  padding: 30px;
  background-color: #f2f2f2;
  margin-top: 50px;
  text-align: center;
}
.poslugi-block .text p {
  text-align: left;
}
.poslugi-block .text a {
  text-transform: uppercase;
}
.poslugi-block .text span {
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .about .text .title .items .item h6 {
    font-size: 14px;
  }
  .header-items .items {
    grid-template-columns: repeat(3, 1fr);
  }
  .carousel img {
    height: 400px;
  }
}
@media (min-width: 991px) {
  .burger-menu {
    display: none;
  }
}
@media (max-width: 991px) {
  .header .nav {
    display: none;
  }
  .header .header-top .logo span {
    display: none;
  }
  .header .header-top .logo img {
    margin-right: 0;
    width: 130px;
  }
  .a-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
  .header .tell a {
    font-size: 14px;
  }
  .carousel img {
    height: 500px;
  }
  .action .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-top .items a {
    font-size: 16px;
  }
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .about {
    padding: 30px 0;
  }
  .about .text .title {
    flex-direction: column;
  }
  .about .text .title h2 {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .text .title .items {
    width: 100%;
  }
  .about .img {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-content .logo h3 {
    margin-bottom: 10px;
  }
  .poslugi-block .img img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .header .tell {
    display: none;
  }
  .header .header-top .a-btn {
    padding: 10px;
    font-size: 12px;
  }
  .header .header-top .a-btn svg {
    width: 12px;
  }
  .carousel .carousel-caption h2 {
    font-size: 20px;
  }
  .carousel img {
    height: 400px;
  }
  .header-items .items {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .footer-top .items {
    flex-direction: column;
  }
  .footer .footer-content {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer .footer-content .logo img {
    width: 160px;
  }
  .poslugi-block .logo-items {
    flex-direction: column;
  }
  .poslugi-block .logo-items a {
    margin: 5px 0;
  }
  .poslugi-block .img img {
    height: 250px;
  }
  .kontact .content {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .h2 {
    margin-bottom: 30px;
  }
  .kontact {
    padding-bottom: 30px;
  }
  .kontact .content iframe {
    height: 300px;
  }
  .about .items-pr {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 20px;
  }
  .about .items-pr .item img {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .about .text .title .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .about .text .title .items .item img {
    width: 40px;
  }
  .header-items .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 400px) {
  .header .header-top .a-btn {
    display: none;
  }
  .carousel img {
    height: 500px;
  }
  .carousel .carousel-caption h3 {
    font-size: 16px;
  }
  .about .text .p {
    margin-top: 30px;
    font-size: 14px;
    padding: 20px;
  }
  .footer .footer-top .items a {
    font-size: 12px;
  }
  .footer .footer-top .items a svg {
    width: 20px;
  }
  .footer .footer-content .items h3 {
    margin-bottom: 10px;
  }
  .poslugi-block .text {
    margin-top: 30px;
  }
  .poslugi-block .img {
    grid-template-columns: repeat(1, 1fr);
  }
  .poslugi-block .text {
    margin-top: 30px;
    font-size: 14px;
    padding: 20px;
  }
}/*# sourceMappingURL=style.css.map */