@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Titillium+Web:wght@400;600&display=swap");
* {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
*::-webkit-scrollbar {
  width: 0;
}
*::-webkit-scrollbar-thumb {
  background-color: transparent;
}

h1, h2, h3 {
  text-align: center;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
  color: #064468;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

.subheading {
  width: 40vw;
  font-size: 0.9rem;
  text-align: center;
}

button {
  font-weight: 600;
  color: #FAFAFA;
  background-color: #036AA4;
  border: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 0.3rem;
  padding: 0.25rem 1rem;
  margin: 1rem;
  width: fit-content;
}
button i {
  margin-left: 0.25rem;
}
button.big {
  padding: 0.5rem 2rem;
}
button:hover {
  background-color: #064468;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  width: 100%;
  background-color: #2C2C2C;
  backdrop-filter: blur(2rem);
  padding: 0.5rem;
  z-index: 100;
}
nav .logo {
  display: flex;
  color: #3E8EBA;
  font-weight: 600;
}
nav .logo img {
  height: 2rem;
  margin-right: 1rem;
}
nav div {
  width: 40%;
}
nav div > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
nav div > div p {
  color: #FAFAFA;
  cursor: pointer;
  transition: all 0.2s ease;
}
nav div > div p:hover {
  color: #3E8EBA;
}
nav div > div p.active {
  font-weight: 600;
  color: #3E8EBA;
}

.progress-container {
  width: 100%;
}

.progress-bar {
  width: 0;
  height: 4px;
  background-color: #036AA4;
}

.home {
  background-image: url("./img/home.png");
  background-size: cover;
  height: 90vh;
}
.home h1 {
  text-align: left;
}
.home > div {
  display: flex;
  flex-direction: column;
  margin-left: 12vw;
  margin-top: auto;
}
.home .heading {
  padding-inline: 1.5rem;
  border-left: 5px solid var(--primary, #036AA4);
}
.home .subheading {
  text-align: left;
  color: #FAFAFA;
  margin-top: 1rem;
}
.home button {
  padding-inline: 1rem;
  margin-inline: 0;
}
.home i {
  margin-top: auto;
  cursor: pointer;
  font-size: 2rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 3rem;
}
section.light {
  background-color: #FAFAFA;
  color: #2C2C2C;
}
section.dark {
  background-color: #2C2C2C;
  color: #FAFAFA;
}
section.dark h1 {
  color: #FAFAFA;
}
section.dark p.subheading {
  color: #DDDDDD;
}

.serviceOverview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 4.69rem;
  margin-top: 3rem;
}
.serviceOverview .service {
  border-radius: 0.3rem;
  border: 1px solid #2C2C2C;
  padding: 1.5rem;
  width: 25vw;
}
.serviceOverview .service div:first-child {
  display: flex;
  flex-direction: column;
  background-image: url("img/service1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 12vw;
  margin-bottom: 0.5rem;
}
.serviceOverview .service div:last-child {
  overflow: auto;
  margin-top: -4rem;
  padding-top: 3rem;
  height: 12rem;
  background: linear-gradient(0deg, #FAFAFA 55.83%, #FFF 75.76%, rgba(255, 255, 255, 0) 100%);
}
.serviceOverview .service h3 {
  padding-bottom: 0.3rem;
  margin-top: auto;
  border-bottom: 2px solid #3E8EBA;
}
.serviceOverview .service p {
  font-size: 0.75rem;
}
.serviceOverview .service .subheading {
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  text-align: left;
  padding-top: 0.3rem;
}

.about > div {
  display: flex;
  justify-content: center;
  padding-block: 1rem;
}
.about h2 {
  text-align: left;
}
.about .base {
  width: 40%;
  padding-left: 5rem;
}
.about .base .profile {
  display: flex;
}
.about .base .profile div {
  margin-left: 2rem;
}
.about .base .profile div img {
  width: 10rem;
}
.about .base p {
  margin-block: 0.3rem;
}
.about .base p.subheading {
  text-align: left;
  margin-top: 1rem;
  width: 80%;
}
.about .base img {
  object-fit: cover;
  width: 15vw;
  aspect-ratio: 3/4;
}
.about .experiences {
  width: 40%;
  padding-left: 5rem;
}
.about .experiences div {
  display: flex;
  align-items: end;
  font-weight: 600;
  font-size: 1rem;
  min-height: 5vh;
}
.about .experiences div p:first-child {
  width: 33%;
  margin-left: 0.5rem;
}
.about .experiences div p:last-child {
  margin-left: 0.3rem;
  font-weight: 400;
  font-size: 0.75rem;
}
.about .experiences .experience {
  position: relative;
  display: flex;
  align-items: center;
}
.about .experiences .experience::before, .about .experiences .experience::after {
  content: "";
  background-color: #036AA4;
  position: absolute;
  right: 100%;
}
.about .experiences .experience::before {
  aspect-ratio: 1;
  height: 1rem;
  border-radius: 50%;
  transform: translate(50%, -50%);
  margin-right: 1rem;
  top: 50%;
}
.about .experiences .experience::after {
  height: 100%;
  width: 0.1rem;
  margin-right: 1rem;
  transform: translateX(50%);
}
.about .experiences .experience:last-of-type::after {
  height: 50%;
  top: 0;
}
.about .experiences .experience:first-of-type::after {
  height: 50%;
  bottom: 0;
}

.contact h3 {
  margin-top: 2rem;
}
.contact form {
  width: 100%;
  padding-block: 0.75rem;
  display: flex;
  justify-content: center;
}
.contact form input, .contact form textarea {
  background-color: #EBEBEB;
  color: #2C2C2C;
  border-radius: 0.3rem;
  padding: 0.375rem 1rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  margin: 0.5rem 1rem;
  width: 80%;
}
.contact form input.error, .contact form textarea.error {
  outline: 1px solid #ce0909;
  background-color: rgba(206, 9, 9, 0.2);
}
.contact form input:focus, .contact form textarea:focus {
  color: black;
  background-color: #DDDDDD;
}
.contact form textarea {
  width: 20vw;
}
.contact form div {
  display: flex;
  flex-direction: column;
}
.contact form div div {
  flex-direction: row;
  align-items: center;
}
.contact form div .errorField {
  width: 11vw;
  color: #ce0909;
}
.contact form div .errorField.success {
  color: #00c400;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.references {
  display: flex;
  margin-top: 2rem;
  width: 50%;
  flex-direction: row;
  justify-content: space-around;
}
.references div {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.references img {
  object-fit: cover;
  width: 5rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.references a {
  color: #FAFAFA;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #036AA4;
}
footer p {
  font-size: 1rem;
  color: #FAFAFA;
}

@media only screen and (max-width: 900px) {
  nav {
    width: 100vw;
  }
  nav div {
    width: 80%;
  }
  nav .logo {
    display: none;
  }
  .subheading {
    width: 80%;
  }
  .home {
    justify-content: center;
  }
  .home h1 {
    text-align: center;
  }
  .home div {
    align-items: center;
    width: 80%;
    margin-left: 0;
  }
  .home .heading {
    padding-inline: 0;
    text-align: center;
    border-left: none;
    border-bottom: 5px solid #036AA4;
  }
  .services .service {
    aspect-ratio: 5/4;
  }
  .services .service div:first-child {
    display: none;
  }
  .services .service div:last-child {
    margin: 0;
    padding-top: 0;
    height: 100%;
  }
  .about .profile img {
    width: 40%;
  }
  .about > div {
    flex-direction: column;
    width: 90%;
    align-items: center;
  }
  .about > div div.experiences, .about > div div.base {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  nav {
    width: 100vw;
    justify-content: space-evenly;
  }
  nav div {
    width: 80%;
  }
  .about > div {
    width: 100%;
  }
  .about .base .profile {
    flex-direction: column;
  }
  .about .base .profile img {
    width: 50%;
  }
  .about .base .profile img:last-child {
    display: none;
  }
  .about .base .profile div {
    margin-left: 0;
  }
  .serviceOverview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .serviceOverview .service {
    width: 80%;
    aspect-ratio: 9/5;
  }
}
@media only screen and (max-width: 500px) {
  nav {
    display: none;
  }
  .home {
    background: url("./img/home_phone.png");
  }
  .home div {
    width: 100%;
  }
  .about .experiences .experience p:last-child {
    display: none;
  }
  .about .experiences div p:first-child {
    width: 42%;
  }
  .contact form {
    width: 80%;
  }
  .contact form button {
    padding: 0.5rem 2rem;
  }
  .contact form input, .contact form textarea {
    width: auto;
  }
  .contact form div .errorField {
    width: 100%;
    text-align: center;
  }
  .contact div:last-child {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.map */
