/* ************************ */
/* HEADER */
/* ************************ */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #183E65;
  /* Because we want header to be sticky later */
  height: 12.8rem;
  padding: 0 2.4rem;
  position: relative;
}

.header div{
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 3.2rem;	
}

.logo {
  height: 9.6rem;
}

/* STICKY NAVIGATION */

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 12.8rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.3);
}

.sticky .section-about {
  margin-top: 12.8rem;
}

/* ************************ */
/* ABOUT SECTION */
/* ************************ */

.section-about {
  padding: 9.6rem 0;
}

.section-about .heading-secondary{
  color: #183E65;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-icon {
  color: #183E65;
  height: 4.8rem;
  width: 4.8rem;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
}
.about-title {
  font-size: 2.4rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

/* ************************ */
/* FORM SECTION */
/* ************************ */

.section-form {
  padding: 0;
}

#form .container {
  max-width: none;
  padding: 9.6rem 3.2rem;
  background-color: #4d6b8a;
}

.form-list {
}

.form-list .heading-tertiary {
  color: #fff;
}

.form-text p {
  color: #272523;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1.6rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group--full {
  flex: 1 1 100%;
}

.form-group label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 1.6rem;
  color: #333;
  padding: 1.2rem 1.6rem;
  border: none;
  border-radius: 2px;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 12rem;
}

.form-group input.form-input--invalid,
.form-group select.form-input--invalid {
  border: 1px solid #e31e25;
  background-color: #fce9e9;
}

.form-error {
  display: block;
  min-height: 1.6rem;
  color: #f4a5a8;
  font-size: 1.3rem;
  font-weight: 600;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.form-consent input {
  margin-top: 0.4rem;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #e31e25;
}

.form-consent label {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
}

.form-success {
  color: #fff;
  font-weight: 600;
}

.form-error-general {
  color: #f4a5a8;
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-btn {
  align-self: flex-start;
  margin-top: 0.8rem;
  padding: 1.6rem 3.2rem;
  color: #e31e25;
  background-color: #fff;
  border: 1px solid #e31e25;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.form-btn:hover,
.form-btn:active {
  color: #fff;
  background-color: #e31e25;
  border: 1px solid currentColor;
}

.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-text-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.form-text-box p {
  color: #ddd;
  line-height: 1.3;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
}
.form-text-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  gap: 1rem;
  justify-content: center;
  align-content: start;
  font-size: 1.8rem;
  color: #086297;
}

.form-text-list li {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 1.2rem 1.6rem;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(85, 85, 85, 0.2);
  font-weight: 600;
}

.contact-link:link,
.contact-link:visited {
  text-decoration: none;
  font-size: 2.4rem;
  color: #fff;
  transition: all 0.3s;
}

.contact-link:hover,
.contact-link:active {
  color: #086297;
}
