@font-face {
  font-family: "Faktum Regular";
  src: url("../font/faktum-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Faktum Wide Extrabold";
  src: url("../font/faktum-wide-extrabold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
body {
  background: #121212;
  font-family: "Faktum Regular", sans-serif;
}

header {
  padding: clamp(40px, 5vw, 60px) 20px clamp(40px, 5vw, 60px) 20px;
}
header .logo {
  width: clamp(150px, 20vw, 220px);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

main {
  padding: clamp(80px, 5vw, 120px) 20px clamp(80px, 5vw, 120px) 20px;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
main h1 {
  font-family: "Faktum Wide Extrabold", sans-serif;
  color: #fff;
  font-size: clamp(1.4rem, 5vw, 4em);
  text-transform: uppercase;
  margin-bottom: clamp(40px, 5vw, 60px);
}

footer {
  padding: clamp(40px, 5vw, 60px) 20px clamp(40px, 5vw, 60px) 20px;
  border-top: 1px solid #444444;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  footer .container {
    flex-direction: column;
  }
}
footer .container .contact {
  font-size: clamp(0.9em, 2vw, 1.2em);
  line-height: 1.8em;
  display: flex;
  gap: 40px;
  width: 100%;
  color: #fff;
}
footer .container .icons {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  footer .container .icons {
    justify-content: flex-start;
  }
}
footer .container .icons img {
  width: clamp(170px, 20vw, 260px);
}

.link {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  display: block;
  margin-top: 0px;
  left: 0;
  background: #444444;
  transition: width 0.4s ease, left 0.4s ease;
}
.link:hover::after {
  width: 100%;
  left: 0;
}

.button {
  font-size: clamp(1em, 2vw, 1.2em);
  font-family: "Faktum Regular", sans-serif;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #69707c;
  color: #fff;
  border-radius: 10rem;
  padding: 0rem 0rem;
  padding-left: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: clamp(45px, 5vw, 50px);
  height: clamp(45px, 5vw, 50px);
  position: relative;
  color: #fff;
  background-color: #848a94;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #575b62;
}

.button:hover .button__icon-wrapper {
  color: #fff;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-170%, 170%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(170%, -170%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}/*# sourceMappingURL=style.css.map */