:root {
  --blue: #00388f;
  --dark-blue: #00338d;
  --yellow: #ffd900;
  --light-gray: #f3f4f6;
  --text-blue: #17428f;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-blue);
  background: #fff;
}
.grid-container {
    max-width: 118.75rem;
}

.spacer{
    height: 1rem;
}
/* HERO */

.hero-section {
  padding: 25px 0 10px;
  text-align: center;
}

.hero-section h1 {
  color: var(--blue);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 10px;
}

.claim {
  display: inline-block;
  background: var(--blue);
  color: var(--yellow);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  padding: 2px 18px 5px;
  margin-bottom: 25px;
}

.main-logo {
  display: block;
  margin: 0 auto;
}

/* MARKEN */

.brand-section {
  padding: 20px 0 28px;
}

.brand-box {
  padding: 0 25px;
  position: relative;
}

.brand-box:not(:last-child) {
  border-right: 2px solid var(--blue);
}

.brand-box img {
  display: block;
  /*height: 55px;
  max-width: 170px;*/
  object-fit: contain;
  margin: 0 auto 18px;
}

.brand-box .button {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  padding: 8px 18px;
  border-radius: 2px;
  margin: 0;
}

.brand-box .button:hover {
  background: #002b70;
}

/* SERVICES */

.service-section {
  background: var(--light-gray);
  padding: 22px 0;
}

.service-intro {
  font-size: 13px;
  font-weight: 700;
  color: #7c8db7;
  margin-bottom: 4px;
}

.service-section h2 {
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-blue);
  margin: 0;
}

.service-item {
  font-size: 12px;
}

.service-item img {
  margin-bottom: 6px;
}

.service-item h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-blue);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 11px;
  line-height: 1.25;
  margin: 0;
  color: var(--text-blue);
}

/* CONTACT */

.contact-section {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 35px 0 38px;
  background: radial-gradient(circle,rgba(1, 27, 80, 1) 0%, rgba(1, 43, 130, 1) 50%);
}

.contact-info {
  padding-left: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.35;
}

.contact-item a {
  color: #fff;
}

.contact-icon {
  color: var(--yellow);
  font-size: 26px;
  line-height: 1;
  width: 30px;
  display: inline-block;
}

.contact-form h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 22px;
}

.contact-form h2 span {
  color: var(--yellow);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border-radius: 4px;
  border: none;
  font-size: 12px;
  height: 34px;
  margin-bottom: 8px;
}

.contact-form textarea {
  min-height: 95px;
  resize: vertical;
}

.submit-button {
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  border-radius: 4px;
  margin-top: 0;
  height: 34px;
  padding: 0;
}

.submit-button:hover {
  background: #f0c900;
  color: var(--blue);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 12px;
  cursor: pointer;
}

.privacy-check input {
  margin-top: 3px;
  flex-shrink: 0;
}

.privacy-check a {
  color: #ffd900;
  text-decoration: underline;
}

.submit-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
/* FOOTER */

.footer-section {
  background: #fff;
  padding: 14px 0;
  font-size: 11px;
}

.footer-section a {
  color: #333;
  margin-left: 20px;
}

/* RESPONSIVE */

@media screen and (max-width: 63.9375em) {
  .brand-box:not(:last-child) {
    border-right: none;
  }

  .brand-box {
    margin-bottom: 28px;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .claim {
    font-size: 24px;
  }

  .contact-form h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 39.9375em) {
  .hero-section {
    padding-top: 20px;
  }

  .hero-section h1 {
    font-size: 24px;
  }

  .claim {
    font-size: 20px;
    padding: 4px 12px;
  }

  .service-section h2 {
    margin-bottom: 20px;
  }

  .service-item {
    margin-bottom: 18px;
  }

  .contact-info {
    padding-left: 0;
    margin-bottom: 25px;
  }

  .contact-form h2 {
    font-size: 24px;
    text-align: center;
  }
}

/* Mail */
.sendmail-modal {
  max-width: 470px;
  border: none;
  border-radius: 0;
  padding: 0;
  background: #ffffff;
}

.sendmail-modal-inner {
  text-align: center;
  padding: 24px 26px 30px;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: #22c55e;
  border-radius: 50%;
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 52px;
  margin: 0 auto 22px;
}

.success-icon span {
  position: relative;
  top: -2px;
}

.sendmail-modal h3 {
  color: #285aa5;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 10px;
}

.sendmail-modal p {
  color: #5f6878;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  margin: 0 0 18px;
}

.modal-close-button {
  background: #285aa5;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  border-radius: 5px;
  padding: 10px 24px 11px;
  margin: 0;
}

.modal-close-button:hover,
.modal-close-button:focus {
  background: #1f4a8b;
  color: #ffffff;
}

.sendmail-modal .close-button {
  display: none;
}