/*------------------------
1. Base
------------------------*/
/* RESET CSS */
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;
}

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

/* BASE */
@-moz-keyframes fadein { /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein { /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-delay-1 {
  opacity: 1;
  -moz-animation: fadein 500ms linear; /* Firefox */
  -webkit-animation: fadein 500ms linear; /* Safari and Chrome */
  -o-animation: fadein 500ms linear; /* Opera */
  animation: fadein 500ms linear;
}

body {
  font-family: sans-serif;
  margin: 0;
}

img {
  border: 0;
}

ul {
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}

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

a:active, a:focus {
  color: inherit;
  outline: none;
}

input, select {
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  width: 100%;
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: inherit;
}

::-moz-placeholder { /* Firefox 19+ */
  color: inherit;
}

:-ms-input-placeholder { /* IE 10+ */
  color: inherit;
}

:-moz-placeholder { /* Firefox 18- */
  color: inherit;
}

#navigation {
  margin: 0 auto;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* SLICK */
.slick-slider {
  margin-bottom: 0;
}

.slick-prev, .slick-next {
  top: 48%;
  top: -webkit-calc(50% - 15px);
  top: -moz-calc(50% - 15px);
  top: calc(50% - 15px);
}

.slick-prev, .slick-prev:hover, .slick-prev:focus {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
  width: 27px;
  height: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  left: -50px;
  z-index: 999;
}

.slick-prev:before {
  content: "";
}

.slick-next, .slick-next:hover, .slick-next:focus {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E") 0;
  width: 27px;
  height: 44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  right: -50px;
  z-index: 999;
}

.slick-next:before {
  content: "";
}

/* MENU */
.menu {
  margin: 0 auto;
  /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
  /*overflow-x: hidden;*/
  /*overflow-y:auto;*/
  /*-webkit-transform: translate3d(0,0,0);*/
  /*-webkit-overflow-scrolling: touch;*/
}

.menuSelected {
  font-weight: bold;
}

/* MENU MOBILE */
.menuMobile {
  display: none;
}

#mobile-logo {
  width: 163px;
  margin: 0 auto;
}

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f2f2f2;
  z-index: 1;
  text-align: center;
  /* Correction pour le bug d'overlap lors d'un scroll rapide et que le menu est en position fixed */
  /*overflow-x: hidden;*/
  /*overflow-y:auto;*/
  /*-webkit-transform: translate3d(0,0,0);*/
  /*-webkit-overflow-scrolling: touch;*/
}

#mobile-menu-content {
  display: none;
  position: fixed;
  top: 76px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  overflow: auto;
  background-color: white;
}

#mobile-search {
  position: absolute;
  top: 2px;
  right: 15px;
}

#mobile-search-close {
  display: none;
}

#nav {
  margin-top: 20px;
}

#nav > li > a {
  display: block;
  padding: 10px 18px;
}

#nav li ul {
  display: none;
  padding: 0 17px;
}

#nav li ul li {
  padding: 5px;
}

/* SEARCH */
#searchBar .searchBarInput::placeholder, #searchBar .searchBarInput::-webkit-input-placeholder, #searchBar .searchBarInput::-moz-placeholder, #searchBar .searchBarInput:-ms-input-placeholder, #searchBar .searchBarInput::-moz-placeholder {
  color: #7e7e7e;
}

.searchModels {
  width: 100%;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  text-align: center;
  line-height: 32px;
  outline: none;
}

/* FOOTER */
#footer {
  text-align: center;
  font-size: 12px;
  font-weight: 100;
}

body {
  overflow-x: hidden;
  font-family: "Styrene A Regular";
  position: relative;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Styrene A Regular";
  src: url("../fonts/StyreneA-Regular.eot");
  src: url("../fonts/StyreneA-Regular.eot%3F") format("embedded-opentype"), url("../fonts/StyreneA-Regular.woff2") format("woff2"), url("../fonts/StyreneA-Regular.woff") format("woff"), url("../fonts/StyreneA-Regular.ttf") format("truetype"), url("../fonts/StyreneA-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A light Italic";
  src: url("../fonts/StyreneA-LightItalic.eot");
  src: url("../fonts/StyreneA-LightItalic.eot%3F") format("embedded-opentype"), url("../fonts/StyreneA-LightItalic.woff2") format("woff2"), url("../fonts/StyreneA-LightItalic.woff") format("woff"), url("../fonts/StyreneA-LightItalic.ttf") format("truetype"), url("../fonts/StyreneA-LightItalic.svg") format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Styrene B Regular";
  src: url("../fonts/StyreneB-Regular.eot");
  src: url("../fonts/StyreneB-Regular.eot%3F") format("embedded-opentype"), url("../fonts/StyreneB-Regular.woff2") format("woff2"), url("../fonts/StyreneB-Regular.woff") format("woff"), url("../fonts/StyreneB-Regular.ttf") format("truetype"), url("../fonts/StyreneB-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene B Medium";
  src: url("../fonts/StyreneB-Medium.eot");
  src: url("../fonts/StyreneB-Medium.eot%3F") format("embedded-opentype"), url("../fonts/StyreneB-Medium.woff2") format("woff2"), url("../fonts/StyreneB-Medium.woff") format("woff"), url("../fonts/StyreneB-Medium.ttf") format("truetype"), url("../fonts/StyreneB-Medium.svg") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene B Light";
  src: url("../fonts/StyreneB-Light.eot");
  src: url("../fonts/StyreneB-Light.eot%3F") format("embedded-opentype"), url("../fonts/StyreneB-Light.woff2") format("woff2"), url("../fonts/StyreneB-Light.woff") format("woff"), url("../fonts/StyreneB-Light.ttf") format("truetype"), url("../fonts/StyreneB-Light.svg") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene B Regular Italic";
  src: url("../fonts/StyreneB-RegularItalic.eot");
  src: url("../fonts/StyreneB-RegularItalic.eot%3F") format("embedded-opentype"), url("../fonts/StyreneB-RegularItalic.woff2") format("woff2"), url("../fonts/StyreneB-RegularItalic.woff") format("woff"), url("../fonts/StyreneB-RegularItalic.ttf") format("truetype"), url("../fonts/StyreneB-RegularItalic.svg") format("svg");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
#navigation {
  overflow: hidden;
  min-height: calc(100vh - 95px);
  width: calc(100vw - 15px);
}

button {
  outline: none;
}

/*------------------------
2. Style
------------------------*/
.menuSpace {
  padding: 45px 100px;
  padding-bottom: 12px;
  height: 38px;
  display: block;
}

#searchBar .searchBarInput svg.searchDestkop {
  display: block;
}
#searchBar .searchBarInput svg.searchMobile {
  display: none;
}

.menuFixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fafafa;
  z-index: 2;
  overflow: hidden;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding: 45px 100px;
  padding-bottom: 12px;
  height: 38px;
  width: calc(100vw - 215px);
  font-size: 12px;
  letter-spacing: -0.025px;
}
.menu .logo a {
  display: block;
}
.menu .logo a img {
  width: auto;
  height: 34px;
}
.menu .menuRight {
  display: flex;
  align-items: center;
  align-content: center;
}
.menu .menuRight .changeCity, .menu .menuRight .searchBar, .menu .menuRight .hamburger {
  font-family: "Styrene B Regular";
  margin-left: 24px;
  font-size: 12px;
  letter-spacing: -0.025px;
  color: #272726;
  transition: opacity 0.2s;
}
.menu .menuRight .changeCity i, .menu .menuRight .searchBar i, .menu .menuRight .hamburger i {
  margin-left: 16.5px;
  transition: opacity 0.2s;
}
.menu .menuRight .changeCity svg g, .menu .menuRight .searchBar svg g, .menu .menuRight .hamburger svg g {
  transition: all 0.2s;
}
.menu .menuRight .changeCity:hover, .menu .menuRight .searchBar:hover, .menu .menuRight .hamburger:hover {
  color: #C4C4C4;
}
.menu .menuRight .changeCity:hover i, .menu .menuRight .searchBar:hover i, .menu .menuRight .hamburger:hover i {
  opacity: 0.25;
}
.menu .menuRight .changeCity:hover svg g, .menu .menuRight .searchBar:hover svg g, .menu .menuRight .hamburger:hover svg g {
  stroke: #C4C4C4;
}
.menu .menuRight .searchBar {
  font-size: 0;
}
.menu .menuRight .changeCity {
  padding: 10px;
  margin: -10px;
}
.menu .menuRight .searchBar a {
  padding: 10px;
  margin: -10px;
}
.menu .menuRight .hamburger {
  padding: 0;
  margin-left: 24px;
  position: relative;
}
.menu .menuRight .hamburger a {
  display: block;
  padding: 10px;
  margin: -10px;
}
.menu .menuRight .hamburger a.close {
  display: none;
}
.menu .menuRight .hamburger a svg {
  display: block;
}
.menu .menuRight .hamburger.active .open {
  display: none;
}
.menu .menuRight .hamburger.active .close {
  display: block;
}

.menuOpen {
  position: fixed;
  left: 0;
  right: 0;
  top: 95px;
  background: #fafafa;
  width: calc(100vw - 215px);
  padding: 40px 100px;
  padding-top: 25px;
  z-index: 1;
  display: none;
  margin: 0 auto;
}
.menuOpen .content {
  display: flex;
}
.menuOpen .content .menuItem {
  width: 20%;
  position: relative;
}
.menuOpen .content .menuItem.hideOnDesktop, .menuOpen .content .menuItem span {
  display: none;
}
.menuOpen .content .menuItem h3 {
  font-family: "Styrene B Regular";
  font-size: 12px;
  letter-spacing: -0.01875px;
  margin-bottom: 10px;
  position: relative;
  left: -1px;
}
.menuOpen .content .menuItem h3.btn {
  background: #000000;
  color: #FFF;
  padding: 3px 0 5px;
  width: 75px;
  text-align: center;
  cursor: pointer;
}
.menuOpen .content .menuItem:hover .subMenu {
  visibility: visible;
}
.menuOpen .content .menuItem .subMenu {
  position: absolute;
  width: 100%;
  top: 20px;
  left: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
}
.menuOpen .content .menuItem .subMenu li a {
  font-family: "Styrene B Regular";
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.03125px;
  position: relative;
  width: fit-content;
  padding-bottom: 2px;
  margin-right: 20px;
  position: relative;
  left: -2px;
  transition: opacity 0.2s;
}
.menuOpen .content .menuItem .subMenu li a.menuSelected {
  font-weight: normal;
}
.menuOpen .content .menuItem .subMenu li a.menuSelected:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  background: #aeaeae;
  height: 1px;
}
.menuOpen .content .menuItem .subMenu li a:hover {
  opacity: 0.25;
}

#searchBar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fafafa;
  height: calc(100vh - 80px);
  padding: 40px 100px;
  background: #fafafa;
  z-index: 2;
  overflow: auto;
}
#searchBar .close {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 24px;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  transition: all 0.2s;
}
#searchBar .close:hover {
  transform: scale(1.2);
}
#searchBar .mobile {
  display: none;
}
#searchBar .searchBarInput {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  padding-top: 5px;
}
#searchBar .searchBarInput .searchModels {
  font-family: "Styrene B Regular";
  padding-left: 15px;
  background-color: transparent;
  text-align: left;
  color: black;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: -0.03125px;
  color: #1A1919;
}
#searchBar .result {
  margin-top: 22px;
}
#searchBar .result .pagelist {
  display: flex;
}
#searchBar .result .pagelist .listElements {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 650px;
  width: 70%;
}
#searchBar .result .pagelist .listElements.nameOnly {
  max-width: 30%;
  width: 100%;
  flex-direction: column;
}
#searchBar .result .pagelist .listElements.nameOnly .modelElement {
  width: calc(100% - 30px);
  margin: 0;
}
#searchBar .result .pagelist .listElements.nameOnly .modelElement a {
  font-family: "Styrene B Regular";
  padding: 0;
  font-size: 13px;
  letter-spacing: -0.020313px;
  line-height: 20px;
  color: #000000;
  display: inline-block;
}
#searchBar .result .pagelist .listElements.nameOnly .modelElement a span {
  font-family: "Styrene B Regular";
  color: #B3B3B3;
  font-size: 9px;
  letter-spacing: -0.014063px;
  display: inline-block;
  margin-left: 5px;
  padding: 0;
}
#searchBar .result .pagelist .listElements .modelElement {
  width: calc(47.5% - 22px);
  margin: 5px 11px;
  margin-top: 18px;
  margin-bottom: 0;
}
#searchBar .result .pagelist .listElements .modelElement a {
  display: flex;
  flex-direction: column;
}
#searchBar .result .pagelist .listElements .modelElement a span {
  color: #1A1919;
  font-family: "Styrene B Regular";
  padding: 20px 0;
  padding-bottom: 15px;
  text-align: center;
  letter-spacing: -0.454545px;
  font-size: 20px;
  display: block;
}
#searchBar .result .pagelist .listElements .modelElement a img {
  width: 100%;
  height: auto;
}

.showMobileMenuOpen {
  display: none;
}

@media screen and (max-width: 980px) {
  .menuSpace {
    padding: 15px 20px;
    padding-bottom: 20px;
    height: 23px;
    display: block;
  }
  #searchBar .result .pagelist {
    display: flex;
    flex-direction: column;
  }
  #searchBar .result .pagelist .listElements.nameOnly {
    max-width: 100%;
    width: 100%;
  }
  #searchBar .result .pagelist .listElements {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #navigation {
    width: calc(100vw - 0px);
  }
  #searchBar .searchBarInput {
    margin-top: -11px;
    padding-top: 0;
  }
  #searchBar .close {
    display: none;
  }
  #searchBar .close.mobile {
    display: block;
  }
  #searchBar .close:hover {
    transform: scale(1);
  }
  body.overflowMobile {
    overflow: hidden !important;
  }
  .menuOpen {
    display: none;
    height: calc(100vh - 208px);
    width: calc(100% - 200px);
    padding: 50px 100px;
    position: fixed;
    z-index: 2;
    background: #fafafa;
    color: #000000;
    top: 68px;
  }
  .menuOpen .content {
    flex-direction: column;
    padding-top: 32px;
  }
  .menuOpen .content .menuItem {
    margin-bottom: 30px;
    font-family: "Styrene B Regular";
    display: block;
    width: 100%;
  }
  .menuOpen .content .menuItem h3 {
    font-size: 13px;
    letter-spacing: -0.020313px;
    margin-bottom: 12px;
  }
  .menuOpen .content .menuItem a {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03125px;
    display: inline-block;
  }
  .menuOpen .content .menuItem span {
    display: inline-block;
    font-size: 20px;
    margin-right: 20px;
  }
  .menuOpen .content .menuItem.hideOnDesktop {
    display: block;
  }
  #searchBar {
    height: calc(100vh - 40px);
    padding: 22px 20px;
  }
  #searchBar .close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .menu {
    padding: 10px 20px;
    width: auto;
  }
  .menu .logo a img {
    width: auto;
    height: 24px;
  }
  .menu .logo a i {
    margin-left: 10px;
  }
  .menu .menuRight .searchBar {
    font-size: 14px;
  }
  .hideOnMobile {
    display: none;
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo.active .logod1 {
    display: none;
  }
  .logo.active .showMobileMenuOpen {
    display: block;
  }
  .menuOpen {
    padding: 30px 20px;
    padding-top: 10px;
    height: calc(100vh - 20px);
    width: calc(100% - 40px);
    top: 58px;
  }
  .menuOpen .content div h3 {
    font-size: 13px;
    font-family: "Styrene B Regular";
  }
  .menuOpen .content div a {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  #searchBar .searchBarInput svg.searchMobile {
    display: block;
  }
  #searchBar .searchBarInput svg.searchDestkop {
    display: none;
  }
  .menu .menuRight .changeCity i, .menu .menuRight .searchBar i, .menu .menuRight .hamburger i {
    margin-left: 16.5px;
    transition: opacity 0.2s;
  }
  .menu .menuRight .changeCity svg g, .menu .menuRight .searchBar svg g, .menu .menuRight .hamburger svg g {
    transition: all 0.2s;
  }
  .menu .menuRight .changeCity:hover, .menu .menuRight .searchBar:hover, .menu .menuRight .hamburger:hover {
    color: #1A1919;
  }
  .menu .menuRight .changeCity:hover i, .menu .menuRight .searchBar:hover i, .menu .menuRight .hamburger:hover i {
    opacity: 1;
  }
  .menu .menuRight .changeCity:hover svg g, .menu .menuRight .searchBar:hover svg g, .menu .menuRight .hamburger:hover svg g {
    stroke: #1A1919;
  }
  #searchBar .result {
    margin-top: 8px;
  }
  #searchBar .searchBarInput i {
    font-size: 16px;
  }
  #searchBar .searchBarInput .searchModels {
    font-size: 12px;
    padding-left: 12px;
  }
  #searchBar .result .pagelist .listElements.nameOnly {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
    margin: 0;
  }
  #searchBar .close {
    position: absolute;
    top: 23px;
    right: 22px;
    z-index: 4;
    width: 12px !important;
    height: 12px !important;
  }
  #searchBar .result .pagelist .listElements {
    margin: 0;
  }
  #searchBar .result .pagelist .listElements.nameOnly {
    margin-bottom: 20px;
  }
  #searchBar .result .pagelist .listElements.nameOnly .modelElement {
    margin-bottom: 0;
    width: 100%;
  }
  #searchBar .result .pagelist .listElements.nameOnly .modelElement a {
    line-height: 18px;
  }
  #searchBar .result .pagelist .listElements .modelElement a span {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
  }
  #searchBar .result .pagelist .listElements {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #searchBar .result .pagelist .listElements .modelElement {
    width: calc(50% - 3px);
    margin: 0px;
  }
}
#footer {
  padding: 50px 100px;
  width: calc(100vw - 215px);
  margin: 0 auto;
  font-family: "Styrene B Regular";
  color: #272726;
}
#footer .contacts-footer {
  display: flex;
  justify-content: space-between;
}
#footer .contacts-footer .contacts-element {
  text-align: left;
  font-size: 12px;
  letter-spacing: -0.015px;
  line-height: 1.3;
}
#footer .contacts-footer .contacts-element h4 {
  letter-spacing: 0;
  font-size: 15px;
  margin-bottom: 16px;
}
#footer .contacts-footer .contacts-element span.email {
  display: block;
  margin-top: 8px;
}
#footer .contacts-footer .contacts-element a {
  transition: opacity 0.2s;
}
#footer .contacts-footer .contacts-element a i {
  font-size: 30px;
}
#footer .contacts-footer .contacts-element a:hover {
  opacity: 0.25;
}
#footer .contacts-footer .contacts-element #newsletterForm {
  margin-top: 30px;
}
#footer .contacts-footer .contacts-element #newsletterForm .form {
  display: flex;
}
#footer .contacts-footer .contacts-element #newsletterForm input {
  font-family: "Styrene B Regular";
  ffont-size: 12px;
  letter-spacing: -0.015px;
  border: none;
  color: black;
  border-bottom: 1px solid #aeaeae;
  border-radius: 0 !important;
  background: transparent;
  padding: 3px 0;
}
#footer .contacts-footer .contacts-element #newsletterForm input::placeholder {
  color: black;
}
#footer .contacts-footer .contacts-element #newsletterForm #outputNewsletter {
  font-size: 12px;
  margin-top: 5px;
}
#footer .contacts-footer .contacts-element #newsletterForm button {
  font-family: "Styrene B Regular";
  font-size: 12px;
  letter-spacing: -0.015px;
  border: none;
  border-radius: 0 !important;
  color: black;
  background-color: transparent;
  border-bottom: 1px solid #aeaeae;
  background: transparent;
  padding: 3px 0;
  margin-left: 0px;
  cursor: pointer;
}
#footer .contacts-footer .contacts-element:last-of-type {
  width: 33.33%;
}
#footer .bottom-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  font-family: "Styrene B Regular";
  font-size: 10px;
  letter-spacing: -0.0125px;
}
#footer .bottom-footer a {
  position: relative;
  transition: opacity 0.2s;
}
#footer .bottom-footer a:hover {
  opacity: 0.25;
}

#notice {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
}
#notice .notice-container {
  display: flex;
  flex-direction: column;
  background: #000000;
  color: #FFFFFF;
  padding: 50px;
  width: 75%;
  max-width: 700px;
  max-height: 450px;
  justify-content: space-between;
  height: 100%;
}
#notice .notice-container .heading {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
}
#notice .notice-container .content {
  font-size: 22px;
}
#notice .notice-container .content p {
  margin-bottom: 20px;
}
#notice .notice-container .buttons {
  display: flex;
  justify-content: center;
}
#notice .notice-container .buttons button {
  padding: 20px 0;
  width: calc(50% - 20px);
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #000000;
}

@media screen and (max-width: 1280px) {
  #footer .contacts-footer {
    flex-wrap: wrap;
    row-gap: 20px;
  }
  #footer .contacts-footer .contacts-element {
    width: 25%;
  }
  #footer .contacts-footer .contacts-element:last-of-type {
    width: 50%;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1024px) {
  #footer .contacts-footer {
    flex-wrap: wrap;
  }
  #footer .contacts-footer .contacts-element {
    width: 50%;
    margin-bottom: 40px;
  }
  #footer .contacts-footer .contacts-element:last-of-type {
    margin-bottom: 0px;
  }
  #footer .bottom-footer {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    padding: 30px 20px;
    width: calc(100vw - 40px);
  }
  #footer .contacts-footer {
    flex-wrap: wrap;
  }
  #footer .contacts-footer .contacts-element {
    width: 100%;
    margin-bottom: 29px;
  }
  #footer .contacts-footer .contacts-element:last-of-type {
    width: 100%;
  }
  #footer .bottom-footer {
    flex-wrap: wrap;
    max-width: 70%;
    line-height: 16px;
  }
  #footer .bottom-footer .terms {
    margin-bottom: 10px;
  }
  #footer .bottom-footer .terms, #footer .bottom-footer .credit {
    width: 100%;
  }
  #notice .notice-container {
    height: 350px;
  }
  #notice .notice-container .heading {
    font-size: 30px;
  }
  #notice .notice-container .content {
    font-size: 18px;
  }
  #notice .notice-container .buttons a, #notice .notice-container .buttons button {
    padding: 15px 0;
  }
}
@media screen and (max-width: 450px) {
  #footer .contacts-footer .contacts-element #newsletterForm .form {
    flex-direction: column;
    align-items: flex-start;
  }
  #notice .notice-container {
    height: 350px;
  }
  #notice .notice-container .heading {
    font-size: 25px;
  }
  #notice .notice-container .content {
    font-size: 15px;
  }
  #notice .notice-container .buttons a, #notice .notice-container .buttons button {
    padding: 10px 0;
    font-size: 12px;
  }
}
.landingpage {
  display: flex;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #fafafa;
}
.landingpage .close {
  position: absolute;
  top: 42px;
  right: 35px;
  z-index: 4;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  transition: all 0.2s;
}
.landingpage .close:hover {
  transform: scale(1.2);
}
.landingpage .close.mobile {
  display: none !important;
}
.landingpage .selectCity, .landingpage .landingSlider {
  max-width: 50%;
  width: 100%;
  max-height: 100vh;
}
.landingpage .selectCity {
  width: calc(100% - 200px);
  padding: 50px 100px;
}
.landingpage .selectCity .selector {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.landingpage .selectCity .selector img {
  width: 100%;
  margin-bottom: 3px;
}
.landingpage .selectCity .selector a {
  display: inline-block;
  transition: 0.2s;
  transition-delay: 0s;
}
.landingpage .selectCity .selector a:hover {
  opacity: 0.25;
}
.landingpage .selectCity .selector .logoLon {
  transition: 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
}
.landingpage .selectCity .selector .logoNyc {
  transition: 0.5s;
  transition-delay: 1.3s;
  opacity: 0;
}
.landingpage .selectCity .selector .logoLa {
  transition: 0.5s;
  transition-delay: 1.8s;
  opacity: 0;
}
.landingpage .selectCity p {
  font-size: 16px;
  letter-spacing: -0.025px;
  font-family: "Styrene B Regular";
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
  transition: 0.5s;
  transition-delay: 2.8s;
  opacity: 0;
}
.landingpage .selectCity p strong {
  text-transform: uppercase;
}
.landingpage .landingSlider {
  height: 100%;
  transition: 0.5s;
  transition-delay: 3.3s;
  opacity: 0;
}
.landingpage .landingSlider .landingSliderElements {
  height: 100%;
  max-height: 100vh;
}
.landingpage .landingSlider .landing-slider-element {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.landingpage .landingSlider .landing-slider-element .landing-slider-picture-container {
  height: 100%;
  max-width: 100%;
}
.landingpage .landingSlider .landing-slider-element img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100vh;
  display: block;
}
.landingpage.visible .selectCity .selector .logoLon, .landingpage.visible .selectCity .selector .logoNyc, .landingpage.visible .selectCity .selector .logoLa {
  opacity: 1;
}
.landingpage.visible .selectCity p, .landingpage.visible .landingSlider {
  opacity: 1;
}

.languageContainerInList {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: #fafafa;
}
.languageContainerInList.invisible {
  display: none;
}
.languageContainerInList.is-active {
  display: block;
}

@media screen and (max-width: 768px) {
  .languageContainer .landingpage.visible .close.mobile {
    display: block !important;
  }
  .landingpage .close {
    position: absolute;
    top: 23px;
    right: 20px;
    z-index: 4;
    display: none !important;
  }
  .landingpage .close:hover {
    transform: scale(1);
  }
  .landingpage .selectCity {
    font-family: "Styrene B Regular";
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
    padding: 25px 25px;
  }
  .landingpage .selectCity .selector {
    margin-bottom: 14px;
  }
  .landingpage .selectCity .selector img {
    margin-bottom: 3px;
  }
  .landingpage .selectCity .selector .logoLon {
    width: 217.85px !important;
  }
  .landingpage .selectCity .selector .logoNyc {
    width: 226.08px !important;
  }
  .landingpage .selectCity .selector .logoLa {
    width: 175.42px !important;
  }
  .landingpage .selectCity p {
    font-size: 12px;
    line-height: 1.5;
  }
  .landingpage .landingSlider {
    display: none;
  }
}
.galeryElement {
  padding: 50px 80px;
  padding-top: 0;
  transition: opacity 1s;
  opacity: 0;
  margin-top: -19px;
}
.galeryElement.visible {
  opacity: 1;
}
.galeryElement #newsGallery {
  margin-top: -10px;
}

.newsGallery {
  overflow: visible !important;
}
.newsGallery .homeElementEffect {
  overflow: visible;
}
.newsGallery .homeElementEffect .homeElementPicture {
  width: 100%;
  height: 100%;
  display: block;
}
.newsGallery .homeElementEffect .homeElementPicture img {
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.newsGallery .homeElementEffect .homeElementContent {
  min-height: 80px;
  padding: 0px;
  position: absolute;
  bottom: -85px;
  left: 0;
  right: 0;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.454545px;
  font-family: "Styrene B Regular";
}
.newsGallery .homeElementEffect .homeElementContent .homeElementWordBreak {
  font-family: "Styrene B Light";
  font-style: italic;
  margin-right: 2px;
}
.newsGallery .homeElementEffect .homeElementContent .homeElementName a {
  position: relative;
  display: inline-block;
  font-family: "Styrene A Regular";
}
.newsGallery .homeElementEffect .homeElementContent .homeElementName a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  border-bottom: 1px solid black;
  width: 100%;
  transition: opacity 0.2s;
}
.newsGallery .homeElementEffect .homeElementContent .homeElementName a:hover:before {
  opacity: 0.25;
}

.pagination {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  transition: opacity 0.2s;
  position: relative;
  top: 50px;
}
.pagination a {
  font-family: "Styrene B Regular";
  display: inline-block;
  border: 1px solid #C4C4C4;
  padding: 10px 25px;
  margin: 0 auto;
  border-radius: 100px;
  font-size: 14.1392px;
  transition: color 0.2s;
}
.pagination:hover {
  color: #C4C4C4;
}

.newContainerInList {
  background: #fafafa;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.newContainerInList.invisible {
  display: none;
}
.newContainerInList.is-active {
  display: none;
}

@media screen and (max-width: 768px) {
  .galeryElement #newsGallery {
    margin-top: 0px;
  }
  .pagination {
    position: relative;
    top: 0;
  }
  .galeryElement {
    padding: 30px 20px;
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
  }
  .newsGallery {
    padding-top: 0;
    flex-wrap: wrap;
    height: auto !important;
  }
  .newsGallery .homeElementEffect {
    position: initial;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0;
    margin-bottom: 22px;
  }
  .newsGallery .homeElementEffect .homeElementPicture img {
    position: initial;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }
  .newsGallery .homeElementEffect .homeElementContent {
    padding: 0;
    position: initial;
    bottom: 0;
    min-height: auto;
  }
  .newsGallery .homeElementEffect .homeElementContent .homeElementName {
    font-family: "Styrene A Regular";
    font-size: 15px;
    letter-spacing: -0.340909px;
    line-height: 20px;
    color: #1A1919;
  }
  .newsGallery .homeElementEffect .homeElementContent .homeElementName a:before {
    bottom: -2px;
  }
  .newsGallery .homeElementEffect .homeElementContent .homeElementWordBreak {
    font-family: "Styrene B Light";
    font-size: 15px;
    letter-spacing: -0.340909px;
    line-height: 20px;
    color: #1A1919;
  }
  .newsGallery .homeElementEffect .homeElementContent .homeElementTitle {
    font-family: "Styrene B Regular";
    font-size: 15px;
    letter-spacing: -0.340909px;
    line-height: 20px;
    color: #1A1919;
  }
}
.newContent {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.newContent .close {
  position: fixed;
  top: 42px;
  right: 35px;
  z-index: 5;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  transition: all 0.2s;
}
.newContent .close:hover {
  transform: scale(1.2);
}
.newContent .close.mobile {
  display: none;
}
.newContent .newintro {
  padding: 30px 0 35px 30px;
  width: calc(50% - 50px);
  position: fixed;
  left: 0;
  top: 0;
}
.newContent .newintro .newTitle {
  display: inline-block;
  font-family: "Styrene A Regular";
  font-size: 35.805px;
  letter-spacing: 0.156445px;
  margin-bottom: 24px;
  top: 50px;
  left: 50px;
  max-width: 80%;
  line-height: 1.15;
  color: #1A1919;
}
.newContent .newintro .newTitle .newTitleWordBreak {
  font-family: "Styrene B Light";
  font-style: italic;
}
.newContent .newintro .newTitle .newSubTitle {
  font-family: "Styrene B Regular";
}
.newContent .newintro .newTitleModel {
  font-family: "Styrene A Regular";
  font-size: 35.805px;
  letter-spacing: 0.156445px;
  line-height: 1.5;
  color: #1A1919;
}
.newContent .newintro .newTitleModel a {
  position: relative;
  display: inline-block;
}
.newContent .newintro .newTitleModel a:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  border-bottom: 1px solid black;
  width: 100%;
  transition: opacity 0.2s;
}
.newContent .newintro .newTitleModel a:hover:after {
  opacity: 0.25;
}
.newContent .newintro .newTitleModel .newTitleWordBreak {
  font-family: "Styrene B Light";
  font-style: italic;
}
.newContent .newintro .newsContentlistMobile {
  display: none;
}
.newContent .newintro .newsDetail {
  font-family: "Styrene B Regular";
  font-size: 11.8953px;
  letter-spacing: -0.074477px;
  color: #272726;
  line-height: 17px;
  height: 77vh;
  overflow: auto;
}
.newContent .newintro .newsDetail img {
  max-height: 75vh;
  margin-right: 20px;
}
.newContent .newintro .newsDetail img:last-of-type {
  margin-right: 0;
}
.newContent .newintro .newsDetail iframe {
  margin-right: 20px;
}
.newContent .newintro .newsDetail iframe:last-of-type {
  margin-right: 0;
}
.newContent .newintro .newsDetailsTags {
  position: fixed;
  bottom: 30px;
  left: 30px;
}
.newContent .newintro .newsDetailsTags a {
  display: inline-block;
  border: 1px solid #C4C4C4;
  padding: 10px;
  font-family: "Styrene B Regular";
  font-size: 10px;
  border-radius: 100px;
  margin-right: 3px;
  transition: color 0.2s;
}
.newContent .newintro .newsDetailsTags a:hover {
  color: #C4C4C4;
}
.newContent .newintro.fullWidth {
  width: calc(100% - 50px);
}
.newContent .newsContentlist {
  width: 50%;
}
.newContent .newsContentlist .newsElement {
  margin-bottom: 15px;
  width: 100%;
}
.newContent .newsContentlist .newsElement img {
  width: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .newContent {
    display: initial;
  }
  .newContent .close {
    top: 23px;
    right: 20px;
    display: none;
  }
  .newContent .close.mobile {
    display: block;
  }
  .newContent .close:hover {
    transform: scale(1);
  }
  .newContent .newintro {
    margin-top: 50px;
    width: 100%;
    padding: 0;
    position: initial;
  }
  .newContent .newintro.fullWidth {
    width: 100%;
  }
  .newContent .newintro .newTitle {
    font-size: 22px;
    padding: 20px;
    padding-top: 0;
    margin-bottom: 20px;
    display: inline-block;
  }
  .newContent .newintro .newTitleModel {
    font-size: 22px;
    padding: 0px;
    padding-left: 20px;
    margin-right: -20px;
    padding-bottom: 0;
    position: relative;
    bottom: 0px;
  }
  .newContent .newintro .newsDetail {
    padding: 25px;
    height: auto;
    overflow: hidden;
  }
  .newContent .newintro .newsDetail p img {
    width: 100%;
    height: auto;
  }
  .newContent .newintro .newsDetail p iframe {
    width: 100%;
  }
  .newContent .newintro .newsDetailsTags {
    margin-bottom: 0px;
    padding: 0 20px;
    position: initial;
  }
  .newContent .newintro .newsDetailsTags a {
    margin-bottom: 8px;
  }
  .newContent .newintro .newsContentlistMobile {
    display: block;
    width: 100%;
  }
  .newContent .newintro .newsContentlistMobile .newsElement img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
  }
  .newContent .newsContentlist {
    display: none;
  }
}
.filAriane {
  padding: 0 100px;
  font-family: "Styrene B Regular";
  font-size: 12px;
  letter-spacing: -0.01875px;
  padding-top: 9.5px;
  margin-bottom: 12px;
}

.listElements {
  padding: 0px 87px;
  display: flex;
  flex-wrap: wrap;
}
.listElements .listElement {
  width: calc(25% - 25px);
  margin: 12.5px;
  cursor: pointer;
}
.listElements .listElement .listElementPictureContainer {
  overflow: hidden;
}
.listElements .listElement .listElementPictureContainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}
.listElements .listElement .listElementModelName {
  font-family: "Styrene B Regular";
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  letter-spacing: -0.454545px;
  transition: opacity 0.2s;
}
.listElements .listElement .listElementModelName:hover {
  opacity: 0.25;
}

@media screen and (max-width: 1400px) {
  .listElements .listElement {
    width: calc(33.33% - 25px);
  }
  .listElements .listElement .listElementModelName {
    font-size: 20px;
  }
}
@media screen and (max-width: 980px) {
  .listElements .listElement {
    width: calc(50% - 25px);
  }
  .listElements .listElement .listElementModelName {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .filAriane {
    padding: 0 19px;
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .listElements {
    padding: 0 10px;
  }
  .listElements .listElement {
    width: calc(50% - 25px);
  }
  .listElements .listElement .listElementModelName {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .listElements {
    padding: 0 22px;
    margin: 0 -5px;
  }
  .listElements .listElement {
    margin: 3px;
    width: calc(50% - 6px);
  }
  .listElements .listElement .listElementModelName {
    font-size: 13px;
    letter-spacing: -0.020313px;
    padding: 10px 0;
  }
}
.bookModel {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100vw;
}
.bookModel .close {
  position: fixed;
  top: 42px;
  right: 35px;
  z-index: 5;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  transition: all 0.2s;
}
.bookModel .close:hover {
  transform: scale(1.2);
}
.bookModel .close.mobile {
  display: none;
}
.bookModel .bookInformation {
  padding: 35px 0 0 30px;
  width: calc(50% - 30px);
  height: calc(100vh - 40px);
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0;
}
.bookModel .bookInformation h1 {
  font-family: "Styrene B Regular";
  font-size: 35.805px;
  letter-spacing: -0.019px;
  margin-bottom: 22px;
  margin-top: 4px;
  display: block;
}
.bookModel .bookInformation .measurement {
  font-family: "Styrene B Regular";
  font-size: 14px;
  letter-spacing: -0.021875px;
  line-height: 17px;
}
.bookModel .bookInformation .measurement ul {
  display: flex;
}
.bookModel .bookInformation .measurement ul li {
  margin-right: 5px;
}
.bookModel .bookInformation .navigation {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.bookModel .bookInformation .navigation ul li a {
  font-family: "Styrene B Regular";
  font-size: 14px;
  letter-spacing: 0.01px;
  line-height: 20px;
  transition: opacity 0.2s;
}
.bookModel .bookInformation .navigation ul li a:hover {
  opacity: 0.25;
}
.bookModel .bookPortfolio {
  opacity: 0;
  transition: opacity 0.5s;
  width: 50%;
}
.bookModel .bookPortfolio .masonry {
  margin-bottom: 15px;
  width: 100%;
}
.bookModel .bookPortfolio .masonry img {
  width: 100%;
  display: block;
}
.bookModel .bookPortfolio .masonry:first-child img {
  filter: grayscale(1);
}
.bookModel .bookPortfolio .masonry:last-of-type {
  margin-bottom: 0;
}

.bookContainerInList {
  background: #fafafa;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.bookContainerInList.invisible {
  display: none;
}
.bookContainerInList.is-active {
  display: none;
}

@media screen and (max-width: 768px) {
  .bookModel {
    display: flex;
    flex-direction: column;
    font-family: "Styrene B Regular";
  }
  .bookModel .close {
    display: none;
    position: fixed;
    top: 23px;
    right: 20px;
  }
  .bookModel .close.mobile {
    display: block;
  }
  .bookModel .close:hover {
    transform: scale(1);
  }
  .bookModel .bookInformation {
    padding: 15px 0 20px 20px;
    width: calc(100% - 20px);
    height: auto;
    position: initial;
  }
  .bookModel .bookInformation h1 {
    font-size: 18px;
    letter-spacing: -0.028125px;
    max-width: 80%;
    line-height: 23px;
    margin-bottom: 10px;
  }
  .bookModel .bookInformation .measurement {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    min-height: 74px;
    max-width: 80%;
    font-size: 10px;
    letter-spacing: -0.01261px;
    line-height: 14px;
  }
  .bookModel .bookInformation .navigation {
    position: initial;
    bottom: 0px;
    left: 0px;
    width: calc(100% - 30px);
    margin-left: -4px;
  }
  .bookModel .bookInformation .navigation ul {
    display: flex;
    justify-content: flex-start;
  }
  .bookModel .bookInformation .navigation ul li a {
    font-size: 10px;
    letter-spacing: -0.01261px;
    line-height: 14px;
    padding: 0 5px;
  }
  .bookModel .bookPortfolio {
    width: 100%;
  }
}
.pagebecome {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pagebecome .containerLeft {
  padding: 44px 100px;
  max-width: 50%;
}
.pagebecome .containerLeft h1 {
  font-family: "Styrene A Regular";
  font-size: 35.805px;
  margin-bottom: 23px;
  letter-spacing: 0.081254px;
  display: block;
  position: relative;
  left: -2px;
}
.pagebecome .containerLeft .text {
  font-family: "Styrene B Regular";
  letter-spacing: -0.02px;
  font-size: 12px;
  line-height: 1.32;
  color: #272726;
  margin-bottom: 0px;
}
.pagebecome .containerLeft #becomeForm {
  margin-top: 50px;
}
.pagebecome .containerLeft #becomeForm .genderCheck {
  display: flex;
  justify-content: flex-start;
  font-size: 12px;
  color: #50504f;
  line-height: 1.2;
  margin-bottom: 50px;
}
.pagebecome .containerLeft #becomeForm .genderCheck .container {
  padding-left: 20px;
  position: relative;
  display: block;
  margin-right: 30px;
  font-family: "Styrene B Regular";
}
.pagebecome .containerLeft #becomeForm .genderCheck .container input:checked ~ .checkmark:after, .pagebecome .containerLeft #becomeForm .genderCheck .container input:checked ~ .checkmark:before {
  opacity: 1;
}
.pagebecome .containerLeft #becomeForm .genderCheck input {
  margin: 0;
  padding: 0;
  width: 100%;
  border-radius: 0 !important;
  display: none;
}
.pagebecome .containerLeft #becomeForm .genderCheck .checkmark {
  position: absolute;
  left: 0;
  top: 1.5px;
  width: 10px;
  height: 10px;
  border: 1px solid #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .genderCheck .checkmark:after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 4.5px;
  left: -2px;
  width: 14px;
  height: 1px;
  transform: rotate(45deg);
  background: #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .genderCheck .checkmark:before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 4.5px;
  left: -2px;
  width: 14px;
  height: 1px;
  transform: rotate(135deg);
  background: #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .elementForm {
  margin-bottom: 30px;
}
.pagebecome .containerLeft #becomeForm .elementForm h2 {
  font-family: "Styrene B Regular";
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader {
  width: 118px;
  max-width: 170px;
  position: relative;
  text-align: center;
  margin-right: 15px;
  overflow: hidden;
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader p {
  font-family: "Styrene B Regular";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 55%;
  transform: translateY(-50%);
  bottom: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.01px;
  line-height: 20px;
  color: #272726;
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader p img {
  border: none;
  width: 13px;
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader img {
  width: calc(100% - 2px);
  position: relative;
  display: block;
  border: 1px solid #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 11;
  border-radius: 0 !important;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive {
  font-family: "Styrene B Regular";
  letter-spacing: -0.015px;
  font-size: 12px;
  color: #272726;
  line-height: 1.2;
  margin-bottom: 12px;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .container, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .container {
  padding-left: 20px;
  position: relative;
  display: block;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .container input:checked ~ .checkmark:after, .pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .container input:checked ~ .checkmark:before, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .container input:checked ~ .checkmark:after, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .container input:checked ~ .checkmark:before {
  opacity: 1;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules input, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive input {
  margin: 0;
  padding: 0;
  width: 100%;
  display: none;
  border-radius: 0 !important;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .checkmark, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border: 1px solid #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .checkmark:after, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .checkmark:after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 4.5px;
  left: -2px;
  width: 14px;
  height: 1px;
  transform: rotate(45deg);
  background: #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .elementForm .checkboxRules .checkmark:before, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive .checkmark:before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 4.5px;
  left: -2px;
  width: 14px;
  height: 1px;
  transform: rotate(135deg);
  background: #C7C7C7;
}
.pagebecome .containerLeft #becomeForm .elementForm .fieldList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 44.5px;
}
.pagebecome .containerLeft #becomeForm .elementForm input {
  color: #272726;
  width: 48%;
  font-family: "Styrene B Regular";
  font-size: 12px;
  border: none;
  border-bottom: 1px solid #aeaeae;
  background: transparent;
  border-radius: 0 !important;
  padding: 3.5px 0;
  margin-bottom: 19px;
}
.pagebecome .containerLeft #becomeForm .elementForm .selectField {
  width: 48%;
  border-bottom: 1px solid #aeaeae;
  padding: 4.5px 0;
  margin-bottom: 19px;
}
.pagebecome .containerLeft #becomeForm .elementForm .selectField select {
  font-family: "Styrene B Regular";
  width: calc(100% + 5px);
  font-size: 12px;
  border: none;
  background: transparent;
  border-radius: 0 !important;
  -webkit-appearance: none;
}
.pagebecome .containerLeft #becomeForm .elementForm .selectField select::placeholder {
  color: #50504f;
}
.pagebecome .containerLeft #becomeForm .elementForm p {
  font-family: "Styrene B Regular";
  letter-spacing: -0.015px;
  font-size: 12px;
  color: #272726;
  line-height: 1.32;
  margin-bottom: 20px;
}
.pagebecome .containerLeft #becomeForm #errorOutput {
  font-size: 14px;
  line-height: 1.32;
  margin-bottom: 20px;
}
.pagebecome .containerLeft #becomeForm .button {
  margin-top: 30px;
}
.pagebecome .containerLeft #becomeForm .button button {
  padding-left: 0;
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  font-family: "Styrene A Regular";
  font-size: 22px;
  margin-bottom: 30px;
  cursor: pointer;
  position: relative;
  left: -1px;
  display: flex;
  align-items: center;
}
.pagebecome .containerLeft #becomeForm .button p {
  font-family: "Styrene B Regular";
  font-size: 12px;
  letter-spacing: -0.02px;
  color: #272726;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pagebecome .becomePicture {
  max-width: 45%;
}

@media screen and (max-width: 1280px) {
  .pagebecome .containerLeft {
    padding: 50px 100px;
    padding-right: 50px;
    max-width: 50%;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader {
    margin-right: 8px;
  }
  .pagebecome .becomePicture {
    max-width: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .pagebecome .containerLeft {
    padding-top: 0;
    padding-right: 30px;
  }
  .pagebecome .containerLeft h1 {
    font-size: 35px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader {
    border: 1px solid #C7C7C7;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader img {
    border: none;
  }
}
@media screen and (max-width: 980px) {
  .pagebecome {
    flex-direction: column-reverse;
  }
  .pagebecome .becomePicture {
    max-width: 100%;
  }
  .pagebecome .containerLeft {
    max-width: 100%;
    padding-top: 50px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .pagebecome .containerLeft {
    max-width: 100%;
    padding-top: 50px;
    padding: 30px;
  }
}
@media screen and (max-width: 580px) {
  .pagebecome .containerLeft {
    width: calc(100% - 40px);
    padding: 32px 20px;
  }
  .pagebecome .containerLeft h1 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    position: relative;
    left: -2px;
    margin-bottom: 13px;
  }
  .pagebecome .containerLeft .text {
    margin-bottom: 50px;
  }
  .pagebecome .containerLeft #becomeForm .genderCheck {
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 10px;
  }
  .pagebecome .containerLeft #becomeForm .genderCheck .container {
    margin-right: 25px;
  }
  .pagebecome .containerLeft #becomeForm .genderCheck .checkmark {
    position: absolute;
    left: 0;
    top: 0px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .fieldList {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .fieldList input, .pagebecome .containerLeft #becomeForm .elementForm .fieldList .selectField, .pagebecome .containerLeft #becomeForm .elementForm .fieldList select {
    width: 100%;
    font-size: 10px;
    letter-spacing: -0.01261px;
    line-height: 14px;
    min-height: 14px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm p, .pagebecome .containerLeft #becomeForm .elementForm .checkboxRules, .pagebecome .containerLeft #becomeForm .elementForm .checkboxReceive {
    font-family: "Styrene B Regular";
    margin-bottom: 16px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload {
    justify-content: space-between;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader {
    margin-right: 0;
    width: 88px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader img {
    max-height: 150px;
  }
  .pagebecome .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader p {
    font-size: 10px;
    letter-spacing: -0.01261px;
    line-height: 14px;
    left: 10px;
    right: 10px;
  }
  .pagebecome .containerLeft #becomeForm .button {
    text-align: center;
  }
  .pagebecome .containerLeft #becomeForm .button p {
    font-size: 12px;
    font-family: "Styrene B Regular";
    line-height: 1.5;
    text-align: left;
  }
}
.pageAbout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 42px 100px;
}
.pageAbout .containerLeft {
  max-width: 50%;
  padding-right: 50px;
}
.pageAbout .containerLeft h1 {
  font-family: "Styrene A Regular";
  font-size: 35.805px;
  letter-spacing: 0.081254px;
  margin-bottom: 25px;
  display: block;
  position: relative;
  left: -2px;
}
.pageAbout .containerLeft h2 {
  font-family: "Styrene A Regular";
  font-size: 16px;
  letter-spacing: 0.081254px;
  display: block;
  position: relative;
  left: -2px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.pageAbout .containerLeft strong {
  font-weight: 600;
  display: block;
  line-height: 1.5;
  margin-bottom: 10px;
}
.pageAbout .containerLeft .text {
  font-family: "Styrene B Regular";
  letter-spacing: -0.02px;
  font-size: 12px;
  line-height: 1.32;
  color: #272726;
  margin-bottom: 0px;
}
.pageAbout .containerLeft #becomeForm .elementForm {
  margin-bottom: 30px;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader {
  width: 32%;
  max-width: 162px;
  position: relative;
  border: 1px solid #C7C7C7;
  text-align: center;
  margin-right: 15px;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader p {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  margin-bottom: 0;
  text-align: center;
  font-size: 18px;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader p img {
  width: 30px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader img {
  display: block;
}
.pageAbout .containerLeft #becomeForm .elementForm .picturesUpload .imageLoader input {
  display: none;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive {
  font-size: 14px;
  color: #50504f;
  line-height: 1.2;
  margin-bottom: 15px;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules .container, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive .container {
  padding-left: 20px;
  position: relative;
  display: block;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules .container input:checked ~ .checkmark:after, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive .container input:checked ~ .checkmark:after {
  opacity: 1;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules input, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive input {
  margin: 0;
  padding: 0;
  width: 100%;
  display: none;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules .checkmark, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive .checkmark {
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #C7C7C7;
}
.pageAbout .containerLeft #becomeForm .elementForm .checkboxRules .checkmark:after, .pageAbout .containerLeft #becomeForm .elementForm .checkboxReceive .checkmark:after {
  opacity: 0;
  content: "x";
  color: #50504f;
  position: absolute;
  top: -3.5px;
  left: -1px;
  right: 0;
  font-size: 14px;
  font-family: "Styrene A Regular";
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageAbout .containerLeft #becomeForm .elementForm .fieldList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.pageAbout .containerLeft #becomeForm .elementForm input {
  width: 48%;
  font-family: "Styrene B Regular";
  font-size: 14px;
  border: none;
  border-bottom: 2px solid #aeaeae;
  background: transparent;
  padding: 5px 0;
  margin-bottom: 20px;
}
.pageAbout .containerLeft #becomeForm .elementForm .selectField {
  width: 48%;
  color: #50504f;
  border-bottom: 2px solid #aeaeae;
  padding: 5px 0;
  margin-bottom: 20px;
}
.pageAbout .containerLeft #becomeForm .elementForm .selectField select {
  width: calc(100% + 5px);
  margin-left: -5px;
  border: none;
  color: #50504f;
  font-size: 14px;
  border: none;
  background: transparent;
}
.pageAbout .containerLeft #becomeForm .elementForm .selectField select::placeholder {
  color: #50504f;
}
.pageAbout .containerLeft #becomeForm .elementForm p {
  font-size: 14px;
  color: #50504f;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pageAbout .containerLeft #becomeForm .button {
  margin-top: 30px;
}
.pageAbout .containerLeft #becomeForm .button button {
  background-color: transparent;
  border: none;
  font-family: "Styrene A Regular";
  font-size: 25px;
  margin-bottom: 30px;
  cursor: pointer;
}
.pageAbout .containerLeft #becomeForm .button p {
  font-size: 14px;
  color: #50504f;
  line-height: 1.2;
  margin-bottom: 20px;
}
.pageAbout .becomePicture {
  max-width: 50%;
}

@media screen and (max-width: 1024px) {
  .pageAbout {
    padding: 50px 100px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 980px) {
  .pageAbout {
    flex-direction: column-reverse;
  }
  .pageAbout .becomePicture {
    max-width: 100%;
  }
  .pageAbout .containerLeft {
    max-width: 100%;
    padding-right: 0;
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .pageAbout {
    padding: 30px 20px;
    padding-top: 0;
  }
  .pageAbout .becomePicture {
    max-width: 100%;
    width: 100%;
  }
  .pageAbout .containerLeft h1 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0px;
    position: relative;
    margin-bottom: 13px;
  }
}
.pageNewsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 42px 100px;
}
.pageNewsletter #mc_embed_shell {
  width: 100%;
  max-width: 600px;
}
.pageNewsletter #mc_embed_shell i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  float: right;
  position: relative;
  top: 15px;
  right: 10px;
  z-index: 99;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .pageNewsletter {
    padding: 40px;
  }
}

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