@font-face {
  font-family: FKGrotesk;
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/FKGrotesk/otf/FKGrotesk-Regular.otf") format("opentype");
}

@font-face {
  font-family: FKGroteskBold;
  font-style: normal;
  src: url("./fonts/FKGrotesk/otf/FKGrotesk-Bold.otf") format("opentype");
}

@font-face {
  font-family: FKGroteskMono;
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/FKGrotesk/otf/FKGroteskMono-Regular.otf") format("opentype");
}

body {
  padding: 0;
  margin: 0;
}

body,
a {
  color: #fff;
  font-size: 16px;
  letter-spacing: normal;
  text-decoration: none;
}

a:hover,
a:focus-within {
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
}

.font-fkgm {
  font-family: "FKGroteskMono";
}

.font-fkg {
  font-family: "FKGrotesk";
}

.background {
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #000;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
  height: 100%;
}

/* mobile */
@media (max-width: 767px) {
  .mobile {
    display: flex;
  }
  .content {
    padding: 30px;
  }
}
/* tablet */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .tablet {
    display: flex;
  }
  .content {
    padding: 70px;
  }
}
/* desktop */
@media (min-width: 1200px) {
  .desktop {
    display: flex;
  }
  .content {
    padding: 80px 100px;
  }
}

.content-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

.content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.content img {
  display: block;
  max-width: 100%;
}

.content-bottom-right {
  display: flex;
  gap: 70px;
  margin-left: auto;
}

.icon {
  display: block;
  width: 48px;
  height: 48px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("./img/x.png");
}

.icon-plus {
  transform: rotate(45deg);
}

.about {
  width: 450px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about .heading {
  font-size: 12px;
  letter-spacing: 2px;
}

.about .body {
  letter-spacing: 0.5px;
  line-height: 2;
}

.item {
  display: flex;
  gap: 30px;
  align-items: center;
  text-transform: uppercase;
}

.item a {
  line-height: 1;
}

.location,
.services,
.contact {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 10px;
}

.contact .media {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact .media a {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.facebook {
  background-image: url("./img/facebook.png");
}
.linkedin {
  background-image: url("./img/linkedin.png");
}
.instagram {
  background-image: url("./img/instagram.png");
}

/* Desktop */
.desktop .content-bottom-right {
  padding-top: 10px;
}

.desktop .content-top-right .item-contact,
.desktop .content-bottom-right .item-contact {
  display: none;
}

.desktop .logo {
  max-width: 400px;
}
.desktop .location {
  font-size: 28px;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .desktop .logo {
    max-width: 300px;
  }
  .desktop .location {
    font-size: 24px;
  }
}
@media (max-width: 1919.98px) {
  .desktop .content-top-right .item-contact {
    display: flex;
  }
}
/* large desktop */
@media (min-width: 1920px) {
  .desktop .logo {
    max-width: 500px;
  }
  .dektop .location {
    font-size: 32px;
  }
  .desktop .content-bottom-right .item-contact {
    display: flex;
  }
}

/* Tablet */
.tablet .services,
.tablet .location {
  font-size: 20px;
}
.tablet .content-top,
.tablet .content-bottom {
  gap: 20px;
  position: relative;
}
.tablet .item-location {
  transform: rotate(-90deg);
  position: absolute;
  right: -220px;
  top: 220px;
}
.tablet .logo {
  max-width: 300px;
}
.tablet-bottom-right {
  align-items: flex-end;
}
.tablet .contact {
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.tablet .media-wrapper {
  position: relative;
}
.tablet .item-contact .media {
  flex-direction: column;
  position: absolute;
  bottom: 70px;
  right: 12px;
}

/* Mobile */
.mobile .logo {
  max-width: 200px;
}
.mobile .icon {
  width: 30px;
  height: 30px;
}
.mobile .services,
.mobile .location {
  font-size: 14px;
}
.mobile .item-services {
  align-items: flex-start;
}
.mobile .services {
  flex-direction: column;
  gap: 5px;
}
.mobile .content-top {
  position: relative;
}
.mobile .item-location {
  transform: rotate(-90deg);
  position: absolute;
  right: -155px;
  top: 165px;
}