/* Theme Defaults */
/* Brand Specific Colors */
/* Theme Default Colors */
/* Responsive Breakpoints */
/* Spacing Values */
/* Width Values */
.btn, body.blog .paginate-container a.prev, body.blog .paginate-container a.next, input[type=submit],
button {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  transition: 0.25s all ease-in-out;
}
.btn:hover, body.blog .paginate-container a.prev:hover, body.blog .paginate-container a.next:hover, input[type=submit]:hover,
button:hover, .btn:focus, body.blog .paginate-container a.prev:focus, body.blog .paginate-container a.next:focus, input[type=submit]:focus,
button:focus {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
  cursor: pointer;
}
.btn.btn-yellow, body.blog .paginate-container a.btn-yellow.prev, body.blog .paginate-container a.btn-yellow.next, input[type=submit],
button {
  border-color: transparent;
  color: #414141;
  background-color: #FDB512;
  border: 2px solid transparent;
  border-radius: 20px;
}
.btn.btn-yellow:hover, body.blog .paginate-container a.btn-yellow.prev:hover, body.blog .paginate-container a.btn-yellow.next:hover, input[type=submit]:hover,
button:hover, .btn.btn-yellow:focus, body.blog .paginate-container a.btn-yellow.prev:focus, body.blog .paginate-container a.btn-yellow.next:focus, input[type=submit]:focus,
button:focus {
  color: #FDB512;
  background-color: #414141;
  border-color: transparent;
}
.btn.btn-blue, input.btn-blue[type=submit],
button.btn-blue, body.blog .paginate-container a.prev, body.blog .paginate-container a.next {
  border-color: transparent;
  color: #ffffff;
  background-color: #16162a;
  border: 2px solid transparent;
  border-radius: 20px;
}
.btn.btn-blue:hover, input.btn-blue[type=submit]:hover,
button.btn-blue:hover, body.blog .paginate-container a.prev:hover, body.blog .paginate-container a.next:hover, .btn.btn-blue:focus, input.btn-blue[type=submit]:focus,
button.btn-blue:focus, body.blog .paginate-container a.prev:focus, body.blog .paginate-container a.next:focus {
  color: #414141;
  background-color: #FDB512;
  border-color: transparent;
}
@media (max-width: 1199px) {
  .btn, body.blog .paginate-container a.prev, body.blog .paginate-container a.next, input[type=submit],
button {
    padding: 0.33rem 0.75rem;
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .btn, body.blog .paginate-container a.prev, body.blog .paginate-container a.next, input[type=submit],
button {
    font-size: 0.85rem;
  }
}

.iframe-container,
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}
.iframe-container iframe, .iframe-container video, .iframe-container embed,
.video-container iframe,
.video-container video,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
}

.container {
  --max-width: 100vw;
  box-sizing: border-box;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  max-width: var(--max-width);
}
@media (min-width: 576px) {
  .container {
    --max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    --max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    --max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    --max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    --max-width: 1320px;
  }
}

.entry-content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
  max-width: 875px;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content li,
.entry-content blockquote,
.entry-content iframe,
.entry-content img {
  width: 100%;
}
.entry-content h1 {
  font-size: clamp(32px, calc(15.2578444748px + 2.1828103683vw ), 48px);
}
.entry-content h2 {
  font-size: clamp(28px, calc(11.2578444748px + 2.1828103683vw ), 44px);
}
.entry-content h3 {
  font-size: clamp(26px, calc(9.2131147541px + 2.1857923497vw ), 42px);
}
.entry-content h4 {
  font-size: clamp(24px, calc(7.2578444748px + 2.1828103683vw ), 40px);
}
.entry-content h5 {
  font-size: clamp(22px, calc(5.2578444748px + 2.1828103683vw ), 38px);
}
.entry-content h6 {
  font-size: clamp(20px, calc(3.2578444748px + 2.1828103683vw ), 36px);
}
.entry-content p {
  font-size: 1rem;
  line-height: 1.5;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  display: block;
  background-color: #ffffff;
  font-size: 16px;
  font-family: "Helvetica Neue", sans-serif;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  max-width: 100vw;
  box-sizing: border-box;
  transition: all 0.25s linear;
}

section {
  display: block;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
}

h1 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(45px, calc(18.4295612009px + 3.4642032333vw ), 60px);
  margin-top: 0;
  margin-bottom: 2rem;
}

h2 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  font-size: clamp(35px, calc(-39.8697916667px + 13.0208333333vw ), 60px);
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 35px;
  }
}

h3 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  margin-top: 0;
  font-size: clamp(28px, calc(-31.8958333333px + 10.4166666667vw ), 48px);
}

h4 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.5rem;
  margin-top: 0;
}

h5 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.75rem;
  margin-top: 0;
}

h6 {
  display: block;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1.25rem;
  margin-top: 0;
}

ul,
ol {
  padding-left: 1rem;
}
ul li,
ol li {
  font-size: 1rem;
  color: #212121;
  max-width: 100%;
  width: max-content;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

p {
  display: block;
  width: 100%;
  color: #212121;
  line-height: 1.5;
  margin-top: 0;
}
p:not(:last-child) {
  margin-bottom: 1.75rem;
}

span {
  font-family: "Helvetica Neue", sans-serif;
}

input, button {
  box-sizing: border-box;
}

input:not([type=submit]) {
  border: 2px solid #ccc;
  font-size: 1rem;
  padding: 12px 16px;
}

#site-content {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  z-index: 1;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3333rem;
}
.cta-container .cta-title {
  color: #414141;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .cta-container .cta-title {
    display: none;
  }
}
.cta-container a.btn {
  font-size: clamp(15px, calc(11.3422818792px + 0.6711409396vw ), 18px);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 0 0 #FDB512;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 181, 18, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(253, 181, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 181, 18, 0);
  }
}
header {
  display: block;
  width: 100%;
  padding: 0 0.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
header nav {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /* Simple navigation with collapsing menu on small screen sizes */
}
header nav ul {
  display: block;
  width: 100%;
  list-style: none;
  padding-left: 0 !important;
}
header nav li.menu-item {
  position: relative;
}
header nav li.menu-item > a {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  position: relative;
  color: #000000;
  text-decoration: none;
}
header nav a.site-logo {
  display: inline-block;
  padding: 0 1.5rem 0 0;
  margin: 0;
  width: auto;
  order: -1;
}
header nav a.site-logo img {
  display: block;
  width: auto;
  margin: 0 auto;
  padding: 0;
}
header nav #simple-navigation li.menu-item-has-children > a + .sub-menu-container {
  position: absolute;
  top: 100%;
  display: none;
}
header nav #simple-navigation li.menu-item-has-children > a .sub-menu-container:hover + .sub-menu-container, header nav #simple-navigation li.menu-item-has-children > a:hover + .sub-menu-container {
  display: block;
}
@media (max-width: 991px) {
  header nav .cta-container {
    order: 1;
  }
}

header.site-header {
  background-color: #fff;
  padding: 0.75rem 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: all 0.3s linear;
}
@media (max-width: 475px) {
  header.site-header {
    padding: 0.25rem 0;
  }
}
@media (max-width: 767px) {
  header.site-header {
    position: fixed;
    background-color: #ffffff;
  }
}
header.site-header > .container {
  padding-bottom: 0.75rem;
}
header.site-header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  header.site-header .container {
    justify-content: center;
  }
}
header.site-header h1, header.site-header a {
  font-size: 29px;
  margin-top: 0;
  margin-bottom: 0;
  color: #414141;
}
@media (max-width: 991px) {
  header.site-header h1, header.site-header a {
    flex: 1 0 60%;
    max-width: 60%;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  header.site-header h1, header.site-header a {
    flex: 1 0 45%;
    max-width: 45%;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 475px) {
  header.site-header h1, header.site-header a {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
header.site-header h1 a, header.site-header a a {
  padding-left: 16px;
  margin-left: 8px;
  border-left: 2px solid #414141;
  color: #414141;
  text-decoration: none;
}
header.site-header h1 a:hover, header.site-header h1 a:focus, header.site-header a a:hover, header.site-header a a:focus {
  color: #FDB512;
}
header.site-header h1 img, header.site-header a img {
  display: block;
  max-width: clamp(150px, calc(-105.6666666667px + 33.3333333333vw ), 225px);
  width: 100%;
  height: auto;
}
header.site-header .main-menu-nav {
  background-color: #16162a;
}
header.site-header .main-menu-nav .menu-main-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
header.site-header .main-menu-nav .menu-main-menu-container ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, calc(-6.0623501199px + 3.8369304556vw ), 32px);
  list-style: none;
}
header.site-header .main-menu-nav .menu-main-menu-container ul li {
  padding-right: clamp(16px, calc(-6.0623501199px + 3.8369304556vw ), 32px);
  margin-bottom: 0;
}
header.site-header .main-menu-nav .menu-main-menu-container ul li:not(:last-child) {
  border-right: 2px solid #fff;
}
header.site-header .main-menu-nav .menu-main-menu-container ul li:last-child {
  padding-right: 0;
}
header.site-header .main-menu-nav .menu-main-menu-container ul li a {
  text-decoration: none;
  font-size: clamp(18px, calc(13.1230425056px + 0.8948545861vw ), 22px);
  color: #fff;
}

section.page-header {
  background-color: #F5F5F5;
  padding: 60px 0;
}
section.page-header h1 {
  color: #306879;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}
section.page-header h2 {
  font-size: clamp(24px, calc(13.3718244804px + 1.3856812933vw ), 30px);
  text-transform: none;
  text-align: center;
  margin: 0 auto;
  color: #306879;
  font-weight: 600;
}

footer.site-footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 1.5rem;
  padding-top: 2.75rem;
  padding-bottom: clamp(60px, calc(-3.7690531178px + 8.3140877598vw ), 96px);
}
footer.site-footer .container .footer-disclaimer {
  grid-column: 1/-1;
}
footer.site-footer .container .footer-disclaimer p {
  color: #414141;
  line-height: 1.5;
  font-size: 1rem;
}
footer.site-footer .container .footer-disclaimer a {
  color: #414141;
  font-weight: 600;
}
footer.site-footer .container .footer-nav {
  grid-column: 1/-1;
}
footer.site-footer .container .footer-nav ul {
  padding-left: 0;
  columns: 3;
  column-gap: 1rem;
  row-gap: 1rem;
  list-style: none;
  text-align: center;
}
@media (max-width: 991px) {
  footer.site-footer .container .footer-nav ul {
    columns: 2;
  }
}
@media (max-width: 575px) {
  footer.site-footer .container .footer-nav ul {
    columns: 1;
  }
}
footer.site-footer .container .footer-nav ul li {
  display: block;
  padding: 1rem 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
footer.site-footer .container .footer-nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #414141;
}
footer.site-footer .container .footer-nav ul li a:hover, footer.site-footer .container .footer-nav ul li a:focus {
  color: #FDB512;
}
footer.site-footer .container .copyright {
  grid-column: span 2;
  text-align: left;
}
@media (max-width: 991px) {
  footer.site-footer .container .copyright {
    grid-column: 1/-1;
    text-align: center;
  }
}
footer.site-footer .container .copyright p {
  font-size: 1.05rem;
}
footer.site-footer .container .green-sparrow {
  grid-column: span 2;
  text-align: right;
}
@media (max-width: 991px) {
  footer.site-footer .container .green-sparrow {
    grid-column: 1/-1;
    text-align: center;
  }
}
footer.site-footer .container .green-sparrow p {
  font-size: 1.05rem;
}
footer.site-footer .container .green-sparrow p a {
  color: #414141;
  font-weight: 600;
}
footer.site-footer .container .green-sparrow p a:hover, footer.site-footer .container .green-sparrow p a:focus {
  color: #FDB512;
}
footer.site-footer .container > a,
footer.site-footer .container > h1 {
  width: 100%;
  grid-column: 1/-1;
  border-bottom: 1px solid #dbdbdb;
}
footer.site-footer .container > a img,
footer.site-footer .container > h1 img {
  max-width: 350px;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  footer.site-footer .container > a img,
footer.site-footer .container > h1 img {
    margin: 0 auto;
  }
}

.fixed-footer {
  padding: 0.75rem 0;
  position: fixed;
  bottom: 0;
  background-color: #eee;
  z-index: 2;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.fixed-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fixed-footer .container h3 {
  font-size: clamp(18px, calc(5.6004618938px + 1.6166281755vw ), 25px);
  width: max-content;
  margin-bottom: 0;
}
.fixed-footer .container a {
  min-width: 130px;
}

.module {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .module {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.fw-hero-image {
  height: 70vh;
  padding: 0;
}
.fw-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.fw-hero-video {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  max-height: 85vh;
}
.fw-hero-video video {
  height: auto;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.fw-hero-text-overlay {
  height: 70vh;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.fw-hero-text-overlay:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  z-index: 0;
}
.fw-hero-text-overlay .container-fluid {
  position: relative;
  z-index: 10;
}
.fw-hero-text-overlay img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}
.fw-hero-text-overlay h1 {
  text-align: center;
  color: #ffffff;
}
.fw-hero-text-overlay .content-container {
  color: #ffffff;
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.fw-parallax {
  box-shadow: inset 0 0 10px #000000;
}

.fixed-wysiwyg-content .container > h3 {
  text-align: center;
  padding-bottom: 1rem;
}
.fixed-wysiwyg-content .content-container {
  display: block;
  width: 100%;
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.fixed-wysiwyg-content .content-container > * {
  font-size: 18px;
  line-height: 1.7;
}
.fixed-wysiwyg-content .content-container img {
  max-width: 100%;
  height: auto;
}

.cards h3 {
  font-size: 24px;
  color: #263641;
  text-align: left;
  max-width: 875px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .cards h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .cards h3 {
    font-size: 1.75rem;
  }
}
.cards h4 {
  font-size: 18px;
  color: #263641;
  text-align: left;
  max-width: 875px;
  font-weight: 200;
}
.cards .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .cards .cards-container {
    column-gap: 18px;
    row-gap: 18px;
  }
}
.cards .cards-container .single-card {
  flex: 1 0 300px;
  max-width: 300px;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cards .cards-container .single-card {
    flex: 1 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 475px) {
  .cards .cards-container .single-card {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.cards .cards-container .single-card a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.cards .cards-container .single-card p {
  font-size: 17px;
}
.cards .cards-container .single-card img {
  width: 100%;
  display: block;
}
.cards .cards-container .single-card .text-container {
  text-align: left;
  color: #000000;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1rem;
}
.cards .cards-container .single-card .text-container span {
  display: block;
  width: 100%;
}
.cards .cards-container .single-card .text-container span.card-title {
  font-weight: 900;
  font-size: 1.25rem;
  position: relative;
}
.cards .cards-container .single-card .text-container span.card-subtitle {
  font-size: 1.125rem;
  line-height: 1.25;
  font-weight: 500;
}
.cards .call-to-action-container {
  max-width: 875px;
  margin: 40px auto 0;
}
.cards .call-to-action-container .cta-title {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.cards .call-to-action-container .btn {
  max-width: 300px;
  width: 300px;
  margin: 0 auto;
  display: block;
}

.text-cards {
  background-color: #16162a;
}
.text-cards .container h3 {
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  z-index: 1;
}
.text-cards .container .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .text-cards .container .cards-container {
    column-gap: 18px;
    row-gap: 18px;
  }
}
.text-cards .container .cards-container .single-card {
  flex: 1 0 250px;
  max-width: 250px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .text-cards .container .cards-container .single-card {
    flex: 1 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 475px) {
  .text-cards .container .cards-container .single-card {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.text-cards .container .cards-container .single-card p {
  position: relative;
  display: block;
  width: 100%;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
}
.text-cards .container .cards-container .single-card p:after {
  content: "";
  height: 100px;
  position: absolute;
  top: 50%;
  right: -12.5%;
  transform: translate(-50%, -50%);
  width: 2px;
  background-color: rgba(255, 255, 255, 0.65);
}
.text-cards .container .cards-container .single-card:last-child p:after {
  display: none;
}
@media (max-width: 1199px) {
  .text-cards .container .cards-container .single-card:nth-child(3n) p:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .text-cards .container .cards-container .single-card:nth-child(3n) p:after {
    display: block;
  }
  .text-cards .container .cards-container .single-card:nth-child(even) p:after {
    display: none;
  }
}
@media (max-width: 475px) {
  .text-cards .container .cards-container .single-card {
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  }
  .text-cards .container .cards-container .single-card p:after {
    display: none;
  }
}

@media (min-width: 768px) {
  .plans:not(.fixed), .plans > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.plans .single-plan {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.plans .single-plan .container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
}
@media (max-width: 991px) {
  .plans .single-plan .container {
    grid-template-columns: 1fr;
  }
}
.plans .single-plan .container .image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.plans .single-plan .container .image-container img {
  width: 100%;
  display: block;
}
.plans .single-plan .container .text-container {
  padding: 20px 40px;
}
.plans .single-plan .container .text-container h3 {
  font-size: 26px;
  margin: 0 0 1rem;
}
@media (max-width: 767px) {
  .plans .single-plan:nth-child(even) {
    background-color: #dbdbdb;
  }
}
@media (min-width: 768px) {
  .plans .single-plan:nth-child(2n+3), .plans .single-plan:nth-child(2n+4) {
    background: #dbdbdb;
  }
}

.full-width-banner {
  background-color: #16162a;
  height: max-content !important;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
.full-width-banner .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 2rem;
}
.full-width-banner .container.bg-image {
  position: unset;
}
.full-width-banner .container.bg-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 875px;
  height: calc(100% - 50px);
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
@media (max-width: 767px) {
  .full-width-banner .container.bg-image:after {
    height: 100%;
  }
}
.full-width-banner .container .site-logo {
  max-width: 225px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}
.full-width-banner .container .site-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.full-width-banner .container h3 {
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  z-index: 1;
  font-size: clamp(28px, calc(17.5361527967px + 1.3642564802vw ), 38px);
}
.full-width-banner .container h4 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}
.full-width-banner .container .cta-container {
  z-index: 1;
}
.full-width-banner .container .cta-container .cta-title, .full-width-banner .container .cta-container .cta-subtitle {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.faqs {
  counter-reset: faq;
  background-color: #16162a;
}
.faqs h3 {
  text-align: center;
  color: #ffffff;
}
.faqs .faqs-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  grid-template-rows: auto;
  align-items: flex-start;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .faqs .faqs-list {
    grid-template-columns: 1fr 1fr;
  }
}
.faqs .faqs-list .faq_question_answer {
  margin-bottom: 13px;
  padding: clamp(24px, calc(0.08px + 4.16vw ), 50px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
@media (max-width: 767px) {
  .faqs .faqs-list .faq_question_answer {
    padding: 36px;
  }
}
@media (max-width: 575px) {
  .faqs .faqs-list .faq_question_answer {
    padding: 24px;
  }
}
.faqs .faqs-list .faq_question_answer:last-child {
  margin-bottom: 0;
}
.faqs .faqs-list .faq_question_answer .question {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(22px, calc(13.726618705px + 1.4388489209vw ), 28px);
  font-weight: get-weight("bold");
  letter-spacing: 0px;
  line-height: 1.2;
  margin: 0;
}
.faqs .faqs-list .faq_question_answer .question:before {
  display: block;
}
.faqs .faqs-list .faq_question_answer .question i {
  transition: transform 0.25s linear;
}
.faqs .faqs-list .faq_question_answer .question.open {
  margin-bottom: 1.5rem;
}
.faqs .faqs-list .faq_question_answer .question.open i {
  transform: rotate(45deg);
}
.faqs .faqs-list .faq_question_answer .question.open + .answer {
  padding-bottom: 0.5rem;
  padding-top: 0rem;
  height: max-content;
}
@media (max-width: 767px) {
  .faqs .faqs-list .faq_question_answer .question {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .faqs .faqs-list .faq_question_answer .question {
    font-size: 22px;
  }
}
.faqs .faqs-list .faq_question_answer .answer {
  transition: all 0.25s linear;
  height: 0;
  overflow: hidden;
}
.faqs .faqs-list .faq_question_answer .answer .entry-content {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.3;
  padding: 0;
}
.faqs .faqs-list .faq_question_answer .answer .entry-content p {
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.angel-hero {
  background-size: cover;
  background-position: center;
  background-image: var(--background-image);
  min-height: 650px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 10;
  position: relative;
}
@media (max-width: 767px) {
  .angel-hero {
    background-image: var(--mobile-background-image);
    min-height: 575px;
  }
}
.angel-hero.right {
  text-align: right;
}
@media (max-width: 767px) {
  .angel-hero.right {
    background-position: center;
  }
  .angel-hero.right h2, .angel-hero.right p, .angel-hero.right .cta-container {
    text-align: center;
  }
  .angel-hero.right .cta-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.angel-hero.right .container {
  text-align: right;
}
@media (min-width: 992px) {
  .angel-hero.right .container .form-container {
    margin-left: auto;
  }
}
.angel-hero.right h2, .angel-hero.right p, .angel-hero.right .cta-container {
  max-width: 875px;
  margin-left: auto;
}
.angel-hero.left {
  text-align: left;
}
@media (max-width: 767px) {
  .angel-hero.left {
    background-position: right;
  }
}
.angel-hero.left p {
  padding-right: 2rem;
}
.angel-hero.center {
  text-align: center;
}
.angel-hero.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.angel-hero.center p {
  margin-left: auto;
  margin-right: auto;
}
.angel-hero.center .cta-container {
  margin-left: auto;
  margin-right: auto;
}
.angel-hero:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #16162a;
  opacity: 0.85;
  z-index: -1;
}
.angel-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 18px;
  align-items: center;
}
.angel-hero .container h2 {
  font-size: clamp(28px, calc(13.8290993072px + 1.8475750577vw ), 36px);
}
.angel-hero .container > p {
  font-size: clamp(19px, calc(13.6859122402px + 0.6928406467vw ), 22px);
}
.angel-hero .container h2,
.angel-hero .container p,
.angel-hero .container .cta-container {
  max-width: 875px;
  z-index: 1;
}
@media (max-width: 767px) {
  .angel-hero .container h2,
.angel-hero .container p,
.angel-hero .container .cta-container {
    text-align: center;
  }
}
.angel-hero .container h2, .angel-hero .container p {
  z-index: 2;
  position: relative;
  color: #fff;
}
.angel-hero .container .cta-container {
  width: max-content;
  position: relative;
}
@media (max-width: 767px) {
  .angel-hero .container .cta-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.angel-hero .container .cta-container span {
  color: #fff !important;
}
.angel-hero .container .hero-content-container {
  background-color: rgba(255, 255, 255, 0.79);
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}
.angel-hero .container .hero-content-container h3 {
  font-size: 26px;
  color: #414141;
  margin-bottom: 1rem;
  font-weight: normal;
}
.angel-hero .container .icons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.angel-hero .container .icons-container .single-icon-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  flex: 0 0 calc(33% - 4rem);
  max-width: 300px;
  text-align: center;
  padding: 1.25rem 0.75rem 0.5rem;
}
@media (max-width: 1199px) {
  .angel-hero .container .icons-container .single-icon-block {
    flex-basis: 33.333%;
  }
}
@media (max-width: 575px) {
  .angel-hero .container .icons-container .single-icon-block {
    flex-basis: 100%;
  }
}
.angel-hero .container .icons-container .single-icon-block .icon-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background-color: #dbdbdb;
  border-radius: 50%;
  border: 2px solid #c2c2c2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 0;
  position: relative;
}
.angel-hero .container .icons-container .single-icon-block img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto;
}
.angel-hero .container .icons-container .single-icon-block img[src$=".svg"] {
  filter: invert(38%) sepia(25%) saturate(840%) hue-rotate(148deg) brightness(89%) contrast(94%);
}
.angel-hero .container .icons-container .single-icon-block .text-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  padding: 1rem 0;
}
.angel-hero .container .icons-container .single-icon-block .title {
  font-size: 19px;
  line-height: 1.4;
  font-weight: normal;
}
.angel-hero .container .icons-container .single-icon-block .subtitle {
  font-size: 22px;
  font-weight: 300;
}
.angel-hero .container .as-seen-tv {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #ccc;
}
.angel-hero .container .as-seen-tv .tv-radio-icon-container {
  width: min(375px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 0 auto;
}
.angel-hero .container .as-seen-tv .tv-radio-icon-container .tv,
.angel-hero .container .as-seen-tv .tv-radio-icon-container .radio {
  flex-basis: 100px;
  flex-grow: 1;
  flex-shrink: 1;
}
.angel-hero .container .as-seen-tv .tv-radio-icon-container .tv img,
.angel-hero .container .as-seen-tv .tv-radio-icon-container .radio img {
  max-width: 65px;
  display: block;
  margin: 0 auto 0.5rem;
}
.angel-hero .container .as-seen-tv .tv-radio-icon-container .tv img[src$=".svg"],
.angel-hero .container .as-seen-tv .tv-radio-icon-container .radio img[src$=".svg"] {
  filter: invert(38%) sepia(25%) saturate(840%) hue-rotate(148deg) brightness(89%) contrast(94%);
}
.angel-hero .container .as-seen-tv .tv-radio-icon-container .tv span,
.angel-hero .container .as-seen-tv .tv-radio-icon-container .radio span {
  font-weight: bold;
  font-size: 22px;
  color: #414141;
}
.angel-hero h2 {
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}
.angel-hero p {
  font-size: 33px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767px) {
  .angel-hero p {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .angel-hero p {
    font-size: 22px;
  }
}

.horizontal-icon-cards .container h3 {
  font-size: 30px;
  text-align: center;
}
.horizontal-icon-cards .container .cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .horizontal-icon-cards .container .cards-container {
    grid-template-columns: 1fr;
  }
}
.horizontal-icon-cards .container .cards-container .single-card {
  display: flex;
  align-items: center;
  gap: 40px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
}
.horizontal-icon-cards .container .cards-container .single-card .icon-container {
  width: 80px;
}
.horizontal-icon-cards .container .cards-container .single-card .icon-container img[src$=".svg"] {
  filter: invert(38%) sepia(25%) saturate(840%) hue-rotate(148deg) brightness(89%) contrast(94%);
}
.horizontal-icon-cards .container .cards-container .single-card .text-container {
  max-width: 400px;
  font-weight: bold;
}
.horizontal-icon-cards.narrow {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #F5F5F5;
}
.horizontal-icon-cards.narrow .cards-container {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .horizontal-icon-cards.narrow .cards-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .horizontal-icon-cards.narrow .cards-container {
    grid-template-columns: 1fr;
  }
}
.horizontal-icon-cards.narrow .cards-container .single-card {
  box-shadow: none;
  padding: 1rem;
}
.horizontal-icon-cards.narrow .cards-container .single-card .text-container .title {
  font-weight: normal;
}

.icon-blocks h3 {
  font-size: 60px;
  color: #414141;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding: 0 0 calc(1.5rem + 6px) 0;
  margin: 1rem 0;
}
@media (max-width: 767px) {
  .icon-blocks h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .icon-blocks h3 {
    font-size: 1.75rem;
  }
}
.icon-blocks h3 a {
  color: #414141;
}
.icon-blocks h3:after {
  content: "";
  height: 6px;
  width: 225px;
  background-color: #16162a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .icon-blocks h3:after {
    width: 175px;
  }
}
@media (max-width: 575px) {
  .icon-blocks h3:after {
    width: 125px;
  }
}
.icon-blocks h4 {
  font-size: 24px;
  color: #414141;
  text-align: center;
  max-width: 875px;
  margin: 0 auto;
  font-weight: 200;
  padding: 1.5rem 0;
}
.icon-blocks .icons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.icon-blocks .icons-container .single-icon-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  flex: 0 0 calc(25% - 4rem);
  max-width: 400px;
  text-align: center;
  padding: 1.25rem 2rem;
}
@media (max-width: 1199px) {
  .icon-blocks .icons-container .single-icon-block {
    flex-basis: 50%;
  }
}
@media (max-width: 575px) {
  .icon-blocks .icons-container .single-icon-block {
    flex-basis: 100%;
  }
}
.icon-blocks .icons-container .single-icon-block .icon-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background-color: #dbdbdb;
  border-radius: 50%;
  border: 2px solid #c2c2c2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 0;
  position: relative;
}
.icon-blocks .icons-container .single-icon-block img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin: 0 auto;
}
.icon-blocks .icons-container .single-icon-block img[src$=".svg"] {
  filter: invert(38%) sepia(25%) saturate(840%) hue-rotate(148deg) brightness(89%) contrast(94%);
}
.icon-blocks .icons-container .single-icon-block .text-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  padding: 1rem;
  /*background-color: $brand-light-grey;
  border: 2px solid darken($brand-light-grey, 10%);
  box-shadow: $box-shadow;
  margin-top: calc(-1rem - 12.5px);
  z-index: 1;
  position: relative; */
}
.icon-blocks .icons-container .single-icon-block .title {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
}
.icon-blocks .icons-container .single-icon-block .subtitle {
  font-size: 22px;
  font-weight: 300;
}

.text-image-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.text-image-block .container {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 575px) {
  .text-image-block .container {
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 20px);
  }
}
@media (min-width: 992px) {
  .text-image-block .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .text-image-block .container {
    grid-template-columns: 7fr 8fr;
  }
}
@media (min-width: 1200px) {
  .text-image-block + .text-image-block:nth-of-type(odd) .container, .text-image-block + .text-image-block:nth-child(odd) .container {
    grid-template-columns: 8fr 7fr;
  }
}
.text-image-block .text-container {
  padding: 28px 57px;
  order: 3;
}
@media (min-width: 992px) {
  .text-image-block .text-container {
    max-width: 875px;
    order: unset;
  }
}
@media (max-width: 767px) {
  .text-image-block .text-container {
    padding: 28px;
  }
}
@media (max-width: 575px) {
  .text-image-block .text-container {
    padding: 28px 20px;
  }
}
.text-image-block .text-container p {
  font-size: 18px;
  line-height: 1.39;
  color: #414141;
  display: block;
  margin-bottom: 1.5rem;
}
.text-image-block .text-container p:last-of-type {
  margin-bottom: 0;
}
.text-image-block .text-container ul li {
  font-size: 18px;
  position: relative;
  list-style: none;
  padding-left: 1.5rem;
}
.text-image-block .text-container ul li::before {
  position: absolute;
  left: 0;
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
}
.text-image-block .title {
  margin-bottom: 1rem;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .text-image-block .title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .text-image-block .title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1.5rem !important;
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .text-image-block .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .text-image-block .title {
    font-size: 40px;
  }
}
.text-image-block .image-container {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
.text-image-block .image-container img,
.text-image-block .image-container picture {
  display: block;
  border-radius: 50px;
  perspective: 1px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media (min-width: 992px) {
  .text-image-block + .text-image-block:nth-child(odd) .text-container, .text-image-block + .text-image-block:nth-of-type(odd) .text-container {
    order: 2;
  }
}
.text-image-block.card-view .container {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #eee;
  border: 4px solid #fff;
}
.text-image-block.card-view .container .image-container {
  border-radius: 0;
}
.text-image-block.card-view .container .image-container img {
  border-radius: 0;
}
@media (min-width: 992px) {
  .text-image-block.card-view .text-container {
    margin-left: -20px;
  }
  .text-image-block.card-view .image-container {
    margin-right: -20px;
    align-self: stretch;
  }
  .text-image-block.card-view .image-container img {
    height: 100%;
  }
  .text-image-block.card-view + .text-image-block:nth-child(odd) .image-container, .text-image-block.card-view + .text-image-block:nth-of-type(odd) .image-container {
    margin-left: -20px;
  }
  .text-image-block.card-view + .text-image-block:nth-child(odd) .text-container, .text-image-block.card-view + .text-image-block:nth-of-type(odd) .text-container {
    margin-right: -20px;
  }
}

.featured-images {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.featured-images .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.featured-images .container * {
  flex-basis: 20%;
  flex-grow: 0;
  flex-shrink: 1;
  max-width: 250px;
  padding: 1rem;
}
@media (max-width: 575px) {
  .featured-images .container * {
    flex-basis: 100%;
    max-width: 100%;
    flex-grow: 1;
    margin: 0 auto;
  }
}
.featured-images .container h3 {
  font-size: 23px;
  font-weight: normal;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .featured-images .container h3 {
    text-align: center;
  }
}
.featured-images .container img {
  max-width: 200px;
  height: auto;
}

.call-to-action.cta-container {
  text-align: center;
}

body.page-template-page-landing-template {
  max-width: 100vw;
  width: 100%;
  overflow: unset !important;
}
body.page-template-page-landing-template .cta-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 8px;
}
body.page-template-page-landing-template .cta-container span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cta-container span {
    font-size: 12px;
  }
}
body.page-template-page-landing-template .cta-container .cta-title {
  font-size: 1rem;
  font-weight: 600;
}
body.page-template-page-landing-template .cta-container .btn-yellow {
  font-size: 22px;
  min-width: 200px;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cta-container .btn-yellow {
    padding: 0.5rem;
    font-size: 18px;
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template .cta-container .btn-yellow {
    padding: 0.5rem 0.75rem;
    min-width: max-content;
  }
}
body.page-template-page-landing-template .cta-container .btn-yellow i {
  margin-right: 8px;
}
body.page-template-page-landing-template .cta-container .btn-yellow .cta-subtitle {
  font-size: 14px;
  font-weight: 600;
}
body.page-template-page-landing-template header {
  background-color: transparent;
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: none;
  transition: all 0.3s linear;
}
@media (max-width: 475px) {
  body.page-template-page-landing-template header {
    padding: 0.25rem 0;
  }
}
body.page-template-page-landing-template header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
@media (max-width: 767px) {
  body.page-template-page-landing-template header {
    position: fixed;
    background-color: #ffffff;
  }
}
body.page-template-page-landing-template header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
body.page-template-page-landing-template header h1, body.page-template-page-landing-template header a {
  font-size: 29px;
  flex: 1 0 66.67%;
  max-width: 66.667%;
  margin-top: 0;
  margin-bottom: 0;
  color: #414141;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template header h1, body.page-template-page-landing-template header a {
    flex: 1 0 60%;
    max-width: 60%;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template header h1, body.page-template-page-landing-template header a {
    flex: 1 0 45%;
    max-width: 45%;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template header h1, body.page-template-page-landing-template header a {
    flex: 1 0 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
body.page-template-page-landing-template header h1 a, body.page-template-page-landing-template header a a {
  padding-left: 16px;
  margin-left: 8px;
  border-left: 2px solid #414141;
  color: #414141;
  text-decoration: none;
}
body.page-template-page-landing-template header h1 a:hover, body.page-template-page-landing-template header h1 a:focus, body.page-template-page-landing-template header a a:hover, body.page-template-page-landing-template header a a:focus {
  color: #FDB512;
}
body.page-template-page-landing-template header h1 img, body.page-template-page-landing-template header a img {
  display: block;
  max-width: 375px;
  width: 100%;
  height: auto;
}
body.page-template-page-landing-template header .cta-container {
  flex: 1 0 33.33%;
  max-width: 33.33%;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template header .cta-container {
    flex: 1 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template header .cta-container {
    flex: 1 0 55%;
    max-width: 55%;
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template header .cta-container {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
body.page-template-page-landing-template header .cta-container span {
  color: #414141;
}
body.page-template-page-landing-template header .cta-container a {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}
body.page-template-page-landing-template header.left .cta-container span {
  color: #ffffff;
}
body.page-template-page-landing-template header.left.scrolled a img {
  filter: brightness(0);
}
body.page-template-page-landing-template header.left.scrolled .cta-container span {
  color: #414141;
}
body.page-template-page-landing-template .angel-hero {
  background-size: cover;
  background-position: center;
  background-image: var(--background-image);
  min-height: 650px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 10;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero {
    background-image: var(--mobile-background-image);
    min-height: 575px;
  }
}
body.page-template-page-landing-template .angel-hero.right {
  text-align: right;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero.right {
    background-position: center;
  }
  body.page-template-page-landing-template .angel-hero.right h2, body.page-template-page-landing-template .angel-hero.right p, body.page-template-page-landing-template .angel-hero.right .cta-container {
    text-align: center;
  }
  body.page-template-page-landing-template .angel-hero.right .cta-container {
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-template-page-landing-template .angel-hero.right .container {
  text-align: right;
}
@media (min-width: 992px) {
  body.page-template-page-landing-template .angel-hero.right .container .form-container {
    margin-left: auto;
  }
}
body.page-template-page-landing-template .angel-hero.right h2, body.page-template-page-landing-template .angel-hero.right p, body.page-template-page-landing-template .angel-hero.right .cta-container {
  max-width: 875px;
  margin-left: auto;
}
body.page-template-page-landing-template .angel-hero.left {
  text-align: left;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero.left {
    background-position: right;
  }
}
body.page-template-page-landing-template .angel-hero.left h2, body.page-template-page-landing-template .angel-hero.left p, body.page-template-page-landing-template .angel-hero.left .cta-container {
  max-width: 875px;
  z-index: 1;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero.left h2, body.page-template-page-landing-template .angel-hero.left p, body.page-template-page-landing-template .angel-hero.left .cta-container {
    text-align: center;
  }
}
body.page-template-page-landing-template .angel-hero.left h2, body.page-template-page-landing-template .angel-hero.left p {
  z-index: 2;
  position: relative;
}
body.page-template-page-landing-template .angel-hero.left p {
  padding-right: 2rem;
}
body.page-template-page-landing-template .angel-hero.left .cta-container {
  width: max-content;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero.left .cta-container {
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-template-page-landing-template .angel-hero.left .cta-container span {
  color: #fff !important;
}
body.page-template-page-landing-template .angel-hero.left:not(.form-hero):after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
@media (min-width: 768px) {
  body.page-template-page-landing-template .angel-hero.left:not(.form-hero) h2 {
    max-width: 18ch !important;
  }
}
body.page-template-page-landing-template .angel-hero.left:not(.form-hero) h2, body.page-template-page-landing-template .angel-hero.left:not(.form-hero) p {
  color: #fff !important;
}
body.page-template-page-landing-template .angel-hero.left.form-hero {
  min-height: 775px;
}
body.page-template-page-landing-template .angel-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 18px;
  align-items: center;
}
body.page-template-page-landing-template .angel-hero h2 {
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}
body.page-template-page-landing-template .angel-hero p {
  font-size: 33px;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .angel-hero p {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .angel-hero p {
    font-size: 22px;
  }
}
body.page-template-page-landing-template .angel-hero .form-container {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  overflow: hidden;
  border-radius: 45px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: left !important;
}
body.page-template-page-landing-template .angel-hero .form-container h2 {
  display: block;
  max-width: 600px;
  width: 100%;
  text-align: center;
  background-color: #16162a;
  color: #ffffff;
  font-size: 29px;
  padding: 1.25rem 1rem;
  box-sizing: border-box;
}
body.page-template-page-landing-template .angel-hero .form-container p {
  font-size: 22px;
  max-width: 600px;
  padding: 1rem 1rem 1rem;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper {
  padding: 30px 40px;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gform_validation_errors {
  padding: 1rem;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gform_validation_errors h2 {
  background-color: transparent;
  color: #414141;
  background: transparent;
  font-size: 18px;
  padding: 0;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gform_validation_errors .gform-icon--close {
  display: none !important;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input:not([type=submit]),
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper select,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper textarea {
  border: 2px solid #ced4da;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: "Red Hat Display", sans-serif;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: border-color 0.15s;
  width: 100%;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input:not([type=submit]):focus,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper select:focus,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper textarea:focus {
  border-color: #414141;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=button],
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=submit] {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #16162a;
  color: #ffffff;
  border: 2px solid transparent;
  transition: 0.25s all ease-in-out;
  border-radius: 12px;
  max-width: max-content;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=button]:hover, body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=button]:focus, body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=button]:active,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=submit]:hover,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=submit]:focus,
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper input[type=submit]:active {
  background-color: #ffffff;
  color: #000000;
  border-color: #16162a;
  cursor: pointer;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper p.gf_progressbar_title {
  font-weight: bold;
  font-size: 2rem;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gf_progressbar_blue {
  border: 0px solid !important;
  border-radius: 25px !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gf_progressbar_blue .gf_progressbar_percentage {
  height: 35px !important;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .gf_progressbar_blue .gf_progressbar_percentage span {
  font-size: 1.25rem !important;
  line-height: 35px !important;
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .ginput_container.ginput_complex#input_5_9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
body.page-template-page-landing-template .angel-hero .form-container .gform_wrapper .ginput_container.ginput_complex#input_5_9 .ginput_container_date {
  width: 100%;
  max-width: 100%;
}
body.page-template-page-landing-template .icon-blocks h3 {
  font-size: 60px;
  color: #414141;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding: 0 0 calc(1.5rem + 6px) 0;
  margin: 1rem 0;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .icon-blocks h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .icon-blocks h3 {
    font-size: 1.75rem;
  }
}
body.page-template-page-landing-template .icon-blocks h3 a {
  color: #414141;
}
body.page-template-page-landing-template .icon-blocks h3:after {
  content: "";
  height: 6px;
  width: 225px;
  background-color: #16162a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .icon-blocks h3:after {
    width: 175px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .icon-blocks h3:after {
    width: 125px;
  }
}
body.page-template-page-landing-template .icon-blocks h4 {
  font-size: 24px;
  color: #414141;
  text-align: center;
  max-width: 875px;
  margin: 0 auto;
  font-weight: 200;
  padding: 1.5rem 0;
}
body.page-template-page-landing-template .icon-blocks .icons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  flex: 0 0 calc(25% - 4rem);
  max-width: 400px;
  text-align: center;
  padding: 1.25rem 2rem;
}
@media (max-width: 1199px) {
  body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block {
    flex-basis: 50%;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block {
    flex-basis: 100%;
  }
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block .icon-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  background-color: #dbdbdb;
  border-radius: 50%;
  border: 2px solid #c2c2c2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 0;
  position: relative;
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin: 0 auto;
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block img[src$=".svg"] {
  filter: invert(38%) sepia(25%) saturate(840%) hue-rotate(148deg) brightness(89%) contrast(94%);
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block .text-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  padding: 1rem;
  /*background-color: $brand-light-grey;
  border: 2px solid darken($brand-light-grey, 10%);
  box-shadow: $box-shadow;
  margin-top: calc(-1rem - 12.5px);
  z-index: 1;
  position: relative; */
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block .title {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
}
body.page-template-page-landing-template .icon-blocks .icons-container .single-icon-block .subtitle {
  font-size: 22px;
  font-weight: 300;
}
body.page-template-page-landing-template .full-width-banner {
  background-color: #16162a;
  height: max-content !important;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-landing-template .full-width-banner .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 2rem;
}
body.page-template-page-landing-template .full-width-banner .container.bg-image {
  position: unset;
}
body.page-template-page-landing-template .full-width-banner .container.bg-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 875px;
  height: calc(100% - 100px);
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-landing-template .full-width-banner .container h3 {
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  z-index: 1;
}
body.page-template-page-landing-template .full-width-banner .container h4 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}
body.page-template-page-landing-template .full-width-banner .container .cta-container {
  z-index: 1;
}
body.page-template-page-landing-template .full-width-banner .container .cta-container .cta-title, body.page-template-page-landing-template .full-width-banner .container .cta-container .cta-subtitle {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.4px;
}
body.page-template-page-landing-template .cards h3 {
  font-size: 60px;
  color: #414141;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding: 0 0 calc(1.5rem + 6px) 0;
  margin: 1rem 0;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cards h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .cards h3 {
    font-size: 1.75rem;
  }
}
body.page-template-page-landing-template .cards h3:after {
  content: "";
  height: 6px;
  width: 225px;
  background-color: #16162a;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cards h3:after {
    width: 175px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .cards h3:after {
    width: 125px;
  }
}
body.page-template-page-landing-template .cards h4 {
  font-size: 24px;
  color: #414141;
  text-align: center;
  max-width: 875px;
  margin: 0 auto;
  font-weight: 200;
  padding: 1.5rem 0;
}
body.page-template-page-landing-template .cards .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cards .cards-container {
    column-gap: 18px;
    row-gap: 18px;
  }
}
body.page-template-page-landing-template .cards .cards-container .single-card {
  flex: 1 0 250px;
  max-width: 250px;
  overflow: hidden;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.25s ease-in-out;
  border-radius: 36px;
  border: 2px solid #dbdbdb;
}
body.page-template-page-landing-template .cards .cards-container .single-card:hover, body.page-template-page-landing-template .cards .cards-container .single-card:focus-within {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.05);
}
@media (min-width: 768px) {
  body.page-template-page-landing-template .cards .cards-container .single-card:nth-child(even) {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .cards .cards-container .single-card {
    flex: 1 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template .cards .cards-container .single-card {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
body.page-template-page-landing-template .cards .cards-container .single-card a {
  display: block;
  width: 100%;
  text-decoration: none;
}
body.page-template-page-landing-template .cards .cards-container .single-card p {
  font-size: 17px;
}
body.page-template-page-landing-template .cards .cards-container .single-card img {
  width: 100%;
  display: block;
}
body.page-template-page-landing-template .cards .cards-container .single-card .text-container {
  text-align: center;
  color: #ffffff;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 2rem;
  background-color: #16162a;
}
body.page-template-page-landing-template .cards .cards-container .single-card .text-container span {
  display: block;
  width: 100%;
}
body.page-template-page-landing-template .cards .cards-container .single-card .text-container span.card-title {
  font-weight: 600;
  font-size: 24px;
  position: relative;
}
body.page-template-page-landing-template .cards .cards-container .single-card .text-container span.card-title:after {
  content: "";
  display: block;
  height: 3px;
  width: 80px;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
}
body.page-template-page-landing-template .cards .cards-container .single-card .text-container span.card-subtitle {
  font-size: 18px;
  line-height: 1.25;
}
body.page-template-page-landing-template .two-column-block {
  background-color: #16162a;
}
body.page-template-page-landing-template .two-column-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 60px;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .two-column-block .container {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-landing-template .two-column-block .container h3 {
  font-size: 35px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .two-column-block .container h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .two-column-block .container h3 {
    font-size: 28px;
  }
}
body.page-template-page-landing-template .two-column-block .container .left-column, body.page-template-page-landing-template .two-column-block .container .right-column {
  padding: 1rem 1.25rem;
  text-align: center;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .two-column-block .container .left-column, body.page-template-page-landing-template .two-column-block .container .right-column {
    padding: 0;
  }
}
body.page-template-page-landing-template .two-column-block .container .left-column p, body.page-template-page-landing-template .two-column-block .container .right-column p {
  font-size: 25px;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .two-column-block .container .left-column p, body.page-template-page-landing-template .two-column-block .container .right-column p {
    font-size: 20px;
  }
}
body.page-template-page-landing-template .two-column-block .container .left-column .cta-container span, body.page-template-page-landing-template .two-column-block .container .right-column .cta-container span {
  color: #ffffff;
}
body.page-template-page-landing-template .two-column-block .container .right-column {
  --gap: 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: var(--gap);
  grid-row-gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .two-column-block .container .right-column {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-landing-template .two-column-block .container .right-column h3 {
  grid-column: 1/-1;
}
body.page-template-page-landing-template .two-column-block .container .right-column .single-block {
  background-color: #ffffff;
  padding: 25px 36px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .two-column-block .container .right-column .single-block {
    padding: 18px 24px;
  }
}
body.page-template-page-landing-template .two-column-block .container .right-column .single-block:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.05);
}
body.page-template-page-landing-template .two-column-block .container .right-column .single-block p {
  color: #000000;
  font-size: 24px;
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .two-column-block .container .right-column .single-block p {
    font-size: 20px;
  }
}
body.page-template-page-landing-template .faqs {
  counter-reset: faq;
  background-color: #16162a;
}
body.page-template-page-landing-template .faqs h3 {
  text-align: center;
  color: #ffffff;
}
body.page-template-page-landing-template .faqs .faqs-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  grid-template-rows: auto;
  align-items: flex-start;
  max-width: 875px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-template-page-landing-template .faqs .faqs-list {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer {
  margin-bottom: 13px;
  padding: 54px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer {
    padding: 36px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer {
    padding: 24px;
  }
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer:last-child {
  margin-bottom: 0;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 34px;
  font-weight: get-weight("bold");
  letter-spacing: 0px;
  line-height: 1.2;
  margin: 0;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question:before {
  display: block;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question i {
  transition: transform 0.25s linear;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question.open {
  margin-bottom: 1.5rem;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question.open i {
  transform: rotate(45deg);
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question.open + .answer {
  padding-bottom: 0.5rem;
  padding-top: 0rem;
  height: max-content;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .question {
    font-size: 22px;
  }
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .answer {
  transition: all 0.25s linear;
  height: 0;
  overflow: hidden;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .answer .entry-content {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.3;
  padding: 0;
}
body.page-template-page-landing-template .faqs .faqs-list .faq_question_answer .answer .entry-content p {
  margin: 0;
  padding: 0;
  color: #ffffff;
}
body.page-template-page-landing-template .text-image-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
body.page-template-page-landing-template .text-image-block .container {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  body.page-template-page-landing-template .text-image-block .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-landing-template .text-image-block .container {
    grid-template-columns: 7fr 9fr;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-landing-template .text-image-block + .text-image-block:nth-of-type(odd) .container, body.page-template-page-landing-template .text-image-block + .text-image-block:nth-child(odd) .container {
    grid-template-columns: 9fr 7fr;
  }
}
body.page-template-page-landing-template .text-image-block .text-container {
  padding: 28px 57px;
  order: 3;
}
@media (min-width: 992px) {
  body.page-template-page-landing-template .text-image-block .text-container {
    max-width: 875px;
    order: unset;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .text-image-block .text-container {
    padding: 28px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .text-image-block .text-container {
    padding: 28px 20px;
  }
}
body.page-template-page-landing-template .text-image-block .text-container p {
  font-size: 18px;
  line-height: 1.39;
  color: #414141;
  display: block;
  margin-bottom: 1.5rem;
}
body.page-template-page-landing-template .text-image-block .text-container p:last-of-type {
  margin-bottom: 0;
}
body.page-template-page-landing-template .text-image-block .title {
  margin-bottom: 1rem;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  body.page-template-page-landing-template .text-image-block .title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .text-image-block .title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1.5rem !important;
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .text-image-block .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .text-image-block .title {
    font-size: 40px;
  }
}
body.page-template-page-landing-template .text-image-block .image-container {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
body.page-template-page-landing-template .text-image-block .image-container img,
body.page-template-page-landing-template .text-image-block .image-container picture {
  display: block;
  border-radius: 50px;
  perspective: 1px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-landing-template .text-image-block + .text-image-block:nth-child(odd) .text-container, body.page-template-page-landing-template .text-image-block + .text-image-block:nth-of-type(odd) .text-container {
    order: 2;
  }
}
body.page-template-page-landing-template .testimonial-carousel {
  background-color: #16162a;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-landing-template .testimonial-carousel .container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}
body.page-template-page-landing-template .testimonial-carousel .container.bg-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-landing-template .testimonial-carousel .container h3 {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider {
    max-width: 875px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider {
    max-width: 100%;
  }
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .image-container {
  padding: 20px;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .image-container img {
  display: block;
  width: 100%;
  max-width: 275px;
  margin: 0 auto;
  border: 4px solid #FDB512;
  border-radius: 50%;
  overflow: hidden;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container {
  padding: 20px 45px;
  max-width: 550px;
}
@media (max-width: 575px) {
  body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container {
    padding: 20px;
  }
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container p {
  color: #ffffff;
  font-size: 20px;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container i {
  color: #FDB512;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls {
    position: relative;
    margin-bottom: 1rem;
  }
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls button {
  background-color: transparent;
  border: none;
  margin: 0 30px;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls button:hover i, body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls button:focus i {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls i {
  font-size: 40px;
  color: #ffffff;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls .slick-dots {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin: 0 auto;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls .slick-dots li {
  display: flex;
  width: 20px;
  height: 20px;
  background-color: #000000;
  border-radius: 50%;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls .slick-dots li.slick-active {
  background-color: #FDB512;
}
body.page-template-page-landing-template .testimonial-carousel .container .testimonial-controls .slick-dots li button {
  color: transparent;
}
body.page-template-page-landing-template .testimonial-carousel .container.bg-image .slick-dots li {
  background-color: #ffffff !important;
}
@media (min-width: 768px) {
  body.page-template-page-landing-template .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-page-landing-template .plans .single-plan {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
body.page-template-page-landing-template .plans .single-plan .container {
  display: grid;
  grid-template-columns: 4fr 7fr;
  align-items: center;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .plans .single-plan .container {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-landing-template .plans .single-plan .container .image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
body.page-template-page-landing-template .plans .single-plan .container .image-container img {
  width: 100%;
  display: block;
}
body.page-template-page-landing-template .plans .single-plan .container .text-container {
  padding: 20px 40px;
}
body.page-template-page-landing-template .plans .single-plan .container .text-container h3 {
  font-size: 26px;
  margin: 0 0 1rem;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .plans .single-plan:nth-child(even) {
    background-color: #dbdbdb;
  }
}
@media (min-width: 768px) {
  body.page-template-page-landing-template .plans .single-plan:nth-child(2n+3), body.page-template-page-landing-template .plans .single-plan:nth-child(2n+4) {
    background: #dbdbdb;
  }
}
body.page-template-page-landing-template .fw-text-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .fw-text-image-block {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-landing-template .fw-text-image-block .text-container {
  max-width: 550px;
  margin: 0 auto;
  padding: 20px 40px;
}
body.page-template-page-landing-template .fw-text-image-block .text-container h3 {
  font-size: 26px;
  margin: 0 0 1.5rem;
}
body.page-template-page-landing-template .fw-text-image-block .text-container p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .fw-text-image-block .image-container {
    padding: 20px 40px;
    order: -1;
  }
}
body.page-template-page-landing-template .fw-text-image-block .image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  perspective: 1px;
  overflow: hidden;
}
body.page-template-page-landing-template .text-cards {
  background-color: #16162a;
}
body.page-template-page-landing-template .text-cards .container h3 {
  color: #ffffff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  z-index: 1;
}
body.page-template-page-landing-template .text-cards .container .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .text-cards .container .cards-container {
    column-gap: 18px;
    row-gap: 18px;
  }
}
body.page-template-page-landing-template .text-cards .container .cards-container .single-card {
  flex: 1 0 250px;
  max-width: 250px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card {
    flex: 1 0 calc(50% - 18px);
    max-width: calc(50% - 18px);
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
body.page-template-page-landing-template .text-cards .container .cards-container .single-card p {
  position: relative;
  display: block;
  width: 100%;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 25px;
  box-sizing: border-box;
}
body.page-template-page-landing-template .text-cards .container .cards-container .single-card p:after {
  content: "";
  height: 100px;
  position: absolute;
  top: 50%;
  right: -12.5%;
  transform: translate(-50%, -50%);
  width: 2px;
  background-color: rgba(255, 255, 255, 0.65);
}
body.page-template-page-landing-template .text-cards .container .cards-container .single-card:last-child p:after {
  display: none;
}
@media (max-width: 1199px) {
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card:nth-child(3n) p:after {
    display: none;
  }
}
@media (max-width: 991px) {
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card:nth-child(3n) p:after {
    display: block;
  }
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card:nth-child(even) p:after {
    display: none;
  }
}
@media (max-width: 475px) {
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card {
    border-bottom: 2px solid rgba(255, 255, 255, 0.65);
  }
  body.page-template-page-landing-template .text-cards .container .cards-container .single-card p:after {
    display: none;
  }
}
body.page-template-page-landing-template .image-block .container {
  max-width: 875px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 1rem;
}
body.page-template-page-landing-template .image-block .container h3, body.page-template-page-landing-template .image-block .container .caption {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
body.page-template-page-landing-template .image-block .container .image-container {
  display: block;
  width: 100%;
}
body.page-template-page-landing-template .image-block .container .image-container img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
  border-radius: 50px;
}
body.page-template-page-landing-template footer {
  background-color: #16162a;
  padding: 30px 0;
  width: 100vw;
  overflow: hidden;
}
body.page-template-page-landing-template footer .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 1.5rem;
}
body.page-template-page-landing-template footer .container .form-container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container {
    grid-gap: 8px;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container .form-title {
    grid-column: 1/-1;
  }
}
body.page-template-page-landing-template footer .container .form-container .form-title span {
  display: block;
  width: 18ch;
  font-size: 21px;
  line-height: 26px;
  color: #ffffff;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container .form-title span {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container div[role=form], body.page-template-page-landing-template footer .container .form-container .gform_wrapper {
    grid-column: 1/-1;
  }
}
body.page-template-page-landing-template footer .container .form-container form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container form {
    row-gap: 8px;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_body {
  grid-column: span 2;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container form .gform_body {
    grid-column: 1/-1;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_body input {
  background: transparent;
  border: 2px solid #ffffff;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  font-size: 1rem;
  width: 100%;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container form .gform_body input {
    border-radius: 20px;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_body input:focus {
  outline: 0;
}
body.page-template-page-landing-template footer .container .form-container form .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container form .gform_footer {
    grid-column: 1/-1;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_footer input {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0 20px 20px 0;
  border-color: #ffffff;
  border-style: solid;
  border-width: 2px;
  background-color: #FDB512;
  border-left: 0;
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffffff !important;
  transition: all 0.25s linear;
}
@media (min-width: 768px) {
  body.page-template-page-landing-template footer .container .form-container form .gform_footer input {
    margin-left: -10px;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_footer input:hover, body.page-template-page-landing-template footer .container .form-container form .gform_footer input:focus {
  background-color: #16162a;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .form-container form .gform_footer input {
    border-left: 2px solid #ffffff;
    border-radius: 20px;
  }
}
body.page-template-page-landing-template footer .container .form-container form .gform_footer input + .ajax-loader {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
body.page-template-page-landing-template footer .container .form-container form h2.gform_submission_error {
  font-size: 20px !important;
  margin: 0 0 10px !important;
  color: #000000 !important;
}
body.page-template-page-landing-template footer .container .form-container form .gfield_validation_message {
  margin-top: 10px !important;
  color: #000000 !important;
}
body.page-template-page-landing-template footer .container .cta-container {
  grid-column: span 1;
  max-width: max-content;
  align-self: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .cta-container {
    grid-column: 1/-1;
    align-self: center;
    max-width: 100%;
  }
}
body.page-template-page-landing-template footer .container .cta-container a.btn:hover, body.page-template-page-landing-template footer .container .cta-container a.btn:focus {
  border-color: #FDB512;
}
body.page-template-page-landing-template footer .container .cta-container img {
  display: block;
  margin: 0 auto;
  width: auto;
}
body.page-template-page-landing-template footer .container .footer-disclaimer {
  grid-column: span 3;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer .container .footer-disclaimer {
    grid-column: 1/-1;
  }
}
body.page-template-page-landing-template footer .container .footer-disclaimer p {
  color: #ffffff;
  line-height: 1.3;
  font-size: 1rem;
}
body.page-template-page-landing-template footer .container .footer-disclaimer a {
  color: #ffffff;
  font-weight: 600;
}
body.page-template-page-landing-template footer .container .footer-nav {
  grid-column: 1/-1;
}
body.page-template-page-landing-template footer .container .footer-nav ul {
  padding-left: 0;
  columns: 3;
  column-gap: 1rem;
  row-gap: 1rem;
  list-style: none;
  text-align: center;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template footer .container .footer-nav ul {
    columns: 2;
  }
}
@media (max-width: 575px) {
  body.page-template-page-landing-template footer .container .footer-nav ul {
    columns: 1;
  }
}
body.page-template-page-landing-template footer .container .footer-nav ul li {
  display: block;
  padding: 1rem 0;
}
body.page-template-page-landing-template footer .container .footer-nav ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #ffffff;
}
body.page-template-page-landing-template footer .container .footer-nav ul li a:hover, body.page-template-page-landing-template footer .container .footer-nav ul li a:focus {
  color: #FDB512;
}
body.page-template-page-landing-template footer .container .copyright {
  grid-column: span 2;
  text-align: left;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template footer .container .copyright {
    grid-column: 1/-1;
    text-align: center;
  }
}
body.page-template-page-landing-template footer .container .copyright p {
  color: #ffffff;
  font-size: 1.05rem;
}
body.page-template-page-landing-template footer .container .green-sparrow {
  grid-column: span 2;
  text-align: right;
}
@media (max-width: 991px) {
  body.page-template-page-landing-template footer .container .green-sparrow {
    grid-column: 1/-1;
    text-align: center;
  }
}
body.page-template-page-landing-template footer .container .green-sparrow p {
  font-size: 1.05rem;
  color: #ffffff;
}
body.page-template-page-landing-template footer .container .green-sparrow p a {
  color: #ffffff;
  font-weight: 600;
}
body.page-template-page-landing-template footer .container .green-sparrow p a:hover, body.page-template-page-landing-template footer .container .green-sparrow p a:focus {
  color: #FDB512;
}
body.page-template-page-landing-template footer.simple .container > a,
body.page-template-page-landing-template footer.simple .container > h1 {
  width: 100%;
  grid-column: 1/-1;
  border-bottom: 1px solid #dbdbdb;
}
body.page-template-page-landing-template footer.simple .container > a img,
body.page-template-page-landing-template footer.simple .container > h1 img {
  max-width: 350px;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  body.page-template-page-landing-template footer.simple .container > a img,
body.page-template-page-landing-template footer.simple .container > h1 img {
    margin: 0 auto;
  }
}
body.page-template-page-landing-template footer.simple .footer-disclaimer {
  grid-column: 1/-1;
}

body.page-template-page-event-template {
  --health-angel-grey: #7f7f7f;
  --health-angel-body: #F6F7F8;
  background-color: var(--health-angel-body);
}
body.page-template-page-event-template header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
}
body.page-template-page-event-template header .logo {
  background-color: var(--health-angel-grey);
}
body.page-template-page-event-template header .logo img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
}
@media (max-width: 767px) {
  body.page-template-page-event-template header .logo img {
    max-width: 200px;
    padding: 10px 0;
  }
}
body.page-template-page-event-template header .container.event-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
body.page-template-page-event-template header .container.event-info .event-date {
  font-size: 18px;
  color: #4D4D4D;
  opacity: 0.85;
  margin: 0;
  font-weight: 600;
}
body.page-template-page-event-template header .container.event-info .event-title {
  font-size: clamp(1.75rem, 1.15rem + 2vw, 2.25rem);
  font-weight: bold;
  line-height: 1.25;
  max-width: 875px;
  margin: 0;
}
body.page-template-page-event-template header .container.event-info .event-host {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: height 0.25s linear;
}
body.page-template-page-event-template header .container.event-info .event-host img {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
body.page-template-page-event-template header .container.event-info .event-host .host-name {
  font-size: 18px;
}
body.page-template-page-event-template header .container.event-info .event-host .host-name strong {
  display: block;
  width: 100%;
  margin-top: 8px;
}
body.page-template-page-event-template header.scrolled .logo img {
  padding: 12px 0;
  max-width: 125px;
}
body.page-template-page-event-template header.scrolled .container.event-info {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 0.25rem;
}
body.page-template-page-event-template header.scrolled .container.event-info .event-host {
  height: 0;
  overflow: hidden;
}
body.page-template-page-event-template header.scrolled .container.event-info .event-title {
  font-size: 22px;
  margin-bottom: -0.25rem;
}
body.page-template-page-event-template main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 992px) {
  body.page-template-page-event-template main {
    grid-template-columns: 4fr 3fr;
  }
}
body.page-template-page-event-template main .event-content-container img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
  margin-bottom: 0.5rem;
  border-radius: 16px;
}
body.page-template-page-event-template main .event-content-container p {
  font-size: 20px;
  line-height: 1.75;
}
body.page-template-page-event-template main .event-content-container p:not(:nth-child(2)) {
  margin-top: 1.5rem;
}
body.page-template-page-event-template main .event-content-container p.details-label {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 991px) {
  body.page-template-page-event-template main aside {
    order: -1;
  }
}
body.page-template-page-event-template main aside .event-time-container {
  background-color: #fff;
  padding: 1.5rem 0;
  border-radius: 16px;
  box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 2px 1px 5px 2px rgba(0, 0, 0, 0.12);
}
body.page-template-page-event-template main aside .event-time-container ul {
  list-style: none;
}
body.page-template-page-event-template main aside .event-time-container ul li {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
}
body.page-template-page-event-template main aside .event-time-container ul li:last-child {
  padding-bottom: 0;
}
body.page-template-page-event-template main aside .event-time-container ul li i {
  font-size: 24px;
  color: #414141;
  opacity: 0.85;
}
body.page-template-page-event-template main aside .event-time-container ul li p {
  padding: 0;
  margin: 0;
  font-size: 20px;
}
body.page-template-page-event-template main aside .event-time-container ul li a {
  color: #414141;
}
body.page-template-page-event-template main aside .event-time-container ul li a:hover, body.page-template-page-event-template main aside .event-time-container ul li a:focus {
  color: #FDB512;
}
body.page-template-page-event-template main aside .event-time-container ul li.link {
  padding-bottom: 2rem;
}
body.page-template-page-event-template main aside .event-time-container ul li.single-callout {
  font-size: 24px;
}
body.page-template-page-event-template footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 2px 4px 2px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
body.page-template-page-event-template footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-time-name {
    display: none;
  }
}
body.page-template-page-event-template footer .container .event-date {
  margin: 0 0 0.75rem;
  font-size: 18px;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-date {
    display: none;
  }
}
body.page-template-page-event-template footer .container .event-title {
  font-size: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-title {
    display: none;
  }
}
body.page-template-page-event-template footer .container .event-price-attend {
  text-align: right;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-price-attend {
    grid-column: 1/-1;
    justify-self: center;
  }
}
body.page-template-page-event-template footer .container .event-price-attend .event-price {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-price-attend .event-price {
    font-size: 20px;
  }
}
body.page-template-page-event-template footer .container .event-price-attend .btn {
  display: inline-block;
  width: max-content;
  background-color: #FDB512;
  border-color: #FDB512;
  color: #fff;
  font-size: 24px;
  margin: 0;
}
@media (max-width: 767px) {
  body.page-template-page-event-template footer .container .event-price-attend .btn {
    font-size: 20px;
  }
}
body.page-template-page-event-template footer .container .event-price-attend .btn:hover, body.page-template-page-event-template footer .container .event-price-attend .btn:focus {
  background-color: #414141;
}

body.blog .articles-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 2.5rem 2rem;
  padding: 1.75rem 0;
}
@media (min-width: 992px) {
  body.blog .articles-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  body.blog .articles-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.blog .articles-container article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content auto auto auto;
  gap: 1rem;
  border: 2px solid #ccc;
  padding-bottom: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.25s linear;
}
body.blog .articles-container article:hover, body.blog .articles-container article:focus-within {
  transform: scale(1.05);
}
body.blog .articles-container article .featured-image {
  background-color: #ededed;
  position: relative;
  width: 100%;
}
body.blog .articles-container article .featured-image a {
  display: block;
  width: 100%;
}
body.blog .articles-container article .featured-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  object-fit: cover;
  object-position: center;
}
body.blog .articles-container article .post-title {
  padding: 0 1.5rem;
}
body.blog .articles-container article .post-title h2 {
  font-size: clamp(20px, calc(5.8290993072px + 1.8475750577vw ), 28px);
  margin-bottom: 0;
}
body.blog .articles-container article .post-title h2 a {
  text-decoration: none;
  color: #414141;
}
body.blog .articles-container article .post-excerpt {
  padding: 0 1.5rem;
}
body.blog .articles-container article .post-link {
  align-self: flex-end;
  padding: 0 1.5rem 1.5rem;
}
body.blog .articles-container article .post-link a {
  display: block;
  width: max-content;
  margin: 0 auto;
}
body.blog .paginate-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}
body.blog .paginate-container a {
  color: #414141;
  text-decoration: none;
}
body.blog .paginate-container a.page-numbers:not(.prev):not(.next) {
  width: 20px;
  height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.blog .paginate-container span.page-numbers {
  width: 20px;
  height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.blog .paginate-container span.page-numbers.current {
  background-color: #FDB512;
  padding: 0.5rem;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
}

body.single .back-to-blog {
  background: #F5F5F5;
  padding: 0.75rem 0;
}
body.single .back-to-blog a {
  font-weight: bold;
  display: block;
  width: max-content;
  color: #306879;
  text-decoration: none;
}
body.single article {
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
body.single article .featured-image {
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ededed;
  position: relative;
  width: 100%;
}
body.single article .featured-image img {
  display: block;
  width: 100%;
  height: auto;
}
body.single article .post-title {
  padding: 0 0.5rem;
  width: 100%;
  max-width: 875px;
  margin-left: auto;
  margin-right: auto;
}
body.single article .post-title h2 {
  font-size: clamp(28px, calc(3.2009237875px + 3.233256351vw ), 42px);
  margin-bottom: 0;
  text-align: left;
}
body.single article .post-title h2 a {
  text-decoration: none;
  color: #414141;
}

body.page-template-page-goodrx-landing #wpadminbar {
  display: none;
}
body.page-template-page-goodrx-landing a.logo {
  max-width: 150px;
}
body.page-template-page-goodrx-landing a.logo img {
  width: 100%;
}
body.page-template-page-goodrx-landing header {
  display: flex;
  flex-wrap: wrap;
  background-color: #7f7f7f;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body.page-template-page-goodrx-landing header .drop-shadow-container {
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
body.page-template-page-goodrx-landing header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing header .container {
    flex-wrap: wrap;
  }
  body.page-template-page-goodrx-landing header .container .left-menu-container {
    width: 100%;
  }
  body.page-template-page-goodrx-landing header .container .left-menu-container ul {
    width: 100%;
    justify-content: space-between;
  }
}
body.page-template-page-goodrx-landing header .container ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  gap: 20px;
  margin: 0;
}
body.page-template-page-goodrx-landing header .container ul li {
  padding: 26px 20px;
  margin: 0;
}
@media (max-width: 1499px) {
  body.page-template-page-goodrx-landing header .container ul li {
    padding: 22px 10px;
  }
}
@media (max-width: 1199px) {
  body.page-template-page-goodrx-landing header .container ul li {
    padding: 22px 6px;
  }
}
@media (max-width: 475px) {
  body.page-template-page-goodrx-landing header .container ul li {
    padding: 18px 4px;
  }
}
body.page-template-page-goodrx-landing header .container ul li.active {
  border-bottom: 2px solid #6A5F17;
}
body.page-template-page-goodrx-landing header .container ul li a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1199px) {
  body.page-template-page-goodrx-landing header .container ul li a {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing header .container ul li a {
    font-size: 16px;
  }
}
@media (max-width: 475px) {
  body.page-template-page-goodrx-landing header .container ul li a {
    font-size: 14px;
  }
}
body.page-template-page-goodrx-landing header .container ul li a i {
  margin-right: 6px;
}
body.page-template-page-goodrx-landing header .container ul li a:hover, body.page-template-page-goodrx-landing header .container ul li a:focus {
  text-decoration: underline;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing header .container .right-menu-container {
    position: absolute;
    top: 20px;
    right: 0;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing header .container .right-menu-container {
    right: 20px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing header .container .right-menu-container ul.right-menu {
    display: block;
    position: fixed;
    top: 44px;
    right: -50vw;
    background-color: #fddb00;
    width: 40%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: right 0.33s ease-in-out;
  }
  body.page-template-page-goodrx-landing header .container .right-menu-container ul.right-menu li {
    padding: 20px;
    border-bottom: 2px solid #414141;
  }
  body.page-template-page-goodrx-landing header .container .right-menu-container ul.right-menu.show {
    right: 0;
  }
}
body.page-template-page-goodrx-landing header .container .right-menu-container a.mobile-toggle {
  display: none;
  color: #414141;
  font-size: 20px;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing header .container .right-menu-container a.mobile-toggle {
    display: block;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing header .container a.logo {
    margin: 0 auto;
  }
}
body.page-template-page-goodrx-landing header .sub-header {
  position: relative;
  z-index: 1;
  background-color: #FFF1B9;
  text-align: center;
  width: 100%;
  font-size: 14px;
}
body.page-template-page-goodrx-landing .hero-iframe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fddb00;
}
body.page-template-page-goodrx-landing .hero-iframe iframe {
  width: 100%;
}
body.page-template-page-goodrx-landing .pharmacy-container h4 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #414141;
  font-weight: 400;
}
body.page-template-page-goodrx-landing .pharmacy-container .pharmacy-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
}
body.page-template-page-goodrx-landing .pharmacy-container .pharmacy-logos img {
  max-width: 100px;
}
body.page-template-page-goodrx-landing .btn {
  background-color: #0f56a6;
  color: #fff;
  border-radius: 100px;
  text-transform: none;
  border: none !important;
  text-align: center;
  padding: 12px 20px;
  font-size: 18px;
}
body.page-template-page-goodrx-landing .btn:hover, body.page-template-page-goodrx-landing .btn:focus {
  background-color: #1d74de;
}
body.page-template-page-goodrx-landing .cards:nth-of-type(2) .image-container {
  max-width: 75px;
}
body.page-template-page-goodrx-landing .cards .single-card {
  margin: 0 auto;
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .cards .call-to-action-container .btn {
    width: max-content;
  }
}
body.page-template-page-goodrx-landing .text-cards {
  background-color: #263641;
}
body.page-template-page-goodrx-landing .text-cards .container .cards-container .single-card {
  flex: 1 0 330px;
  max-width: 330px;
}
@media (max-width: 475px) {
  body.page-template-page-goodrx-landing .text-cards .container .cards-container .single-card {
    flex: 1 0 100%;
  }
}
body.page-template-page-goodrx-landing .text-cards .container .cards-container .single-card span {
  color: #fddb00;
  display: block;
  text-align: center;
  font-size: clamp(3rem, 2rem + 3.3333vw, 4.5rem) !important;
  line-height: 1.4;
}
body.page-template-page-goodrx-landing .text-cards .fa-angle-down {
  display: none !important;
}
body.page-template-page-goodrx-landing .two-column-block {
  background-color: #16162a;
}
body.page-template-page-goodrx-landing .two-column-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1rem;
  grid-column-gap: 60px;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .two-column-block .container {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container h3 {
  font-size: 35px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .two-column-block .container h3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .two-column-block .container h3 {
    font-size: 28px;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container .left-column, body.page-template-page-goodrx-landing .two-column-block .container .right-column {
  padding: 1rem 1.25rem;
  text-align: center;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .two-column-block .container .left-column, body.page-template-page-goodrx-landing .two-column-block .container .right-column {
    padding: 0;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container .left-column p, body.page-template-page-goodrx-landing .two-column-block .container .right-column p {
  font-size: 25px;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .two-column-block .container .left-column p, body.page-template-page-goodrx-landing .two-column-block .container .right-column p {
    font-size: 20px;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container .left-column .cta-container span, body.page-template-page-goodrx-landing .two-column-block .container .right-column .cta-container span {
  color: #ffffff;
}
body.page-template-page-goodrx-landing .two-column-block .container .right-column {
  --gap: 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: var(--gap);
  grid-row-gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .two-column-block .container .right-column {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container .right-column h3 {
  grid-column: 1/-1;
}
body.page-template-page-goodrx-landing .two-column-block .container .right-column .single-block {
  background-color: #ffffff;
  padding: 25px 36px;
  display: flex;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .two-column-block .container .right-column .single-block {
    padding: 18px 24px;
  }
}
body.page-template-page-goodrx-landing .two-column-block .container .right-column .single-block:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: scale(1.05);
}
body.page-template-page-goodrx-landing .two-column-block .container .right-column .single-block p {
  color: #000000;
  font-size: 24px;
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .two-column-block .container .right-column .single-block p {
    font-size: 20px;
  }
}
body.page-template-page-goodrx-landing .faqs {
  counter-reset: faq;
  background-color: #16162a;
}
body.page-template-page-goodrx-landing .faqs h3 {
  text-align: center;
  color: #ffffff;
}
body.page-template-page-goodrx-landing .faqs .faqs-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  grid-template-rows: auto;
  align-items: flex-start;
  max-width: 875px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-template-page-goodrx-landing .faqs .faqs-list {
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer {
  margin-bottom: 13px;
  padding: 54px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer {
    padding: 36px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer {
    padding: 24px;
  }
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer:last-child {
  margin-bottom: 0;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  font-size: 34px;
  font-weight: get-weight("bold");
  letter-spacing: 0px;
  line-height: 1.2;
  margin: 0;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question:before {
  display: block;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question i {
  transition: transform 0.25s linear;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question.open {
  margin-bottom: 1.5rem;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question.open i {
  transform: rotate(45deg);
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question.open + .answer {
  padding-bottom: 0.5rem;
  padding-top: 0rem;
  height: max-content;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .question {
    font-size: 22px;
  }
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .answer {
  transition: all 0.25s linear;
  height: 0;
  overflow: hidden;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .answer .entry-content {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.3;
  padding: 0;
}
body.page-template-page-goodrx-landing .faqs .faqs-list .faq_question_answer .answer .entry-content p {
  margin: 0;
  padding: 0;
  color: #ffffff;
}
body.page-template-page-goodrx-landing .text-image-block {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
body.page-template-page-goodrx-landing .text-image-block .container {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  body.page-template-page-goodrx-landing .text-image-block .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-goodrx-landing .text-image-block .container {
    grid-template-columns: 7fr 9fr;
  }
}
@media (min-width: 1200px) {
  body.page-template-page-goodrx-landing .text-image-block + .text-image-block:nth-of-type(odd) .container, body.page-template-page-goodrx-landing .text-image-block + .text-image-block:nth-child(odd) .container {
    grid-template-columns: 9fr 7fr;
  }
}
body.page-template-page-goodrx-landing .text-image-block .text-container {
  padding: 28px 57px;
  order: 3;
}
@media (min-width: 992px) {
  body.page-template-page-goodrx-landing .text-image-block .text-container {
    max-width: 875px;
    order: unset;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .text-image-block .text-container {
    padding: 28px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .text-image-block .text-container {
    padding: 28px 20px;
  }
}
body.page-template-page-goodrx-landing .text-image-block .text-container p {
  font-size: 18px;
  line-height: 1.39;
  color: #414141;
  display: block;
  margin-bottom: 1.5rem;
}
body.page-template-page-goodrx-landing .text-image-block .text-container p:last-of-type {
  margin-bottom: 0;
}
body.page-template-page-goodrx-landing .text-image-block .title {
  margin-bottom: 1rem;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  body.page-template-page-goodrx-landing .text-image-block .title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .text-image-block .title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1.5rem !important;
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .text-image-block .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .text-image-block .title {
    font-size: 40px;
  }
}
body.page-template-page-goodrx-landing .text-image-block .image-container {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: none;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
body.page-template-page-goodrx-landing .text-image-block .image-container img,
body.page-template-page-goodrx-landing .text-image-block .image-container picture {
  display: block;
  border-radius: 50px;
  perspective: 1px;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-goodrx-landing .text-image-block + .text-image-block:nth-child(odd) .text-container, body.page-template-page-goodrx-landing .text-image-block + .text-image-block:nth-of-type(odd) .text-container {
    order: 2;
  }
}
body.page-template-page-goodrx-landing .testimonial-carousel {
  background-color: #16162a;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-goodrx-landing .testimonial-carousel .container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container.bg-image:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.31), 0 1px 0 0 rgba(0, 0, 0, 0.11), 0 1px 2px 0 rgba(0, 0, 0, 0.22);
}
body.page-template-page-goodrx-landing .testimonial-carousel .container h3 {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 992px) {
  body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider {
    max-width: 875px;
  }
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider {
    max-width: 100%;
  }
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .image-container {
  padding: 20px;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .image-container img {
  display: block;
  width: 100%;
  max-width: 275px;
  margin: 0 auto;
  border: 4px solid #FDB512;
  border-radius: 50%;
  overflow: hidden;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container {
  padding: 20px 45px;
  max-width: 550px;
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container {
    padding: 20px;
  }
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container p {
  color: #ffffff;
  font-size: 20px;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-slider .single-testimonial .text-container i {
  color: #FDB512;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls {
    position: relative;
    margin-bottom: 1rem;
  }
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls button {
  background-color: transparent;
  border: none;
  margin: 0 30px;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls button:hover i, body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls button:focus i {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls i {
  font-size: 40px;
  color: #ffffff;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls .slick-dots {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  margin: 0 auto;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls .slick-dots li {
  display: flex;
  width: 20px;
  height: 20px;
  background-color: #000000;
  border-radius: 50%;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls .slick-dots li.slick-active {
  background-color: #FDB512;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container .testimonial-controls .slick-dots li button {
  color: transparent;
}
body.page-template-page-goodrx-landing .testimonial-carousel .container.bg-image .slick-dots li {
  background-color: #ffffff !important;
}
@media (min-width: 768px) {
  body.page-template-page-goodrx-landing .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body.page-template-page-goodrx-landing .plans .single-plan {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
body.page-template-page-goodrx-landing .plans .single-plan .container {
  display: grid;
  grid-template-columns: 4fr 7fr;
  align-items: center;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .plans .single-plan .container {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-goodrx-landing .plans .single-plan .container .image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
body.page-template-page-goodrx-landing .plans .single-plan .container .image-container img {
  width: 100%;
  display: block;
}
body.page-template-page-goodrx-landing .plans .single-plan .container .text-container {
  padding: 20px 40px;
}
body.page-template-page-goodrx-landing .plans .single-plan .container .text-container h3 {
  font-size: 26px;
  margin: 0 0 1rem;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .plans .single-plan:nth-child(even) {
    background-color: #dbdbdb;
  }
}
@media (min-width: 768px) {
  body.page-template-page-goodrx-landing .plans .single-plan:nth-child(2n+3), body.page-template-page-goodrx-landing .plans .single-plan:nth-child(2n+4) {
    background: #dbdbdb;
  }
}
body.page-template-page-goodrx-landing .fw-text-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .fw-text-image-block {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-goodrx-landing .fw-text-image-block .text-container {
  max-width: 550px;
  margin: 0 auto;
  padding: 20px 40px;
}
body.page-template-page-goodrx-landing .fw-text-image-block .text-container h3 {
  font-size: 26px;
  margin: 0 0 1.5rem;
}
body.page-template-page-goodrx-landing .fw-text-image-block .text-container p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing .fw-text-image-block .image-container {
    padding: 20px 40px;
    order: -1;
  }
}
body.page-template-page-goodrx-landing .fw-text-image-block .image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  perspective: 1px;
  overflow: hidden;
}
body.page-template-page-goodrx-landing .drugs {
  background-color: #E5E5E5;
}
body.page-template-page-goodrx-landing .drugs h3 {
  font-size: 24px;
  color: #263641;
  text-align: left;
  max-width: 875px;
  font-weight: 500;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .drugs h3 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing .drugs h3 {
    font-size: 1.75rem;
  }
}
body.page-template-page-goodrx-landing .drugs h4 {
  font-size: 18px;
  color: #263641;
  text-align: left;
  max-width: 875px;
  font-weight: 200;
}
body.page-template-page-goodrx-landing .drugs .drugs-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: scroll hidden;
  padding: 20px 0 40px;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing .drugs .drugs-container {
    column-gap: 18px;
    row-gap: 18px;
  }
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug {
  flex: 1 0 185px;
  max-width: 185px;
  overflow: hidden;
  text-decoration: none;
  background-color: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: rgba(34, 34, 34, 0.1) 0px 4px 16px, rgba(34, 34, 34, 0.08) 0px 1px 2px;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug i {
  display: block;
  color: #0f56a6;
  font-size: 48px;
  margin-bottom: 0.5rem;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug a {
  display: block;
  width: 100%;
  text-decoration: none;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container {
  text-align: left;
  color: #000000;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span {
  display: block;
  width: 100%;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.drug-name {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 8px;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.drug-dosage {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  padding-bottom: 16px;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.drug-old-price {
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.drug-new-price {
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.1px;
  padding-bottom: 8px;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.savings {
  font-size: 16px;
  font-weight: 400;
}
body.page-template-page-goodrx-landing .drugs .drugs-container .single-drug .text-container span.savings span {
  display: inline-block;
  color: #0d864c;
  width: max-content;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container {
    padding-left: 0;
    padding-right: 0;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, max-content);
  gap: 1rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container {
    gap: 0;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu {
    grid-column: 1/-1 !important;
    grid-row: auto !important;
    border-bottom: 2px solid #e2e8f0;
  }
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu:first-child {
    border-top: 2px solid #e2e8f0;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul {
  list-style: none;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  transition: all 0.25s linear;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li:first-child {
    padding-right: 20px;
    margin-bottom: 0;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li:first-child a {
  display: none;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li:first-child a {
    display: block;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li:not(:first-child) {
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
  }
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li.show {
    height: auto;
    margin-bottom: 0.75rem;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li a {
  font-size: 1rem;
  color: #414141;
  text-decoration: none;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li a:hover, body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu ul li a:focus {
  color: #0f56a6;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.prices {
  grid-row: 1/4;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.health {
  grid-column-start: 2;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.company {
  grid-column-start: 3;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.app-links, body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms {
  grid-column-start: 4;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.app-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.app-links {
    text-align: center;
    justify-content: center;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.app-links strong {
  width: 100%;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form {
  padding: 1.5rem 0;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container {
    max-width: 100vw;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row {
    justify-content: center;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row img {
  max-width: 60px;
  margin-right: 0.75rem;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row p {
  display: block;
  width: 100%;
}
@media (max-width: 575px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row p {
    text-align: center;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input {
  padding: 1rem;
  width: 65%;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input[type=submit] {
  width: 35%;
  margin-left: -0.25rem;
  background-color: #0f56a6;
  color: #fff;
  border: 2px solid #0f56a6;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input[type=submit]:hover, body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input[type=submit]:focus {
  background-color: #fff;
  color: #0f56a6;
}
@media (max-width: 475px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input[type=submit] {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 475px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row input {
    width: 100%;
    display: block;
  }
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-menu.forms form .form-container .form-row .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  left: 0;
}
body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-right-container {
  grid-column-start: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-right-container {
    grid-column: 1/-1;
    grid-row: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-right-container .footer-menu {
    max-width: 875px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-right-container .footer-menu {
    border: none;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .top-footer-container .footer-right-container {
    margin-top: 1rem;
    padding-right: 20px;
    padding-left: 20px;
  }
}
body.page-template-page-goodrx-landing footer .container .bottom-footer-container {
  border-top: 1px solid #ccc;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .bottom-footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
}
body.page-template-page-goodrx-landing footer .container .bottom-footer-container > * {
  width: max-content;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .bottom-footer-container > * {
    justify-self: center;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .container .bottom-footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.page-template-page-goodrx-landing footer .container .bottom-footer-container ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 0;
  max-width: 100vw;
}
@media (max-width: 991px) {
  body.page-template-page-goodrx-landing footer .container .bottom-footer-container ul {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.page-template-page-goodrx-landing footer .container .bottom-footer-container ul li a {
  text-decoration: none;
  color: #414141;
}
body.page-template-page-goodrx-landing footer .container .bottom-footer-container ul li a i {
  font-size: 24px;
}
body.page-template-page-goodrx-landing footer .disclaimer-container {
  background-color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  body.page-template-page-goodrx-landing footer .disclaimer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.page-template-page-goodrx-landing footer .disclaimer-container .disclaimers {
  padding-bottom: 2rem;
}
body.page-template-page-goodrx-landing footer .disclaimer-container .footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3333rem;
}
body.page-template-page-goodrx-landing footer .disclaimer-container .footer-logos a img {
  max-height: 96px;
  height: auto;
  width: auto;
  max-width: 100%;
}

body.page-template-page-form-sidebar .form-sidebar-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 60px;
  row-gap: 1rem;
  padding-top: 1.5rem;
}
@media (max-width: 991px) {
  body.page-template-page-form-sidebar .form-sidebar-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  body.page-template-page-form-sidebar .form-sidebar-container {
    grid-template-columns: 1fr;
  }
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield_html h3 {
  font-size: clamp(25px, calc(19.6859122402px + 0.6928406467vw ), 28px);
  color: #306879;
  margin-bottom: 1rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #414141;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gsection .gsection_title {
  display: none;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .gfield_radio {
  display: flex;
  column-gap: 1.5rem;
  font-size: 22px;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .ginput_container_number {
  max-width: 225px;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .gfield_checkbox label {
  font-size: 1rem;
  line-height: 1.5;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .gfield_checkbox label a {
  color: #306879;
  font-weight: 600;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .gfield_checkbox .gchoice {
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gfield .gfield_checkbox .gchoice input {
  margin-top: 6px;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gform_footer {
  justify-content: center;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gform_footer [type=submit] {
  background-color: #306879;
  color: #fff;
}
body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gform_footer [type=submit]:hover, body.page-template-page-form-sidebar .form-sidebar-container .form-container form .gform_footer [type=submit]:focus {
  background-color: #4697b0;
}
body.page-template-page-form-sidebar .form-sidebar-container aside {
  background-color: #306879;
  padding: 1.75rem 1.667rem;
}
body.page-template-page-form-sidebar .form-sidebar-container aside * {
  text-align: center;
  color: #fff;
}
body.page-template-page-form-sidebar .form-sidebar-container aside p {
  font-size: clamp(18px, calc(-1.0769230769px + 1.9230769231vw ), 22px);
}
body.page-template-page-form-sidebar .form-sidebar-container aside h3 {
  font-size: clamp(25px, calc(5.5150115473px + 2.5404157044vw ), 36px);
}

/*# sourceMappingURL=base.css.map */
