@font-face {
  font-family: "Geologica";
  src: url("/font/geologica-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/font/geologica-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("/font/geologica-200.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: 'Geologica';
}

.icon {
  background-color: var(--main-color);
  mask-size: contain;
  mask-mode: alpha;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.icon-logo {
  mask-image: url("/icons/logo.svg");
  -webkit-mask-image: url("/icons/logo.svg");
}

.icon-search {
  mask-image: url("/icons/search.svg");
  -webkit-mask-image: url("/icons/search.svg");
}

:root {
  --main-color: #2c9be5;
  --accent-color: #e74c3c;
  --text-color: #333;
  --dark-color: #202225;
  --invert-color: #fff;
  --highlight-color: #ffffff28;
}

* {
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: var(--font-family);
}

*:focus {
  outline: none;
}

ul, li {
  list-style: none;
}

img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
  image-rendering: -moz-crisp-edges; /* Firefox */
  image-rendering: -o-crisp-edges; /* Opera */
  -ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
  image-rendering: crisp-edges;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
  background: none;
  padding: 0;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

button, select {
  text-transform: none;
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}
input[type=search]::-moz-search-clear-button {
  display: none;
}

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

@media (min-width: 991px) {
  :root {
    --font-size-mid: 14pt;
    --font-size-h1: 18pt;
    --m-radius: 10px;
    --radius: 20px;
  }
  .icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 990px) and (min-width: 600px) {
  :root {
    --font-size-mid: 1.8vw;
    --font-size-h1: 2.4vw;
    --m-radius: 1vw;
    --radius: 2vw;
  }
  .icon {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 599px) {
  :root {
    --font-size-mid: 3.6vw;
    --font-size-h1: 5vw;
    --m-radius: 10px;
    --radius: 20px;
  }
  .icon {
    width: 5vw;
    height: 5vw;
  }
}
* {
  font-size: var(--font-size-mid);
}

header {
  background-color: var(--dark-color);
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
header .head-phone {
  margin-right: auto;
  color: var(--invert-color);
  font-weight: 800;
  font-size: var(--font-size-h1);
}
header .head-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .head-nav ul li {
  display: block;
  position: relative;
  color: var(--invert-color);
}
header .head-nav ul li:hover::after {
  content: "";
  position: absolute;
  width: 70%;
  left: 15%;
  bottom: 0;
  background-color: var(--main-color);
}
header form {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--highlight-color);
  border-radius: var(--m-radius);
}
header form input {
  color: var(--invert-color);
}
header form .icon {
  position: relative;
  background-color: var(--invert-color);
}

nav.sidebar-nav {
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 991px) {
  header {
    padding: 10px;
  }
  .home-link {
    margin-left: 10px;
  }
  .home-link .icon-logo {
    width: 40px;
    height: 40px;
  }
  .head-phone {
    padding: 0 40px;
  }
  .head-nav ul li {
    padding: 6px 10px;
  }
  .head-nav ul li:hover::after {
    content: "";
    position: absolute;
    width: 70%;
    left: 15%;
    bottom: 0;
    height: 4px;
    border-radius: 2px;
  }
  form {
    margin-left: 10px;
    padding: 5px 20px;
  }
  form input {
    width: 150px;
  }
  form .icon {
    right: -10px;
  }
}
@media (max-width: 990px) and (min-width: 600px) {
  header {
    padding: 1vw;
  }
  .home-link {
    margin-left: 1vw;
  }
  .home-link .icon-logo {
    width: 4vw;
    height: 4vw;
  }
  .head-phone {
    padding: 0 4vw;
  }
  .head-nav ul li {
    padding: 0.6vw 1vw;
  }
  .head-nav ul li:hover::after {
    content: "";
    position: absolute;
    width: 70%;
    left: 15%;
    bottom: 0;
    height: 0.4vw;
    border-radius: 0.2vw;
  }
  form {
    margin-left: 1vw;
    padding: 0.6vw 2vw;
  }
  form input {
    width: 17vw;
  }
  form .icon {
    right: -1vw;
  }
}
@media (max-width: 599px) {
  header {
    padding: 1.2vw;
  }
  .home-link {
    margin-left: 1vw;
  }
  .home-link .icon-logo {
    width: 4vw;
    height: 4vw;
  }
  .head-phone {
    padding: 0 40px;
  }
}/*# sourceMappingURL=app.css.map */