/**
* Conditional Media Query Mixin
* by @sheiko (http://dsheiko.com)
*
* The problem this mixin solves is explained there
* http://css-tricks.com/conditional-media-query-mixins/
*
* https://github.com/dsheiko
* MIT license: http://www.opensource.org/licenses/mit-license.php
*/
/**
 * Usage examples
 */
/*.body {
  @include media( ">sm", "<md" ){
    background: red;
    color: white;
  };
}*/
.f-sans {
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-regular {
  font-weight: 400;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-semibold {
  font-weight: 600;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-bold {
  font-weight: 700;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-black {
  font-weight: 900;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.f-sans {
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-regular {
  font-weight: 400;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-semibold {
  font-weight: 600;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-bold {
  font-weight: 700;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

.fw-black {
  font-weight: 900;
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
}

@media (min-width: 320px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "XXS";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

@media (min-width: 480px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "XS";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

@media (min-width: 576px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "SM";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

@media (min-width: 768px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "MD";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

@media (min-width: 992px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "LG";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

@media (min-width: 1200px) {
  [class*="ResponsiveWitness"][class*="__active"] {
    position: relative;
  }
  [class*="ResponsiveWitness"][class*="__active"]:before {
    position: fixed;
    content: "XL";
    top: 0;
    left: 0;
    background: black;
    color: white;
    text-align: center;
    min-width: 40px;
    font-weight: 500;
    z-index: 1000000;
    opacity: 0.5;
    padding: 10px 7px;
  }
}

html {
  font-size: 16px;
}

body {
  font-family: "Muli", Arial, Helvetica, sans-serif !important;
  font-weight: normal;
  color: #000000;
  width: 100%;
  height: 100%;
  font-size: 1rem;
}

body *, body *:focus {
  outline: none !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

body svg {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
}

.d-block {
  display: block;
}

.d-inlineblock {
  display: inline-block;
}

@media (min-width: 767px) {
  .hidden-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

.NoFloat {
  float: none;
}

.Flex_FlexEnd {
  align-self: flex-end;
}

.FlexRow {
  display: flex;
  flex-direction: row;
}

.AlignItems_FlexEnd {
  align-items: flex-end;
}

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

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

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

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

@media (max-width: 768px) {
  .align-left-MOB {
    text-align: left !important;
  }
}

.fd-underline {
  text-decoration: underline;
}

.fs-normal {
  font-style: normal;
}

.NoMargin {
  margin: 0 !important;
}

.NoMargin-X {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.NoPadding {
  padding: 0 !important;
}

@media (min-width: 575px) {
  .NoMargin-Desktop {
    margin: 0 !important;
  }
}

.PosRel {
  position: relative;
}

.lh-1 {
  line-height: 0.1;
}

.lh-2 {
  line-height: 0.2;
}

.lh-3 {
  line-height: 0.3;
}

.lh-4 {
  line-height: 0.4;
}

.lh-5 {
  line-height: 0.5;
}

.lh-6 {
  line-height: 0.6;
}

.lh-7 {
  line-height: 0.7;
}

.lh-8 {
  line-height: 0.8;
}

.lh-9 {
  line-height: 0.9;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-13 {
  line-height: 1.3;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.lh-16 {
  line-height: 1.6;
}

.lh-17 {
  line-height: 1.7;
}

.lh-18 {
  line-height: 1.8;
}

.lh-19 {
  line-height: 1.9;
}

.lh-20 {
  line-height: 2;
}

.fs-italic {
  font-style: italic;
}

.ft-uppercase {
  text-transform: uppercase;
}

.ft-lowercase {
  text-transform: lowercase;
}

.ft-capitalize {
  text-transform: capitalize;
}

.ft-normal {
  text-transform: none;
}

svg * {
  fill: currentColor;
}

header .BG {
  z-index: -2 !important;
}

header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 40vw;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 79%);
}

header:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40vw;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0) 79%);
}

header .Logo {
  width: 170px;
}

header .Logo svg {
  max-width: 100%;
  height: auto;
}

header nav {
  justify-content: space-between;
  padding-top: 20px;
}

header nav .SubNav li:not(:first-child) {
  margin-left: 1.5em;
}

header nav .MainNav {
  border: 1px solid #CCCCCC;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  line-height: 1.4;
  align-items: stretch;
  max-width: 750px;
  transition: all .15s;
}

header nav .MainNav li {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .15s;
  position: relative;
}

header nav .MainNav li:before {
  pointer-events: none;
  transition: all .15s;
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  box-shadow: inset 0px 0px 0px 0px #4BB1FF;
}

header nav .MainNav li:hover {
  color: #4BB1FF;
}

header nav .MainNav li:hover:before {
  box-shadow: inset 0px 0px 0px 5px #4BB1FF;
}

header nav .MainNav li:not(:last-child) {
  border-right: 1px solid #CCCCCC;
}

header nav .MainNav a {
  vertical-align: middle;
  display: inline-flex;
  justify-content: center;
  flex-direction: column;
  padding: 3em 0;
  width: 100%;
  flex-grow: 1;
}

header h1 {
  letter-spacing: 0.05em;
  line-height: 1;
}

header h1 strong {
  opacity: 0.8;
}

.Rounded_Quote .Round {
  width: 375px;
  height: 375px;
  border-radius: 100%;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.86);
}

footer .Btn.fc-white {
  transition: all .15s;
}

footer .Btn.fc-white:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #0050BE !important;
}

footer .Socials li {
  margin: 0 0.15em;
}

footer .Socials li:hover a {
  color: #4BB1FF;
}

footer .Sign:hover * {
  color: #ffffff;
}

footer .Sign .Icon {
  transform: translateY(-3px);
}

/* 14 */
.fs-14 {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .fs-14 {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .fs-14 {
    font-size: 0.875rem;
  }
}

/* 16 */
.fs-16 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .fs-16 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .fs-16 {
    font-size: 1rem;
  }
}

/* 18 */
.fs-18 {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .fs-18 {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .fs-18 {
    font-size: 1.125rem;
  }
}

/* 20 */
.fs-20 {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .fs-20 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .fs-20 {
    font-size: 1.125rem;
  }
}

/* 24 */
.fs-24 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .fs-24 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .fs-24 {
    font-size: 1.25rem;
  }
}

/* 34 */
.fs-34 {
  font-size: 2.125rem;
}

@media (max-width: 768px) {
  .fs-34 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .fs-34 {
    font-size: 1.25rem;
  }
}

/* 38 */
.fs-38 {
  font-size: 2.375rem;
}

@media (max-width: 768px) {
  .fs-38 {
    font-size: 2.125rem;
  }
}

@media (max-width: 576px) {
  .fs-38 {
    font-size: 2rem;
  }
}

/* 56 */
.fs-56 {
  font-size: 3.5rem;
}

@media (max-width: 768px) {
  .fs-56 {
    font-size: 2.375rem;
  }
}

@media (max-width: 576px) {
  .fs-56 {
    font-size: 2.125rem;
  }
}

/* 200 */
.fs-200 {
  font-size: 12.5rem;
}

@media (max-width: 768px) {
  .fs-200 {
    font-size: 9rem;
  }
}

@media (max-width: 576px) {
  .fs-200 {
    font-size: 4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  display: block;
  color: currentColor;
}

.LastP-NoMargin p:last-of-type {
  margin-bottom: 0 !important;
}

a {
  display: inline-block;
  color: currentColor;
}

a:focus, a:active, a:hover {
  text-decoration: none;
  color: currentColor;
}

a.fc-blue {
  transition: all .15s;
}

a.fc-blue:hover {
  border-color: #4BB1FF !important;
  color: #4BB1FF !important;
}

.Btn {
  border: 2px solid currentColor;
  display: inline-block;
  padding: 0.7em 2em;
  background: none !important;
  color: currentColor;
  font-weight: 900;
  text-transform: uppercase;
}

.Btn.Rounded {
  border-radius: 100px;
}

hr {
  border: none;
  display: block;
  width: 100%;
  margin: 0 0 1.3rem;
  padding: 0;
  background-color: currentColor;
}

.FormElement {
  display: inline-flex;
  position: relative;
}

.FormElement:not(.Textarea):not(.File):not(.Checkbox):not(.Radio) {
  padding: 0.9em 1.3em;
}

.FormElement.bg-blueDark input::-webkit-input-placeholder {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input:-moz-placeholder {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input::-moz-placeholder {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input:-ms-input-placeholder {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input::-ms-input-placeholder {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input:placeholder-shown {
  color: #4BB1FF;
}

.FormElement.bg-blueDark input:focus::-webkit-input-placeholder {
  color: #ffffff;
}

.FormElement.bg-blueDark input:focus:-moz-placeholder {
  color: #ffffff;
}

.FormElement.bg-blueDark input:focus::-moz-placeholder {
  color: #ffffff;
}

.FormElement.bg-blueDark input:focus:-ms-input-placeholder {
  color: #ffffff;
}

.FormElement.bg-blueDark input:focus::-ms-input-placeholder {
  color: #ffffff;
}

.FormElement.bg-blueDark input:focus:placeholder-shown {
  color: #ffffff;
}

.FormElement input {
  background: none;
  border: none;
  font-weight: 600;
}

.FormElement.Textarea textarea {
  padding: 0.9em 1.3em;
  width: 100%;
  display: block;
  border: none;
  color: #4BB1FF;
  background: none;
  min-height: 199px;
}

.FormElement.Textarea textarea:focus {
  color: #ffffff;
}

.FormElement.File [type=text], .FormElement.File [type=file] {
  width: 100%;
  padding: 0.9em 0em;
}

.FormElement.File [type=text]::-webkit-input-placeholder, .FormElement.File [type=file]::-webkit-input-placeholder {
  color: #4BB1FF;
}

.FormElement.File [type=text]:-moz-placeholder, .FormElement.File [type=file]:-moz-placeholder {
  color: #4BB1FF;
}

.FormElement.File [type=text]::-moz-placeholder, .FormElement.File [type=file]::-moz-placeholder {
  color: #4BB1FF;
}

.FormElement.File [type=text]:-ms-input-placeholder, .FormElement.File [type=file]:-ms-input-placeholder {
  color: #4BB1FF;
}

.FormElement.File [type=text]::-ms-input-placeholder, .FormElement.File [type=file]::-ms-input-placeholder {
  color: #4BB1FF;
}

.FormElement.File [type=text]:placeholder-shown, .FormElement.File [type=file]:placeholder-shown {
  color: #4BB1FF;
}

.FormElement.File [type=file] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.FormElement.Checkbox {
  position: relative;
}

.FormElement.Checkbox .Icon {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(3);
  transform-origin: center center;
  left: 0.25em;
  transition: all .20s;
}

.FormElement.Checkbox label {
  position: relative;
  margin: 0;
  padding-left: 2.4em;
}

.FormElement.Checkbox label:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: #003A8A;
}

.FormElement.Checkbox [type=checkbox] {
  display: none;
}

.FormElement.Checkbox [type=checkbox]:checked ~ .Icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

[data-cover] {
  background-size: cover;
  background-position: center center;
}

.ThumbWrap.BG {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

.ThumbWrap img {
  max-width: 100%;
  width: 100%;
}

ul[class] {
  list-style: none;
  padding: 0;
  margin: 0;
}

.List_Inline > * {
  display: inline-flex;
}

i.Icon {
  line-height: 1;
  height: auto;
}

i.Icon svg {
  width: 1em;
  height: auto !important;
}

i.Icon svg * {
  fill: currentColor;
}

.Icon {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  font-style: normal;
}

.Icon span, .Icon svg {
  height: 1em;
  min-width: 1em;
  width: auto;
  display: inline-flex;
}

.Icon:not(.Icon-Reverse) span {
  margin-right: 0.4em;
}

.Icon.Icon-Reverse {
  flex-direction: row-reverse;
}

.Icon.Icon-Reverse span {
  margin-left: 0.4em;
}

.Icon span svg {
  margin: 0 !important;
}

dl {
  display: flex;
  flex-wrap: wrap;
}

dl dt, dl dd {
  display: inline-block;
}

dl dd {
  flex-grow: 1;
}

body .LoadingHolder {
  height: 100vh;
  width: 100vw;
  z-index: 1000000;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  transition: all .4s .7s;
  opacity: 1;
}

@keyframes LogoAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes LogoDisappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

body .LoadingHolder svg {
  max-width: 200px;
  width: 100px;
  height: auto;
  margin-bottom: 30px;
}

body.is-loading .LoadingHolder {
  opacity: 1;
  transition: all .3s 0s;
}

body.is-loading .LoadingHolder * {
  opacity: 0;
  animation: LogoAppear 1.3s forwards .3s;
}

body:not(.is-loading) .LoadingHolder {
  opacity: 0;
  pointer-events: none;
}

body:not(.is-loading) .LoadingHolder * {
  opacity: 1;
  animation: LogoDisappear 0.4s forwards 0.6s;
}

body:not(.is-loading) .LoadingHolder * .Frame {
  animation: LogoAppear 0.55s forwards 0s;
}

body:not(.Navigation_Open) #Navigation {
  transition: all .3s .4s;
  opacity: 0;
  pointer-events: none;
}

body:not(.Navigation_Open) #Navigation .BG svg {
  transition: all .8s .0s;
  opacity: 0;
}

body:not(.Navigation_Open) #Navigation .BG svg.c-top {
  top: -5vh;
  left: 50vw;
}

body:not(.Navigation_Open) #Navigation .BG svg.c-bottom {
  bottom: -8vh;
  left: 50vw;
}

body:not(.Navigation_Open) #Navigation aside {
  opacity: 0;
  transition: all .4s 0s;
}

body:not(.Navigation_Open) #Navigation nav {
  transition: all .4s 0s;
  opacity: 0;
  transform: translateX(-100px);
}

body.Navigation_Open #Navigation {
  transition: all .3s;
  opacity: 1;
  pointer-events: all;
}

body.Navigation_Open #Navigation .BG svg {
  transition: all .6s .3s;
}

body.Navigation_Open #Navigation .BG svg.c-top {
  top: -5vh;
  left: 12vw !important;
}

body.Navigation_Open #Navigation .BG svg.c-bottom {
  bottom: -8vh;
  left: 30vw;
}

body.Navigation_Open #Navigation aside {
  transition: all .3s .3s;
  opacity: 1;
}

body.Navigation_Open #Navigation nav {
  transition: all .4s .4s;
  opacity: 1;
  transform: translateX(0px);
}

body .barba-container {
  transition: all .6s;
  opacity: 1;
}

body .barba-container.is-changing-page, body .barba-container:not(.is-loaded) {
  opacity: 1;
}

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