@font-face {
  font-family: 'Georgia';
  src: url(/fonts/georgia.ttf);
}
@font-face {
  font-family: 'Georgia Bold';
  src: url(/fonts/georgiab.ttf);
}
@font-face {
  font-family: 'Helvetica Neue Medium';
  src: url(/fonts/HelveticaNeueMedium.otf);
}
@font-face {
  font-family: 'Helvetica Neue Bold';
  src: url(/fonts/HelveticaNeueBold.otf);
}

:root {
    --primary: #3F876C;
    --primaryLight: #ffba43;
    --secondary: #35402D;
    --secondaryLight: #E09751;
    --accent: #EFECE4;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --headerFontFamily: 'Georgia Bold', serif;
    --bodyFontFamily: 'Helvetica Neue Medium', sans-serif;
    --bodyFontFamilyBold: 'Helvetica Neue Bold', sans-serif;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 3rem;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--bodyFontFamily);
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.topper {
    font-size: var(--topperFontSize);
    font-family: var(--bodyFontFamily);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--secondaryLight);
    margin-bottom: 0.25rem;
    display: block;
}

.title {
    font-size: var(--headerFontSize);
    font-family: var(--headerFontFamily);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

section h1:not([style]) {
  font-size: var(--headerFontSize);
}

.text {
    font-size: var(--bodyFontSize);
    font-family: var(--bodyFontFamily);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}   

.mobile-only {
  display: none;
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #lang-toggle .flag-en {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  body.dark-mode #lang-toggle .flag-es {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  #lang-toggle {
    display: block;
    position: absolute;
    bottom: 1rem;
    right: 5.625rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
    z-index: 1000;
  }
  #lang-toggle img,
  #lang-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
  }
  #lang-toggle .spanish-flag {
    z-index: 2;
    transition: transform .3s, opacity .3s;
    fill: #1a1a1a;
  }
  #lang-toggle .american-flag {
    z-index: 1;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform .3s, opacity .3s;
  }
  .flag {
  display: none;
}

.flag-en.lang-toggle-visible {
  display: inline;
}

.flag-es.lang-toggle-visible {
  display: inline;
}
}
.lang[hidden] {
  display: none !important;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #lang-toggle {
    margin-left: 1rem;
    position: relative;
    bottom: auto;
    right: auto;
    order: 3;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #lang-toggle {
    position: relative;
    transform: none;
    bottom: auto;
    right: auto;
    margin: 0;
  }
  #lang-toggle:hover {
    cursor: pointer;
  }
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
  body.open {
    overflow: hidden;
  }
  body.scroll #navigation {
    /* 53px, same height as the top-container */
    transform: translateY(-3.3125rem);
  }
  #navigation {
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: transform .3s;
  }
  #navigation:before {
    content: '';
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    z-index: -1100;
    opacity: 0;
    transition: height .5s, opacity .5s;
  }
  #navigation.active:before {
    height: 150vh;
    opacity: 1;
  }
  #navigation.active .ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: .15s;
  }
  #navigation.active .li {
    transform: translateY(0);
    opacity: 1;
  }
  #navigation .top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #navigation .top-container {
    width: 100%;
    padding: 1rem 1.5rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  #navigation .top-contact {
    width: auto;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 16px - 24px */
    gap: clamp(1rem, 2vw, 1.5rem);
  }
  #navigation .top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #navigation .top-link:nth-of-type(2) {
    display: none;
  }
  #navigation .link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #navigation .top-social {
    visibility: visible;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity .3s, visibility .3s, height .3s;
  }
  #navigation .social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #navigation .social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #navigation .container {
    width: 100%;
    padding: 1.25rem 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  #navigation .logo {
    width: auto;
    height: 2.5rem;
    margin: 0 auto 0 0;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
    z-index: 10;
  }
  #navigation .logo img {
    width: auto;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #navigation .nav {
    order: 2;
  }
  #navigation .toggle {
    width: 2.875rem;
    height: 2.875rem;
    margin: 0 0 0 auto;
    background-color: var(--primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .6s;
  }
  #navigation .toggle.active {
    transform: rotate(180deg);
  }
  #navigation .active .line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #navigation .active .line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #navigation .active .line3 {
    bottom: 100%;
    opacity: 0;
  }
  #navigation .box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 0.75rem;
    position: relative;
  }
  #navigation .line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #FAFBFC;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #navigation .line1 {
    top: 0;
    transform-origin: center;
    transition: transform .5s, top .3S, left .3S;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navigation .line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top .3s, left .3s, transform .5s;
    animation-duration: .7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navigation .line3 {
    bottom: 0;
    transition: bottom .3s, opacity .3s;
  }
  #navigation .ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    opacity: 0;
    background-color: #fff;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s, opacity .3s;
  }
  #navigation .ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #navigation .li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform .6s, opacity .9s;
  }
  #navigation .li:nth-of-type(1) {
    transition-delay: .05s;
  }
  #navigation .li:nth-of-type(2) {
    transition-delay: .1s;
  }
  #navigation .li:nth-of-type(3) {
    transition-delay: .15s;
  }
  #navigation .li:nth-of-type(4) {
    transition-delay: .2s;
  }
  #navigation .li:nth-of-type(5) {
    transition-delay: .25s;
  }
  #navigation .li:nth-of-type(6) {
    transition-delay: .3s;
  }
  #navigation .li:nth-of-type(7) {
    transition-delay: .35s;
  }
  #navigation .li:nth-of-type(8) {
    transition-delay: .4s;
  }
  #navigation .li:nth-of-type(9) {
    transition-delay: .45s;
  }
  #navigation .li:nth-of-type(10) {
    transition-delay: .5s;
  }
  #navigation .li:nth-of-type(11) {
    transition-delay: .55s;
  }
  #navigation .li:nth-of-type(12) {
    transition-delay: .6s;
  }
  #navigation .li:nth-of-type(13) {
    transition-delay: .65s;
  }
  #navigation .li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: inline-block;
    position: relative;
  }
  #navigation .li-link.active {
    color: var(--primary);
  }
  #navigation .li-link:hover {
    color: var(--primary);
  }
  #navigation .button-solid {
    display: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #navigation .top-link:nth-of-type(2) {
    display: flex;
  }
}
/* Dark Mode */
@media only screen and (max-width: 1023px) {
  body.dark-mode #navigation {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .logo {
    /* makes it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #navigation .top-container {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #navigation .top-link,
  body.dark-mode #navigation .desc {
    color: var(--bodyTextColorWhite);
    opacity: .8;
  }
  body.dark-mode #navigation .link-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #navigation .ul-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #navigation .li-link,
  body.dark-mode #navigation .header {
    color: var(--bodyTextColorWhite);
  }
}

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
  #navigation .li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #navigation .dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #navigation .dropdown.active .drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
  }
  #navigation .dropdown.active .drop-link {
    opacity: 1;
  }
  #navigation .dropdown .li-link {
    position: relative;
    transition: opacity .3s;
  }
  #navigation .drop-icon {
    width: 0.9375rem;
    height: auto;
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }
  #navigation .drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: padding .3s, margin .3s, height .3s, opacity .3s, visibility .3s;
  }
  #navigation .drop-li {
    list-style: none;
  }
  #navigation .li-link.drop-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #navigation .dropdown {
    position: relative;
  }
  #navigation .dropdown:hover {
    cursor: pointer;
  }
  #navigation .dropdown:hover .drop-ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  #navigation .dropdown:hover .drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #navigation .drop-icon {
    width: 0.75rem;
    height: auto;
    margin-left: 0.25rem;
    display: inline-block;
  }
  #navigation .drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    border-bottom: 5px solid var(--primary);
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    z-index: -100;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s, visibility .3s, opacity .3s;
  }
  #navigation .drop-li {
    list-style: none;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-0.625rem);
    transition: opacity .6s, transform .6s;
  }
  #navigation .drop-li:nth-of-type(1) {
    transition-delay: .05s;
  }
  #navigation .drop-li:nth-of-type(2) {
    transition-delay: .1s;
  }
  #navigation .drop-li:nth-of-type(3) {
    transition-delay: .15s;
  }
  #navigation .drop-li:nth-of-type(4) {
    transition-delay: .2s;
  }
  #navigation .drop-li:nth-of-type(5) {
    transition-delay: .25s;
  }
  #navigation .drop-li:nth-of-type(6) {
    transition-delay: .3s;
  }
  #navigation .drop-li:nth-of-type(7) {
    transition-delay: .35s;
  }
  #navigation .drop-li:nth-of-type(8) {
    transition-delay: .4s;
  }
  #navigation .drop-li:nth-of-type(9) {
    transition-delay: .45s;
  }
  #navigation .drop-li:nth-of-type(10) {
    transition-delay: .5s;
  }
  #navigation .drop-li:nth-of-type(11) {
    transition-delay: .55s;
  }
  #navigation .drop-li:nth-of-type(12) {
    transition-delay: .6s;
  }
  #navigation .drop-li:nth-of-type(13) {
    transition-delay: .65s;
  }
  #navigation .li-link.drop-link {
    font-size: 1rem;
    white-space: nowrap;
    line-height: 1.5em;
    text-decoration: none;
    width: 100%;
    padding: 0.75rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    color: var(--bodyTextColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #navigation .li-link.drop-link:hover {
    color: var(--primary);
    background-color: #f7f7f7;
  }
  #navigation .li-link.drop-link:before {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #navigation .drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .drop-icon {
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #navigation .li-link.drop-link:hover {
    color: var(--bodyTextColorWhite);
    background-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #navigation .li-link.drop-link:before {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  body.scroll #navigation {
    /* 53px, the ssme height as the top-container */
    transform: translateY(-3.3125rem);
  }
  #navigation {
    width: 100%;
    padding: 0;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
    transition: transform .3s;
  }
  #navigation .top-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #navigation .top-container {
    width: 100%;
    max-width: 80rem;
    padding: 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.125rem;
    position: relative;
    z-index: 1;
  }
  #navigation .top-container:before {
    /* grey background */
    content: '';
    width: 100vw;
    height: 100%;
    background: #f7f7f7;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
  #navigation .top-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #navigation .top-link {
    font-size: 0.875rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }
  #navigation .top-link:hover {
    text-decoration: underline;
  }
  #navigation .link-icon {
    width: 1rem;
    height: auto;
    display: block;
  }
  #navigation .top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #navigation .social-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s;
  }
  #navigation .social-link:hover {
    transform: scale(1.1);
  }
  #navigation .social-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #navigation .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: 0 1rem;
    /* prevents padding from affectin gheight */
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #navigation .toggle {
    display: none;
  }
  #navigation .logo {
    /* 40px - 44px */
    height: clamp(2.5rem, 4vw, 2.75rem);
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  #navigation .logo img {
    width: auto;
    height: 6rem;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #navigation .ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
  }
  #navigation .li {
    list-style: none;
    padding: 1.9375rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #navigation .li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.3vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--headerColor);
    display: block;
    position: relative;
    transition: color .3s;
  }
  #navigation .li-link:hover {
    color: var(--primary);
  }
  #navigation .li-link.active {
    font-weight: 700;
    color: var(--headerColor);
  }
  #navigation .button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 2rem;
    background-color: var(--primary);
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color .3s;
  }
  #navigation .button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .3s;
  }
  #navigation .button-solid:hover:before {
    width: 100%;
  }
  #navigation .nav-button {
    line-height: 2.875rem;
    margin-left: 1.5rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #navigation {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .top-container:before {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #navigation .li-link,
  body.dark-mode #navigation .top-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #navigation .li-link:hover,
  body.dark-mode #navigation .top-link:hover {
    color: var(--secondary);
  }
  body.dark-mode #navigation .top-link {
    opacity: .8;
  }
  body.dark-mode #navigation .logo,
  body.dark-mode #navigation .link-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
}
/* Add this as it's own dark.css file and linked on all pages */
/*-- -------------------------- -->
<---      Core Dark Styles      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  :root {
    --dark: #082032;
    --medium: #2c394b;
    --accent: #334756;
    --bodyTextColorWhite: #fafbfc;
  }
  body.dark-mode {
    background-color: var(--dark);
  }
  body.dark-mode p,
  body.dark-mode li,
  body.dark-mode h1,
  body.dark-mode h2,
  body.dark-mode h3,
  body.dark-mode h4,
  body.dark-mode h5,
  body.dark-mode h6,
  body.dark-mode .title,
  body.dark-mode .text,
  body.dark-mode .li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .light {
    display: none;
  }
  body.dark-mode .dark {
    display: block !important;
  }
  .dark {
    /* class used to hide elements that only need to be seen when dark mode is enabled */
    display: none;
  }
}
/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  body.dark-mode #lang-toggle .american-flag {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  body.dark-mode #lang-toggle .spanish-flag {
    transform: translate(-50%, -150%);
    opacity: 0;
  }
  #lang-toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3.75rem;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    overflow: hidden;
    padding: 0;
  }
  #lang-toggle img,
  #lang-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5625rem;
    height: 1.5625rem;
    pointer-events: none;
  }
  #lang-toggle .spanish-flag {
    z-index: 2;
    transition: transform 0.3s,
                opacity 0.3s,
                fill 0.3s;
    fill: #000;
  }
  #lang-toggle .american-flag {
    z-index: 1;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.3s,
                opacity 0.3s;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  #lang-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 1.875rem;
    margin-bottom: 0rem;
  }
  #lang-toggle .spanish-flag {
    /* change to whatever you need */
    /* fill: #fff; */
  }
}
                                
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1203 {
        /* 150px - 350px */
        padding: clamp(12rem, 25.95vw, 21.875rem) 3rem;
        padding-bottom: 0;
        position: relative;
        z-index: 1;
        /* prevents overflow from the arrow graphic */
        overflow: hidden;
    }
    #hero-1203:before {
        /* black bar */
        content: "";
        width: 100%;
        /* 100px - 200px */
        height: clamp(6.25rem, 29vw, 12.5rem);
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
    }
    #hero-1203 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 48px - 64px */
        gap: clamp(3rem, 7vw, 4rem);
    }
    #hero-1203 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #hero-1203 .topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.1em;
        font-weight: 700;
        margin-bottom: 0.25rem;
        display: block;
    }
    #hero-1203 .title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        width: 100%;
        max-width: 17ch;
        margin: 0 0 1rem;
        color: var(--headerColor);
        position: relative;
    }
    #hero-1203 .text {
        font-size: 1.25rem;
        line-height: 1.5em;
        width: 100%;
        max-width: 43.75rem;
        /* 28px - 40px */
        margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
        color: var(--bodyTextColor);
    }
    #hero-1203 .button-solid {
        font-size: 1rem;
        text-align: center;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        width: 11.25rem;
        text-decoration: none;
        font-weight: 700;
        /* clips corners of the before element */
        overflow: hidden;
        margin: 0;
        color: var(--bodyTextColorWhite);
        padding: 0;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #hero-1203 .button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #hero-1203 .button-solid:hover {
        color: #fff;
    }
    #hero-1203 .button-solid:hover:before {
        width: 100%;
    }
    #hero-1203 .picture {
        width: 100%;
        /* changes to 866px at desktop */
        max-width: 34.0625rem;
        height: auto;
        display: flex;
        align-items: flex-end;
        position: relative;
    }
    #hero-1203 .picture img {
        width: 100%;
        height: auto;
    }
    .floater-wrapper {
      aspect-ratio: 1466 / 950;
      width: 100%;
    }
    #hero-1203 .floater {
        /* changes to 1465px at desktop */
        width: 59.6875rem;
        height: auto;
        opacity: 0.08;
        display: block;
        position: absolute;
        right: 0;
        top: 40%;
        z-index: -1;
    }
}
/* Desktop - 1024px */
/* #hero-1203{
    padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
} */
@media only screen and (min-width: 64rem) {
    #hero-1203:before {
        height: 16.125rem;
    }
    #hero-1203 .picture {
        width: 70%;
        max-width: 54.125rem;
    }
    #hero-1203 .floater {
        width: 91.5625rem;
        top: 30%;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1203 {
        padding-bottom: 12.5rem;
    }
    #hero-1203:before {
        height: 100%;
        width: 40vw;
        margin-left: 20.8125rem;
        left: 50%;
    }
    #hero-1203 .container {
        flex-direction: row;
        justify-content: flex-start;
        /* remove the positioning so the picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
        position: initial;
    }
    #hero-1203 .content {
        text-align: left;
        align-items: flex-start;
    }
    #hero-1203 .picture {
        width: 54.125rem;
        height: 52.625rem;
        margin-left: 0.625rem;
        position: absolute;
        left: 50%;
        bottom: 0;
    }
    #hero-1203 .file-hero{
        width: auto!important;
        height: 45.625rem!important;
    }
    #hero-1203 .immigration-picture{
        width: auto!important;
        height: 50.625rem!important;
    }
    #hero-1203 .picture img {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: contain;
    }
    #hero-1203 .floater {
        margin-right: -20.8125rem;
        top: 8.75rem;
        right: 60%;
    }
    .file-with-us-hero,
    .services-hero{
      width: auto!important;
      height: 90%!important;
    }
    .immigration-hero {
      width: auto!important;
      height: 72%!important;
    }
    .resources-hero {
      width: auto!important;
      height: 60%!important;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-1203:before {
        background-color: rgba(0, 0, 0, 0.6);
    }
    body.dark-mode #hero-1203 .topper {
        color: var(--primaryLight);
    }
    body.dark-mode #hero-1203 .title {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #hero-1203 .text {
        color: var(--bodyTextColorWhite);
        opacity: 0.9;
    }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1354 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 10;
    }
    #services-1354 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-1354 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

  
    #services-1354 .title {
        max-width: 25ch;
        margin: 0;
    }
    #services-1354 .card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #services-1354 .item {
        text-align: center;
        list-style: none;
        width: 100%;
        height: 19.0625rem;
        margin: 0;
        padding: 0;
        background-color: #000;
        /* border-radius: 1.5rem; */
        /* clips background image corners */
        overflow: hidden;
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        z-index: 1;
    }
    #services-1354 .item:hover .background:before {
        background-color: var(--primary);
        opacity: 0.84;
    }
    #services-1354 .item:hover .background img {
        transform: scale(1.2);
    }
    #services-1354 .link {
        text-decoration: none;
        width: 100%;
        height: 100%;
        /* padding goes on the link, not the item as is normal. We do this because we want the whole card to be hoverable. So we add the padding to the link tag to create the space inside the card. By adding the space inside the link tag we can make the whole card hoverable since the padding is now contributing to the height and widht of the link */
        padding: 1.5rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #services-1354 .h3 {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        transition: color 0.3s;
    }
    #services-1354 .span {
        /* forces the h3 to alwasy be two lines */
        display: block;
    }
    #services-1354 .background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #services-1354 .background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background-color: #000;
        opacity: 0.4;
        top: 0;
        left: 0;
        z-index: 1;
        transition:
            background-color 0.3s,
            opacity 0.3s;
    }
    #services-1354 .background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
        transition: transform 0.6s;
    }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #services-1354 .item {
        grid-column: span 6;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-1354 .content {
        text-align: center;
        align-items: center;
    }
    #services-1354 .item {
        grid-column: span 3;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-1354 .topper {
        color: var(--primary);
    }
    body.dark-mode #services-1354 .title {
        color: var(--bodyTextColorWhite);
    }
}

                                
/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-83 {
        padding: var(--sectionPadding);
    }
    #sbs-83 .container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-83 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #sbs-83 .button-solid {
        font-size: 1rem;
        text-align: center;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        width: 11.25rem;
        text-decoration: none;
        font-weight: 700;
        /* clips corners of the before element */
        overflow: hidden;
        margin: 0;
        color: var(--bodyTextColorWhite);
        padding: 0;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #sbs-83 .button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #sbs-83 .button-solid:hover {
        color: #fff;
    }
    #sbs-83 .button-solid:hover:before {
        width: 100%;
    }

    #sbs-83 .title {
        max-width: 20ch;
    }
    #sbs-83 .text {
        margin-bottom: 1rem;
    }
    #sbs-83 .text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-83 .card-group {
        width: 100%;
        max-width: 25rem;
        padding: 0;
        margin: 0;
        margin-bottom: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 0.75rem;
    }
    #sbs-83 .item {
        list-style: none;
        width: 32%;
        max-width: 9.375rem;
        /* making flex so we can align a heading with 1 line to the bottom */
        display: flex;
        flex-direction: column;
        align-self: stretch;
        align-content: space-between;
    }
    #sbs-83 .number {
        /* 39px - 49px */
        font-size: clamp(2.4375rem, 5vw, 3.0625rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        color: var(--primary);
        display: block;
        /* 8px - 16px */
        margin: 0 0 clamp(0.25rem, 0.5vw, 1rem);
    }
    #sbs-83 .h3 {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.2em;
        text-align: left;
        /* auto margin top will push text to bottom if there's only one line */
        margin: auto 0 0;
        color: var(--headerColor);
    }
    #sbs-83 .image-group {
        width: 100%;
        max-width: 33.875rem;
        /* pushes down by the same amount the images overlap the image group */
        margin: 0 0 2.5rem;
        display: flex;
        /* separate children to opposite sides of the room */
        justify-content: center;
        align-content: space-between;
        flex-wrap: wrap;
        gap: clamp(0.5rem, 2vw, 1.25rem);
    }
    #sbs-83 .picture {
        width: 48%;
        /* 218px - 264px */
        min-height: clamp(13.625rem, 25vw, 16.5rem);
        aspect-ratio: 0.73394495;
        position: relative;
        display: block;
    }
    #sbs-83 .picture:nth-of-type(2) {
        /* move slightly down */
        transform: translateY(2.5rem);
    }
    #sbs-83 .picture:nth-of-type(4) {
        /* move slightly up */
        transform: translateY(2.5rem);
    }
    #sbs-83 .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes image act as a background image to the picture element */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbs-83 .container {
        max-width: 80rem;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        /* 44px - 108px */
        column-gap: clamp(2.75rem, calc(6.4vw), 6.75rem);
    }
    #sbs-83 .card-group {
        max-width: 100%;
    }
    #sbs-83 .image-group {
        /* 318px - 542px */
        width: clamp(19.875rem, 46.9vw, 33.875rem);
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #sbs-83 .picture {
        width: 47.8%;
        aspect-ratio: initial;
    }
}
@media only screen and (min-width: 64rem) {
    #sbs-83 .container {
        flex-direction: row;
    }
  }
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbs-83 .title,
    body.dark-mode #sbs-83 .text,
    body.dark-mode #sbs-83 .h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-83 .text {
        opacity: 0.8;
    }
    body.dark-mode #sbs-83 .h3 {
        color: var(--bodyTextColorWhite);
    }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-311 {
        padding: var(--sectionPadding);
    }
    #sbs-311 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-311 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
        order: 1;
    }

    #sbs-311 .text {
        margin-bottom: 1rem;
    }
    #sbs-311 .text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-311 .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #sbs-311 .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #sbs-311 .button-solid:hover:before {
        width: 100%;
    }
    #sbs-311 .quote {
        margin: 0 0 2rem 0;
        /* 16px - 32px */
        padding: clamp(1rem, 3vw, 2rem);
        background-color: #f7f7f7;
        /* border-radius: 1rem; */
        position: relative;
    }
    #sbs-311 .quote-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0 0 1rem;
        color: #767676;
        display: block;
    }
    #sbs-311 .name {
        font-size: 1rem;
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: bold;
        margin: 0 0 0.25rem;
        color: var(--headerColor);
        display: block;
    }
    #sbs-311 .job {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: #767676;
        display: block;
    }
    #sbs-311 .quote-icon {
        /* 60px - 136px */
        width: clamp(3.75rem, 10vw, 8.5rem);
        height: auto;
        position: absolute;
        bottom: 0rem;
        /* 16px - 32px */
        right: clamp(1rem, 4vw, 2rem);
    }
    #sbs-311 .image-group {
        /* scaling the font size with the view width */
        font-size: min(2.31vw, 0.7em);
        /* using ems so we can use font size to scale the whole section */
        width: 39.4375em;
        height: 39.75em;
        position: relative;
        order: 2;
    }
    #sbs-311 .picture {
        /* border-radius: 1.5em; */
        /* clips img tag corners */
        overflow: hidden;
        position: absolute;
        display: block;
    }
    #sbs-311 .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes image act like a background image */
        object-fit: contain;
    }
    #sbs-311 .picture1 {
        width: 32.625em;
        height: 36.3125em;
        left: 0;
        top: 0;
        transform: translateX(10%);
    }
    #sbs-311 .picture2 {
        width: 25.875em;
        height: 25em;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
        /* 6px - 12px */
        border: clamp(0.375em, 1.5vw, 0.75em) solid #ffffff;
        right: 0;
        bottom: 0;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-311 .container {
        flex-flow: row;
        justify-content: space-between;
        gap: 3.25rem;
    }
    #sbs-311 .image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
    }
    #sbs-311 .content {
        margin: 0;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #sbs-311 .image-group:before,
    body.dark-mode #sbs-311 .image-group:after {
        background: var(--accent);
    }
    body.dark-mode #sbs-311 .picture2 {
        background-color: var(--dark);
        /* 6px - 12px */
        border: clamp(0.375em, 1.5vw, 0.75em) solid var(--dark);
    }
    body.dark-mode #sbs-311 .topper {
        color: var(--primaryLight);
    }
    body.dark-mode #sbs-311 .title,
    body.dark-mode #sbs-311 .text,
    body.dark-mode #sbs-311 .h3,
    body.dark-mode #sbs-311 .quote-text,
    body.dark-mode #sbs-311 .name {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-311 .quote {
        background-color: var(--accent);
    }
    body.dark-mode #sbs-311 .job {
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    body.dark-mode #sbs-311 .quote-icon {
        opacity: 0.2;
    }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-51,#cta-50 {
        padding: var(--sectionPadding);
        position: relative;
        background: linear-gradient(to right, var(--secondary), var(--primary));
    }
    #cta-51 .container, #cta-50 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-51 .content, #cta-50 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #cta-51 .title, #cta-50 .title {
        color: var(--bodyTextColorWhite);
    }
    #cta-51 .text, #cta-50 .text {
        margin-bottom: 1rem;
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    #cta-51 .text:last-of-type, #cta-50 .text:last-of-type {
        margin-bottom: 2rem;
    }
    #cta-51 .button-solid, #cta-50 .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--secondaryLight);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-51 .button-solid:before, #cta-50 .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        /* border-radius: 0.25rem; */
        transition: width 0.3s;
    }
    #cta-51 .button-solid:hover:before, #cta-50 .button-solid:hover:before {
        width: 100%;
    }
    #cta-51 .picture, #cta-50 .picture {
        height: 100%;
        width: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cta-51 .picture:before, #cta-50 .picture:before {
        /* black color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.8;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #cta-51 .picture img, #cta-50 .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-1452 {
    padding: var(--sectionPadding);
    }
    #reviews-1452 .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    }
    #reviews-1452 .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    #reviews-1452 .title {
    max-width: 20ch;
    }
    #reviews-1452 .quote {
    /* 48px - 72px */
    width: clamp(3rem, 7vw, 4.5rem);
    height: auto;
    /* 28px - 48px */
    margin: 0 0 2rem 0;
    }
    #reviews-1452 .card-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.75vw, 1.25rem);
    max-width: 40.625rem;
    }
    #reviews-1452 .item {
    list-style: none;
    width: 100%;
    margin: 0;
    /* 20px - 40px top & bottom */
    /* 20px - 40px left & right */
    padding: clamp(1.5rem, 3.15vw, 2rem);
    background-color: #f7f7f7;
    /* border-radius: 1.5rem; */
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    }
    #reviews-1452 .review {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1.75rem 0;
    color: var(--bodyTextColor);
    }
    #reviews-1452 .flex-group {
    /* this margin top auto will push everything up and force the flex-group to the bottom of the container. This is to account for review cards with different heights because of more or less text and makes the cards more responsive to changing text */
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    }
    #reviews-1452 .profile {
    width: 3.125rem;
    height: auto;
    border: 4px solid #fff;
    border-radius: 50%;
    /* clips image corners to make circle */
    overflow: hidden;
    position: relative;
    display: block;
    }
    #reviews-1452 .profile img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes the image behave like a background image */
    object-fit: cover;
    }
    #reviews-1452 .name {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.3vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
    margin-top: auto;
    color: var(--headerColor);
    display: block;
    }
    #reviews-1452 .job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    }
    #reviews-1452 .review-single {
        /* padding left & right 32px - 80px */
        padding: 2.5rem clamp(2rem, 6vw, 5rem);
        box-shadow: -1px 21px 39px 0px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #reviews-1452 .review-single-img {
        width: 7rem;
        height: 1.25rem;
        display: block;
        /* margin-bottom 8px - 12px */
        margin: 0 auto clamp(0.5rem, 2vw, 0.75rem);
    }
    #reviews-1452 .review-title {
        /* 25px - 31px */
        font-size: clamp(1.5625rem, 3.1vw, 1.9375rem);
        line-height: 1.2em;
        text-align: center;
        font-weight: bold;
        /* margin-bottom 24px - 32px */
        margin: 0 auto clamp(1.5rem, 4.2vw, 2rem);
        color: var(--headerColor);
        display: block;
    }
    #reviews-1452 .review-p {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        max-width: 27.125rem;
        /* margin-bottom 24px - 32px */
        margin: 0 auto clamp(1.5rem, 4.2vw, 2rem);
        color: var(--bodyTextColor);
    }
    #reviews-1452 .review-name {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        margin: 0;
        display: block;
        color: var(--headerColor);
        font-weight: 700;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-1452 .review-single {
        box-shadow: none;
        /* width: 50%; */
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
#reviews-1452 .container {
    flex-direction: row;
}
#reviews-1452 .content {
    text-align: left;
    width: 45%;
    align-items: flex-start;
    /* prevents flexbox from squishing it */
    flex: none;
}
#reviews-1452 .card-group {
    width: 100%;
}
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
#reviews-1452 .content {
    max-width: 34.5rem;
    align-items: flex-start;
    text-align: left;
}
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
body.dark-mode #reviews-1452 .title,
body.dark-mode #reviews-1452 .text,
body.dark-mode #reviews-1452 .review,
body.dark-mode #reviews-1452 .name,
body.dark-mode #reviews-1452 .job {
    color: var(--bodyTextColorWhite);
}
body.dark-mode #reviews-1452 .text,
body.dark-mode #reviews-1452 .job {
    opacity: .8;
}
body.dark-mode #reviews-1452 .item {
    background-color: var(--accent);
}
body.dark-mode #reviews-1452 .quote {
    opacity: 0.5;
}
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-1466 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
  }
  #faq-1466 .container {
    width: 100%;
    /* chnages to 1280px at desktop */
    max-width: 39.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 48px - 108px */
    gap: clamp(3rem, 8vw, 6.75rem);
  }
  #faq-1466 .content {
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
  }
  #faq-1466 .title {
    margin: 0 0 2rem;
    /* 20 characters wide including spaces */
    max-width: 20ch;
  }
  #faq-1466 .faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-self: center;
  }
  #faq-1466 .faq-item {
    list-style: none;
    width: 100%;
    /* 20px - 24px */
    padding: clamp(1.25rem, 2vw, 1.5rem) 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
    border-bottom: 1px solid #e8e8e8;
  }
  #faq-1466 .faq-item.active {
    border-color: var(--primaryLight);
  }
  #faq-1466 .faq-item.active .button {
    color: var(--primary);
  }
  #faq-1466 .faq-item.active .button:before {
    background-color: var(--primaryLight);
    transform: rotate(315deg);
  }
  #faq-1466 .faq-item.active .button:after {
    background-color: var(--primaryLight);
    transform: rotate(-315deg);
  }
  #faq-1466 .faq-item.active .item-p {
    height: auto;
    padding-top: 1rem;
    opacity: 1;
  }
  #faq-1466 .button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-1466 .button:hover {
    cursor: pointer;
  }
  #faq-1466 .button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.25rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #faq-1466 .button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.0625rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #faq-1466 .button-text {
    width: 90%;
    display: block;
  }
  #faq-1466 .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        margin-top: 2rem;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #faq-1466 .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #faq-1466 .button-solid:hover:before {
        width: 100%;
    }
  #faq-1466 .item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-1466 .picture {
    width: 100%;
    /* 300px - 498px */
    height: clamp(18.75rem, 65vw, 31.125rem);
    display: block;
    position: relative;
  }
  #faq-1466 .picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* border-radius: 1.5rem; */
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq-1466 .container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #faq-1466 .content {
    width: 45vw;
    /* prevents flexbox from squsihing it */
    flex: none;
    align-self: center;
  }
  #faq-1466 .picture {
    height: auto;
    min-height: 42.375rem;
    order: 1;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #faq-1466 .title,
  body.dark-mode #faq-1466 .item-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-1466 .item-p {
    opacity: 0.8;
  }
  body.dark-mode #faq-1466 .faq-item {
    background-color: rgba(0, 0, 0, 0.4);
    border-bottom: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #faq-1466 .faq-item.active {
    border-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-1466 .faq-item.active .button {
    color: var(--secondary);
  }
  body.dark-mode #faq-1466 .faq-item.active .button:before,
  body.dark-mode #faq-1466 .faq-item.active .button:after {
    background-color: var(--secondary);
  }
  body.dark-mode #faq-1466 .button {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-1466 .button:before,
  body.dark-mode #faq-1466 .button:after {
    background-color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-490 {
      padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem 0 1rem;
      background: linear-gradient(180deg, #EFECE4 82%, var(--secondary) 82%);
    }
    #contact-490 .container {
      width: 100%;
      /* changes to 1280px at desktop */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 3rem;
    }
    #contact-490 .content {
      max-width: 32.625rem;
      text-align: left;
    }
    #contact-490 .text {
      /* 16px - 48px */
      margin: 0 0 clamp(1rem, 4.4vw, 3rem) 0;
    }
    #contact-490 .header {
      /* 13px - 16px */
      font-size: clamp(0.8125rem, 1.5vw, 1rem);
      line-height: 1.2em;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.1em;
      margin: 0 0 1rem 0;
      color: var(--primary);
      display: block;
    }
    #contact-490 .link {
      /* 16px - 20px */
      font-size: clamp(1rem, 2vw, 1.25rem);
      text-decoration: none;
      line-height: 1.5em;
      font-weight: 700;
      /* 16px - 32px */
      margin: 0 0 clamp(1rem, 2.5vw, 2rem);
      color: var(--headerColor);
      display: block;
    }
    #contact-490 .link:hover {
      text-decoration: underline;
    }
    #contact-490 .link:last-of-type {
      margin-bottom: 0;
    }
    #contact-490 .social {
      /* 32px - 80px */
      margin-top: clamp(2rem, 6vw, 5rem);
      display: inline-flex;
      justify-content: flex-start;
      gap: 0.75em;
    }
    #contact-490 .social-link {
      /* 32px - 52px */
      width: clamp(2rem, 4vw, 3.25rem);
      height: clamp(2rem, 4vw, 3.25rem);
      background-color: #4e4b66;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
      transition: transform 0.3s, background-color 0.3s;
    }
    #contact-490 .social-link:hover {
      background-color: var(--primary);
      transform: translateY(-0.1875rem);
    }
    #contact-490 .social-img {
      /* 14px - 24px */
      height: clamp(0.875rem, 2vw, 1.5rem);
      width: auto;
      display: block;
    }
    #contact-490 #form-490 {
      width: 100%;
      max-width: 40.625rem;
      /* 32px - 40px */
      margin-bottom: clamp(2rem, 5.3vw, 2.5rem);
      /* 20px - 40px */
      padding: clamp(1.25rem, 4.5vw, 2.5rem);
      /* prevents padding from affecting width and height */
      box-sizing: border-box;
      /* border: 1px solid #dad9e3; */
      /* border-radius: 1rem; */
      background-color: #fff;
    }
    #contact-490 .label {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.3vw, 1rem);
      line-height: 1.5em;
      font-weight: 700;
      /* 16px - 20px */
      margin-bottom: clamp(1rem, 1em, 1.25rem);
      color: var(--headerColor);
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column;
    }
    #contact-490 .label-message {
      /* 32px - 40px */
      margin-bottom: clamp(2rem, 4.5vw, 2.5rem);
    }
    #contact-490 .input,
    #contact-490 textarea {
      font-size: 1rem;
      width: 100%;
      height: 4rem;
      margin-top: 0.25rem;
      padding-left: 1.25rem;
      /* set transparent border so on hover border doesn't make it glitch */
      border: 1px solid transparent;
      border-bottom: 1px solid #b4b2c7;
      /* prevents border & padding from affecting height */
      box-sizing: border-box;
      transition: border 0.3s;
    }
    #contact-490 .input:hover,
    #contact-490 textarea:hover {
      border: 1px solid var(--primary);
    }
    #contact-490 .input::placeholder,
    #contact-490 textarea::placeholder {
      color: #7d799c;
    }
    #contact-490 textarea {
      font-family: inherit;
      margin: 0;
      padding-top: 1.25rem;
      min-height: 7.5rem;
    }
    #contact-490 .button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: auto;
      width: 100%;
      color: #fff;
      padding: 0 1.5rem;
      background-color: var(--primary);
      border: none;
      /* border-radius: 0.5rem; */
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
    }
    #contact-490 .button-solid:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      border-radius: 0.5rem;
      transition: width 0.3s;
    }
    #contact-490 .button-solid:hover {
      cursor: pointer;
    }
    #contact-490 .button-solid:hover:before {
      width: 100%;
    }
  }
  /* Tablet - 700px */
  @media only screen and (min-width: 43.75rem) {
    #contact-490 .container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      padding-bottom: 7rem;
    }
    #contact-490 .content {
      width: 40%;
      /* pushes it to the right */
      order: 2;
      flex: none;
    }
    #contact-490 #form-490 {
      margin: 0;
    }
  }
  /* Dark Mode */
  @media only screen and (min-width: 43.75rem) {
    body.dark-mode #contact-490 .title,
    body.dark-mode #contact-490 .text,
    body.dark-mode #contact-490 .link,
    body.dark-mode #contact-490 .header,
    body.dark-mode #contact-490 .label {
      color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-490 .text,
    body.dark-mode #contact-490 .link {
      opacity: .8;
    }
    body.dark-mode #contact-490 #form-490 {
      border-color: rgba(255, 255, 255, 0.3);
    }
    body.dark-mode #contact-490 .input {
      color: var(--bodyTextColorWhite);
      background-color: transparent;
    }
    body.dark-mode #contact-490 .input::placeholder {
      color: var(--bodyTextColorWhite);
      opacity: .5;
    }
  }

/*-- -------------------------- -->
<---        FILE WITH US        -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #taxServices, #sbsr-1363, #sbsr-1364, #sbsr-1365, #sbsr-1366 {
        padding: var(--sectionPadding);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #taxServices .container, #sbsr-1363 .container, #sbsr-1364 .container, #sbsr-1365 .container, #sbsr-1366 .container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #taxServices .content, #sbsr-1363 .content, #sbsr-1364 .content, #sbsr-1365 .content, #sbsr-1366 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
        order: 2;
    }
    #sbsr-1364 .content, #sbsr-1366 .content {
        /* pushes it to the right */
        order: 1;
      order: 1;
    }
    #taxServices .title, #sbsr-1363 .title, #sbsr-1364 .title, #sbsr-1365 .title, #sbsr-1366 .title {
        /* 23 characters wide including spaces */
        max-width: 26ch;
    }
    #taxServices .text, #sbsr-1363 .text, #sbsr-1364 .text, #sbsr-1365 .text, #sbsr-1366 .text {
        margin-bottom: 1rem;
    }
    #taxServices .text:last-of-type, #sbsr-1363 .text:last-of-type, #sbsr-1364 .text:last-of-type, #sbsr-1365 .text:last-of-type, #sbsr-1366 .text:last-of-type {
        margin-bottom: 1.5rem;
    }
    #taxServices .card-group, #sbsr-1363 .card-group, #sbsr-1364 .card-group, #sbsr-1365 .card-group, #sbsr-1366 .card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
        align-items: stretch;
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #taxServices .item, #sbsr-1363 .item, #sbsr-1364 .item, #sbsr-1365 .item, #sbsr-1366 .item {
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        /* border-radius: 1rem; */
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #taxServices .h3, #sbsr-1363 .h3, #sbsr-1364 .h3, #sbsr-1365 .h3, #sbsr-1366 .h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    .ul-heading{
      margin-top: 1rem!important;
      margin-bottom: 2rem!important;
    }
    #taxServices .h3-icon, #sbsr-1364 .h3-icon, #sbsr-1365 .h3-icon, #sbsr-1366 .h3-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #taxServices .item-text, #sbsr-1363 .item-text, #sbsr-1364 .item-text, #sbsr-1365 .item-text, #sbsr-1366 .item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #taxServices .ul, #sbsr-1363 .ul, #sbsr-1364 .ul, #sbsr-1365 .ul, #sbsr-1366 .ul {
        width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .ul-columns {
      display: flex;
      gap: 2rem; /* Adjust spacing between columns */
      flex-wrap: wrap; /* Optional: allows wrapping on smaller screens */
      justify-content: space-between; /* Optional: space between columns */
    }

    .ul-columns .ul {
        flex: 1 1 45%; /* Allows each column to take up about half the space */
    }
    #taxServices .li, #sbsr-1363 .li, #sbsr-1364 .li, #sbsr-1365 .li, #sbsr-1366 .li {
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        /* push icon top the top so if the list item goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* For ALL .li list items */
    #taxServices .li, #sbsr-1363 .li, #sbsr-1364 .li, #sbsr-1365 .li, #sbsr-1366 .li {
      display: flex;
      align-items: flex-start; /* or center */
      gap: 0.5rem;
      font-size: 0.95em;
      margin: 0;
      line-height: 1.4;
    }
    /* Make icon + text-group side by side */
    #taxServices .li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    /* Stack heading and paragraph vertically */
    #taxServices .text-groups, #sbsr-1363 .text-groups {
      display: flex;
      flex-direction: column;
    }

    /* For ALL .icon images inside the list */
    #taxServices .icon, #sbsr-1363 .icon, #sbsr-1364 .icon, #sbsr-1365 .icon, #sbsr-1366 .icon {
      width: 1.5rem;
      height: auto;
      flex-shrink: 0;
      margin-top: 0.15rem;
      display: inline-block;
    }
    #taxServices .button-solid, #sbsr-1363 .button-solid, #sbsr-1364 .button-solid, #sbsr-1365 .button-solid, #sbsr-1366 .button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        /* border-radius: 1.875rem; */
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #taxServices .button-solid:before, #sbsr-1363 .button-solid:before, #sbsr-1364 .button-solid:before, #sbsr-1365 .button-solid:before, #sbsr-1366 .button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #taxServices .button-solid:hover, #sbsr-1363 .button-solid:hover, #sbsr-1364 .button-solid:hover, #sbsr-1365 .button-solid:hover, #sbsr-1366 .button-solid:hover {
        color: var(--bodyTextColorWhite);
    }
    #taxServices .button-solid:hover:before, #sbsr-1363 .button-solid:hover:before, #sbsr-1364 .button-solid:hover:before, #sbsr-1365 .button-solid:hover:before, #sbsr-1366 .button-solid:hover:before {
        width: 100%;
    }
    #taxServices .image-group, #sbsr-1363 .image-group, #sbsr-1364 .image-group, #sbsr-1365 .image-group, #sbsr-1366 .image-group {
        width: 100%;
        max-width: 36.625rem;
        /* Changes to auto at desktop */
        /* height: 32.5rem; */
        /* 32px - 48px */
        /* border-radius: clamp(2rem, 4vw, 3rem); */
        /* clips the corners of the children around the border radius */
        overflow: hidden;
        position: relative;
    }
    #taxServices .background, #sbsr-1363 .backgroud, #sbsr-1364 .background, #sbsr-1365 .background, #sbsr-1366 .background {
        width: 100%;
        height: 100%;
        /* makes it cover the parent dimensions */
        object-fit: cover;
        display: block;
    }
    #taxServices .background img, #sbsr-1363 .background img, #sbsr-1364 .background img, #sbsr-1365 .background img, #sbsr-1366 .background img {
        width: 100%;
        height: 100%;
        /* makes it cover the parent like a backgorund image */
        object-fit: contain;
        display: block;
        margin-bottom: 2rem;
    }
    #taxServices .box, #sbsr-1363 .box, #sbsr-1364 .box, #sbsr-1365 .box, #sbsr-1366 .box {
        text-align: left;
        width: 100%;
        max-width: 19rem;
        padding: 2rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: var(--primary);
        /* 48px - 80px */
        /* border-radius: 2rem; */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: absolute;
        /* 12px - 20px */
        right: clamp(0.75rem, 1.9vw, 1.5rem);
        /* 12px - 20px */
        bottom: clamp(0.75rem, 1.9vw, 1.5rem);
    }
    #taxServices .box-icon, #sbsr-1363 .box-icon, #sbsr-1364 .box-icon, #sbsr-1365 .box-icon, #sbsr-1366 .box-icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #taxServices .desc, #sbsr-1363 .desc, #sbsr-1364 .desc, #sbsr-1365 .desc, #sbsr-1366 .desc {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #taxServices .bubbles, #sbsr-1364 .bubbles, #sbsr-1365 .bubbles, #sbsr-1366 .bubbles {
        font-size: min(2.5vw, 0.7em);
        width: 26.1875em;
        height: 26.6875em;
        position: absolute;
        /* reset at larger desktop */
        right: -16.25em;
        /* changes to 30px at desktop */
        bottom: -3.125em;
        z-index: -1;
    }
    #taxServices .bubbles:before, #sbsr-1364 .bubbles:before, #sbsr-1365 .bubbles:before, #sbsr-1366 .bubbles:before {
        /* white border bubble */
        content: "";
        width: 20.625em;
        height: 20.625em;
        background: transparent;
        border: 1px solid #1a1a1a;
        border-radius: 50%;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        animation-name: floatAnimation;
        animation-duration: 5s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #taxServices .bubbles:after, #sbsr-1364 .bubbles:after, #sbsr-1365 .bubbles:after, #sbsr-1366 .bubbles:after {
        /* orange bubble */
        content: "";
        width: 16.25em;
        height: 16.25em;
        background: var(--primary);
        opacity: 0.15;
        border-radius: 50%;
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        animation-name: floatAnimation2;
        animation-duration: 14s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #taxServices .container, #sbsr-1363 .container, #sbsr-1363, .container, #sbsr-1364 .container, #sbsr-1365 .container, #sbsr-1366 .container {
        max-width: 100vw;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #taxServices .image-group, #sbsr-1363 .image-group, #sbsr-13 .image-group, #sbsr-1364 .image-group, #sbsr-1365 .image-group, #sbsr-1366 .image-group {
        height: auto;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #taxServices .bubbles, #sbsr-1364 .bubbles, #sbsr-1365 .bubbles, #sbsr-1366 .bubbles {
        font-size: min(2.5vw, 1em);
        right: -6.25rem;
        bottom: 0rem;
    }
}
/* Large Desktop 1600px */
@media only screen and (min-width: 100rem) {
    #taxServices .bubbles, #sbsr-1364 .bubbles, #sbsr-1365 .bubbles, #sbsr-1366 .bubbles {
        margin-right: 46.875rem;
        left: auto;
        right: 50%;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #taxServices .topper, body.dark-mode #sbsr-1364 .topper, body.dark-mode #sbsr-1365 .topper, body.dark-mode #sbsr-1366 .topper {
        color: var(--primary);
    }
    body.dark-mode #taxServices .title,
    body.dark-mode #taxServices .text,
    body.dark-mode #taxServices .li,
    body.dark-mode #taxServices .item-text,
    body.dark-mode #sbsr-1364 .title,
    body.dark-mode #sbsr-1364 .text,
    body.dark-mode #sbsr-1364 .li,
    body.dark-mode #sbsr-1364 .item-text, 
    body.dark-mode #sbsr-1365 .title,
    body.dark-mode #sbsr-1365 .text,
    body.dark-mode #sbsr-1365 .li,
    body.dark-mode #sbsr-1365 .item-text,
    body.dark-mode #sbsr-1366 .title,
    body.dark-mode #sbsr-1366 .text,
    body.dark-mode #sbsr-1366 .li,
    body.dark-mode #sbsr-1366 .item-text  {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #taxServices .text,
    body.dark-mode #taxServices .li,
    body.dark-mode #taxServices .item-text,
    body.dark-mode #sbsr-1364 .text,
    body.dark-mode #sbsr-1364 .li,
    body.dark-mode #sbsr-1364 .item-text,
    body.dark-mode #sbsr-1365 .text,
    body.dark-mode #sbsr-1365 .li,
    body.dark-mode #sbsr-1365 .item-text,
    body.dark-mode #sbsr-1366 .text,
    body.dark-mode #sbsr-1366 .li,
    body.dark-mode #sbsr-1366 .item-text {
        opacity: 0.8;
    }
    body.dark-mode #taxServices .item, body.dark-mode #sbsr-1364 .item, body.dark-mode #sbsr-1365 .item, body.dark-mode #sbsr-1366 .item {
        background-color: rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #taxServices .h3, body.dark-mode #sbsr-1364 .h3, body.dark-mode #sbsr-1365 .h3, body.dark-mode #sbsr-1366 .h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #taxServices .icon, body.dark-mode #sbsr-1364 .icon, body.dark-mode #sbsr-1365 .icon, body.dark-mode #sbsr-1366 .icon {
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #taxServices .bubbles:before, body.dark-mode #sbsr-1364 .bubbles:before, body.dark-mode #sbsr-1365 .bubbles:before, body.dark-mode #sbsr-1366 .bubbles:before {
        border-color: rgba(255, 255, 255, 0.2);
    }
}
/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #steps-889 {
        padding: var(--sectionPadding);
        padding-top: revert-layer;
    }
    #steps-889 .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #steps-889 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #steps-889 .text {
        max-width: 66.5rem;
    }
    #steps-889 .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #steps-889 .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #steps-889 .button-solid:hover:before {
        width: 100%;
    }
    #steps-889 .card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 20px - 40px */
        gap: clamp(1.25rem, 3vw, 2.5rem);
    }
    #steps-889 .item {
        text-align: center;
        list-style: none;
        width: 100%;
        max-width: 20.375rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #steps-889 .picture {
        margin-bottom: 1.5rem;
        /* width: 4.5rem;
        height: 4.5rem;
        background-color: rgba(206, 65, 13, 0.05);
        border-radius: 1rem 0 1rem 0; */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #steps-889 .h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #steps-889 .item-p {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #steps-889 .arrow {
        /* 48px - 80px */
        width: clamp(3rem, 6vw, 5rem);
        height: auto;
        display: block;
        flex: none;
        transform: rotate(120deg);
    }
    #steps-889 .arrow-img {
        width: 100%;
        display: block;
    }
    #steps-889 .icon {
        width: 50%;
        height: auto;
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #steps-889 .card-group {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
    #steps-889 .arrow {
        align-self: center;
        transform: rotate(40deg);
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #steps-889 .topper {
        color: var(--primaryLight);
    }
    body.dark-mode #steps-889 .title,
    body.dark-mode #steps-889 .text,
    body.dark-mode #steps-889 .h3,
    body.dark-mode #steps-889 .item-p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #steps-889 .text,
    body.dark-mode #steps-889 .item-p {
        opacity: 0.8;
    }
    body.dark-mode #steps-889 .picture {
        background-color: var(--accent);
    }
    body.dark-mode #steps-889 .arrow {
        opacity: 0.5;
    }
}

/*-- -------------------------- -->
<---         SERVICES           -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---       Why Choose Us        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #businessServices, #lifeAdmin, #multiService {
        padding: var(--sectionPadding);
        padding-top: revert-layer;
    }
    /* #multiService {
        overflow-x: hidden;
    } */

    #businessServices .container, #lifeAdmin .container, #multiService .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #businessServices .content, #lifeAdmin .content, #multiService .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #lifeAdmin .content{
      order: 2;
    }
    #businessServices .topper, #lifeAdmin .topper, #multiService .topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        margin-bottom: 0.25rem;
        display: block;
    }
    #businessServices .title, #lifeAdmin .title, #multiService .title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #businessServices .text, #lifeAdmin .text, #multiService .text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #businessServices .color, #lifeAdmin .color, #multiService .color {
        color: var(--primary);
    }
    #businessServices .text, #lifeAdmin .text, #multiService .text {
        margin-bottom: 1rem;
    }
    #businessServices .text:last-of-type, #lifeAdmin .text:last-of-type, #multiService .text:last-of-type {
        margin-bottom: 2rem;
    }
    #businessServices .ul, #lifeAdmin .ul, #multiService .ul {
        width: 100%;
        margin: 0 0 2rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    #businessServices .li, #lifeAdmin .li, #multiService .li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #businessServices .h3, #lifeAdmin .h3, #multiService .h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #businessServices .icon, #lifeAdmin .icon, #multiService .icon {
        width: 1.0625rem;
        height: auto;
        margin-top: 0.25rem;
    }
    #businessServices .item-text, #lifeAdmin .item-text, #multiService .item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        text-align: left;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #businessServices .button-solid, #lifeAdmin .button-solid, #multiService .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #businessServices .button-solid:before, #lifeAdmin .button-solid:before, #multiService .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #businessServices .button-solid:hover:before, #lifeAdmin .button-solid:hover:before, #multiService .button-solid:hover:before {
        width: 100%;
    }
    #businessServices .image-group, #lifeAdmin .image-group, #multiService .image-group {
        /* everything inside the image group is in ems so the font size will scale them down.  Font size minimum is tied to view width size, and grows until it reaches 75% of the value on em */
        font-size: min(2.3vw, 0.75em);
        width: 39.5em;
        height: 51.25em;
        position: relative;
        z-index: 1;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
    #businessServices .picture, #lifeAdmin .picture, #multiService .picture {
        width: 19.125em;
        height: 22.5em;
        overflow: hidden;
        display: block;
        position: absolute;
    }
    #businessServices .picture img, #lifeAdmin .picture img, #multiService .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        /* so the images are the original orientation, undoing the flip the image-group is doing */
        transform: scaleX(-1);
    }
    #businessServices .picture1, #lifeAdmin .picture1, #multiService .picture1 {
        top: 5em;
        left: 0;
    }
    #lifeAdmin .picture1 {
        width: 30rem;
        height: 30rem;
    }
    #multiService .picture1 {
        width: 100%;
        height: 30rem;
    }
    #multiService .image-group {
      transform: scaleX(1);
      max-width: 100vw;
      overflow: hidden;
      /* transform: translateX(-7%); */
    }
    #multiService .image-group .picture{
      transform: scaleX(-1);
      /* left: -32%; */
    }
    #lifeAdmin .image-group {
      max-width: 100vw;
      overflow: hidden;
    }
    #lifeAdmin .picture1 {
      top: 5em;
      left: 50%;
      transform: translateX(-50%);
    }
    /* #lifeAdmin .picture img {
      width: auto;
      height: 90%;
    } */
    #businessServices .picture2, #lifeAdmin .picture2, #multiService .picture2 {
        top: 0;
        right: 0;
    }
    #businessServices .picture3, #lifeAdmin .picture3, #multiService .picture3 {
        bottom: 0;
        left: 0;
    }
    #businessServices .picture4, #lifeAdmin .picture4, #multiService .picture4 {
        bottom: 5em;
        right: 0;
    }
    #businessServices .graphic, #lifeAdmin .graphic, #multiService .graphic {
        display: none;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #lifeAdmin, #multiService{
        padding: 1%;
    }
    #businessServices .container, #lifeAdmin .container, #multiService .container {
        flex-direction: row;
        justify-content: space-between;
    }
    #businessServices .image-group, #lifeAdmin .image-group, #multiService .image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #businessServices .graphic, #lifeAdmin .graphic, #multiService .graphic {
        width: 61.4375em;
        height: auto;
        display: block;
        position: absolute;
        bottom: 10.3125em;
        right: -2em;
        z-index: -1;
    }
    #multiService .image-group {
      transform: translateX(0%);
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #businessServices .topper .color,
    body.dark-mode #lifeAdmin .topper .color, 
    body.dark-mode #multiService .topper .color {
        color: var(--primaryLight);
    }
    body.dark-mode #businessServices .title,
    body.dark-mode #businessServices .text,
    body.dark-mode #businessServices .h3,
    body.dark-mode #businessServices .item-text,
    body.dark-mode #lifeAdmin .title,
    body.dark-mode #lifeAdmin .text,
    body.dark-mode #lifeAdmin .h3,
    body.dark-mode #lifeAdmin .item-text,
    body.dark-mode #multiService .title,
    body.dark-mode #multiService .text,
    body.dark-mode #multiService .h3,
    body.dark-mode #multiService .item-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #businessServices .text,
    body.dark-mode #businessServices .item-text,
    body.dark-mode #lifeAdmin .text,
    body.dark-mode #lifeAdmin .item-text,
    body.dark-mode #multiService .text,
    body.dark-mode #multiService .item-text {
        opacity: 0.8;
    }
    body.dark-mode #businessServices .icon, body.dark-mode #lifeAdmin .icon, body.dark-mode #multiService .icon {
        filter: brightness(125%);
    }
    body.dark-mode #businessServices .graphic, body.dark-mode #lifeAdmin .graphic, body.dark-mode #multiService .graphic {
        opacity: 0.5;
    }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #immigrationServices {
        margin: var(--sectionPadding);
        margin-left: 0;
        margin-right: 0;
        padding: 0 1rem;
        /* prevents overflow from the slant shape */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #immigrationServices:before {
        /* section background */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #immigrationServices .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        /* 60px - 80px top and bottom */
        padding: clamp(3.75em, 6.82vw, 5em) 0;
        /* maintains proportional margin top as screen size grows */
        margin-top: 56vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        /* 40px - 70px */
        gap: clamp(2.5rem, 5.7vw, 4.375rem);
        position: relative;
        /* places it on top of the background */
        z-index: 10;
    }
    #immigrationServices .container:before {
        /* section slant on mobile */
        content: "";
        width: 62.5rem;
        height: 125rem;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        z-index: -1;
        display: block;
        top: -28.75rem;
        /* these last two center it horizontally and rotate -65deg */
        left: 50%;
        transform: translateX(-50%) rotate(-65deg);
    }
    #immigrationServices .background {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    #immigrationServices .background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #immigrationServices .content {
        width: 100%;
    }

    #immigrationServices .topper {
        color: var(--bodyTextColorWhite);
    }
    #immigrationServices .title {
        /* changes to 45% at tablet */
        width: 95%;
        max-width: 32.125rem;
        color: var(--bodyTextColorWhite);
    }
    #immigrationServices .card-group {
        width: 100%;
        max-width: 35.25rem;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 20px - 32px */
        gap: clamp(1.25rem, 3vw, 2rem);
    }
    #immigrationServices .item {
        list-style: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        /* 32px - 64px */
        gap: clamp(2rem, 5vw, 4rem);
    }
    #immigrationServices .icon {
        width: 3.75rem;
        height: auto;
        display: block;
    }
    #immigrationServices .h3 {
        /* 25px - 31px */
        font-size: clamp(1.5625rem, 3vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0 0 1.25rem 0;
        color: var(--bodyTextColorWhite);
    }
    #immigrationServices .item-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1rem, 1.25rem);
        line-height: 1.5em;
        text-align: left;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #immigrationServices .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: var(--bodyTextColorWhite);
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--secondaryLight);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #immigrationServices .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        /* border-radius: 0.25rem; */
        transition: width 0.3s;
    }
    #immigrationServices .button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #immigrationServices:before {
        /* remove the pseudo for the section background */
        display: none;
    }
    #immigrationServices .background {
        /* reset height to let top and bottom properties create the height */
        height: auto;
        aspect-ratio: initial;
        position: absolute;
        /* creates the gap between the image and the blue section */
        top: 3.75rem;
        bottom: 0;
    }
    #immigrationServices .background img {
        width: 60%;
        left: auto;
        right: 0;
        object-position: 80% top;
    }
    #immigrationServices .container {
        margin-top: 0;
    }
    #immigrationServices .container:before {
        /* make really tall so it always covers top to bottom, even when you add more list items */
        height: 250rem;
        /* make really really wide so it covers the left side at large scree sizes */
        width: 250rem;
        /* push X amount from the center line to the right.  If after you added content and the slant is not covering everything, make this negative number even more negative to pull it more to the right */
        margin-right: -68.75rem;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        top: 50%;
        left: auto;
        /* pushes the right edge of the element to the center line of the parent */
        right: 50%;
        transform: rotate(-35deg) translateY(-50%);
    }
    #immigrationServices .title {
        width: 45%;
    }
    #immigrationServices .card-group {
        width: 52%;
        /* 24px - 32px */
        padding-left: clamp(1.5rem, 3vw, 2rem);
        /* prevents padding from adding to width */
        box-sizing: border-box;
    }
    #immigrationServices .item {
        flex-direction: row;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #immigrationServices .container:before {
        background-color: var(--medium);
    }
}
/*-- -------------------------- -->
<---         RESOURCES          -->
<--- -------------------------- -*/
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #resourcesFaq {
    padding: var(--sectionPadding);
    position: relative;
  }
  #resourcesFaq .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #resourcesFaq .content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #resourcesFaq .title {
    margin: 0;
  }
  #resourcesFaq .flex-group {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
    position: relative;
  }
  #resourcesFaq .wrapper {
    width: 100%;
    position: relative;
  }
  #resourcesFaq .button-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #resourcesFaq .flex {
    width: 100%;
    /* 24px - 32px */
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
    order: 3;
    gap: 1.25rem;
  }
  #resourcesFaq .option {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 700;
    padding: 0;
    color: var(--bodyTextColor);
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color .3s;
  }
  #resourcesFaq .option:hover {
    color: var(--primary);
    cursor: pointer;
  }
  #resourcesFaq .option.active {
    color: var(--primary);
  }
  #resourcesFaq .picture {
    width: 100%;
    /* 328px - 450px */
    height: clamp(20.5rem, 30vw, 28.125rem);
    /* 16px - 20px */
    margin: 0 0 clamp(1rem, 2.4vw, 1.25rem);
    order: 2;
    position: relative;
    z-index: 1;
  }
  #resourcesFaq .picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #resourcesFaq .faq-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    order: 3;
    gap: 0.5rem;
    transition: transform 0.7s,
                opacity 0.3s,
                visibility 0.5s,
                top 0.3s,
                left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: top;
    transform-style: preserve-3d;
    perspective: 900px;
  }
  #resourcesFaq .faq-group.hidden {
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the FAQ won't fly off screen to the left, it will stop its position to be at the left edge of the .flex-group (left: 0). Same for the bottom:0 value, the FAQ won't go past that position when it animates */
    top: 0;
    left: 0;
    position: absolute;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0);
  }
  #resourcesFaq .faq-group.hidden .faq-item {
    transform: rotateX(270deg);
    opacity: 0;
  }
  #resourcesFaq .faq-item {
    list-style: none;
    width: 100%;
    /* clips all corners of the button that overlap the rounded border */
    overflow: hidden;
    opacity: 1;
    top: 0;
    transform: rotateX(0deg);
    transition: transform 0.6s,
                opacity 0.3s;
  }
  #resourcesFaq .faq-item:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #resourcesFaq .faq-item:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  #resourcesFaq .faq-item:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  #resourcesFaq .faq-item:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  #resourcesFaq .faq-item:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  #resourcesFaq .faq-item:nth-of-type(7) {
    transition-delay: 0.6s;
  }
  #resourcesFaq .faq-item:nth-of-type(8) {
    transition-delay: 0.7s;
  }
  #resourcesFaq .faq-item:nth-of-type(9) {
    transition-delay: 0.8s;
  }
  #resourcesFaq .faq-item:nth-of-type(10) {
    transition-delay: 0.9s;
  }
  #resourcesFaq .faq-item.active .button {
    color: var(--primary);
  }
  #resourcesFaq .faq-item.active .button:before {
    background-color: var(--primary);
    transform: rotate(315deg);
  }
  #resourcesFaq .faq-item.active .button:after {
    background-color: var(--primary);
    transform: rotate(-315deg);
  }
  #resourcesFaq .faq-item.active .item-p {
    height: auto;
    /* 20px - 24px bottom */
    /* 16px - 24px left & right */
    padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
    opacity: 1;
  }
  #resourcesFaq .button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    /* 16px - 24px top & bottom */
    /* 16px - 20px left & right */
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.25rem);
    background-color: #f7f7f7;
    border: none;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #resourcesFaq .button:hover {
    cursor: pointer;
  }
  #resourcesFaq .button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #resourcesFaq .button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.3125rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #resourcesFaq .button-text {
    width: 80%;
    display: block;
  }
  #resourcesFaq .button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        margin-top: 2rem;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        /* border-radius: 0.25rem; */
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #resourcesFaq .button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #resourcesFaq .button-solid:hover:before {
        width: 100%;
    }
  #resourcesFaq .item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 100%;
    height: 0;
    margin: 0;
    /* 16px - 24px */
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    background-color: #f7f7f7;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
}
/* Inbetween - 600px */
@media only screen and (min-width: 37.5rem) {
  #resourcesFaq .button-group {
    width: 80%;
    max-width: 22.0625rem;
    flex-direction: row;
    align-items: stretch;
    flex: none;
  }
  #resourcesFaq .content {
    width: 100%;
  }
  #resourcesFaq .picture {
    /* 300px - 493px */
    min-height: clamp(18.75rem, 30vw, 30.8125rem);
    margin: 0;
    height: 100%;
    flex: none;
    order: 3;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 48rem) {
  #resourcesFaq .flex-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* 20px - 80px */
    column-gap: clamp(1.25rem, 3vw, 5rem);
  }
  #resourcesFaq .button-group {
    flex-direction: column;
    flex: auto;
  }
  #resourcesFaq .picture {
    max-height: 31.25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #resourcesFaq .title,
  body.dark-mode #resourcesFaq .item-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #resourcesFaq .flex {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #resourcesFaq .option {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #resourcesFaq .option.active {
    color: var(--primary);
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(7) {
    transition-delay: 0.6s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(8) {
    transition-delay: 0.7s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(9) {
    transition-delay: 0.8s;
  }
  body.dark-mode #resourcesFaq .faq-item:nth-of-type(10) {
    transition-delay: 0.9s;
  }
  body.dark-mode #resourcesFaq .faq-item:hover {
    border-color: var(--secondary);
    transition: border-color 0.3s;
  }
  body.dark-mode #resourcesFaq .button {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #resourcesFaq .button:before,
  body.dark-mode #resourcesFaq .button:after {
    background-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #resourcesFaq .item-p {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--bodyTextColorWhite);
    opacity: .8;
  }
}
/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-852, #helpfulDownloads {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #content-page-852 .container, #helpfulDownloads .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #content-page-852 .content, #helpfulDownloads .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page-852 .title, #helpfulDownloads .title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page-852 h2,
    #content-page-852 h3,
    #content-page-852 h4,
    #content-page-852 h5,
    #content-page-852 h6,
    #helpfulDownloads h2,
    #helpfulDownloads h3,
    #helpfulDownloads h4,
    #helpfulDownloads h5,
    #helpfulDownloads h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page-852 h2, #helpfulDownloads h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-852 h3, #helpfulDownloads h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-852 h4,
    #content-page-852 h5,
    #content-page-852 h6,
    #helpfulDownloads h4,
    #helpfulDownloads h5,
    #helpfulDownloads h6 {
        font-size: 1.25rem;
    }
    #content-page-852 .button-solid, #helpfulDownloads .button-solid {
        margin-bottom: 2rem;
    }
    #content-page-852 .no-margin, #helpfulDownloads .no-margin {
        margin: 0;
    }
    #content-page-852 .color, #helpfulDownloads .color {
        color: var(--primary);
    }
    #content-page-852 p, #helpfulDownloads p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page-852 p:last-of-type, #helpfulDownloads p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-852 p a, #helpfulDownloads p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
    }
    #content-page-852 ol,
    #content-page-852 ul,
    #helpfulDownloads ol,
    #helpfulDownloads ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page-852 ul li, #helpfulDownloads ul li{
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page-852 ul li:before, #helpfulDownloads ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page-852 img, #helpfulDownloads img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page-852 .image-group, #helpfulDownloads .image-group {
        width: 50%;
        max-width: 27.0625rem;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
    }
   
    #content-page-852 .picture, #helpfulDownloads .picture {
        width: 100%;
        /* 300px - 520px */
        height: clamp(18.75rem, 40vw, 32.5rem);
        /* box-shadow: 0px 3.3478px 50.2169px rgba(0, 0, 0, 0.16); */
        /* 125px - 200px */
        /* border-radius: 0 clamp(7.8125rem, 15vw, 12.5rem) 0
            clamp(7.8125rem, 15vw, 12.5rem); */
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* clips img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #content-page-852 .picture img, #helpfulDownloads .picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-852 .container, #helpfulDownloads .container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page-852 .content, #helpfulDownloads .content {
        flex: none;
        width: 60%;
        /* sens it to the right in the 2nd position */
        order: 1;
    }
    #helpfulDownloads .content{
      order: 2;
    }
    #content-page-852 .image-group, #helpfulDownloads .image-group {
        display: flex;
        order: 1;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-page-852 {
        background-color: var(--dark);
    }
    body.dark-mode #content-page-852 .title,
    body.dark-mode #content-page-852 .text,
    body.dark-mode #content-page-852 h2,
    body.dark-mode #content-page-852 h3,
    body.dark-mode #content-page-852 h4,
    body.dark-mode #content-page-852 h5,
    body.dark-mode #content-page-852 h6,
    body.dark-mode #content-page-852 li,
    body.dark-mode #content-page-852 p,
    body.dark-mode #helpfulDownloads .title,
    body.dark-mode #helpfulDownloads .text,
    body.dark-mode #helpfulDownloads h2,
    body.dark-mode #helpfulDownloads h3,
    body.dark-mode #helpfulDownloads h4,
    body.dark-mode #helpfulDownloads h5,
    body.dark-mode #helpfulDownloads h6,
    body.dark-mode #helpfulDownloads li,
    body.dark-mode #helpfulDownloads p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #content-page-852 .color,
    body.dark-mode #content-page-852 a, body.dark-mode #helpfulDownloads .color,
    body.dark-mode #helpfulDownloads a {
        color: var(--primaryLight);
    }
    body.dark-mode #content-page-852 p,
    body.dark-mode #content-page-852 li,
    body.dark-mode #helpfulDownloads p,
    body.dark-mode #helpfulDownloads li {
        color: #ebebeb;
    }
    body.dark-mode #content-page-852 .picture, body.dark-mode #helpfulDownloads .picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
}

/*-- -------------------------- -->
<---       CONTACT PAGE         -->
<--- -------------------------- -*/
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1388 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        position: relative;
        z-index: 1;
    }
    #contact-1388 .container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #contact-1388 .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #contact-1388 .title {
        max-width: 23ch;
    }
    #contact-1388 .text {
        margin-bottom: 1rem;
    }
    #contact-1388 .text:last-of-type {
        margin-bottom: 2rem;
    }
    #contact-1388 .ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }
    #contact-1388 .li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #contact-1388 .li:hover .icon-wrapper {
        transform: scale(1.1);
    }
    #contact-1388 .header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--headerColor);
        display: block;
    }
    #contact-1388 .link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: #767676;
        display: block;
        position: relative;
    }
    #contact-1388 .link:hover {
        text-decoration: underline;
    }
    #contact-1388 .icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        transition: transform 0.3s;
    }
    #contact-1388 .icon {
        width: 1.5rem;
        height: auto;
        display: block;
    }
    #contact-1388 .form {
        width: 100%;
        max-width: 39.375rem;
        /* 24px - 48px top and bottom */
        /* 16px - 48px left and right */
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        /* prevents flexbox from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        /* border-radius: 1rem; */
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1388 .h3 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
    }
    #contact-1388 .label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-1388 .input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: var(--headerColor);
        background-color: #f7f7f7;
        /* border-radius: 0.5rem; */
        border: none;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
    }
    #contact-1388 .input::placeholder {
        color: #7d799c;
        opacity: 0.6;
    }
    #contact-1388 .textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1388 .button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #fff;
        padding: 0 3rem;
        /* border-radius: 1.875rem; */
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #contact-1388 .button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #contact-1388 .button-solid:hover {
        color: var(--primary);
    }
    #contact-1388 .button-solid:hover:before {
        width: 100%;
    }
    #contact-1388 .submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #contact-1388 .submit:hover {
        color: #fff;
        cursor: pointer;
    }
    .contact-heading{
      padding-top: 15rem!important;
    }
    .hidden-field {
        display: none;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1388 .container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-1388 .content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #contact-1388 .submit {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1388 .form {
        width: 46%;
        max-width: 36.125rem;
    }
    #contact-1388 .submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #contact-1388 .graphic {
        display: block;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #contact-1388 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #contact-1388 .title,
    body.dark-mode #contact-1388 .text,
    body.dark-mode #contact-1388 .header,
    body.dark-mode #contact-1388 .link,
    body.dark-mode #contact-1388 .label,
    body.dark-mode #contact-1388 .h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #contact-1388 .contact-text,
    body.dark-mode #contact-1388 .link {
        opacity: 0.8;
    }
    body.dark-mode #contact-1388 .icon-wrapper {
        border-color: #fff;
    }
    body.dark-mode #contact-1388 .icon {
        /* makes it white */
        filter: grayscale(1) brightness(1000%);
    }
    body.dark-mode #contact-1388 .form {
        background-color: var(--medium);
    }
    body.dark-mode #contact-1388 .input {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
    }
    body.dark-mode #contact-1388 .input::placeholder {
        color: #fff;
        opacity: 0.8;
    }
    body.dark-mode #contact-1388 .graphic {
        opacity: 0.4;
    }
}

                                

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1292 {
    padding: var(--sectionPadding);
    padding-bottom: 1.25rem;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 10;
    background-color: var(--secondary);
    /* Navigation Links */
  }
  #footer-1292 .svg-background {
    position: absolute;
    top: 0;
    right:-20%;
    /* left: 0; */
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1; /* Adjust this value to change the SVG visibility */
    display: flex;
    justify-content: flex-end; /* Align SVG to the right */
    transform: translateX(-20%);
  }

  #footer-1292 .svg-background svg {
    width: 100%;
    height: 100%;
    width: auto; /* Changed from 100% to auto */
  max-width: none; /* Ensure SVG isn't constrained by container width */
    transform: scale(1.5);
  }
    #footer-1292 .container {
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 1.5rem;
        row-gap: 2.25rem;
    }
    #footer-1292 .logo-group {
        /* takes up all the space, lets the other ul's wrap below it */
        width: 100%;
        position: relative;
    }
    #footer-1292 .logo {
        width: 12.3125rem;
        height: auto;
        display: block;
        /* 20px - 24px */
        margin: 0 0 clamp(1.25rem, 2vw, 1.5rem) 0;
    }
    #footer-1292 .logo-img {
        width: auto;
        height: 5rem;
    }
    #footer-1292 .logo-img.dark {
        display: none;
    }
    #footer-1292 .text {
        font-size: 0.875rem;
        line-height: 1.5em;
        /* 20px - 36px */
        margin: 0 0 clamp(1.25rem, 3vw, 2.25rem);
        width: 78%;
        max-width: 15rem;
        color: var(--bodyTextColorWhite);
    }
    #footer-1292 .link {
        font-size: 0.875rem;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--bodyTextColorWhite);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        transition: color 0.3s;
    }
    #footer-1292 .link:hover {
        color: var(--primary);
    }
    #footer-1292 .nav {
        width: 45%;
        max-width: 11.25rem;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    #footer-1292 .nav-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        color: var(--bodyTextColorWhite);
    }
    #footer-1292 .header {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--white);
        position: relative;
        display: block;
    }
    #footer-1292 .nav-link {
        font-size: 0.875rem;
        text-decoration: none;
        line-height: 1.5em;
        width: auto;
        color: var(--softWhite);
        position: relative;
        display: inline-block;
        transition: color 0.3s;
    }
    #footer-1292 .nav-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 0.125rem;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    #footer-1292 .nav-link:hover {
        color: var(--primary);
    }
    #footer-1292 .nav-link:hover:before {
        width: 100%;
    }
    #footer-1292 .nav-link span.lang-en {
        color:var(--bodyTextColorWhite) ;
    }
    #footer-1292 .bottom {
        max-width: 80rem;
        margin: auto;
        /* 48px - 100px */
        margin-top: clamp(3rem, 9vw, 6.25rem);
        /* 20px - 32px */
        padding: clamp(1.25rem, 3vw, 2rem) 0 0 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        column-gap: 2.25rem;
        row-gap: 0.75rem;
    }
    #footer-1292 .copyright,
    #footer-1292 .copyright-link {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
    }
    #footer-1292 .copyright {
        text-align: center;
        width: 100%;
    }
    #footer-1292 .copyright-link {
        text-decoration: none;
        transition: color 0.3s;
    }
    #footer-1292 .copyright-link:hover {
        color: var(--secondary);
    }
    #footer-1292 .floater {
        width: 31.625rem;
        height: 31.625rem;
        margin-left: 34.375rem;
        border-radius: 50%;
        border: 2px solid var(--primary);
        opacity: 0.1;
        display: none;
        position: absolute;
        left: 50%;
        top: 0;
        z-index: -1;
    }
    #footer-1292 .floater:before {
        content: "";
        width: 44.6875rem;
        height: 44.6875rem;
        border: 2px solid var(--primary);
        border-radius: 50%;
        opacity: 0.6;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #footer-1292 .floater:after {
        content: "";
        width: 60.1875rem;
        height: 60.1875rem;
        border: 2px solid var(--primary);
        border-radius: 50%;
        opacity: 0.3;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #footer-1292 .container,
  #footer-1292 .bottom {
    position: relative;
    z-index: 2;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer-1292 .container {
        row-gap: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        column-gap: 5.5rem;
        row-gap: 2.5rem;
    }
    #footer-1292 .nav {
        width: auto;
    }
    #footer-1292 .bottom {
        flex-wrap: nowrap;
        justify-content: flex-start;
        color: var(--bodyTextColorWhite);
    }
    #footer-1292 .copyright {
        text-align: left;
        width: auto;
        margin-right: auto;
    }
    #footer-1292 .floater {
        display: block;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #footer-1292 .container {
        max-width: 80rem;
        flex-wrap: nowrap;
        /* align everything to the right */
        justify-content: flex-end;
        column-gap: clamp(2.5rem, 6vw, 5.25rem);
    }
    #footer-1292 .logo-group {
        width: 30%;
        max-width: 24.1875rem;
        /* pushes away from everything to the right */
        margin-right: auto;
    }
    #footer-1292 .text {
        width: 100%;
        color: var(--bodyTextColorWhite);
    }
    #footer-1292 .graphic {
        display: block;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #footer-1292 .text,
    body.dark-mode #footer-1292 .link,
    body.dark-mode #footer-1292 .nav-link,
    body.dark-mode #footer-1292 .header,
    body.dark-mode #footer-1292 .copyright,
    body.dark-mode #footer-1292 .copyright-link {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #footer-1292 .link .link-icon {
        filter: grayscale(1) brightness(1000%);
    }
}                                                              
                                
                                
                                
                                                               