@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;400;700&display=swap");
@import url("https://fonts.cdnfonts.com/css/helveticaneue-2?styles=30115,30117");
@import url("https://fonts.cdnfonts.com/css/craftwork-grotesk?styles=140692,140689");
:root {
  --bg: #EEF0F2;
  --bg-grey: #E7E7E7;
  --blue: #0E79B2;
  --text: #020202;
  --grey: #5b5b5b;
  --green: #288a43;
}

@media (min-width: 48rem) {
  :root {
    --text-multiplier: 1.5;
  }
}
@media (min-width: 320px) {
  :root {
    --text-multiplier: 0.5;
  }
}
@media (min-width: 360px) {
  :root {
    --text-multiplier: 0.8;
  }
}
@media (min-width: 600px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 768px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    --text-multiplier: 0.9;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --text-multiplier: 1;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --text-multiplier: 1.5;
  }
}
h1 {
  font-size: calc(3rem * var(--text-multiplier));
  font-family: "Craftwork Grotesk", sans-serif;
}

h2 {
  font-size: calc(2.5rem * var(--text-multiplier));
  font-family: "Craftwork Grotesk", sans-serif;
}

h3 {
  font-size: calc(2rem * var(--text-multiplier));
  font-family: "Craftwork Grotesk", sans-serif;
}

h4 {
  font-size: calc(1.5rem * var(--text-multiplier));
  font-family: "Craftwork Grotesk", sans-serif;
}

h5 {
  font-size: calc(1.25rem * var(--text-multiplier));
  font-family: "Craftwork Grotesk", sans-serif;
}

p {
  font-size: calc(1rem * var(--text-multiplier));
  font-family: "HelveticaNeue", sans-serif;
  margin: 20px 0;
}

span {
  font-size: calc(1rem * var(--text-multiplier));
  font-family: "HelveticaNeue", sans-serif;
}

* {
  padding: 0;
  margin: 0;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  margin: 0;
}

@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}
a {
  color: var(--text);
  text-decoration: none;
}

header {
  padding: 10px 0;
  height: 70px;
}
header h1 {
  padding: 0;
  margin: 0;
}
header img.logo {
  height: 50px;
}
@media only screen and (max-width: 617px) {
  header img.logo {
    height: 50px;
    padding: 0px 30px;
  }
}
header .menu {
  list-style: none;
  display: block;
  color: var(--text);
}
@media only screen and (max-width: 617px) {
  header .menu {
    padding: 100px 30px;
  }
}
header .menu li {
  display: inline-block;
  margin: 0px 15px;
  text-transform: uppercase;
}
@media only screen and (max-width: 617px) {
  header .menu li {
    display: block;
    margin: 30px 0px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 617px) {
  header .menu {
    position: absolute;
    background: var(--green);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    transition: all 0.5s ease-in-out;
    transform: translateY(-100%);
  }
  header .menu.active {
    transform: translateY(0%);
  }
}
@media only screen and (max-width: 617px) {
  header .burger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    display: block;
    transition: all 0.3s;
    cursor: pointer;
    height: 40px;
    z-index: 101;
  }
  header .burger-menu .bar {
    transition: all 0.3s;
    height: 2px;
    width: 100%;
    display: block;
    background-color: var(--text);
  }
  header .burger-menu .bar:nth-of-type(2) {
    margin: 8px 0;
  }
  header .burger-menu--closed {
    transition-delay: 0.3s;
  }
  header .burger-menu--closed .bar {
    float: right;
  }
  header .burger-menu--closed .bar:nth-of-type(2) {
    width: 75%;
    transition-property: margin, height, width;
    transition-delay: 0.3s, 0.3s, 0s;
  }
  header .burger-menu--closed .bar:nth-of-type(3) {
    width: 50%;
  }
  header .burger-menu--closed:hover .bar:nth-of-type(2) {
    width: 100%;
  }
  header .burger-menu--closed:hover .bar:nth-of-type(3) {
    width: 100%;
  }
  header .burger-menu--opened {
    padding-top: 20px;
  }
  header .burger-menu--opened .bar:nth-of-type(1) {
    transform: rotate(45deg);
    transition-delay: 0.3s;
    height: 2px;
  }
  header .burger-menu--opened .bar:nth-of-type(2) {
    opacity: 0;
    height: 0;
    margin: -3px;
  }
  header .burger-menu--opened .bar:nth-of-type(3) {
    transform: rotate(-45deg);
    transition-delay: 0.3s;
    height: 2px;
  }
}

main {
  max-width: 100vw;
  flex-grow: 1;
  height: auto;
  overflow-x: hidden;
}

a.btn {
  background: var(--text);
  color: var(--bg-grey);
  text-align: center;
  padding: 8px 35px;
  border-radius: 15px;
  margin: 20px auto;
}

.title-page {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  padding: 30px 0;
}
@media only screen and (max-width: 617px) {
  .title-page {
    padding: 20px 0;
  }
}

.full-page {
  width: 100%;
  margin: 30px 0;
  position: relative;
}
@media only screen and (max-width: 617px) {
  .full-page {
    margin: 10px 0;
  }
}
.full-page .inner {
  overflow: hidden;
  height: 300px;
  display: flex;
}
@media only screen and (max-width: 617px) {
  .full-page .inner {
    height: 15vh;
  }
}
.full-page .inner .image-holder {
  width: 45%;
  height: 300px;
  background: var(--grey);
  border-radius: 160px;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
  margin-left: 30px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 617px) {
  .full-page .inner .image-holder {
    height: 13vh;
    margin-left: 10px;
  }
}
.full-page .inner .image-holder img {
  width: 110%;
  height: auto;
  background-size: contain;
}
.full-page .inner .image-holder:first-child {
  transform: translateX(-50%);
}
.full-page .inner .image-holder:last-child {
  left: 50%;
  transform: translateX(-50%);
}

.indetify {
  text-align: center;
  margin: 20px auto;
}
.indetify h4 {
  text-transform: uppercase;
  margin: 30px auto;
}
.indetify form {
  display: block;
}
.indetify form input {
  border: 1px solid var(--text);
  background: none;
  border-radius: 5px;
  padding: 5px 10px;
  display: block;
  font-size: 1.25rem;
  color: var(--text);
  margin: 20px auto;
  text-align: center;
}
.indetify form input::-moz-placeholder {
  color: var(--grey);
}
.indetify form input::placeholder {
  color: var(--grey);
}
.indetify form button {
  border: none;
  border-radius: 7px;
  padding: 10px 15px;
  color: var(--bg-grey);
  background: var(--text);
  display: block;
  margin: 20px auto;
  width: 200px;
  font-size: 0.8rem;
  font-weight: 600;
}
.indetify .check {
  padding: 30px 50px;
  margin: 20px 0;
}
.indetify .check p {
  margin: 20px auto;
}
.indetify .check img {
  display: block;
  width: 90px;
  margin: 10px auto;
}
.indetify .check.success {
  border: 3px solid var(--green);
  border-radius: 15px;
}
.indetify .check.success a {
  background: var(--text);
  color: var(--bg-grey);
  margin: 10px auto;
  padding: 10px 15px;
  border-radius: 10px;
}
.indetify .check.success .qrcode {
  width: 150px;
  margin: 20px auto;
  border-radius: 7px;
}
.indetify .check.error {
  border: 3px solid hsl(0, 55%, 35%);
  border-radius: 15px;
}

.contact-place .inner {
  background: var(--bg-grey);
  padding: 45px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 617px) {
  .contact-place .inner {
    padding: 25px;
    margin-bottom: 20px;
  }
}
.contact-place .inner p {
  margin: 20px 0;
  padding: 10px 0;
  font-weight: 700;
  border-bottom: 1px solid var(--grey);
}
.contact-place .inner p span {
  float: right;
  font-weight: 400;
  margin-left: 20px;
  position: relative;
}
@media only screen and (max-width: 617px) {
  .contact-place .inner p span {
    top: -10px;
  }
}

section.address-footer {
  height: auto;
  background: var(--bg-grey);
  padding: 30px 0;
  margin-bottom: 20px;
}
section.address-footer ul {
  list-style: none;
}
section.address-footer ul li {
  margin: 10px 0;
}
section.address-footer h4.title-footer {
  padding: 20px 0;
}
section.address-footer .devider {
  width: 10px;
  background: linear-gradient(to top left, #202020 calc(50% - 1px), #5b5b5b, #202020 calc(50% + 1px));
}
section.address-footer .address {
  margin: 20px 0;
}
section.address-footer .address p {
  width: 100%;
  border-bottom: 1px solid var(--grey);
  display: block;
  padding: 15px 0;
  font-weight: 700;
}
section.address-footer .address p span {
  float: right;
  font-weight: 400;
}
section.address-footer .div {
  margin: 15px 0;
  border-bottom: 1px solid #202020;
}

footer {
  background: --grey;
  margin: 0;
  padding: 0;
  height: 35px;
  font-size: 0.8rem;
}
footer img {
  height: 10px;
}
@media only screen and (max-width: 617px) {
  footer small {
    display: none;
  }
  footer img {
    height: 8px;
  }
}
footer ul {
  list-style: none;
}
footer ul li {
  display: inline;
  margin-right: 20px;
}/*# sourceMappingURL=style.css.map */