@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
:root {
  --black: #000000;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

body {
  height: 100%;
  width: 100%;
}
body main section.landing-screen {
  width: 100%;
  height: 100vh;
  position: relative;
}
body main section.landing-screen div.container {
  position: absolute;
  top: 17%;
  left: 40px;
  z-index: 3;
}
body main section.landing-screen div.container div.title {
  display: flex;
  flex-direction: row;
}
body main section.landing-screen div.container div.title div.inside {
  margin: auto 0;
}
body main section.landing-screen div.container div.title div.inside p.name {
  font-size: 2.5rem;
  color: var(--primary-color);
}
body main section.landing-screen div.container div.desc {
  margin: 30px 0 0 45px;
  font-size: 18px;
  width: 50%;
}
body main section.hidden {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s all;
}
body main section.show {
  opacity: 1;
  transform: translateY(0);
  transition: 1s all;
}
body main div.outer {
  width: 100%;
  height: 60%;
  margin: auto;
  top: 50%;
  position: relative;
}
body main div.outer div.card-container {
  width: 100%;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}
body main div.outer div.card-container div.card {
  width: 300px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body main div.outer div.card-container div.card img {
  height: 70px;
  width: 70px;
  margin-bottom: 15px;
}
body main div.outer div.card-container div.card p {
  width: 100%;
  font-size: 1rem;
  font-family: "Poppins";
  font-weight: 300;
  margin-bottom: 15px;
}
body main div.outer div.card-container div.card p.cat {
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 600;
}
body main div.outer div.card-container div.card p.desc {
  color: var(--black);
  opacity: 0.9;
  text-align: center;
}
body main div.outer div.card-container div.card p.content {
  color: var(--black);
  opacity: 0.9;
  text-align: center;
  font-weight: 600;
}
body main div.outer div.socials {
  width: 100%;
  display: flex;
  flex-direction: column wrap;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
body main div.outer div.socials a {
  margin: 0 5px;
}
body main div.outer div.socials a img {
  height: 30px;
  width: 30px;
}

@media (max-width: 480px) {
  /* Landing Area */
  body main section.landing-screen {
    max-height: 60vh;
  }
  body main section.landing-screen div.container {
    top: 30%;
  }
  body main section.landing-screen div.container div.title img {
    width: 8px;
    height: 33px;
    margin: auto 15px auto 0;
  }
  body main section.landing-screen div.container div.title div.inside p.name {
    font-size: 1.5rem;
  }
  body main section.landing-screen div.outer {
    padding-top: 30px;
  }
  body main section.landing-screen div.outer div.card-container {
    flex-direction: row;
  }
  body main section.landing-screen div.outer div.card-container div.card {
    width: 100px;
    text-align: center;
  }
  body main section.landing-screen div.outer div.card-container div.card img {
    width: 20px;
    height: 20px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.cat {
    width: 100%;
    margin-bottom: 5px;
    font-size: 0.8rem;
  }
  body main section.landing-screen div.outer div.card-container div.card p.desc {
    margin-bottom: 1px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.content {
    width: 100%;
    font-size: 0.6rem;
  }
  /* Landing Area */
}
@media screen and (min-width: 481px) and (max-width: 992px) {
  /* Landing Area */
  body main section.landing-screen {
    max-height: 80vh;
  }
  body main section.landing-screen div.container {
    top: 30%;
  }
  body main section.landing-screen div.container div.title img {
    width: 8px;
    height: 33px;
    margin: auto 15px auto 0;
  }
  body main section.landing-screen div.container div.title div.inside p.name {
    font-size: 2.5rem;
  }
  body main section.landing-screen div.outer {
    padding-top: 30px;
  }
  body main section.landing-screen div.outer div.card-container {
    flex-direction: row;
  }
  body main section.landing-screen div.outer div.card-container div.card {
    width: 100px;
    text-align: center;
  }
  body main section.landing-screen div.outer div.card-container div.card img {
    width: 40px;
    height: 40px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.cat {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1rem;
  }
  body main section.landing-screen div.outer div.card-container div.card p.desc {
    margin-bottom: 1px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.content {
    width: 100%;
    font-size: 0.8rem;
  }
  /* Landing Area */
}
@media screen and (min-width: 993px) and (max-width: 1200px) {
  /* Landing Area */
  body main section.landing-screen {
    max-height: 80vh;
  }
  body main section.landing-screen div.container {
    top: 30%;
  }
  body main section.landing-screen div.container div.title img {
    width: 8px;
    height: 33px;
    margin: auto 15px auto 0;
  }
  body main section.landing-screen div.container div.title div.inside p.name {
    font-size: 2.5rem;
  }
  body main section.landing-screen div.outer {
    padding-top: 30px;
  }
  body main section.landing-screen div.outer div.card-container {
    flex-direction: row;
  }
  body main section.landing-screen div.outer div.card-container div.card {
    width: 200px;
    text-align: center;
  }
  body main section.landing-screen div.outer div.card-container div.card img {
    width: 50px;
    height: 50px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.cat {
    width: 100%;
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  body main section.landing-screen div.outer div.card-container div.card p.desc {
    margin-bottom: 1px;
  }
  body main section.landing-screen div.outer div.card-container div.card p.content {
    width: 100%;
    font-size: 1rem;
  }
  /* Landing Area */
}/*# sourceMappingURL=contact.css.map */