@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/jost-v14-cyrillic_latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/jost-v14-cyrillic_latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/jost-v14-cyrillic_latin-500.woff2") format("woff2");
}

:root {
  --color-primary: #396585;
  --color-secondary: #5aa49c;

  min-width: 1406px;
  height: 100%;
  box-sizing: border-box;
}

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

body {
  min-width: 1406px;
  height: 100%;
  font-family: Jost, Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #000;
  background-color: #fffdfa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

@media (any-hover: hover) {
  a:hover {
    font-family: inherit;
    color: inherit;
    text-decoration: none;
  }
}

button,
input[type="submit"] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.container {
  width: 1376px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.content-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1 1 auto;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 40px;
  transition: 0.2s opacity ease;
}

@media (any-hover: hover) {
  .button:hover {
    opacity: 0.9;
    transition: 0.2s opacity ease;
  }
}
