 
/* ------------------------------------------------------------ *\
  Vendor
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  SCSS Functions
\* ------------------------------------------------------------ */
/* example usage*/
/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Sprite
\* ------------------------------------------------------------ */
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
 
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/slick-carousel/slick/ajax-loader.gif') center center no-repeat;
}
/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick-carousel/slick/fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('../images/slick-carousel/slick/fonts/slick.svg') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}
.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}
.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}
/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}
.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
* {
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}
template {
  display: none;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}
img,
iframe,
video,
audio,
object {
  max-width: 100%;
}
img,
iframe {
  border: 0 none;
}
img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}
b,
strong {
  font-weight: bold;
}
address {
  font-style: normal;
}
svg:not(:root) {
  overflow: hidden;
}
a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}
a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}
textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
button,
select {
  text-transform: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
nav ul,
nav ol {
  list-style: none outside none;
}
input::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
input::placeholder {
  color: inherit;
  opacity: 1;
}
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
textarea::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}
textarea::placeholder {
  color: inherit;
  opacity: 1;
}
input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type=text],
input[type=button],
input[type=tel],
input[type=email],
input[type=submit],
input[type=date],
input[type=search],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
/* ------------------------------------------------------------ *\
    Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: "NeueHaasGroteskDisp Pro";
  src: url("../fonts/NHaasGroteskDSPro-75Bd.woff2") format("woff2"), url("../fonts/NHaasGroteskDSPro-75Bd.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueHaasGroteskDisp Pro Lt";
  src: url("../fonts/NHaasGroteskDSPro-45Lt.woff2") format("woff2"), url("../fonts/NHaasGroteskDSPro-45Lt.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueHaasGroteskText Pro Md";
  src: url("../fonts/NHaasGroteskTXPro-65Md.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-65Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueHaasGroteskText Pro";
  src: url("../fonts/NHaasGroteskTXPro-55Rg.woff2") format("woff2"), url("../fonts/NHaasGroteskTXPro-55Rg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Warnock Pro";
  src: url("../fonts/WarnockPro-Regular.woff2") format("woff2"), url("../fonts/WarnockPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Warnock Pro";
  src: url("../fonts/WarnockPro-Semibold.woff2") format("woff2"), url("../fonts/WarnockPro-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  min-width: 320px;
  background: #fff;
  font-family: "NeueHaasGroteskText Pro", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #004750;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  body.is-fixed {
    overflow: hidden;
  }
}
a {
  color: inherit;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
}
a[href^=tel] {
  text-decoration: none;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  margin-bottom: calc(2.4remem / 2);
}
.h1,
h1 {
  font-family: "Warnock Pro", Georgia, serif;
  font-weight: 600;
}
p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: 2.4remem;
}
h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}
/* ------------------------------------------------------------ *\
  Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
  content: "";
  line-height: 0;
  display: table;
  clear: both;
}
/* sr-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*  Notext  */
.notext {
  white-space: nowrap;
  text-indent: 100%;
  text-shadow: none;
  overflow: hidden;
}
.notext-old {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
}
/*  Hidden  */
[hidden],
.hidden {
  display: none;
}
/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}
/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-tb-inline-flex {
  display: none !important;
}



@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 1023px) {
  .visible-tb-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/*  Img Responsive  */
.img-responsive {
  width: 100%;
  height: auto;
}
/*  Img Responsive  */
.text-center {
  text-align: center;
}
/*  Img Responsive  */
.text-center {
  text-align: center;
}
/*  Align center  */
.align-center {
  margin: 0 auto;
}
/*  Valid center  */
.valid {
  background-color: #e3f1ef !important;
}
/*  Align center  */
.error {
  border-color: red !important;
  color: #ff0000 !important;
}
.error::-webkit-input-placeholder {
  color: red !important;
}
.error::-moz-placeholder {
  color: red !important;
}
.error:-ms-input-placeholder {
  color: red !important;
}
.error::-ms-input-placeholder {
  color: red !important;
}
.error::placeholder {
  color: red !important;
}
/* ------------------------------------------------------------ *\
	Components
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Accordion
\* ------------------------------------------------------------ */
.accordion .accordion__section {
  border-top: 0.1rem solid #004750;
}
.accordion .accordion__section.is-expanded .accordion__head i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion .accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.2rem 0 2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__head {
    padding: 2.4rem 0 1.8rem;
  }
}
.accordion .accordion__head h5 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
  letter-spacing: 0.012em;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.accordion .accordion__head i {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  height: 2.4rem;
}
.accordion .accordion__entry {
  padding-top: 0.4rem;
}
.accordion .accordion__entry:last-child {
  padding-bottom: 4.8rem;
}
.accordion .accordion__entry + .accordion__entry {
  margin-top: 2rem;
}
.accordion .accordion__entry h6 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-weight: normal;
}
/* ------------------------------------------------------------ *\
	Account Details
\* ------------------------------------------------------------ */
.account-details {
  padding: 3.4rem 0 3rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-top: 0.1rem solid #004750;
}
.account-details .account__head {
  margin-bottom: 0.8rem;
}
.account-details .account__head h4 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.account-details .account__body {
  position: relative;
}
.account-details .account__body address {
  line-height: 2;
  margin-top: -0.5rem;
}
.account-details .account__body ul {
  list-style: none;
}
.account-details .account__controls .btn {
  margin-top: 2.3rem;
}
.account-details .account__controls .btn {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
}
.account-details .account__actions {
  position: absolute;
  top: 0;
  right: 0;
}
.account-details .account__actions a + a {
  margin-left: 1rem;
}
.account-details + .account-details {
  padding-bottom: 2.8rem;
}
.account-details + .account-details:last-child {
  border-bottom: 0.1rem solid #004750;
  padding-bottom: 3.1rem;
}
/* ------------------------------------------------------------ *\
	Account
\* ------------------------------------------------------------ */
.account .account__image {
  display: inline-block;
  text-align: left;
  margin-bottom: 1.6rem;
}
.account .account__image figure {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #c82660;
  overflow: hidden;
  color: #fff;
  margin-bottom: 1.4rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .account .account__image figure {
    margin-bottom: 1.1rem;
  }
}
.account .account__image span {
  font-size: 4.8rem;
  line-height: 1.08;
}
.account .account__image .lnk {
  display: block;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.14;
  font-family: "NeueHaasGroteskText Pro", Helvetica, sans-serif;
}
.account .account__image .lnk:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.account .account__content {
  font-size: 2rem;
  line-height: 1.4;
  position: relative;
}
.account .account__content h2 {
  font-size: 3.2rem;
  line-height: 1.13;
  font-weight: 400;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  margin-bottom: 1.1rem;
}
.account .account__content p + p {
  margin-top: 0.8rem;
}
.account .account__content .account__actions {
  position: absolute;
  top: 0.5rem;
  right: 0;
}
/* ------------------------------------------------------------ *\
	Alert
\* ------------------------------------------------------------ */
.alert {
  text-align: center;
  padding: 5.5rem 0 0;
}
@media (max-width: 1023px) {
  .alert {
    padding-top: 9.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .alert {
    padding-top: 5rem;
  }
}
.alert .alert__head {
  margin-bottom: 1.6rem;
}
.alert .alert__head h2 {
  font-size: 3.2rem;
  line-height: 1.13;
}
@media (max-width: 1023px) {
  .alert .alert__head h2 {
    font-size: 3rem;
  }
}
.alert .alert__actions {
  margin-top: 3.2rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.alert .alert__actions .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.alert .alert__actions .btn + .btn {
  margin-left: 1.6rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .alert .alert__actions .btn + .btn {
    margin-left: 0;
    margin-top: 1.6rem;
  }
}
/* ------------------------------------------------------------ *\
    Book Box
\* ------------------------------------------------------------ */
.book-box {
  width: 100%;
  height: 50rem;
  background: #fff;
  padding: 2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 2.1rem;
}
@media (max-width: 1199px) {
  .book-box {
    height: 100%;
    padding: 0;
  }
}
.book-box h2 {
  font-family: "Warnock Pro", Georgia, serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.4rem;
  letter-spacing: -0.12rem;
  margin-bottom: 3.6rem;
  position: relative;
}
@media (max-width: 1199px) {
  .book-box h2 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
.book-box h2:after {
  content: "";
  background: #004750;
  height: 0.4rem;
  width: 9.4rem;
  position: absolute;
  bottom: -1.9rem;
  left: 0;
}
.book-box h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  margin-bottom: 2.3rem;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-weight: normal;
}
.book-box p {
  margin-bottom: 2.4rem;
}
.book-box .book-box__image,
.book-box .book-box__body {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
@media (max-width: 1199px) {
  .book-box .book-box__image,
.book-box .book-box__body {
    min-width: 100%;
  }
}
.book-box .book-box__body {
  overflow-y: auto;
  max-height: 50rem;
  padding: 0.3rem 0.9rem 0 1.3rem;
}
@media (max-width: 1199px) {
  .book-box .book-box__body {
    padding: 5rem 0 0 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .book-box .book-box__body {
    padding: 0 0;
    max-height: inherit;
  }
}
.book-box .book-box__image {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1.5rem;
}
@media (max-width: 1199px) {
  .book-box .book-box__image {
    margin: 0 -1.1rem;
    padding-top: 8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .book-box .book-box__image {
    padding-top: 8.3rem;
    margin: 0 0 3.5rem 0;
  }
}
.book-box .book-box__image img {
  margin: 0 auto;
}
.book-box .book-box__actions {
  padding-top: 0.7rem;
}
.book-box .book-gallery {
  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;
  max-width: 30.4rem;
  margin: 2.4rem auto 0;
}
.book-box .book-gallery figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0.8;
}
.book-box--alt {
  padding: 0;
  margin-right: -3.2rem;
  width: unset;
}
@media (max-width: 1199px) {
  .book-box--alt {
    margin-right: 0;
  }
}
.book-box--alt .book-box__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  padding: 0.1rem 1.8rem 0 0;
}
@media (max-width: 1023px) {
  .book-box--alt .book-box__body {
    padding: 0;
  }
}
.book-box--alt h3:first-of-type {
  margin-bottom: 0.4rem;
}
.book-box--alt h3 {
  margin-bottom: 1.6rem;
}
.book-box--alt .book-box__body > p {
  padding-right: 1.4rem;
}
@media (max-width: 1023px) {
  .book-box--alt .book-box__body > p {
    padding-right: 0;
  }
}
@media (max-width: 1023px) {
  .book-box--alt .book-box__image {
    padding-top: 10rem;
    width: 100%;
    margin: 0 0 4.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .book-box--alt .book-box__image {
    padding-top: 8.3rem;
    margin-bottom: 3.5rem;
  }
}
.book-box--alt .book-box__body .rating {
  margin-bottom: 2.1rem;
}
.book-box--alt .book-box__body .list-book-info {
  margin-bottom: 2.4rem;
}
.book-box--alt .book-box__body .list-theme {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .book-box--alt .book-box__body .list-theme {
    margin-bottom: 2.3rem;
  }
}
.book-box--alt .book-box__body .accordion__head {
  padding: 2.3rem 0 2.1rem;
}
.book-box--alt .book-box__actions {
  padding-top: 0;
  margin-bottom: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .book-box--alt .book-box__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .book-box--alt .book-box__actions .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.book-box--alt .book-box__actions .btn + .btn {
  margin-left: 1.2rem;
}
@media (max-width: 1023px) {
  .book-box--alt .book-box__actions .btn + .btn {
    margin-left: 1.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .book-box--alt .book-box__actions .btn + .btn {
    margin-left: 0;
    margin-top: 1.4rem;
  }
}
/* ------------------------------------------------------------ *\
	Bookshelf
\* ------------------------------------------------------------ */
.bookshelf {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 0.1rem solid #ff6fa3;
  background-color: #c82660;
}
@media (max-width: 1023px) {
  .bookshelf .shell {
    height: 100%;
  }
}
.bookshelf .bookshelf__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;
  font-size: 2rem;
  line-height: 1.4;
  padding: 1.6rem 0;
}
.bookshelf .bookshelf__trigger {
  font-size: 1.6rem;
  line-height: 1.5;
  text-decoration: none;
}
.bookshelf .bookshelf__body {
  padding: 3.2rem 0 2.9rem;
  position: relative;
}
@media (max-width: 1023px) {
  .bookshelf .bookshelf__body {
    padding: 3.2rem 0 2.9rem;
    height: 100%;
  }
}
.bookshelf .bookshelf__body:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 calc((100vw - (100% - 5.5rem)) / -2);
  background-color: #fff;
}
.bookshelf .bookshelf__body .library {
  position: relative;
  color: #004750;
  overflow-y: scroll;
}
@media (max-width: 1023px) {
  .bookshelf .bookshelf__body .library {
    margin: 0 -1.2rem 0;
    height: 100%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library {
    margin: 0 -0.8rem;
  }
}
.bookshelf .bookshelf__body .library__body > p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -0.2rem;
}
@media (max-width: 1023px) {
  .bookshelf .bookshelf__body .library__body > p {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3.6rem;
    padding: 0 1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body > p {
    text-align: left;
    margin-bottom: 0.5rem;
    padding: 0 0.8rem;
  }
}
.bookshelf .bookshelf__body .library__body > p i {
  margin-left: 1rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body > p i {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.4rem;
            flex: 0 0 2.4rem;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (max-width: 1023px) {
  .bookshelf .bookshelf__body .library__body .library-book {
    padding: 0 1.2rem 0.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body .library-book {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.6rem 0;
  }
}
@media (max-width: 1023px) {
  .bookshelf .bookshelf__body .library__body-inner .library-book .library__image {
    max-height: unset;
    height: unset;
    min-height: 23.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body-inner .library-book .library__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    min-height: 22.3rem;
    margin: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body-inner .library-book .library__image figure {
    padding-bottom: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body-inner .library-book .library__image span {
    bottom: auto;
    left: auto;
  }
}
.bookshelf .library-book .library__content {
  padding: 0.4rem 0 1.8rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .library-book .library__content .lnk i {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .bookshelf .bookshelf__body .library__body-inner .library-book .library__content {
    padding: 0.4rem 0 1.8rem;
  }
}
@media (max-width: 1023px) {
  .bookshelf.is-active {
    z-index: 100;
  }
}
@media (max-width: 1023px) {
  .bookshelf.is-active {
    top: 0;
  }
}
.is-fixed .bookshelf {
  position: absolute;
}
/* ------------------------------------------------------------ *\
    Breadcrumbs
\* ------------------------------------------------------------ */
.breadcrumbs {
  width: 100%;
  padding: 2.4rem 0 0 0;
  font-size: 1.4rem;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.breadcrumbs li {
  display: inline;
  position: relative;
}
.breadcrumbs li:not(:first-child) {
  margin-left: 2rem;
}
.breadcrumbs li:not(:first-child):after {
  content: "/";
  position: absolute;
  height: 1.6rem;
  width: 0.2rem;
  left: -1.6rem;
  top: -0.3rem;
}
.breadcrumbs li.is-current {
  color: #666666;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #52a192;
}
/* ------------------------------------------------------------ *\
	Button
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0.2rem solid transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  color: #004750;
}
/*  Btn block  */
.btn--block {
  display: block;
  padding-left: 0;
  padding-right: 0;
}
/*  Btn primary  */
.btn--primary {
  padding: 1.3rem 2.4rem;
  border-color: #004750;
  background: transparent;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-weight: bold;
  font-size:18px;
}
.btn--primary:hover {
  background: #e3f1ef;
}
.btn--primary:active {
  background: #bfe9e1;
}
.btn--primary:disabled {
  border-color: #dddddd;
  color: #dddddd;
}
/*  Btn secondary  */
.btn--secondary {
  padding: 1.3rem 1.8rem 1.3rem 2.4rem;
  background: #004750;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
}
.btn--secondary i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  right: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.btn--secondary i svg {
  fill: white;
}
.btn--secondary:hover {
  color: #004750;
  background: #e3f1ef;
  border-color: #004750;
}
.btn--secondary:hover i {
  right: -0.3rem;
}
.btn--secondary:hover i svg {
  fill: #004750;
}
/*  Btn icon inline  */
.btn--icon-inline i {
  width: 2.4rem;
  height: 2.4rem;
}
/*  Btn right arrow  */
.btn--right-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1.1rem;
}
/*  Btn right arrow  */
.btn--left-icon i {
  margin-right: 1rem;
}
@media (max-width: 1023px) {
  .btn--left-icon i {
    margin-right: 0.8rem;
  }
}
/* Btn primary white */
.btn--primary-white {
  border-color: #fff;
  font-weight: 400;
}
/* Btn flex */
.btn--flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.3rem 2.4rem 1.3rem 1.7rem;
}
/* Btn tertiary */
.btn--tertiary {
  background-color: #004750;
  border: 0.1rem solid #004750;
  font-size: 2rem;
  line-height: 1.4;
  padding: 0.7rem 1.7rem;
  border-radius: 0.6rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .btn--tertiary {
    padding: 0.7rem 1.6rem;
  }
}
.btn--tertiary:hover {
  background-color: #fff;
}
/* size 1 */
.btn--size-1 {
  padding: 1.1rem 2.4rem;
}
.btn--size-2 {
  padding: 1.5rem 5.2rem;
}
.btn--size-3 {
  padding: 1.5rem 4.8rem;
}
/* btn small */
.btn--small {
  padding: 0.2rem 1.6rem 0.2rem 0.6rem;
}
@media (max-width: 1023px) {
  .btn--small {
    padding: 0.2rem 1.8rem 0.2rem 0.6rem;
  }
}
/* ------------------------------------------------------------ *\
    Callout
\* ------------------------------------------------------------ */
.callout {
  position: relative;
  padding: 22.6rem 0 7.9rem 3.2rem;
  background: #fcfcfc;
}
@media (max-width: 1199px) {
  .callout {
    padding: 24.3rem 0 4.9rem 2.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .callout {
    padding: 24.3rem 0 8.3rem 2.4rem;
  }
}
.callout h4 {
  font-family: "NeueHaasGroteskDisp Pro", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 4rem;
  line-height: 4.4rem;
  max-width: 39rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1199px) {
  .callout h4 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
.callout .callout__content {
  max-width: 95%;
}
.callout .callout__image img {
  position: absolute;
  right: 0;
  top: 8rem;
  max-width: 22.4rem;
}
@media (max-width: 1199px) {
  .callout .callout__image img {
    max-width: 17.4rem;
    max-height: 18rem;
    top: 5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .callout .callout__image img {
    top: 4.8rem;
  }
}
.callout .callout__actions a {
  margin-top: 1.5rem;
}
/* ------------------------------------------------------------ *\
	Categories
\* ------------------------------------------------------------ */
.categories {
  position: relative;
  padding: 4.8rem 0 10.9rem;
}
@media (max-width: 1023px) {
  .categories {
    padding: 4.8rem 1.3rem 4.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .categories {
    padding: 3.3rem 0 3.3rem;
  }
}
.categories:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: #004750;
  margin: 0 calc((100vw - (100% - 5.5rem)) / -2);
}
.categories .grid {
  position: relative;
}
@media (max-width: 1023px) {
  .categories .grid {
    margin-bottom: -4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .categories .grid {
    margin-bottom: -2.4rem;
  }
}
@media (max-width: 1023px) {
  .categories .grid .grid__col {
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .categories .grid .grid__col {
    padding-bottom: 2.4rem;
    min-width: unset;
  }
}
@media (max-width: 1023px) {
  .categories .grid .grid__col--2of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .categories .grid .grid__col--2of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding-bottom: 3.2rem;
  }
}
@media (max-width: 1023px) {
  .categories .grid .grid__col--4of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .categories .grid .grid__col--4of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.categories .categories__content h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  font-weight: 400;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
/* ------------------------------------------------------------ *\
	Checkbox
\* ------------------------------------------------------------ */
.checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.checkbox input[type=checkbox] ~ label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.checkbox input[type=checkbox] ~ label:before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 2.4rem;
  width: 2.4rem;
  border: 0.1rem solid #004750;
  margin: 0 0.8rem 0 0;
}
.checkbox input[type=checkbox]:checked ~ label:before {
  background-color: #004750;
}
.checkbox--alt input[type=checkbox] ~ label:before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1.8rem;
  width: 1.8rem;
  border: 0;
  margin: 0 0.8rem 0 0;
}
.checkbox--white input[type=checkbox] ~ label:before {
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border: 0.2rem solid #fff;
}
.checkbox--white input[type=checkbox]:checked ~ label:before {
  background-color: #004750;
}
/* ------------------------------------------------------------ *\
	Checkboxes
\* ------------------------------------------------------------ */
.checkboxes {
  padding-top: 0.2rem;
}
.checkboxes ul {
  list-style: none;
}
.checkboxes li + li {
  margin-top: 1.6rem;
}
.checkboxes--alt {
  padding-top: 0;
}
.checkboxes--alt li + li {
  margin-top: 1.6rem;
}
.checkboxes--col-count-2 ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .checkboxes--col-count-2 ul {
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
  }
}
/* ------------------------------------------------------------ *\
	copyright
\* ------------------------------------------------------------ */
.copyright {
  float: left;
  margin-bottom: 1.6rem;
  letter-spacing: 0.017rem;
}
@media (max-width: 1199px) {
  .copyright {
    float: inherit;
    margin: 3.2rem 0;
  }
}
/* ------------------------------------------------------------ *\
	Fields
\* ------------------------------------------------------------ */
/*  Field textarea  */
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
  padding: 9.7rem 0 9rem 0;
  background: #004750;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
@media (max-width: 1199px) {
  .footer {
    padding: 6.5rem 0 8rem 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .footer {
    padding: 5rem 0 8rem 0;
    text-align: center;
  }
}
.footer--relative {
  position: relative;
}
.footer--md {
  padding-bottom: 15.6rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer--md {
    padding-bottom: 13.2rem;
  }
}
/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form {
  background-color: #fcfcfc;
  -webkit-box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
  padding: 0 3.2rem 6.4rem;
  border-radius: 0.4rem;
}
@media (max-width: 1023px) {
  .form {
    padding-bottom: 4.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form {
    padding: 0 2.4rem 4.8rem;
  }
}
.form .form__head {
  padding: 3.2rem 0 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  position: relative;
  margin-bottom: 3.2rem;
}
@media (max-width: 543px) {
  .form .form__head {
    gap: 1.8rem;
  }
}
.form .form__head:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #bfe9e1;
}
.form .form__head > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}
.form .form__head a {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.14;
  position: relative;
  padding: 1.3rem 0 1.2rem;
  text-decoration: none;
}
.form .form__head a:hover:after {
  background-color: rgba(0, 71, 80, 0.7);
}
.form .form__head a.is-current:hover,
.form .form__head a .is-current:active {
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.form .form__head a.is-current:after {
  background-color: #004750;
}
.form .form__head a:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: transparent;
}
.form .form__row + .form__row {
  margin-top: 3rem;
}
.form .form__row h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.014em;
  margin-bottom: 1.2rem;
}
.form .form__label {
  display: block;
  margin-bottom: 0.9rem;
}
.form .form__controls {
  max-width: 30.4rem;
  width: 100%;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form .form__controls {
    max-width: 100%;
  }
}
.form .form__controls input[type=number] {
  width: 100%;
  outline: none;
  border-color: transparent;
  background-color: transparent;
  border: none;
  padding: 1.2rem 0.6rem;
  border-bottom: 0.1rem solid #004750;
  border-radius: 0;
}
.form .form__controls input[type=number]::-webkit-input-placeholder {
  color: #666666;
}
.form .form__controls input[type=number]::-moz-placeholder {
  color: #666666;
}
.form .form__controls input[type=number]:-ms-input-placeholder {
  color: #666666;
}
.form .form__controls input[type=number]::-ms-input-placeholder {
  color: #666666;
}
.form .form__controls input[type=number]::placeholder {
  color: #666666;
}
.form .form__actions {
  margin-top: 3rem;
  text-align: right;
}
.form--alt {
  padding-top: 3.2rem;
}
@media (max-width: 1023px) {
  .form--alt {
    padding: 5.1rem 3.2rem 4.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt {
    padding: 3.1rem 2.4rem 4.8rem;
  }
}
.form--alt .form__row + .form__row {
  margin-top: 1.5rem;
}
.form--alt .form__row:last-child {
  margin-top: 3rem;
}
.form--alt .form__controls {
  max-width: 100%;
}
.form--alt .form__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--alt .form__cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.form--alt .form__field,
.form--alt .form__select select {
  width: 100%;
  height: 4.5rem;
}
.form--alt .form__textarea {
  width: 100%;
  border-radius: 0;
  border-color: #004750;
  resize: none;
  height: 19.2rem;
  padding: 1.2rem;
}
.form--alt .form__textarea::-webkit-input-placeholder {
  color: #666666;
}
.form--alt .form__textarea::-moz-placeholder {
  color: #666666;
}
.form--alt .form__textarea:-ms-input-placeholder {
  color: #666666;
}
.form--alt .form__textarea::-ms-input-placeholder {
  color: #666666;
}
.form--alt .form__textarea::placeholder {
  color: #666666;
}
.form--alt .form__label {
  margin-bottom: 1.2rem;
}
.form--alt .form__label--textarea {
  margin-bottom: 0.9rem;
}
.form--alt .form__notice {
  font-size: 1.4rem;
  line-height: 1.14;
  color: #666666;
}
.form--alt .form__field {
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 0.1rem solid #004750;
  padding: 1.2rem 0.6rem;
}
.form--alt .form__select select {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 0.1rem solid #004750;
  padding: 1.2rem 0.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/svg/ico-chevron-down.svg) no-repeat;
  background-position: right 0.8rem center;
  background-size: 2.4rem 2.4rem;
}
.form--alt .form__select select::-ms-expand {
  display: none;
}
.form--alt .form__select select.error {
  background-image: url(../images/svg/ico-chevron-down-red.svg);
}
.form--alt .form__actions {
  margin-top: 3.2rem;
}
.form--alt .form__btn {
  padding: 1.6rem 2.3rem;
}
/* Form Contact */
.form--contact .form__actions {
  margin-top: 2.6rem;
}
.form--contact .form__row:last-child {
  margin-top: 3.2rem;
}
@media (max-width: 1023px) {
  .form--copy {
    padding: 4.9rem 3.2rem 4.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--copy {
    padding: 4.9rem 2.4rem 4.8rem;
  }
}
.form--copy .form__head {
  padding-top: 3.4rem;
  margin-bottom: 3.2rem;
  background-color: transparent;
}
@media (max-width: 1023px) {
  .form--copy .form__head {
    padding-top: 0;
  }
}
.form--copy .form__head:after {
  display: none;
}
.form--copy .form__link {
  display: inline-block;
}
.form--copy .form__row + .form__row {
  margin-top: 1.7rem;
}
.form--copy .form__row + .form__link {
  margin-top: 1.6rem;
}
.form--copy .form__head h2 {
  font-size: 3.2rem;
  line-height: 1.13;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.form--copy .form__label {
  margin-bottom: 1rem;
}
.form--copy .form__actions-bar {
  margin-top: 3.2rem;
  text-align: left;
}
.form--copy .form__row.valid {
  background-color: transparent !important;
}
.form--copy .form__row.valid .form__controls {
  position: relative;
}
.form--copy .form__row.valid .form__controls:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -0.2rem;
  right: 1.3rem;
  width: 2.4rem;
  height: 2.4rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../images/svg/ico-check.svg");
  background-position: center center;
  background-size: 2.4rem 2.4rem;
  background-repeat: no-repeat;
}
.form--copy .form__row.disabled {
  pointer-events: none;
}
.form--copy .form__row.disabled .form__label {
  color: #dddddd;
}
.form--copy .form__row.disabled .form__field {
  border-color: #bfe9e1;
}
.form--copy .form__btn.disabled {
  pointer-events: none;
  background-color: #dddddd;
}
.form--copy--size-1 .form__head h2 {
  letter-spacing: 0.01em;
}
.form--copy-alt {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
.form--copy-alt .btn,
.form--copy-alt .form__btn {
  font-size: 1.2rem;
  line-height: 1.17;
  padding: 0.8rem 1.2rem;
  background-color: #004750;
  color: #fff;
  font-weight: 400;
  font-family: "NeueHaasGroteskDisp Pro", Helvetica, sans-serif;
}
.form--copy-alt .form__btn--white {
  border: 0.1rem solid #004750;
  color: #004750;
  background-color: #fff;
}
.form--copy-alt .form__actions .form__btn + .form__btn {
  margin-left: 0.4rem;
}
.form--copy-size-1 .form__head {
  display: block;
  text-align: center;
  padding-top: 6.8rem;
}
.form--copy-size-1 .form__head h2 {
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.form--copy-size-1 .form__btn {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  padding: 1.6rem 2.3rem;
}
.form--copy-size-1 .form__field {
  background-color: #fcfcfc;
}
@media (max-width: 1023px) {
  .form--copy-tablet {
    padding-top: 8.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form--copy-tablet {
    padding-top: 6rem;
  }
}
@media (max-width: 1023px) {
  .form--copy-tablet .form__head {
    padding-top: 0;
    margin-bottom: 3.2rem;
  }
}
.form--copy-tablet .form__head h2 {
  margin-bottom: 1.6rem;
  font-size: 3rem;
}
@media (max-width: 1023px) {
  .form--copy-tablet .form__row--tablet .form__cols {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}
/* ------------------------------------------------------------ *\
  Grid
\* ------------------------------------------------------------ */
.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -1.6rem;
  /*  Grid col */
  /* justify end  */
  /* justify end  */
  /*  Grid col full width */
  /*  Grid col 1of12  */
  /*  Grid col 2of12  */
  /*  Grid col 3of12  */
  /*  Grid col 4of12  */
  /*  Grid col 5of12  */
  /*  Grid col 6of12  */
  /*  Grid col 7of12  */
  /*  Grid col 8of12  */
  /*  Grid col 9of12  */
  /*  Grid col 10of12  */
  /*  Grid col 11of12  */
  /*  Grid col 12of12  */
  /*  Grid col 4to5  */
  /*  Grid col 8to7  */
}
@media (max-width: 1023px) {
  .grid {
    margin: 0 -1.6rem;
  }
}
@media (max-width: 959px) {
  .grid {
    margin: 0 -1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .grid {
    margin: 0 -0.8rem;
  }
}
@media (max-width: 543px) {
  .grid {
    margin: 0 -0.575rem;
  }
}
.grid .grid__col {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  padding: 0 1.6rem;
}
@media (max-width: 1023px) {
  .grid .grid__col {
    padding: 0 1.6rem;
  }
}
@media (max-width: 959px) {
  .grid .grid__col {
    padding: 0 1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .grid .grid__col {
    min-width: 100%;
    padding: 0 0.8rem;
  }
}
@media (max-width: 543px) {
  .grid .grid__col {
    padding: 0 0.575rem;
  }
}
.grid .grid__col--justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1023px) {
  .grid .grid__col--order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 1023px) {
  .grid .grid__col--full-size {
    min-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.grid .grid__col--1of12 {
  max-width: 8.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33%;
          flex: 0 0 8.33%;
}
.grid .grid__col--2of12 {
  max-width: 16.66%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66%;
          flex: 0 0 16.66%;
}
.grid .grid__col--3of12 {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
.grid .grid__col--4of12 {
  max-width: 33.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
}
.grid .grid__col--5of12 {
  max-width: 41.66%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66%;
          flex: 0 0 41.66%;
}
.grid .grid__col--6of12 {
  max-width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.grid .grid__col--7of12 {
  max-width: 58.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33%;
          flex: 0 0 58.33%;
}
.grid .grid__col--8of12 {
  max-width: 66.66%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66%;
          flex: 0 0 66.66%;
}
.grid .grid__col--9of12 {
  max-width: 75%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
}
.grid .grid__col--10of12 {
  max-width: 83.33%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33%;
          flex: 0 0 83.33%;
}
.grid .grid__col--11of12 {
  max-width: 91.66%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66%;
          flex: 0 0 91.66%;
}
.grid .grid__col--12of12 {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (max-width: 1023px) {
  .grid .grid__col--4to5 {
    max-width: 41.66%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66%;
            flex: 0 0 41.66%;
  }
}
@media (max-width: 1023px) {
  .grid .grid__col--8to7 {
    max-width: 58.33%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33%;
            flex: 0 0 58.33%;
  }
}
/*  Grid align center  */
.grid--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/*  Grid justify end  */
.grid--justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
/*  Grid col full width */
@media (max-width: 1023px) {
  .grid--full .grid__col {
    min-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
/*  Grid col half */
@media (max-width: 1023px) {
  .grid--half .grid__col {
    min-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .grid--half .grid__col {
    min-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
.header {
  position: relative;
  width: 100%;
}
.header .header__shell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header__bar {
  z-index: 50;
  width: 82%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 993px)  {
    .nav-toggle {
        display: block;
    }
  .header .header__bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    font-size: 2rem;
    line-height: 2.4rem;
    width: 100%;
    height: 100%;
    z-index: 50;
    position: fixed;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: #bfe9e1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    overflow-y: scroll;
    overflow-x: hidden;
    color: #004750;
    padding: 0 2.4rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media (max-width: 374px) {
  .header .header__bar {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.header.is-fixed {
  z-index: 10;
  -webkit-box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.5);
  background: #fff;
  opacity: 0.95;
  position: fixed;
  top: 0;
}
@media (max-width: 1023px) {
  .header.is-fixed .nav-toggle span {
    background: #004750;
  }
}
.header.is-fixed .logo {
  max-width: 8rem;
  padding-bottom: 0.4rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .header.is-fixed .logo {
    max-width: 7rem;
  }
}
.header.is-fixed .nav {
  padding: 0 0 0.75rem 0;
  color: #004750;
}
.header.is-fixed .nav-secondary {
  padding: 1rem 0 0.75rem 0;
  color: #004750;
}
@media (max-width: 1023px) {
  .header.is-active {
    opacity: 1;
  }
}
.header.is-active .logo {
  max-width: 14rem;
}
.header.is-active .header__bar {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
/* Header white text*/
.header--white {
  color: #fff;
}
.header--white .nav-toggle span {
  background: #fff;
}
.header--white .nav-toggle.is-active span {
  background: #004750;
}
.header--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
/* ------------------------------------------------------------ *\
    Hero
\* ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 91.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8rem 0 0 0;
}
@media (max-width: 1199px) {
  .hero {
    padding: 5.6rem 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .hero {
    padding: 4.5rem 0;
  }
}
.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  background: #bfe9e1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5000rem;
  z-index: -1;
}
.hero h1 {
  font-size: 7.8rem;
  line-height: 8rem;
  letter-spacing: -0.26rem;
  position: relative;
  margin-bottom: 5rem;
}
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 6rem;
    line-height: 6.2rem;
    letter-spacing: -0.2rem;
  }
}
.hero h1:after {
  content: "";
  background: #c82660;
  height: 0.4rem;
  width: 9.4rem;
  position: absolute;
  bottom: -2.6rem;
  left: 0;
}
.hero .hero__content {
  padding: 16.1% 18.5% 0 0;
}
@media (max-width: 1199px) {
  .hero .hero__content {
    padding: 0 0 3.5rem 0;
  }
}
.hero .hero__actions a {
  margin: 2.3rem 1rem 0 0;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .hero .hero__actions a {
    width: 100%;
    margin: 2.3rem 1rem -0.8rem 0;
  }
}
.hero .hero__images {
  text-align: right;
  margin-top: -6.7rem;
}
@media (max-width: 1199px) {
  .hero .hero__images {
    margin-top: 2.7rem;
    margin-bottom: -1.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .hero .hero__images {
    margin-top: 0rem;
    /*DELETE PERMANENT CODE*/
    margin-bottom: -3.6rem;
  }
}
/* ------------------------------------------------------------ *\
	Icons
\* ------------------------------------------------------------ */
.ico-linkedin {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-linkedin.svg) no-repeat center center;
}
.ico-linkedin:hover {
  background-image: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-linkedin-hover.svg);
}
.ico-linkedin-2 {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-linkedin-2.svg) no-repeat center center;
}
.ico-facebook {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-facebook.svg) no-repeat center center;
}
.ico-facebook:hover {
  background-image: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-facebook-hover.svg);
}
.ico-instagram {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-instagram.svg) no-repeat center center;
}
.ico-instagram:hover {
  background-image: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-instagram-hover.svg);
}
.ico-youtube {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-youtube.svg) no-repeat center center;
}
.ico-youtube:hover {
  background-image: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-youtube-hover.svg);
}
.ico-twitter {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-twitter.svg) no-repeat center center;
}
.ico-twitter:hover {
  background-image: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-twitter-hover.svg);
}
.ico-arrow-right {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-arrow-right.svg) no-repeat center center;
}
.ico-arrow-right-white {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-arrow-right-white.svg) no-repeat center center;
}
.ico-arrow-light {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-arrow-light.svg) no-repeat center center;
}
.ico-envelope {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-envelope.svg) no-repeat center center;
  display: inline-block;
  width: 1.8rem;
  height: 1.4rem;
}
.ico-plus {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-plus.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-plus--small {
  width: 1.2rem;
  height: 1.2rem;
}
.ico-star {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-star.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-star--small {
  width: 1.2rem;
  height: 1.2rem;
}
.ico-search {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-search.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-search--darkgreen {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-search-darkgreen.svg) no-repeat center center;
}
.ico-categories {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-categories.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-book-shelf {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-book-shelf.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.8rem;
}
.ico-slider-left {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-slider-left.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 3.4rem;
  height: 3.4rem;
}
.ico-slider-right {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-slider-right.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 3.4rem;
  height: 3.4rem;
}
.ico-edit {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-edit.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-close {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-close.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-questionmark {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-questionmark.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 2.4rem;
  height: 2.4rem;
}
.ico-check-no-bg {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-check-no-bg.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 1.6rem;
  height: 1.6rem;
}
.ico-minus {
  background: url(http://htmlbox.net/91/425afc34/r3dd0d37-a081a8f9/build/assets/images/svg/ico-minus.svg) no-repeat center center;
  display: inline-block;
  font-size: 0;
  width: 1.6rem;
  height: 1.6rem;
}
/* ------------------------------------------------------------ *\
    İnfo
\* ------------------------------------------------------------ */
.info {
  padding: 6.4rem 0 2.4rem 0;
}
@media (max-width: 1199px) {
  .info {
    padding: 5.2rem 0 0 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info {
    padding: 3.1rem 0 0 0;
  }
}
.info h2 {
  font-size: 3.2rem;
  line-height: 3.6rem;
  font-weight: normal;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info h2 {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}
.info h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: normal;
  margin-bottom: 2.3rem;
}
.info h4 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin: 4rem 0 1.6rem;
  font-weight: normal;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info h4 {
    margin: 2.9rem 0 1.6rem rem;
  }
}
@media (max-width: 1199px) {
  .info .info__content {
    margin-bottom: 4rem;
  }
}
.info .info__content p {
  margin-bottom: 2.3rem;
}
.info .info__content img {
  margin-top: 4rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info .info__content img {
    margin-top: 3.9rem;
    margin-bottom: 2.4rem;
  }
}
.info .info__content h4 {
  margin: 3.4rem 0 0.8rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info .info__content h4 {
    margin: 2.6rem 0 0.8rem;
  }
}
@media (max-width: 1199px) {
  .info .info__actions {
    margin-top: 4.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info .info__actions {
    margin-top: 3.1rem;
  }
}
/* Info color coral */
.info--coral {
  color: #fff;
  background: #c82660;
}
/* Info style 2 */
.info--style-2 {
  padding: 6.4rem 0 6.1rem 0;
  position: relative;
}
@media (max-width: 1199px) {
  .info--style-2 {
    padding: 5.2rem 0 0 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info--style-2 {
    padding: 2.5rem 0 0 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info__content {
    margin-bottom: 3.5rem;
  }
}
.info__content p {
  margin-bottom: 2.8rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info__content h4 {
    margin: -0.6rem 0 0.6rem;
  }
}
.info__actions {
  margin-top: -0.8rem;
}
/* Info style 3 */
@media (max-width: 1023px) {
  .info--style-3 {
    padding: 4.5rem 0 0 0;
  }
  .info--style-3 .info__content p {
    margin-bottom: 2.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .info--style-3 {
    padding: 3.2rem 0 0 0;
  }
}
/* ------------------------------------------------------------ *\
	Legal
\* ------------------------------------------------------------ */
.legal {
  display: block;
  width: 100%;
  float: left;
}
/* ------------------------------------------------------------ *\
	Library Book
\* ------------------------------------------------------------ */
.library-book {
  position: relative;
}
.library-book:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0 -1.2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
}
.library-book .library__image {
  min-height: 33rem;
  max-height: 34rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 1441px) {
  .library-book .library__image {
    min-height: 36rem;
    max-height: unset;
  }
}
@media (max-width: 1199px) {
  .library-book .library__image {
    max-height: 33rem;
    min-height: 33rem;
  }
}
.library-book .library__image figure {
  width: 100%;
  position: relative;
}
.library-book .library__image span {
  position: absolute;
  top: 0.1rem;
  right: 0;
  background-color: #3c7750;
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  line-height: 1.17;
}
.library-book .library__image img {
  width: 100%;
  height: auto;
}
.library-book .library__content {
  position: relative;
  padding: 0.8rem 0;
  font-size: 1.2rem;
  line-height: 1.17;
}
.library-book .library__content h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  margin-bottom: 1.7rem;
}
.library-book .library__content .lnk {
  width: 100%;
}
.library-book .library__content .lnk + .lnk {
  margin-top: 0.8rem;
}
/* ------------------------------------------------------------ *\
	library
\* ------------------------------------------------------------ */
.library .library__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: 1.7rem;
}
.library .library__head h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
}
@media (max-width: 1023px) {
  .library .library__head h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__head span.mobile-hidden {
    display: none;
  }
}
.library .library__head--tablet {
  display: none;
}
@media (max-width: 1023px) {
  .library .library__head--tablet {
    display: block;
    margin-bottom: 2.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__head--tablet {
    margin-bottom: 3.3rem;
  }
}
.library .library__head--tablet h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
}
@media (max-width: 1023px) {
  .library .library__head--tablet h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__head--tablet h2 {
    max-width: 36rem;
  }
}
.library .library__filter {
  position: relative;
  padding: 4.8rem 0 4rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-bottom: 3.2rem;
}
@media (max-width: 1023px) {
  .library .library__filter {
    margin-top: 3rem;
    margin-bottom: 7.2rem;
    padding: 3.1rem 1.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter {
    padding: 3.2rem 0;
    margin-bottom: 6.4rem;
  }
}
.library .library__filter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0 calc((100vw - (100% - 5.5rem)) / -2);
  background-color: #004750;
}
.library .library__filter .grid {
  position: relative;
}
@media (max-width: 1023px) {
  .library .library__filter .grid {
    margin-bottom: -2.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter .grid {
    margin-bottom: -3.2rem;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .grid .grid__col {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter .grid .grid__col {
    min-width: unset;
    padding-bottom: 3.2rem;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .grid .grid__col--2of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter .grid .grid__col--2of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .grid .filter__col--tablet {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .grid .grid__col--4of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66%;
            flex: 0 0 66.66%;
    max-width: 66.66%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter .grid .grid__col--4of12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1.1rem 3.2rem;
  }
}
.library .library__filter .checkboxes--col-count-2 {
  margin-right: -2rem;
}
@media (max-width: 1023px) {
  .library .library__filter .checkboxes--col-count-2 {
    margin-right: -1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__filter .checkboxes--col-count-2 {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .btn--block {
    font-size: 1.6rem;
  }
}
@media (max-width: 1023px) {
  .library .library__filter .btn--size-1 {
    padding: 1.9rem 2.4rem;
  }
}
.library .library__filter .radios {
  margin-bottom: 3.1rem;
}
.library .library__filter h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  margin-bottom: 1.6rem;
}
.library .library__body .slider--carousel {
  margin: 0 calc((100vw - (100% - 6.4rem)) / -2);
}
@media (max-width: 1023px) {
  .library .library__body .slider--carousel {
    margin: 0 calc((100vw - (100% - 2.3rem)) / -2);
  }
}
.library .library__body-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -0.4rem -6.7rem;
}
@media (max-width: 1023px) {
  .library .library__body-inner {
    margin: 0 0 -5.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner {
    margin: 0 0 -2.4rem;
  }
}
.library .library__body-inner .library-book {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
  padding: 0 1.2rem 6.7rem;
}
@media (max-width: 1023px) {
  .library .library__body-inner .library-book {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: calc(100% / 3);
        flex-basis: calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0 1.2rem 5.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library-book {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.library .library__body-inner .library-book:before {
  display: none;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library-book .library__image {
    min-height: unset;
    max-height: unset;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 34.8%;
            flex: 0 0 34.8%;
    max-width: 34.8%;
    margin-right: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library-book .library__image figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library-book .library__image span {
    top: auto;
    bottom: 0;
    left: 0;
    text-align: center;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library-book .library__content {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .library .library__body-inner .library-book:nth-child(n+13) {
    display: none;
  }
}
.library .library__body-inner .library__donation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
  padding: 0 1.2rem 6.7rem;
}
@media (max-width: 1023px) {
  .library .library__body-inner .library__donation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66%;
            flex: 0 0 66.66%;
    max-width: 66.66%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__body-inner .library__donation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
    padding: 0 0.8rem 6.7rem;
  }
}
.library .library__donation {
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.17;
}
@media (max-width: 1023px) {
  .library .library__donation .library__donation-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0.7rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__donation .library__donation-content {
    padding-right: 0;
    margin-top: 1rem;
  }
}
.library .library__donation h2 {
  font-size: 3.2rem;
  line-height: 1.13;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "NeueHaasGroteskDisp Pro", Helvetica, sans-serif;
}
@media (max-width: 1023px) {
  .library .library__donation h2 {
    margin-bottom: 1.6rem;
  }
}
.library .library__donation h2 a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.library .library__donation h2 a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.library .library__donation figure {
  max-width: 90.5%;
  margin-top: 4.4rem;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .library .library__donation figure {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__donation figure {
    margin-top: 0.5rem;
  }
}
.library .library__donation figure img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__donation figure img {
    display: block;
    max-width: 94%;
    margin-left: auto;
  }
}
.library .library__donation p {
  padding-right: 1rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__donation p {
    padding-right: 0;
    margin-right: -2rem;
  }
}
.library .library__actions {
  margin-top: 7.2rem;
  text-align: center;
}
@media (min-width: 1441px) {
  .library .library__actions {
    margin-top: 14rem;
  }
}
@media (max-width: 1023px) {
  .library .library__actions {
    margin-top: 2.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__actions {
    margin-top: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .library .library__actions .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.library .library__toggle {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.library.is-active .library__toggle {
  color: #bfe9e1;
}
/* ------------------------------------------------------------ *\
	List Book Info
\* ------------------------------------------------------------ */
.list-book-info {
  list-style: none;
  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;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.14;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-book-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.list-book-info li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
}
@media (max-width: 1023px) {
  .list-book-info li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31%;
            flex: 0 0 31%;
    max-width: 31%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-book-info li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-book-info li + li {
    margin-top: 2.4rem;
  }
}
.list-book-info a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  background-color: #e3f1ef;
  padding: 1.6rem;
  border-radius: 0.4rem;
}
.list-book-info h6 {
  font-size: 1.4rem;
  line-height: 1.14;
  font-weight: 400;
  margin-bottom: 1.6rem;
}
.list-book-info p {
  margin-bottom: 0;
}
/* ------------------------------------------------------------ *\
    List info
\* ------------------------------------------------------------ */
.list-info {
  list-style: none;
}
.list-info li {
  margin-bottom: 1.2rem;
}
/* ------------------------------------------------------------ *\
	List Links
\* ------------------------------------------------------------ */
.list-links {
  list-style: none;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-links li {
    padding-right: 0.5rem;
  }
}
.list-links li + li {
  margin-top: 1.6rem;
}
.list-links a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.list-links a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: currentColor;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.list-links li:hover a:after {
  opacity: 1;
}
.list-links--col-count-2 {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
/* ------------------------------------------------------------ *\
	List Theme
\* ------------------------------------------------------------ */
.list-theme {
  list-style: none;
  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;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-theme {
    margin: 0 -0.8rem -0.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-theme li {
    padding: 0 0.8rem 0.8rem;
  }
}
.list-theme li + li {
  margin-left: 1.6rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-theme li + li {
    margin-left: 0;
  }
}
.list-theme a {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  background-color: #e3f1ef;
  border-radius: 2rem;
}
/* ------------------------------------------------------------ *\
	Link
\* ------------------------------------------------------------ */
.lnk {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/*  lnk primary  */
.lnk--primary {
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.lnk--primary:hover {
  text-decoration: underline;
}
.lnk--primary:disabled {
  color: #dddddd;
}
.lnk--primary i {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
}
/*  lnk secondary  */
.lnk--secondary {
  text-decoration: underline;
}
.lnk--secondary:hover {
  background-color: #e3f1ef;
  text-decoration: underline;
}
/*  lnk ico end  */
.lnk--ico-end i {
  margin-left: 0.8rem;
  -webkit-transition: ease-out 0.2s;
  -o-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  right: 0;
  position: relative;
}
.lnk--ico-end:hover i {
  right: -0.4rem;
}
/*  lnk ico start  */
.lnk--ico-start i {
  margin-right: 0.8rem;
}
.lnk--ico-start-size-1 i {
  margin-right: 0.4rem;
}
.lnk--ico-start-size-2 i {
  margin-right: 1.2rem;
}
/*  lnk arrow right  */
.lnk--arrow-right:hover {
  text-decoration: none;
}
/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */
.logo {
  display: block;
  max-width: 14rem;
  z-index: 100;
  width: 14rem;
}
.logo--footer {
  z-index: 0;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .logo--footer {
    margin: 0 auto;
  }
}
/* ------------------------------------------------------------ *\
	Main
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
    Masonry
\* ------------------------------------------------------------ */
.masonry .masonry__col,
.masonry .masonry__grid-sizer {
  width: 30%;
}
@media (max-width: 1199px) {
  .masonry .masonry__col,
.masonry .masonry__grid-sizer {
    width: 31%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .masonry .masonry__col,
.masonry .masonry__grid-sizer {
    width: 48%;
  }
}
.masonry .masonry__col {
  margin-bottom: 3.2rem;
  text-align: center;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .masonry .masonry__col {
    margin-bottom: 2rem;
  }
}
.masonry .masonry__col img {
  width: 100%;
  height: auto;
}
.masonry .masonry__col a {
  display: block;
}
.masonry .masonry__gutter-sizer {
  width: 5%;
}
@media (max-width: 1199px) {
  .masonry .masonry__gutter-sizer {
    width: 3.4%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .masonry .masonry__gutter-sizer {
    width: 3.8%;
  }
}
/* ------------------------------------------------------------ *\
    Member
\* ------------------------------------------------------------ */
.member {
  padding-bottom: 2.1rem;
}
@media (max-width: 1199px) {
  .member {
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .member {
    padding-bottom: 2.7rem;
  }
}
.member img {
  width: 100%;
  height: auto;
}
.member h6 {
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 2.8rem;
  margin: 1.6rem 0 0.4rem 0;
  font-weight: normal;
}
.member p {
  margin: 1.6rem 0;
}
/* ------------------------------------------------------------ *\
	Nav footer
\* ------------------------------------------------------------ */
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-footer li:last-child a {
    display: none;
  }
  .nav-footer li:last-child span {
    display: block;
  }
}
.nav-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 1199px) {
  .nav-footer ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.nav-footer li {
  border-bottom: 0.4rem solid transparent;
  margin: 0 1.6rem;
  position: relative;
}
@media (max-width: 1199px) {
  .nav-footer li {
    display: block;
    margin: 0 0 2.8rem;
  }
  .nav-footer li::after {
    display: none;
  }
}
.nav-footer li:not(:first-child):after {
  content: "";
  position: absolute;
  height: 1.6rem;
  width: 0.2rem;
  background: #fff;
  left: -1.6rem;
  top: 0;
}
.nav-footer li:hover {
  color: #bfe9e1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nav-footer a {
  text-decoration: none;
}
/* ------------------------------------------------------------ *\
	Nav Secondary
\* ------------------------------------------------------------ */
.nav-secondary {
  width: 100%;
  padding: 2.4rem 0 2.4rem 0;
  text-align: left;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 4.8rem 0 2rem;
  }
}
@media (max-width: 374px) {
  .nav-secondary {
    padding: 1rem 0 1rem;
  }
}
.nav-secondary ul {
  width: 100%;
}
.nav-secondary li {
  display: inline-block;
}
@media (max-width: 1200px){
    .nav-secondary{
            padding: 1rem 0 1.4rem 0 !important;
    }
    .header .header__shell a img{
            width: 95px;
    }
    .nav-secondary li:not(:first-child) {
    margin-left: 0.8rem !important ;
}
    .nav-secondary a { 
    font-size: 15px !important;
}
.nav a { 
    font-size: 14px !important;
}
.nav li:not(:first-child) {
    margin-left: 0.9rem !important ;
}
}
@media (max-width: 993px){
    .nav li:not(:first-child) {
    margin-left: 0rem;
}
.nav-secondary li:not(:first-child) {
    margin-left: 0rem !important;
}
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary li {
    border-bottom: 0.2rem solid #004750;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary li:first-child {
    border-top: 0.2rem solid #004750;
  }
}
.nav-secondary li:not(:first-child) {
  margin-left: 2.8rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary li:not(:first-child) {
    margin-left: 0;
  }
}
.nav-secondary a {
  text-decoration: none;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary a {
    padding: 1.8rem 0;
    width: 100%;
    height: 100%;
    display: inline-block;
  }
}
@media (max-width: 374px) {
  .nav-secondary a {
    padding: 1rem 0;
  }
}
.nav-secondary a i {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  display: none;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-secondary a i {
    display: inline-block;
  }
}
.nav-secondary a:hover {
  color: #52a192;
}
/* ------------------------------------------------------------ *\
	Nav toggle
\* ------------------------------------------------------------ */
.nav-toggle {
  display: none;
  right: 2.2rem;
  top: 2rem;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}
@media (max-width: 993px)  {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  width: 3.7rem;
  height: 0.2rem;
  margin: 0.8rem auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: #004750;
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.nav-toggle.is-active span:nth-child(1) {
  -webkit-transform: translateY(1rem) rotate(45deg);
      -ms-transform: translateY(1rem) rotate(45deg);
          transform: translateY(1rem) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(3) {
  -webkit-transform: translateY(-1rem) rotate(-45deg);
      -ms-transform: translateY(-1rem) rotate(-45deg);
          transform: translateY(-1rem) rotate(-45deg);
}
.nav-toggle--popup {
  right: 6.5rem;
  top: -7.4rem;
}
@media (max-width: 1199px) {
  .nav-toggle--popup {
    right: 3.7rem;
    top: 1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav-toggle--popup {
    right: 2.3rem;
    top: 2.2rem;
  }
}
.nav-toggle--popup span {
  width: 4.7rem;
}
/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
  width: 100%;
  padding: 0 0 2.4rem 0;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-size: 1.6rem;
  text-align: left;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 374px) {
  .nav {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav ul {
    padding: 16rem 0 0 0;
  }
}
.nav li {
  /*border-bottom: 0.4rem solid transparent;*/
  display: inline-block;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav li {
    border-bottom: 0.2rem solid #004750;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav li:first-child {
    border-top: 0.2rem solid #004750;
  }
}
@media (min-width: 994px){
   .nav li:not(:first-child) {
  margin-left: 2.9rem;
} 
}

@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav li:not(:first-child) {
    margin-left: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav li:last-child {
    margin-top: 3rem;
    border: 0.2rem solid #004750;
    text-align: center;
    font-size: 1.6rem;
  }
  .nav li:last-child a {
    padding: 1.5rem 2.4rem;
    background: transparent;
  }
  .nav li:last-child a:hover {
    background: #e3f1ef;
  }
  .nav li:last-child a:active {
    background: #bfe9e1;
  }
  .nav li:last-child a:disabled {
    border-color: #dddddd;
    color: #dddddd;
  }
}
.nav li:hover {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .nav li:hover {
    border-bottom: 0.4rem solid #52a192;
  }
}
@media (min-width: 768px) {
  .nav li.is-active {
    border-bottom: 0.4rem solid #52a192;
  }
}
.nav a {
  text-decoration: none;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav a {
    padding: 1.6rem 0;
    width: 100%;
    height: 100%;
    display: inline-block;
  }
}
@media (max-width: 374px) {
  .nav a {
    padding: 1rem 0;
  }
}
.nav a:hover,
.nav a :active {
  text-decoration: none;
  color: inherit;
}
.nav a i {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  display: none;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .nav a i {
    display: inline-block;
  }
}
/* Nav pink hover*/
@media (min-width: 768px) {
  .nav--pink-hover li:hover {
    border-bottom-color: #ff6fa3;
  }
}
/* ------------------------------------------------------------ *\
    Page head
\* ------------------------------------------------------------ */
.page-head {
  position: relative;
  padding-bottom: 4.8rem;
  padding-top: 3.2rem;
}
@media (max-width: 1199px) {
  .page-head {
    padding-top: 5.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .page-head {
    padding-top: 4.4rem;
  }
}
.page-head:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5000rem;
  z-index: -1;
}
.page-head h1 {
  font-size: 5.6rem;
  line-height: 6rem;
  position: relative;
  margin-bottom: 5.6rem;
  letter-spacing: -0.19rem;
}
@media (max-width: 1199px) {
  .page-head h1 {
    font-size: 4.9rem;
  }
}
.page-head h1:after {
  content: "";
  background: #fff;
  height: 0.4rem;
  width: 9.4rem;
  position: absolute;
  bottom: -2.6rem;
  left: 0;
}
.page-head h2 {
  font-size: 3.2rem;
  line-height: 3.6rem;
}
.page-head p {
  font-size: 1.9rem;
  line-height: 3rem;
  padding-right: 10rem;
  letter-spacing: 0.01rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .page-head p {
    padding-right: 0rem;
  }
}
.page-head .video {
  margin-top: 3rem;
  margin-bottom: 3.4rem;
}
@media (max-width: 1199px) {
  .page-head .video {
    margin-top: 6.4rem;
    margin-bottom: 5.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .page-head .video {
    margin-top: 3.5rem;
    margin-bottom: 1.4rem;
  }
}
/* Page head turquoise */
.page-head--turquoise {
  color: #fff;
}
.page-head--turquoise:before {
  background: #004750;
}
/* Page head coral */
.page-head--coral {
  color: #fff;
}
.page-head--coral:before {
  background: #c82660;
}
/* Page head hr */
.page-head--hr {
  position: relative;
}
.page-head--hr:after {
  content: "";
  border-bottom: 0.1rem solid #fff;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 131.2rem;
}
@media (max-width: 1023px) {
  .page-head--hr:after {
    margin-left: 4.8rem;
    margin-right: 4.8rem;
  }
}
@media (max-width: 959px) {
  .page-head--hr:after {
    margin-left: 3.6rem;
    margin-right: 3.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .page-head--hr:after {
    margin-left: 3.2rem;
    margin-right: 3.2rem;
  }
}
@media (max-width: 543px) {
  .page-head--hr:after {
    margin-left: 2.3rem;
    margin-right: 2.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Popup
\* ------------------------------------------------------------ */
.popup {
  width: 100%;
  height: 75rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  top: 0;
  margin: auto 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .popup {
    height: 100%;
    overflow-y: auto;
    max-height: 100vh;
    background: #fff;
    padding-bottom: 2rem;
  }
}
.popup:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 10000rem;
  position: absolute;
  top: -5000rem;
  left: 0;
  z-index: -1000;
}
@media (max-width: 1199px) {
  .popup:before {
    display: none;
  }
}
.popup:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
}
.popup .popup__shell {
  position: relative;
}
.popup.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.popup.is-active .nav-toggle {
  display: block;
}
.popup.is-active .nav-toggle:hover span {
  background: #bfe9e1;
}
.popup--alt.is-active .nav-toggle {
  right: 5.5rem;
  top: -7.7rem;
}
@media (max-width: 1199px) {
  .popup--alt.is-active .nav-toggle {
    top: 3.1rem;
    right: 3.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .popup--alt.is-active .nav-toggle {
    top: 2.3rem;
    right: 2.5rem;
  }
}
.popup--alt-md {
  max-height: 68.2rem;
}
@media (max-width: 1023px) {
  .popup--alt-md {
    max-height: 82rem;
    max-width: 41.5rem;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .popup--alt-md {
    max-width: 100%;
    max-height: unset;
    top: 0;
    bottom: 0;
  }
}
.popup--alt-md:after {
  max-width: 65rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.popup--alt-md .shell {
  max-width: 65rem;
  padding: 0 3.2rem;
}
.popup--alt-md.is-active .nav-toggle {
  right: 3.7rem;
  top: -3.5rem;
}
@media (max-width: 1023px) {
  .popup--alt-md.is-active .nav-toggle {
    right: 3.7rem;
    top: -1.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .popup--alt-md.is-active .nav-toggle {
    right: 3.7rem;
    top: 0.5rem;
  }
}
.popup--alt-small {
  max-height: 37.6rem;
}
@media (max-width: 1023px) {
  .popup--alt-small {
    max-width: 41rem;
    margin: auto;
    left: 0;
    right: 0;
    max-height: 38.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .popup--alt-small {
    max-width: 100%;
  }
}
.popup--alt-small:after {
  max-width: 65rem;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media (max-width: 1023px) {
  .popup--alt-small:after {
    max-width: 41rem;
  }
}
.popup--alt-small.is-active .nav-toggle {
  right: 5.6rem;
  top: -4.7rem;
}
@media (max-width: 1023px) {
  .popup--alt-small.is-active .nav-toggle {
    right: 3.5rem;
    top: -0.5rem;
  }
}
.popup--alt-small .shell {
  max-width: 68.9rem;
  margin: auto;
}
@media (max-width: 1023px) {
  .popup--alt-small .shell {
    max-width: 41rem;
  }
}
/* ------------------------------------------------------------ *\
	Profile
\* ------------------------------------------------------------ */
.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1.14;
}
.profile .profile__icon {
  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;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: #c82660;
  margin-right: 0.8rem;
  font-size: 0;
}
.profile .profile__icon span {
  font-size: 1.9rem;
  text-transform: uppercase;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .profile p {
    display: none;
  }
}
/* ------------------------------------------------------------ *\
    Promo
\* ------------------------------------------------------------ */
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo {
    margin-bottom: 4.8rem;
  }
}
.promo h3 {
  font-family: "Warnock Pro", Georgia, serif;
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.4rem;
  position: relative;
  margin-bottom: 3.5rem;
  letter-spacing: -0.12rem;
}
@media (max-width: 1199px) {
  .promo h3 {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
.promo h3:after {
  content: "";
  background: #004750;
  height: 0.4rem;
  width: 9.4rem;
  position: absolute;
  bottom: -1.9rem;
  left: 0;
}
.promo .promo__shell {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.promo .promo__image,
.promo .promo__body {
  width: 50%;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo .promo__image,
.promo .promo__body {
    min-width: 100%;
  }
}
.promo .promo__image {
  margin-left: 0;
}
.promo .promo__image img {
  height: 72rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1199px) {
  .promo .promo__image img {
    height: 38.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo .promo__image img {
    height: 41.4rem;
  }
}
.promo .promo__body {
  margin-right: auto;
  padding: 0 6.2rem 0 3.2rem;
}
@media (max-width: 1199px) {
  .promo .promo__body {
    padding: 0 3.6rem 0 2.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo .promo__body {
    margin-top: 2.6rem;
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}
/* Promo reversed */
.promo--reversed .promo__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 0;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo--reversed .promo__image {
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}
.promo--reversed .promo__body {
  padding: 0;
  margin-left: auto;
  max-width: 50%;
  padding: 0rem 2.7rem 0 6.5rem;
}
@media (max-width: 1199px) {
  .promo--reversed .promo__body {
    padding: 0rem 2.7rem 0 3.7rem;
    max-width: 50%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .promo--reversed .promo__body {
    min-width: 100%;
    margin-right: 0;
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Quote
\* ------------------------------------------------------------ */
.quote {
  margin: 2.8rem 0 4.9rem 0;
}
@media (max-width: 1199px) {
  .quote {
    margin: 1.4rem 0 5rem 0;
  }
}
@media (max-width: 1023px) {
  .quote {
    margin: 0.9rem 0 3.4rem 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .quote {
    margin: 1.9rem 0 5rem 0;
  }
}
.quote blockquote {
  padding: 9.4rem 0 3.8rem 0;
  border-bottom: 0.2rem solid #004750;
  border-top: 0.2rem solid #004750;
  line-height: 4.4rem;
  position: relative;
}
@media (max-width: 1023px) {
  .quote blockquote {
    padding: 9.4rem 0 3.9rem 0;
  }
}
.quote blockquote:before {
  content: url("../images/svg/quotation-mark.svg");
  position: absolute;
  z-index: 0;
  left: 0;
  top: 2.4rem;
  width: 6.4rem;
  height: 4.6rem;
}
.quote blockquote p:first-child {
  font-size: 4rem;
  line-height: 4.4rem;
  font-family: "Warnock Pro", Georgia, serif;
  margin-bottom: 2.2rem;
}
@media (max-width: 1199px) {
  .quote blockquote p:first-child {
    font-size: 3.2rem;
    line-height: 3.8rem;
  }
}
@media (max-width: 1023px) {
  .quote blockquote p:first-child {
    font-size: 3.2rem;
    line-height: 3.6rem;
    letter-spacing: -0.035rem;
  }
}
/* ------------------------------------------------------------ *\
	Radio
\* ------------------------------------------------------------ */
.radio-alt label {
  display: block;
  min-width: 8rem;
  gap: 0.8rem;
  border: 0.2rem solid #004750;
  padding: 1.2rem 0.5rem;
  font-size: 1.4rem;
  line-height: 1.14;
  text-align: center;
  background-color: #fff;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.radio-alt input[type=radio] {
  opacity: 0;
  position: absolute;
}
.radio-alt input[type=radio]:checked ~ label {
  background-color: #bfe9e1;
}
/* ------------------------------------------------------------ *\
	Radio
\* ------------------------------------------------------------ */
.radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: center;
}
.radio input[type=radio] {
  opacity: 0;
  position: absolute;
}
.radio input[type=radio] ~ label {
  position: relative;
}
.radio input[type=radio] ~ label:before {
  content: "";
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 50%;
  border: 0.1rem solid #004750;
  margin: 0 0.8rem 0 0;
}
.radio input[type=radio]:checked ~ label:before {
  background-color: #004750;
}
.radio--small input[type=radio] ~ label:before {
  height: 1.8rem;
  width: 1.8rem;
}
.radio--white input[type=radio] ~ label:before {
  background-color: #fff;
  border: 0.2rem solid #fff;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.radio--white input[type=radio]:checked ~ label:before {
  background-color: #004750;
}
/* ------------------------------------------------------------ *\
	Radios Alt
\* ------------------------------------------------------------ */
.radios-alt {
  max-width: 27.2rem;
}
.radios-alt ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 1.2rem 1.6rem;
  list-style: none;
}
@media (max-width: 1023px) {
  .radios-alt ul {
    gap: 1.2rem 1.4rem;
  }
}
/* ------------------------------------------------------------ *\
	Radios
\* ------------------------------------------------------------ */
.radios ul {
  list-style: none;
}
.radios li {
  display: inline-block;
  vertical-align: middle;
}
.radios li + li {
  margin-left: 2.1rem;
}
.radios--alt li {
  display: block;
}
.radios--alt li + li {
  margin-top: 1.6rem;
  margin-left: 0;
}
/* ------------------------------------------------------------ *\
	Rating
\* ------------------------------------------------------------ */
.rating {
  --star-width: 2.75rem;
}
.rating figure {
  display: inline-block;
  vertical-align: middle;
  height: var(--star-width);
  width: calc(var(--star-width) * 5);
  background-image: url(../images/svg/ico-start-yellow.svg);
  background-position: center left;
  background-repeat: repeat;
  background-size: var(--star-width) var(--star-width);
}
.rating a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  -webkit-transition: -webkit-text-decoration-color 0.3s;
  transition: -webkit-text-decoration-color 0.3s;
  -o-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s, -webkit-text-decoration-color 0.3s;
  margin-left: 0.3rem;
}
.rating a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
/* ------------------------------------------------------------ *\
	Reader
\* ------------------------------------------------------------ */
.reader {
  position: relative;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #dddddd;
}
.reader ul {
  list-style: none;
}
.reader ul li + li {
  margin-top: 0.8rem;
}
.reader .reader__actions {
  position: absolute;
  top: 0;
  right: 0;
}
.reader .reader__actions a {
  display: inline-block;
}
.reader .reader__actions a i {
  font-size: 0;
}
.reader .reader__actions a + a {
  margin-left: 0.6rem;
}
.reader + .reader {
  margin-top: 1.6rem;
}
/* ------------------------------------------------------------ *\
	Search
\* ------------------------------------------------------------ */
.search {
  position: relative;
  font-size: 1.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid #004750;
}
.search .search__field {
  max-width: 100%;
  width: 100%;
  padding: 1.4rem 4.8rem 1.4rem 2rem;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  border-bottom: 0.1rem solid #004750;
}
.search .search__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  background-color: transparent;
  border-radius: 0;
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.search .search__btn:hover {
  background-color: #bfe9e1;
}
/* ------------------------------------------------------------ *\
	Section Categories
\* ------------------------------------------------------------ */
.section-categories {
  background-color: #012327;
  color: #fff;
  padding: 6rem 0 5.5rem;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .section-categories {
    padding: 6.5rem 0 6.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-categories {
    padding: 5.8rem 0 5.1rem;
  }
}
@media (max-width: 1023px) {
  .section-categories .shell {
    padding: 0 2.3rem;
  }
}
.section-categories .section__head {
  margin-bottom: 4.8rem;
}
@media (max-width: 1023px) {
  .section-categories .section__head {
    margin-bottom: 5.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-categories .section__head {
    margin-bottom: 4.9rem;
  }
}
.section-categories .section__head h2 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 400;
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
}
@media (max-width: 1023px) {
  .section-categories .section__head h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-categories .section__head h2 {
    max-width: 36rem;
  }
}
.section-categories .section__body .library + .library {
  margin-top: 7rem;
}
.section-categories--small {
  padding: 5.8rem 0 8rem;
}
@media (max-width: 1023px) {
  .section-categories--small {
    padding: 2.8rem 0 7.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-categories--small {
    padding: 2.8rem 0 6.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Section Darkgreen
\* ------------------------------------------------------------ */
.section-darkgreen {
  background-color: #012327;
  padding: 20.6rem 0 0.6rem;
}
@media (max-width: 1023px) {
  .section-darkgreen .shell {
    padding: 0 2.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Section Faq
\* ------------------------------------------------------------ */
.section-faq {
  margin: 6.8rem 0 15.6rem;
}
@media (max-width: 1023px) {
  .section-faq {
    margin: 4.5rem 0 13.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .section-faq {
    margin: 2.8rem 0 15.3rem;
  }
}
.section-faq .section__inner {
  display: grid;
  grid-template-columns: 52.8rem 1fr;
  gap: 3.2rem;
}
@media (max-width: 1199px) {
  .section-faq .section__inner {
    grid-template-columns: 40rem 1fr;
  }
}
@media (max-width: 1023px) {
  .section-faq .section__inner {
    grid-template-columns: 1fr;
    gap: 4.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-faq .section__inner {
    gap: 3.1rem;
  }
}
.section-faq .section__head h1 {
  font-size: 4.8rem;
  line-height: 1.08;
  letter-spacing: -0.032em;
}
@media (max-width: 1023px) {
  .section-faq .section__head h1 {
    font-size: 4rem;
    line-height: 1.3;
  }
}
/* ------------------------------------------------------------ *\
	Section Forms
\* ------------------------------------------------------------ */
.section-forms {
  margin: 6.7rem 0 8.4rem;
}
@media (max-width: 1023px) {
  .section-forms {
    margin: 5.2rem 0 7.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms {
    margin: 4.1rem 0 6.3rem;
  }
}
.section-forms .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
}
@media (max-width: 1199px) {
  .section-forms .section__inner {
    gap: 1.5rem;
  }
}
@media (max-width: 1023px) {
  .section-forms .section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.section-forms .section__content {
  padding-top: 0.4rem;
}
.section-forms .section__title {
  font-size: 4.8rem;
  line-height: 1.08;
  letter-spacing: -0.032em;
  margin-bottom: 1.4rem;
}
@media (max-width: 1023px) {
  .section-forms .section__title {
    font-size: 4rem;
    line-height: 1.3;
  }
}
.section-forms .section__entry {
  font-size: 2rem;
  line-height: 1.4;
}
.section-forms .section__link {
  margin-top: 3.3rem;
}
.section-forms .section__steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.1rem;
  margin-top: 4.7rem;
}
@media (max-width: 1023px) {
  .section-forms .section__steps {
    gap: 3.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms .section__steps {
    grid-template-columns: 1fr;
    gap: 8.8rem;
    margin-top: 3.3rem;
  }
}
.section-forms .section__image {
  margin-top: 3.2rem;
  position: relative;
  padding-bottom: 52.25%;
}
@media (max-width: 1023px) {
  .section-forms .section__image {
    padding-bottom: 51.9%;
  }
}
.section-forms .section__image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.section-forms .section__actions {
  margin-top: 4.8rem;
}
@media (max-width: 1023px) {
  .section-forms--alt {
    margin: 5.2rem 0 7.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--alt {
    margin: 4.2rem 0 6.4rem;
  }
}
/* sections forms copy */
.section-forms--copy {
  margin-bottom: 13.2rem;
}
@media (max-width: 1023px) {
  .section-forms--copy {
    margin-bottom: 7.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy {
    margin-bottom: 6.3rem;
  }
}
.section-forms--copy .section__entry + .section__images {
  margin-top: 4.5rem;
}
@media (max-width: 1023px) {
  .section-forms--copy .section__entry + .section__images {
    margin-top: 3.2rem;
  }
}
.section-forms--copy .section__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 -1.6rem;
}
@media (max-width: 1023px) {
  .section-forms--copy .section__images {
    margin: 0 -1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy .section__images {
    margin: 0 -0.8rem;
  }
}
.section-forms--copy .section__images .section__image {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: calc(100% / 3);
      flex-basis: calc(100% / 3);
  max-width: calc(100% / 3);
  padding: 0 1.6rem;
  margin-top: 0;
}
@media (max-width: 1023px) {
  .section-forms--copy .section__images .section__image {
    padding: 0 1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy .section__images .section__image {
    padding: 0 0.8rem;
  }
}
.section-forms--copy .section__images .section__image img {
  position: static;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy .section__content h1 {
    max-width: 27rem;
  }
}
.section-forms--copy .section__body {
  font-size: 2rem;
  line-height: 1.4;
}
.section-forms--copy .section__images + .section__body {
  margin-top: 4.8rem;
}
@media (max-width: 1023px) {
  .section-forms--copy .section__images + .section__body {
    margin-top: 3.2rem;
  }
}
.section-forms--copy .section__image {
  margin-top: 0;
  padding-bottom: 66.9%;
}
.section-forms--copy-alt {
  margin-bottom: 8.3rem;
}
@media (max-width: 1023px) {
  .section-forms--copy-alt {
    margin-top: 4.5rem;
    margin-bottom: 7.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy-alt {
    margin-bottom: 6.2rem;
  }
}
.section-forms--copy-alt .section__inner {
  grid-template-columns: 0.65fr 0.925fr;
}
@media (max-width: 1023px) {
  .section-forms--copy-alt .section__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.section-forms--copy-alt .section__content {
  padding: 0;
}
.section-forms--copy-size-1 {
  margin-bottom: 8.4rem;
}
.section-forms--copy-size-2 {
  margin-bottom: 16.7rem;
}
@media (max-width: 1023px) {
  .section-forms--copy-size-2 {
    margin-bottom: 7.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy-size-2 {
    margin-bottom: 6.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy-size-2 .section__content h1 {
    max-width: unset;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-forms--copy-size-2 .section__inner {
    gap: 3.2rem;
  }
}
.section-forms--blue:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 5000rem;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #bfe9e1;
}
/* ------------------------------------------------------------ *\
    Section
\* ------------------------------------------------------------ */
.section {
  margin: 8.4rem 0 5.6rem 0;
}
@media (max-width: 1199px) {
  .section {
    margin: 6.4rem 0 2.6rem 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .section {
    margin: 4.7rem 0 2.6rem 0;
  }
}
.section h2 {
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
  color: #004750;
  position: relative;
  font-weight: normal;
  font-size: 4rem;
  line-height: 4.4rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 1199px) {
  .section h2 {
    font-size: 3.2rem;
    line-height: 3.6rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .section h2 {
    margin-bottom: 2.6rem;
  }
}
.section h2:after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  border-bottom: 0.2rem solid #004750;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .section--member {
    margin: -2.9rem 0 2.6rem 0;
  }
}
/* ------------------------------------------------------------ *\
	Select
\* ------------------------------------------------------------ */
.select select::-ms-expand {
  display: none;
}
/* ------------------------------------------------------------ *\
  Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: calc(131.2rem + 6.4rem * 2);
  padding-left: 6.4rem;
  padding-right: 6.4rem;
  margin: auto;
  width: 100%;
}
@media (max-width: 1023px) {
  .shell {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
@media (max-width: 959px) {
  .shell {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .shell {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
@media (max-width: 543px) {
  .shell {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}
.shell--small {
  padding-left: 5.5rem;
  padding-right: 5.5rem;
}
@media (max-width: 1023px) {
  .shell--small {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
@media (max-width: 959px) {
  .shell--small {
    padding-left: 3.6rem;
    padding-right: 3.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .shell--small {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
@media (max-width: 543px) {
  .shell--small {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }
}
/* Shell Fluid */
.shell--fluid {
  max-width: none;
}
/* Shell No Padding */
.shell--no-padding {
  padding: 0;
}
/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
/* Slider slick*/
.slider--slick .slider__prev:before,
.slider--slick .slider__next:before {
  content: "";
  background: url(../images/svg/ico-arrow-light.svg) no-repeat 0 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  opacity: 1;
  position: absolute;
  bottom: 0;
  right: -1rem;
}
.slider--slick .slider__prev:before {
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
  right: inherit;
  left: -1rem;
}
.slider--slick .slider__prev:hover:before,
.slider--slick .slider__next:hover:before {
  background-image: url(../images/svg/ico-arrow-light-hover.svg);
}
.slider--slick .slick-arrow {
  height: 1.8rem;
  display: inline-block;
  z-index: 1000;
  bottom: 0;
  top: inherit;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}
.slider--slick .slick-arrow:hover {
  text-decoration: underline;
}
.slider--slick .slider__prev,
.slider--slick .slider__next {
  line-height: 0;
  position: absolute;
  padding: 1rem 2rem 1rem 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.6rem;
  color: #004750;
  right: 44.3%;
}
@media (max-width: 1199px) {
  .slider--slick .slider__prev,
.slider--slick .slider__next {
    right: 40%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .slider--slick .slider__prev,
.slider--slick .slider__next {
    right: 30%;
  }
}
@media (max-width: 374px) {
  .slider--slick .slider__prev,
.slider--slick .slider__next {
    right: 20%;
  }
}
.slider--slick .slider__prev {
  padding: 1rem 0 1rem 2rem;
  left: 44.4%;
  right: inherit;
}
@media (max-width: 1199px) {
  .slider--slick .slider__prev {
    left: 40%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .slider--slick .slider__prev {
    left: 30%;
  }
}
@media (max-width: 374px) {
  .slider--slick .slider__prev {
    left: 20%;
  }
}
.slider--slick .slick-slider {
  margin-bottom: 0;
}
.slider--slick .slider__actions {
  position: relative;
  width: 100%;
  min-height: 2rem;
  top: 1.9rem;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
@media (max-width: 1199px) {
  .slider--slick .slider__actions {
    top: 1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .slider--slick .slider__actions {
    top: 3.3rem;
    margin-bottom: 8rem;
  }
}
.slider--carousel .slider__slide {
  padding: 0 1.2rem;
}
.slider--carousel .slider__slide:first-child {
  margin-left: 1rem;
}
@media (max-width: 1023px) {
  .slider--carousel .slider__slide:first-child {
    margin-left: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .slider--carousel .slider__slide:first-child {
    margin-left: -0.2rem;
  }
}
.slider--carousel .slider__prev,
.slider--carousel .slider__next {
  position: absolute;
  top: 50%;
  left: 3.5%;
  margin-top: -0.5rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  opacity: 0.8;
  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;
  border: 0;
  z-index: 2;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 1023px) {
  .slider--carousel .slider__prev,
.slider--carousel .slider__next {
    left: 3%;
  }
}
.slider--carousel .slider__prev:hover,
.slider--carousel .slider__next:hover {
  opacity: 1;
}
.slider--carousel .slider__next {
  left: auto;
  right: 3.5%;
}
@media (max-width: 1023px) {
  .slider--carousel .slider__next {
    right: 3%;
  }
}
/* ------------------------------------------------------------ *\
    Socials
\* ------------------------------------------------------------ */
.socials {
  list-style: none;
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 4.4rem;
}
@media (max-width: 1199px) {
  .socials {
    margin-top: -9.5rem;
    padding-top: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 5rem;
  }
}
.socials h6 {
  margin-right: -0.4rem;
  font-size: 1.4rem;
  font-weight: normal;
}
.socials li {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 3rem;
}
.socials a {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}
.socials i {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
/* ------------------------------------------------------------ *\
	Step
\* ------------------------------------------------------------ */
.step {
  text-align: center;
  position: relative;
}
.step + .step:before {
  content: "";
  display: block;
  background: url(../images/svg/ico-arrow-right.svg) no-repeat center center;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  left: -2.2rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .step + .step:before {
    left: -2.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .step + .step:before {
    background-image: url(../images/svg/ico-arrow-down.svg);
    left: 50%;
    top: -5.7rem;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.step .step__icon {
  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;
  margin-bottom: 1.2rem;
}
.step .step__title {
  font-size: 2rem;
  margin-bottom: 1.8rem;
}
/* ------------------------------------------------------------ *\
    Story item
\* ------------------------------------------------------------ */
.story-item {
  margin-bottom: 6.4rem;
}
@media (max-width: 1199px) {
  .story-item {
    margin-bottom: 4.9rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .story-item {
    margin-bottom: 4.8rem;
  }
}
.story-item img {
  width: 100%;
}
.story-item span {
  display: block;
  margin-top: 0.7rem;
}
.story-item span:nth-child(2) {
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
}
.story-item span:nth-child(3) {
  font-size: 1.4rem;
  color: #666666;
}
.story-item hr {
  width: 9.4rem;
  height: 0.4rem;
  background: #ffe500;
  border: 0;
  margin: 1.1rem 0 1.5rem 0;
}
.story-item h6 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-top: 1.6rem;
  letter-spacing: 0.03rem;
}
.story-item a {
  text-decoration: none;
}
.story-item a:hover {
  color: #52a192;
}
/* ------------------------------------------------------------ *\
    Success Detail
\* ------------------------------------------------------------ */
.success-detail {
  padding: 3.4rem 0 0 0;
}
@media (max-width: 1199px) {
  .success-detail {
    padding: 1.3rem 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-detail {
    padding: 0;
  }
}
.success-detail h1 {
  font-size: 5.6rem;
  line-height: 6rem;
  margin-top: 6rem;
  margin-bottom: 4.5rem;
  letter-spacing: -0.17rem;
}
@media (max-width: 1199px) {
  .success-detail h1 {
    font-size: 4.8rem;
    line-height: 6rem;
    margin-top: 4.6rem;
    margin-bottom: 4.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-detail h1 {
    margin-top: 2.8rem;
    margin-bottom: 3.1rem;
  }
}
.success-detail .success-detail__shell {
  height: 100%;
}
.success-detail .success-detail__image {
  height: 49.9rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 1023px) {
  .success-detail .success-detail__image {
    height: 26.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-detail .success-detail__image {
    height: 41.4rem;
  }
}
.success-detail .success-detail__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
/* ------------------------------------------------------------ *\
    Success Stories
\* ------------------------------------------------------------ */
.success-stories {
  padding: 8rem 0 0;
  margin-bottom: -6.3rem;
}
@media (max-width: 1199px) {
  .success-stories {
    padding: 4.3rem 0 0;
    margin-bottom: -5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-stories {
    padding: 2.9rem 0 0;
    margin-bottom: -4.6rem;
  }
}
.success-stories h1 {
  font-size: 4.8rem;
  position: relative;
  margin-bottom: 13.6rem;
  letter-spacing: -0.13rem;
}
@media (max-width: 1199px) {
  .success-stories h1 {
    font-size: 4rem;
    line-height: 5.2rem;
    margin-bottom: 9.7rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-stories h1 {
    margin-bottom: 7.9rem;
  }
}
.success-stories h1:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -7.3rem;
  height: 0.1rem;
  background: #004750;
}
@media (max-width: 1199px) {
  .success-stories h1:after {
    bottom: -4.9rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .success-stories h1:after {
    bottom: -3.2rem;
  }
}
/* ------------------------------------------------------------ *\
	Summary
\* ------------------------------------------------------------ */
.summary {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 18.2rem 0 19.1rem;
  color: #fff;
  position: relative;
  -webkit-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  transition: padding 0.3s;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .summary {
    padding: 17.3rem 0 17.1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary {
    padding: 15.3rem 0 16.3rem;
  }
}
.summary .summary__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  max-width: 91%;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .summary .summary__inner {
    max-width: unset;
  }
}
.summary .summary__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36.6%;
          flex: 0 0 36.6%;
  max-width: 36.6%;
  font-size: 0;
}
@media (max-width: 1023px) {
  .summary .summary__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.1%;
            flex: 0 0 31.1%;
    max-width: 31.1%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary .summary__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    max-width: 80%;
    margin: 0 auto;
  }
}
.summary .summary__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56.6%;
          flex: 0 0 56.6%;
  max-width: 56.6%;
  padding: 2rem 5rem 2rem 0;
}
@media (max-width: 1023px) {
  .summary .summary__content {
    padding: 0.3rem 0.5rem 2rem 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.1%;
            flex: 0 0 64.1%;
    max-width: 64.1%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary .summary__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 2rem 0 2rem;
  }
}
.summary .summary__content h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 1.8rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 1023px) {
  .summary .summary__content h1 {
    font-size: 3.2rem;
  }
}
.summary .summary__content h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.4rem;
  width: 9.4rem;
  background-color: #fff;
}
.summary .summary__content h5 {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 2.4rem;
}
.summary .summary__content p {
  margin-bottom: 0;
}
.summary .summary__content p + p {
  margin-top: 2.4rem;
}
.summary .summary__actions {
  margin-top: 3.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary .summary__actions {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary .summary__actions .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.summary .summary__actions .btn + .btn {
  margin-left: 1.4rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary .summary__actions .btn + .btn {
    margin-left: 0;
    margin-top: 1.4rem;
  }
}
.summary .summary__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5.5rem;
  background-color: #012327;
  padding: 6.4rem 0 0.7rem;
}
@media (max-width: 1023px) {
  .summary .summary__bar {
    padding: 4.8rem 0 0.7rem;
  }
}
.summary .summary__bar .shell {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1023px) {
  .summary .summary__bar .shell {
    padding: 0 2.3rem;
  }
}
.summary .summary__bar-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.1rem solid #004750;
  padding-bottom: 1.6rem;
}
@media (max-width: 1023px) {
  .summary .summary__bar-inner {
    padding-bottom: 2.3rem;
  }
}
.summary .summary__bar-actions {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.summary .summary__bar-actions a + a {
  margin-left: 1.5rem;
}
.summary .summary__categories {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-transition: margin 0.3s 0.3s;
  -o-transition: margin 0.3s 0.3s;
  transition: margin 0.3s 0.3s;
}
.summary .list-links--col-count-2 {
  margin-right: -1.6rem;
}
@media (max-width: 1023px) {
  .summary .list-links--col-count-2 {
    margin-right: -0.6rem;
  }
}
.summary.is-active {
  padding-bottom: 21.4rem;
}
@media (max-width: 1023px) {
  .summary.is-active {
    padding-bottom: 61.1rem;
  }
}
@media (max-width: 1023px) {
  .summary.is-active {
    padding-bottom: 61.7rem;
  }
}
.summary.is-active .summary__bar {
  top: 0;
  margin-top: 0;
  padding-top: 18.2rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .summary.is-active .summary__bar {
    padding-top: 18.2rem;
  }
}
.summary.is-active .summary__bar .shell {
  display: block;
}
.summary.is-active .summary__bar-inner {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0;
  border-bottom: 0;
}
.summary.is-active .summary__bar-actions {
  margin-bottom: 1.3rem;
}
.summary.is-active .summary__trigger {
  color: #bfe9e1;
}
.summary.is-active .summary__trigger .ico-categories {
  background: url(../images/svg/ico-categories-active.svg) no-repeat center center;
}
.summary.is-active .summary__categories {
  margin-top: 1.5rem;
}
@media (max-width: 1023px) {
  .summary.is-active .summary__categories {
    margin-top: 2.4rem;
  }
}
/* ------------------------------------------------------------ *\
    Tab
\* ------------------------------------------------------------ */
.tab {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #ffe500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  display: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab {
    padding-top: 4.8rem;
  }
}
.tab:after {
  content: "";
  position: absolute;
  left: 13.6%;
  top: -2.5rem;
  width: 0;
  height: 0;
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  border-bottom: 3rem solid #ffe500;
  clear: both;
}
@media (max-width: 1199px) {
  .tab:after {
    top: -1.1rem;
    left: 13.1%;
    border-left: 1.7rem solid transparent;
    border-right: 1.7rem solid transparent;
    border-bottom: 1.7rem solid #ffe500;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab:after {
    left: 45.5%;
  }
}
.tab .tab__head {
  padding: 0 3.2rem;
  text-align: center;
}
@media (max-width: 1199px) {
  .tab .tab__head {
    padding: 0 1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab .tab__head {
    padding: 0 3rem 0 3rem;
  }
}
.tab .tab__head h5 {
  font-size: 7.8rem;
  line-height: 8rem;
  margin-bottom: 1.6rem;
  font-family: "NeueHaasGroteskDisp Pro", Helvetica, sans-serif;
}
@media (max-width: 1199px) {
  .tab .tab__head h5 {
    font-size: 6rem;
    line-height: 6.2rem;
    padding: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab .tab__head h5 {
    padding: 0;
  }
}
.tab .tab__head p {
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-size: 2rem;
  line-height: 2.8rem;
}
.tab .tab__body {
  padding: 6.4rem 2.2rem 6.4rem 3rem;
}
@media (max-width: 1023px) {
  .tab .tab__body {
    padding: 7rem 1.9rem 6.3rem 1.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab .tab__body {
    padding: 3.4rem 2.6rem 4.8rem 2.4rem;
  }
}
.tab .tab__body p {
  font-family: "Warnock Pro", Georgia, serif;
  font-size: 4rem;
  line-height: 4.4rem;
  letter-spacing: -0.12rem;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .tab .tab__body p {
    font-size: 3.2rem;
    line-height: 3.6rem;
  }
}
.tab .tab__body span {
  display: block;
  padding-top: 3rem;
}
.tab.is-current {
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  -webkit-animation: fadein 0.3s ease-in;
          animation: fadein 0.3s ease-in;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab.is-current {
    margin-top: 2.7rem;
  }
}
/*Tab seafoam*/
.tab--seafoam {
  background: #bfe9e1;
}
.tab--seafoam:after {
  left: 47.7%;
  border-bottom-color: #bfe9e1;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab--seafoam:after {
    left: 45.5%;
  }
}
/*Tab tangerine*/
.tab--tangerine {
  background: #ffb71b;
}
.tab--tangerine:after {
  left: 81%;
  border-bottom-color: #ffb71b;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab--tangerine:after {
    left: 45.5%;
  }
}
/*Tab three grid*/
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab--three-grid {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
.tab--three-grid .tab__head {
  padding: 11.9rem 3.2rem;
}
@media (max-width: 1199px) {
  .tab--three-grid .tab__head {
    padding: 2.8rem 1.5rem 7.9rem 1.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab--three-grid .tab__head {
    padding: 0 1.5rem 0 1.5rem;
  }
}
.tab--three-grid .tab__head h5 {
  font-size: 4.8rem;
  line-height: 5.2rem;
  font-family: "NeueHaasGroteskDisp Pro Lt", Helvetica, sans-serif;
  font-weight: normal;
}
@media (max-width: 1199px) {
  .tab--three-grid .tab__head h5 {
    font-size: 4rem;
    padding: 5.1rem 0 0 0;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tab--three-grid .tab__head h5 {
    padding: 2.9rem 0 0 0;
  }
}
.tab--three-grid .tab__head h5 strong {
  font-family: "NeueHaasGroteskDisp Pro", Helvetica, sans-serif;
  font-weight: normal;
}
.tab--three-grid .tab__head p {
  font-family: "NeueHaasGroteskText Pro", Helvetica, sans-serif;
}
.tab--three-grid .tab__head span {
  position: relative;
  display: block;
  margin: 1.6rem 0 1.8rem 0;
}
.tab--three-grid .tab__head span:after {
  content: "";
  background: #52a192;
  height: 0.2rem;
  width: 7.6rem;
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------------------ *\
    Tabs
\* ------------------------------------------------------------ */
.tabs .tabs__nav {
  margin-bottom: 7.3rem;
}
@media (max-width: 1199px) {
  .tabs .tabs__nav {
    margin-bottom: 4.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav {
    margin-bottom: -4.7rem;
  }
}
.tabs .tabs__nav h4 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  position: relative;
  margin-bottom: 3.5rem;
  font-family: "NeueHaasGroteskText Pro Md", Helvetica, sans-serif;
  font-weight: normal;
  letter-spacing: 0;
}
.tabs .tabs__nav h4:after {
  content: "";
  background: #ffe500;
  height: 0.4rem;
  width: 9.4rem;
  position: absolute;
  bottom: -1.9rem;
  left: 0;
}
.tabs .tabs__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tabs .tabs__nav li {
  max-width: 31.73%;
}
@media (max-width: 1199px) {
  .tabs .tabs__nav li {
    max-width: 31.23%;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li {
    min-width: 100%;
    padding-bottom: 7.6rem;
    position: relative;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li a:after {
    content: "";
    position: absolute;
    bottom: 5.1rem;
    left: 46.8%;
    width: 0;
    height: 0;
    border-left: 1.2rem solid transparent;
    border-right: 1.2rem solid transparent;
    border-top: 1.2rem solid #fff;
    clear: both;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4.9rem;
    width: 100%;
    height: 1.3rem;
    background-color: #ffe500;
  }
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li:nth-child(2) a:before {
    background-color: #bfe9e1;
  }
}
.tabs .tabs__nav li:nth-child(2) a h4:after {
  background: #bfe9e1;
}
.tabs .tabs__nav li:nth-child(3) {
  padding-left: 0.1rem;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li:nth-child(3) a:before {
    background-color: #ffb71b;
  }
}
.tabs .tabs__nav li:nth-child(3) a h4:after {
  background: #ffb71b;
}
.tabs .tabs__nav li.is-current a {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .tabs .tabs__nav li.is-current a {
    pointer-events: all;
  }
}
.tabs .tabs__nav li.is-current a:before,
.tabs .tabs__nav li.is-current a:after {
  display: none;
}
.tabs a {
  text-decoration: none;
  letter-spacing: 0.04rem;
}
.tabs a:hover,
.tabs a :active {
  text-decoration: none;
  color: inherit;
}
.tabs a p {
  letter-spacing: 0rem;
}
/* ------------------------------------------------------------ *\
    Video
\* ------------------------------------------------------------ */
.video {
  width: 100%;
  height: 36rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px), screen and (max-width: 813px) and (orientation: landscape) {
  .video {
    height: 21rem;
  }
}
.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  position: relative;
  min-height: 100vh;
}

.alert {
    padding: 0px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    margin-top: 0px;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    z-index: 99;
}
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.close{display:none}
/* ------------------------------------------------------------ *\
	Overwrites
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Slick Slider
\* ------------------------------------------------------------ */
