:root {
  --color000: #f6f7f9;
  --color001: #ffffff;
  --color002: #2a2f37;
  --color003: #f5f5f5;
  --color004: #285157;
  --color005: #909398;
  --color006: #fec598;
  --color007: rgba(254, 197, 152, 0.6);
  --color008: #01675c;
  --color009: rgba(40, 81, 87, 0.8);
  --color010: rgba(144, 147, 152, 0.8);
  --color011: rgba(144, 147, 152, 0.4);
  --color012: rgba(0, 0, 0, 0.1);
  --color013: #f1f1f1;
  --color014: rgba(40, 81, 87, 0.3);
  --gap: 32px;
}

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

html {
  scroll-behavior: smooth;
  background: #f6f7f9;
}

.container {
  width: 1600px;
  margin: 0 auto;
}
@media only screen and (max-width: 1610px) {
  .container {
    width: 1400px;
  }
}
@media only screen and (max-width: 1410px) {
  .container {
    width: 1200px;
  }
}
@media only screen and (max-width: 1210px) {
  .container {
    width: 900px;
  }
}
@media only screen and (max-width: 910px) {
  .container {
    width: 700px;
  }
}
@media only screen and (max-width: 710px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
  color: var(--color002);
}

button {
  cursor: pointer;
  border: none;
}

.button {
  border: 1.27px solid var(--color008);
  width: 332px;
  height: 80px;
  background: var(--color006);
  font-weight: 700;
  font-size: 18px;
  line-height: 141%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: var(--color002);
  transition: 0.3s;
}
.button:hover {
  background: var(--color009);
  color: var(--color001);
}
@media screen and (max-width: 400px) {
  .button {
    width: 100%;
  }
}

.button.big {
  background: var(--color009);
  width: 100%;
  height: 60px;
  color: var(--color001);
}
.button.big:hover {
  background: var(--color006);
  color: var(--color002);
}

li {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
  outline: none !important;
}

.h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: var(--color002);
}
@media screen and (max-width: 710px) {
  .h2 {
    font-size: 30px;
  }
}

.flexBlock {
  display: flex;
}/*# sourceMappingURL=style.css.map */