@charset "UTF-8";
/* Reset and base styles */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus, :active {
  /* outline: none; */
}

a, a:visited {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:focus, a:active {
  outline: none;
}

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button, input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  cursor: pointer;
}

input:focus, input:active, button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html {
  min-height: 100vh;
  /* sticky footer */
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* sticky footer */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* sticky footer */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* sticky footer */
  font-family: 'Arial', Helvetica, sans-serif;
  color: #323232;
  font-size: 18px;
  line-height: 1.6875;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

body > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  /* sticky footer */
}

section {
  padding: 20px 0;
}

img {
  display: block;
  max-width: 100%;
}

/* Grid styles */
.container {
  max-width: 1140px;
  width: min(100% - 32px, 1140px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container--fluid {
  max-width: unset;
}
.container--no-padding {
  padding: 0;
}

/* ====== АДАПТИВ ====== */
@media screen and (max-width: 1280px) {
  .container {
    width: min(100% - 24px, 1000px);
  }
}
@media screen and (max-width: 1024px) {
  .container {
    width: min(100% - 24px, 900px);
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: min(100% - 16px, 100%);
  }

  section {
    padding: 32px 0;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 24px 0;
  }
}
.site-header {
  margin-top: 30px;
}

.header-band img {
  max-width: 100%;
}

.plug_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 70px auto 30px;
  text-align: center;
  font-size: 54px;
  font-weight: 700;
  color: #0a3b71;
}

.contacts__wrapper {
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts-links-description {
  color: #004A92;
}

.link:hover {
  color: #eb4848;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.site-footer {
  margin-bottom: 60px;
  padding: 20px 0;
}

.none {
  display: none !important;
}

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