@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Define media queries
 */
* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #FFFCF5;
  color: #000000;
}

button, a {
  cursor: pointer;
}

img, video {
  width: 100%;
  line-height: 0;
  border-radius: 10px;
}

.cc__image-no-radius {
  border-radius: 0;
}
.cc__image-no-radius img, .cc__image-no-radius video {
  border-radius: 0;
}
.cc__image-no-radius .carousel__swiper-image-wrap {
  height: auto;
  min-height: auto;
}

.cc__helper-text {
  position: absolute;
  font-size: 0;
  line-height: 0;
}

.cc__body-freeze {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
}
.cc__body-freeze .header__alert-bar-body {
  display: none;
}

.cc__main-body {
  position: relative;
}

.cc__margins {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}
.cc__margins--large {
  max-width: 500px;
  padding-left: 25px;
  padding-right: 25px;
  display: block;
  margin: 0 auto;
}

.cc__section-padding {
  padding-top: 60px;
  padding-bottom: 85px;
}

.cc__background-primary-purple {
  background-color: #3B1F5F;
  color: #FFFCF5;
}
.cc__background-primary-purple .carousel__swiper-slide {
  background-color: #3B1F5F;
  color: #FFFCF5;
}
.cc__background-primary-purple .swiper-pagination-bullet {
  border: 2px solid #FFFCF5;
}
.cc__background-primary-purple .swiper-pagination-bullet-active {
  background-color: #FFFCF5;
}
.cc__background-primary-purple .carousel__swiper-button {
  border-color: #FFFCF5;
  color: #FFFCF5;
}
.cc__background-primary-purple .carousel__swiper-button:focus {
  background-color: #FFFCF5;
  color: #3B1F5F;
}

.cc__background-secondary-purple {
  background-color: #E9DAFC;
  color: #3B1F5F;
}
.cc__background-secondary-purple .carousel__swiper-slide {
  background-color: #E9DAFC;
}

.cc__purple-highlight {
  color: #773DBD;
}

.cc__button {
  background-color: transparent;
  border-radius: 10px;
  color: #FFFCF5;
  border: 2px solid #FFFCF5;
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
  padding: 15px 16px;
  text-decoration: none;
  display: inline-block;
  width: 90%;
  margin: 30px auto 0;
  transition: all 0.3s ease-in-out;
}
.cc__button:focus {
  background-color: #FFFCF5;
  color: #3B1F5F;
}
.cc__button--purple {
  background-color: transparent;
  border: 2px solid #3B1F5F;
  border-radius: 10px;
  color: #3B1F5F;
}
.cc__button--purple:focus {
  background-color: #3B1F5F;
  color: #FFFCF5;
}

.cc__copy + .cc__button {
  margin-top: 10px;
}

.cc__copy {
  font-family: "greycliff-cf", sans-serif;
  font-size: calc(18px + 2 * ((100vw - 375px) / 1065));
  line-height: 145%;
  padding-bottom: 15px;
}
.cc__copy--large {
  font-size: calc(18px + 10 * ((100vw - 375px) / 1065));
  line-height: 160%;
}
.cc__copy--large p, .cc__copy--large ul, .cc__copy--large ol {
  font-size: calc(18px + 10 * ((100vw - 375px) / 1065));
  line-height: 160%;
}
.cc__copy a {
  font-weight: 700;
  color: #773DBD;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 2px solid #773DBD;
  transition: all 0.3s ease-in-out;
}
.cc__copy a:focus {
  color: #3B1F5F;
  border-bottom: 2px solid #3B1F5F;
}
.cc__copy strong {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
}
.cc__copy h1, .cc__copy h2 {
  padding-bottom: 15px;
}
.cc__copy h3, .cc__copy h4, .cc__copy h5, .cc__copy h6 {
  padding-bottom: 10px;
}
.cc__copy h1 {
  font-family: "quincy-cf", serif;
  font-size: calc(41px + 25.5 * ((100vw - 375px) / 1065));
  line-height: 115%;
  letter-spacing: -0.5px;
}
.cc__copy h2 {
  font-family: "quincy-cf", serif;
  font-size: calc(48px + 10 * ((100vw - 375px) / 1065));
  line-height: 130%;
}
.cc__copy h3 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(38px + 10 * ((100vw - 375px) / 1065));
  line-height: 130%;
}
.cc__copy h4 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(38px + 1 * ((100vw - 375px) / 1065));
  line-height: 135%;
}
.cc__copy h5 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 31px;
}
.cc__copy h6 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.cc__copy ul, .cc__copy ol {
  font-size: 18px;
  line-height: 175%;
  list-style: disc;
  padding: 22px 0 22px 25px;
}
.cc__copy ul li, .cc__copy ol li {
  padding-bottom: 25px;
}
.cc__copy ul li:last-of-type, .cc__copy ol li:last-of-type {
  padding-bottom: 0;
}
.cc__copy ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 30px;
}
.cc__copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: #773DBD;
}
.cc__copy ol {
  list-style: decimal;
}
.cc__copy p + ul,
.cc__copy p + ol {
  padding-top: 7px;
}
.cc__copy img, .cc__copy video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-top: 25px;
}
.cc__copy img {
  height: auto;
}
.cc__copy p + img,
.cc__copy p + video {
  margin-top: 25px;
}
.cc__copy p:first-of-type img {
  margin-top: 0;
}
.cc__copy blockquote {
  font-size: calc(18px + 10 * ((100vw - 375px) / 1065));
  line-height: 135%;
}
.cc__copy hr {
  border-color: #3B1F5F;
}

.cc__title--h1 {
  font-family: "quincy-cf", serif;
  font-size: calc(41px + 25.5 * ((100vw - 375px) / 1065));
  line-height: 115%;
  padding-bottom: 10px;
  letter-spacing: -0.5px;
}

.cc__title--h2 {
  font-family: "quincy-cf", serif;
  font-size: calc(48px + 10 * ((100vw - 375px) / 1065));
  line-height: 130%;
  padding-bottom: 5px;
}

.cc__title--h3 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(38px + 10 * ((100vw - 375px) / 1065));
  line-height: 130%;
}

.cc__title--h4 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(38px + 1 * ((100vw - 375px) / 1065));
  line-height: 135%;
}

.cc__title--h5 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(28px + 10 * ((100vw - 375px) / 1065));
}

.cc__title--h6 {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 31px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 2px solid #3B1F5F;
  background-color: transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #3B1F5F;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 13px 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  width: fit-content;
  top: 15%;
  transform: none;
  left: 0;
}

.cc__image-radius {
  border-top-left-radius: 140px;
}
.cc__image-radius--right {
  border-top-right-radius: 140px;
}

.cc__column-reverse .two-column-img-text__content-wrap {
  flex-direction: column-reverse;
}
.cc__column-reverse .two-column-img-text__content-wrap .two-column-img-text__img {
  padding-bottom: 65px;
  border-top-right-radius: 140px;
  border-top-left-radius: 10px;
}
.cc__column-reverse .two-column-img-text__content-wrap--callout {
  flex-direction: column;
}
.cc__column-reverse .two-column-img-text__content-wrap--callout .two-column-img-text__copy-wrap {
  order: 2;
}
.cc__column-reverse .two-column-img-text__content-wrap--callout .two-column-img-text__img-wrap {
  order: 1;
}
.cc__column-reverse .two-column-img-text__content-wrap--callout .two-column-img-text__callout-body-wrap {
  order: 3;
}

.cc__remove-top-padding {
  padding-top: 0;
}
.cc__remove-top-padding .cc__section-padding,
.cc__remove-top-padding .two-column-img-text__content-wrap {
  padding-top: 0;
}

.cc__remove-bottom-padding {
  padding-bottom: 0;
}
.cc__remove-bottom-padding .cc__section-padding,
.cc__remove-bottom-padding .two-column-img-text__content-wrap {
  padding-bottom: 0;
}

.cc__remove-border {
  border: none;
}
.cc__remove-border:after {
  background-color: transparent;
}
.cc__remove-border .resources__body-wrap:after {
  background-color: transparent;
}

@media screen and (min-width: 720px) {
  .cc__margins {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1600px;
  }
  .cc__margins--large {
    padding-left: 80px;
    padding-right: 80px;
    max-width: 1400px;
  }

  .cc__button {
    width: auto;
    min-width: 135px;
    text-align: center;
  }

  .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    top: 30%;
  }

  .cc__column-reverse .two-column-img-text__content-wrap {
    flex-direction: row-reverse;
  }
  .cc__column-reverse .two-column-img-text__content-wrap .two-column-img-text__img {
    padding-bottom: 0px;
  }
  .cc__column-reverse .two-column-img-text__content-wrap--callout {
    flex-direction: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .cc__margins {
    padding-left: 70px;
    padding-right: 70px;
    max-width: 1500px;
  }
  .cc__margins--large {
    padding-left: 110px;
    padding-right: 110px;
    max-width: 1500px;
  }

  .cc__section-padding {
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .cc__copy + .cc__button {
    margin-top: 30px;
  }

  .cc__copy {
    line-height: 165%;
  }
  .cc__copy h2 {
    padding-bottom: 25px;
  }
  .cc__copy ul, .cc__copy ol {
    padding: 30px 25px 30px;
  }
  .cc__copy ul li, .cc__copy ol li {
    padding-bottom: 22px;
  }
  .cc__copy p + ul,
.cc__copy p + ol {
    padding-top: 15px;
  }

  .cc__title--h1 {
    padding-bottom: 20px;
  }

  .cc__title--h2 {
    padding-bottom: 25px;
  }

  .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
  }

  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 23px 0;
  }

  .cc__image-radius {
    border-top-left-radius: 200px;
  }
  .cc__image-radius--right {
    border-top-right-radius: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .cc__margins {
    padding-left: 100px;
    padding-right: 100px;
  }
  .cc__margins--large {
    padding-left: 200px;
    padding-right: 200px;
  }

  .cc__section-padding {
    padding-top: 130px;
    padding-bottom: 160px;
  }
}
@media screen and (min-width: 1800px) {
  .cc__copy {
    font-size: 22px;
  }
  .cc__copy--large {
    font-size: 31px;
  }
  .cc__copy--large p, .cc__copy--large ul, .cc__copy--large ol {
    font-size: 31px;
  }
  .cc__copy h1 {
    font-size: 72px;
  }
  .cc__copy h2 {
    font-size: 63px;
  }
  .cc__copy h3 {
    font-size: 53px;
  }
  .cc__copy h4 {
    font-size: 43px;
  }
  .cc__copy h5 {
    font-size: 42px;
  }
  .cc__copy blockquote {
    font-size: 31px;
  }

  .cc__title--h1 {
    font-size: 72px;
  }

  .cc__title--h2 {
    font-size: 63px;
  }

  .cc__title--h3 {
    font-size: 53px;
  }

  .cc__title--h4 {
    font-size: 43px;
  }

  .cc__title--h5 {
    font-size: 42px;
  }
}
@media (hover: hover) {
  .cc__background-primary-purple .carousel__swiper-button:hover {
    background-color: #FFFCF5;
    color: #3B1F5F;
  }

  .cc__button:hover {
    background-color: #FFFCF5;
    color: #3B1F5F;
  }

  .cc__button--purple:hover {
    background-color: #3B1F5F;
    color: #FFFCF5;
  }

  .cc__copy a:hover {
    border-color: #3B1F5F;
    color: #3B1F5F;
  }
}
.header__skip-cta {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  position: absolute;
  border-radius: 0;
  text-decoration: none;
  height: 0;
  color: transparent;
  border-color: transparent;
}
.header__skip-cta:focus {
  position: static;
  border: 1px solid #FFFCF5;
  color: #FFFCF5;
  background-color: #3B1F5F;
  height: auto;
}

.header__alert-bar-body {
  background-color: #3B1F5F;
  padding: 15px 10px;
}

.header__alert-bar-link-wrap {
  color: #FFFCF5;
  text-decoration: none;
}

.header__alert-bar-text {
  text-align: center;
  font-size: 14px;
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.header__body-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.header__nav-body-wrap {
  background-color: #FFFCF5;
  padding-top: 25px;
  padding-bottom: 30px;
}
.header__nav-body-wrap .footer__main-logo-wrap {
  display: none;
}
.header__nav-body-wrap--open {
  background-color: #3B1F5F;
}
.header__nav-body-wrap--open .header__logo-wrap {
  display: none;
}
.header__nav-body-wrap--open .footer__main-logo-wrap {
  display: block;
  margin: 0;
}

.header__nav-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-wrap {
  width: 23%;
}

.header__logo {
  width: 100%;
  max-width: 110px;
  border-radius: 0;
}

.header__menu-btn {
  border: none;
  background-color: transparent;
  height: 25px;
  padding: 0;
  z-index: 3;
  cursor: pointer;
}
.header__menu-btn--open {
  right: 25px;
}

.header__menu-btn-line {
  display: block;
  width: 23px;
  position: relative;
  left: 50%;
  height: 3px;
  background: #3B1F5F;
  transform: rotate(0deg) translateX(-50%);
  transition: 0.25s ease-in-out;
}

.header__menu-btn-line:first-of-type {
  top: -4px;
}

.header__menu-btn-line:nth-child(2) {
  top: 0px;
}

.header__menu-btn-line:nth-child(3) {
  top: 4px;
}

.header__menu-btn--open .header__menu-btn-line:first-of-type,
.header__menu-btn--open .header__menu-btn-line:nth-child(2) {
  background-color: #FFFCF5;
  width: 23px;
  height: 3px;
}

.header__menu-btn--open .header__menu-btn-line:first-of-type {
  transform: rotate(45deg) translateX(0%);
  top: -1px;
  left: 1px;
}

.header__menu-btn--open .header__menu-btn-line:nth-child(2) {
  transform: rotate(-45deg) translateX(0%);
  top: -4px;
  left: 3%;
}

.header__menu-btn--open .header__menu-btn-line:nth-child(3) {
  width: 0;
  height: 0;
  border: none;
}

.header__nav-content-wrap {
  display: none;
  background-color: #3B1F5F;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 0 0;
}

.header__nav-content-wrap--open {
  display: block;
  width: 100%;
}

.header__nav-list-btn {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: calc(24px + 6 * ((100vw - 375px) / 1065));
  line-height: 130%;
  display: block;
  width: 100%;
  padding-bottom: 35px;
  color: #FFFCF5;
  text-decoration: none;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0 0 35px;
  transition: 0.25s ease-in-out;
}
.header__nav-list-btn--dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-list-btn--show + .header__nav-dropdown-wrap {
  display: block;
  border-bottom: 2px solid #FFFCF5;
  margin-bottom: 35px;
}
.header__nav-list-btn--show .header__nav-dropdown-icon-wrap:after {
  transform: rotate(135deg);
}

.header__nav-dropdown-icon-wrap {
  position: relative;
  width: fit-content;
}
.header__nav-dropdown-icon-wrap:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #FFFCF5;
  border-right: 3px solid #FFFCF5;
  border-radius: 1px;
  transform: rotate(45deg);
  transition: 0.3s ease-in-out;
}

.header__nav-dropdown-list-wrap {
  font-family: "greycliff-cf", sans-serif;
  padding: 0 0 35px 18px;
}

.header__nav-dropdown-wrap {
  display: none;
}

.header__nav-dropdown-item {
  padding-bottom: 20px;
}
.header__nav-dropdown-item:last-of-type {
  padding-bottom: 0;
}

.header__nav-dropdown-link {
  color: #FFFCF5;
  font-size: 18px;
  text-decoration: none;
}

@media screen and (min-width: 720px) {
  .header__menu-btn--open {
    right: 67px;
  }
}
@media screen and (min-width: 1024px) {
  .header__alert-bar-body {
    padding: 18px 30px;
  }

  .header__alert-bar-text {
    font-size: 16px;
  }

  .header__body-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .header__logo-wrap {
    width: 20%;
  }

  .header__logo {
    max-width: 125px;
  }

  .footer__main-logo-wrap {
    display: none;
  }

  /*.header__menu-btn {*/
  /*  display: none;*/
  /*}*/

  .header__nav-body-wrap {
    padding: 0;
  }
  .header__nav-body-wrap--open {
    background-color: #FFFCF5;
  }
  .header__nav-body-wrap--open .header__logo-wrap {
    display: block;
  }
  .header__nav-body-wrap--open .footer__main-logo-wrap {
    display: none;
  }

  .header__nav-content-wrap {
    background-color: #FFFCF5;
    display: block;
    overflow-y: visible;
    position: inherit;
    bottom: inherit;
    left: inherit;
    right: inherit;
    min-height: inherit;
    width: 75%;
    padding: 0;
  }

  .header__nav-list-wrap {
    display: flex;
    justify-content: space-between;
    padding: 0;
    max-width: 850px;
    margin: 0 0 0 auto;
  }

  .header__nav-list-item {
    padding-top: 0;
    position: relative;
  }
  .header__nav-list-item:last-of-type {
    padding-top: 0;
    padding-bottom: 0;
    border: 2px solid #3B1F5F;
    border-radius: 10px;
    color: #3B1F5F;
    align-self: center;
  }
  .header__nav-list-item:last-of-type .header__nav-list-btn {
    padding: 15px 20px;
    border-radius: 7px;
  }
  .header__nav-list-item:last-of-type .header__nav-list-btn:focus {
    background-color: #3B1F5F;
    color: #FFFCF5;
  }

  .header__nav-list-btn {
    color: #3B1F5F;
    font-size: 18px;
    padding: 40px 0;
    position: relative;
  }
  .header__nav-list-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3B1F5F;
    visibility: hidden;
    bottom: 35px;
    transition: all 0.3s ease-in-out;
  }
  .header__nav-list-btn:focus:after {
    visibility: visible;
    width: 100%;
  }

  .header__nav-list-btn--show + .header__nav-dropdown-wrap {
    display: block;
    border-bottom: 4px solid #3B1F5F;
  }
  .header__nav-dropdown-icon-wrap {
    display: none;
  }

  .header__nav-dropdown-wrap {
    display: none;
    position: absolute;
    background-color: #FFFCF5;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__nav-dropdown-list-wrap {
    min-width: 220px;
    padding: 10px 35px 35px;
  }

  .header__nav-dropdown-item {
    text-align: center;
    padding-bottom: 15px;
  }

  .header__nav-dropdown-link {
    color: #3B1F5F;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-body {
    padding-top: 30px;
  }

  .header__logo {
    max-width: 160px;
  }

  .header__nav-content-wrap {
    width: 70%;
  }

  .header__nav-list-item:last-of-type .header__nav-list-btn {
    padding: 18px 15px;
  }

  .header__nav-list-btn {
    font-size: 20px;
  }

  .header__nav-dropdown-wrap {
    border-bottom: 6px solid #3B1F5F;
  }

  .header__nav-dropdown-list-wrap {
    padding: 20px 45px 45px;
  }

  .header__nav-dropdown-item {
    padding-bottom: 25px;
  }
}
@media (hover: hover) {
  .header__nav-list-btn:hover:after {
    visibility: visible;
    width: 100%;
  }

  .header__nav-list-item:last-of-type .header__nav-list-btn:hover {
    background-color: #3B1F5F;
    color: #FFFCF5;
  }
  .header__nav-list-item:last-of-type .header__nav-list-btn:hover:after {
    visibility: hidden;
  }
}
.footer__body-wrap {
  padding-top: 65px;
  padding-bottom: 45px;
}

.footer__main-content-wrap {
  padding-bottom: 115px;
}

.footer__main-logo-wrap {
  display: block;
  width: 31%;
  max-width: 120px;
  margin-bottom: 55px;
}
.footer__main-logo-wrap img {
  border-radius: 0;
}

.footer__nav-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 48.5fr);
  grid-gap: 20px 25px;
  padding: 0;
}

.footer__nav-list-item {
  list-style: none;
}
.footer__nav-list-item a {
  font-weight: 500;
  color: #FFFCF5;
  border-bottom: none;
  transition: all 0.3s ease-in-out;
}

.footer__nav-list-link {
  position: relative;
}
.footer__nav-list-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFFCF5;
  visibility: hidden;
  bottom: -5px;
  transition: all 0.3s ease-in-out;
}
.footer__nav-list-link:focus {
  color: #FFFCF5;
}
.footer__nav-list-link:focus:after {
  visibility: visible;
  width: 100%;
}

.footer__contact-address-wrap {
  padding-bottom: 55px;
}

.footer__contact-address-title {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 5px;
}

.footer__contact-address {
  padding-bottom: 0;
  line-height: 130%;
}

.footer__contact-number {
  padding-bottom: 0;
  color: #FFFCF5;
  text-decoration: none;
  line-height: 130%;
}

.footer__contact-social-list-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 55%;
  max-width: 250px;
}

.footer__social-list-item {
  display: block;
  max-width: 30px;
  max-height: 25px;
  transition: all 0.3s ease-in-out;
}

.footer__list-item-image {
  width: auto;
  height: auto;
  border-radius: 0;
}

@media screen and (min-width: 1024px) {
  .footer__body-wrap {
    padding-top: 100px;
    padding-bottom: 85px;
  }

  .footer__main-content-wrap {
    display: flex;
    padding-bottom: 95px;
  }

  .footer__main-logo-wrap {
    width: 15%;
    max-width: 150px;
    margin-bottom: 0;
  }

  .footer__main-logo {
    width: 100%;
  }

  .footer__nav-list-wrap {
    width: 95%;
    margin-left: 15%;
    grid-template-columns: repeat(3, 31.5fr);
    grid-gap: 12px 40px;
    padding: 0;
  }

  .footer__contact-body-wrap {
    display: flex;
    align-items: center;
  }

  .footer__contact-address-wrap {
    padding-bottom: 0px;
    width: 43%;
  }

  .footer__contact-address-title {
    padding-bottom: 10px;
  }

  .footer__contact-social-list-wrap {
    width: 20%;
    justify-content: flex-start;
  }

  .footer__social-list-item {
    margin-right: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__body-wrap {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .footer__main-logo-wrap {
    width: 10%;
  }

  .footer__nav-list-wrap {
    width: 100%;
    margin-left: 19%;
    grid-gap: 10px 70px;
    padding: 0;
  }
}
@media (hover: hover) {
  .footer__nav-list-item a:hover {
    color: #FFFCF5;
  }

  .footer__nav-list-link:hover {
    color: #FFFCF5;
  }
  .footer__nav-list-link:hover:after {
    visibility: visible;
    width: 100%;
  }

  .footer__contact-social-list-wrap:hover > .footer__social-list-item {
    opacity: 0.5;
  }

  .footer__contact-social-list-wrap:hover > .footer__social-list-item:hover {
    opacity: 1;
  }
}
.home__hero-content-wrap {
  border-radius: 20px;
  border-top-left-radius: 160px;
}

.home__hero-img-wrap {
  height: 50vh;
  min-height: 270px;
}

.home__hero-img {
  border-top-left-radius: 160px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  height: 100%;
  object-fit: cover;
}

.home__hero-copy-wrap {
  text-align: center;
  padding: 40px 30px;
}
.home__hero-copy-wrap img {
  display: block;
  width: 85%;
  max-width: 325px;
  margin: 0 auto;
}

.home__accordion-body-wrap {
  color: #3B1F5F;
}

.home__accordion-copy-wrap {
  padding-bottom: 25px;
}

.home__team-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 48.5fr);
  grid-gap: 30px 15px;
}

.home__team-item-image-wrap {
  height: 27vh;
  min-height: 165px;
  width: auto;
  overflow: hidden;
  padding-bottom: 15px;
}

.home__team-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home__team-item-name {
  font-size: calc(18px + 10 * ((100vw - 375px) / 1065));
  text-align: center;
  width: 90%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 720px) {
  .home__hero-content-wrap {
    border-top-left-radius: 200px;
    display: flex;
    height: 65vh;
    min-height: 550px;
  }

  .home__hero-img-wrap {
    width: 50%;
    height: 65vh;
    min-height: 550px;
  }

  .home__hero-img {
    object-fit: cover;
    height: 100.1%;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 200px;
    border-top-right-radius: 0;
  }

  .home__hero-copy-wrap {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding: 65px 30px;
  }

  .home__team-list-wrap {
    display: grid;
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 30px 25px;
  }

  .home__team-item-image-wrap {
    min-height: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .home__hero-wrap {
    padding-top: 20px;
  }

  .home__hero-content-wrap {
    height: 75vh;
    min-height: 650px;
    border-top-left-radius: 300px;
  }

  .home__hero-img-wrap {
    height: 75vh;
    min-height: 650px;
  }

  .home__hero-img {
    border-top-left-radius: 300px;
  }

  .home__hero-copy-wrap {
    padding: 65px 55px;
  }
  .home__hero-copy-wrap img {
    width: 100%;
  }

  .home__accordion-body-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .home__accordion-copy-wrap {
    width: 40%;
  }

  .home__accordion-wrap {
    width: 55%;
    margin-top: 90px;
  }

  .home__team-list-wrap {
    display: grid;
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 35px;
  }

  .home__team-list-item {
    position: relative;
  }
  .home__team-list-item:focus .home__team-item-name-wrap {
    opacity: 1;
  }

  .home__team-item-image-wrap {
    padding-bottom: 0;
    height: 30vh;
    min-height: 220px;
  }

  .home__team-item-name-wrap {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(59, 31, 95, 0.8);
    z-index: 1;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }

  .home__team-item-name {
    color: #FFFCF5;
    text-align: left;
    width: 100%;
    padding: 30px;
    align-self: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .home__hero-copy-wrap {
    padding: 65px 75px;
  }
  .home__hero-copy-wrap img {
    max-width: 450px;
  }

  .home__accordion-copy-wrap {
    width: 35%;
  }

  .home__accordion-wrap {
    width: 60%;
  }

  .home__team-list-wrap {
    grid-gap: 65px;
  }
}
@media screen and (min-width: 1800px) {
  .home__team-list-wrap {
    grid-gap: 85px;
  }

  .home__team-item-name {
    font-size: 31px;
  }
}
@media (hover: hover) {
  .home__team-list-item:hover .home__team-item-name-wrap {
    opacity: 1;
  }
}
.carousel__content-reverse .carousel__swiper-image {
  border-top-left-radius: 200px;
  border-top-right-radius: 20px;
}

.carousel__body-wrap {
  padding-top: 70px;
  padding-bottom: 40px;
}

.carousel__swiper-slide {
  background-color: #FFFCF5;
  color: #3B1F5F;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
}

.carousel__swiper-image-wrap {
  position: relative;
  height: 40vh;
  min-height: 200px;
  max-height: 350px;
  width: 75%;
  display: block;
  margin: 0 auto;
  padding-bottom: 15px;
}

.carousel__swiper-image {
  border-top-right-radius: 200px;
  height: 100%;
  object-fit: cover;
}

.carousel__swiper-copy {
  text-align: center;
  font-size: calc(18px + 10 * ((100vw - 375px) / 1065));
  width: 90%;
  display: block;
  margin: 0 auto;
}
.carousel__swiper-copy blockquote:before {
  content: "“";
  font-family: "greycliff-cf", sans-serif;
  font-weight: 500;
  font-size: calc(58px + 30 * ((100vw - 375px) / 1065));
  line-height: 100%;
  display: block;
  margin-bottom: -20px;
}
.carousel__swiper-copy h1, .carousel__swiper-copy h2, .carousel__swiper-copy h3 {
  font-family: "quincy-cf", serif;
}
.carousel__swiper-copy h6 {
  font-size: calc(20px + 8 * ((100vw - 375px) / 1065));
  line-height: 160%;
  font-weight: 500;
}

.carousel__swiper-button {
  display: table;
  margin: 20px auto 0;
}

.hero__copy-column {
  padding-bottom: 35px;
}

.about-grid__list-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(10rem, 100%), 1fr));
  grid-gap: 15px;
}

.about-grid__list-item {
  background-color: #FFFCF5;
  height: 20vh;
  min-height: 170px;
  max-height: 230px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.about-grid__item-link-wrap {
  color: #3B1F5F;
  text-decoration: none;
  display: flex;
  height: 100%;
}

.about-grid__item-link-title {
  padding: 17px 15px;
  margin-top: auto;
  transition: all 0.3s ease-in-out;
}

.accordion__toggle-list-item:last-of-type {
  border-bottom: 2px solid #773DBD;
}

.accordion__item-toggle {
  font-size: 22px;
  line-height: 135%;
  color: #3B1F5F;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 2px solid #773DBD;
  padding: 22px 25px 22px 15px;
  margin: 0;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: height 2.5s ease-in-out;
}
.accordion__item-toggle span {
  display: block;
  width: 85%;
}
.accordion__item-toggle:after {
  content: "";
  width: 14px;
  height: 14px;
  border: 4px solid #773DBD;
  border-radius: 1px;
  display: block;
  border-left: 0px solid #FFFCF5;
  border-bottom: 0px solid #FFFCF5;
  transform: rotate(45deg);
  transition: all 0.5s ease-in-out;
}
.accordion__item-toggle--open:after {
  transform: rotate(135deg);
}

.accordion__item-content {
  max-height: 0;
  display: none;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  transition: max-height 0.5s ease-out;
}

.accordion__item-toggle--open ~ .accordion__item-content {
  display: block;
}

.accordion__item-copy-wrap {
  padding-bottom: 45px;
  color: #000000;
}
.accordion__item-copy-wrap img, .accordion__item-copy-wrap video {
  width: 115%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.accordion__item-cta {
  display: table;
  margin: -25px auto 45px;
}

.hero__body-wrap {
  padding: 20px 25px 55px;
}

.hero__image-wrap {
  padding-bottom: 45px;
}

.hero__copy-wrap {
  color: #3B1F5F;
}

.two-column-img-text__content-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
  padding-bottom: 80px;
}
.two-column-img-text__content-wrap--callout {
  margin-bottom: 250px;
}

.two-column-img-text__copy-wrap {
  color: #3B1F5F;
  padding-bottom: 60px;
}

.two-column-img-text__img-wrap {
  width: 80%;
  display: block;
  margin: 0 auto;
  height: 40vh;
  min-height: 200px;
  max-height: 300px;
}

.two-column-img-text__img {
  height: 100%;
  object-fit: cover;
}

.two-column-img-text__callout-body-wrap {
  margin-bottom: -330px;
  width: 100%;
}

.two-column-img-text__callout-body {
  padding-top: 55px;
  display: block;
  margin: 0 auto;
}

.two-column-img-text__callout {
  border-radius: 20px;
  padding: 50px 20px;
  text-align: center;
}
.two-column-img-text__callout p {
  font-size: calc(20px + 8 * ((100vw - 375px) / 1065));
}
.two-column-img-text__callout ul, .two-column-img-text__callout ol {
  font-size: calc(20px + 13 * ((100vw - 375px) / 1065));
  list-style: none;
  padding-left: 0;
}
.two-column-img-text__callout ul li, .two-column-img-text__callout ol li {
  padding-left: 0;
}
.two-column-img-text__callout ul li:before, .two-column-img-text__callout ol li:before {
  display: none;
}

.callout__content-wrap {
  padding-top: 55px;
  padding-bottom: 55px;
  color: #000000;
}
.callout__content-wrap h1, .callout__content-wrap h2, .callout__content-wrap h3,
.callout__content-wrap h4, .callout__content-wrap h5, .callout__content-wrap h6 {
  color: #3B1F5F;
}

.social__body-wrap {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.social__list-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
  max-width: 250px;
  margin: 0 auto;
  padding-bottom: 35px;
}

.social__list-item {
  display: block;
  max-width: 30px;
  max-height: 25px;
}

.social__item-icon {
  max-width: 30px;
  max-height: 25px;
  border-radius: 0;
}

.page__body-wrap h1, .page__body-wrap h2, .page__body-wrap h3, .page__body-wrap h4 {
  color: #3B1F5F;
}
.page__body-wrap h5, .page__body-wrap h6 {
  font-weight: 500;
}
.page__body-wrap img {
  width: auto;
  display: block;
  margin: 0 auto;
  max-height: 400px;
}

@media screen and (min-width: 720px) {
  .carousel__content-reverse .carousel__swiper-slide {
    flex-direction: row-reverse;
  }
  .carousel__content-reverse .swiper-pagination-vertical.swiper-pagination-bullets, .carousel__content-reverse .swiper-vertical > .swiper-pagination-bullets {
    left: auto;
  }

  .carousel__body-wrap {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  .carousel__swiper-slide {
    justify-content: space-around;
    align-items: center;
  }

  .carousel__swiper-image-wrap {
    width: 30%;
    height: 30vh;
    margin: 0;
    padding-bottom: 0;
  }

  .carousel__swiper-copy-wrap {
    width: 50%;
  }

  .carousel__swiper-copy {
    width: 100%;
    padding-bottom: 0px;
    margin: 0;
    text-align: left;
  }

  .carousel__blockquote-wrap .carousel__swiper-button {
    margin: 0;
  }

  .about-grid__list-wrap {
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 25px;
  }

  .about-grid__list-item {
    height: 27vh;
    min-height: 200px;
  }

  .about-grid__item-link-title {
    padding: 20px;
  }

  .hero__body-wrap {
    padding: 20px 0 0 40px;
  }

  .hero__content-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: end;
  }

  .hero__image-wrap {
    padding-bottom: 0;
    width: 52%;
    height: 55vh;
    min-height: 400px;
  }

  .hero__image {
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .hero__copy-wrap {
    padding: 60px 0;
    width: 45%;
    align-self: center;
  }

  .two-column-img-text__content-wrap {
    padding-top: 120px;
    padding-bottom: 120px;
    display: flex;
    justify-content: space-between;
  }
  .two-column-img-text__content-wrap--callout {
    margin-bottom: 200px;
  }

  .two-column-img-text__copy-wrap {
    padding-bottom: 0;
    width: 55%;
  }

  .two-column-img-text__img-wrap {
    width: 40%;
    margin: 50px 0 0;
  }

  .two-column-img-text__callout {
    padding: 50px 40px;
    text-align: left;
  }
  .two-column-img-text__callout ul, .two-column-img-text__callout ol {
    display: grid;
    grid-template-columns: repeat(2, 48.5fr);
    grid-gap: 0px 15px;
    padding: 0;
  }

  .callout__content-wrap {
    padding-top: 75px;
    padding-bottom: 75px;
    text-align: center;
  }

  .page__body-wrap img {
    width: auto;
    max-height: 500px;
  }
}
@media screen and (min-width: 1024px) {
  .carousel__body-wrap {
    padding-top: 120px;
    padding-bottom: 160px;
  }

  .carousel__swiper-copy:before {
    margin-bottom: -30px;
  }

  .hero__image {
    border-top-left-radius: 300px;
  }

  .hero__copy-column {
    padding-bottom: 70px;
    display: flex;
    justify-content: flex-start;
  }

  .hero__copy-column-title {
    width: 40%;
  }

  .hero__copy-column-copy {
    width: 60%;
    padding-bottom: 0;
  }

  .about-grid__list-wrap {
    grid-gap: 35px;
  }

  .about-grid__list-item {
    height: 30vh;
    min-height: 220px;
    max-height: 287px;
  }

  .about-grid__item-link-title {
    padding: 30px;
  }

  .accordion__item-toggle {
    padding: 27px 40px 27px 18px;
  }

  .hero__body-wrap {
    padding: 30px 0 0 70px;
  }

  .hero__image-wrap {
    width: 60%;
    height: 65vh;
    min-height: 450px;
  }

  .hero__copy-wrap {
    padding: 85px 0;
    width: 34%;
  }

  .two-column-img-text__content-wrap {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .two-column-img-text__content-wrap--callout {
    margin-bottom: 260px;
  }

  .two-column-img-text__img-wrap {
    width: 32%;
    margin: 55px 0 0;
    height: 40vh;
    min-height: 250px;
    max-height: 350px;
  }

  .two-column-img-text__callout-body-wrap {
    margin-bottom: -400px;
  }

  .two-column-img-text__callout-body {
    padding-top: 80px;
  }

  .two-column-img-text__callout {
    padding: 80px;
  }
  .two-column-img-text__callout ul, .two-column-img-text__callout ol {
    padding-top: 20px;
  }

  .callout__content-wrap {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .callout__copy {
    width: 80%;
    display: block;
    margin: 0 auto;
  }

  .social__body-wrap {
    width: 80%;
  }

  .social__list-wrap {
    padding-bottom: 45px;
  }

  .social__list-item {
    max-width: 50px;
    max-height: 40px;
  }

  .social__item-icon {
    max-width: 50px;
    max-height: 40px;
  }

  .page__body-wrap img {
    max-height: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .carousel__swiper-image-wrap {
    height: 35vh;
  }

  .accordion__item-toggle {
    padding: 33px 49px 35px 22px;
  }

  .hero__copy-column-title {
    width: 35%;
  }

  .hero__copy-column-copy {
    width: 65%;
  }

  .about-grid__list-wrap {
    grid-gap: 70px;
  }

  .about-grid__list-item {
    height: 30vh;
    min-height: 260px;
    max-height: 320px;
  }

  .hero__body-wrap {
    padding: 30px 0 0 100px;
  }

  .hero__image-wrap {
    width: 63%;
    min-height: 550px;
  }

  .hero__copy-wrap {
    width: 30%;
  }

  .two-column-img-text__content-wrap {
    align-items: center;
  }

  .two-column-img-text__copy-wrap {
    width: 52%;
  }

  .two-column-img-text__img-wrap {
    margin: 0;
  }

  .two-column-img-text__callout-body {
    padding-top: 110px;
  }

  .two-column-img-text__callout {
    padding: 110px;
  }
  .two-column-img-text__callout ul, .two-column-img-text__callout ol {
    padding-top: 20px;
  }

  .callout__content-wrap {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .social__body-wrap {
    width: 70%;
  }
}
@media screen and (min-width: 1800px) {
  .about-grid__list-wrap {
    grid-gap: 90px;
  }

  .carousel__swiper-copy {
    font-size: 31px;
  }
  .carousel__swiper-copy blockquote:before {
    font-size: 95px;
  }
  .carousel__swiper-copy h6 {
    font-size: 31px;
  }

  .two-column-img-text__callout p {
    font-size: 30px;
  }
  .two-column-img-text__callout ul, .two-column-img-text__callout ol {
    font-size: 36px;
  }
}
@media (hover: hover) {
  .about-grid__list-item:hover {
    background-color: #E9DAFC;
    border-top-left-radius: 100px;
  }
}
.forms__hero-title {
  text-align: center;
}

.forms__list-item {
  border-bottom: 2px solid #773DBD;
  padding: 45px 25px;
  text-align: center;
}
.forms__list-item:first-of-type {
  border-top: 2px solid #773DBD;
}

.forms__item-copy-title {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 15px;
}

.forms__item-copy {
  color: #000000;
  padding-bottom: 15px;
}

.forms__item-button {
  margin-top: 10px;
}

@media screen and (min-width: 1024px) {
  .forms__body-wrap {
    max-width: 1300px;
  }

  .forms__hero-wrap {
    padding-bottom: 43px;
  }

  .forms__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 45px;
    text-align: left;
  }

  .forms__item-copy-wrap {
    width: 70%;
  }

  .forms__item-copy {
    padding-bottom: 0px;
  }

  .forms__item-button {
    margin: 0;
  }
}
.resources__hero-title {
  text-align: center;
  color: #773DBD;
  padding-bottom: 55px;
  width: 90%;
  display: block;
  margin: 0 auto;
}

.resources__hero-sub-title {
  font-size: calc(38px + -10 * ((100vw - 375px) / 1065));
  padding-bottom: 35px;
}

.resources__list-item {
  padding-top: 55px;
  text-align: center;
}
.resources__list-item:first-of-type {
  padding-top: 0;
}

.resources__item-copy-title {
  font-family: "greycliff-cf", sans-serif;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 15px;
  color: #3B1F5F;
}

.resources__item-copy {
  color: #000000;
  padding-bottom: 25px;
}

.resources__item-button {
  margin: 0 25px;
  display: block;
  width: auto;
}

.resources__closing-copy-wrap {
  font-size: calc(22px + -4 * ((100vw - 375px) / 1065));
  padding-top: 90px;
}

@media screen and (min-width: 720px) {
  .resources__body-wrap {
    padding-bottom: 75px;
  }
  .resources__body-wrap:after {
    content: "";
    width: 180px;
    height: 2px;
    background-color: #773DBD;
    display: block;
    position: relative;
    margin-top: 75px;
  }

  .resources__hero-title {
    text-align: left;
    width: 60%;
    margin: 0;
  }

  .resources__list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 48.5fr);
    grid-gap: 75px 75px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .resources__list-item {
    padding-top: 0px;
    text-align: left;
  }

  .resources__item-button {
    margin: 0;
    display: inline-block;
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .resources__body-wrap {
    max-width: 1300px;
    padding-bottom: 85px;
  }
  .resources__body-wrap:after {
    width: 210px;
    margin-top: 85px;
  }

  .resources__hero-title {
    width: 50%;
  }

  .resources__hero-sub-title {
    padding-bottom: 45px;
  }

  .resources__list-wrap {
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 80px 45px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .resources__item-copy-title {
    font-size: 20px;
    line-height: 130%;
    padding-bottom: 14px;
  }

  .resources__item-copy {
    padding-bottom: 35px;
  }

  .resources__closing-copy-wrap {
    padding-top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .resources__body-wrap {
    padding-bottom: 85px;
  }
  .resources__body-wrap:after {
    width: 210px;
    margin-top: 85px;
  }

  .resources__hero-title {
    width: 50%;
  }

  .resources__list-wrap {
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 85px 75px;
  }

  .resources__item-copy {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1800px) {
  .resources__hero-sub-title {
    font-size: 31px;
  }

  .resources__closing-copy-wrap {
    font: 17px;
  }
}
.services__body-title {
  color: #000000;
  padding-bottom: 55px;
}

.services__blocks-item {
  padding-bottom: 50px;
}
.services__blocks-item:last-of-type .services__block-image {
  border-top-right-radius: 140px;
  border-top-left-radius: 20px;
}

.services__block-image-wrap {
  height: 40vh;
  min-height: 250px;
  max-height: 400px;
  padding-bottom: 50px;
}

.services__block-image {
  object-fit: cover;
  height: 100%;
  width: 85%;
  display: block;
  margin: 0 auto;
}

.services__block-copy {
  color: #000000;
  padding-bottom: 0;
}
.services__block-copy ul, .services__block-copy ol {
  padding-left: 0;
}

.services__blocks-copy {
  text-align: center;
  width: 90%;
  display: block;
  margin: 0 auto;
  color: #000000;
}

@media screen and (min-width: 720px) {
  .services__block-image-wrap {
    min-height: 450px;
    max-height: 600px;
  }
}
@media screen and (min-width: 1024px) {
  .services__body-title {
    text-align: center;
    width: 80%;
    display: block;
    margin: 0 auto;
    padding-bottom: 50px;
  }

  .services__blocks-wrap {
    display: flex;
    justify-content: space-between;
  }

  .services__blocks-item {
    width: 49%;
    padding-bottom: 0px;
  }

  .services__block-image-wrap {
    height: 48vh;
    padding-bottom: 45px;
  }

  .services__block-image {
    width: 100%;
  }

  .services__block-copy {
    width: 90%;
  }

  .services__blocks-copy {
    width: 80%;
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .services__body-title {
    width: 70%;
  }

  .services__block-image-wrap {
    height: 55vh;
  }

  .services__blocks-copy {
    padding-top: 120px;
  }
}
.pharmacy-steps__blocks-item {
  padding-bottom: 70px;
}

.pharmacy-steps__block-image-wrap {
  padding-bottom: 50px;
  position: relative;
  height: 40vh;
  min-height: 300px;
  max-height: 400px;
  width: 75%;
  display: block;
  margin: 0 auto;
}

.pharmacy-steps__block-image {
  height: 100%;
  object-fit: cover;
}

.pharmacy-steps__block-copy h1, .pharmacy-steps__block-copy h2, .pharmacy-steps__block-copy h3, .pharmacy-steps__block-copy h4, .pharmacy-steps__block-copy h5, .pharmacy-steps__block-copy h6 {
  color: #773DBD;
}

@media screen and (min-width: 720px) {
  .pharmacy-steps__body-wrap {
    max-width: 750px;
    display: block;
    margin: 0 auto;
  }

  .pharmacy-steps__block-image-wrap {
    padding-bottom: 50px;
    height: 45vh;
    min-height: 300px;
    max-height: 500px;
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .pharmacy-steps__body-wrap {
    max-width: 1300px;
  }

  .pharmacy-steps__blocks-wrap {
    display: grid;
    grid-template-columns: repeat(3, 32.5fr);
    grid-gap: 45px;
  }

  .pharmacy-steps__blocks-item {
    padding-bottom: 0px;
  }

  .pharmacy-steps__block-image-wrap {
    height: 40vh;
    min-height: 200px;
    max-height: 350px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .pharmacy-steps__blocks-wrap {
    grid-gap: 85px;
  }
}
.custom-accordion__body-wrap .accordion__item-toggle {
  padding: 40px 15px;
}
.custom-accordion__body-wrap .accordion__item-content {
  padding: 0 15px;
}

.staff__body-wrap .resources__hero-title {
  color: #000000;
}
.staff__body-wrap .resources__hero-sub-title {
  color: #773DBD;
  text-align: center;
}

.hours__body-wrap .two-column-img-text__callout p {
  font-size: 18px;
}
.hours__body-wrap .two-column-img-text__callout ul {
  display: block;
}
.hours__body-wrap .two-column-img-text__callout h4, .hours__body-wrap .two-column-img-text__callout h5, .hours__body-wrap .two-column-img-text__callout h6 {
  font-weight: 500;
}

.pharmacy__resources-body-wrap .resources__body-wrap:after {
  margin-top: 0;
}

.pharmacy__details-body-wrap .home__accordion-wrap {
  margin-top: 0;
}

@media screen and (min-width: 720px) {
  .custom-accordion__body-wrap .accordion__item-toggle {
    padding: 35px 35px;
  }
  .custom-accordion__body-wrap .accordion__item-content {
    padding: 0 35px;
  }

  .staff__body-wrap .resources__hero-sub-title {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .custom-accordion__body-wrap {
    max-width: 850px;
    display: block;
    margin: 0 auto;
  }
  .custom-accordion__body-wrap .accordion__item-toggle {
    padding: 35px 55px;
  }
  .custom-accordion__body-wrap .accordion__item-content {
    padding: 0 55px;
  }

  .staff__body-wrap .resources__list-wrap {
    grid-gap: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .custom-accordion__body-wrap .accordion__item-toggle {
    padding: 35px 105px;
  }
  .custom-accordion__body-wrap .accordion__item-content {
    padding: 0 105px;
  }
}
@media (hover: hover) {
  .about__work-body-wrap .about-grid__list-item:hover {
    background-color: #3B1F5F;
  }
  .about__work-body-wrap .about-grid__list-item:hover .about-grid__item-link-title {
    color: #FFFCF5;
  }
}

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