:root {
  --Vinter-blue: #2862ff;
  --Lighter-dark-blue: #13316b;
  --Vinter-Dark-blue: #12244d;
  --Vinter-Blue-1: #ededf9;
  --white: #fff;

  --font-inter: "Inter", sans-serif;
  --font-dm-sans: "DM Sans", sans-serif;
  --font-plus-jakarta: "Plus Jakarta Sans", sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-inter);
  line-height: 1.3;
  color: var(--Lighter-dark-blue);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
button,
input {
  font: inherit;
}

h1 {
  font-family: var(--font-dm-sans);
  font-size: 34px;
  font-weight: 600;
  line-height: 120%;
  color: var(--Lighter-dark-blue);
  text-align: center;
}

h2 {
  font-family: var(--font-dm-sans);
  color: var(--Lighter-dark-blue);
  font-size: 34px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-align: center;
}
h3 {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
.container {
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
footer {
  position: relative;
  z-index: 1;
}
.nowrap {
  white-space: nowrap;
}
.highlight {
  color: var(--Vinter-blue);
}
@media (min-width: 1024px) {
  h1 {
    font-family: var(--font-plus-jakarta);
    font-size: 55px;
    font-weight: 500;
    line-height: 1.31;
  }
  h2 {
    font-family: var(--font-plus-jakarta);
    font-size: 50px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -1px;
  }
  h3 {
    font-size: 21px;
  }
}

/* Promo Banner */
.promo-banner {
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;

  background-color: var(--Vinter-blue);
  color: var(--Vinter-Blue-1);
  text-align: center;
}
.promo-banner .container {
  padding: 10px 25px;
}

.promo-banner a {
  color: inherit;
  text-decoration: underline;
}

.closebtn {
  float: left;
  cursor: pointer;
  transition: 0.3s;
  padding: 6px;
  margin-right: 12px;
}
.closebtn:hover {
  color: black;
}
.promo-banner::after {
  content: "";
  display: block;
  clear: both;
}
@media (min-width: 1024px) {
  .promo-banner {
    font-family: var(--font-dm-sans);
    font-size: 21px;
  }
  .promo-banner .container {
    padding: 10px 40px;
    max-width: 1244px;
  }
  .closebtn {
    padding: 0;
  }
}
.cta {
  color: var(--white);
  background-color: var(--Vinter-blue);
  text-align: center;
  font-family: var(--font-dm-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  display: inline-block;
  padding: 16px 56px;
  margin-top: 10px;
  border-radius: 4px;
  border: 0;
}
@media (min-width: 1024px) {
  .cta {
    margin-top: 16px;
  }
}

/* ========== Footer =========== */
.footer {
  background-color: var(--Vinter-Dark-blue);
  color: white;
  padding: 58px 0;
}
.footer-content {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 26px;
}
.footer-social img {
  width: 28px;
  height: auto;
  vertical-align: middle;
}
