* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 85px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 16px;
  background-color: #353535;
}

main {
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
          animation: fadeIn 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ------------------------------------------------- Typography ------------------------------------------------ */
h2,
h1 {
  font-size: 38px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ------------------------------------------------ Header ------------------------------------------------ */
header {
  background-color: #353535;
  position: sticky;
  top: 0;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  height: 85px;
  z-index: 100;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in-out forwards;
          animation: fadeIn 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
header .header-content .logo {
  font-size: 0;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
header .header-content nav a {
  text-decoration: none;
  color: #c5c4c4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header-content nav a:hover {
  color: white;
}
header .header-content nav a.active {
  color: white;
}
header .header-content nav span {
  color: #e76f33;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}
.socials a {
  font-size: 0;
}
.socials img {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(111deg) brightness(103%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(111deg) brightness(103%) contrast(103%);
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

/* ------------------------------------------------- Containers ------------------------------------------------ */
.container-full {
  padding: 60px 0px;
}
.container-full.bg-light {
  background-color: #dbcb8f;
  color: #000;
}
.container-full.bg-dark {
  background-color: #353535;
  color: white;
}
.container-full.bg-services {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(53, 53, 53, 0.9725490196)), to(rgba(53, 53, 53, 0.9725490196))), url("../assets/images/computer-4795762_1920.webp");
  background: linear-gradient(180deg, rgba(53, 53, 53, 0.9725490196) 0%, rgba(53, 53, 53, 0.9725490196) 100%), url("../assets/images/computer-4795762_1920.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.container-full.bg-contact {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(53, 53, 53, 0.9843137255)), to(rgba(53, 53, 53, 0.9843137255))), url("../assets/images/karsten-winegeart-lZB_HM0ml48-unsplash.webp");
  background: linear-gradient(180deg, rgba(53, 53, 53, 0.9843137255) 0%, rgba(53, 53, 53, 0.9843137255) 100%), url("../assets/images/karsten-winegeart-lZB_HM0ml48-unsplash.webp");
  background-size: cover;
  background-position: center;
}
.container-full.bg-gray {
  background-color: #afafaf;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  text-align: center;
}
.title p {
  max-width: 800px;
}

hr {
  background-color: #e76f33;
  height: 4px;
  border: none;
  width: 100px;
}

/* ------------------------------------------------- Hero ------------------------------------------------ */
.hero {
  background-color: white;
  background-image: url("../assets/images/background.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100svh - 85px);
  min-height: 600px;
}
.hero .hero-overlay {
  background-color: rgba(35, 35, 35, 0.937254902);
  padding: 20px;
  height: 100%;
}
.hero .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  height: 100%;
  gap: 20px;
}
.hero .hero-content img {
  width: 100%;
  height: auto;
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.hero .hero-content p {
  color: white;
  color: #c5c4c4;
  text-align: center;
  max-width: 700px;
}
.hero .hero-content .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero h2 {
  color: white;
  font-size: 30px;
  text-align: center;
  margin-bottom: -5px;
}

/* ------------------------------------------------- Buttons ------------------------------------------------ */
.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.btn {
  background-color: black;
  padding: 10px 20px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.btn:hover {
  background-color: #1f1f1f;
}
.btn.btn-orange {
  background-color: #dbcb8f;
  color: black !important;
}
.btn.btn-orange:hover {
  background-color: #f0e2af;
}

/* --------------------------------------------------------- About --------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.grid-2 .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* --------------------------------------------------------- Services --------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 40px 0;
  margin-bottom: 0;
}
.services .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background-color: #252525;
  color: #c5c4c4;
  padding: 22px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.services .service h3 {
  color: white;
  font-weight: 600;
}

/* --------------------------------------------------------- Focus Areas --------------------------------------------------------- */
.focus-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 40px 0;
  margin-bottom: 0;
}
.focus-areas .focus-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background-color: #252525;
  color: #c5c4c4;
  padding: 22px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.focus-areas .focus-area h3 {
  color: white;
  font-weight: 600;
}

/* --------------------------------------------------------- Contact --------------------------------------------------------- */
#contact a {
  color: #e76f33;
  text-decoration: none;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 700px;
  margin: 40px auto;
  margin-bottom: 0;
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  color: #000;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
form h3 {
  font-size: 28px;
  margin-bottom: 10px;
}
form p {
  margin-bottom: 20px;
}
form label {
  display: none;
  font-weight: bold;
}
form input,
form textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  background-color: transparent;
  outline: none;
  border-bottom: 2px solid black;
  background-color: #f3f3f3;
  border: 1px solid #e9e9ea;
  font-size: inherit;
  font-family: inherit;
}
form textarea {
  resize: vertical;
  min-height: 150px;
}
form button {
  padding: 15px;
  border: none;
  background-color: transparent;
  outline: none;
  background-color: #dbcb8f;
  border-radius: 8px;
  color: black;
  font-size: inherit;
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
form button:hover {
  background-color: #f0e2af;
}

/* --------------------------------------------------------- Footer --------------------------------------------------------- */
footer {
  background-color: #252525;
  color: white;
  text-align: center;
  border-top: 2px solid rgb(65, 63, 63);
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 90px;
  padding: 40px 20px;
  padding-bottom: 60px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  /*    flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-bottom: 40px; */
}
footer .footer-content .logo {
  max-width: 180px;
  width: 100%;
}
footer .footer-content h4 {
  margin-bottom: 5px;
  color: #dbcb8f;
}
footer .footer-content a {
  color: white;
  text-decoration: none;
}
footer .footer-content .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0;
  /*  text-align: center; */
}
footer .footer-content .footer-item .description {
  margin-top: 20px;
  max-width: 400px;
}
footer .copyright {
  font-size: 15px;
  padding: 15px 20px;
  background-color: #353535;
  border-top: 1px solid rgb(65, 63, 63);
}

.no-cookies {
  margin: 15px auto;
  text-align: center;
  padding: 0 20px;
}

/* --------------------------------------------------------- Media Queries --------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
  .container-full {
    padding: 20px 0;
  }
  .title {
    padding-top: 20px;
  }
  h2,
  h1 {
    font-size: 28px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .grid-2 {
    padding-top: 20px;
  }
  .grid-2 img {
    aspect-ratio: unset;
    height: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .services {
    grid-template-columns: 1fr 1fr;
  }
  header .header-content nav {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 17px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #353535;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  header .header-content nav a {
    font-size: 18px;
  }
  header .header-content nav a.active {
    color: #c5c4c4;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 27px;
    right: 20px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .grid-2 .text {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-content .footer-item {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    background-size: cover;
  }
  .services,
  .focus-areas {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 600px) {
  .hero .hero-content {
    gap: 10px;
  }
  .hero .hero-content img {
    width: 70%;
  }
  h2,
  h1 {
    font-size: 22px;
  }
  .hero h2 {
    font-size: 20px;
  }
  form {
    padding: 20px;
  }
}/*# sourceMappingURL=styles.css.map */