@charset "utf-8";

@font-face {
    font-family: 'Apercu-Light';
    src: url('../fonts/Apercu-Light/apercu-light-pro.eot');
    src: url('../fonts/Apercu-Light/apercu-light-pro.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Apercu-Light/apercu-light-pro.woff') format('woff'),
         url('../fonts/Apercu-Light/apercu-light-pro.woff2') format('woff2'),
         url('../fonts/Apercu-Light/apercu-light-pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu';
    src: url('../fonts/Apercu-Regular/apercu-regular-pro.eot');
    src: url('../fonts/Apercu-Regular/apercu-regular-pro.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Apercu-Regular/apercu-regular-pro.woff') format('woff'),
         url('../fonts/Apercu-Regular/apercu-regular-pro.woff2') format('woff2'),
         url('../fonts/Apercu-Regular/apercu-regular-pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Apercu-Bold';
    src: url('../fonts/Apercu-Bold/apercu-bold-pro.eot');
    src: url('../fonts/Apercu-Bold/apercu-bold-pro.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Apercu-Bold/apercu-bold-pro.woff') format('woff'),
         url('../fonts/Apercu-Bold/apercu-bold-pro.woff2') format('woff2'),
         url('../fonts/Apercu-Bold/apercu-bold-pro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'Apercu';
    margin: 0;
    padding: 0;
    color: #373737;
	background: #4b4f6e;
	background: -moz-linear-gradient(45deg, #4b4f6e 32%, #f0f3f7 100%);
	background: -webkit-linear-gradient(45deg, #4b4f6e 32%, #f0f3f7 100%);
	background: linear-gradient(45deg, #4b4f6e 32%, #f0f3f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr="#4b4f6e",
			endColorstr="#f0f3f7",
			GradientType=1
		);
}
#how{
  position: fixed;
  bottom: 10px;
  right: 10px;
}
#how a{
  color: #fff;
  text-decoration: none;
}
#how a:hover{
  text-decoration: underline;
}
.container{
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-around;
  margin: 0 auto;
  height: 100vh;
  width: 100%;
}
.container div{
  display: flex;
  align-items: center;
  flex: 50%
}
.container div.left{
  
}
.container div.left video{
  margin: 0 auto;
}
.container div.right{
  color: #fff;
  display: grid;
  place-items: center;
}
.container div.right .content{
  display: grid;
  
  max-width: 60%;
}
.container div.right .btn{
  background: #4b4f6e;
  border:1px solid #fff;
  color: #fff;
  font-family: 'Apercu-Bold';
  font-size: 20px;
  padding: 20px;
  max-width: 300px;
  text-transform: uppercase;
}

.loading{
    position: absolute;
    background: #4b4f6e;
    display: grid !important;
    place-items: center;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
  }
.lds-roller {
    display: inline-block;
    position: absolute;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .modal{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
  }
  .modal.open{display: grid;}
  .modal .modal__box{
    background-color:#fff;
    border:5px solid #4b4f6e;
    display: flex;
    margin: auto;
    padding: 50px;
    position: relative;
    max-height: 50%;
    max-width: 50%;

    -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
  }
  .modal__close{
    color: #000;
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size:20px;
  }
  .modal .modal__box .modal__box__picture{
    flex:2;
  }
  .modal .modal__box .modal__box__info{
    align-items: center;
    flex:1;
    padding: 0 20px;
  }
  .modal .modal__box .modal__box__info p{
    font-family: 'Apercu-bold';
  }
  .modal .modal__box img{
    border: 1px solid #4b4f6e;
    width:100%
  }
  .modal .modal__box .modal__box__info dl{
    display: flex;
    flex-direction: row;
    margin-top: 197px;
  }
  .modal .modal__box .modal__box__info dl dd a{
    text-indent: -12000px;
    overflow: hidden;
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .modal .modal__box .modal__box__info dl dd a.tw{
    background: url('../images/twitter.svg');
  }
  .modal .modal__box .modal__box__info dl dd a.linkedin{
    background: url('../images/linkedin.svg');
  }
  .modal .modal__box .modal__box__info dl dd a.fb{
    background: url('../images/fb.svg');
  }
  .modal .modal__box .modal__box__info form{
    margin-top: 10px;
  }
  .modal .modal__box .modal__box__info form input{
    border: 1px solid  #4b4f6e;
    color: #4b4f6e;
    font-size: 20px;
    max-width: 50%;
    padding: 20px;
  }
  .modal .modal__box .modal__box__info .btn{
    background: #fff;
    border:2px solid #4b4f6e;
    color: #4b4f6e;
    font-family: 'Apercu-Bold';
    font-size: 20px;
    padding: 20px;
    max-width: 300px;
    text-transform: uppercase;
  }