@charset "UTF-8";
/* Global Elements and Settings */
:root {
  --sc-color-primary: #E84A43;
  --sc-color-primary-h: 3;
  --sc-color-primary-s: 78%;
  --sc-color-primary-l: 59%;
  --sc-color-secondary: #e0ae6d;
  --sc-color-secondary-h: 34;
  --sc-color-secondary-s: 65%;
  --sc-color-secondary-l: 65%;
  --sc-header-bg: #0860a9;
  --sc-footer-color: #6EA8D6;
  --sc-color-blue: #005ca6;
  --sc-color-blue-lighter: #0076bc;
  --sc-max-width: 1170px;
  --sc-max-compact-width: 950px;
  --rmf-bp-small: 576px;
  --rmf-bp-medium: 768px;
  --rmf-bp-large: 992px;
  --rmf-bp-xlarge: 1200px;
  --sc-font-family: "Gotham", Helvetica, Arial, sans-serif;
  --sc-input-height: 52px;
  --sc-menu-link-color-hover: var(--sc-shade-lightest);
}

@media screen and (min-width: 768px) {
  :root {
    --sc-input-height: 62px;
  }
}
a:not([class]) {
  color: var(--sc-footer-color);
  transition: color 50ms linear;
}

a:not([class]):hover {
  color: var(--sc-color-primary);
}

a.anything {
  color: red;
}

p {
  font-size: var(--sc-font-medium);
}

/* Components */
.SC-Accordion_header_heading.sc-expanded {
  white-space: wrap;
  font-size: var(--sc-font-medium);
  position: relative;
}
@media screen and (min-width: 768px) {
  .SC-Accordion_header_heading.sc-expanded {
    font-size: 23px;
  }
}
.SC-Accordion_header_heading.sc-expanded::before {
  content: ">";
}
.SC-Accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.SC-Accordion_content.is-expanded {
  max-height: 600px;
  overflow-y: auto;
}

.SC-AccountPage {
  background-image: linear-gradient(to bottom, #DDDFE7 280px, white 180px, white 0%, white 100%);
  padding-bottom: var(--sc-spacing-large);
}

@media screen and (min-width: 768px) {
  .SC-AccountPage {
    background-image: linear-gradient(to right, #DDDFE7 40%, white 40%, white 0%, white 100%);
    padding-top: var(--sc-spacing-xxlarge);
    padding-bottom: var(--sc-spacing-xxlarge);
  }
}
.SC-AccountPage_content {
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .SC-AccountPage .SC-Grid_sidebar {
    width: auto;
    padding: var(--sc-spacing-small) var(--sc-spacing-base);
  }
}
@media only screen and (min-width: 1440px) {
  .SC-AccountPage .SC-Grid_sidebar {
    padding: var(--sc-spacing-small) var(--sc-spacing-xlarge);
  }
}
.SC-AccountPage .SC-Field_label,
.SC-AccountPage .SC-Field_input {
  font-weight: 300;
}

@media only screen and (max-width: 992px) {
  .SC-AccountPage table:not(.pika-table) th {
    display: none;
  }
  .SC-AccountPage table:not(.pika-table) td {
    display: block;
    margin-bottom: 0.25em;
    padding-left: 8em;
    text-indent: -8em;
    word-break: break-all;
  }
  .SC-AccountPage table:not(.pika-table) td:first-child {
    padding-top: 0.5em;
  }
  .SC-AccountPage table:not(.pika-table) td:last-child {
    padding-bottom: 0.5em;
  }
  .SC-AccountPage table:not(.pika-table) td:before {
    content: " ";
    display: inline-block;
    text-indent: 0;
    width: 8em;
  }
  .SC-AccountPage table:not(.pika-table) td[data-th]:before {
    content: attr(data-th) ": ";
    font-weight: 700;
  }
}
@media screen and (min-width: 992px) {
  .SC-AccountPage table:not(.pika-table) {
    width: 100%;
    min-width: 0;
  }
}
.SC-AccountPage table:not(.pika-table) {
  font-weight: 300;
}

@media only screen and (min-width: 576px) {
  .SC-AccountPage table:not(.pika-table) td {
    white-space: wrap;
    word-break: break-all;
  }
}
.SC-AccountPage h2,
.SC-AccountPage h3,
.SC-AccountPage h4,
.SC-AccountPage .SC-Button,
.SC-AccountPage .SC-PageHeader_heading,
.SC-AccountPage table:not(.pika-table) th {
  font-weight: 500;
}

@media only screen and (min-width: 768px) {
  .SC-AccountPage .SC-Grid {
    display: grid;
    grid-template-rows: [sidebar] minmax(0, auto) [main] minmax(0, 1fr) [summary] minmax(0, auto);
  }
}
.SC-AccountPage .SC-Grid_main {
  min-width: 0;
}

.SC-Article p, li {
  font-size: var(--sc-font-medium);
}

#SC-articles-show #SC-Main > .sc-container {
  max-width: 1200px;
}

#SC-articles-show #SC-Main > .sc-container .SC-PageHeader_heading {
  text-transform: uppercase;
}

.SC-ArticleCard-vertical {
  border: 1px solid #ccc;
  padding: var(--sc-spacing-base);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 576px) {
  .SC-ArticleCard-vertical {
    padding: 15px;
  }
}
.SC-ArticleCard-vertical .SC-ArticleCard_image {
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.SC-ArticleCard-vertical .SC-ArticleCard_heading {
  font-size: var(--sc-font-base);
}
@media screen and (min-width: 992px) {
  .SC-ArticleCard-vertical .SC-ArticleCard_heading {
    font-size: var(--sc-font-medium);
  }
}
.SC-ArticleCard-vertical .SC-ArticleCard_summary {
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 100px;
  position: relative;
  font-size: 14px;
}
.SC-ArticleCard-vertical .SC-ArticleCard_summary p, .SC-ArticleCard-vertical .SC-ArticleCard_summary ul, .SC-ArticleCard-vertical .SC-ArticleCard_summary h2, .SC-ArticleCard-vertical .SC-ArticleCard_summary h3, .SC-ArticleCard-vertical .SC-ArticleCard_summary h4 {
  font-size: inherit;
}
.SC-ArticleCard-vertical .SC-ArticleCard_summary:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.SC-ArticleCard-vertical .SC-ArticleCard_footer {
  margin-top: auto;
  padding-top: 10px;
}
.SC-ArticleCard-vertical .SC-ArticleCard_footer > p {
  margin-bottom: 0;
  font-size: inherit;
}

.SC-Banner {
  background-position: center;
}

.SC-Button {
  color: #ffffff;
}

.SC-Button:disabled {
  background-color: var(--sc-color-primary);
  color: #ffffff;
  opacity: 0.5;
}

.SC-Button-blue {
  background-color: var(--sc-color-blue-lighter);
}

.SC-Card-floating {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.SC-ContainerBackground-curve-background-grey {
  background: url(https://res.cloudinary.com/hnymxdy5j/image/upload/v1747196816/media/00dhr00000ihql8mad/curve-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.SC-ContainerBackground-curve-background-blue {
  background: url(https://res.cloudinary.com/hnymxdy5j/image/upload/v1747206410/media/00dhr00000ihql8mad/download-2.png) no-repeat center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.SC-ContainerBackground-blue {
  background-image: linear-gradient(-225deg, #0D7BD4 0%, #044881 100%);
  -webkit-box-shadow: inset 0 5px 21px 0 rgba(0, 0, 0, 0.47);
  -moz-box-shadow: inset 0 5px 21px 0 rgba(0, 0, 0, 0.47);
  box-shadow: inset 0 5px 21px 0 rgba(0, 0, 0, 0.47);
}

.SC-ContainerBackground-light-blue {
  background-color: #91C9F6;
}

.SC-ContainerBackground-blue,
.SC-ContainerBackground-curve-background-blue {
  color: white;
}

.SC-ContentBlockContainer {
  padding: var(--sc-spacing-base);
}

.SC-ContentBlockContainer.offset {
  background-image: linear-gradient(to right, #044881 0%, #0D7BD4 100%);
  background-color: #075ca2;
}

@media screen and (min-width: 992px) {
  .SC-ContentBlockContainer.offset {
    background-image: linear-gradient(to right, white 40%, #044881 40%, #044881 0%, #0D7BD4 100%);
    background-color: #075ca2;
  }
}
@media screen and (min-width: 992px) {
  .SC-ContentBlockContainer_header,
  .SC-ContentBlockContainer_body:not(.sc-expand),
  .SC-ContentBlockContainer_body:not(.sc-expanded),
  .SC-ContentBlockContainer_footer {
    max-width: var(--sc-max-width);
  }
}
@media screen and (min-width: 992px) {
  .SC-ContentBlockContainer_header.sc-compacted-content,
  .SC-ContentBlockContainer_body.sc-compacted-content,
  .SC-ContentBlockContainer_footer.sc-compacted-content {
    max-width: var(--sc-max-compact-width);
  }
}
.SC-ContentBlockContainer_header h2 {
  font-size: 24px;
}

@media screen and (min-width: 768px) {
  .SC-ContentBlockContainer_header h2 {
    font-size: var(--sc-font-xxlarge);
  }
}
.SC-ContentBlockContainer .sc-expanded {
  padding: 0;
  max-width: 100%;
}

#SC-ContentBlockContainer-address-lookup,
#SC-ContentBlockContainer-address-container {
  margin-top: -150px;
  position: relative;
  z-index: 2;
}

#SC-ContentBlockContainer-become-a-partner-benefits {
  color: white;
}

@media screen and (min-width: 992px) {
  #SC-CB-become-a-partner-form {
    margin-right: -100px;
  }
}
@media screen and (min-width: 992px) {
  #SC-ContentBlockContainer-become-a-partner-form-container {
    margin-top: var(--sc-spacing-xxlarge);
    margin-bottom: var(--sc-spacing-xxlarge);
    padding-top: var(--sc-spacing-xxlarge);
    padding-bottom: var(--sc-spacing-xxlarge);
  }
}
@media screen and (max-width: 576px) {
  #SC-CB-news-information-news-feed .SC-CardGrid {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 992px) {
  #SC-ContentBlockContainer-meet-the-chiefs-index-container .SC-ContentBlockContainer_body.sc-one-third-two-thirds {
    gap: var(--sc-spacing-xxlarge);
  }
}
#FAQs .faq-header {
  cursor: pointer;
  color: var(--sc-color-blue);
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 10px;
}

#FAQs .faq-header:hover {
  color: #3a90d7;
}

#FAQs .faq-header:before {
  content: "> ";
}

#FAQs .faq-answer {
  margin-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease-in-out;
}

#FAQs .faq-answer.active {
  max-height: 600px;
}

.SC-Field {
  max-width: 100%;
}
.SC-Field_input:not(.SC-Field-stripe) {
  padding: var(--sc-spacing-medium) var(--sc-spacing-base);
  line-height: var(--sc-spacing-base);
  border: 1px solid #bfc4ce;
  background-color: #fff;
  border-radius: 35px;
  color: #000;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 10px 50%;
  appearance: none;
  height: unset;
  font-size: var(--sc-font-small);
}
@media screen and (min-width: 768px) {
  .SC-Field_input:not(.SC-Field-stripe) {
    font-size: var(--sc-font-base);
    padding: var(--sc-spacing-base) 45px;
    margin-bottom: 0;
  }
}
.SC-Field_input:not(.SC-Field-stripe)#username__login {
  background-image: url(https://res.cloudinary.com/hd9verjiv/image/upload/v1743648740/media/00DHr00000IHql8MAD/mail_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg);
}
.SC-Field_input:not(.SC-Field-stripe)#password__login {
  background-image: url(https://res.cloudinary.com/hd9verjiv/image/upload/v1743648762/media/00DHr00000IHql8MAD/lock_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.svg);
}
.SC-Field_input:not(.SC-Field-stripe):focus, .SC-Field_input:not(.SC-Field-stripe):active {
  background-color: #F9F9F9;
}
.SC-Field_input:disabled, .SC-Field_input:disabled:active, .SC-Field_input:disabled:focus {
  background-color: var(--sc-shade-lightest);
  color: var(--sc-shade-neutral);
  cursor: not-allowed;
  pointer-events: none;
  caret-color: transparent;
}
.SC-Field-stripe {
  border-radius: 500px;
  border: 1px solid #bfc4ce;
}
.SC-Field_select {
  box-sizing: border-box;
  padding: 20px 45px;
  border-color: #bfc4ce;
  background-color: #fff;
  border-radius: 50px;
  height: auto;
  width: 100%;
  max-width: unset;
  outline-color: #bfc4ce;
  outline-width: 2px;
}
.SC-Field_select-downloads {
  min-height: 50px;
}
@media screen and (min-width: 992px) {
  .SC-Field_select-downloads {
    min-height: 60px;
    min-width: 155%;
  }
}
.SC-Field_search {
  min-height: 60px;
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  outline: none;
  border: 1px solid var(--sc-shade-lightest);
  padding-left: 50px;
}
.SC-Field_search::placeholder {
  color: var(--sc-shade-darkest);
}
.SC-Field_search ~ svg {
  left: 22px;
  width: 16px;
  top: 48%;
}
@media screen and (min-width: 992px) {
  .SC-Field_search {
    min-height: 70px;
  }
}
.SC-Field_textarea {
  border: 1px solid #bfc4ce;
}

.SC-Footer_top {
  flex-wrap: wrap;
  justify-content: center;
}

.SC-Footer_logo img {
  width: 198px;
}

.SC-Footer_top .footer-links {
  justify-content: center;
}

.SC-Footer_bottom {
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.SC-Footer_bottom .SC-Footer_copyright {
  color: var(--sc-footer-color);
}

.SC-Footer_icon {
  padding: 8px;
  border-radius: 50%;
  background-color: white;
}

.SC-Footer_social .SC-Footer_icon:hover svg {
  fill: var(--sc-color-primary);
}

.SC-Footer_social .SC-Footer_icon svg {
  fill: var(--sc-color-blue);
}

@media screen and (min-width: 768px) {
  .SC-Footer_top {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .SC-Footer_bottom {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .SC-Footer_top .footer-links {
    justify-content: space-between;
  }
}
.SC-Footer .footer-top, .SC-Footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.SC-Footer .footer-top .logo-link img, .SC-Footer .footer-bottom .logo-link img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.SC-Footer .footer-top .SC-Menu, .SC-Footer .footer-bottom .SC-Menu {
  width: auto;
}

.SC-Footer .SC-Menu_link {
  color: var(--sc-footer-color);
}

.SC-Footer .SC-Menu_link:hover, .SC-Footer .SC-Menu_link:focus, .SC-Footer .SC-Menu_link:active {
  color: white;
}

.SC-Footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.SC-Footer .footer-bottom p {
  font-size: 16px;
  color: var(--sc-footer-color);
}

.SC-Form {
  background-color: #ffffff;
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.SC-Header {
  z-index: 4;
  background-image: linear-gradient(-225deg, #0D7BD4 0%, #044881 100%);
}

.SC-Header a.SC-Menu_link:hover svg, .SC-Header a.SC-Menu_link.link-active svg {
  fill: white;
}

.SC-Header .SC-Header_top {
  background-color: #202020;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  padding: 20px;
}

@media screen and (max-width: 1200px) {
  .SC-Header .SC-Header_top {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 992px) {
  .SC-Header .SC-Header_top .SC-Menu_link {
    font-size: 0px;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .SC-Header .SC-Header_top .SC-Menu_link {
    font-size: 0px;
  }
}
@media screen and (max-width: 600px) {
  .SC-Header .SC-Header_top .SC-Menu_link {
    padding: 5px;
    margin-right: 5px;
  }
}
.SC-Header .SC-Header_inner {
  padding: 20px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.SC-Header .SC-Navbar_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 10px 20px;
}

.SC-Header .SC-Navbar_inner .logo-link {
  flex-shrink: 0;
}

.SC-Header .SC-Navbar_inner .logo-link img {
  flex-shrink: 0;
  height: 60px;
  margin: 0 0 -5px;
  width: auto;
}

.SC-Header .SC-Navbar_inner .SC-Menu a {
  color: white;
}

@media screen and (max-width: 992px) {
  .SC-Header .SC-Navbar_inner, .SC-Header.scrolled .SC-Navbar_inner {
    justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .SC-Header .SC-Navbar_inner,
  .SC-Header.scrolled .SC-Navbar_inner {
    justify-content: space-between;
  }
}
.SC-IconCard {
  display: flex;
  align-items: center;
  gap: 20px;
}

.SC-IconCard_image {
  max-width: 30px;
  width: 80px;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .SC-IconCard_image {
    width: 80px;
  }
}

.SC-IconCard_headline h3 {
  font-size: var(--sc-font-base);
}
@media screen and (min-width: 992px) {
  .SC-IconCard_headline h3 {
    font-size: var(--sc-font-large);
  }
}

.SC-IconCard_body * {
  color: black;
}

.SC-IconCard_image img {
  height: 100%;
  width: auto;
}

.SC-Icon-medium {
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 992px) {
  .SC-Icon-medium {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 992px) {
  .SC-Icon-medium {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .SC-Icon-medium {
    width: 40px;
    height: 40px;
  }
}
.SC-ImageBesideTextBGContainer {
  background-image: linear-gradient(to right, #0D7BD4 8%, #0D7BD4 0%, #044881 100%);
}

.SC-ImageBesideTextBGContainer img {
  margin: 80px 0 -150px auto;
}

.sc-offset .SC-ImageBesideText_image {
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  .SC-ImageTextOverlay .SC-Banner {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.SC-ImageTextOverlay .SC-Banner_heading,
.SC-ImageTextOverlay .SC-Banner_subheading {
  text-transform: uppercase;
  font-size: 45px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.SC-ImageTextOverlay .SC-Banner_subheading {
  margin: -20px 0 0;
  font-weight: normal;
}

.SC-ContainerBackground-blue .SC-imageBesideText_list {
  padding: 30px;
  border-radius: 8px;
  min-width: 35%;
  background-color: white;
  box-shadow: 19px 19px 38px 0 rgba(0, 0, 0, 0.2);
}

.SC-imageBesideText_list.list-container {
  padding: 30px 30px 10px;
}

.SC-ImageBesideText.sc-align-left > :first-child {
  order: 1;
}

@media only screen and (max-width: 575px) {
  .SC-ImageBesideText.sc-align-right {
    flex-direction: column-reverse;
  }
  .SC-ImageBesideTextBGContainer img {
    margin: 0;
  }
}
.SC-Image.thumbnail {
  max-width: 100px;
}

.SC-Link {
  color: var(--sc-footer-color);
  text-decoration: none;
}

.SC-Menu.dropdown:not(.tier1) {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 0;
  padding: var(--sc-spacing-small);
}
.SC-Menu.tier1.dropdown.is-active {
  background: rgba(0, 0, 0, 0.85);
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .SC-Menu.tier1.dropdown.is-active {
    background: rgba(0, 0, 0, 0.75);
  }
}
.SC-Menu.tier1.dropdown.is-active .SC-Menu_button {
  color: white;
  margin-bottom: var(--sc-spacing-tiny);
}
.SC-Menu.tier2.dropdown.is-active {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-animation: 0.3s animationSubMenu;
  -o-animation: 0.3s animationSubMenu;
  animation: 0.3s animationSubMenu;
}
@media screen and (max-width: 768px) {
  .SC-Menu.tier2.dropdown.is-active {
    background: rgba(0, 0, 0, 0.95);
  }
}
.SC-Menu.tier2.dropdown {
  background: rgba(0, 0, 0, 0.75);
}
@media screen and (min-width: 768px) {
  .SC-Menu.tier2.dropdown {
    background: transparent;
    box-shadow: none;
  }
}
.SC-Menu.tier2.dropdown .SC-Menu_item.tier2 .SC-Menu_link {
  background-color: rgba(0, 0, 0, 0.75);
  padding-top: var(--sc-spacing-small);
  padding-bottom: var(--sc-spacing-small);
}
.SC-Menu.tier2.dropdown .SC-Menu_item.tier2 .SC-Menu_link:hover {
  background-color: rgb(0, 0, 0);
}
@media only screen and (min-width: 768px) {
  .SC-Menu.tier1.dropdown > li > a:not(.Icon) {
    padding: var(--sc-spacing-tiny) var(--sc-spacing-medium);
  }
}
.SC-Menu_link {
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: all 0.2s linear;
  color: white;
  padding: var(--sc-spacing-tiny) var(--sc-spacing-base);
  font-weight: 300;
  flex-shrink: 0;
  gap: var(--sc-spacing-tiny);
}
.SC-Menu_link svg {
  transition: all 0.2s linear;
  fill: var(--sc-color-primary);
  width: 35px;
}
.SC-Menu_link.sc-top-item {
  border-radius: 35px;
}
.SC-Menu_link.sc-top-item:hover {
  background-color: var(--sc-color-primary);
}
.SC-Menu_link.sc-top-item.link-active {
  background-color: var(--sc-color-primary);
}
.SC-Menu_item {
  position: relative;
  transition: all 0.35s ease;
}
.SC-Menu_item.tier1 > .SC-Menu_link {
  border-radius: 30px;
}
.SC-Menu_item.tier1 > .SC-Menu_link:hover {
  background-color: var(--sc-color-primary);
}
.SC-Menu_item.tier2 {
  font-size: var(--sc-font-base);
}
.SC-Menu_item.tier2:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background-color: var(--sc-color-primary);
}
.SC-Menu_item.subtle, .SC-Menu_item.tier2:not(.parent) > a, .SC-Menu_item.tier3:not(.parent) > a {
  opacity: 1;
}
.SC-Menu_item.parent:not(.dropdown) {
  max-width: 100%;
  margin-bottom: 0;
}
.SC-Menu.tier3 .SC-Menu_link {
  font-size: var(--sc-font-small);
  padding-left: var(--sc-spacing-large);
}

#SC-Menu-nav-menu > .SC-Menu_button {
  text-align: right;
}

@media screen and (min-width: 992px) {
  .SC-Modal_inner-downloads .SC-Modal_inner_body {
    overflow: visible;
  }
}
.SC-Modal_close {
  position: absolute;
  top: -10px;
  right: -10px;
  height: 30px;
  width: 30px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  padding: calc(var(--sc-spacing-tiny) + 2);
}

@media screen and (min-width: 768px) {
  .SC-Modal_close {
    top: -20px;
    right: -20px;
    height: 40px;
    width: 40px;
  }
}
.SC-Modal_inner {
  width: 850px;
}

.SC-Modal_inner_image {
  height: 100%;
  width: 100%;
}

.SC-Modal_inner_image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.SC-Navbar {
  background-color: transparent;
  transition: padding 0.5s ease;
  padding: 7px 0;
}
.SC-Navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: var(--sc-spacing-tiny) 0;
}
.SC-Navbar.sticky .SC-Navbar_inner {
  max-width: 100%;
  justify-content: space-between;
  padding: 5px 20px;
}
@media screen and (min-width: 768px) {
  .SC-Navbar.sticky .SC-Navbar_inner {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .SC-Navbar.sticky .SC-Menu.dropdown.tier1 {
    width: 100%;
    justify-content: flex-end;
  }
}

.SC-Notice-animated {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: opacity, transform;
}

.SC-Notice-animated.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.SC-Notice:not(.SC-Notice-alert) {
  background: hsl(149, 100%, 95%);
  color: hsl(149, 100%, 30%);
}

.SC-Notice-success {
  background: hsl(149, 100%, 95%);
  color: hsl(149, 100%, 30%);
}

.SC-Notice-warning {
  background: hsl(46, 91%, 85%);
  color: hsl(46, 91%, 20%);
  transition: all 0.25s ease-in-out;
}

.SC-PageNav_link:not(.button) {
  color: var(--sc-shade-dark);
}
.SC-PageNav_link:not(.button):hover, .SC-PageNav_link:not(.button):focus {
  color: var(--sc-color-blue);
}
.SC-PageNav_link:not(.button):hover .SC-PageNav_link_wrapper, .SC-PageNav_link:not(.button):focus .SC-PageNav_link_wrapper {
  color: var(--sc-color-blue);
}
.SC-PageNav_link:not(.button).is-current {
  color: var(--sc-color-blue);
}
.SC-PageNav_link:not(.button).is-current .SC-PageNav_link_wrapper .sc-icon-no-fill {
  stroke: var(--sc-color-blue);
}
@media only screen and (min-width: 768px) {
  .SC-PageNav_content, .SC-PageNav_content.is-hidden {
    display: flex;
    flex-direction: column;
    gap: var(--sc-spacing-small);
  }
}

@media screen and (min-width: 768px) {
  .SC-PartnerSearch {
    min-width: 450px;
  }
}
.SC-PrivacyBanner {
  position: fixed;
  top: auto;
  bottom: 0;
  z-index: var(--sc-depth-overlay);
  box-shadow: var(--sc-shadow-2);
  background: rgba(0, 0, 0, 0.75);
  color: white;
}

.SC-PrivacyBanner_actions {
  flex-wrap: wrap;
}

.SC-PrivacyBanner_actions button,
.SC-PrivacyBanner_actions input[type=submit] {
  background-color: var(--sc-color-blue-lighter);
}

.SC-PrivacySettingsForm_inner {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  transition-duration: 1s;
  overflow-y: auto;
}

@media screen and (min-width: 992px) {
  .SC-PrivacySettingsForm_inner {
    max-width: 35vw;
  }
}
.SC-PrivacySettingsForm_header h3 {
  font-size: var(--sc-font-base);
}

.SC-PrivacySettingsForm_inner {
  font-size: calc(var(--sc-font-tiny) - 1px);
}

.SC-PrivacySettingsForm .SC-Accordion_header_icon {
  fill: var(--sc-shade-lightest);
}

.SC-PrivacySettingsForm p,
.SC-PrivacySettingsForm li {
  font-size: var(--sc-font-small);
}

.SC-ProfileForm {
  max-width: 750px;
}

#select-and-payment {
  max-width: 700px !important; /* overrides inline styles */
  /*
  .SC-Field_label[for^=billing_postal_code__payment__],
  [id^=billing_postal_code__payment__] {
    display: none;
  }*/
}
#select-and-payment menu {
  column-gap: var(--sc-spacing-small);
  row-gap: var(--sc-spacing-small);
}
#select-and-payment [data-tab] {
  max-width: 550px;
}
#select-and-payment p {
  font-size: var(--sc-font-micro);
}
#select-and-payment .Tab-button:nth-child(2n) {
  margin-left: 0;
}

.SC-Switch input:checked ~ .SC-Switch_control {
  background-color: #d5e9ff;
  border: 1px solid #3860be;
}

.SC-Switch_control {
  transition: all 0.2s ease-in 0s;
  -moz-transition: all 0.2s ease-in 0s;
  -o-transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.2s ease-in 0s;
  border: 1px solid #ddd;
}

.SC-Switch_control::before {
  background-color: #ffffff;
}

.SC-Switch input:checked ~ .SC-Switch_control::before {
  background-color: #3860be;
}

.testimonial {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px 40px 40px 90px;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 10px;
  width: 60vw;
  margin: 20px 0;
  color: white;
  position: relative;
}

.testimonial h3 {
  font-size: 40px;
  line-height: 1;
}

.testimonial p {
  line-height: 1.5;
}

.testimonial:before, .testimonial:after {
  font-size: 80px;
  color: white;
  position: absolute;
  top: -10px;
}

.testimonial:before {
  content: "“";
  left: 0;
}

.testimonial:after {
  content: "”";
  right: 0;
}

@media screen and (max-width: 768px) {
  .testimonial {
    width: 100%;
    padding: 30px;
    grid-template-columns: 1fr;
  }
}
.testimonial.right {
  padding: 40px 90px 40px 40px;
  float: right;
}

/* Custom Elements, Blocks and Sections */
#address-form label {
  padding: 0 10px;
}

#address-form #manual-address-section {
  max-height: 500px;
  height: 100%;
  overflow: hidden;
  transition: max-height 400ms ease-in-out;
}

#address-form #manual-address-section[hidden] {
  max-height: 0px;
}

#address-form .separator {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) calc(50% - 1px), rgb(204, 204, 204) 50%, rgba(255, 255, 255, 0) calc(50% + 1px), rgba(255, 255, 255, 0) 100%) no-repeat 50%;
}

#address-form .separator span {
  background-color: var(--sc-color-blue);
  padding: 0 10px;
}

#address-form .SC-Button:disabled, #address-form .SC-Button.disabled, #address-form .Button:disabled, #address-form .Button.disabled {
  background-color: var(--sc-color-primary);
  opacity: 0.5;
}

#address-form #customer-information-section-toggle[hidden] {
  opacity: 0;
  pointer-events: none;
}

#address-form #customer-information-section .SC-Panel_header {
  display: none;
}

#address-form #customer-information-section .SC-Field_label {
  font-size: 18px;
  color: white;
}

#address-form #customer-information-section .SC-Field_label:after {
  content: ":";
  margin-left: -5px;
}

#address-form #customer-information-section .SC-Field_label small {
  display: none;
}

.sc-autocomplete-items {
  position: absolute;
  border: 1px solid var(--sc-shade-lighter);
  border-bottom: none;
  border-top: none;
  z-index: var(--sc-depth-foreground);
  top: 100%;
  left: 0;
  right: 0;
  max-height: 40vh;
  overflow-y: auto;
}

@media screen and (min-width: 992px) {
  .sc-autocomplete-items {
    max-height: 55vh;
  }
}
.sc-autocomplete-items .sc-autocomplete-option {
  padding: var(--sc-spacing-small);
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid var(--sc-shade-lighter);
}

.sc-autocomplete-items .sc-autocomplete-option:hover {
  background-color: hsla(var(--sc-color-primary-h), var(--sc-color-primary-s), 95%, 1);
  color: hsla(var(--sc-color-primary-h), var(--sc-color-primary-s), 50%, 1);
}

.sc-autocomplete-active {
  background-color: hsla(var(--sc-color-primary-h), var(--sc-color-primary-s), 95%, 1) !important;
  color: hsla(var(--sc-color-primary-h), var(--sc-color-primary-s), 50%, 1);
}

#checkout-page .checkout-header, #make-a-payment .checkout-header {
  background: blue url("https://res.cloudinary.com/hnymxdy5j/image/upload/v1747206410/media/00dhr00000ihql8mad/download-2.png") no-repeat 50% 50%;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 1.25rem;
  position: relative;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  #checkout-page .checkout-header, #make-a-payment .checkout-header {
    font-size: 2.25rem;
  }
}

#checkout-page .checkout-header *, #make-a-payment .checkout-header * {
  color: white;
}

#checkout-page .checkout-header .checkout-header-number, #make-a-payment .checkout-header .checkout-header-number {
  position: absolute;
  top: -3px;
  right: 0;
  font-size: 2.5rem;
  line-height: 1em;
  color: var(--sc-footer-color);
}
@media screen and (min-width: 768px) {
  #checkout-page .checkout-header .checkout-header-number, #make-a-payment .checkout-header .checkout-header-number {
    font-size: 4.5rem;
  }
}

#checkout-page .payment-type-banner, #make-a-payment .payment-type-banner {
  background-color: #91C9F6;
  color: #346892;
  padding: 30px 40px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 2em;
}

#checkout-page .payment-type-banner .banner-annual-price, #make-a-payment .payment-type-banner .banner-annual-price {
  font-size: 2em;
}

#checkout-page #checkout-payment-plan #plan-types, #make-a-payment #checkout-payment-plan #plan-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media screen and (max-width: 768px) {
  #checkout-page #checkout-payment-plan #plan-types, #make-a-payment #checkout-payment-plan #plan-types {
    grid-template-columns: 1fr;
  }
}
#checkout-page #checkout-payment-plan .plan-type-link, #make-a-payment #checkout-payment-plan .plan-type-link {
  padding: 20px 10px;
  background-color: #fbfbfc;
  box-shadow: inset 0 0 0 1px #e0e0e1;
  transition: box-shadow 200ms ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

#checkout-page #checkout-payment-plan .plan-type-link:after, #make-a-payment #checkout-payment-plan .plan-type-link:after {
  transition: opacity 200ms ease-in-out;
  font-family: "Icomoon";
  content: "\ea10";
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 15px;
  color: white;
  width: 26px;
  height: 26px;
  background: #044a85;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

#checkout-page #checkout-payment-plan .plan-type-link *, #make-a-payment #checkout-payment-plan .plan-type-link * {
  pointer-events: none;
}

#checkout-page #checkout-payment-plan .plan-type-link .link-type, #make-a-payment #checkout-payment-plan .plan-type-link .link-type {
  font-size: 20px;
  color: #afafaf;
  text-transform: uppercase;
  letter-spacing: -0.52px;
  text-align: center;
}

#checkout-page #checkout-payment-plan .plan-type-link .link-price, #make-a-payment #checkout-payment-plan .plan-type-link .link-price {
  color: #000;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  position: relative;
}

#checkout-page #checkout-payment-plan .plan-type-link .link-price:before, #make-a-payment #checkout-payment-plan .plan-type-link .link-price:before {
  content: "$";
  font-size: 20px;
  color: #afafaf;
  position: absolute;
  left: -12px;
  top: -7px;
}

#checkout-page #checkout-payment-plan .plan-type-link.discounted .discount-badge-container, #make-a-payment #checkout-payment-plan .plan-type-link.discounted .discount-badge-container {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  right: 0;
  pointer-events: none;
  height: 75px;
  width: 75px;
}

#checkout-page #checkout-payment-plan .plan-type-link.discounted .discount-badge, #make-a-payment #checkout-payment-plan .plan-type-link.discounted .discount-badge {
  position: absolute;
  bottom: -50px;
  text-align: center;
  right: -50px;
  background: var(--sc-color-primary);
  color: white;
  width: 100px;
  height: 100px;
  transform: rotate(-45deg);
}

#checkout-page #checkout-payment-plan .plan-type-link.discounted .link-original-price, #make-a-payment #checkout-payment-plan .plan-type-link.discounted .link-original-price {
  color: var(--sc-color-primary);
  text-decoration: line-through;
}

#checkout-page #checkout-payment-plan [data-selected=true] .plan-type-link, #make-a-payment #checkout-payment-plan [data-selected=true] .plan-type-link {
  box-shadow: inset 0 0 0 3px #044a85;
}

#checkout-page #checkout-payment-plan [data-selected=true] .plan-type-link:after, #make-a-payment #checkout-payment-plan [data-selected=true] .plan-type-link:after {
  opacity: 1;
}

#checkout-page .Tab-button, #make-a-payment .Tab-button {
  max-width: max-content;
  margin: 0 !important;
}

#checkout-page #SC-CheckoutShippingForm .SC-Panel_header.is-disabled, #make-a-payment #SC-CheckoutShippingForm .SC-Panel_header.is-disabled {
  display: none;
}

#checkout-page #SC-Checkout-CustomerInformation input[type=submit], #make-a-payment #SC-Checkout-CustomerInformation input[type=submit] {
  display: none;
}

#checkout-page .payment-type-banner.cart-total .SC-OrderTotal_line, #checkout-page .payment-type-banner.cart-total .SC-OrderTotal_line_total, #make-a-payment .payment-type-banner.cart-total .SC-OrderTotal_line, #make-a-payment .payment-type-banner.cart-total .SC-OrderTotal_line_total {
  font-size: 1.5rem;
}

#checkout-page #SC-PromoCode, #make-a-payment #SC-PromoCode {
  position: relative;
}

#checkout-page #SC-PromoCode .sc-promo-code-submit, #make-a-payment #SC-PromoCode .sc-promo-code-submit {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 50px;
  border-radius: 500px;
  height: 50px;
  background: var(--sc-color-secondary);
  border: none;
}

#checkout-page #SC-PromoCode .sc-promo-code-submit:before, #make-a-payment #SC-PromoCode .sc-promo-code-submit:before {
  font-family: "Icomoon";
  content: "\ea0a";
  font-size: 20px;
  color: white;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 9px);
}

#checkout-insurance-information {
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);
}

#checkout-insurance-information .SC-Field,
#checkout-insurance-information .SC-Field_input {
  margin-bottom: 0;
}

#checkout-insurance-information .sc-one-to-two-column {
  gap: var(--sc-spacing-medium);
}

#checkout-account-address {
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);
}

#SC-CheckoutShippingForm #billing-address {
  margin-top: var(--sc-spacing-xlarge);
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);
}

#SC-CheckoutShippingForm #checkout-accept-terms {
  margin-top: var(--sc-spacing-xlarge);
  padding-left: var(--sc-spacing-small);
  padding-right: var(--sc-spacing-small);
}

#SC-CheckoutShippingForm #billing-address .SC-Field {
  margin-bottom: 0;
}

#SC-CheckoutShippingForm #billing-address .SC-Fieldset_row.sc-grid {
  gap: var(--sc-spacing-small);
}

@media screen and (min-width: 992px) {
  #checkout-accept-terms label {
    font-size: var(--sc-font-large);
  }
}

#contact-us {
  position: relative;
  overflow: hidden;
}

#contact-us .background {
  position: absolute;
  top: 0;
  left: 30%;
  background: #DBE9F2;
  height: 100%;
  width: 100%;
}

#contact-us .background img {
  max-width: unset;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #contact-us .background {
    left: 0;
  }
}
#contact-us form {
  position: relative;
  margin: 80px 0;
  padding: 25px;
  max-width: 500px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 8px 8px 10px 0 rgba(0, 0, 0, 0.25);
}

.community-fire-services .icon-container {
  height: 130px;
  align-items: center;
}

.community-fire-services .icon-container {
  height: 130px;
  align-items: center;
}

[data-loader] {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  background: linear-gradient(-45deg, rgba(200, 199, 200, 0.5) 40%, rgba(250, 250, 250, 0.5) 50%, rgba(200, 200, 200, 0.5) 60%);
  background-size: 300%;
  background-position-x: 100%;
  animation: shimmer 1.25s infinite linear;
  backdrop-filter: saturate(100%) blur(3px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 100ms ease-in;
  position: absolute;
}

@keyframes shimmer {
  to {
    background-position-x: 0%;
  }
}
.footer-contact-info {
  gap: 0;
}

@media screen and (max-width: 576px) {
  .footer-contact-info {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .footer-contact-info > div:first-child {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
  }
}
.footer-contact-info .contact-type {
  font-size: var(--sc-font-xlarge);
}

@media screen and (max-width: 768px) {
  .footer-contact-info .contact-type {
    font-size: var(--sc-font-large);
  }
}
@media screen and (max-width: 576px) {
  .footer-contact-info .contact-type {
    font-size: var(--sc-font-medium);
  }
}
.footer-contact-info a.contact-link {
  font-size: var(--sc-font-xxlarge);
}

@media screen and (max-width: 768px) {
  .footer-contact-info a.contact-link {
    font-size: var(--sc-font-xlarge);
  }
}
@media screen and (max-width: 576px) {
  .footer-contact-info a.contact-link {
    font-size: var(--sc-font-large);
  }
}
.rmf-login-background {
  flex-grow: 1;
  background-image: linear-gradient(to right, white 40%, #044881 40%, #044881 0%, #0D7BD4 100%);
  background-color: #075ca2;
}

@media screen and (max-width: 768px) {
  .rmf-login-background {
    background-image: linear-gradient(to right, #044881 40%, #044881 0%, #0D7BD4 100%);
  }
}
@media screen and (min-width: 769px) {
  .rmf-login-background .login-final-icon {
    grid-column: 1/3;
  }
}
.meet-the-chief-link {
  max-width: 1000px;
  margin: 20px 0 40px;
}

.meet-the-chief-link h1 {
  font-size: 3rem;
  margin: 0;
}

.meet-the-chief-link h2, .meet-the-chief-link a {
  font-weight: bold;
  color: var(--sc-color-blue);
}

.meet-the-chief-link img {
  max-width: 200px;
  width: auto;
  align-self: flex-start;
}

@media screen and (max-width: 576px) {
  .meet-the-chief-link {
    flex-direction: column;
  }
  .meet-the-chief-link img {
    justify-self: center;
  }
}
.spco-section {
  position: relative;
}

.spco-section[data-loading] [data-loader] {
  z-index: 3;
  opacity: 1;
  pointer-events: unset;
}

/* Theme Utility Classes */
.sc-bg-primary {
  background-color: var(--sc-color-blue);
}

.sc-border-rounded-2 {
  border-radius: 50px;
}

.button {
  border-radius: 5px;
  border-style: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  background-color: var(--sc-color-primary);
  color: white;
  box-shadow: 10px 16px 40px rgba(51, 51, 51, 0.4);
  list-style: none;
  outline: none;
  padding: 18px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  min-width: 225px;
}

.button.rounded {
  border-radius: 60px;
}

.button-secondary {
  border-color: var(--sc-color-secondary) !important;
  background-color: var(--sc-color-secondary) !important;
}

.button:hover {
  box-shadow: none;
}

.sc-color-blue {
  color: var(--sc-color-blue);
}

.sc-color-white {
  color: #ffffff;
}

.sc-container {
  max-width: var(--sc-max-width);
}

.sc-font-micro {
  font-size: 13px;
}

.sc-font-light {
  font-weight: 300;
}

.sc-font-thin {
  font-weight: 300;
}

.sc-font-500 {
  font-weight: 500;
}

.rmf-link-blue {
  color: #044d89;
  transition: 50ms linear;
}

.rmf-link-blue:hover {
  color: #012746;
}

.sc-font-gigantic-responsive {
  font-size: var(--sc-font-large);
}

@media screen and (min-width: 576px) {
  .sc-font-gigantic-responsive {
    font-size: var(--sc-font-xlarge);
  }
}
@media screen and (min-width: 768px) {
  .sc-font-gigantic-responsive {
    font-size: var(--sc-font-gigantic);
  }
}
@media screen and (max-width: 576px) {
  .sc-one-third-two-thirds {
    grid-template-columns: 1fr;
  }
}
.sc-icon-no-fill {
  fill: none;
}

.required-field {
  position: relative;
}

.required-field:before {
  content: "*";
  font-size: 21px;
  color: #d0021b;
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 30px;
}

.section-header {
  margin-bottom: 60px;
  font-size: 37px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}

.section-header:after {
  height: 6px;
  width: 60px;
  background-color: var(--sc-color-secondary);
  border-radius: 50px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -35px;
}
@media screen and (max-width: 575px) {
  .section-header:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.sc-shadow-right-side {
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.2);
}

.sc-center-text {
  text-align: center;
}

@media screen and (max-width: 576px) {
  .text-center-from-small {
    text-align: center;
  }
  .justify-center-from-small {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .text-center-from-medium {
    text-align: center;
  }
  .justify-center-from-medium {
    justify-content: center;
  }
}
.sc-title-border {
  position: relative;
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .sc-title-border {
    margin-bottom: 70px;
  }
}
.sc-title-border::after {
  height: 6px;
  width: 60px;
  background-color: #deab69;
  border-radius: 50px;
  content: "";
  position: absolute;
  left: 0;
  bottom: -25px;
}

@media screen and (min-width: 768px) {
  .sc-title-border::after {
    bottom: -35px;
  }
}
.sc-max-750 {
  max-width: 750px;
}

@media only screen and (min-width: 1400px) {
  .sc-three-quarters-xlarge-and-up {
    width: 75%;
  }
}
@media only screen and (min-width: 992px) {
  .sc-grid-half-and-half {
    gap: var(--sc-spacing-xxlarge);
  }
}

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