/* reset css */
/* *, *::before, *::after {
  box-sizing: border-box;
} */
* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

.header {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.header .icon__tl {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-top: 10px solid white;
  border-left: 10px solid white;
}
.header .icon__tr {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-top: 10px solid white;
  border-right: 10px solid white;
}
.header .icon__bl {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-bottom: 10px solid white;
  border-left: 10px solid white;
}
.header .icon__br {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-bottom: 10px solid white;
  border-right: 10px solid white;
}

.header__top {
  height: 108px;
  background: var(--background-color);
}

.header__login {
  display: none;
  position: relative;
  height: 34px;
  background: var(--background-color);
}

.header__login-wrap {
  position: absolute;
  right: 30px;
  top: 0;
}

.header__login a {
  display: inline-block;
  padding: 0 2rem;
  transform: skew(-40deg);
  color: white;
  text-decoration: none;
  background-color: #2B1054;
  line-height: 34px;
  text-align: center;
}

.header__login a:hover {
  color: #2B1054;
  background-color: white;
}

.header__login a span {
  display: inline-block;
  transform: skew(40deg);
}

.header__nav {
  display: none;
  background: #474c55;
  height: 74px;
}

.header__nav ul {
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 385px;
}

.header__nav ul li {
  padding: 30px 13px 0 13px;
  height: 44px;
  font-size: 1.175rem;
  font-weight: 400;
}
.header__nav ul li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.header__nav ul li.active {
  background: rgba(255, 255, 255, 0.1);
  font-weight: bold;
}

.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 385px;
  height: 108px;
}
.header__logo a .header__logo-bg {
  fill: #2B1054;
}
.header__logo a:hover .header__logo-bg {
  fill: #0077C8;
}

.header__logo img {
  position: absolute;
  top: 24px;
  left: 35px;
  width: 192px;
}

.header__img {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.header__img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__img-desc {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}

.header__img-desc h1 {
  color: white;
  font-size: 3.25rem;
  line-height: 100%;
  padding: 0;
  margin-bottom: 1rem;
}

.header__img-desc h2 {
  color: white;
  font-size: 2em;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.header__search {
  background: linear-gradient(-140deg, #2B1054 60%, #474C55 60%);
  height: 37px;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.header__nav-secondary {
  background: var(--background-color);
  height: 74px;
  display: none;
  align-items: center;
}

.header__nav-secondary_back {
  background: #2B1054;
}
.header__nav-secondary_back a {
  padding-left: 1.2rem;
}
.header__nav-secondary_back a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 19px;
  background-image: url("../../images/ico_back.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.header__nav-secondary ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0 0 0 2em;
}

.header__nav-secondary ul li {
  position: relative;
  margin-right: 1.5em;
}

.header__nav-secondary ul li a {
  font-size: 1rem;
  color: white;
  height: 74px;
  line-height: 74px;
  text-decoration: none;
  text-transform: uppercase;
}

.header__nav-secondary ul li.active a {
  font-weight: bold;
}

.header__nav-secondary ul li.active a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 20px;
  height: 12px;
  background-image: url("../../images/sub_men_active_icon.png");
  background-repeat: no-repeat;
  background-size: 20px 12px;
  transform: translate(-50%, 50%);
}

.header__bottom-bg {
  display: none;
  background: white;
  padding-bottom: 2rem;
}
.header__bottom-bg svg {
  float: right;
}

@media (min-width: 992px) {
  .header .icon__tl {
    width: 20px;
    height: 20px;
    border-top: 15px solid white;
    border-left: 15px solid white;
  }
  .header .icon__tr {
    width: 20px;
    height: 20px;
    border-top: 15px solid white;
    border-right: 15px solid white;
  }
  .header .icon__bl {
    width: 20px;
    height: 20px;
    border-bottom: 15px solid white;
    border-left: 15px solid white;
  }
  .header .icon__br {
    width: 20px;
    height: 20px;
    border-bottom: 15px solid white;
    border-right: 15px solid white;
  }
}
@media (min-width: 1200px) {
  .header__nav {
    display: block;
  }
  .header__login {
    display: block;
  }
  .header__img-desc h1 {
    font-size: 6.25rem;
    line-height: 105%;
  }
  .header__nav-secondary {
    display: flex;
  }
  .header__bottom-bg {
    display: block;
  }
  .header__img img {
    width: 100%;
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
  }
}
/* footer */
.footer {
  max-width: 1600px;
  margin: 0 auto;
  background: #474C55 !important;
}

.footer .row {
  padding: 2em 5em;
}

.footer__nav {
  width: 100%;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 0;
  list-style-type: none;
  margin-bottom: 3em;
}

.footer__nav li {
  margin-bottom: 20px;
}

.footer__nav li a {
  color: #FFF;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.footer__social-title {
  display: block;
  color: #FFF;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__social-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 3em;
}

.footer__social-items img {
  height: 29px;
}

.footer__logo {
  width: 250px;
  height: 60px;
  display: block;
  margin-bottom: 2em;
}

.footer__text {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (min-width: 1200px) {
  .footer__nav {
    width: 50%;
  }
}
:root {
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #2B1054;
  background: #E6E6E6;
}

.container {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  padding-right: 0;
  padding-left: 0;
  background: #fff;
  max-width: 1600px;
}

.container > .row {
  margin: 0;
  padding: 0 1rem;
}

.container__title {
  color: #2B1054;
  font-family: Montserrat;
  font-size: 3rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 3rem;
}

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

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 5rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-6 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

@media (min-width: 992px) {
  .container__title {
    font-size: 3.25rem;
  }
  .container {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .container > .row {
    padding: 0 8rem;
  }
}
:root {
  --background-color: #ffffff;
  --text-color: #2B1054;
  --image-shadow-color: #474C55;
}

.theme-white {
  --background-color: #ffffff;
  --text-color: #2B1054;
  --image-shadow-color: #474C55;
}

.theme-pacific-blue {
  --background-color: #00B0B9;
  --text-color: #ffffff;
  --image-shadow-color: #474C55;
}

.theme-mako {
  --background-color: #474C55;
  --text-color: #ffffff;
  --image-shadow-color: #ffffff;
}

.theme-hollywood-cerise {
  --background-color: #EC008C;
  --text-color: #ffffff;
  --image-shadow-color: #474C55;
}

.theme-jagger {
  --background-color: #2B1054;
  --text-color: #ffffff;
  --image-shadow-color: #474C55;
}

.theme-lochmara {
  --background-color: #0077C8;
  --text-color: #ffffff;
  --image-shadow-color: #474C55;
}

/* accordion */
.accordion > h2 {
  color: #0077C8;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}

.accordion {
  border-radius: 4px;
  overflow: hidden;
  border-bottom: 1px dotted black;
}

.accordion-item {
  border-top: 1px dotted black;
}

.accordion-header {
  position: relative;
  width: 100%;
  padding: 15px;
  text-align: left;
  font-size: 1.2rem;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
}

.accordion-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../../images/icon_open.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s;
}

.accordion-header[aria-expanded=true] .accordion-icon {
  background-image: url("../../images/icon_close.png");
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  color: #2B1054;
  font-family: "Open Sans";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.accordion-content p {
  padding: 1.5rem 0 2rem 0;
}

/* services */
.services {
  display: flex;
  background: #F5F5F5;
  gap: 2rem;
  padding: 3rem 0;
}

.services_1 {
  flex: 1;
  background: #00B0B9;
  padding: 2rem;
  margin: 2rem 0;
}

.services_2 {
  padding: 2rem;
  flex: 1;
  background: #24285C;
  margin: 2rem 0;
}

.services_3 {
  padding: 2rem;
  margin: 2rem 0;
  flex: 1;
  background: #EC008C;
}

/* carousel */
.carousel {
  position: relative;
  background: var(--background-color);
}
.carousel .carousel__body {
  padding: 0 3rem;
}
.carousel .splide__arrow svg {
  width: 28px !important;
  height: 44px !important;
}
.carousel h3 {
  color: #474C55;
  font-family: Montserrat;
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 3rem;
}
.carousel .carousel__1-col p {
  color: var(--text-color);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4rem;
}
.carousel .carousel__2-cols {
  --bs-gutter-x: 3rem;
}
.carousel .carousel__2-cols p {
  color: var(--text-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.5rem;
}
.carousel .splide__arrow {
  background: none;
}
.carousel h3, .carousel p {
  color: var(--text-color);
}
.carousel .carousel__img {
  box-shadow: 5px 5px 0px -1px var(--image-shadow-color) !important;
  margin-bottom: 2rem;
}
.carousel .carousel__read-more {
  color: var(--text-color);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
.carousel .carousel__img-caption,
.carousel .carousel__audio-caption {
  color: var(--text-color);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.carousel .carousel__read-more {
  display: block;
  margin-bottom: 1.5rem;
}
.carousel .carousel__audio-caption {
  display: block;
  margin-bottom: 1.5rem;
}
.carousel .carousel__img-caption {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}
.carousel .splide__arrow svg {
  fill: var(--text-color);
}
.carousel .splide__arrow--prev {
  left: 0rem;
}
.carousel .splide__arrow--next {
  right: 0rem;
}

.carousel--blue.carousel::before, .carousel--blue.carousel::after {
  border-top: 1px dotted #fff;
}

@media (min-width: 1200px) {
  .carousel .carousel__body {
    padding: 0 5rem 4rem 5rem;
  }
  .carousel h3 {
    font-size: 3.25rem;
  }
}
.content [class*=col-] h2 {
  color: #2B1054;
  font-family: Montserrat;
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] h3 {
  color: #2B1054;
  font-size: 2.475rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] h4 {
  color: #2B1054;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] h5 {
  color: #2B1054;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] h6 {
  color: #2B1054;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] p {
  color: #2B1054;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] p.large {
  font-size: 2.475rem;
  font-weight: 700;
}
.content [class*=col-] p.medium {
  font-size: 1.75rem;
  font-weight: 400;
}
.content [class*=col-] ul {
  margin-bottom: 2rem;
}
.content [class*=col-] li {
  color: #2B1054;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: normal;
}
.content [class*=col-] blockquote {
  color: #0077C8;
  font-family: Montserrat;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 2rem;
}
.content [class*=col-] blockquote cite {
  display: block;
  margin-top: 5px;
  font-weight: 600;
}
.content [class*=col-] img,
.content [class*=col-] video {
  width: 100%;
  height: auto;
}
.content [class*=col-] .media-caption {
  display: block;
  width: 100%;
  background: #2B1054;
  margin-bottom: 2rem;
}
.content [class*=col-] .media-caption .media-caption__text {
  color: white;
  padding: 1rem;
  color: #FFF;
  font-size: 1rem;
  font-style: italic;
  line-height: normal;
}
.content [class*=col-] > *:last-child {
  margin-bottom: 0;
}
.content [class*=col-] > *:not(:last-child) {
  margin-bottom: 2rem;
}
.content [class*=col-] img,
.content [class*=col-] video {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .content [class*=col-] h2 {
    font-size: 3.75rem;
  }
  .content [class*=col-] h3 {
    font-size: 2.875rem;
  }
  .content [class*=col-] h4 {
    font-size: 2.25rem;
  }
  .content [class*=col-] h5 {
    font-size: 1.625rem;
  }
  .content [class*=col-] h6 {
    font-size: 1.25rem;
  }
  .content [class*=col-] p {
    font-size: 1.125rem;
  }
  .content [class*=col-] p.large {
    font-size: 2.875rem;
  }
  .content [class*=col-] p.medium {
    font-size: 1.75rem;
  }
  .content [class*=col-] li {
    font-size: 1.125rem;
  }
  .content [class*=col-] blockquote {
    font-size: 1.5rem;
  }
  .content [class*=col-] .media-caption .media-caption__text {
    font-size: 1rem;
  }
}
/* features */
.features {
  border-bottom: 1px dotted #dbd8d8;
  border-top: 1px dotted #dbd8d8;
  background: var(--background-color);
}
.features .col {
  padding: 0 3rem;
}
.features img {
  display: inline-block;
  max-width: 220px;
}
.features h2 {
  color: #2B1054;
  text-align: center;
  font-family: Montserrat;
  font-size: 3rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 1.5rem;
}
.features h3 {
  color: #220D42;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 2.5rem;
  font-style: normal;
  line-height: normal;
  margin-bottom: 1.5rem;
}
.features .features__desc {
  text-align: center;
  margin-bottom: 3rem;
}
.features p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.features .btn {
  text-align: center;
  display: inline-block;
  margin-top: 3rem;
}
.features h2, .features h3, .features p, .features .features__desc {
  color: var(--text-color);
}

@media (min-width: 992px) {
  .features h2 {
    font-size: 3.75rem;
  }
}
/* hero */
.hero {
  border-bottom: 1px dotted #2B1054;
  background: var(--background-color);
}
.hero .hero__left {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 2rem;
}
.hero .hero__right {
  padding-left: 0;
  padding-right: 0;
}
.hero img {
  width: 100%;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.hero h2, .hero p, .hero a {
  color: var(--text-color);
}
.hero p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .hero .hero__left {
    padding-right: 2rem;
    padding-left: 0;
    padding-bottom: unset;
  }
  .hero .hero__right {
    padding-left: 2rem;
    padding-right: 0;
  }
}
/* call-to-action */
.call-to-action {
  position: relative;
  background: var(--background-color);
}
.call-to-action h2 {
  font-family: Montserrat;
  font-size: 3rem;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 1rem;
}
.call-to-action p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.call-to-action h2, .call-to-action p {
  color: var(--text-color);
}

@media (min-width: 992px) {
  .call-to-action h2 {
    font-size: 3.75rem;
  }
}
/* checklist */
.checklist {
  border-bottom: 1px dotted #2B1054;
  background: var(--background-color);
}
.checklist ul {
  width: 100%;
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 20px;
       column-gap: 20px;
  list-style-type: none;
  padding: 0;
}
.checklist li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.checklist img {
  width: 52px;
  margin-right: 1rem;
}
.checklist h2, .checklist p {
  color: var(--text-color);
}
.checklist p {
  font-size: 1.5rem;
}

@media (min-width: 992px) {
  .checklist ul {
    -moz-column-count: 2;
         column-count: 2;
  }
  .checklist li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 4rem;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .checklist img {
    width: 82px;
    margin-right: 1rem;
  }
}
/* newsletter */
.newsletter {
  background: #F5F5F5;
  position: relative;
}
.newsletter h2 {
  color: #0077C8;
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.newsletter p {
  color: #2B1054;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.newsletter .btn {
  margin-bottom: 3rem;
}
.newsletter svg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.newsletter .newsletter-bg {
  fill: var(--background-color);
}

/* options */
.options {
  border-bottom: 1px dotted #2B1054;
  background: var(--background-color);
}
.options h2 {
  color: var(--text-color);
}
.options h3 {
  font-size: 1.575rem;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 2rem;
  color: var(--text-color);
}
.options p {
  text-align: center;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
}
.options .col-wrapper {
  position: relative;
  width: 100%;
  background: var(--background-color);
}
.options .icon__tl {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 13px;
  height: 13px;
  border-top: 10px solid white;
  border-left: 10px solid white;
}
.options .icon__tr {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 13px;
  height: 13px;
  border-top: 10px solid white;
  border-right: 10px solid white;
}
.options .icon__bl {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 13px;
  height: 13px;
  border-bottom: 10px solid white;
  border-left: 10px solid white;
}
.options .icon__br {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 13px;
  height: 13px;
  border-bottom: 10px solid white;
  border-right: 10px solid white;
}

@media (min-width: 992px) {
  .options h3 {
    font-size: 2.25rem;
  }
}
/* quote */
.quote {
  border-bottom: 1px dotted #2B1054;
  background: var(--background-color);
}
.quote .col {
  max-width: 70%;
}
.quote .quote__text {
  display: block;
  color: var(--text-color);
  font-family: Montserrat;
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.quote .quote__author {
  display: block;
  color: var(--text-color);
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-weight: 400;
}

@media (min-width: 992px) {
  .quote .quote__text {
    font-size: 3.25rem;
  }
}
/* cta */
.cta {
  position: relative;
  background: var(--background-color);
}
.cta .col-12 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}
.cta .cta__text {
  color: var(--text-color);
  text-align: center;
  font-family: Montserrat;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

/* filters */
.filters {
  padding-top: 2rem !important;
  padding-bottom: 0rem !important;
}

.filters .row .col-12 {
  border-top: 1px dotted #000;
  border-bottom: 1px dotted #000;
}

.filters__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.filters__title {
  color: #2B1054;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.filters__view,
.filters__sort {
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filters__sort {
  padding-left: 2rem;
}

.filters__wrapper select {
  background: #EEE;
  border: none;
  padding: 0.5rem 4rem;
  color: #2B1054;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../../images/select_icon.png");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 25px 15px;
  padding-right: 5rem;
}

@media (min-width: 1200px) {
  .filters__wrapper {
    flex-direction: row;
  }
}
.card {
  border: 1px dashed #474C55;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card .card__body {
  padding: 2rem;
  flex-grow: 1;
}
.card h3 {
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
.card .card__date {
  display: block;
  color: #2B1054;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
.card p {
  color: #2B1054;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.card a {
  color: #2B1054;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}

.card--large {
  margin-bottom: 2rem;
  border-top: 1px dotted black;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.card--large h3 {
  color: #2B1054;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 2rem;
}
.card--large p {
  color: #2B1054;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.card--large p a {
  color: #2B1054;
  font-weight: 700;
  text-decoration-line: underline;
}
.card--large video {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.card--collapse img {
  width: 100%;
  margin-bottom: 1rem;
  box-shadow: 5px 5px 0px -1px #474C55;
}
.card--collapse .card__title {
  position: relative;
  padding-right: 2rem;
}
.card--collapse .card__name {
  display: block;
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.card--collapse .card__secondary_title {
  display: block;
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.card--collapse .card__icon {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 12px;
  width: 25px;
  height: 15px;
  background-image: url("../../images/icon_open.png");
  background-size: 25px 15px;
}
.card--collapse .card__icon.active {
  width: 25px;
  height: 15px;
  background-image: url("../../images/icon_close.png");
  background-size: 25px 15px;
}
.card--collapse .card_hidden_text {
  display: none;
  margin-top: 10px;
}
.card--collapse .card_hidden_text p {
  color: #2B1054;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.card--collapse .card_hidden_text a {
  color: #0077C8;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}
.card--collapse .card_hidden_text.active {
  display: block;
}

.card--row {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  padding: 3rem 0;
  border-bottom: 1px dotted #000;
}
.card--row .card__thumb {
  /* flex: 0 0 309px; */
  width: 100%;
  flex-shrink: 0;
}
.card--row .card__thumb img {
  width: 100%;
}
.card--row .card__body {
  flex-grow: 1;
}
.card--row .card__body h3 {
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
.card--row .card__body p {
  color: #2B1054;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.card--row .card__info {
  width: 309px;
  flex-shrink: 0;
  text-align: left;
}
.card--row .card__info span {
  display: block;
  color: #2B1054;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .card--row {
    flex-direction: row;
  }
  .card--row .card__thumb {
    width: 309px;
  }
  .card--row .card__info {
    text-align: right;
  }
}
.btn {
  padding: 0.5rem 2rem;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 3px solid black;
}

.btn--md {
  font-size: 26px;
}

.btn--lg {
  font-size: 25px;
  font-weight: 600;
  border-bottom: 5px solid black;
}

.btn--white-1 {
  background: white;
  color: #2B1054 !important;
}

.btn--white-1:hover {
  background: #0077C8;
  color: #fff !important;
}

.btn--white-2 {
  background: white;
  color: #0077C8 !important;
}

.btn--white-2:hover {
  background: #0077C8;
  color: #fff !important;
}

.btn--white-3 {
  background: white;
  color: #292C31 !important;
}

.btn--white-3:hover {
  background: #474C55;
  color: #fff !important;
}

.btn--pink {
  background: #EC008C;
  color: white !important;
}

.btn--pink-2 {
  background: #EC008C;
  color: white !important;
  border-color: #EC008C !important;
}

.btn--pink:hover, .btn--pink-2:hover {
  background: white;
  color: #EC008C !important;
}

.btn--blue {
  background: #0077C8;
  color: white !important;
}

.btn--blue:hover {
  background: white;
  color: #2B1054 !important;
}

.btn--disabled {
  color: #A9A9A9;
  border-color: #A9A9A9;
  background: white;
  pointer-events: none;
  cursor: default;
}

/* search */
.search-form {
  padding-right: 20px;
  align-items: center;
  display: flex;
}

.header .search-form {
  display: none;
}

.search-form input {
  height: 52px;
  width: 520px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 5px;
  border: 1px solid #474C55;
  color: #2B1054;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  padding-left: 1rem;
}

.search-form button {
  background: #EC008C;
  color: white;
  height: 56px;
  width: 68px;
  border: none;
  font-size: 1.625rem;
  vertical-align: middle;
  border-radius: 5px;
}

@media (min-width: 992px) {
  .header .search-form {
    display: flex;
  }
}
/* pagination */
.pagination .col-12 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .col-12 .pagination__page-num {
  color: #2B1054;
  text-align: center;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.pagination .col-12 input {
  width: 35px;
  text-align: center;
  border: 1px dotted black;
}
.pagination .col-12 .pagination__total {
  color: #A9A9A9;
}

.resources-list h2 {
  color: #2B1054;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2rem;
}
.resources-list ul {
  padding-left: 2rem;
}
.resources-list a {
  color: #2B1054;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.menu-overlay.active {
  display: block;
}

.main-nav, .sub-nav {
  position: absolute;
  top: 108px;
  width: 100%;
  height: 100%;
  background: white;
  transition: transform 0.3s ease;
  background: #1A0737;
  color: white;
}

.main-nav {
  left: 0;
}

.main-nav ul {
  list-style-type: none;
  margin-top: 5rem;
}
.main-nav ul li {
  margin-bottom: 1rem;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.main-nav ul li a {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}

.sub-nav {
  transform: translateX(100%);
}
.sub-nav ul {
  list-style-type: none;
}
.sub-nav ul li {
  margin-bottom: 1rem;
}
.sub-nav ul li a {
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.sub-nav .sub-nav__close {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background-color: white;
  color: #2B1054;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sub-nav.active {
  transform: translateX(0);
}

.menu-button {
  position: fixed;
  top: 35px;
  right: 20px;
  z-index: 1100;
  cursor: pointer;
}

.menu-button__open {
  display: block;
  background: #1A0737;
  border-radius: 5px;
  width: 50px;
  padding: 10px 0;
}

.menu-button__close {
  display: none;
  background: #dbcfee;
  border-radius: 5px;
  width: 50px;
  padding: 10px 0;
}

.menu-button__open.active {
  display: none;
}

.menu-button__close.active {
  display: block;
}

@media (min-width: 1200px) {
  .menu-button {
    display: none;
  }
}
.image-list {
  position: relative;
  background: var(--background-color);
  color: var(--text-color);
}
.image-list h2 {
  color: var(--text-color);
  text-align: center;
  font-family: Montserrat;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}
.image-list img {
  display: block;
  padding: 1rem 0;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .image-list img {
    display: inline;
  }
}
.grid-cards > .row {
  padding: 0 0 2.5rem 0 !important;
  margin: 0 2rem;
  border-top: 1px dotted black;
  border-bottom: 1px dotted black;
}

@media (min-width: 1200px) {
  .grid-cards > .row {
    margin: 0 8rem;
  }
}
/* collection */
.collection .collection__title {
  color: #2B1054;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: normal;
  padding: 0 0.5rem;
  margin-top: 0;
}

.chapter_menu_show {
  display: inline-block;
  position: fixed;
  top: 315px;
  right: 0;
  background: #474C55;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  overflow-y: auto;
  height: 28px;
  z-index: 1000;
}

.chapter_menu_show:hover {
  color: #fff;
  text-decoration: none;
}

.chapter_menu_show i {
  position: absolute;
  left: 10px;
  top: 16px;
}

.chapter_menu_show span {
  display: none;
}

.chapter_menu_close {
  display: inline-block;
  background: #474C55;
  padding: 10px 15px;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  height: 28px;
  z-index: 1000;
}

.chapter_menu_close:hover {
  color: #fff;
  text-decoration: none;
}

.chapter_menu_close i {
  position: absolute;
  right: 10px;
  top: 14px;
}

.chapter_menu_wrapper {
  width: 100%;
  position: absolute;
  top: 315px;
  right: -1480px;
  z-index: 1000;
}

.chapter_menu_wrapper .chapter_menu_item {
  position: relative;
  background-color: #fff;
  color: #444;
  font-weight: bold;
  cursor: pointer;
  padding: 8px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 16px;
  margin: 0;
}

.chapter_menu_wrapper .active,
.chapter_menu_wrapper .chapter_menu_item:hover {
  background-color: #fff;
}

.chapter_menu_wrapper .chapter_menu_item i {
  position: absolute;
  right: 10px;
  top: 13px;
  display: none;
}

.chapter_menu_wrapper .chapter_menu_item:not(.active) .fa-chevron-down {
  display: block;
}

.chapter_menu_wrapper .chapter_menu_item.active .fa-chevron-up {
  display: block;
}

.chapter_menu_wrapper .sub_menu {
  background-color: #EDF2F5;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin: 0;
  padding-left: 10px;
}

.chapter_menu_wrapper .sub_menu li {
  list-style: none;
  padding: 2px 18px 2px 20px;
}

.chapter_menu_wrapper .sub_menu li:first-child {
  padding: 10px 18px 5px 20px;
}

.chapter_menu_wrapper .sub_menu li:last-child {
  padding: 5px 18px 10px 20px;
}

.chapter_menu_wrapper .sub_menu li a {
  color: #444444;
  text-decoration: none;
  font-size: 0.9em;
}

.chapter_menu_wrapper .sub_menu li a.active {
  color: #474C55;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9em;
  background: none;
}

@media (min-width: 768px) {
  .chapter_menu_wrapper {
    width: 480px;
  }
  .chapter_menu_show {
    padding: 10px 40px;
  }
  .chapter_menu_show span {
    display: inline-block;
  }
}
body {
  overflow-x: hidden;
}/*# sourceMappingURL=main.css.map */