/*	==============================================
	Base styles: opinionated defaults
	==============================================	*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #87cce8;
  color: #FFF;
  text-shadow: none;
}

::selection {
  background: #87cce8;
  color: #FFF;
  text-shadow: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*	==============================================
	Main layout
	==============================================	*/
body {
  width: 100%;
  font-family: "Roboto", "helvetica", "arial", "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: #303030;
  background: #EEEEEE;
}

.page {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 90px;
  background: #FFF;
  overflow: hidden;
}
@media all and (max-width: 1600px) {
  .page {
    max-width: 1200px;
  }
}
@media all and (max-width: 1400px) {
  .page {
    max-width: none;
    margin: 0 auto;
    margin-bottom: 90px;
  }
}

#pages .pagewidth,
.page-padding {
  padding: 0 80px;
}
#pages .home .pagewidth,
#pages .headsets .pagewidth {
	padding:0;
}

@media all and (max-width: 1100px) {
  .page-padding {
    padding: 0 40px;
  }
}
@media all and (max-width: 900px) {
  .page-padding {
    padding: 0 20px;
  }
}

/*	==============================================
	Navigation
	==============================================	*/
.navbar {
  padding: 10px 0;
  border-bottom: 1px solid #EEEEEE;
}
@media all and (max-width: 900px) {
  .navbar {
    padding: 0;
    position: relative;
    margin: 0 -20px;
  }
}

.navbar-footer {
  padding: 20px 0;
  border-bottom: none;
  border-top: 1px solid #EEEEEE;
}
@media all and (max-width: 900px) {
  .navbar-footer {
    display: none;
  }
}

@media all and (max-width: 900px) {
  .navbar-mobile {
    position: relative;
    display: block;
    padding: 10px 0;
    background: #FFF;
    z-index: 1000;
  }
}

.navbar-logo {
  float: left;
  display: block;
  width: 100px;
}
@media all and (max-width: 900px) {
  .navbar-logo {
    float: none;
    margin-left: 20px;
  }
}

@media all and (max-width: 900px) {
  .navbar-burger {
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    width: 40px;
    padding-top: 40px;
    background: url(../design/icons/icon_burger.png) center center no-repeat;
    background-size: 60%;
  }
}

.nav {
  float: right;
}
@media all and (max-width: 900px) {
  .nav {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    margin-top: -371px;
    background: #F6F6F6;
    z-index: 100;
    -webkit-transition: margin .3s;
    transition: margin .3s;
  }
}

.nav-close .nav {
  margin-top: -371px;
}

.nav-open .nav {
  margin-top: 0;
}

.nav-list {
  padding: 8px 0 0 0;
}
@media all and (max-width: 900px) {
  .nav-list {
    padding: 0;
    text-align: center;
  }
}

.nav-item {
  display: inline-block;
}
@media all and (max-width: 900px) {
  .nav-item {
    display: block;
    border-bottom: 1px solid #EEEEEE;
  }
}

.nav-item a {
  display: block;
  padding: 15px;
  font-size: 14px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.nav-item a:hover {
  color: #87cce8;
}
@media all and (max-width: 900px) {
  .nav-item a:hover {
    color: #FFF;
    background: #87cce8;
  }
}

.nav-item .actif {
  color: #87cce8;
}

.nav-item:last-child a {
  display: block;
  margin-left: 15px;
  padding: 12px 30px;
  border: 1px solid #87cce8;
  border-radius: 10em;
  -webkit-transition: all .2s;
  transition: all .2s;
}
@media all and (max-width: 900px) {
  .nav-item:last-child a {
    margin-left: 0;
    padding: 15px;
    font-size: 14px;
    border: none;
    border-radius: 0;
  }
}

.nav-item:last-child .actif {
  color: #FFF;
  background: #87cce8;
}

.nav-item:last-child a:hover {
  color: #FFF;
  background: #5db9df;
}

/*	==============================================
	Footer
	==============================================	*/
.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background: red;
  z-index: -1;
}

.footer-text {
  padding: 34px 0;
  color: #919191;
  background: #EEEEEE;
}

/*	==============================================
	Form
	==============================================	*/
.form-center {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 0 120px 0;
}
@media all and (max-width: 1100px) {
  .form-center {
    padding: 30px 0 90px 0;
  }
}
@media all and (max-width: 600px) {
  .form-center {
    padding: 0 0 60px 0;
  }
}

.form-title,
h2 {
  padding-top: 50px;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 300;
}

.form-list {
  margin: 0 -20px;
}

.form-50 {
  display: inline-block;
  width: 50%;
  padding: 0 20px;
  
  vertical-align: top;
}

.form-100 {
  display: inline-block;
  width: 100%;
  padding: 0 20px;
}

.form-label,
label {
  display: block;
  padding-top: 15px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #919191;
  -webkit-appearance: none;
}

.form-label-checkbox,
form .check_label {
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  color: #919191;
  -webkit-appearance: none;
}

.form-input-text,
form input[type="text"],
form input[type="password"],
form select {
  display: block;
  width: 100%;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #303030;
  border: 2px solid #EEEEEE;
  -webkit-appearance: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.form-input-text:hover,
form input[type="text"]:hover,
form input[type="password"]:hover {
  border: 2px solid #87cce8;
}

.form-input-submit,
form input[type="submit"],
form input[type="button"] {
  padding: 13px 30px;
  font-size: 16px;
  color: #FFF;
  background: #87cce8;
  border: 1px solid #87cce8;
  border-radius: 10em;
  -webkit-appearance: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  
  cursor:pointer;
}

.form-input-submit:hover,
form input[type="submit"]:hover,
form input[type="button"]:hover {
  background: #5db9df;
}

.form-btn,
form input[type="button"],
form input[type="submit"] {
  margin-top: 60px;
}

.form-input-textarea,
form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #303030;
  border: 2px solid #EEEEEE;
  -webkit-appearance: none;
  -webkit-transition: border .2s;
  transition: border .2s;
}

.form-input-textarea:hover,
form textarea:hover {
  border: 2px solid #87cce8;
}

.form-red {
  border: 2px solid red;
}

.form-green {
  border: 2px solid green;
}

.form-radio-label-text {
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  padding: 7px 20px;
  font-size: 14px;
  color: #919191;
  border: 2px solid #EEEEEE;
  border-radius: 5em;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.form-radio-label-text:hover {
  border: 2px solid #87cce8;
}

.form-radio-label-img,
form .check_label img {
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  padding: 15px;
  border: 2px solid #EEEEEE;
  border-radius: 20px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.form-radio-label-img:hover,
form .check_label img:hover {
  border: 2px solid #87cce8;
}

.form-radio-label-img img,
form .check_label img  {
  width: 40px;
  display: block;
}

.form-radio-btn,
input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  color: #FFF;
  background: #87cce8;
  border: 2px solid #87cce8;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(178, 222, 240, 0.8);
  /*visibility: hidden;*/
  opacity: 0;
  z-index: 1000000;
  -webkit-transition: all .5s;
  transition: all .5s;
}
/*
.popup-bg:target {
  visibility: visible;
  opacity: 1;
}
*/
.popup_container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 600px;
  padding: 30px;
  padding-bottom: 0;
  background: #FFF;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-55%) translateY(-50%);
}

.popup .cancel {
  position: absolute;
  top: 0;
  right: 6px;
  padding: 15px;
  font-size: 30px;
  
  cursor:pointer;
  color: #303030;
}

.popup h2 {
	padding-top: 0px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
  
  color:#303030;
}

.popup h3 {
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
}

.popup .content {
  padding-bottom: 30px;
  font-size: 14px;
  color: #919191;
}

.popup a {
  padding-top: 15px;
  padding-right: 10px;
  display: inline-block;
  font-size: 14px;
  color: #87cce8;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.popup a:hover {
  color: #5db9df;
}
.popup .button a:hover {
  color: #fff;
}
/*
.popup-inline-link {
  padding-bottom: 30px;
  font-size: 14px;
  color: #87cce8;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.popup-inline-link:hover {
  color: #5db9df;
}
*/

.popup ul {
  padding-bottom: 30px;
}

.popup li {
  margin-left: 18px;
  font-size: 14px;
  list-style: disc;
  color: #919191;
}

.popup img {
  margin-bottom: 30px;
}

.popup .button {
  margin-right: 10px;
  margin-bottom: 30px;
  margin-top:0px;
  display: inline-block; 
}
.popup .btn a {
	 font-size:16px;
}

.popup form {
  /*padding-bottom: 30px;*/
}
/*
.popup-checkbox {
  display: block;
}
*/

/*	==============================================
	Homepage
	==============================================	*/
.home-header {
  padding: 40px 0;
  text-align: center;
  
  /* STAN */
  padding-top:0px;
}
@media all and (max-width: 1100px) {
  .home-header {
    padding: 90px 0;
  }
}

.home-header-title {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
}

.home-header-text {
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 60px;
  font-size: 16px;
  color: #919191;
}

.home-vr {
  display: block;
  height: 650px;
  background: #919191;
  
  overflow:hidden;
}
@media all and (max-width: 900px) {
  .home-vr {
    height: 350px;
  }
}
@media all and (max-width: 600px) {
  .home-vr {
    height: 300px;
  }
}
@media all and (max-width: 400px) {
  .home-vr {
    height: 250px;
  }
}

.home-infos {
  padding: 60px 0;
  text-align: center;
  background-color: #F6F6F6;
}
@media all and (max-width: 600px) {
  .home-infos {
    padding: 60px 0;
  }
}

.home-infos-list {
  margin: 0 -20px;
}

.home-infos-item {
  display: inline-block;
  width: 25%;
  padding: 0 20px;
  vertical-align: top;
}
@media all and (max-width: 600px) {
  .home-infos-item {
    width: 50%;
    padding: 20px;
  }
}
@media all and (max-width: 400px) {
  .home-infos-item {
    width: 100%;
    padding: 20px;
  }
}

.home-infos-icon {
  display: inline-block;
  width: 60px;
  margin-bottom: 30px;
  padding-top: 60px;
}

.home-infos-icon-easy {
  background: url(../design/icons/icon_home_easy.png) 0 0 no-repeat;
  background-size: 100%;
}

.home-infos-icon-web {
  background: url(../design/icons/icon_home_web.png) 0 0 no-repeat;
  background-size: 100%;
}

.home-infos-icon-mobile {
  background: url(../design/icons/icon_home_mobile.png) 0 0 no-repeat;
  background-size: 100%;
}

.home-infos-icon-desktop {
  background: url(../design/icons/icon_home_desktop.png) 0 0 no-repeat;
  background-size: 100%;
}

.home-infos-title {
  padding-bottom: 30px;
  font-size: 18px;
}

.home-infos-text {
  font-size: 14px;
  color: #919191;
}

.home-exemples {
  padding-bottom: 60px;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .home-exemples {
    padding-bottom: 90px;
  }
}
@media all and (max-width: 600px) {
  .home-exemples {
    padding-bottom: 60px;
  }
}

.home-exemples-title {
  padding-bottom: 40px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
}

.home-exemples-list {
  margin: 0 -20px;
}

.home-exemples-item {
  display: inline-block;
  width: 50%;
  padding: 0 20px;
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}
@media all and (max-width: 600px) {
  .home-exemples-item {
    width: 100%;
    padding: 20px;
  }
}

.home-exemples-item:hover {
  opacity: 0.2;
}

.home-exemples-img {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center center;
  background-size: cover;
}

.home-headsets {
  text-align: center;
  background: #F6F6F6;
}
@media all and (max-width: 600px) {
  .home-headsets {
    padding-top: 60px;
  }
}

.home-headsets-title {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
}

.home-headsets-list {
  padding: 60px 0;
}

.home-headsets-item {
  display: inline-block;
  width: 25%;
  padding: 0 60px;
}
@media all and (max-width: 1100px) {
  .home-headsets-item {
    padding: 0 50px;
  }
}
@media all and (max-width: 900px) {
  .home-headsets-item {
    padding: 0 30px;
  }
}
@media all and (max-width: 600px) {
  .home-headsets-item {
    padding: 0 20px;
  }
}
@media all and (max-width: 400px) {
  .home-headsets-item {
    width: 50%;
    padding: 0 20px;
  }
}

/*	==============================================
	How to
	==============================================	*/
.how-section {
  padding: 0px 0;
}
@media all and (max-width: 1100px) {
  .how-section {
    padding: 90px 0;
  }
}
@media all and (max-width: 600px) {
  .how-section {
    padding: 60px 0;
  }
}

.how-section-grey {
  padding: 0px 0;
  background: #F6F6F6;
}
@media all and (max-width: 1100px) {
  .how-section-grey {
    padding: 90px 0;
  }
}
@media all and (max-width: 600px) {
  .how-section-grey {
    padding: 60px 0;
  }
}

.how-center {
  max-width: 1200px;
  margin: 0 auto;
}

.how-section h2 {
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
}

.how-section p {
  padding-bottom: 30px;
  color: #919191;
}

.how-section a {
  color: #87cce8;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.how-section a:hover {
  color: #5db9df;
}

.how-section img {
  margin-top: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/*	==============================================
	Headsets
	==============================================	*/
.headsets-section {
  padding: 120px 0;
}
@media all and (max-width: 1100px) {
  .headsets-section {
    padding: 90px 0;
  }
}

.headsets-section-grey {
  padding: 120px 0;
  background: #F6F6F6;
}
@media all and (max-width: 1100px) {
  .headsets-section-grey {
    padding: 90px 0;
  }
}

.headsets-section h2 {
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2em;
}

.headsets-section h3 {
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
}

.headsets-section p {
  padding-bottom: 30px;
  color: #919191;
}

.headsets-section a {
  color: #87cce8;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.headsets-section a:hover {
  color: #5db9df;
}

.headsets-section ol {
  padding-left: 22px;
  padding-bottom: 30px;
  list-style: decimal;
}

.headsets-section ul {
  padding-left: 22px;
  padding-bottom: 30px;
  list-style: disc;
}

.headsets-section li {
  padding: 5px 0;
  color: #919191;
}

.headsets-section img {
  margin-bottom: 30px;
}
@media all and (max-width: 1100px) {
  .headsets-section img {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}

.headsets-section .headsets-left img {
  padding-right: 60px;
  padding-left: 30px;
}

.headsets-section .headsets-right img {
  padding-left: 60px;
  padding-right: 30px;
}

.headsets-left {
  float: left;
  width: 50%;
  padding: 0 20px;
}
@media all and (max-width: 1100px) {
  .headsets-left {
    display: block;
    float: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
  }
}

.headsets-right {
  float: right;
  width: 50%;
  padding: 0 20px;
}
@media all and (max-width: 1100px) {
  .headsets-right {
    display: block;
    float: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
  }
}

/*	==============================================
	Prices
	==============================================	*/
.prices-title {
  padding: 120px 0;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .prices-title {
    padding: 90px 0;
  }
}
@media all and (max-width: 600px) {
  .prices-title {
    padding: 60px 0;
  }
}

.prices-item {
  display: inline-block;
  width: 20%;
  padding-bottom: 120px;
  vertical-align: top;
}
@media all and (max-width: 900px) {
  .prices-item {
    width: 50%;
  }
}
@media all and (max-width: 400px) {
  .prices-item {
    width: 100%;
  }
}

.prices-item-title {
  position: relative;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 400;
  color: #87cce8;
}

.prices-item-title::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #EEEEEE;
  content: "";
}

.prices-item-price {
  padding-top: 30px;
  font-size: 18px;
  font-weight: 300;
}

.prices-item-price-info {
  height: 60px;
  padding-top: 5px;
  font-size: 12px;
  font-weight: 400;
  color: #919191;
}

.prices-item-btn {
  padding-bottom: 60px;
}

.prices-item-btn .current {
  color: #87cce8;
  background: #FFF;
}

.prices-item-btn .current:hover {
  color: #FFF;
  background: #87cce8;
}

.price-info-title {
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #FFF;
}

.prices-item:first-child .price-info-title {
  color: #919191;
}

@media all and (max-width: 900px) {
  .prices-item:nth-child(3) .price-info-title {
    color: #919191;
  }
}

@media all and (max-width: 400px) {
  .prices-item .price-info-title {
    color: #919191;
  }
}

.price-info-text {
  margin-bottom: 15px;
  padding: 15px;
  font-size: 14px;
  background: #F6F6F6;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

.price-info-text-white {
  background: #FFF;
}
@media all and (max-width: 900px) {
  .price-info-text-white {
    background: #F6F6F6;
  }
}

.prices-legale {
  margin-top: -90px;
  margin-bottom: 120px;
  font-size: 12px;
  color: #919191;
}

/*	==============================================
	Projects
	==============================================	*/
.projects-info {
  padding: 60px 0;
  text-align: center;
}
@media all and (max-width: 600px) {
  .projects-info {
    padding: 30px 0;
  }
}

.projects-info p {
  color: #919191;
}

.projects-info a {
  color: #87cce8;
}

.projects-title {
  padding: 120px 0 0 0;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .projects-title {
    padding: 90px 0 0 0;
  }
}
@media all and (max-width: 600px) {
  .projects-title {
    padding: 60px 0 0 0;
  }
}

.projects-list {
  padding-bottom: 60px;
  margin: 0 -20px;
}

.projects-item {
  display: inline-block;
  width: 33.33333%;
  padding: 0 20px 60px 20px;
  vertical-align: top;
  
  position:relative;
}
@media all and (max-width: 900px) {
  .projects-item {
    width: 50%;
  }
}
@media all and (max-width: 600px) {
  .projects-item {
    width: 100%;
  }
}

.projects-item:nth-child(-n+2) {
  width: 50%;
}
@media all and (max-width: 600px) {
  .projects-item:nth-child(-n+2) {
    width: 100%;
  }
}

.projects-item-img {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 30px;
  opacity: 1;
  background-position: center center;
  background-size: cover;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.projects-item-img:hover {
  opacity: .2;
}

.projects-item-title {
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 400;
}

.projects-item-text {
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #919191;
}

.projects-item-link {
  display: inline-block;
  padding-right: 2px;
  padding-bottom: 4px;
}

.projects-item-link a {
  display: inline-block;
  padding: 3px 15px;
  font-size: 14px;
  color: #87cce8;
  border: 1px solid #87cce8;
  border-radius: 7px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.projects-item-link a:hover {
  color: #FFF;
  background: #87cce8;
}

.projects-btn {
  margin-top: 15px;
}

/*	==============================================
	Project
	==============================================	*/
.project-theme-hover {
  position: relative;
}

.project-theme-img {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 600px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transform: translateX(-50%) translateY(-100%);
  -ms-transform: translateX(-50%) translateY(-100%);
  transform: translateX(-55%) translateY(-100%);
}

.project-theme-hover:hover .project-theme-img {
  display: block;
}
@media all and (max-width: 1100px) {
  .project-theme-hover:hover .project-theme-img {
    display: none;
  }
}

.panorama-list {
  margin: -7px -10px;
}

.panorama-item {
  display: inline-block;
  width: 33.33333%;
  padding: 7px 10px;
  opacity: 1;
  vertical-align: top;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.panorama-item:hover {
  opacity: .8;
}

.panorama-img {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-position: center center;
  background-size: cover;
}

.panorama-img:hover {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  background-image: url(../design/projects/delete.png) !important;
  background-position: center center;
  background-size: cover;
  opacity: 1 !important;
}

.panorama-description {
  padding-top: 5px;
}

.panorama-label {
  display: inline-block;
  /*padding-bottom: 15px;*/
  padding-top:10px;
  font-size: 14px;
  color: #919191;
}

.panorama-input-text {
  margin-top: 10px;
  padding: 5px;
  color: #303030;
}

/*	==============================================
	Contact
	==============================================	*/
.contact-intro {
  padding-top: 30px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #919191;
}

/*	==============================================
	btn
	==============================================	*/
.btn,
.button,
input[type="button"] {
  display: inline-block;
}

.btn a,
.button a {
  display: block;
  padding: 13px 30px;
  color: #FFF;
  background: #87cce8;
  border: 1px solid #87cce8;
  border-radius: 10em;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn a:hover,
.button a:hover {
  background: #5db9df;
}

.btn-white a {
  color: #919191;
  background: #FFF;
  border: 1px solid #87cce8;
  border-radius: 10em;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.btn-white a:hover {
  color: #FFF;
  background: #87cce8;
}

/*	==============================================
	Fluid Media
	==============================================	*/
.fluid-img {
  width: 100%;
  display: block;
}

.fluid-video {
  /*padding-top: 56.25%;*/
  /*16/9*/
  position: relative;
  background: #20242F;
}

.fluid-video > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
  border: none;
  
  height:inherit;
  overflow:hidden;
}

/*	==============================================
	Clearfix
	==============================================	*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*	==============================================
	Animate.css
	==============================================	*/
/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/*	==============================================
 	Fade in
 	==============================================	*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*	==============================================
	Fade in up
	==============================================	*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*	==============================================
	Fade in down
	==============================================	*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*	==============================================
	Fade in left
	==============================================	*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

/*	==============================================
	Fade in right
	==============================================	*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/*	==============================================
	Zoom in
	==============================================	*/
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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


/* ==================================== */
/* --------- ELLIOT ------------------- */

.img img {
	vertical-align:top;
}
.img_center {
	text-align:center;
}
