body {
  margin: auto;
  font-family: "Roboto Condensed", monospace;
}

.contacts {
  background-color: rgb(38, 38, 38);
  display: flex;
  align-items: center;
  color: white;
  justify-content: space-between;
  padding: 0 20px 0 20px;
}

.address-container {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}

.contact-address {
  display: flex;
  align-items: center;
}

.contact-address-text {
  text-align: center;
}

.contacts-socials {
  flex: 1;
  display: flex;
  width: 100%;
  gap: 10px;
  justify-content: flex-end;
}

.contacts-socials-icons:hover {
  opacity: 50%;
  cursor: pointer;
}

.download-btn {
  width: 100px;
  height: 30px;
  border: 2px solid;
  border-radius: 5%;
  color: #7eb9d1;
  background-color: white;
  border-color: #7eb9d1;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-container {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 10px;
}

.nav-links {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  flex: 1;
  transition: color 50ms ease-in;
}

.nav-links:hover {
  color: #7eb9d1;
}

.background {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0px;
  opacity: 100%;
}

.hero {
  height: 400px;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 100px 180px 100px 180px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.142);
}

.section-text {
  text-align: center;
  color: white;
  max-width: 500px;
}

.hero-title {
  margin-bottom: 0;
  font-family: "Roboto Condensed", monospace;
  font-weight: 400;
  width: 1000px;
  font-size: 50px;
  color: rgb(233, 233, 233);
  text-align: center;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-around;
  align-items: center;
}

.btn1 {
  border-radius: 30px;
  background-color: #2ec1fe;
  color: white;
  font-size: 15px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-width: 0px;
  font-weight: 500;
}

.btn2 {
  background-color: #808991;
  font-weight: 500;
  border-radius: 30px;
  font-size: 15px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border-width: 0px;
}

.cards-section{
  color: grey;
  margin: 180px 0px 180px 0px;
}

.cards{
  display: flex;
  gap: 30px;
  justify-content: space-around;
  align-items: center;
}

.card{
  text-align: center;
  width: 250px;
}

.icon{
  font-size: 80px;
}

.cardstitle{
  text-align: center;
  padding: 20px;;
}


.final-section{
  background-color: #f4f4f4;
  color: rgb(98, 97, 97);
  text-align: center;
}

.final-section h1{
  font-weight: 400;
  font-size: 50px;
  padding-top: 50px;
}