* {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
}

html, body {
  box-sizing: border-box;
  z-index: -1;
}

header {
  height: auto;
  color: #ffffff;
  background: #133D8D;
  overflow: hidden;
}
header section {
  width: 80%;
  margin: 0 auto;
}
header section .header__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
  position: relative;
  height: 5%;
}
header section .header__head .head__logo img {
  width: 50%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
header section .header__head .header__menu {
  width: 70%;
}
header section .header__head .header__menu .menu {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
header section .header__head .header__menu .menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
header section .header__head .header__menu .menu a.tek {
  font-size: 16px;
}
header section .header__head .header__menu .menu a:hover {
  border-bottom: 1px solid #fff;
}
header section .header__head .hamburger__menu {
  opacity: 0;
  z-index: 20;
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
}
header section .header__head .hamburger__menu #menu__toggle {
  opacity: 0;
}
header section .header__head .hamburger__menu #menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
header section .header__head .hamburger__menu .menu__btn {
  z-index: 30;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
header section .header__head .hamburger__menu .menu__btn > span,
header section .header__head .hamburger__menu .menu__btn > span::before,
header section .header__head .hamburger__menu .menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition-duration: 0.25s;
}
header section .header__head .hamburger__menu .menu__btn > span::before {
  content: "";
  top: -8px;
}
header section .header__head .hamburger__menu .menu__btn > span::after {
  content: "";
  top: 8px;
}
header section .header__head .hamburger__menu .menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ECEFF1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: 0.25s;
}
header section .header__head .hamburger__menu .menu__box:not(:hover) {
  opacity: 0;
  right: -100%;
  position: relative;
  display: hide;
}
header section .header__head .hamburger__menu .menu__item {
  display: block;
  padding: 12px 24px;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}
header section .header__head .hamburger__menu .menu__item:hover {
  background-color: #CFD8DC;
}

main {
  height: auto;
  color: #133D8D;
}
main .section__contacts {
  height: auto;
  background: #fff;
}
main .section__contacts .contacts__container {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 30px;
}
main .section__contacts .contacts__container .contacts__header {
  color: #333333;
}
main .section__contacts .contacts__container .contacts__header h2 {
  font-weight: 300;
  font-size: 36px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
main .section__contacts .contacts__container .contacts__header h5 {
  font-size: 14px;
  margin-top: 50px;
}
main .section__contacts .contacts__container .contacts__header h5 a {
  color: #333;
  text-decoration: none;
}
main .section__contacts .contacts__container .contacts__header h5 a.tek {
  border-bottom: 1px solid #333;
}
main .section__contacts .contacts__container .contacts__header h5 a:hover {
  border-bottom: 1px solid #333;
}
main .section__contacts .contacts__container .contacts__header h5 span {
  margin: 0px 10px;
}
main .section__contacts .contacts__container .contacts__content {
  margin-top: 40px;
}
main .section__contacts .contacts__container .contacts__content_block {
  position: relative;
  color: #333333;
}
main .section__contacts .contacts__container .contacts__content_block h5 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 30px;
}
main .section__contacts .contacts__container .contacts__content_block iframe {
  width: 100%;
  height: 500px;
}
main .section__contacts .contacts__container .contacts__content_block .block_info {
  position: absolute;
  top: 50px;
  left: 50px;
  background: #fff;
  width: 250px;
  height: auto;
  padding: 40px;
}
main .section__contacts .contacts__container .contacts__content_block .block_info button {
  width: 100px;
  color: #fff;
  background: #133D8D;
  border: 1px solid #133D8D;
  padding: 10px 15px;
  margin-bottom: 30px;
}
main .section__contacts .contacts__container .contacts__content_block .block_info button:hover {
  background: #fff;
  color: #133D8D;
  border: 1px solid #133D8D;
}
main .section__contacts .contacts__container .contacts__content_block .block_info button.tek {
  background: #fff;
  color: #133D8D;
  border: 1px solid #133D8D;
}
main .section__contacts .contacts__container .contacts__content_block .block_info .info_item {
  display: flex;
  justify-content: start;
  align-items: center;
}
main .section__contacts .contacts__container .contacts__content_block .block_info .info_item img {
  margin-right: 10px;
}
main .section__contacts .contacts__container .contacts__content_block .block_info .info_item:not(:last-child) {
  margin-bottom: 20px;
}

footer {
  height: auto;
  background: #133D8D;
  color: #fff;
}
footer section {
  width: 80%;
  margin: auto;
  padding: 60px 0px;
}
footer section .footer__container .footer__title {
  text-align: center;
}
footer section .footer__container .footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 20px;
  margin-top: 40px;
}
footer section .footer__container .footer__content .block h5 {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 25px;
}
footer section .footer__container .footer__content .block p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}
footer section .footer__container .footer__content .block p a {
  color: #fff;
  text-decoration: none;
}
footer section .footer__container .footer__content .block p a:hover {
  border-bottom: 1px solid #fff;
}

/* Portrait tablets and small desktops */
@media (max-width: 1100px) {
  header section .header__container .container__h1 {
    font-size: 40px;
  }
  main .section__news .news__content {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
  }
}
/* Landscape phones and portrait tablets */
/* Landscape phones and smaller *//*# sourceMappingURL=contacts.css.map */