@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");

html {
  font-family: "Raleway", sans-serif;
}
nav {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 25px;
  padding-inline: 50px;
  align-items: center;
  height: 100px;
  font-weight: 600;
}

.nav-logo {
  grid-column-start: 1;
  transition: all 0.1s ease-out;
}

.nav-logo:hover {
  height: 51px;
}

.nav-link {
  text-decoration: none;
  text-align: center;
  font-size: 28px;
  color: black;
}
.nav-link:hover {
  color: #002ed673;
}
#navAbout {
  grid-column-start: 10;
}
#navContact {
  grid-column-start: 12;
}


#hamburgerButton {
  color: black;
  display: none;
}

.back-drop {
  width: 45%;
  margin-top: 25px;
  text-align: center;
}


.nav-active {
  color: #002ed673;
}

body {
  text-align: center;
}

.chip {
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
  background-color: white;
  color: black;
  border: 2px solid black;
  border-radius: 25px;
  font-family: "Raleway", sans-serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 10%;
  margin-inline: auto;
  margin-block: 20px;
  font-weight: 600;
  padding: 5px;
  font-size: 16px;
  transition: all 0.1s ease-out;
}

.chip:hover {
  width: 11%;
}

.sub-heading {
  margin-block: 20px;
  font-size: 40px;
  margin-inline: 1%;
  font-weight: 600;
}

.companies {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.scroll-button {
  border: none;
  background-color: white;
}

.scroll-icon {
  height: 75px;
  transition: all 0.1s ease-out;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.25));
}
.scroll-icon:hover {
  height: 80px;
}

.card {
  border-top: solid 3px black;
  text-align: center;
  margin-block: 30px;
  margin-inline: 50px;
}

.card-header {
  font-size: 32px;
  font-weight: 600;
}
.card-content {
  font-size: 24px;
  font-weight: 400;
}

.text-input {
  height: 50px;
  width: 50%;
  border: solid 3px black;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  padding-inline: 10px;
  margin-bottom: 30px;
}
.text-input:focus {
  outline: none !important;
  border-color: #002ed673;
}

.text-input-multiline {
  width: 50%;
  border: solid 3px black;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  padding-inline: 10px;
  padding-block: 10px;
  margin-bottom: 30px;
}

.text-input-multiline:focus {
  outline: none !important;
  border-color: #002ed673;
}

.btn {
  font-family: "Raleway", sans-serif;
  height: 50px;
  width: 15%;
  font-size: 20px;
  text-align: center;
  background-color: white;
  border: solid 3px black;
  border-radius: 5px;
}

.btn:hover {
  background-color: #002ed673;
  color: white;
}

footer {
  display: flex;
  justify-content: space-evenly;
  border-top: solid 3px black;
  padding-block: 30px;
  margin-inline: 50px;
}

.footer-link {
  color: black;
  text-decoration: none;
}

.footer-icon {
  height: 75px;
  transition: all 0.1s ease-out;
}
.footer-icon:hover {
  height: 78px;
}
