body {
  background-color: #E2EAF3;
  margin: 0px;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: 500;
  /*letter-spacing: -0.6px;*/
}

h2 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  /*letter-spacing: -0.6px;*/
  color: #171E27; /*Primary color*/
  padding-top: 25px;
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 500;
  /*letter-spacing: -0.6px;*/
  color: #171E27; /*Primary color*/
}

p, li {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  /*letter-spacing: -0.6px;*/
  margin: 0px;
  color: #3D3D3D;  /*Secondary color*/
}

@media (max-width: 900px) {
  h1 {
    font-size: 30px;
  }
}

img {
  max-width: 100%;
  object-fit: contain;
}

body > div.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

div#content {
  width: 100%;
  max-width: 1300px;
  padding-top: 30px;
  padding-bottom: 60px;
}

@media (max-width: 900px) {
  div#content {
    max-width: 100%
  }
}

header div.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100px;
  background-color: #ffffff;
}

header div.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

header div.pages-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header div.pages-row a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}

header div.pages-row img {
  height: 35px;
  margin-right: 15px;
}

header img.logo {
  padding: 20px;
  margin-left: 8%;
  max-width: 40%;
}

@media (max-width: 450px) {
  header img.logo {
    margin-left: 0;
  }
}

section {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 900px) {
  section {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
  }
}

section#contact-us {
  display: flex;
  flex-direction: column;
}

section#contact-us form {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding-top: 50px;
  gap: 15px;

  width: 100%;
}

.contact-form-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

input {
  border: 0px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
}

input#name, input#company {
  flex: 1 1 auto;
  min-width: 0px;
}

input#name {
  margin-right: 15px;
}

input#email {
  flex: 1 1 auto;
}

textarea#message {
  flex: 1 1 auto;
  border-radius: 8px;
  border: 0px;
  padding: 20px;
}

input#submit {
  width: 50%;
  background-color: #3F88C5;
  color: white;
}

input#submit:hover {
  cursor: pointer;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 900px) {
  #popup-message {
    font-size: 22px;
  }
}

.popup button {
    margin-top: 10px;
    padding: 12px 20px;
    border: none;
    background-color: #3F88C5;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.popup.hidden {
    display: none;
}
