/* =======================================
   VARIABLES
   ======================================= */
/* =======================================
   IMPORTS
   ======================================= */
/* =======================================
   SIZES
   ======================================= */
/* =======================================
   FONTS
======================================= */
@font-face {
  font-family: "Font Name Here";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/Font.ttf) format("ttf"), url(../fonts/Font.woff) format("woff"), url(../fonts/Font.woff2) format("woff2");
}
header {
  z-index: 999;
  width: 100%;
  top: 0;
  position: relative;
  background: #F4F5F8;
}
header .main .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  max-width: 1600px;
}
header .main .container .logo {
  padding: 16px 0;
}
header .main .container .logo img {
  display: block;
}
header .main .container #main-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}
header .main .container #main-menu .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
header .main .container #main-menu .menu li {
  display: inline-block;
  padding: 16px;
  position: relative;
}
header .main .container #main-menu .menu li:first-of-type {
  padding-left: 0;
}
header .main .container #main-menu .menu li:last-of-type {
  padding-right: 0;
}
header .main .container #main-menu .menu li a {
  color: #1F1F1F;
  font-size: 20px;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: bold;
}
header .main .container #main-menu .menu li a:hover {
  color: #1F1F1F;
}
header .main .container #main-menu .menu li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background: #F4F5F8;
  padding: calc(16px / 2) 16px;
  width: 100vw;
  max-width: 250px;
  margin-left: calc(0px - 16px);
}
header .main .container #main-menu .menu li .sub-menu li {
  padding: calc(16px / 2);
  display: block;
}
header .main .container #main-menu .menu li .sub-menu li a {
  text-transform: none;
  font-size: 18px;
  line-height: 26px;
  display: block;
}
header .main .container #main-menu .menu li:hover .sub-menu {
  display: block;
}
header .main .container #main-menu .search {
  position: relative;
}
@media (max-width: 1104px) {
  header .main .container #main-menu .search {
    display: none;
  }
}
header .main .container #main-menu .search #searchButton {
  display: block;
  transition: all 0.2s ease;
  margin-left: calc(16px * 2);
}
header .main .container #main-menu .search #searchform {
  background: #1F1F1F;
  position: absolute;
  width: 400px;
  right: 0;
  top: calc(100% + 16px);
  padding: 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}
header .main .container #main-menu .search #searchform div {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
}
header .main .container #main-menu .search #searchform div input[type=search] {
  width: 100%;
  background: #ffffff url(../img/search.svg) no-repeat 20px 12px;
  border: none;
  padding: calc(16px / 2) calc(16px / 2) calc(16px / 2) 50px;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
}
header .main .container #main-menu .search #searchform div input[type=submit] {
  background: #ffffff;
  border: none;
  margin-left: calc(16px / 2);
  padding: calc(16px / 2) 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}
header .main .container #main-menu .search #searchform.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1104px) {
  header .main .container #main-menu {
    display: none;
  }
}
header #mobile-toggle {
  display: none;
  z-index: 999;
  margin-left: auto;
}
header #mobile-toggle a {
  position: relative;
  display: block;
  width: 30px;
  height: 26px;
}
header #mobile-toggle a span {
  visibility: hidden;
  transition: all 0.2s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 26px;
}
header #mobile-toggle a span.active {
  visibility: visible;
  opacity: 1;
}
header #mobile-toggle a span img {
  display: inline-block;
}
@media (max-width: 1104px) {
  header #mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
header #mobile-menu {
  visibility: hidden;
  z-index: -1;
  position: absolute;
  left: 0;
  width: calc(340px - calc(16px * 2));
  background: #ffffff;
  padding: 16px;
  opacity: 0;
  transition: all 0.2s ease;
  height: calc(100vh - 100% - calc(16px * 2));
  top: 100%;
  overflow-y: auto;
}
header #mobile-menu .searchform input[type=submit] {
  display: none;
}
header #mobile-menu .searchform input[type=search] {
  width: 100%;
  background: #ffffff url(../img/search.svg) no-repeat;
  background-position: 20px 10px;
  padding: calc(16px / 2) calc(16px / 2) calc(16px / 2) 50px;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #ffffff;
  font-weight: 400;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
}
header #mobile-menu.active {
  visibility: visible;
  opacity: 1;
  z-index: 900;
}
header #mobile-menu ul {
  padding: 0;
  margin: 16px 0 0;
}
header #mobile-menu ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
header #mobile-menu ul li .sub-menu {
  display: none;
}
header #mobile-menu ul li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-left: auto;
}
header #mobile-menu ul li a {
  font-weight: bold;
  font-size: 20px;
  line-height: 20px;
  color: #1F1F1F;
  padding: 16px 0;
  display: block;
  flex-grow: 1;
  text-decoration: none;
  letter-spacing: 0.4px;
}
header #mobile-menu ul li.hidden {
  display: none;
}
header #mobile-menu ul li.expanded {
  flex-wrap: wrap;
  border: none;
}
header #mobile-menu ul li.expanded::after {
  display: none;
}
header #mobile-menu ul li.expanded a {
  padding: 16px;
  margin: 0 calc(0px - 16px) calc(0px - 16px);
}
header #mobile-menu ul li.expanded a::after {
  display: none;
}
header #mobile-menu ul li.expanded a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(../img/chevron.svg) no-repeat center/contain;
  margin-right: 16px;
  transform: rotate(180deg);
}
header #mobile-menu ul li.expanded .sub-menu {
  display: block;
  width: 100%;
}
header #mobile-menu ul li.expanded .sub-menu li {
  border-top: none;
}
header #mobile-menu ul li.expanded .sub-menu li::after {
  display: none;
}
header #mobile-menu ul li.expanded .sub-menu li a {
  text-transform: none !important;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 16px 0;
  background: transparent;
  margin: 0;
  border-bottom: none;
}
header #mobile-menu ul li.expanded .sub-menu li a::before {
  display: none;
}

#alert {
  display: none;
}
#alert.visible {
  display: block;
  background: #1F1F1F;
  color: #ffffff;
  z-index: 1;
}
#alert .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2) calc(16px * 3) calc(16px / 2) 16px;
  position: relative;
  max-width: calc(1330px - calc(16px * 2));
}
#alert .container .copy {
  margin: 0 16px;
}
#alert .container .copy p {
  margin: 0;
  line-height: 28px;
  text-transform: uppercase;
}
#alert .container .copy p a {
  color: #ffffff;
  text-transform: none;
  font-weight: 600;
}
#alert .container #noticeClose {
  position: absolute;
  right: 0;
  cursor: pointer;
  margin-right: 16px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.hero {
  padding: calc(16px * 4) 0;
}
.hero .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: calc(16px * 4);
  max-width: 1330px;
}
@media (max-width: 1104px) {
  .hero .container {
    flex-wrap: wrap;
    gap: calc(16px * 2);
  }
  .hero .container .left, .hero .container .right {
    width: 100%;
    text-align: center;
  }
}

.general {
  padding: calc(16px * 4) 0;
}
.general .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
  align-items: center;
}
.general .container .column {
  width: 100%;
}
.general .container .column .module:not(:last-of-type) {
  margin-bottom: 16px;
}
.general .container .column .lottie {
  text-align: center;
}
.general .container .column .lottie dotlottie-wc {
  width: 519px;
  height: 519px;
  margin: 0 auto;
}
@media (max-width: 1104px) {
  .general .container .column .lottie dotlottie-wc {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 600px) {
  .general .container .column .lottie dotlottie-wc {
    width: 300px;
    height: 300px;
  }
}
.general .container .column img, .general .container .column iframe {
  max-width: 100%;
}
.general .container .column .buttons {
  display: flex;
  gap: 16px;
  margin: calc(16px * 2) 0 !important;
  flex-wrap: wrap;
}
.general .container .column .buttons a {
  flex: 1;
  max-width: 50%;
}
@media (max-width: 600px) {
  .general .container .column .buttons a {
    max-width: 100%;
    white-space: nowrap;
  }
}
.general .container .column .careers {
  padding: 16px 28px;
  border-radius: 16px;
  border: 1px solid rgba(154, 128, 191, 0.5);
  background: rgba(255, 255, 255, 0.4);
  color: #502D82;
  margin: calc(16px * 1.5) 0 40px !important;
}
.general .container .column .careers strong {
  display: block;
}
.general .container.halves .column {
  width: calc(50% - 16px);
}
@media (max-width: 800px) {
  .general .container.halves .column {
    width: 100% !important;
  }
}
.general .container.smallleft .column:first-of-type {
  width: calc(40% - 16px);
}
.general .container.smallleft .column:last-of-type {
  width: calc(60% - 16px);
}
@media (max-width: 800px) {
  .general .container.smallleft .column {
    width: 100% !important;
  }
}
.general .container.smallright .column:first-of-type {
  width: calc(60% - 16px);
}
.general .container.smallright .column:last-of-type {
  width: calc(40% - 16px);
}
@media (max-width: 800px) {
  .general .container.smallright .column {
    width: 100% !important;
  }
}
.general .container.thirds .column {
  width: calc(33.3333% - 16px * 1.3333);
}
@media (max-width: 800px) {
  .general .container.thirds .column {
    width: 100%;
  }
}
.general .container.fourths .column {
  width: calc(25% - 16px - calc(16px / 2));
}
@media (max-width: 1104px) {
  .general .container.fourths .column {
    width: calc(50% - 16px);
  }
}
@media (max-width: 800px) {
  .general .container.fourths .column {
    width: 100%;
  }
}
.general.small .container {
  max-width: 1100px;
}

.posts {
  padding: calc(16px * 4) 0;
}
.posts .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  max-width: 1330px;
}
.posts .container h2 {
  margin: 0;
  max-width: 650px;
}
.posts .container .viewall {
  color: #1F1F1F;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 1.28px;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
  margin-left: auto;
  display: inline-block;
  margin-top: calc(16px * 1.5);
}
.posts .container .viewall:hover {
  text-decoration: underline;
}
.posts .container .columns {
  display: flex;
  gap: calc(16px * 3);
  margin-top: calc(16px * 1.5);
  flex-wrap: wrap;
}
.posts .container .columns .post {
  width: calc(33.3333% - calc(16px * 2));
  max-width: 320px;
  background: #ffffff;
  text-decoration: none;
  color: #1F1F1F;
}
.posts .container .columns .post .thumbnail {
  max-width: 320px;
  height: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.posts .container .columns .post .thumbnail img {
  max-width: 100%;
  height: auto;
  transition: all 0.2s ease;
}
.posts .container .columns .post .content {
  padding: calc(16px * 2);
}
.posts .container .columns .post .content h4 {
  margin: 0 0 16px;
}
.posts .container .columns .post .content .date {
  margin-bottom: 16px;
  font-weight: 500;
}
.posts .container .columns .post:hover .thumbnail {
  border-color: #1F1F1F;
}
.posts .container .columns .post:hover .thumbnail img {
  transform: scale(1.05);
}
@media (max-width: 1104px) {
  .posts .container .columns .post {
    width: calc(50% - calc(16px * 2)) !important;
    max-width: 100%;
  }
  .posts .container .columns .post .thumbnail {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .posts .container .columns .post {
    width: 100% !important;
  }
}
.posts.notop {
  padding-top: 0;
}
.posts.nobottom {
  padding-bottom: 0;
}
.posts.noposts {
  margin-bottom: calc(16px * 4) !important;
}

.accordion {
  padding: calc(16px * 4) 0;
}
.accordion .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.accordion .container .accordionItems .accordionItem {
  background: #ffffff;
  margin-bottom: calc(16px * 1.5);
}
.accordion .container .accordionItems .accordionItem .accordionTitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  padding: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accordion .container .accordionItems .accordionItem .accordionTitle:hover {
  color: #1F1F1F;
}
.accordion .container .accordionItems .accordionItem .accordionTitle::before {
  content: "";
  display: inline-block;
  background: url(../img/plus.svg) no-repeat center/contain;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  transition: all 0.2s ease;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active {
  display: flex;
}
.accordion .container .accordionItems .accordionItem .accordionTitle.active::before {
  background: url(../img/minus.svg) no-repeat center/contain;
}
.accordion .container .accordionItems .accordionItem .accordionCopy {
  display: none;
  padding: 16px 16px 16px calc(calc(16px * 2) + 25px);
}
.accordion .container .accordionItems .accordionItem .accordionCopy p:first-of-type {
  margin-top: 0;
}
.accordion .container .accordionItems .accordionItem .accordionCopy ::marker {
  color: #1F1F1F;
}

.testimonial {
  max-width: 100% !important;
  overflow: hidden;
  padding: calc(16px * 4) 0;
}
.testimonial .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1330px;
}
.testimonial.single .container {
  display: flex;
  max-width: 900px;
  gap: calc(16px * 3);
  align-items: center;
}
.testimonial.single .container .image {
  width: 33%;
}
.testimonial.single .container .image img {
  display: block;
}
.testimonial.single .container .content {
  padding: calc(16px * 3) 0;
  width: 66%;
}
.testimonial.single .container .content blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #1F1F1F;
  letter-spacing: 0.48px;
  line-height: 38px;
  padding: 0;
  margin: 0;
  display: block;
}
.testimonial.single .container .content blockquote::before {
  content: "";
  display: block;
  background: url(../img/quote.svg) no-repeat center/contain;
  width: 50px;
  height: 36px;
  margin-bottom: 16px;
}
.testimonial.single .container .content .author {
  display: inline-block;
  margin-top: 16px;
}
.testimonial.single .container .content .author p {
  margin: 4px 0;
}
.testimonial.single .container .content .author a {
  color: #1F1F1F;
  text-decoration: none;
}
.testimonial.single .container .content .author a:hover {
  text-decoration: underline;
}
@media (max-width: 1104px) {
  .testimonial.single .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .testimonial.single .container .image {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }
  .testimonial.single .container .content {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.testimonial.multi .slide {
  display: flex !important;
  max-width: 900px;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
}
.testimonial.multi .slide .image {
  width: 33%;
}
.testimonial.multi .slide .image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.testimonial.multi .slide .content {
  padding: calc(16px * 3) 0;
  width: 66%;
}
.testimonial.multi .slide .content blockquote {
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #1F1F1F;
  letter-spacing: 0.48px;
  line-height: 38px;
  padding: 0;
  margin: 0;
  display: block;
}
.testimonial.multi .slide .content blockquote::before {
  content: "";
  display: block;
  background: url(../img/quote.svg) no-repeat center/contain;
  width: 50px;
  height: 36px;
  margin-bottom: 16px;
}
.testimonial.multi .slide .content .author {
  display: inline-block;
  margin-top: 16px;
}
.testimonial.multi .slide .content .author p {
  margin: 4px 0;
}
.testimonial.multi .slide .content .author a {
  color: #1F1F1F;
  text-decoration: none;
}
.testimonial.multi .slide .content .author a:hover {
  text-decoration: underline;
}
@media (max-width: 1104px) {
  .testimonial.multi .slide {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }
  .testimonial.multi .slide .image {
    width: 100%;
  }
  .testimonial.multi .slide .image img {
    margin: 0 auto;
  }
  .testimonial.multi .slide .content {
    width: 100%;
  }
}
.testimonial.multi .testimonialSlider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.testimonial.multi .testimonialSlider .slick-list {
  max-width: calc(100% - 92px);
}
.testimonial.multi .testimonialSlider .slick-slide {
  z-index: 900 !important;
}

.cards {
  padding: calc(16px * 4) 0;
}
.cards .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  max-width: 1330px;
  gap: calc(16px * 3);
  flex-wrap: wrap;
}
.cards .container .card {
  width: 100%;
  display: flex;
  gap: calc(16px / 2);
  flex-direction: column;
  text-decoration: none;
  color: #502D82;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  max-width: 255px;
}
.cards .container .card .image {
  min-height: 21px;
  max-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cards .container .card .image img {
  min-height: 100%;
  width: auto;
}
.cards.stretch .card {
  width: calc(50% - calc(16px * 1.5));
}
.cards.stretch .card .image {
  min-height: 117px;
}
.cards.stretch .card.last {
  justify-content: center;
}
.cards.stretch .card.last * {
  width: 100%;
  max-width: 300px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.cards.stretch .card.last .button {
  margin: calc(16px * 2) 0 0 !important;
  width: auto !important;
}
.cards.stretch .card.last ul, .cards.stretch .card.last ol {
  padding-left: 20px;
}
.cards.stretch .card.last *:not(.button) {
  max-width: calc(100% - calc(16px * 4));
  padding: 0;
}
@media (max-width: 800px) {
  .cards.stretch .card {
    width: calc(100% - calc(16px * 1.5));
  }
}
.cards .image.noimage {
  min-height: 0px !important;
}
.cards.bg .container {
  gap: calc(16px * 3) 0;
}
.cards.bg .container h2 {
  margin-bottom: calc(16px * 2);
}
.cards.bg .container .card {
  background-size: cover;
  background-position: center;
  width: 33.3333%;
}
.cards.bg .container .card .content {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  min-height: calc(270px - calc(16px * 4));
  padding: calc(16px * 2);
}
.cards.bg .container .card .content h4 {
  color: #ffffff;
  margin-top: auto;
  margin-bottom: 16px;
}
.cards.bg .container .card .content h4::after {
  opacity: 0;
  content: "";
  display: inline-block;
  background: url(../img/arrow-right.svg) no-repeat right/cover;
  width: 20px;
  height: 15px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.cards.bg .container .card .image {
  display: none;
}
@media (max-width: 1104px) {
  .cards.bg .container .card {
    width: 100%;
  }
}
.cards.bg .container a:hover .content h4::after {
  margin-left: 16px;
  opacity: 1;
}

.form {
  padding: calc(16px * 4) 0;
}
.form .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 600px;
}
.form .container .intro {
  width: 100%;
  margin-bottom: calc(16px * 3);
}
.form.withside .container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1330px;
  gap: calc(16px * 2) 180px;
}
.form.withside .container .gForm {
  flex-grow: 1;
}
.form.withside .container .sidebar {
  width: 350px;
  margin-left: auto;
}
.form.withside .container .sidebar .block {
  background: #1F1F1F;
  color: #ffffff;
  padding: 16px calc(16px * 3);
  margin-bottom: calc(16px * 2);
}
.form.withside .container .sidebar .block h1, .form.withside .container .sidebar .block h2, .form.withside .container .sidebar .block h3, .form.withside .container .sidebar .block h4, .form.withside .container .sidebar .block h5, .form.withside .container .sidebar .block h6 {
  margin: 16px 0;
}
@media (max-width: 1104px) {
  .form.withside .container {
    gap: calc(16px * 4);
  }
}
@media (max-width: 800px) {
  .form.withside .container {
    flex-direction: column;
  }
  .form.withside .container .sidebar {
    width: 100%;
  }
}

.gform_wrapper form {
  flex-direction: column !important;
  max-width: 600px;
  margin: 0 auto;
}
.gform_wrapper form .gf_progressbar_title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #6E6E73;
  margin-bottom: calc(16px / 2);
}
.gform_wrapper form .gf_progressbar_title .gf_step_page_name {
  display: none;
}
.gform_wrapper form .gfield_required {
  display: none;
}
.gform_wrapper form .gform-theme--framework .gf_progressbar {
  background: #E1E2E5;
}
.gform_wrapper form legend.gfield_label.gform-field-label {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 33px;
  color: #502D82;
  margin: calc(16px * 2) 0;
}
.gform_wrapper form fieldset.bonus legend::before {
  content: "";
  display: block;
  background: url(../img/bonus.svg) no-repeat center/cover;
  width: 172px;
  height: 41px;
  margin-bottom: calc(16px * 1.5);
}
.gform_wrapper form .gfield_radio .gchoice {
  counter-increment: chapter;
  display: block;
}
.gform_wrapper form .gfield_radio .gchoice input {
  display: none;
}
.gform_wrapper form .gfield_radio .gchoice input:checked + label {
  background: #F4F5F8;
}
.gform_wrapper form .gfield_radio .gchoice input:checked + label::before {
  background: #E1E2E5;
}
.gform_wrapper form .gfield_radio .gchoice .gform-field-label {
  display: flex;
  padding: 20px 24px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #E1E2E5;
  background: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #1F1F1F;
  margin: 0;
}
.gform_wrapper form .gfield_radio .gchoice .gform-field-label::before {
  content: counter(chapter, upper-alpha);
  color: #502D82;
  font-size: 14.222px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  width: 32px;
  min-width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #F4F5F8;
}
.gform_wrapper form .gform-page-footer {
  align-items: center;
  justify-content: center;
}
.gform_wrapper form .gform-page-footer .gform_next_button, .gform_wrapper form .gform-page-footer #gform_submit_button_1 {
  display: none !important;
}
.gform_wrapper form .gform-page-footer input {
  background: transparent !important;
  border: none !important;
  color: #502D82 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.gform_wrapper form .gform-page-footer input:hover {
  text-decoration: underline !important;
}

input[type=text], input[type=email], input[type=tel], textarea, select {
  border: #6E6E73 1px solid;
  padding: calc(16px - 5px) calc(16px * 1.5) !important;
  font-size: 18px;
  line-height: 26px;
  color: #1F1F1F;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
}
input[type=text]:focus, input[type=text]:focus-visible, input[type=email]:focus, input[type=email]:focus-visible, input[type=tel]:focus, input[type=tel]:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible {
  border-color: #1F1F1F;
  outline: none;
}

.newsletter {
  padding: calc(16px * 4) 0;
}
.newsletter .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 900px;
  display: flex;
  gap: 120px;
  align-items: flex-end;
}
.newsletter .container .left, .newsletter .container .right {
  width: 50%;
}
@media (max-width: 1104px) {
  .newsletter .container {
    flex-direction: column;
    gap: calc(16px * 2);
  }
  .newsletter .container .left, .newsletter .container .right {
    width: 100%;
  }
}

section.cta:not(.hero) {
  padding: calc(16px * 4) 0;
}
section.cta:not(.hero) .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: calc(calc(16px * 4) * 2);
  align-items: center;
}
section.cta:not(.hero) .container .left, section.cta:not(.hero) .container .right {
  width: 50%;
}
section.cta:not(.hero) .container .left {
  max-width: 470px;
}
section.cta:not(.hero) .container .left h2 {
  margin-top: 0;
}
section.cta:not(.hero) .container .left p {
  line-height: 26px;
}
section.cta:not(.hero) .container .left .buttons {
  display: flex;
  margin-top: calc(16px * 2);
  gap: calc(16px * 1.5);
}
section.cta:not(.hero) .container .left.noimage {
  max-width: 100%;
  text-align: center;
  width: 100%;
}
section.cta:not(.hero) .container .left.noimage .buttons {
  justify-content: center;
}
section.cta:not(.hero) .container .right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 50%;
  margin-left: auto;
}
section.cta:not(.hero) .container .right img {
  width: 100%;
  height: auto;
}
@media (max-width: 1104px) {
  section.cta:not(.hero) .container {
    flex-direction: column;
    gap: 0px;
  }
  section.cta:not(.hero) .container .left {
    width: 100%;
    max-width: 100%;
  }
  section.cta:not(.hero) .container .right {
    max-width: calc(100% + calc(16px * 2));
    width: calc(100% + calc(16px * 2));
    margin-left: 0;
    padding-bottom: calc(16px * 4);
  }
  section.cta:not(.hero) .container .right::before {
    display: none;
  }
}
section.cta:not(.hero).notop .left {
  padding-top: 0;
}
section.cta:not(.hero).nobottom .left {
  padding-bottom: 0;
}

.comparison {
  padding: calc(16px * 4) 0;
}
.comparison .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1330px;
}
.comparison .container .intro {
  max-width: 600px;
  padding-bottom: calc(16px * 2);
}
.comparison .container .comparisonTable {
  display: flex;
  gap: calc(16px * 3);
  justify-content: center;
}
@media (max-width: 1104px) {
  .comparison .container .comparisonTable {
    flex-wrap: wrap;
  }
}
.comparison .container .comparisonTable .tableItem {
  width: 33.3333%;
  background: #F4F5F8;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1104px) {
  .comparison .container .comparisonTable .tableItem {
    width: calc(50% - calc(16px * 4));
  }
}
@media (max-width: 800px) {
  .comparison .container .comparisonTable .tableItem {
    width: 100%;
  }
}
.comparison .container .comparisonTable .tableItem .heading {
  background: #6E6E73;
  padding: 16px calc(16px * 2);
  min-height: calc(100px - calc(16px * 2));
}
.comparison .container .comparisonTable .tableItem .heading h3 {
  margin: 0;
  max-width: 80%;
}
.comparison .container .comparisonTable .tableItem.flagged .heading {
  position: relative;
}
.comparison .container .comparisonTable .tableItem.flagged .heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 32px;
  height: 46px;
  background: #1F1F1F;
  mask-image: url(../img/banner.svg);
  -webkit-mask-image: url(../img/banner.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
  top: 0;
  right: 16px;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading {
  border-color: #1F1F1F;
}
.comparison .container .comparisonTable .tableItem:first-of-type .heading::after {
  background: #1F1F1F;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading {
  border-color: #1F1F1F;
}
.comparison .container .comparisonTable .tableItem:nth-child(3) .heading::after {
  background: #1F1F1F;
}
.comparison .container .comparisonTable .tableItem .content {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.comparison .container .comparisonTable .tableItem .content .tableItems {
  padding: 16px calc(16px * 2);
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item {
  padding: 16px 0;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item.small {
  font-size: 16px;
  color: #1F1F1F;
  line-height: 26px;
  letter-spacing: 0.32px;
}
.comparison .container .comparisonTable .tableItem .content .tableItems .item span {
  display: block;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
  color: #1F1F1F;
  font-weight: 500;
}
.comparison .container .comparisonTable .tableItem .content .cta {
  margin-top: auto;
  padding: 16px calc(16px * 2) calc(16px * 2);
}
.comparison .disclaimer {
  margin-top: -100px;
  padding: calc(100px + calc(16px * 2)) 0 calc(16px * 2);
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.32px;
  font-style: italic;
}
.comparison .disclaimer p {
  max-width: 700px;
  margin: 16px auto;
}

.slider {
  padding: calc(16px * 4) 0;
}
.slider .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.slider .container img {
  max-width: 100%;
}
.slider .container .slider-single {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.slider .container .slider-single .slick-list {
  width: calc(100% - 100px);
}
.slider .container .slider-single .slide {
  display: flex !important;
  align-items: center;
  gap: calc(16px * 3);
}
.slider .container .slider-single .slide .button {
  margin-top: calc(16px * 2);
}
.slider .container .slider-single .slide img {
  width: 33.333%;
}
@media (max-width: 1104px) {
  .slider .container .slider-single .slide {
    flex-direction: column;
  }
  .slider .container .slider-single .slide img {
    margin-right: 0;
    width: 100%;
  }
  .slider .container .slider-single .slide .content {
    margin-top: 16px;
    text-align: center;
  }
}
@media (max-width: 1104px) {
  .slider .container .slider-single {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .slider .container .slider-single .slick-list {
    max-width: calc(100% - 92px);
  }
}
.slider .container .slider-multi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.slider .container .slider-multi .slick-list {
  max-width: calc(100% - 92px);
}
.slider .container .slider-multi a {
  text-decoration: none !important;
}
.slider .container .slider-multi .slide {
  padding: 0 calc(16px / 2);
  width: calc(100% - 16px) !important;
}
.slider .container .slider-multi .slide .content {
  margin-top: 16px;
}
.slider .container .slider-multi .slide .content p {
  font-size: 16px;
}

.slick-arrow {
  background: url(../img/chevron.svg) no-repeat center/cover;
  border: none;
  font-size: 0;
  width: 28px;
  min-width: 28px;
  height: 47px;
  cursor: pointer;
}

.slick-prev {
  transform: rotate(180deg);
  margin-right: 16px;
}

.slick-next {
  margin-left: 16px;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(16px * 2);
  padding: 0;
  width: 100%;
}
.slick-dots li {
  list-style: none;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 100%;
  border: none;
  background-color: #1F1F1F;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.slick-dots li.slick-active button {
  background-color: #1F1F1F;
}

.videoCarousel {
  position: inherit !important;
  padding: calc(16px * 4) 0;
}
.videoCarousel .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.videoCarousel .container .buttons {
  text-align: center;
}
.videoCarousel .container .buttons.left {
  text-align: left;
}
.videoCarousel .container .slide .thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoCarousel .container .slide .thumbnail img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.videoCarousel .container .slide .thumbnail svg {
  position: absolute;
  max-width: 50px;
  max-height: 50px;
}
.videoCarousel .video-slider {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.videoCarousel .video-slider .slick-list {
  max-width: calc(100% - 92px);
  margin: 0 -20px;
}
.videoCarousel .video-slider .slick-list .slick-slide {
  margin: 0 20px;
}
.videoCarousel .popup {
  position: fixed;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 2;
}
.videoCarousel .popup .loading {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.videoCarousel .popup.active {
  display: flex;
}
.videoCarousel .popup .close {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  width: 34px;
  height: 34px;
}
.videoCarousel .popup .content {
  z-index: 2;
  max-width: 90%;
}
.videoCarousel .popup .content iframe {
  max-width: 100%;
}
.videoCarousel .st0 {
  fill: none;
}
.videoCarousel .st1 {
  fill: #ffffff;
}
.videoCarousel .st2 {
  fill: #1F1F1F;
}

.tabs {
  padding: calc(16px * 4) 0;
}
.tabs .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.tabs .container .tabItems .topTabs {
  display: flex;
  justify-content: center;
}
@media (max-width: 1104px) {
  .tabs .container .tabItems .topTabs {
    flex-direction: column;
  }
}
.tabs .container .tabItems .topTabs .tabTitle {
  text-transform: uppercase;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(16px / 2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .topTabs .tabTitle:hover {
  color: #1F1F1F;
  font-weight: bold;
}
.tabs .container .tabItems .topTabs .tabTitle.active {
  color: #1F1F1F;
  font-weight: bold;
}
.tabs .container .tabItems.side {
  display: flex;
  align-items: center;
}
.tabs .container .tabItems.side .sideTabs {
  width: 50%;
  margin-right: calc(16px * 2);
  display: flex;
  gap: 16px;
  flex-direction: column;
}
@media (max-width: 800px) {
  .tabs .container .tabItems.side .sideTabs {
    width: 100%;
    margin: 0;
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle {
  display: flex;
  cursor: pointer;
}
.tabs .container .tabItems.side .sideTabs .tabTitle:not(:last-of-type) {
  margin-bottom: 16px;
}
.tabs .container .tabItems.side .sideTabs .tabTitle a {
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon {
  background: #ffffff;
  overflow: hidden;
  width: calc(16px * 2);
  height: calc(16px * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.2s ease;
  padding: calc(16px / 2);
}
@media (max-width: 800px) {
  .tabs .container .tabItems.side .sideTabs .tabTitle .icon {
    width: calc(calc(16px * 2) + calc(16px / 2));
    height: calc(calc(16px * 2) + calc(16px / 2));
  }
}
.tabs .container .tabItems.side .sideTabs .tabTitle .icon img {
  max-width: 100%;
  max-height: 100%;
}
.tabs .container .tabItems.side .sideTabs .tabTitle .tabTitleContent {
  width: calc(100% - calc(16px * 3));
}
.tabs .container .tabItems.side .sideTabs .tabTitle span {
  font-size: 24px;
  font-weight: 600;
  line-height: 22px;
  margin-bottom: calc(16px / 2);
  display: block;
  transition: all 0.2s ease;
}
.tabs .container .tabItems.side .tabContent {
  width: 50%;
  display: flex;
}
@media (max-width: 800px) {
  .tabs .container .tabItems.side .tabContent {
    display: none;
  }
}
.tabs .container .tabItems.side .tabContent .tabCopy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabs .container .tabItems.side .tabContent .tabCopy img {
  max-width: 100%;
}
.tabs .container .tabItems.right .sideTabs {
  order: 2;
  margin-right: 0;
  margin-left: calc(16px * 2);
}
@media (max-width: 800px) {
  .tabs .container .tabItems.right .sideTabs {
    margin-left: 0;
    margin-top: 16px;
  }
}
.tabs .container .tabItems.right .tabContent {
  order: 1;
}
.tabs .container .tabItems .tabContent {
  display: flex;
  overflow: hidden;
}
.tabs .container .tabItems .tabContent .tabCopy {
  width: 100%;
  margin-top: 16px;
  padding-bottom: 16px;
  margin-right: -100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.tabs .container .tabItems .tabContent .tabCopy.active {
  opacity: 1;
  visibility: visible;
}
.tabs .container .tabItems .tabContent.top .flex {
  display: flex;
  align-items: center;
  gap: calc(16px * 3);
}
@media (max-width: 1104px) {
  .tabs .container .tabItems .tabContent.top .flex {
    flex-wrap: wrap;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.left {
  order: 1;
}
.tabs .container .tabItems .tabContent.top .flex .content {
  order: 2;
  width: 50%;
}
@media (max-width: 1104px) {
  .tabs .container .tabItems .tabContent.top .flex .content {
    width: 100%;
  }
}
.tabs .container .tabItems .tabContent.top .flex img.right {
  order: 3;
  margin-left: 16px;
}
.tabs .container .tabItems .tabContent.top .flex img {
  width: 50%;
}
@media (max-width: 1104px) {
  .tabs .container .tabItems .tabContent.top .flex img {
    width: 100%;
    order: 3 !important;
    margin: 16px 0 0;
  }
}
.tabs .container .tabItems .tabContent.top .tabCopy.full .content {
  width: 100% !important;
}

.gallery {
  padding: calc(16px * 4) 0;
}
.gallery .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.gallery .container .images {
  margin-top: calc(16px * 3);
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 2);
}
.gallery .container .images .image {
  width: calc(33.3333% - 16px * 1.3333);
}
.gallery .container .images .image img {
  max-width: 100%;
  min-width: 50%;
  height: auto;
  margin: 0 auto;
}
.gallery .container .images .image figcaption {
  margin-top: 16px;
  font-size: 16px;
  font-style: italic;
}
.gallery .container .images.four .image {
  width: calc(25% - calc(16px * 1.5));
}
.gallery .container .images.five .image {
  width: calc(20% - 16px * 1.6);
}
@media (max-width: 1104px) {
  .gallery .container .images.four .image, .gallery .container .images.five .image {
    width: calc(33.3333% - 16px * 1.3333);
  }
}
@media (max-width: 800px) {
  .gallery .container .images .image {
    width: 100% !important;
  }
}

section.team {
  padding: calc(16px * 3) 0 calc(16px * 4);
}
section.team .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1330px;
}
section.team .container .search {
  margin-bottom: calc(16px * 4);
}
section.team .container .search form {
  display: flex;
  align-items: flex-end;
  gap: calc(16px * 4);
}
section.team .container .search form div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
section.team .container .search form div strong {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: calc(16px / 2);
}
section.team .container .search form div select {
  background: #ffffff url(../img/down.svg) no-repeat calc(100% - calc(16px * 1.5)) center;
  border: #1F1F1F 1px solid;
  padding: calc(16px - 2px) calc(calc(16px * 1.5) - 2px);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 800px) {
  section.team .container .search form {
    flex-direction: column;
    gap: calc(16px * 2);
    align-items: center;
  }
  section.team .container .search form div {
    width: 100%;
  }
}
section.team .container .teamMembers {
  display: flex;
  flex-wrap: wrap;
  gap: calc(16px * 3);
  align-items: flex-start;
}
section.team .container .teamMembers .member {
  max-width: 318px;
  width: 100%;
  flex-grow: 1;
  height: 400px;
  overflow: hidden;
  position: relative;
}
section.team .container .teamMembers .member .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}
section.team .container .teamMembers .member img {
  width: 100%;
  transition: all 0.2s ease;
}
section.team .container .teamMembers .member .content {
  position: absolute;
  bottom: 0;
  padding: 16px 16px calc(16px * 2) 16px;
  text-align: center;
  width: calc(100% - calc(16px * 2));
  color: #ffffff;
  z-index: 2;
}
section.team .container .teamMembers .member .content h3 {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.44px;
  font-weight: 800;
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
  color: #ffffff;
  margin: 0 0 calc(16px / 2);
}
section.team .container .teamMembers .member .content span {
  display: block;
}
section.team .container .teamMembers .member .content a {
  display: block;
  margin-top: 0;
  color: #ffffff;
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
section.team .container .teamMembers .member:hover img {
  transform: scale(1.05);
}
section.team .container .teamMembers .member:hover .content a {
  margin-top: 16px;
  max-height: 100%;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1104px) {
  section.team .container .teamMembers .member .content a {
    margin-top: 16px;
    max-height: 100%;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1104px) {
  section.team .container .teamMembers {
    justify-content: center;
  }
}

.single .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.single .container .mainContent {
  max-width: 1330px;
  margin: calc(16px * 3) auto calc(calc(16px * 3) * 2);
}
.single .container .mainContent .returnLink {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .returnLink a {
  color: #1F1F1F;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.single .container .mainContent .returnLink a::before {
  content: "";
  display: inline-block;
  background: url(../img/arrow-white.svg) no-repeat center/contain;
  width: 16px;
  height: 10px;
  transform: rotate(180deg);
  margin-right: 16px;
  transition: all 0.2s ease;
}
.single .container .mainContent .returnLink a:hover::before {
  margin-right: calc(16px * 1.5);
}
.single .container .mainContent .image {
  margin-bottom: calc(16px * 2);
}
.single .container .mainContent .image img {
  max-width: 100%;
  height: auto;
}
.single .container .mainContent .flex {
  display: flex;
}
.single .container .mainContent .flex .addthis_inline_share_toolbox {
  max-width: 46px;
  margin-right: calc(16px * 2);
}
.single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:focus, .single .container .mainContent .flex .addthis_inline_share_toolbox .at-resp-share-element .at-share-btn:hover {
  transform: translateX(-4px);
}
.single .container .mainContent .flex .content .data {
  display: flex;
  flex-wrap: wrap;
}
.single .container .mainContent .flex .content .data h1 {
  width: 100%;
  margin-top: 0;
  font-size: 32px;
  line-height: 38px;
}

.single-post .container .mainContent .flex .content .data {
  margin-bottom: calc(16px * 2);
}
.single-post .container .mainContent .flex .content .data h1 {
  margin: 0;
}

.post-type-archive-event .date, .search .posts .date {
  font-weight: 500;
  margin-bottom: 16px;
}

.blog .container, .archive .container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}
.blog .container .header, .archive .container .header {
  display: flex;
  align-items: center;
  margin: calc(16px * 2) 0 calc(calc(16px * 3) * 2) 0;
}
.blog .container .header h1, .archive .container .header h1 {
  margin: 0 calc(16px * 2) 0 0;
  width: 100%;
}
.blog .container .header form, .archive .container .header form {
  margin-left: auto;
  width: 100%;
}
.blog .container .header form div, .archive .container .header form div {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.blog .container .header form div input[type=search], .archive .container .header form div input[type=search] {
  background: #ffffff;
  background-position: 20px 10px;
  border: #1F1F1F 1px solid;
  padding: calc(16px - 4px) calc(16px * 1.5);
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.34px;
  color: #1F1F1F;
  font-family: "Gotham Narrow", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 350px;
}
.blog .container .header form div input[type=submit], .archive .container .header form div input[type=submit] {
  background: #1F1F1F url(../img/arrow-white.svg) no-repeat center/19px;
  width: 48px;
  height: 48px;
  color: transparent;
  border: none;
  margin-left: 16px;
  border-radius: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
}
.blog .container .header form div input[type=submit]:hover, .archive .container .header form div input[type=submit]:hover {
  background-color: #1F1F1F;
}
@media (max-width: 800px) {
  .blog .container .header, .archive .container .header {
    flex-wrap: wrap;
    gap: 16px;
  }
  .blog .container .header form div, .archive .container .header form div {
    justify-content: flex-start;
  }
}
.blog .container .navigation, .archive .container .navigation {
  text-align: center;
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .navigation .nav-links, .archive .container .navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog .container .navigation .nav-links .page-numbers, .archive .container .navigation .nav-links .page-numbers {
  color: #1F1F1F;
  text-decoration: none;
  margin: 0 calc(16px / 2);
}
.blog .container .navigation .nav-links .page-numbers.current, .archive .container .navigation .nav-links .page-numbers.current {
  color: #1F1F1F;
  font-weight: 600;
}
.blog .container .navigation .nav-links .page-numbers.next, .blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.prev {
  background: #1F1F1F url(../img/arrow-black.svg) no-repeat center/13px;
  width: 33px;
  height: 33px;
  display: inline-block;
  text-indent: -9999px;
  border-radius: 100%;
}
.blog .container .navigation .nav-links .page-numbers.next, .archive .container .navigation .nav-links .page-numbers.next {
  margin-left: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.prev, .archive .container .navigation .nav-links .page-numbers.prev {
  transform: rotate(180deg);
  margin-right: calc(16px * 3);
}
.blog .container .navigation .nav-links .page-numbers.inactive, .archive .container .navigation .nav-links .page-numbers.inactive {
  background: #ffffff url(../img/arrow-black.svg) no-repeat center/13px;
}
.blog .container .posts, .archive .container .posts {
  margin-bottom: calc(calc(16px * 3) * 2);
}
.blog .container .posts .post, .archive .container .posts .post {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  text-decoration: none;
  color: #1F1F1F;
  align-items: center;
}
.blog .container .posts .post:not(:last-child), .archive .container .posts .post:not(:last-child) {
  margin-bottom: calc(16px * 4);
}
.blog .container .posts .post .thumbnail, .archive .container .posts .post .thumbnail {
  min-width: 240px;
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(16px * 4);
}
.blog .container .posts .post .thumbnail img, .archive .container .posts .post .thumbnail img {
  max-height: 100%;
  height: 100%;
  width: auto;
  display: block;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content, .archive .container .posts .post .content {
  width: 100%;
}
.blog .container .posts .post .content h3, .archive .container .posts .post .content h3 {
  margin: 0 0 16px;
  transition: all 0.2s ease;
}
.blog .container .posts .post .content p, .archive .container .posts .post .content p {
  margin: 0 0 calc(16px * 2);
}
.blog .container .posts .post .content .readMore, .archive .container .posts .post .content .readMore {
  color: #1F1F1F;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.12px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog .container .posts .post .content .readMore::after, .archive .container .posts .post .content .readMore::after {
  content: "";
  display: inline-block;
  background: url(../img/long-arrow.svg) no-repeat right/cover;
  width: 15px;
  height: 10px;
  transition: all 0.2s ease;
  margin-left: calc(16px / 2);
}
.blog .container .posts .post:not(.hasthumb) p, .archive .container .posts .post:not(.hasthumb) p {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.4px;
}
.blog .container .posts .post:hover .thumbnail img, .archive .container .posts .post:hover .thumbnail img {
  transform: scale(1.05);
}
.blog .container .posts .post:hover h3, .archive .container .posts .post:hover h3 {
  color: #1F1F1F;
}
.blog .container .posts .post:hover .readMore::after, .archive .container .posts .post:hover .readMore::after {
  width: 24px;
}
@media (max-width: 1104px) {
  .blog .container .posts .post, .archive .container .posts .post {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16px * 1.5);
  }
}

/* =======================================
   GLOBAL STYLES
   ======================================= */
body {
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
  margin: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  background: #F4F5F8;
  color: #1F1F1F;
  /* --------- GLOBAL TEXT STYLES --------- */
  /* --------- LINKS --------- */
  /* --------- GLOBAL SECTION STYLES --------- */
  /* --------- LIST STYLES --------- */
  /* --------- BREADCRUMBS --------- */
}
body.active {
  overflow-y: hidden;
}
body h1, body h2, body h3 {
  font-family: "myriad-pro", "Helvetica", "Arial", sans-serif;
}
body h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #502D82;
}
body h1 b, body h1 strong {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #F4C55C;
  text-decoration-thickness: 14.5%;
  text-underline-offset: 12.5%;
  text-underline-position: from-font;
}
body p {
  margin: calc(16px * 1.5) 0 calc(16px * 2);
}
body p.large {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  background: #F4F5F8;
  color: #6E6E73;
}
body p.small {
  color: #6E6E73;
}
body p.small em strong, body p.small.small strong em {
  font-size: 16px !important;
  color: #6E6E73 !important;
}
body em strong, body strong em {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 26px;
  color: #502D82;
}
body a {
  color: #1F1F1F;
  transition: all 0.2s ease;
}
body .button {
  display: inline-flex;
  padding: 16px calc(16px * 2);
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  text-decoration: none;
  background: #502D82;
  color: #ffffff;
  border: transparent 1px solid;
}
body .button:hover {
  opacity: 0.6;
}
body .button.sparkle::before {
  content: "";
  background: url(../img/sparkle.svg) no-repeat center/cover;
  width: 21px;
  height: 21px;
  display: inline-block;
}
body .button.secondary {
  background: transparent;
  border: #502D82 1px solid;
  color: #502D82;
}
body hr.anchor {
  border: none;
  margin: 0;
}
body section {
  padding: 0 16px;
}
body section *:first-child {
  margin-top: 0;
}
body section *:last-child {
  margin-bottom: 0;
}
body section.gray {
  background: #F4F5F8;
}
body section.notop {
  padding-top: 0;
}
body section.nobottom {
  padding-bottom: 0;
}
body section img {
  display: block;
}
body .checklist {
  padding: 0;
  list-style: none;
}
body .checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(16px * 1.5);
  font-weight: 500;
}
body .checklist li::before {
  content: "";
  display: inline-block;
  background: url(../img/check.svg);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  margin-right: calc(16px / 2);
  margin-top: -2px;
}
body ol, body ul {
  padding-left: 20px;
}
body ol.two, body ul.two {
  columns: 2;
}
body ol.three, body ul.three {
  columns: 3;
}
body .breadcrumbWrapper {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 16px;
}/*# sourceMappingURL=styles.css.map */