/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

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;vertical-align:baseline}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img,fieldset,a img{border:none}input[type="text"],input[type="email"],input[type="search"],input[type="tel"],textarea{-webkit-appearance:none}input[type="submit"],button{cursor:pointer}input[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto}input,button{margin:0;padding:0;border:0}div,input,textarea,select,button,h1,h2,h3,h4,h5,h6,a,span,a:focus{outline:none}ul,ol{list-style-type:none}table{width:100%;border-spacing:0;border-collapse:collapse}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,*:before,*:after{-webkit-box-sizing:inherit;box-sizing:inherit}.h1,.content h1{color:#462769;font-weight:700;font-size:50px;line-height:calc(54/50)}@media only screen and (min-width: 1024px){.h1,.content h1{font-size:70px;line-height:calc(80/70)}}.h2,.content h2{color:#522B80;font-weight:500;font-size:36px;line-height:calc(44/36)}.h2--dark,.content h2--dark{color:#050709}.h2--bluedark,.content h2--bluedark{color:#462769}.h3,.content h3{font-weight:500;font-size:18px;line-height:1.2;color:#522B80}.h3.has-border:before,.content h3.has-border:before{content:"";display:block;width:30px;height:2px;margin-bottom:17px;background-color:#95C11F}.lead{font-size:18px;line-height:calc(30/18)}.btn{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:62px;padding:0 20px;background-color:#95C11F;border:1px solid #95C11F;font-size:20px;font-weight:bold;border-radius:6px;text-decoration:none;color:#fff}.btn--md{height:48px;font-size:16px;font-weight:500}.btn--sm{height:40px;font-size:14px;font-weight:500}.btn--secondary{color:#fff;background-color:#D4007F;border-color:#D4007F}.btn--stroke{background-color:transparent;border-color:#522B80;color:#050709}.container{width:100%;margin:0 auto;padding:0 18px;max-width:calc(935px + 68px)}@media only screen and (min-width: 1024px){.container{padding:0 34px}}.container--wide{max-width:100%}.container--lg{max-width:calc(1088px + 68px)}.main{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.page{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:100vh;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-color:#fff}.header{z-index:100;position:relative;border-bottom:1px solid rgba(255,255,255,0.18);color:#fff;height:68px;background-color:#462769}@media only screen and (min-width: 1390px){.header{height:80px;background-color:transparent}.header--colored{background-color:#462769}}.header .container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%}.header__logo{display:block;-webkit-box-flex:0;-ms-flex:0 0 146px;flex:0 0 146px;margin-right:15px}@media only screen and (min-width: 1260px){.header__logo{-webkit-box-flex:0;-ms-flex:0 0 215px;flex:0 0 215px}}.header__logo svg path.w{fill:white}.header__logo svg path.p{fill:#522B80}.header__burger{display:block;cursor:pointer;z-index:1;position:relative}@media only screen and (min-width: 1390px){.header__burger{display:none}}@media print{.header__burger{display:none}}.header__lang{position:relative}.header__lang:before{content:"";position:absolute;top:calc(50% - 1px);-webkit-transform:translate(0, -50%);transform:translate(0, -50%);right:-10px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.9' height='5.7'%3E%3Cg fill='none' stroke='%23a7c342' stroke-linecap='round' data-name='Group 18'%3E%3Cpath d='M.7.7 5 5' data-name='Line 267'/%3E%3Cpath d='M9.2.7 5 5' data-name='Line 268'/%3E%3C/g%3E%3C/svg%3E");width:10px;height:6px}.header__lang-select{position:relative;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;border:0;border-bottom:1px solid #95C11F;background-color:transparent;color:currentColor;font-weight:500;font-size:20px;width:50px;padding:0 5px;top:1px}.header__lang-select option{background-color:#462769}.header__lang-select:focus-visible{outline:1px solid #D4007F;outline-offset:2px}.header__main{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:auto}.header__navigation{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header__menu{display:none;font-size:14px}.header__menu:nth-child(1){font-weight:500;font-size:18px}.header__menu+.header__menu{margin-left:25px}@media only screen and (min-width: 1390px){.header__menu{display:-webkit-box;display:-ms-flexbox;display:flex}}@media only screen and (min-width: 1260px){.header__menu+.header__menu{margin-left:36px}}.header__menu-item{position:relative;cursor:pointer}.header__menu-item:not(:first-child){margin-left:25px}@media only screen and (min-width: 1260px){.header__menu-item:not(:first-child){margin-left:36px}}.header__menu-link{position:relative;color:currentColor;padding:6px 0}.header__menu-link:after{content:"";position:absolute;bottom:0;left:0;width:0;height:2px;background-color:#95C11F;-webkit-transition:width .25s;transition:width .25s}.header__auth{display:none;position:relative;margin-left:25px}@media only screen and (min-width: 1390px){.header__auth{display:block}}@media only screen and (min-width: 1260px){.header__auth{margin-left:36px}}.header__auth .header__dropdown{padding-top:20px}.header__auth:hover .header__dropdown{opacity:1;visibility:visible}.header__menu-item:hover .header__menu-link:after,.header__menu-item.is-active .header__menu-link:after{width:100%}.header__menu-item .header__dropdown{padding-top:26px;left:50%;margin-left:-350px}.header__menu-item:hover .header__dropdown{opacity:1;visibility:visible}.header__menu-item.has-dropdown .header__menu-link{padding-right:18px}.header__menu-item.has-dropdown .header__menu-link:before{content:"";position:absolute;top:50%;right:0;margin-top:-3px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.9' height='5.7'%3E%3Cg fill='none' stroke='%23a7c342' stroke-linecap='round' data-name='Group 21'%3E%3Cpath d='M.7.7 5 5' data-name='Line 267'/%3E%3Cpath d='M9.2.7 5 5' data-name='Line 268'/%3E%3C/g%3E%3C/svg%3E");width:10px;height:6px;background-repeat:no-repeat;background-position:center}.header__dropdown{position:absolute;top:100%;right:-34px;width:700px;font-size:14px;color:#fff;opacity:0;visibility:hidden;-webkit-transition:opacity .3s;transition:opacity .3s}.header__dropdown .btn{min-width:180px;font-size:16px}.header__dropdown.nrp{width:auto}.header__dropdown.nrp .header__dropdown-cell{width:100%}.header__dropdown-container{min-height:335px;background-color:#210b3b}.header__dropdown-grid{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:335px}.header__dropdown-cell{width:50%;padding:45px 65px}.header__dropdown-cell:first-child{background-color:#2c124a}.header__dropdown-list{margin-bottom:30px}.header__dropdown-item+.header__dropdown-item{margin-top:15px}.header__dropdown-link{font-weight:500;font-size:18px;color:currentColor}.header__dropdown-link:hover{text-decoration:underline}.header__dropdown-action+.header__dropdown-action{margin-top:45px}.header__dropdown-action--login{font-weight:500}.header__dropdown-action--login .btn{width:100%}.header__dropdown-label{margin-bottom:8px}.mobilenav{z-index:100;position:fixed;top:68px;left:0;height:calc(100% - 68px);width:100%;color:#fff;opacity:0;visibility:hidden;-webkit-transition:opacity .25s, visibility .25s;transition:opacity .25s, visibility .25s}@media only screen and (min-width: 1390px){.mobilenav{display:none}}.mobilenav.is-active{opacity:1;visibility:visible}.mobilenav__main{position:relative;height:100%;background-color:#462769;padding:0 18px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-overflow-scrolling:touch;overflow:hidden auto}.mobilenav__menu{margin:0 -18px}.mobilenav__list:first-child .mobilenav__link{font-weight:500;font-size:30px;padding:10px 0}.mobilenav__item{padding:0 18px}.mobilenav__item.has-dropdown .mobilenav__link:before{content:"";position:absolute;top:50%;right:0;margin-top:-4px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.9' height='8.1'%3E%3Cg fill='none' stroke='%23a7c342' stroke-linecap='round' data-name='Group 104'%3E%3Cpath d='m.7.7 6.7 6.7' data-name='Line 267'/%3E%3Cpath d='M14.1.7 7.4 7.4' data-name='Line 268'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-size:cover;width:15px;height:8px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:-webkit-transform .25s;transition:-webkit-transform .25s;transition:transform .25s;transition:transform .25s, -webkit-transform .25s}.mobilenav__item.has-dropdown.is-active{background-color:#210B3B}.mobilenav__item.has-dropdown.is-active .mobilenav__link:before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.mobilenav__item.has-dropdown.is-active .mobilenav__dropdown{display:block}.mobilenav__link{position:relative;display:block;padding:15px 0;font-weight:300;font-size:20px;color:currentColor}.mobilenav__dropdown{display:none;margin:0 -18px;background-color:#210B3B;padding:20px 18px}.mobilenav__dropdown-item+.mobilenav__dropdown-item{margin-top:15px}.mobilenav__dropdown-item .btn{min-width:158px}.mobilenav__dropdown-link{color:currentColor}.mobilenav__dropdown-link{font-size:20px;font-weight:300}.mobilenav__footer{margin-top:auto;padding-top:45px}.mobilenav__footer .btn{width:100%}.mobilenav__auth{position:absolute;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-overflow-scrolling:touch;overflow:hidden auto;background-color:#210B3B;padding:40px 18px 40px;visibility:hidden;-webkit-transform:translate(0, 100%);transform:translate(0, 100%);-webkit-transition:opacity .25s, visibility .25s, -webkit-transform .25s;transition:opacity .25s, visibility .25s, -webkit-transform .25s;transition:opacity .25s, visibility .25s, transform .25s;transition:opacity .25s, visibility .25s, transform .25s, -webkit-transform .25s}.mobilenav__auth.is-active{visibility:visible;-webkit-transform:translate(0, 0);transform:translate(0, 0)}.mobilenav__auth .btn--stroke{display:block;width:100%;color:currentColor}.mobilenav__auth .mobilenav__footer{margin-top:0}.mobilenav__rows{margin-top:auto}.mobilenav__row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:20px 0;border-bottom:1px solid rgba(255,255,255,0.1)}.mobilenav__row:first-child{border-top:1px solid rgba(255,255,255,0.1)}.mobilenav__row .btn{min-width:158px;font-size:16px}.mobilenav__label{font-size:14px;line-height:20px}.mobilenav__col:last-child{margin-left:45px}.mobilenav .header__dropdown-cell{padding:40px 0;width:auto;max-width:300px}.footer{padding:45px 0 35px;background-color:#462769;color:#fff}@media only screen and (min-width: 768px){.footer{padding:80px 0 35px}}.footer a:not(.btn){color:currentColor}@media only screen and (min-width: 768px){.footer__units-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.footer__units-item+.footer__units-item{margin-top:35px}@media only screen and (min-width: 768px){.footer__units-item{max-width:235px}.footer__units-item+.footer__units-item{margin-top:0}}.footer__units-title{font-weight:700;font-size:30px;line-height:calc(36/30)}@media only screen and (min-width: 768px){.footer__units-title{font-size:36px;line-height:calc(52/36)}}.footer__units-text{margin-top:10px}@media only screen and (min-width: 768px){.footer__units-text{margin-top:15px}}.footer__units-action{margin-top:16px}@media only screen and (min-width: 768px){.footer__units-action{margin-top:30px}}.footer__units-action .btn{min-width:129px;height:36px}@media only screen and (min-width: 768px){.footer__units-action .btn{height:48px}}.footer__units-action sup{font-size:10px}.footer__address{margin-top:60px;font-size:18px;line-height:calc(30/18)}@media only screen and (min-width: 768px){.footer__address{margin-top:30px;padding-top:70px;border-top:1px solid rgba(255,255,255,0.2)}}@media only screen and (min-width: 768px){.footer__contacts{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}@media only screen and (min-width: 768px){.footer__contacts li:not(:first-child):before{content:"•";margin:0 10px}}.footer__contacts a{text-decoration:none}.footer__contacts a:hover{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}.footer__navigation{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:60px}@media only screen and (min-width: 768px){.footer__navigation{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:5px}}.footer__menu{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:500;font-size:14px;line-height:calc(30/14)}@media only screen and (min-width: 768px){.footer__menu{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;font-size:18px;line-height:calc(30/18)}}.footer__menu-item:not(:last-child){margin-right:30px;margin-bottom:10px}@media only screen and (min-width: 768px){.footer__menu-item:not(:last-child){margin-bottom:0}}.footer__menu-link{text-decoration:none}.footer__menu-link:hover{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}.footer__socials{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px}@media only screen and (min-width: 768px){.footer__socials{margin-top:0}}.footer__social{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:50px;height:50px;border-radius:50%;background-color:#522B80;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:background-color .3s, color .3s, -webkit-transform .3s;transition:background-color .3s, color .3s, -webkit-transform .3s;transition:transform .3s, background-color .3s, color .3s;transition:transform .3s, background-color .3s, color .3s, -webkit-transform .3s}.footer__social svg path{fill:white}.footer__social:not(:last-child){margin-right:10px}.footer__social:hover{-webkit-transform:translate3d(0, -3px, 0.01px);transform:translate3d(0, -3px, 0.01px)}.footer__row{margin-top:60px}@media only screen and (min-width: 768px){.footer__row{margin-top:30px;padding-top:30px;border-top:1px solid rgba(255,255,255,0.2)}}.footer__partners{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:20px 30px;margin-bottom:40px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media only screen and (min-width: 768px){.footer__partners{-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin-bottom:0}}.footer__partner{display:block;width:90px}.footer__partner img{max-height:70px;display:block;margin:0 auto}.footer__copyright{font-size:14px;line-height:calc(26/14)}@media only screen and (min-width: 768px){.footer__copyright{margin-top:50px}}.footer__links{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:35px;font-weight:500;font-size:14px;line-height:calc(30/14)}.footer__links a:not(:last-child){margin-right:30px}.footer__links a{text-decoration:none}.footer__links a:hover{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}@media only screen and (min-width: 768px){.footer__links{font-size:18px;line-height:calc(40/18)}}.section{margin:40px 0;position:relative}@media only screen and (min-width: 768px){.section{margin:80px 0}}.section--gray{margin:0;padding:40px 0;background-color:#f7f9fd}@media only screen and (min-width: 768px){.section--gray{padding:80px 0}}.section--gray+.promo:before{content:"";position:absolute;top:-125px;left:0;width:100%;bottom:0;background-color:#f7f9fd}.section.pt0{margin-top:0}.section.pb0{margin-bottom:0}.section--gray.pt0{padding-top:0}.section--gray.pb0{padding-bottom:0}.section.loading:before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(255,255,255,0.5);z-index:2}.section.loading:after{content:'';position:absolute;left:50%;top:50%;width:50px;height:50px;border-radius:50%;z-index:3;border:10px solid #D4007F;border-top-color:transparent;border-bottom-color:transparent;-webkit-animation:rotate-scale-up 1s linear infinite both;animation:rotate-scale-up 1s linear infinite both}@-webkit-keyframes rotate-scale-up{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}50%{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}@keyframes rotate-scale-up{0%{-webkit-transform:rotateZ(0);transform:rotateZ(0)}50%{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg)}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg)}}.head{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:30px}@media only screen and (min-width: 768px){.head{margin-bottom:40px}}.head--centered{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.head__text{margin-top:9px}.head__link{display:inline;font-weight:500;line-height:1;color:#D4007F;border-bottom:1px solid transparent;-webkit-transition:border-color .3s;transition:border-color .3s}.head__link:hover{border-color:currentColor}.head__label{color:#D4007F;text-transform:uppercase;font-weight:500;margin-bottom:16px}.head__label:before{content:"";display:block;width:53px;height:20px;margin:0 auto 10px;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52.7' height='20.5'%3E%3Cg fill='%23c43382'%3E%3Cpath d='M15 15 8.4 5.5A29.6 29.6 0 0 0 0 14.2l9.4 6.3a20.6 20.6 0 0 1 5.5-5.6'/%3E%3Cpath d='m43.4 20.3 9.3-6.4a29.6 29.6 0 0 0-8.6-8.5l-6.3 9.4a20.6 20.6 0 0 1 5.6 5.5'/%3E%3Cpath d='m30.3 11.7 2-11.1a29.6 29.6 0 0 0-12 0l2.2 11.2a20.5 20.5 0 0 1 7.8 0'/%3E%3C/g%3E%3C/svg%3E");mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52.7' height='20.5'%3E%3Cg fill='%23c43382'%3E%3Cpath d='M15 15 8.4 5.5A29.6 29.6 0 0 0 0 14.2l9.4 6.3a20.6 20.6 0 0 1 5.5-5.6'/%3E%3Cpath d='m43.4 20.3 9.3-6.4a29.6 29.6 0 0 0-8.6-8.5l-6.3 9.4a20.6 20.6 0 0 1 5.6 5.5'/%3E%3Cpath d='m30.3 11.7 2-11.1a29.6 29.6 0 0 0-12 0l2.2 11.2a20.5 20.5 0 0 1 7.8 0'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor}#help .head.pt{padding-top:30px}.accordion__item{border:0 solid rgba(5,7,9,0.2);border-width:0 0 .5px}.accordion__item:first-child{border-width:.5px 0}.accordion__item.is-active .accordion__head{color:#522B80}.accordion__item.is-active .accordion__arrow{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.accordion__item.is-active .accordion__arrow svg path{fill:#95C11F}.accordion__item.is-active .accordion__body{display:block}.accordion__head{position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:30px 40px 30px 0;color:#462769}.accordion__arrow{position:absolute;top:37px;right:15px;width:12px;height:8px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:.3s;transition:.3s;color:#522B80}.accordion__title{font-weight:300;font-size:18px;line-height:24px}.accordion__subtitle{margin-top:15px;font-weight:300;font-size:18px;line-height:calc(24/18)}.accordion__body{display:none;max-width:826px;padding-bottom:30px;font-weight:300}.accordion__body>:not(:first-child){margin-top:1em}.accordion__body .btn{min-width:190px}.accordion__body.mortgagerates{max-width:none}.accordion__body ul{list-style:inside disc}.accordion__body ol{list-style:inside decimal}.accordion--alt .accordion__title{font-weight:500;font-size:36px;line-height:1.1}.paginator{margin-top:75px}.paginator__list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.paginator__item{margin:0 3px}.paginator__number{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 5px;min-width:29px;border-radius:3px;font-weight:300;color:#462769;border:1px solid rgba(82,43,128,0.29);background-color:#fff;-webkit-transition:color .3s, background-color .3s;transition:color .3s, background-color .3s}.paginator__number.is-active,.paginator__number:hover{background-color:#462769;color:#fff}.cards__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-18px -8px 0}.cards__cell{width:100%;margin-top:18px;padding:0 8px}@media only screen and (min-width: 768px){.cards__cell{width:33.333%}}.card{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;border-radius:6px;border:1px solid rgba(82,43,128,0.12);font-weight:300}.card:hover .card__footer{background-color:#462769;color:#fff}.card__media{height:180px}.card__pic{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.card__body{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;padding:17px 28px}.card__date{margin-bottom:17px;font-size:14px;line-height:calc(26/14);color:#522B80}.card__label{margin-bottom:10px}.card__label span{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-item-align:start;align-self:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:19px;margin-top:auto;padding:0 7px;color:#D4007F;border:1px solid rgba(212,0,127,0.38);border-radius:2px;font-size:11px}.card__label span:not(:first-child){margin-left:7px}.card__title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;font-size:18px;line-height:calc(28/18)}.card__footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:49px;margin-top:auto;padding:0 20px 0 28px;font-weight:500;font-size:14px;color:#522B80;background-color:rgba(82,43,128,0.03);-webkit-transition:.3s;transition:.3s}.card__action{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.xcards__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-16px -8px 0}.xcards__cell{width:100%;margin-top:16px;padding:0 8px}@media only screen and (min-width: 768px){.xcards__cell{width:33.333%}}@media only screen and (min-width: 768px){.xcards__cell--half{width:50%}}@media only screen and (min-width: 768px){.xcards__cell--full{width:100%}}.xcard{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;border-radius:6px;-webkit-box-shadow:0 10px 20px rgba(5,7,9,0.08);box-shadow:0 10px 20px rgba(5,7,9,0.08)}.xcard.alt{color:#462769}.xcard:not(.alt){color:#fff;background:-webkit-gradient(linear, left top, left bottom, color-stop(55%, #462769), color-stop(235%, #D4007F));background:linear-gradient(180deg, #462769 55%, #D4007F 235%)}.xcard:hover .xcard__action{background-color:#95C11F;color:#462769}.xcard__media{position:relative;height:260px}.xcard__media:before{content:"";position:absolute;inset:0;background:linear-gradient(212.69deg, #C22A7D .55%, #422860 54.55%);background-blend-mode:screen;mix-blend-mode:screen;opacity:0.35}.xcard.alt .xcard__media{height:140px;padding-top:30px}.xcard.alt .xcard__pic{-o-object-fit:contain;object-fit:contain}.xcard__pic{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.xcard__main{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.xcard__body{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;padding:25px 22px 25px}@media only screen and (min-width: 768px){.xcard__body{padding:30px 26px 35px}}.xcard__label{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:35px;font-weight:500;font-size:14px;color:#95C11F;text-transform:uppercase}.xcard__label:before{content:"";display:block;margin:0 auto;width:38px;height:15px;margin-bottom:10px;background-color:#95C11F;-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.1 15.8'%3E%3Cg fill='none' stroke='black' %3E%3Cpath d='M11.4 11.1 6.8 4.4a21.2 21.2 0 0 0-6.1 6.2l6.7 4.5a14.7 14.7 0 0 1 4-4' /%3E%3Cpath d='m31.7 15 6.7-4.6a21.1 21.1 0 0 0-6.2-6L27.7 11a14.7 14.7 0 0 1 4 3.9' /%3E%3Cpath d='m22.3 8.9 1.5-8a21.2 21.2 0 0 0-8.6 0l1.5 8a14.6 14.6 0 0 1 5.6 0' /%3E%3C/g%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 39.1 15.8'%3E%3Cg fill='none' stroke='black' %3E%3Cpath d='M11.4 11.1 6.8 4.4a21.2 21.2 0 0 0-6.1 6.2l6.7 4.5a14.7 14.7 0 0 1 4-4' /%3E%3Cpath d='m31.7 15 6.7-4.6a21.1 21.1 0 0 0-6.2-6L27.7 11a14.7 14.7 0 0 1 4 3.9' /%3E%3Cpath d='m22.3 8.9 1.5-8a21.2 21.2 0 0 0-8.6 0l1.5 8a14.6 14.6 0 0 1 5.6 0' /%3E%3C/g%3E%3C/svg%3E");-webkit-mask-size:contain;mask-size:contain;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.xcard__label--icon-left:before{margin-left:0}.xcard__title{margin-bottom:15px;font-weight:500;font-size:30px;line-height:calc(40/30)}@media only screen and (min-width: 768px){.xcard__title{margin-bottom:24px;font-size:36px;line-height:calc(40/36);max-width:99%}}.xcard__income{margin-top:20px}.xcard__income-head{font-weight:500;font-size:12px;color:#95C11F;text-transform:uppercase}.xcard__income-body{font-size:60px;font-weight:500;line-height:1.2}.xcard__income-body sup{font-size:34px}.xcard__data{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-16px -8px 0}.xcard__data-cell{margin-top:16px;padding:0 8px;width:50%}@media only screen and (min-width: 768px){.xcard__data-cell{width:auto}}.xcard__data-head{margin-bottom:10px;font-size:14px}@media only screen and (min-width: 768px){.xcard__data-head{font-size:16px}}.xcard__data-body{font-weight:500;line-height:1;font-size:20px}@media only screen and (min-width: 768px){.xcard__data-body{font-size:36px}}.xcard__action{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:49px;padding:0 20px 0 28px;font-weight:500;font-size:18px;background-color:rgba(255,255,255,0.06);-webkit-transition:color .3s, background-color .3s;transition:color .3s, background-color .3s}@media only screen and (min-width: 768px){.xcard--horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}@media only screen and (min-width: 768px){.xcard--horizontal .xcard__media{height:auto;-webkit-box-flex:0;-ms-flex:0 1 50%;flex:0 1 50%}}@media only screen and (min-width: 768px){.xcard--horizontal .xcard__main{width:50%}}.xcard--sm .xcard__media{height:200px}@media only screen and (min-width: 768px){.xcard--sm .xcard__media{height:220px}}@media only screen and (min-width: 768px){.xcard--lg .xcard__body,.xcard--lg .xcard__action{padding-left:54px;padding-right:54px}}.xcard.partner div.xcard__pic{height:110px}.members__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-18px -8px 0}.members__cell{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;margin-top:18px;padding:0 8px}@media only screen and (min-width: 768px){.members__cell{width:50%}}@media only screen and (min-width: 1024px){.members__cell{width:33.333%}}.members__card{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:6px;background-color:#683d72;color:#fff;font-size:18px;line-height:calc(22/18)}.members__card:hover .members__pic{-webkit-transform:scale(1.1);transform:scale(1.1)}.members__media{overflow:hidden;height:282px}.members__pic{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .25s;transition:-webkit-transform .25s;transition:transform .25s;transition:transform .25s, -webkit-transform .25s}.members__body{padding:20px 28px}.members__title{font-weight:500}@media only screen and (min-width: 768px){.units__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -45px;gap:45px 0}}@media only screen and (min-width: 768px){.units__grid.center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}@media only screen and (min-width: 768px){.units__grid.half .units__cell{width:50%}}.units__cell:not(:first-child){margin-top:30px}.units__cell .h3{margin-bottom:20px}@media only screen and (min-width: 768px){.units__cell{margin-top:0;width:33.333%;padding:0 45px}.units__cell:not(:first-child){margin-top:0}}.hub__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-8px -8px 0}.hub__cell{width:100%;margin-top:8px;padding:0 8px}@media only screen and (min-width: 768px){.hub__cell{width:33.333%}}.hub__card{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:115px;border-radius:6px;background-color:#fff;border:1px solid rgba(82,43,128,0.12);padding:20px}.testimonial{margin-top:75px;text-align:center}.testimonial__title{margin-bottom:20px;font-weight:300;font-size:16px;line-height:calc(24/16);color:#D4007F}.testimonial__title:before{content:"";display:block;width:53px;height:20px;margin:0 auto 10px;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52.7' height='20.5'%3E%3Cg fill='%23c43382'%3E%3Cpath d='M15 15 8.4 5.5A29.6 29.6 0 0 0 0 14.2l9.4 6.3a20.6 20.6 0 0 1 5.5-5.6'/%3E%3Cpath d='m43.4 20.3 9.3-6.4a29.6 29.6 0 0 0-8.6-8.5l-6.3 9.4a20.6 20.6 0 0 1 5.6 5.5'/%3E%3Cpath d='m30.3 11.7 2-11.1a29.6 29.6 0 0 0-12 0l2.2 11.2a20.5 20.5 0 0 1 7.8 0'/%3E%3C/g%3E%3C/svg%3E");mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52.7' height='20.5'%3E%3Cg fill='%23c43382'%3E%3Cpath d='M15 15 8.4 5.5A29.6 29.6 0 0 0 0 14.2l9.4 6.3a20.6 20.6 0 0 1 5.5-5.6'/%3E%3Cpath d='m43.4 20.3 9.3-6.4a29.6 29.6 0 0 0-8.6-8.5l-6.3 9.4a20.6 20.6 0 0 1 5.6 5.5'/%3E%3Cpath d='m30.3 11.7 2-11.1a29.6 29.6 0 0 0-12 0l2.2 11.2a20.5 20.5 0 0 1 7.8 0'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor}.testimonial__quote{width:100%;max-width:796px;margin:0 auto;font-weight:500;font-size:36px;line-height:calc(44/36);color:#522B80}.testimonial__attribution{margin-top:15px;font-weight:300;font-size:18px;line-height:calc(24/18);color:#462769}.testimonial__attribution a{color:currentColor;border-bottom:1px solid currentColor;-webkit-transition:border-color .3s;transition:border-color .3s}.testimonial__attribution a:hover{border-color:transparent}.banner{overflow:hidden;border-radius:6px;-webkit-box-shadow:0 10px 20px rgba(5,7,9,0.08);box-shadow:0 10px 20px rgba(5,7,9,0.08);background:-webkit-gradient(linear, left top, left bottom, from(#f7f9fd), to(#fff));background:linear-gradient(180deg, #f7f9fd 0%, #fff 100%);color:#462769}@media only screen and (min-width: 768px){.banner{display:-webkit-box;display:-ms-flexbox;display:flex}}@media only screen and (min-width: 768px){.banner__media,.banner__main{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}@media only screen and (min-width: 768px){.banner.widetext .banner__media{-webkit-box-flex:0;-ms-flex:0 0 40%;flex:0 0 40%}.banner.widetext .banner__main{-webkit-box-flex:0;-ms-flex:0 0 60%;flex:0 0 60%}}.banner__media.pad{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:white}.banner__media:not(.pad){position:relative;display:block;height:320px}@media only screen and (min-width: 768px){.banner__media:not(.pad){height:auto}}.banner__pic:not(.pad){display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.banner__main{padding:30px 35px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media only screen and (min-width: 768px){.banner__main{padding:33px 50px 40px}}.banner__label{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-bottom:30px;font-weight:500;font-size:16px;line-height:1;color:#95C11F}.banner__label:before{content:"";display:block;margin:0 auto;width:39px;height:16px;margin-bottom:10px;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.1' height='15.8'%3E%3Cg fill='none' stroke='%23a7c342' data-name='Group 91'%3E%3Cpath d='M11.4 11.1 6.8 4.4a21.2 21.2 0 0 0-6.1 6.2l6.7 4.5a14.7 14.7 0 0 1 4-4' data-name='Path 1'/%3E%3Cpath d='m31.7 15 6.7-4.6a21.1 21.1 0 0 0-6.2-6L27.7 11a14.7 14.7 0 0 1 4 3.9' data-name='Path 7'/%3E%3Cpath d='m22.3 8.9 1.5-8a21.2 21.2 0 0 0-8.6 0l1.5 8a14.6 14.6 0 0 1 5.6 0' data-name='Path 8'/%3E%3C/g%3E%3C/svg%3E");mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39.1' height='15.8'%3E%3Cg fill='none' stroke='%23a7c342' data-name='Group 91'%3E%3Cpath d='M11.4 11.1 6.8 4.4a21.2 21.2 0 0 0-6.1 6.2l6.7 4.5a14.7 14.7 0 0 1 4-4' data-name='Path 1'/%3E%3Cpath d='m31.7 15 6.7-4.6a21.1 21.1 0 0 0-6.2-6L27.7 11a14.7 14.7 0 0 1 4 3.9' data-name='Path 7'/%3E%3Cpath d='m22.3 8.9 1.5-8a21.2 21.2 0 0 0-8.6 0l1.5 8a14.6 14.6 0 0 1 5.6 0' data-name='Path 8'/%3E%3C/g%3E%3C/svg%3E");background-color:currentColor}.banner__title{margin-bottom:20px;font-weight:500;font-size:26px;line-height:calc(36/26)}.banner__text{color:#050709}.banner__text a{text-decoration:underline;text-underline-offset:3px;text-decoration-thickness:1px}.banner__text a:hover{text-decoration:none}.banner__action{margin-top:24px}@media only screen and (min-width: 768px){.banner__action{margin-top:50px}}.banner__action .btn{min-width:226px}.mediabanner{overflow:hidden;margin-top:50px;border-radius:6px}@media only screen and (min-width: 768px){.mediabanner{display:-webkit-box;display:-ms-flexbox;display:flex}}.mediabanner__cover{position:relative;display:block;height:320px}@media only screen and (min-width: 768px){.mediabanner__cover{height:auto;-webkit-box-flex:0;-ms-flex:0 0 calc(100% - 312px);flex:0 0 calc(100% - 312px)}}.mediabanner__cover iframe{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;aspect-ratio:16/9;background-color:black}.mediabanner__pic{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.mediabanner__play{position:absolute;top:50%;left:50%;width:52px;height:60px;margin:-30px 0 0 -26px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='60'%3E%3Cpath fill='%23c43382' d='M47.5 27.4a3 3 0 0 1 0 5.2l-43 24.8A3 3 0 0 1 0 54.8V5.2a3 3 0 0 1 4.5-2.6Z'/%3E%3C/svg%3E");background-size:cover;background-repeat:no-repeat;background-position:center;-webkit-animation:pulse 1.5s infinite;animation:pulse 1.5s infinite}.mediabanner__main{padding:30px 35px;background:-webkit-gradient(linear, left top, left bottom, color-stop(55%, #462769), color-stop(235%, #D4007F));background:linear-gradient(180deg, #462769 55%, #D4007F 235%);color:#fff}@media only screen and (min-width: 768px){.mediabanner__main{width:312px;padding:50px 35px}}.mediabanner__label{margin-bottom:24px;font-weight:500;font-size:16px;color:#95C11F}.mediabanner__title{margin-bottom:24px;font-weight:500;font-size:26px}.videocard{position:relative;display:block}.videocard:after{content:"";position:absolute;top:50%;left:50%;width:52px;height:60px;margin:-30px 0 0 -26px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='60'%3E%3Cpath fill='%23c43382' d='M47.5 27.4a3 3 0 0 1 0 5.2l-43 24.8A3 3 0 0 1 0 54.8V5.2a3 3 0 0 1 4.5-2.6Z'/%3E%3C/svg%3E");background-size:cover;background-repeat:no-repeat;background-position:center;-webkit-animation:pulse 1.5s infinite;animation:pulse 1.5s infinite}.videocard img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 768px){.action-cards__grid{display:-webkit-box;display:-ms-flexbox;display:flex}}.action-cards__cell{padding:30px 35px;-webkit-box-shadow:0 10px 20px rgba(5,7,9,0.082);box-shadow:0 10px 20px rgba(5,7,9,0.082);background:-webkit-gradient(linear, left top, left bottom, from(#f7f9fd), to(#fff));background:linear-gradient(180deg, #f7f9fd 0%, #fff 100%);color:#462769;border-radius:6px 6px 0 0}@media only screen and (min-width: 768px){.action-cards__cell{padding:60px 50px 75px;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;border-radius:6px 0 0 6px}}.action-cards__cell:last-child{color:#fff;background:-webkit-gradient(linear, left top, left bottom, color-stop(55%, #462769), color-stop(235%, #D4007F));background:linear-gradient(180deg, #462769 55%, #D4007F 235%);border-radius:0 0 6px 6px}@media only screen and (min-width: 768px){.action-cards__cell:last-child{border-radius:0 6px 6px 0}}.action-cards__label{margin-bottom:10px;font-weight:500;font-size:12px;color:#95C11F;line-height:1}@media only screen and (min-width: 768px){.action-cards__label{margin-bottom:12px;font-size:16px}}.action-cards__title{margin-bottom:25px;font-weight:500;font-size:26px;line-height:1}@media only screen and (min-width: 768px){.action-cards__title{margin-bottom:30px}}.action-cards__action{margin-top:25px}@media only screen and (min-width: 768px){.action-cards__action{margin-top:55px}}.action-cards__action .btn{min-width:226px}@media only screen and (min-width: 768px){.action-cards__action .btn{min-width:191px}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive .table{min-width:800px}.table th,.table td{text-align:left}.table thead th{padding:12px 12px;font-weight:500;font-size:12px;line-height:18px;color:#522B80}.table.rowspan-2 tbody tr:nth-child(4n+1),.table.rowspan-2 tbody tr:nth-child(4n+2){background-color:rgba(82,43,128,0.03)}.table.rowspan-3 tbody tr:nth-child(6n+1),.table.rowspan-3 tbody tr:nth-child(6n+2),.table.rowspan-3 tbody tr:nth-child(6n+3){background-color:rgba(82,43,128,0.03)}.table.rowspan-4 tbody tr:nth-child(8n+1),.table.rowspan-4 tbody tr:nth-child(8n+2),.table.rowspan-4 tbody tr:nth-child(8n+3),.table.rowspan-4 tbody tr:nth-child(8n+4){background-color:rgba(82,43,128,0.03)}.table:not([class*="rowspan"]) tbody tr:nth-child(2n){background-color:rgba(82,43,128,0.03)}.table tbody td[rowspan]{vertical-align:middle}.table tbody th,.table tbody td{padding:18px 12px;border-top:1px solid #dbe1ec}.table tbody th>:not(:first-child),.table tbody td>:not(:first-child){margin-top:1em}.table tbody th:first-child,.table tbody td:first-child{position:sticky;left:0}.table tbody th:first-child:before,.table tbody td:first-child:before{content:'';position:absolute;top:1px;right:0;bottom:1px;left:0;-webkit-backdrop-filter:blur(500px);backdrop-filter:blur(500px);z-index:-1}@media only screen and (min-width: 1024px){.table tbody th:first-child,.table tbody td:first-child{position:static}}.table tbody th{width:250px;font-weight:500;font-size:16px}.balancetable__thead{display:none}@media only screen and (min-width: 768px){.balancetable__thead{display:-webkit-box;display:-ms-flexbox;display:flex}}@media only screen and (min-width: 768px){.balancetable__th,.balancetable__cell{width:25%;text-align:center}.balancetable__th:first-child,.balancetable__cell:first-child{text-align:left}.balancetable__th:last-child,.balancetable__cell:last-child{text-align:right}}.balancetable__th{font-weight:500;font-size:12px;color:#522B80;margin-bottom:12px}.balancetable__row{border-top:1px solid #dbe1ec}@media only screen and (min-width: 768px){.balancetable__row{display:-webkit-box;display:-ms-flexbox;display:flex}}.balancetable__cell{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px 0;font-weight:normal;font-size:15px}@media only screen and (min-width: 768px){.balancetable__cell{display:block}}.balancetable__label{font-weight:500;font-size:12px;color:#522B80}@media only screen and (min-width: 768px){.balancetable__label{display:none}}.balancetable__action{margin-top:15px}.balancetable__action .btn{color:#fff}.balancetable__action .btn svg{margin-right:13px}.balancetable__select{min-width:85px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;padding-right:15px;padding-bottom:5px;border-bottom:1px solid #95C11F;color:#050709;font-size:15px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.5' height='6.2'%3E%3Cpath fill='%23c43382' d='M5.3 6.2 0 .9 1 0l4.3 4.3L9.6 0l.9 1Z'/%3E%3C/svg%3E");background-position:100% 50%;background-repeat:no-repeat;cursor:pointer}.balancetable__input-container{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:95px}.balancetable__input-container:before{content:attr(data-symbol);position:absolute;top:2px;left:0;line-height:1}.balancetable__input{width:100%;padding-left:8px;padding-bottom:5px;border-bottom:1px solid #95C11F;font-size:15px}.datatable{margin:45px -18px}@media only screen and (min-width: 1024px){.datatable{margin:45px 0}}@media only screen and (min-width: 1024px){.datatable__table{padding:20px 20px 30px;border-radius:4px;border:1px solid #e8eef6}}@media only screen and (min-width: 1024px){.datatable__thead,.datatable__row{display:-webkit-box;display:-ms-flexbox;display:flex}}.datatable__th,.datatable__cell{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 18px}@media only screen and (min-width: 1024px){.datatable__th,.datatable__cell{padding:10px 20px}}.datatable__th:nth-child(2),.datatable__th:nth-child(4),.datatable__cell:nth-child(2),.datatable__cell:nth-child(4){color:#522B80}.datatable__th:nth-child(3),.datatable__th:nth-child(5),.datatable__cell:nth-child(3),.datatable__cell:nth-child(5){color:#D4007F}.datatable__th:last-child,.datatable__cell:last-child{-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media only screen and (min-width: 1024px){.datatable__th,.datatable__cell{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:0;-ms-flex:0 0 calc(100% / 8);flex:0 0 calc(100% / 8);padding:10px}.datatable__th:nth-child(5),.datatable__cell:nth-child(5){-webkit-box-flex:0;-ms-flex:0 0 140px;flex:0 0 140px;margin-left:auto}}.datatable__th svg path,.datatable__cell svg path{stroke:#522B80}.datatable__thead{display:none;border-bottom:2px solid #dbe1ec}@media only screen and (min-width: 1024px){.datatable__thead{display:-webkit-box;display:-ms-flexbox;display:flex}}.datatable__th{font-weight:500;font-size:12px;line-height:18px;color:#522B80}.datatable__th small{font-size:10px}.datatable__th:nth-child(1){text-transform:uppercase}.datatable__row{background-color:#f2f6fc}.datatable__row+.datatable__row{margin-top:8px}@media only screen and (min-width: 1024px){.datatable__row{padding:10px 0;background-color:transparent}.datatable__row+.datatable__row{margin-top:0}.datatable__row:nth-child(2n+1){padding:0;background-color:#f2f6fc;border-radius:3px}}.datatable__cell{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:15px}.datatable__cell+.datatable__cell{border-top:1px solid #e0e0e0}@media only screen and (min-width: 1024px){.datatable__cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.datatable__cell+.datatable__cell{border-top:none}}.datatable__cell:nth-child(1) .datatable__data,.datatable__cell:nth-child(2) .datatable__data,.datatable__cell:nth-child(3) .datatable__data,.datatable__cell:nth-child(4) .datatable__data,.datatable__cell:nth-child(5) .datatable__data{font-weight:500;font-size:18px}@media only screen and (min-width: 1024px){.datatable__label{display:none}}.datatable.mortgagerates{margin:0}@media only screen and (min-width: 1024px){.datatable.mortgagerates .datatable__cell,.datatable.mortgagerates .datatable__th{-webkit-box-flex:0;-ms-flex:0 0 calc(100% / 6);flex:0 0 calc(100% / 6)}}.datalist__section+.datalist__section{margin-top:20px}@media only screen and (min-width: 768px){.datalist__section{display:-webkit-box;display:-ms-flexbox;display:flex}}.datalist__title{-webkit-box-flex:0;-ms-flex:0 0 280px;flex:0 0 280px;font-weight:300;color:#D4007F}@media only screen and (min-width: 768px){.datalist__title{-webkit-box-flex:0;-ms-flex:0 0 280px;flex:0 0 280px;padding-right:50px}}.datalist__content{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto}.datalist__text>:not(:first-child){margin-top:1em}.datalist__text a{text-decoration:underline}.datalist__text a:hover{text-decoration:none}.datalist__text ul{list-style-type:disc;margin-left:1em}.datalist__action{margin-top:20px}.datalist__action .btn{min-width:226px}.hero{overflow:hidden;position:relative;color:#fff}.hero:after{content:"";position:absolute;top:0;left:0;width:100%;height:292px;background:-webkit-gradient(linear, left top, left bottom, from(#462769), to(transparent));background:linear-gradient(#462769, transparent);display:none}@media only screen and (min-width: 768px){.hero:after{display:block}}@media only screen and (min-width: 768px){.hero{margin-top:-80px}.hero+.hero{margin-top:0}}.hero .h1{color:currentColor;margin-bottom:20px}.hero .container{z-index:4;position:relative;display:block;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-height:auto;padding:192px 24px 132px}@media only screen and (min-width: 768px){.hero .container{display:-webkit-box;display:-ms-flexbox;display:flex;min-height:768px;padding:192px 40px 46px}}.hero__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:480px;margin:0 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}@media only screen and (min-width: 768px){.hero__content{max-width:640px;width:60%;margin:0 80px 0 0;text-align:left;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}}.hero__content .page-header__menu{margin-top:auto}.hero__content .page-header__search{margin-top:20px}.hero__label{margin-bottom:18px;font-weight:500;font-size:14px;line-height:1;text-transform:uppercase;color:#95C11F}.hero__text,.hero__list{max-width:524px;margin:0 auto}@media only screen and (min-width: 768px){.hero__text,.hero__list{margin:0}}.hero__text{font-size:18px;line-height:1.666}.hero__text>:not(:first-child){margin-top:1em}.hero__list{margin-top:1em}.hero__list ul{list-style:none;text-align:left}.hero__list ul li{position:relative;margin-bottom:12px;padding-left:34px}.hero__list ul li:before{content:"";position:absolute;top:7px;left:0;width:14px;height:8px;border:solid #95C11F;border-width:3px 3px 0 0;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.hero__action{margin:40px 0 0}@media only screen and (min-width: 768px){.hero__action{margin-bottom:40px}}.hero__pilot{display:none;max-width:470px;margin-top:auto}@media only screen and (min-width: 768px){.hero__pilot{display:block}}.hero__timing{max-width:334px;margin:30px auto 0}@media only screen and (min-width: 768px){.hero__timing{-webkit-box-flex:0;-ms-flex:0 0 334px;flex:0 0 334px;max-width:100%}}.hero__timing-box{padding:32px;background:white;border-radius:3px;-webkit-box-shadow:0px 3px 3px rgba(0,0,0,0.16);box-shadow:0px 3px 3px rgba(0,0,0,0.16);font-size:18px;color:#462769}.hero__timing-title{margin-bottom:10px;font-weight:500}.hero__timing-subtitle{font-weight:300}.hero__timing-select{min-width:160px;height:48px;margin-bottom:30px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpolygon fill='%23C43382' fill-rule='evenodd' points='8 9.713 0 1.713 1.433 .28 8 6.88 14.567 .313 16 1.747 8 9.713'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:100% 50%;background-size:16px 10px;border:solid #D4007F;border-width:0 0 2px;-webkit-appearance:none;-moz-appearance:none;appearance:none;font-size:30px;font-weight:700;color:#D4007F;vertical-align:top;cursor:pointer}.hero__timing-percentage{margin-top:10px;font-weight:700;font-size:60px;line-height:1}.hero__timing-percentage sup{font-size:34px}.hero__timing-hint{margin-top:14px;font-weight:200;font-size:13px}.hero__timing-logo{width:68px;margin:16px auto 0}@media only screen and (min-width: 768px){.hero__timing-logo{width:92px;margin:70px auto 0}}.hero__logo{position:absolute;right:calc(50vw - 34px);bottom:2px;width:68px}@media only screen and (min-width: 768px){.hero__logo{right:34px;bottom:40px;width:84px}}.hero__picture{position:relative}.hero__picture:before{content:"";position:absolute;inset:0;background:linear-gradient(212.69deg, #c22a7d .55%, #422860 54.55%);background-blend-mode:screen;mix-blend-mode:screen;opacity:0.67}.hero__picture img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.hero__preview{position:absolute;top:0;right:0;width:calc(50% - 80px);height:100%;background:linear-gradient(-148deg, #c43382, #422860);width:100%;height:47vw;min-height:220px}@media only screen and (min-width: 768px){.hero__preview{width:calc(50% - 80px);height:100%;min-height:1px}}.hero__background{overflow:hidden;position:absolute;top:160px;left:0;bottom:76px;width:100%;height:auto}@media only screen and (min-width: 768px){.hero__background{top:0;left:0;bottom:auto;width:calc(50vw + 200px);height:100%}}.hero__background:before,.hero__background:after{content:"";position:absolute;top:0;height:1500px;background:-webkit-gradient(linear, left top, left bottom, from(#462769), to(#522b7f));background:linear-gradient(#462769, #522b7f)}@media only screen and (min-width: 768px){.hero__background:before,.hero__background:after{top:calc(50% - 750px)}}.hero__background:before{left:0;right:750px;display:none}@media only screen and (min-width: 768px){.hero__background:before{display:block}}.hero__background:after{right:calc(50% - 480px);width:960px;height:960px;border-radius:50% 50% 0 0}@media only screen and (min-width: 768px){.hero__background:after{right:0;height:1500px;width:1500px;border-radius:0 50% 50% 0}}.hero--alt .container{padding:40px 24px 16px}@media only screen and (min-width: 768px){.hero--alt .container{padding:192px 40px 46px}}.hero--alt .hero__background{top:0;bottom:232px}.hero--alt .hero__background:after{top:auto;bottom:0;border-radius:0 0 50% 50%}@media only screen and (min-width: 768px){.hero--alt .hero__background{position:absolute;top:0;left:0;width:calc(50vw + 250px);height:100%;overflow:hidden;bottom:auto}.hero--alt .hero__background:after{border-radius:0 50% 50% 0;top:calc(50% - 750px)}}@media only screen and (min-width: 1024px){.hero--alt .hero__background{width:calc(50vw + 380px)}}.hero--alt .hero__preview{display:none}@media only screen and (min-width: 768px){.hero--alt .hero__preview{display:block}}.promo{margin-top:50px;margin-bottom:50px;position:relative;padding-top:270px}@media only screen and (min-width: 768px){.promo{margin-top:125px;margin-bottom:0;padding-top:0}}@media only screen and (min-width: 768px){.promo .container{min-height:522px}}.promo--has-card .container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}@media only screen and (min-width: 768px){.promo--has-card .container{padding-top:100px;padding-bottom:100px;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.promo__cover{position:absolute;inset:0;bottom:auto;height:100vh;max-height:400px;clip-path:url(#polygonPromo)}.promo__cover:before{content:"";position:absolute;inset:0;background:linear-gradient(212.69deg, #C22A7D .55%, #422860 54.55%);mix-blend-mode:screen;opacity:0.33}@media only screen and (min-width: 768px){.promo__cover{inset:0;height:auto;max-height:100%}}.promo__pic img{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.promo__content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media only screen and (min-width: 768px){.promo__content{display:block}}.promo__units{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;margin-top:-5px;margin-left:-5px}@media only screen and (min-width: 768px){.promo__units{top:-54px}}.promo__units:not(.wide){max-width:462px}.promo__unit{display:-webkit-box;display:-ms-flexbox;display:flex;width:calc(50% - 5px);min-height:222px;margin-top:5px;margin-left:5px;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-color:#462769;color:#fff;border-radius:6px;padding:30px 20px}.promo__unit-title{margin-bottom:20px;font-weight:500;font-size:18px;line-height:24px}@media only screen and (min-width: 768px){.promo__unit-title{margin-bottom:10px;min-height:60px;font-size:20px;line-height:28px}}.promo__unit-text{font-weight:300;font-size:16px;line-height:21px}@media only screen and (min-width: 768px){.promo__unit-text{line-height:28px}}.promo__card{width:300px}.faq{position:relative;padding-top:30px;margin-bottom:60px}@media only screen and (min-width: 768px){.faq{padding:90px 0 0;margin-bottom:110px}}.faq:before{content:"";position:absolute;top:0;left:0;width:100%;height:455px;background-color:#f7f9fd}.faq .container{position:relative}.faq__header{margin-bottom:25px}.faq__text{max-width:718px;margin-bottom:25px;font-size:18px;line-height:calc(30/18)}.faq__search input{display:block;width:100%;height:70px;padding:0 52px;font-weight:500;font-size:20px;color:#522B80;border:1px solid #ededed;-webkit-box-shadow:0px 1px 1px rgba(0,0,0,0.082);box-shadow:0px 1px 1px rgba(0,0,0,0.082);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.7' height='17.7'%3E%3Cpath fill='currentColor' d='m17.5 16.4-5-5a7 7 0 1 0-1 1.1l4.9 5a.8.8 0 0 0 1 0 .8.8 0 0 0 0-1ZM7 12.6A5.5 5.5 0 1 1 11 11a5.5 5.5 0 0 1-4 1.6Z' data-name='Icon ionic-ios-search'/%3E%3C/svg%3E");background-size:17.7px 17.7px;background-position:22px 50%;background-repeat:no-repeat}.faq__search input::-webkit-input-placeholder{color:currentColor}.faq__search input::-moz-placeholder{color:currentColor}.faq__search input:-ms-input-placeholder{color:currentColor}.faq__search input::-ms-input-placeholder{color:currentColor}.faq__search input::placeholder{color:currentColor}.faq__cards{margin-top:40px}.page-header{position:relative;padding:30px 0 20px;color:#fff;background-color:#462769}@media only screen and (min-width: 768px){.page-header{padding:84px 0 20px}}.page-header:before{content:"";position:absolute;inset:0;background:linear-gradient(0.2deg, #C22A7D -81.6%, #331852 30.7%);opacity:0.77}.page-header .container{position:relative}.page-header .h1{color:currentColor}.page-header__text{margin-top:15px;font-size:18px;line-height:calc(30/18)}.page-header__panel{display:block;margin-top:40px}@media only screen and (min-width: 768px){.page-header__panel{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.page-header__menu{overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;scrollbar-width:none;margin-right:-18px}.page-header__menu::-webkit-scrollbar{display:none}@media only screen and (min-width: 768px){.page-header__menu{margin-right:0}}.page-header__menu-list{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 -17px}.page-header__menu-list.partners{-ms-flex-wrap:wrap;flex-wrap:wrap}.page-header__menu-item{padding:0 17px;font-weight:300;font-size:18px}.page-header__menu-link{position:relative;display:block;white-space:nowrap;color:currentColor;padding:8px 0}.page-header__menu-link:before{content:"";position:absolute;left:0;bottom:0;width:0;height:2px;background-color:#95C11F}.page-header__menu-link.is-active:before{width:100%}.page-header__search{margin-top:20px;width:100%;height:49px}@media only screen and (min-width: 768px){.page-header__search{margin-top:0;width:283px}}.page-header__search input{display:block;width:100%;height:100%;border-radius:6px;background-color:rgba(255,255,255,0.14);padding:0 20px 0 45px;font-weight:300;font-size:18px;color:#fff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.7' height='17.7'%3E%3Cpath fill='%23fff' d='m17.5 16.4-5-5a7 7 0 1 0-1 1.1l4.9 5a.8.8 0 0 0 1 0 .8.8 0 0 0 0-1ZM7 12.6A5.5 5.5 0 1 1 11 11a5.5 5.5 0 0 1-4 1.6Z' data-name='Icon ionic-ios-search'/%3E%3C/svg%3E");background-size:17.7px 17.7px;background-position:17px 50%;background-repeat:no-repeat}.page-header__search input::-webkit-input-placeholder{color:currentColor}.page-header__search input::-moz-placeholder{color:currentColor}.page-header__search input:-ms-input-placeholder{color:currentColor}.page-header__search input::-ms-input-placeholder{color:currentColor}.page-header__search input::placeholder{color:currentColor}.breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex}.breadcrumbs li{position:relative;font-weight:500;font-size:14px;color:#462769}.breadcrumbs li:not(:first-child){margin-left:26px}.breadcrumbs li:not(:first-child):before{content:"";position:absolute;top:50%;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);margin-left:-14px;width:5px;height:8px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4.2' height='7.3'%3E%3Cpath d='M3 3.6.1 1a.5.5 0 0 1 0-.7.5.5 0 0 1 .7 0l3.1 3A.5.5 0 0 1 4 4L1 7a.5.5 0 1 1-.7-.7Z' data-name='Icon ionic-ios-arrow-forward'/%3E%3C/svg%3E");background-size:cover;background-repeat:no-repeat}.breadcrumbs li.is-active{color:#95C11F}.breadcrumbs a{color:currentColor}.topper{position:relative;margin:30px 0 60px}.topper .container{position:relative}@media only screen and (min-width: 1024px){.topper .container{padding-top:90px}}.topper .breadcrumbs{margin-bottom:20px}@media only screen and (min-width: 1024px){.topper .breadcrumbs{position:absolute;top:0;margin-bottom:0}}.topper__back{display:none;position:absolute;top:5px;left:38px;width:19px;height:13px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.6' height='12.7'%3E%3Cg fill='none' stroke='%23331852' stroke-linecap='round' stroke-linejoin='round' data-name='Icon feather-arrow-left'%3E%3Cpath d='M18 6.4H.6' data-name='Path 128'/%3E%3Cpath d='M6.2 12 .5 6.4 6.2.7' data-name='Path 129'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;background-size:cover}@media only screen and (min-width: 1100px){.topper__back{display:block}}.content__wrap{max-width:736px}.content ul{list-style:outside disc;margin-left:17px}.content ul.tick{list-style:none;text-align:left}.content ul.tick li{position:relative;margin-bottom:12px;padding-left:34px}.content ul.tick li:before{content:"";position:absolute;top:7px;left:0;width:14px;height:8px;border:solid #95C11F;border-width:3px 3px 0 0;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.content ul.tick li ul{list-style:none}.content ul li ul{margin-bottom:0}.content ol{list-style:decimal;padding:1em}.content ol li{padding-left:1em}.content .purple{color:#462769}.content p,.content ul{margin-bottom:1.5em}.content h2{margin-bottom:.5em}.content h3{margin-bottom:0.5em}.content a{text-decoration:underline}.content p+h2,.content p+h3{margin-top:1.5em}.content.textblock :last-child{margin-bottom:0}.gallery__grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-16px -8px 0}.gallery__cell{width:33.333%;margin-top:16px;padding:0 8px;aspect-ratio:1 / 1}.gallery__pic{display:block;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.article>:not(:first-child){margin-top:30px}.article .videocard,.article iframe,.article .gallery,.article blockquote,.article figure{margin:50px 0}.article iframe{width:100%;aspect-ratio:16/9}.article .gallery{position:relative}.article .gallery .container{padding:0}@media only screen and (min-width: 1024px){.article .gallery{width:100vw;left:50%;margin-left:calc(-50vw + (935px - 736px)/2)}.article .gallery .container{padding:0 34px}}.article .lead{color:#462769}.article ul,.article ol{margin-left:15px}.article ul li,.article ol li{font-weight:500;color:#462769}.article ul{list-style-type:disc}.article ol{list-style-type:decimal}.article blockquote{font-weight:500;font-size:30px;line-height:calc(46/30);color:#522B80}.nformr-form-field{margin-bottom:20px}.nformr-form-field input,.nformr-form-field textarea,.nformr-form-field select{font-size:20px;width:100%;padding:20px 25px;border:1px solid #683d72;border-radius:5px}.nformr-form-field-checks,.nformr-form-field-radios,.nformr-form-field-check{padding:20px;border:1px solid #683d72;border-radius:4px}.nformr-form-field-checks .nformr-checkbox,.nformr-form-field-checks .nformr-radiobutton,.nformr-form-field-radios .nformr-checkbox,.nformr-form-field-radios .nformr-radiobutton,.nformr-form-field-check .nformr-checkbox,.nformr-form-field-check .nformr-radiobutton{display:block;font-size:0.9em}.nformr-form-field-checks .nformr-checkbox:first-child,.nformr-form-field-checks .nformr-radiobutton:first-child,.nformr-form-field-radios .nformr-checkbox:first-child,.nformr-form-field-radios .nformr-radiobutton:first-child,.nformr-form-field-check .nformr-checkbox:first-child,.nformr-form-field-check .nformr-radiobutton:first-child{margin-top:10px}.nformr-form-field-checks .nformr-checkbox:not(:last-child),.nformr-form-field-checks .nformr-radiobutton:not(:last-child),.nformr-form-field-radios .nformr-checkbox:not(:last-child),.nformr-form-field-radios .nformr-radiobutton:not(:last-child),.nformr-form-field-check .nformr-checkbox:not(:last-child),.nformr-form-field-check .nformr-radiobutton:not(:last-child){margin-bottom:15px}.nformr-form-field-checks label,.nformr-form-field-radios label,.nformr-form-field-check label{background-color:rgba(134,159,214,0.3);position:relative;border:1px solid rgba(0,0,0,0.12);border-radius:50px;padding:7px 40px;cursor:pointer;display:inline-block}.nformr-form-field-checks input[type="checkbox"],.nformr-form-field-checks input[type="radio"],.nformr-form-field-radios input[type="checkbox"],.nformr-form-field-radios input[type="radio"],.nformr-form-field-check input[type="checkbox"],.nformr-form-field-check input[type="radio"]{display:none}.nformr-form-field-checks input[type="checkbox"]:checked+label:before,.nformr-form-field-checks input[type="radio"]:checked+label:before,.nformr-form-field-radios input[type="checkbox"]:checked+label:before,.nformr-form-field-radios input[type="radio"]:checked+label:before,.nformr-form-field-check input[type="checkbox"]:checked+label:before,.nformr-form-field-check input[type="radio"]:checked+label:before{background-color:#683d72}.nformr-form-field-checks input[type="checkbox"]+label:before,.nformr-form-field-checks input[type="radio"]+label:before,.nformr-form-field-radios input[type="checkbox"]+label:before,.nformr-form-field-radios input[type="radio"]+label:before,.nformr-form-field-check input[type="checkbox"]+label:before,.nformr-form-field-check input[type="radio"]+label:before{content:"";display:block;position:absolute;top:50%;left:0.3em;width:1.3em;height:1.3em;margin-right:10px;border:2px solid #683d72;background-color:transparent;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:background-color ease 0.3s;transition:background-color ease 0.3s}.nformr-form-field-checks input[type="radio"]+label:before,.nformr-form-field-radios input[type="radio"]+label:before,.nformr-form-field-check input[type="radio"]+label:before{border-radius:50%}.nformr-form-field-checks input[type="checkbox"]+label:before,.nformr-form-field-radios input[type="checkbox"]+label:before,.nformr-form-field-check input[type="checkbox"]+label:before{left:0.5em;border-radius:5px}.nformr-form-field-error{font-size:13px;margin-top:5px;color:#D4007F}.nformr-form-actions button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:62px;padding:0 20px;border:1px solid #D4007F;font-size:20px;font-weight:bold;border-radius:6px;text-decoration:none;color:#fff;background-color:#D4007F}.nformr-form .nformr-form-field-upload a{cursor:pointer;color:#D4007F}.nformr-form .nformr-form-field-upload-button{border:1px solid #683d72;display:block;border-radius:4px;padding:20px;cursor:pointer}.nformr-form .nformr-form-field-upload-button span{font-size:14px;text-transform:uppercase;display:block}.mortgage{padding:20px;border:1px solid #683d72;border-radius:5px;background-color:#f7f9fd}.mortgage-fields{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.mortgage-field{width:100%;margin-bottom:20px}@media only screen and (min-width: 768px){.mortgage-field{width:48%}}.mortgage-field label,.mortgage-field input{display:block;color:#462769}.mortgage-field input,.mortgage-field select{color:#462769;font-size:20px;font-weight:500;width:100%;padding:20px 25px;border:1px solid #683d72;border-radius:5px}.mortgage-result{font-size:35px;font-weight:500;color:#462769;text-align:center;padding:20px;border-bottom:1px solid #683d72}.mortgage-result span{font-size:16px;font-weight:300}.mortgage-terms{margin-top:20px;font-size:12px}.mortgage [data-mask]{position:relative}.mortgage [data-mask]:focus-within:after{display:none}.mortgage [data-mask]:after{content:attr(data-mask);color:#462769;position:absolute;background-color:white;left:25px;top:20px;width:calc(100% - 50px);font-size:20px;font-weight:500;pointer-events:none}.steps{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative;margin:0 auto}.steps .step{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;position:relative;min-width:150px;margin:20px 10px}.steps .step-label{font-size:12px;color:#333;margin-bottom:5px;text-transform:uppercase}.steps .step-number{width:60px;height:60px;background-color:#462769;color:white;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:24px;font-weight:bold;margin:0 auto 10px;position:relative;z-index:1}.steps--alt .step-number{background-color:#95C11F}.steps--alt .step-content strong{color:#522B80}.steps .step-content{padding:10px}.steps .step-content a{text-decoration:underline}.steps .step-content a:hover{text-decoration:none}.steps .step:not(:last-child)::after{content:'';position:absolute;top:53px;left:calc(50% + 60px);width:calc(100% - 100px);height:1px;background-color:#462769;z-index:0}@media (max-width: 600px){.steps{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.steps .step{margin:20px 0}.steps .step:not(:last-child)::after{display:none}}.team-block{font-weight:500;font-size:14px}.team-block__people{display:-webkit-box;display:-ms-flexbox;display:flex;gap:8px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}@media only screen and (min-width: 768px){.team-block__people{gap:24px}}@media only screen and (min-width: 1024px){.team-block__people{-ms-flex-wrap:nowrap;flex-wrap:nowrap}}.team-block__person{-webkit-box-flex:0;-ms-flex:0 1 80px;flex:0 1 80px}@media only screen and (min-width: 480px){.team-block__person{-webkit-box-flex:0;-ms-flex:0 1 120px;flex:0 1 120px}}@media only screen and (min-width: 768px){.team-block__person{-webkit-box-flex:0;-ms-flex:0 1 150px;flex:0 1 150px}}@media only screen and (min-width: 1024px){.team-block__person{-webkit-box-flex:0;-ms-flex:0 1 170px;flex:0 1 170px}}.team-block__person img{border-radius:50%}.team-block__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;gap:32px;margin-top:32px}.team-block__text{max-width:500px;font-weight:400;font-size:16px}.scrolling-cards:not(.is-overflow) .splide__list{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.scrolling-cards:not(.is-overflow) .splide__slide:last-child{margin:0 !important}.scrolling-card{width:300px;height:500px;position:relative;border-radius:6px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.scrolling-card:has(.scrolling-card__link:hover,.scrolling-card__link:focus-visible) .scrolling-card__content{margin-bottom:24px}.scrolling-card__media{position:absolute;inset:0;width:100%;height:100%}.scrolling-card__media:after{content:'';position:absolute;inset:0;background:linear-gradient(179.96deg, rgba(11,2,24,0) .03%, rgba(11,2,24,0.8) 99.97%);z-index:1}.scrolling-card__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.scrolling-card__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:10px;position:relative;z-index:1;color:#fff;padding:24px;margin-bottom:0;-webkit-transition-property:margin-bottom;transition-property:margin-bottom;-webkit-transition-duration:400ms;transition-duration:400ms}.scrolling-card__content h3{font-weight:500;font-size:36px;line-height:1}.scrolling-card__link{position:absolute;inset:0;z-index:2}.scrolling-hero .hero{height:100%}@media only screen and (min-width: 768px){.scrolling-hero .hero{height:-webkit-fill-available;height:-moz-available;height:stretch}}.scrolling-hero .splide__progress__bar{height:3px;background:#ccc}.scrolling-hero .splide__toggle{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:white;border-radius:50%;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;height:1.8rem;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:background-color .2s ease;transition:background-color .2s ease;width:1.8rem}.scrolling-hero .splide__toggle svg{fill:#683d72;height:46%;-webkit-transition:fill .2s ease;transition:fill .2s ease;width:46%}.scrolling-hero .splide__controls{position:absolute;bottom:100px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media only screen and (min-width: 768px){.scrolling-hero .splide__controls{bottom:16px}}.scrolling-hero .splide__pagination{position:static}.key-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;border-radius:4px}@media only screen and (min-width: 768px){.key-features{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}}.key-features__content{background-color:#f7f9fd;padding:40px 48px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:32px;border-radius:0 0 4px 4px}@media only screen and (min-width: 768px){.key-features__content{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;border-radius:4px 0 0 4px}}@media only screen and (min-width: 1024px){.key-features__content{padding:40px 60px}}.key-features__media{height:300px}@media only screen and (min-width: 768px){.key-features__media{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;height:unset}}.key-features__media img{height:100%;width:100%;-o-object-fit:cover;object-fit:cover;border-radius:4px 4px 0 0}@media only screen and (min-width: 768px){.key-features__media img{border-radius:0 4px 4px 0}}.key-features__item{position:relative}.key-features__item::before{content:"";position:absolute;left:-36px;top:0;width:24px;height:24px;display:block;-webkit-mask-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZWNrLWljb24gbHVjaWRlLWNoZWNrIj48cGF0aCBkPSJNMjAgNiA5IDE3bC01LTUiLz48L3N2Zz4=");mask-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZWNrLWljb24gbHVjaWRlLWNoZWNrIj48cGF0aCBkPSJNMjAgNiA5IDE3bC01LTUiLz48L3N2Zz4=");background-color:#D4007F}.key-features__title{color:#522B80;font-weight:500;font-size:24px;line-height:1;margin-bottom:8px}.key-features__text a{font-weight:500;text-decoration:underline;color:black;-webkit-transition-property:color;transition-property:color;-webkit-transition-duration:300ms;transition-duration:300ms}.key-features__text a:hover,.key-features__text a:focus-visible{color:#D4007F}@font-face{font-family:"geomanist";src:url("/public/fonts/geomanist-light-webfont.woff2") format("woff2"),url("/public/fonts/geomanist-light-webfont.woff") format("woff");font-weight:200;font-style:normal}@font-face{font-family:"geomanist";src:url("/public/fonts/geomanist-book-webfont.woff2") format("woff2"),url("/public/fonts/geomanist-book-webfont.woff") format("woff");font-weight:300;font-style:normal}@font-face{font-family:"geomanist";src:url("/public/fonts/geomanist-regular-webfont.woff2") format("woff2"),url("/public/fonts/geomanist-regular-webfont.woff") format("woff");font-weight:400;font-style:normal}@font-face{font-family:"geomanist";src:url("/public/fonts/geomanist-medium-webfont.woff2") format("woff2"),url("/public/fonts/geomanist-medium-webfont.woff") format("woff");font-weight:500;font-style:normal}@font-face{font-family:"geomanist";src:url("/public/fonts/geomanist-bold-webfont.woff2") format("woff2"),url("/public/fonts/geomanist-bold-webfont.woff") format("woff");font-weight:700;font-style:normal}@-webkit-keyframes pulse{0%{-webkit-transform:scale(0.9);transform:scale(0.9)}70%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.9);transform:scale(0.9)}}@keyframes pulse{0%{-webkit-transform:scale(0.9);transform:scale(0.9)}70%{-webkit-transform:scale(1);transform:scale(1)}100%{-webkit-transform:scale(0.9);transform:scale(0.9)}}html{background-color:#462769}body{font-family:"geomanist", sans-serif;font-size:16px;line-height:calc(26/16);color:#050709;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.is-scroll-lock{overflow:hidden;position:fixed;width:100vw;height:100vh;margin:0}button,input,textarea,select{font-family:"geomanist", sans-serif}a{color:#050709;text-decoration:none}a:focus-visible{outline:1px solid #D4007F;outline-offset:2px}button{background:none}button:focus-visible{outline:1px solid #D4007F;outline-offset:2px}img,svg{display:block;max-width:100%}h1,h2,h3,h4,h5,h6{font-weight:400}sup{vertical-align:super}select{background-color:transparent}.usp-link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#462769}.promo__unit .usp-link{color:white;margin-top:10px}html.is-scroll-lock{overflow:hidden}.printpage{text-align:right}@media only screen and (min-width: 768px){.printpage{margin:20px 0 0}}@media print{.printpage{display:none}}.sitewide-banner{background-color:white;padding:30px}.sitewide-banner a:not(.btn){color:#D4007F}@media only screen and (min-width: 1024px){.flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:20px}}.disclaimer{font-size:18px;text-align:center}html{font-size:14.5px !important;margin:0;padding:0}html.nobg{background-color:transparent}html .pdf{width:100%;margin:0 auto;padding:0 30px}html .pdf .h2,html .pdf .h3{font-weight:500}html .pdf .h2 a,html .pdf .h3 a{color:#522B80}html .pdf .h2{font-size:1.5rem}html .pdf p,html .pdf ul,html .pdf li,html .pdf span,html .pdf td,html .pdf th{font-size:1rem}html .pdf-head{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px;background-color:#522B80;padding:10px}html .pdf-head svg{width:300px}html .pdf-head svg path.b{fill:#522B80}html .pdf-head svg path.w{fill:white}html .pdf-head h1{text-align:right;color:white;font-size:3rem}html .pdf-body table{width:100%;table-layout:fixed;margin-bottom:20px}html .pdf-body table thead tr th .h2{text-transform:uppercase}html .pdf-body table tr{page-break-inside:avoid}html .pdf-body table th,html .pdf-body table td{padding:10px 15px;border-bottom:1px solid #522B80}html .pdf-body table th.bg,html .pdf-body table th.bgp,html .pdf-body table td.bg,html .pdf-body table td.bgp{color:white;text-align:center;font-weight:500;font-size:1.25rem;border-color:white}html .pdf-body table th.bg.tlr,html .pdf-body table th.bgp.tlr,html .pdf-body table td.bg.tlr,html .pdf-body table td.bgp.tlr{border-top-left-radius:15px}html .pdf-body table th.bg.trr,html .pdf-body table th.bgp.trr,html .pdf-body table td.bg.trr,html .pdf-body table td.bgp.trr{border-top-right-radius:15px}html .pdf-body table th.bg .h2,html .pdf-body table th.bgp .h2,html .pdf-body table td.bg .h2,html .pdf-body table td.bgp .h2{color:white}html .pdf-body table th.bg,html .pdf-body table td.bg{background-color:#522B80}html .pdf-body table th.bgp,html .pdf-body table td.bgp{background-color:#D4007F}html .pdf-body table th.big,html .pdf-body table td.big{font-size:2rem;font-weight:600;text-align:center}html .pdf-body table th.nbb,html .pdf-body table td.nbb{border-bottom:none}html .pdf-body table th:not(:last-child),html .pdf-body table td:not(:last-child){border-right:1px solid #522B80}html .pdf-body table tbody td span{color:#522B80;text-transform:uppercase;font-weight:500;display:block}html .pdf-body .table-foot{page-break-inside:avoid}html .pdf-section{page-break-inside:avoid;margin-bottom:30px}html .pdf-section:first-child{margin-top:50px}html .pdf-section h2.pdf-section-head{background-color:#522B80;padding:20px;color:white;text-transform:uppercase;font-weight:500;margin-bottom:20px;font-size:1.2rem;border-top-right-radius:15px;border-top-left-radius:15px}html .pdf-section .content{padding:0 20px}html .pdf-foot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;page-break-inside:avoid;padding-top:30px;border-top:1px solid #522B80}html .pdf-foot-sec{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}html .pdf-foot-sec:last-child{text-align:right}html .pdf-foot-copy{margin-top:10px;padding:10px;background-color:#522B80}html .pdf-foot-copy p{font-size:0.75rem;text-align:justify;color:white}

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}

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