* {
  margin: 0;
  padding: 0;
}

#gradient {
  background-image: linear-gradient(to right, #4752A3, #1E8F90);
  color: #fff;
}

.padding {
  padding: 1em;
}

.hidden {
  display: none
}

.opaque {
  background: rgba(255,255,255,0.5); /* I found this color of blur to work for me better*/
  -webkit-backdrop-filter: blur(3.5px); /* Add this line first, it fixes blur for Safari*/
  backdrop-filter: blur(3.5px);  /* This line activates blur*/
  z-index: 9; /*makes blur above everything, number can be higher if you have many layers*/
  /* https://www.reddit.com/r/css/comments/12jhh10/solution_backdrop_filter_blur_doesnt_work_in/ */
}

.container_row {
  display: grid;
}

.layer1, .layer2 {
  grid-column: 1;
  grid-row: 1;
}

.col-reverse {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Fonts */

@font-face {
	font-family: "icomoon";
	src: url("./font/icomoon.ttf?53mpfi") format("truetype"), url("./font/icomoon.woff?53mpfi") format("woff"), url("./font/icomoon.svg?53mpfi#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

html {
  font-family: Arial, Helvetica, sans-serif;
}

/* Structure */
header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1440px;
  column-gap: 200px;
  row-gap: 1em;
  margin: 0 auto;
  align-content: baseline;
  align-items: baseline;
}

.content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  align-content: start;
}

.footer {
  background-color: #F5F5F5;
}

/* Table */
.tableBackground {
  background-color: #fff;
}

.tableHeader {
  font-weight: 700;
  font-size: x-large;
}

.tableColumnWidth {
  width: 12em;
  padding: 1em;
  max-width: 25vw;
}

@media (max-width: 600px) {
  .tableColumnWidth {
    text-align: left;
    max-width: 20vw;
  }

  .bcbsFontsize {
    font-size: 0.5em;
  }
}

tbody {
  max-width: fit-content;
}

.secondaryRow {
  background-color: #F5F5F5;
  font-weight: 700;
}

tr {
  text-align: center;
}

th:not(:last-of-type), td:not(:last-of-type) {
  border: 1px solid #525257;
  border-width: 0 1px 0 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.tableButton {
  background-color: #1C355E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 0.75rem;
  display: inline-flex;
  max-width: 100%;
}

@media (max-width: 800px) {
  .tableButton {
    padding: 5px 7px;
    margin: 2px 1px;
    height: 2rem;
    align-items: center;
    justify-content: center;
    width: 75%;
  }
}

/* Shared */
.colorBlue {
  color: #1C355E
}

.colorGray {
  color: #525257;
}

td {
  color: #525257
}

img {
  max-width: 100%;
}

.paddingVertical {
  padding-top: 1em;
  padding-bottom: 1em;
}

.marginTop {
  margin-top: 0.5em;
}

.marginTop2x {
  margin-top: 2em;
}

.margin {
  margin-top: 16px;
}

.semi-bold {
  font-weight: 600;
}

.largerText {
  font-size: 1.25rem;
}

.hstack {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: start;
  gap: 1rem;
}

.alignItemsBaseline {
  align-items: baseline;
  width: 100%;
}

.justifyCenter {
  display: flex;
  justify-content: center;
}

.justifyStart {
  margin-right: auto;
}

.justifyEnd {
  margin-left: auto;
}

@media (max-width: 800px) {
  .justifyStart {
    margin-right: 0;
  }
  
  .justifyEnd {
    margin-left: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 1490px) {
  header {
    column-gap: 875px;
    justify-content: center;
  }
}

.vstack {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: start;
}

.verticallyCentered {
  justify-content: center;
}

.viewThatFits {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid05-1 {
  grid-template-columns: 0.5fr 1fr;
}

.footer .viewThatFits {
  margin: auto;
  column-gap: 8rem;
}

@media (max-width: 800px) {
  .viewThatFits {
    grid-template-columns: 1fr;
  }

  .verticallyCentered {
    align-items: center;
    justify-self: center;
  }

  header {
    max-width: 800px;
  }
}

.external-link {
  font-weight: 700;
  text-decoration: none;
}

.external-link:hover {
	text-decoration: none;
	color: #1E8F90;
}

.external-link::after {
	content: "";
	display: inline-block;
	font-family: "icomoon";
	padding-left: 10px;
	font-size: 16px;
}

@media (max-width: 800px) {
  .external-link::after {
    content: "";
    display: none;
    font-family: "icomoon";
    padding-left: 10px;
    font-size: 16px;
  }
}

/* Specific */
.cta-hero {
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
}

.legal {
  font-size: 0.75rem;
}

.phoneIcon {
  height: 64px;
}

.lockIcon {
  height: 64px;
}

.linkIcon {
  padding: 16px;
  height: 1rem;
}

.darkLink {
  align-content: baseline;
  height: 1rem;
  color: #1C355E
}

.whiteLink {
  align-content: baseline;
  height: 1rem;
  color: #fff
}

.videoThumbnail {
  max-width: 75vw;
}

.lineHeight {
  line-height: 2;
}

.maxColSize {
  max-width: 40em;
}

.logo {
  max-width: 100%;
}

.text-regular {
  font-weight: 400;
}

.text-small {
  font-size: small;
}

@media (max-width: 800px) {
  .maxColSize {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 600px) {
  #gradient {
    height: 80%; 
  }
  .cta-hero {
    font-size: 1.5rem;
  }

  .noMobilePadding {
    padding: 0;
  }

  .col-reverse {
    flex-direction: column-reverse;
  }
}