:root {
  --blue: #33A7FF;
  --background: #F5F5F7;
  --card-background: #fff;
  --btn-background: #0057b8;
  --btn-color: #fff;
  --btn-highlight: #007ae2;
  --black: #1b1b1d;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

img {
  display: block;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--background);
}

header {
  background-color: var(--blue);
  height: 6.4rem;
  display: flex;
  align-items: center;
}
header #header-logo {
  margin-left: 2.4rem;
}

#hero {
  position: relative;
  overflow: hidden;
  height: 33.6rem;
}
#hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero #hero-title {
  position: absolute;
  left: 12rem;
  bottom: 4rem;
}
#hero #hero-title h1 {
  color: #fff;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 5.6rem;
  margin: 0;
}

main {
  padding-top: 6.4rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
main.centered {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

#login-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.option-col {
  flex: 0 0 auto;
  padding: 1.2rem;
}

.option-card {
  min-width: 45rem;
  height: 38.4rem;
  padding: 3.2rem;
  background-color: var(--card-background);
  border-radius: 2.4rem;
  box-shadow: 0px 45px 13px 0px rgba(27, 27, 29, 0), 0px 29px 11px 0px rgba(27, 27, 29, 0.01), 0px 16px 10px 0px rgba(27, 27, 29, 0.05), 0px 7px 7px 0px rgba(27, 27, 29, 0.09), 0px 2px 4px 0px rgba(27, 27, 29, 0.1);
  display: flex;
  flex-direction: column;
}

.option-header {
  display: flex;
  align-items: center;
}

.option-header i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 2.4rem;
}

.option-title {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--black);
  margin-left: 0.8rem;
}

.option-description {
  color: var(--black);
  font-size: 2.4rem;
  font-style: normal;
  line-height: 3.2rem;
  margin-top: 2.4rem;
}

.option-cta {
  margin-top: 4.8rem;
}

.option-btn {
  display: inline-flex;
  padding: 1.6rem 2.4rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 4.8rem;
  background-color: var(--btn-background);
  color: var(--btn-color);
  font-size: 1.6rem;
  font-style: normal;
  line-height: 2.4rem;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.option-btn:hover {
  background-color: var(--btn-highlight);
}

.option-logo {
  margin-top: auto;
}
.option-logo img {
  width: 124px;
}

.content {
  text-align: center;
}
.content p,
.content strong {
  font-size: 1.6rem;
  line-height: 1.2;
}
.content__link {
  font-size: 1.8rem;
  margin: 2.4rem 0;
  display: inline-block;
}

.contacts {
  width: 100%;
  text-align: left;
}
.contacts p,
.contacts strong {
  font-size: 1.6rem;
  line-height: 1.2;
}
.contacts p.title,
.contacts strong.title {
  font-size: 1.8rem;
}
.contacts__title {
  margin-bottom: 1.6rem;
  display: inline-block;
}
.contacts__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid lightgrey;
}

footer {
  margin-top: auto;
  font-size: 16px;
}
footer .footer-wrapper {
  margin: 0;
  padding: 0 40px 0 40px;
  display: block;
}
footer .footer-wrapper .legal-links {
  display: flex;
  justify-content: center;
  margin: 5px 0;
}
footer .footer-wrapper .legal-links .copyright-year {
  margin: 10px 10px 0;
}
footer .footer-wrapper .legal-links ul {
  display: flex;
  list-style: none;
}
footer .footer-wrapper .legal-links ul li {
  position: relative;
  margin: 10px 10px 0;
}
footer .footer-wrapper .legal-links ul li:first-of-type {
  margin-left: 20px;
}
footer .footer-wrapper .legal-links ul li::before {
  border-left: 1px solid #d0d0d5;
  content: "";
  height: 16px;
  left: -10px;
  position: absolute;
  top: 0px;
}
footer .footer-wrapper .legal-links ul li a {
  text-decoration: none;
  color: var(--black);
}
footer .footer-wrapper .legal-links ul li a:hover {
  color: var(--btn-highlight);
}
footer .footer-wrapper .legal-links .ccpa-icon {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
footer .footer-wrapper .legal-links .ccpa-icon img {
  display: inline-block;
  height: 16px;
}

/*# sourceMappingURL=style-levelblue.css.map */
