/* Reset and base styles  */
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  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;
}

:root {
  --textColor: #000;
  --accent: #1a71d2;
  --font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #000;
}

a, a:link, a:visited {
  color: #0F7DFF;
  text-decoration: underline;
}

a:focus,
button:focus {
  outline-offset: 1px;
  outline: #005fcc auto 1px;
}

p + p {
  margin-top: 1em;
}

.main-content {
  margin-bottom: 40px;
  text-align: center;
}

.container {
  width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1220px) {
  .container {
    width: 768px;
  }
}
@media (max-width: 788px) {
  .container {
    width: 100%;
  }
}
.container--large {
  max-width: 1510px;
  width: 100%;
}
@media (max-width: 1220px) {
  .container--large {
    width: 100%;
  }
}
@media (max-width: 1220px) {
  .container--tablet-fluid {
    width: auto;
  }
}
@media (max-width: 788px) {
  .container--mobile-fluid {
    width: auto;
  }
}

.header {
  margin-bottom: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
  padding: 40px 0;
  border-bottom: 1px solid #dcedf9;
}
@media (max-width: 788px) {
  .header {
    padding: 20px 0;
  }
}

.header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 788px) {
  .header__row {
    justify-content: center;
  }
}

.header__logo {
  flex-shrink: 0;
}

@media (max-width: 788px) {
  .header__nav {
    display: none;
  }
}

.header__nav-btn {
  display: none;
}
@media (max-width: 788px) {
  .header__nav-btn {
    display: none;
  }
}

.nav {
  font-size: 14px;
}

.nav__list {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
}
@media (max-width: 1220px) {
  .nav__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.nav__link, a.nav__link {
  color: #000;
  transition: color 0.2s ease-in;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}
.nav__link:hover, a.nav__link:hover {
  color: var(--accent);
}

.footer {
  padding: 60px 0;
  background-color: #000;
  color: #fff;
}
@media (max-width: 788px) {
  .footer {
    padding: 40px 0;
  }
}
.footer a {
  color: #fff;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
}

.mobile-nav {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in;
}
.mobile-nav--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__header {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav__btn {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
}

.mobile-nav__body {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, 10%);
  transition: all 0.2s ease-in;
}

.mobile-nav--open .mobile-nav__body {
  transform: translate(0, 0%);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  font-size: 14px;
  color: #000;
}
.mobile-nav-list a {
  color: #000;
}

.none {
  display: none !important;
}

@media (max-width: 1220px) {
  .visible-desktop {
    display: none;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.no-scroll {
  overflow-y: hidden;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

.mb-4 {
  margin-bottom: 4em;
}

.mb-5 {
  margin-bottom: 5em;
}

.logo,
a.logo,
a.logo:link {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}
.logo a,
a.logo a,
a.logo:link a {
  text-decoration: none;
}

.logo__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  color: #1a71d2;
}

.logo__text {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #95b2d1;
  letter-spacing: 0.02em;
  line-height: 130%;
}

.btn,
a.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 80px;
  background-color: #000000;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease-in;
}
.btn:hover,
a.btn:hover {
  background-color: #333;
}
.btn--wide,
a.btn--wide {
  width: 100%;
}

.title-1 {
  margin-bottom: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.182rem + 1.59vw, 2.375rem);
  line-height: 130%;
  text-align: center;
  color: #000;
}

.title-2 {
  margin-bottom: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  font-weight: 400;
  line-height: 130%;
  text-align: center;
  color: #000;
}

.plates-wrapper {
  margin: 0 auto;
  margin-bottom: clamp(1.875rem, 1.193rem + 3.41vw, 3.75rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 800px;
}

a.plate,
.plate {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 40px;
  border-radius: 28px;
  width: 242px;
  height: 96px;
  background-color: #f2f2f2;
  text-decoration: none;
  color: #000;
  transition: background-color 0.2s ease-in;
}
a.plate:hover,
.plate:hover {
  background-color: #dcedf9;
}

.plate__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: #000;
}/*# sourceMappingURL=main.css.map */