@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: white;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 0.5rem;
}

nav ul li a {
  text-decoration: none;
}

main {
  padding: 0rem;
  font-size: 1rem;
}

footer {
  width: 100%;
  bottom: 0;
}

.top-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.top-header .top-gif {
  width: 100%;
  height: 80vh;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-header .gif-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
  z-index: 15;
}

.top-bar {
  background-color: transparent;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 10%;
  padding-right: 10%;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  width: 80%;
  z-index: 20;
}
.top-bar a {
  text-decoration: none;
}
.top-bar .top-logo {
  visibility: hidden;
  border-radius: 0.2rem;
  width: 8rem;
  padding-top: 0.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.top-bar .top-nav {
  padding: 0.8rem;
}
.top-bar .top-nav a {
  color: white;
}
.top-bar .top-linkedin {
  width: 2rem;
}
.top-bar .top-burger {
  display: none;
  cursor: pointer;
}

.top-bar.scrolled {
  background-color: white;
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
}
.top-bar.scrolled .top-logo {
  visibility: visible;
  color: #1e1b2b;
  text-decoration: none;
}
.top-bar.scrolled .top-nav {
  color: #1e1b2b;
}
.top-bar.scrolled .top-nav a {
  color: #1e1b2b;
}
.top-bar.scrolled .top-linkedin {
  content: url("/images/LI-In-Bug-black.png");
}

@media screen and (max-width: 1000px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
    width: 98%;
  }
  .top-bar .top-logo {
    visibility: hidden;
  }
  .top-bar .top-nav {
    display: none;
  }
  .top-bar .top-linkedin {
    visibility: hidden;
  }
  .gif-overlay {
    width: 75vw !important;
  }
  .top-burger {
    display: block !important;
    margin-right: 2rem;
  }
  .top-burger .burger-icon {
    fill: white;
    width: 2rem;
    height: 2rem;
  }
  .top-bar.scrolled .burger-icon {
    fill: #1e1b2b;
  }
  .top-bar.scrolled .top-logo {
    margin-left: 2rem;
    visibility: visible;
  }
}
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.2s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.overlay-content a {
  padding: 0.5rem;
  text-decoration: none;
  font-size: 2rem;
  color: white;
  display: block;
  transition: 0.3s;
}

.about-intro {
  display: flex;
  flex-direction: column;
  padding-right: 20%;
  padding-left: 20%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #1e1b2b;
  font-weight: 400;
  font-size: 1rem;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5%;
  width: 70%;
  margin: 0 auto;
  padding-bottom: 10rem;
}
.about-container .about-item {
  border-radius: 0.5rem;
  padding: 1rem;
}
.about-container .about-item h3 {
  color: #1e1b2b;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
  padding-top: 1rem;
}
.about-container .about-item p {
  color: #29304A;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  padding-top: 1rem;
}
.about-container .about-item .about-img {
  width: 100%;
  height: 350px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1000px) {
  .about-intro {
    padding-right: 10%;
    padding-left: 10%;
  }
  .about-container {
    grid-template-columns: 1fr;
    width: 90%;
    gap: 2rem;
  }
}
.job-parallex {
  background-image: url("/images/parallex.jpg");
  min-height: 70vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.job-parallex .job-title {
  font-size: 2rem;
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: center;
}
.job-parallex .job-container {
  width: 75%;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
}
.job-parallex .job-container img {
  width: 60%;
  height: auto;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-parallex .job-container p {
  justify-content: center;
  text-align: center;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width: 1000px) {
  .job-parallex {
    min-height: 60vh;
  }
  .job-parallex .job-container {
    flex-direction: column !important;
    margin-bottom: 2rem;
  }
  .job-parallex .job-container img {
    width: 100%;
    height: 40vh;
  }
  .job-parallex .job-container p {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 25%;
  padding-right: 25%;
}
.contact-form .contact-title {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.contact-form label {
  font-size: 1rem;
  font-weight: 560;
  color: #29304A;
}
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid lightgray;
  border-radius: 0.2rem;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}
.contact-form input[type=text]:focus, .contact-form input[type=email]:focus, .contact-form textarea:focus {
  border: 1px solid #1e1b2b;
}
.contact-form .contact-button {
  display: flex;
  justify-content: left;
}
.contact-form input[type=submit] {
  background-color: #1e1b2b;
  width: 6rem;
  height: 2.5rem;
  color: white;
  font-weight: 500;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 0.2rem;
  cursor: pointer;
  box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1);
}
.contact-form input[type=submit]:hover {
  background-color: #29304A;
}

@media screen and (max-width: 600px) {
  .contact-form {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.map {
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  height: 60vh;
  background-color: hotpink;
}

.footer-container {
  display: flex;
  flex-direction: row;
  padding-top: 1rem;
  padding-left: 5%;
  padding-right: 5%;
  justify-content: space-between;
  background-color: white;
}
.footer-container .footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  color: #1e1b2b;
  width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-container .footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}
.footer-container .footer-nav ul {
  list-style-type: none;
  padding: 0;
}
.footer-container .footer-nav li {
  margin-bottom: 0.8rem;
}
.footer-container .footer-nav a {
  color: #29304A;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 1rem;
}
.footer-container .footer-social {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #29304A;
}
.footer-container .footer-social img {
  width: 1rem;
}
.footer-container .footer-social h3 {
  margin: 0;
  padding: 0;
  padding-bottom: 0.5rem;
}
.footer-container .footer-social p {
  margin: 0;
  padding-top: 0.2rem;
}

.credit {
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #29304A;
  color: white;
  font-size: 0.8rem;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    padding-left: 5%;
    padding-right: 5%;
    align-items: center;
  }
  .footer-nav {
    display: none;
    padding-top: 1rem;
  }
  .footer-social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
    text-align: center !important;
  }
}/*# sourceMappingURL=style.css.map */