
/* ------------------------------------------------

 - General Styles
   - Input
   - Buttons
   - Icon
   - Table
   - Flex Table
 - Typography
 - Preloader
 - Header
   - V2
   - Navbar white
   - State open
   - Navbar back
   - Logotype
   - Hamburger
 - Hero
 
 - Sections
   - Notation
   - Social
   - Details
   - itemCard
   - itemBrand
 - Project
 - Project Single
   - Gallery
 - Menu
 - About
 - Contact
 - News
   - Filter
   - Three grid
   - Single
   - Gallery
   - Scroll Indicator
   - Share
 - Footer
   - Newsletter
 - 404
 - Custom PhotoSwiper
 - Effects
   - Reveal
   - Text wave
   - Text down
   - Cursor
   - Jarallax
   - Medium Zoom
    
------------------------------------------------ */
@import url(bootstrap.min.css);
@import url(animate.css);
@import url(../icons/fonticons.css);
/* -----------------------------------------------------------------
    - General Styles
----------------------------------------------------------------- */

@font-face{ 
	font-family: 'CB';
	src: url('../fonts/CB.eot');
	src: url('../fonts/CB.eot?iefix') format('eot'),
	     url('../fonts/CB.woff') format('woff'),
	     url('../fonts/CB.ttf') format('truetype');
}

@font-face{ 
	font-family: 'CR';
	src: url('../fonts/CR.eot');
	src: url('../fonts/CR.eot?iefix') format('eot'),
	     url('../fonts/CR.woff') format('woff'),
	     url('../fonts/CR.ttf') format('truetype');
}


*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-x: hidden;
}

body, html {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 580px) {
  body, html {
    font-size: 14px;
  }
}

body {
  background-color: #fff;
  color: #110f10;
  font-family: "CR", sans-serif;
  font-weight: 300;
  line-height: 2;
  -ms-overflow-style: scrollbar;
  -webkit-font-smoothing: antialiased;
}
@media only screen and (max-width: 580px) {
  body {
    line-height: 1.9;
  }
}

html.is-scroll-disabled body {
  height: 100vh;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html.is-scroll-disabled {
    overflow: hidden;
  }
}
.no-scroll {
  overflow: hidden;
}

.no-scroll-h {
  overflow-x: hidden;
}

.inputText, .textarea {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #8d99a7;
  border-radius: 0;
  box-shadow: none;
  color: #110f10;
  padding: 1rem 0;
  position: relative;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media only screen and (max-width: 1200px) {
  .inputText, .textarea {
    padding: .8rem 0;
  }
}

.inputText:focus, .textarea:focus {
  border-bottom: 1px solid #110f10;
  box-shadow: none;
  outline: none;
}

.inputText--fill {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 0;
  outline: none;
  padding: 1rem 1.5rem;
  transition: width 0.3s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
.inputText--fill:focus {
  color: #fff;
}

.textarea {
  display: block;
  line-height: 1.5;
  max-height: 6rem;
  padding-top: 1rem;
  resize: none;
}

.form-group {
  margin-bottom: 2.5rem;
  position: relative;
}
@media only screen and (max-width: 580px) {
  .form-group {
    margin-bottom: 2rem;
  }
}

#validator-contact {
  font-size: .89rem;
}
@media only screen and (max-width: 768px) {
  #validator-contact {
    padding-top: 1rem;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}

.label {
  color: #8d99a7;
  display: block;
  font-weight: 400;
  position: relative;
  transform: translateY(50%);
  transition: all .25s ease-in-out;
  z-index: 1;
  pointer-events: none;
  position: absolute;
}
.is-completed .label {
  transform: translateY(-80%);
  font-size: .86rem;
}
@media only screen and (max-width: 1200px) {
  .is-completed .label {
    transform: translateY(-70%);
  }
}
@media only screen and (max-width: 580px) {
  .is-completed .label {
    transform: translateY(-50%);
  }
}

.btn {
  background-color: #110f10;
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-size: .87rem;
  letter-spacing: .1rem;
  line-height: inherit;
  white-space: nowrap;
  overflow: hidden;
  padding: 1rem 2.5rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.btn::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.2);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  z-index: -1;
}
.btn:hover::before {
  animation: btn-hover 0.8s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
  width: 100%;
}
.btn:hover {
  color: #fff;
}
.btn:focus {
  box-shadow: none;
}
.btn.disabled {
  opacity: 1;
}
.btn--white {
  background-color: #fff;
  color: #110f10;
}
.btn--white::before {
  background-color: rgba(17, 15, 16, 0.2);
}
.btn__icon {
  line-height: 0;
  padding: 0.99rem 1rem;
}

.touch .btn::before {
  display: none;
}

@keyframes btn-hover {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.btn-link {
  color: #110f10 !important;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  position: relative;
  text-decoration: none;
}
.btn-link:hover {
  color: inherit;
  text-decoration: none;
}
.btn-link:hover .circle {
  box-shadow: 0 0 0 2px #fff;
}
.btn-link:hover .circle--white {
  box-shadow: 0 0 0 2px #fff;
}
.btn-link:hover .icon-base {
  padding-left: .6rem;
  padding-right: .6rem;
}
.btn-link:focus {
  text-decoration: none;
}

.circle {
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  color: #ffffff !important;
  background-color: #110f10;
  border-radius: 50%;
  box-shadow: 0 0 0 0px #110f10;
  height: 2.85rem;
  overflow: hidden;
  position: relative;
  width: 2.85rem;
  text-align: center;
  transition: box-shadow .3s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .circle {
    height: 2rem;
    width: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .circle::before {
    font-size: .87rem;
  }
}
.circle--white {
  color: #110f10;
  background-color: #fff;
  box-shadow: 0 0 0 0px #fff;
}
.circle--left {
  margin-right: 1.07rem;
}
.circle--right {
  margin-left: 1.07rem;
}
.circle.icon-left-open::before {
  margin-left: 0;
}

button:focus {
  outline: none;
}

.icon-arrow-right {
  background-image: url(../images/arrow-next.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: inline-flex;
  height: 30px;
  width: 30px;
}

.icon-base {
  padding-left: .3rem;
  padding-right: .3rem;
  transition: all .3s ease-in-out;
}

.dark-mask {
  position: relative;
  z-index: 1;
}
.dark-mask::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #110f10;
  opacity: .3;
  transition: opacity .3s;
}
.dark-mask:hover::before {
  opacity: 0;
}

.table thead th {
  border: 0;
  color: #8d99a7;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .2rem;
  padding: 1.3rem 0;
  text-transform: uppercase;
}
.table td {
  border-top: 1px solid #c5d2e0;
  padding: 1.3rem 0;
}
@media only screen and (max-width: 768px) {
  .table td {
    border-top: 0;
  }
}
.table span {
  color: #8d99a7;
}
@media only screen and (max-width: 768px) {
  .table .table, .table thead, .table tbody, .table th, .table td, .table tr {
    display: block;
  }
  .table thead tr {
    display: none;
  }
  .table tr {
    padding-bottom: 1.4rem;
  }
  .table td {
    position: relative;
    padding-left: 50%;
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
  .table td:before {
    content: attr(data-th);
    color: #8d99a7;
    font-size: .85rem;
    position: absolute;
    left: 0;
    width: 45%;
    padding-right: 1rem;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 580px) {
  .table td {
    padding-left: 40%;
  }
}

.flex-table {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .flex-table {
    border-top: 1px solid rgba(197, 210, 224, 0.7);
  }
}
.flex-table__thead {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  border-bottom: 1px solid rgba(197, 210, 224, 0.7);
}
@media only screen and (max-width: 768px) {
  .flex-table__thead {
    display: none;
  }
}
.flex-table__tr {
  border-bottom: 1px solid rgba(197, 210, 224, 0.7);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .flex-table__tr {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.flex-table__tr:last-child {
  border: 0;
}
.flex-table__th {
  color: #8d99a7;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .2rem;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  text-transform: uppercase;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .flex-table__th {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
}
.flex-table__td {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .flex-table__td {
    padding-top: .2rem;
    padding-bottom: .2rem;
    padding-left: 24%;
  }
  .flex-table__td:before {
    content: attr(data-th);
    color: #8d99a7;
    font-size: .85rem;
    position: absolute;
    left: 0;
    padding-right: 1rem;
    padding-top: .2rem;
    white-space: nowrap;
    text-transform: uppercase;
  }
}

.separation {
  border-top: 1px solid rgba(17, 15, 16, 0.1);
}

/* -----------------------------------------------------------------
    - Typography
----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "CB", sans-serif;
  line-height: 1;
  margin-bottom: 3.4rem;
}


@media only screen and (max-width: 1200px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 3rem;
  }
}

.title {
  transition: all 0.1s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
.title--h1 {
  font-size: 9.5rem;
  margin-bottom: 3.4rem;
  letter-spacing:-4px
}
@media only screen and (max-width: 1200px) {
  .title--h1 {
    font-size: 3.1428rem;
    margin-bottom: 2.14rem;
  letter-spacing:-1px
  }
}
@media only screen and (max-height: 768px) {
  .title--h1 {
    margin-bottom: 2.14rem;
  }
}
@media only screen and (max-height: 580px) {
  .title--h1 {
    font-size: 2.4285rem;
    margin-bottom: 1rem;
  }
}
.title--h2 {
  font-size: 3.1428rem;
  margin-bottom: 3.4rem;
}
@media only screen and (max-width: 992px) {
  .title--h2 {
    margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 580px) {
  .title--h2 {
    font-size: 2.4285rem;
    margin-bottom: 2rem;
  }
}
.title--h3 {
  font-size: 2.4285rem;
  margin-bottom: 2.71rem;
}
@media only screen and (max-width: 580px) {
  .title--h3 {
    font-size: 2rem;
  }
}
.title--h4 {
  font-size: 2rem;
  margin-bottom: 2.28rem;
  line-height: 1.3;
}
@media only screen and (max-width: 992px) {
  .title--h4 {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 580px) {
  .title--h4 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}
.title--h5 {
  font-size: 1.715rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.title--h6 {
  font-size: 1.286rem;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.title--display-1 {
  font-size: 4rem;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1200px) {
  .title--display-1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 580px) {
  .title--display-1 {
    font-size: 2.5rem;
  }
}
.title--subtitle {
  font-family: "CR", sans-serif;
}
@media only screen and (max-width: 580px) {
  .title--subtitle {
    margin-top: 1rem;
    margin-bottom: .5rem;
  }
}
.title--center {
  text-align: center;
}
.title--overhead {
  color: #8d99a7;
  font-family: "CB", sans-serif;
  font-size: .87rem;
  font-weight: 400;
  letter-spacing: .1rem;
  margin-top: .62rem;
  margin-bottom: .62rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .title--overhead {
    font-size: .87rem;
  }
}
@media only screen and (max-width: 580px) {
  .title--overhead {
    font-size: .75rem;
    letter-spacing: .1rem;
  }
}
.title--tail, .title--tail-black {
  position: relative;
}
.title--tail::before, .title--tail-black::before {
  content: '';
  background-color: #8d99a7;
  height: 1px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4rem;
  width: 2.5rem;
}
.title--tail-black::before {
  background-color: #110f10;
}
.title .num-article {
  margin-bottom: 0;
}

.weight--300 {
  font-weight: 300;
}
.weight--400 {
  font-weight: 400;
}
.weight--500 {
  font-weight: 400;
}
.weight--700 {
  font-weight: 400;
}

.block-quote {
  font-size: 1.715rem;
  font-weight: 400;
  margin: 3rem 0;
  position: relative;
  line-height: 1.6;
}
@media only screen and (max-width: 580px) {
  .block-quote {
    font-size: 1.28rem;
    margin: 2rem 0;
  }
}
.block-quote::before {
  background-image: url(../images/icon-quote.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: '';
  height: 41px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: -5.6rem;
  width: 48px;
}
@media only screen and (max-width: 768px) {
  .block-quote::before {
    display: none;
  }
}
.block-quote cite {
  font-size: 1rem;
  font-style: normal;
  display: block;
  margin-top: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.block-quote cite::before {
  content: '';
  background-color: #110f10;
  height: 1px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2rem;
}

a {
  color: #110f10;
  text-decoration: underline;
  -webkit-text-decoration-skip: objects;
  transition: all 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
a:hover, a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}
a.decoration--none {
  text-decoration: none;
}

.noGutters-Top {
  margin-top: 0 !important;
}
.noGutters-Bottom {
  margin-bottom: 0 !important;
}
.noGutters-Left {
  margin-left: 0 !important;
}
.noGutters-Right {
  margin-right: 0 !important;
}

.description {
  margin-bottom: 2.32rem;
}
@media only screen and (max-width: 580px) {
  .description {
    margin-bottom: .05rem;
  }
}

.paragraph {
  color: rgba(17, 15, 16, 0.75);
  margin-bottom: 1.8rem;
}

.text-overlay {
  color: #fff;
  font-size: 14vw;
  font-weight: 400;
  position: absolute;
}
.text-overlay--left-bottom {
  bottom: 0;
  left: 0;
  line-height: .5;
}
.text-overlay--left-top {
  top: 0;
  left: 0;
  line-height: .2;
}
.text-overlay--right-bottom {
  bottom: 0;
  right: 0;
  line-height: .5;
}
.text-overlay--right-top {
  top: 0;
  right: 0;
  line-height: .2;
}

.text--red {
  color: #4E5E96;
}

.list-unstyled {
  color: rgba(17, 15, 16, 0.75);
}

img {
  max-width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

iframe {
  background-color: #110f10;
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.cover {
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover; object-position: bottom;';
  height: 100%;
  width: 100%;
}

::-moz-selection {
  background: transparent;
  color: #4E5E96;
}

::selection {
  background: transparent;
  color: #4E5E96;
}

/* -----------------------------------------------------------------
    - Preloader
----------------------------------------------------------------- */
.preload {
  overflow: hidden;
  -ms-overflow-style: none;
}

.loading {
  background-color: #110f10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-align: center;
  z-index: 1100;
  opacity: 1;
  transition: opacity 0.5s 0s cubic-bezier(0.455, 0.03, 0.515, 0.955), z-index 0s 0s linear;
}
.loading::before {
  content: '';
  background-image: url(../images/logo_icon.gif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px 100px;
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 20rem;
  margin: auto;
  left: 0;
  right: 0;
    animation:spin 6s linear infinite;
-webkit-animation:spin 6s linear infinite;
    -moz-animation:spin 6s linear infinite;
  
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }


.loading.fadeOut2 {
  pointer-events: none;
  opacity: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .loading.fadeOut2 {
    visibility: hidden;
  }
}
.loading .progress-bar {
  background-color: #110f10;
  height: 100%;
  left: 0px;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: all 2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 0;
  z-index: 2;
}
.loading .progress-bar::before {
  content: '';
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  animation: replacement-logo 0s 1s ease both;
}

@keyframes blur-logo {
  0% {
    filter: blur(30px);
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
  }
}
/* -----------------------------------------------------------------
    - Header
----------------------------------------------------------------- */
.navbar {
  height: 114px;
  line-height: 1;
  padding-top: .4rem;
  padding-left: 2.25rem;
  padding-right: 4.25rem;
  top: 0;
  margin:0px auto !important;
  transition: all 0.3s cubic-bezier(0.72, 0.16, 0.345, 0.875);
  z-index: 1001;
  text-align:center;
}
@media only screen and (max-width: 992px) {
  .navbar {
    height: 80px;
  }
}
@media only screen and (max-width: 580px) {
  .navbar {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(17, 15, 16, 0.02);
    height: 70px;
    padding: 0 1.071rem;
  }
}
@media only screen and (min-width: 2400px) {
  .navbar {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}
@media only screen and (max-height: 500px) {
  .navbar {
    height: 80px;
  }
}
.navbar .logo-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  align-items: center;
  position: relative;
}
.navbar .logo-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  align-items: center;
	padding-bottom:15px;
}
@media only screen and (max-width: 580px) {
  .navbar-v2 {
    background-color: transparent;
  }
	
	.hamburger__inner {
		
	  margin-left: -20px !important;
	}
	
  .navbar-v2 .hamburger__inner::before,
  .navbar-v2 .hamburger__inner::after {
    background-color: #fff;
  }
  .navbar-v2 .logotype {
    transform: translate3d(0, 0, 0) !important;
  }
}
@media only screen and (min-width: 580px) {
  .navbar--white {
    color: #fff;
  }
  .navbar--white .circle {
    color: #110f10;
    background-color: #fff;
    box-shadow: 0 0 0 0px #fff;
  }
  .navbar--white .circle:hover {
    box-shadow: 0 0 0 2px #fff;
  }
  .navbar--white .btn-link:hover .circle {
    box-shadow: 0 0 0 2px #fff;
  }
  .navbar--white .hamburger__inner::before,
  .navbar--white .hamburger__inner::after {
    background-color: #fff;
  }
  .navbar-v2 .logotype {
    transform: translate3d(0, 0, 0) !important;
  }
}
.navbar.navbar-back .logotype {
  transform: translate3d(0, -8rem, 0) !important;
}
@media only screen and (max-height: 320px) {
  .open .navbar {
    background-color: transparent;
  }
}
@media only screen and (max-width: 580px) {
  .open .navbar {
    background-color: transparent;
    justify-content: center;
  }
}
.open .navbar .logotype__front,
.open .navbar .btn-link {
  transform: translate3d(0, -8rem, 0);
}
.open .navbar .logotype__back {
  transform: translate3d(0, 0, 0);
}
.open .navbar--white {
  background-color: transparent;
}
.open .navbar.navbar-back .logotype {
  transform: translate3d(0, 0, 0) !important;
}
@media only screen and (max-width: 580px) {
  .open .navbar .logo-container {
    display: none;
  }
}
.navbar .btn-link {
  position: absolute;
  top: calc(50% - 1.42rem);
}
@media only screen and (max-width: 992px) {
  .navbar .btn-link {
    top: calc(50% - 1rem);
  }
}
.navbar .btn-link {
  transform: translate3d(0, 0, 0);
  transition: transform 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
.navbar .logotype__back {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate3d(0, -8rem, 0);
}
.navbar-change .logotype__back {
  transform: translate3d(0, -8rem, 0);
}
.navbar-change .logotype__front {
  transform: translate3d(0, 0, 0);
}
.navbar-change.navbar--white .logotype__back {
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 580px) {
  .navbar-change.navbar--white .logotype__back {
    transform: translate3d(0, -8rem, 0);
  }
}
.navbar-change.navbar--white .logotype__front {
  transform: translate3d(0, -8rem, 0);
}
@media only screen and (max-width: 580px) {
  .navbar-change.navbar--white .logotype__front {
    transform: translate3d(0, 0, 0);
  }
}

.logotype {
  display: inline-block;
  height: 45px;
  margin-top:25px;
  transition: transform 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .logotype {
    height: auto;
    max-height: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .logotype {
    height: 30px;
  }
  
  .hamburger {
    margin-left: -15px !important;
    margin-top: -14px;
  }
	
	.navbar {
    padding-right: 2.25rem !important;
	}
}

.linkedIcon {
fill: #ffffff;
}

.hamburger {
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: opacity .3s ease;
  background-color: transparent;
  border: 0;
  padding: 0;
  vertical-align: middle;
  position: fixed;
}
.hamburger__inner {
  display: block;
  height: 24px;
  width: 25px;
  position: relative;
}
.hamburger__inner:before, .hamburger__inner:after {
  background-color: #110f10;
  content: '';
  display: block;
  margin-left: -12px;
  height: 2px;
  width: 25px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform-origin: center center;
  transition: top 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.hamburger__inner:after {
  top: 16px;
}
.is-active .hamburger__inner {
  color: #110f10;
}
.is-active .hamburger__inner:before, .is-active .hamburger__inner:after {
  top: 50%;
  transition: top 0.1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.is-active .hamburger__inner:before {
  transform: rotate(45deg);
}
.is-active .hamburger__inner:after {
  transform: rotate(-45deg);
}
.hamburger--black .hamburger__inner:before, .hamburger--black .hamburger__inner:after {
  background-color: #110f10 !important;
}
.open .hamburger__inner:before, .open .hamburger__inner:after {
  background-color: #fff;
}
.is-active .open .hamburger__inner {
  color: #fff;
}

.sideNav {
  background-color: #fff;
  list-style: none;
  height: 100%;
  margin: 0;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6rem 0 0;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(360px);
  width: 360px;
  z-index: 1000;
}
@media only screen and (max-width: 580px) {
  .sideNav {
    padding: 4rem 0 0;
    width: 100%;
    text-align: center;
    transform: translateX(100%);
  }
	
	.is-active .hamburger__inner {
	margin-left:0px !important	
	}
}
.sideNav__item {
  color: #110f10;
  font-size: 1.4rem;
  position: relative;
  margin: 0 3rem;
  padding: .2rem 0;
  user-select: none;
}
.sideNav__item a {
  color: #110f10;
  text-decoration: none;
}
.sideNav__item a:hover {
  color: #4E5E96;
}
.sideNav__item .icon {
  font-size: 1rem;
  display: inline-block;
  padding: 0 .3rem;
  position: absolute;
  bottom: -.25rem;
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transform: rotate(0deg);
}
.sideNav__item-open .icon {
  transform: rotate(-180deg);
}
.sideNav__sub {
  display: none;
  position: relative;
  max-height: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sideNav__sub.open {
  display: block;
}
.sideNav__sub .sideNav__item {
  margin: 0;
  font-size: 1rem;
}
.sideNav-collapsed {
  cursor: pointer;
  position: relative;
}

.overlay-sideNav {
  background-color: rgba(17, 15, 16, 0.3);
  height: 100%;
  width: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: -1;
}

/* -----------------------------------------------------------------
    - Hero
----------------------------------------------------------------- */
.hero {
  height: 100vh;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero .social {
    display: none;
  }
}

.hero-column {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 992px) {
    .container {
        max-width: 100% !important;
    }
}


/* -----------------------------------------------------------------
    - Sections
----------------------------------------------------------------- */


.tail {
  display: block;
  position: relative;
  padding-left: 12vw;
}
.tail::before {
  content: '';
  background-color: #fff;
  height: 1px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10vw;
}
@media only screen and (max-width: 992px) {
  .tail::before {
    width: 0;
  }
}
@media only screen and (max-width: 992px) {
  .tail {
    padding-left: 0;
  }
}

.wrap-bg {
  overflow: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.js-image {
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

.overlay {
  position: relative;
}
.overlay::before, .overlay--45::before, .overlay--80::before {
  content: '';
  background-color: rgba(17, 15, 16, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.overlay--45::before {
  background-color: rgba(17, 15, 16, 0.45);
}
.overlay--80::before {
  background-color: rgba(17, 15, 16, 0.8);
}
.overlay .container {
  position: relative;
  z-index: 1;
}

.social {
  line-height: .8;
}
.social--floating {
  position: absolute;
  left: 4.25rem;
  bottom: 3.1rem;
  z-index: 1;
}
@media only screen and (max-height: 768px) {
  .social--floating {
    left: 3.12rem;
    bottom: 2rem;
  }
}
.social--white .social__link {
  color: #fff;
}
.social--white .social__link:hover {
  color: #fff;
}
.social--right {
  left: auto;
  right: 4.25rem;
}
.social__link {
  font-size: .87rem;
  display: inline-block;
  margin-right: 2rem;
  position: relative;
  text-decoration: none;
}
@media only screen and (max-width: 580px) {
  .social__link {
    margin-right: 1.07rem;
  }
}
.social__link:hover {
  color: #110f10;
}
.social__link:last-child {
  margin-right: 0;
}

.case-details {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
  font-size: 0.93rem;
  z-index: 1;
  padding-bottom:50px;
}
@media only screen and (max-width: 580px) {
  .case-details {
    font-size: 1rem;
  }
}
.case-details--vertical {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.case-details--vertical .item-details {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .case-details .item-details {
    flex: 0 0 50%;
  }
  .case-details .item-details:nth-last-child(2) {
    flex: 0 0 60%;
    margin-bottom: 0;
  }
  .case-details .item-details:last-child {
    flex: 0 0 40%;
    margin-bottom: -1.87rem;
  }
}
@media only screen and (max-width: 320px) {
  .case-details .item-details:nth-last-child(2) {
    flex: 0 0 100%;
  }
  .case-details .item-details:last-child {
    flex: 0 0 100%;
    margin-top: 1.25rem;
    margin-bottom: 0;
    text-align: left;
  }
}
.case-details .item-details__title {
  color: #8d99a7;
  display: block;
  letter-spacing: .1rem;
  margin-bottom: 0;
  text-transform: uppercase;
}
.case-details .item-details--end {
  margin-bottom: -2.2rem;
  text-align: right;
  flex: 0 0 35%;
}
.case-details .item-details.swiper-slide-duplicate {
  visibility: hidden;
}
.case-details .btn-link {
  justify-content: flex-end;
}

.slider__case-details {
  flex-wrap: nowrap;
}
.slider__case-details .item-details:nth-last-child(2) {
  flex: 0 0 100%;
}
.slider__case-details .item-details:last-child {
  flex: 0 0 100%;
}

.itemCard {
  margin-top: 1.87rem;
  padding-right: 8px;
  padding-left: 8px;
}
@media only screen and (max-width: 580px) {
  .itemCard {
    margin-top: 1.5rem;
    padding-right: 30px;
    padding-left: 30px;
  }
  .itemCard:first-child {
    margin-top: 0;
  }
}
.itemCard__imageWrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  overflow: hidden;
}
.itemCard__image {
  object-fit: cover;
  max-height: 500px;
  width: 100%;
}
@media only screen and (max-width: 580px) {
  .itemCard__image {
    height: 300px;
  }
}
@media only screen and (min-width: 1500px) {
  .itemCard__image {
    max-height: 600px;
  }
}
.itemCard__header {
  margin-top: 2rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 1200px) {
  .itemCard__header {
    margin-left: 1.6rem;
  }
}
@media only screen and (max-width: 992px) {
  .itemCard__header {
    margin-left: 1.6rem;
  }
}
@media only screen and (max-width: 580px) {
  .itemCard__header {
    margin-top: 1.2rem;
    margin-left: 0;
  }
}
.itemCard__title {
  font-family: "CR", sans-serif;
  font-weight: 400;
  margin-bottom: .8rem;
}
@media only screen and (max-width: 580px) {
  .itemCard__title {
    margin-bottom: 0;
  }
}

.item-brand {
  background-color: rgba(199, 201, 209, 0.09);
  text-align: center;
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (max-width: 580px) {
  .item-brand {
    margin-bottom: 15px;
  }
}
.item-brand:hover .item-brand__logo {
  transform: scale(1.1);
}
.item-brand__logo {
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}

@media only screen and (max-width: 580px) {
  .brands-wrap:nth-child(odd) div {
    margin-right: -7.5px;
  }
}

/* -----------------------------------------------------------------
    - Project
----------------------------------------------------------------- */

.item-project {
  flex: 0 0 49%;
  margin-bottom: 2rem;
  width: 49%;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .item-project {
    flex: 0 0 48.5%;
    margin-bottom: 2.4rem;
    width: 48.5%;
  }
}
@media only screen and (max-width: 992px) {
  .item-project {
    margin-bottom: 1.65rem;
  }
}
@media only screen and (max-width: 768px) {
  .item-project {
    margin-bottom: 3rem;
    flex: 0 0 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 580px) {
  .item-project {
    margin-bottom: 1rem;
  }
}
.item-project:last-child {
  margin-bottom: 0;
}
.item-project:hover .item-news__image {
  transform: scale(1.05);
}
.item-project__figure {
  margin: 0;
}
.item-project__link {
  height: 100%;
  width: 100%;
}

.gutter-sizer {
  width: 2%;
}
@media only screen and (max-width: 1200px) {
  .gutter-sizer {
    width: 3%;
  }
}
.gutter-sizer--3 {
  width: 5%;
}
@media only screen and (max-width: 1200px) {
  .gutter-sizer--3 {
    width: 8%;
  }
}

.onHover {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  text-decoration: none;
  z-index: 1;
}
.onHover::before {
  content: '';
  height: 100%;
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .9s ease-in-out;
  z-index: 1;
}
.onHover:hover {
  opacity: 1;
}
.onHover:hover::before {
  opacity: 1;
}
.onHover:hover .onHover__details, .onHover:hover .title {
  opacity: 1;
  transform: translate3d(0, 0%, 0);
}
.onHover__details {
  color: #fff;
  padding: 0 2rem;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 100%, 0);
  transition: all .5s ease-in-out;
  z-index: 2;
}
.onHover .title {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: all .5s .1s ease-in-out;
}
@media only screen and (max-width: 1200px) {
  .onHover .title {
    font-size: 1.286rem;
  }
}
@media only screen and (max-width: 768px) {
  .onHover .title {
    font-size: 1.715rem;
  }
}
@media only screen and (max-width: 580px) {
  .onHover .title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  .onHover .client {
    font-size: .86rem;
  }
}
@media only screen and (max-width: 768px) {
  .onHover .client {
    font-size: 1rem;
  }
}
.touch .onHover {
  opacity: 1;
}
.touch .onHover__details, .touch .onHover .title {
  opacity: 1;
  transform: translate3d(0, 0%, 0);
}

.grid-carousel {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}


/* -----------------------------------------------------------------
    - Project Single
----------------------------------------------------------------- */

.header-fullscreen {
  background-color: #110f10;
  color: #fff;
  height: 100vh;
}
.header-fullscreen.header-page {
  margin-top: 0;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 580px) {
  .header-fullscreen.header-page {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.header-fullscreen .title--overhead,
.header-fullscreen .item-details__title,
.header-fullscreen .btn-link {
  color: #fff;
}
.header-fullscreen .title--tail::before {
  background-color: #fff;
}

.header-page {
  margin-top: 50px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .header-page {
    margin-top: 0px !important;
  }
}
@media only screen and (max-width: 580px) {
  .header-page {
    margin-top: 0px !important;
  }
}
.header-page--gutterBottom {
  height: 90vh;
}
.header-page--half {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
  .header-page--half {
    margin-bottom: 0px !important;
  }
}
.header-page__container-fluid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  padding-left: 4.25rem;
  padding-right: 4.25rem;
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 1500px) {
  .header-page__container-fluid {
    padding-left: 3.12rem;
    padding-right: 3.12rem;
  }
}
@media only screen and (max-width: 580px) {
  .header-page__container-fluid {
    padding-left: 1.42rem;
    padding-right: 1.42rem;
  }
}
@media only screen and (min-width: 2400px) {
  .header-page__container-fluid {
    padding-left: 6.25rem;
    padding-right: 6.25rem;
  }
}
.header-page__container-fluid .row {
  align-items: center;
  width: 100%;
}
.header-page .title--display-1 {
  font-weight: 300;
}
@media only screen and (max-width: 580px) {
  .header-page .title--display-1 {
    font-weight: 400;
	  margin-bottom:0px !important
  }
}
.header-page__description {
  font-size: 1.125rem;
}
@media only screen and (max-width: 992px) {
  .header-page__description {
    padding-bottom: 1.25rem;
  }
}


/* -----------------------------------------------------------------
    - Playground
----------------------------------------------------------------- */


.desktopHide {
display:none
}

.homePage {
    max-width: calc(100% - 70px) !important;
	padding-bottom: 40px !important
}

.container {
padding-right:0px !important;
padding-left:0px !important;
}

.projectContainer {
padding:0px;
margin:auto;
max-width:100%;
}

.projectDeets {
	width:85%;
  font-family: "CR", sans-serif;
  font-size: 38px;
  font-weight: 400;
	line-height:47px;
	margin-bottom:-30px !important;
	
	padding-left:30px
}


.aboutHalf {
	width:50% !important
}

.aboutSection {
	margin-top:30px !important
}

.aboutDeets {
	width:90%;
  font-family: "CR", sans-serif;
  font-size: 40px;
  font-weight: 400;
	line-height:47px;
	padding-left:30px;
height : 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aboutDeets p {
	margin-top:-40px !important
}

.aboutLink {
  background: linear-gradient(#AE81DE, #AE81DE) left no-repeat, #4E5E96;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: .3s ease-in-out;
}

.aboutLink:hover {
  background-size: 100% 100%;
}

@media only screen and (max-width: 1300px) {
	
.aboutDeets {
  font-size: 33px;
line-height:38px;
}
}

@media only screen and (max-width: 1040px) {
	
.aboutDeets {
  font-size: 25px;
line-height:30px;
	padding-left:0px !important
}
}

@media only screen and (max-width: 768px) {
	
	.aboutMasonry {
		display:block !important
	}
	
.projectDeets {
	width:100%;
  font-size: 30px;
	line-height:35px;
	margin:40px 0px 30px 0px !important;
	padding-left:0px
}
	.aboutHalf {
	width:100% !important
} 
	
.aboutDeets {
	width:100%;
  font-size: 30px;
	line-height:35px;
	margin:15px 0px 30px 0px !important;
	padding-left:0px
}
	
img.aboutImg {
    padding:0px 0px 0px 0px !important;
}
	
}

@media only screen and (max-width: 580px) {
.projectDeets {
  font-size: 23px;
	line-height:27px;
	margin-bottom:-15px !important;
	padding-left:0px;
}
	
	.aboutDeets {
  font-size: 23px;
	line-height:27px;
	padding-left:0px
}
	
	.aboutHalf {
	width:100% !important
} 
	
}



@media only screen and (max-width: 992px) {
	.projectContainer {
	padding:0px 35px;
	}
	
	.project-single {
	margin-bottom:0px !important;
	padding-right:0px !important;
	padding-left:0px !important;
}
	
		
.a24Top {
padding-top:30px !important		
}
	
}

@media only screen and (max-width: 580px) {
	.projectContainer {
	padding:0px 15px;
	}
}

.project-single {
	margin-bottom:0px !important;
	padding-right:35px;
	padding-left:35px;
}

.projectHero img {
width:100%;
}


.projectStrip {
display: flex;
flex-wrap: wrap;
position:absolute;
width: calc(100% - 70px);
max-width:100%;
}

.projectStripItem {
display: inline-block;
height:40px;
flex-grow: 1;
transition: height 0.5s;
-webkit-transition: height 0.5s;
overflow: hidden;
}

.projectStripItem p {
padding:58px 0px 0px 20px;
}

.projectStripItem:hover {
height: 100px;
}

.stripSpace {
padding-top:40px
}

.projectSection {
margin-top:120px;
}


.projectFull {
width:100%;
height:100%
}


.projectDouble,
.projectMasonry {
display: flex;
}

.projectDouble img,
.projectMasonry .projectRow {
display: inline-block;
width:50%;
height:100%
}

.stripSpace video {
width:100% !important
}

.a24Space video {
width:100% !important
}

.projectMasonry .projectOneThrid,
.projectMasonry .projectTwoThrid { 
display: inline-block;
height:100%
}

.projectMasonry .projectOneThrid {
width:33.3%;
}

.projectMasonry .projectOneThrid img {
padding:12px 24px 0px 0px !important;
}

.projectMasonry .projectOneThrid img {
padding:12px 24px 0px 0px !important;
}

.projectMasonry .projectTwoHalf img {
padding:12px 0px 12px 24px !important;
}

.projectMasonry .projectTwoHalf video {
padding:12px 0px 0px 24px !important;
}

.projectMasonry .projectTwoHalf:first-child img {
padding:12px 0px 0px 0px !important;
}

.projectMasonry .projectTwoHalf2:first-child img {
padding:0px 12px 0px 0px !important;
}

.projectMasonry .projectTwoHalf2 img {
padding:0px 0px 0px 12px !important;
}

.a24Full {
padding:24px 0px !important
}

@media only screen and (max-width: 580px) {
	
.projectMasonry .projectTwoHalf2:first-child img {
padding:0px 8px 0px 0px !important;
}

.projectMasonry .projectTwoHalf2 img {
padding:0px 0px 0px 8px !important;
}

.a24Full {
padding:15px 0px !important
}

	
}

.projectMasonry .projectOneThrid img.dc {
padding:0px 24px 0px 0px !important;
}

.projectMasonry .projectTwoThrid {
width:66.6%;
}

.projectMasonry .projectTwoHalf {
width:50%;
}

.projectMasonry .projectTwoThrid video {
width:100%;
}

.rowSplit img,
.rowSplit video {
width:49.7%;
}

.vts img,
.vts video {
width:100%;
padding:6px 12px
}

.vts .projectOneThrid {
width:35.75% !important;
}

.vts {
width:90%;
margin:120px auto 
}

.rowSplit img:nth-child(odd) {
padding:12px 12px 12px 0px !important;
}

.rowSplit img:nth-child(even) {
padding:12px 0px 12px 12px !important;
}


.collibraWeb {
margin-top:50px !important;
}

.collibraPages {
margin-top:0px !important;
}

.collibraPages .projectRow {
margin-top:0px !important;
}

.collibraPages .projectRow:nth-child(odd) {
text-align:right;
padding-right:30px;
}

.collibraPages .projectRow:nth-child(even) {
margin-top:120px !important;
text-align:left;
padding-left:30px;
}

.collibraPages .projectRow img {
width:85% !important;
padding-bottom:120px
}

.collibraSocial {
text-align:center
}

.collibraSocial img {
max-width:70%;
}

.vtsTradeshow img:first-child {
width:56.75% !important
}

.vtsTradeshow img:last-child {
width:43.25%
}

.vtsTradeshowLast{
padding-top:25px !important
}

.vimeo-outer {
	width: 100%;
}

.vimeo-inner {
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}

.vimeo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.collibraTradeshow .projectFull {
padding-bottom:24px;
}

.collibraTradeshow .projectDouble img:nth-child(odd) {
padding-right:12px;
}

.collibraTradeshow .projectDouble img:nth-child(even) {
padding-left:12px;
}

.webSection {
background-color:#F4F4F4
}

.webInner {
margin-top:60px !important
}

.stir {
margin-bottom:20% !important
}


.monitorParent {
  width:100%;
  margin:0px auto;
}

.sticky-monitor {
text-align: center;
z-index:1;
}

.sticky-monitor img {
width:100%;
left:0;
right:0;
margin-left:auto;
margin-right:auto;
z-index:4
}

.image,
.video {
text-align:center;
}


.image img {
margin-top:-51%;
width:60%;
margin-bottom:13%
} 

.video{
margin-top:-51%;
}

.videoMobile {
display:none
} 


.is-sticky {
position: sticky; 
position: -webkit-sticky;
position: -moz-sticky;
position: -ms-sticky;
position: -o-sticky;
top: 0; 
}

.hide-image {
position: absolute;
width: 100%;
transform: translateY(-4px);
z-index:9999;
margin-top:-8%
}

.singlePage {
text-align:center;
}

.singlePage img {
width:60%;
height:100%;
margin: 110px auto 0px auto !important;
}

.doubleBorder {
border: 1px solid #F4F4F4;
background-color:white;
box-shadow:inset 0 0 0 4px #ffffff; 
margin: 0 auto;
padding: 25px 20px 20px 20px;
width: 20px;
height:  20px;
position: relative;
}

.logoContainer {
text-align:center;
border-bottom:1px solid #E4E4E4
}

.logoContainer img {
padding:300px 20px;
}

.pharmacyIcons {
background-color:#F9F9F9 !important;
padding:0px !important
}

.fbIcons {
background-color:#FAFAF8 !important;
padding:0px !important
}

.iconContainer {
display:inline-block;
width:25%;
margin-right:-4px;
text-align:center;
}

.iconContainer img {
padding:28%
}

.contactContainer{
display: flex;
}

.contactContainer .contact-wrap {
width: 50%;
padding-top:50px;
display:inline-block
}

.contactIconContainer {
background-color:#4E5E96;
height: 100vh;
width:50%;
display:inline-block;
margin-top:-115px;
}

.contactIconContainer .social {
margin-top: -moz-calc(50% - 70px);
margin-top: -webkit-calc(50% - 70px);
margin-top: calc(50% - 70px);
margin-left:15%
}

.social span {
color: #fff;
font-family: "CB", sans-serif;
font-size: 5rem;
display: inline-block;
line-height: 1;
overflow: hidden;
position: relative;
text-decoration: none;  
}

.social span:first-child {
padding-bottom:10px;
}

.social a {
text-decoration:none
}


.homeIconContainer {
width:50%;
}

.homeIconContainer img.linkedIn {
width:87px;
padding-bottom:30px;
margin-right:30px;
}

.homeIconContainer img.cv {
width:102px;
}

.menu .logo-container img {
height: 45px;
}

@media only screen and (max-width: 768px) {
    .title--display-1 {
        font-size: 2.5rem !important;
    }
}

@media only screen and (max-width: 992px) {

	.project-single {
	margin-bottom:50px !important;
	}
	
	.projectSection {
	margin-top:30px;
	}
	
	.projectStrip {
	width: calc(100% - 70px);
	}
	
	.projectStripItem {
	height:30px;
	}
	
	.projectStripItem:hover {
	height: 30px;
	}
	
	.iconContainer {
	width:33% !important;
	}
	
	.container {
	padding-right:35px !important;
	padding-left:35px !important;
    max-width: 100% !important;
	}
	
	.sticky-monitor {
	display:none !important
	}
	
	.image img {
	margin-top:10%;
	width:80%;
	margin-bottom:10%;
	border:1px solid #eeeeee
	} 
	
	.image img.noBorder {
	border:none
	} 
	
	.video {
	display:none
	} 
	
	.videoMobile {
	display:block;
	text-align:center;
	padding:40px 0px;
	} 
	
	
	.rowSplit img {
	width:49.5%;
	}

	.projectMasonry .projectOneThrid img {
	padding:6px 14px 0px 0px !important;
	}
	
	.rowSplit img:nth-child(odd) {
	padding:6px 6px 6px 0px !important;
	}

	.rowSplit img:nth-child(even) {
	padding:6px 0px 6px 6px !important;
	}

	.collibraPages .projectRow:nth-child(odd) {
	text-align:right;
	padding-right:15px;
	}

	.collibraPages .projectRow:nth-child(even) {
	margin-top:60px !important;
	text-align:left;
	padding-left:15px;
	}

	.collibraPages .projectRow img {
	width:85% !important;
	padding-bottom:60px
	}

	.collibraSocial {
	padding:30px 0px
	}

	.collibraTradeshow .projectFull {
	padding-bottom:12px;
	}

	.collibraTradeshow .projectDouble img:nth-child(odd) {
	padding-right:6px;
	}

	.collibraTradeshow .projectDouble img:nth-child(even) {
	padding-left:6px;
	}
	
	
	
	.vtsTradeshowLast{
	padding-top:16px !important
	}
	
	.stir {
    margin-bottom: 0px !important;
	}
	
	.singlePage img {
	width:80%;
	height:100%;
	margin: 40px auto 0px auto !important;
	}
	
	.doubleBorder {
	margin: 0 auto;
	padding: 10px 10px 10px 10px;
	width: 15px;
	height:  15px;
	}
	
	.logoContainer img {
	padding:100px;
	}
	

	.contactContainer {
    display: block;
	}
	
	.contactContainer .contact-wrap {
    width: 100%;
    padding-top: 50px;
    display: block;
	}
	
	.contactIconContainer {
    height: 100%;
    width: 100%;
    display: block;
	}
	
	.contactIconContainer .social {
    margin-top: -moz-calc(0);
    margin-top: -webkit-calc(0);
    margin-top: calc(0);
    margin-left: 4em;
    padding-top:30px;
    padding-bottom:30px;
}

}

@media only screen and (max-width: 580px) {
	
	.project-single {
	padding-right:0px !important;
	padding-left:0px !important;
}

	.mobileHide {
	display:none
	}

	.desktopHide {
	display:block
	}
	
	.projectStripItem {
	height:20px;
	}
	
	.projectStrip {
	width: calc(100% - 30px);
	}
	
	.projectStripItem {
	height:20px;
	}

	.projectDouble {
	display: block;
	}
	
	.projectDouble img {
	display: block;
	width:100%;
	}
	
	.projectDouble img:first-child {
	padding-bottom:35px
	}
	
	.iconContainer {
	width:50% !important;
	}
	

	.iconContainer img {
	padding:20% !important
	}
	
	.container {
	padding-top:20px;
	padding-right:20px !important;
	padding-left:20px !important;
	}
	
	.collibraPages .projectMasonry  {
    display: block !important;
    text-align: center !important;
	}
	
	.collibraPages .projectMasonry .projectRow {
    width:93% !important
	}
	
	.collibraPages .projectRow:nth-child(odd),
	.collibraPages .projectRow:nth-child(even) {
    text-align: center !important;
    padding-right: 0px;
	}

	.collibraPages .projectRow img {
	padding-bottom:18px
	}
	
	.collibraPages .projectRow:nth-child(even) {
    margin-top: 30px !important;
	}
	
	.projectMasonry .projectOneThrid,
	.projectMasonry .projectTwoThrid {
	width:100% !important;
	}
	
	.vts {
	width:100%;
	margin:50px auto 
	}
	
	.vts img,
	.vts video {
	width:100%;
	padding:6px 0px
	}

	.vts .projectOneThrid {
	width:100% !important;
	}
	
	.vts .projectMasonry {
    display: block;
	}
	
	.vtsTradeshow img:first-child,
	.vtsTradeshow img:last-child  {
	width:100% !important
	}

	.projectMasonry .projectOneThrid img {
	padding:0px 16px 16px 0px !important;
	}
	
	.projectMasonry .projectTwoHalf img {
	padding:0px 0px 16px 16px !important;
	}
	
	.projectMasonry .projectTwoHalf:first-child img {
	padding-top:0px !important;
	}

	.projectMasonry .projectTwoThrid {
	width:100%;
	}
	
	

.projectMasonry .projectTwoHalf video {
padding:0px 0px 6px 15px !important;
}


	.rowSplit img {
	width:100%;
	}
	
	.rowSplit img:nth-child(odd),
	.rowSplit img:nth-child(even) {
	padding:0px 0px 16px 0px !important;
	}
	
	.collibraSocial img {
	max-width:90%;
	}

	.social span {
    font-size: 3rem !important;
	}
	
	.collibraTradeshow .projectFull {
	padding-bottom:16px;
	}

	.collibraTradeshow .projectDouble img:nth-child(odd) {
	padding:0px 0px 16px 0px;
	}
	
	.collibraTradeshow .projectDouble img:nth-child(even) {
	padding:0px
	}
		
	.footer__left {
	display: -webkit-flex;
  	display: -ms-flexbox;
 	display: -moz-box;
 	display: flex;
  	-webkit-flex-direction: column;
  	-ms-flex-direction: column;
  	flex-direction: column;
  	-webkit-align-items: left !important;
  	-ms-flex-align: left !important;
  	align-items: left !important;
  	color: #fff;
  	padding: 6rem;
  	align-self: left !important;
	}

}


/* -----------------------------------------------------------------
    - Page Nav
----------------------------------------------------------------- */

.cool-hover {
  background: linear-gradient(#4E5E96, #4E5E96) left no-repeat, #110f10;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: .3s ease-in-out;
}

.cool-hover:hover {
  background-size: 100% 100%;
}



.page-nav {
position:relative !important;
 /*  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  justify-content: space-between; */
  padding: 2rem 4.25rem;
  width:100%;
	  text-align:center !important;
}

@media only screen and (max-width: 992px) {
  .page-nav {
    margin-top: 3rem;
    padding: 2rem 1.87rem;
  }
}
@media only screen and (max-width: 768px) {
  .page-nav {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 580px) {
  .page-nav {
    margin-top: 1.42rem;
    padding: .93rem .93rem;
  }
}
.page-nav__single {
  margin-top: 6rem;
  padding: 3rem 0 4rem;
}
@media only screen and (max-width: 580px) {
  .page-nav__single {
    margin-top: 3rem;
    padding: 2rem 0;
  }
}
.page-nav .btn-link {
  font-size: 5rem;
text-align:center !important;
  font-family: "CB", sans-serif;
}

@media only screen and (max-width: 768px) {
  .page-nav .btn-link {
    font-size: 50px;
    letter-spacing: 0;
  }
}

.award-item {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1500px) {
  .award-item {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .award-item {
    margin-bottom: 1.5rem;
  }
  .award-item:first-child {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 580px) {
  .award-item:first-child {
    margin-top: 0;
  }
  .award-item:last-child {
    margin-bottom: 0;
  }
}
.award-item .title {
  margin-bottom: .5rem;
}

/* -----------------------------------------------------------------
    - Menu
----------------------------------------------------------------- */
.menu {
  background: #4E5E96;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  transition: all 0s 0.5s cubic-bezier(0.645, 0.05, 0.355, 1);
  width: 100%;
  z-index: 1000;
}
.menu.menu-show {
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate3d(0, 0%, 0);
}
.menu.menu-show .menu-inner {
  transform: translateY(0);
}
.menu.menu-show .menu-list__item span {
  opacity: 1;
  transform: translate3d(0, 0%, 0);
}
.menu.menu-show .social {
  opacity: 1;
}
.menu.menu-show .navbar {
  background-color: transparent;
}
.menu .social {
  align-self: flex-start;
  margin-bottom: 2.5rem;
  margin-left: 4.25rem;
  opacity: 0;
  transition: all 0.6s 1s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
@media only screen and (max-width: 1500px) {
  .menu .social {
    margin-left: 3.12rem;
  }
}
@media only screen and (max-width: 768px) {
  .menu .social {
    align-self: center;
    margin-left: 0;
  }
}
@media only screen and (max-width: 580px) {
  .menu .social {
    margin-bottom: 2rem;
  }
}

.menu-inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem 4.25rem 0;
  width: 100%;
}
@media only screen and (max-width: 1500px) {
  .menu-inner {
    padding: 2rem 3.12rem 0;
  }
}

.menu-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  font-family: "CB", sans-serif;
  flex: 1;
  list-style: none;
  margin-bottom: 13px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .menu-list {
    overflow: auto;
    text-align: center;
  }
}
@media only screen and (max-height: 320px) {
  .menu-list {
    justify-content: normal;
    padding: 2.14rem 0 0;
  }
}
.menu-list.has-hovered-link .menu-list__item {
  opacity: .1;
}
.menu-list.has-hovered-link .menu-list__item:hover {
  opacity: 1;
}
.menu-list__item {
  color: #fff;
  font-size: 6.25rem;
  letter-spacing:-1px;
  display: inline-block;
  line-height: 1.3;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
@media only screen and (max-width: 1500px) {
  .menu-list__item {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .menu-list__item {
    margin-top: .62rem;
    font-size: 3.75rem;
  }
}
@media only screen and (max-width: 580px) {
  .menu-list__item {
    font-size: 3.5rem;
  }
}
@media only screen and (max-height: 350px) {
  .menu-list__item {
    margin-bottom: 1.07rem;
  }
}
.menu-list__item:hover {
  color: #fff;
}
@media only screen and (max-width: 580px) {
  .menu-list__item:hover {
    opacity: .5;
  }
}
.menu-list__item span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: all 0.6s 0.64s cubic-bezier(0.72, 0.16, 0.345, 0.875);
}
li:nth-child(2) .menu-list__item span {
  transition-delay: .74s;
}
li:nth-child(3) .menu-list__item span {
  transition-delay: .84s;
}
li:nth-child(4) .menu-list__item span {
  transition-delay: .94s;
}

.ef-background {
  background-color: #000;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
}
.ef-background.animated {
  display: block;
  animation: reveal-vertical 1s cubic-bezier(0.645, 0.05, 0.355, 1) both;
}

@keyframes reveal-link {
  0% {
    transform: translateX(-100%);
  }
  10% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
/* -----------------------------------------------------------------
    - About
----------------------------------------------------------------- */
.col--award {
  width: 60%;
}
@media only screen and (max-width: 768px) {
  .col--award {
    width: 100%;
  }
}

.col--clint {
  width: 30%;
}
@media only screen and (max-width: 768px) {
  .col--clint {
    width: 100%;
  }
}

.col--year {
  width: 10%;
}
@media only screen and (max-width: 768px) {
  .col--year {
    width: 100%;
  }
}

/* -----------------------------------------------------------------
    - Services
----------------------------------------------------------------- */
.itemService {
  margin-top: 1.87rem;
  margin-bottom: 1rem;
}
.itemService .paragraph {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 580px) {
  .itemService .itemCard__header {
    margin-top: 2rem;
  }
}

/* -----------------------------------------------------------------
    - Contact
----------------------------------------------------------------- */
@media only screen and (max-width: 580px) {
  .contect-block {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .contect-block .title {
    margin-bottom: 1.5rem;
  }
}

.contact-info {
  font-size: 1.5rem;
  line-height: 1.7;
}
@media only screen and (max-width: 1200px) {
  .contact-info {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 768px) {
  .contact-info {
    font-size: 1rem;
    line-height: 1.4;
  }
}

.contact-wrap {
  margin-top: 4rem;
  padding-left: 6rem;
  padding-right: 8.26rem;
}
@media only screen and (max-width: 1500px) {
  .contact-wrap {
    padding-left: 4rem;
    padding-right:  4rem;
  }
}
@media only screen and (max-width: 992px) {
  .contact-wrap {
    padding-right:  4rem;
  }
}
@media only screen and (min-width: 2400px) {
  .contact-wrap {
    padding-left: 10rem;
    padding-right: 14.26rem;
  }
}
@media only screen and (max-width: 1200px) {
  .contact-wrap .btn {
    width: 100%;
  }
}
.contact-wrap #validator-contact {
  padding-top: 2rem;
}
@media only screen and (max-width: 580px) {
  .contact-wrap #validator-contact {
    padding-top: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .contact-form {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form .btn {
    width: 100%;
  }
}

.map-block {
  height: 100vh;
  margin-right: -4.25rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 1500px) {
  .map-block {
    margin-right: -3.12rem;
  }
}
@media only screen and (max-width: 992px) {
  .map-block {
    height: 50vh;
    margin-right: 0;
    margin-top: 1rem;
    margin-bottom: 3.12rem;
  }
}
@media only screen and (max-width: 580px) {
  .map-block {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 2400px) {
  .map-block {
    margin-right: -6.25rem;
  }
}

.popover-map-title {
  font-size: 1.2rem;
  margin-top: .2rem;
  margin-bottom: .5rem;
}
.popover-map-caption {
  font-weight: 400;
}

/* -----------------------------------------------------------------
    - News
----------------------------------------------------------------- */
.filters-title {
  display: inline-flex;
  padding-right: 3.2rem;
}
@media only screen and (max-width: 992px) {
  .filters-title {
    font-size: .87rem;
    padding-right: 2.5rem;
  }
}

@media only screen and (min-width: 769px) {
  .filters {
    display: inline-flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  .filters__item {
    font-size: 1.1rem;
    font-weight: 400;
    padding-right: 3.2rem;
  }
  .filters__item:first-child {
    padding-right: 0;
    pointer-events: none;
  }
  .filters__item:last-child {
    padding-right: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .filters__item {
    font-size: 1rem;
    padding-right: 2.5rem;
  }
}
@media only screen and (min-width: 769px) and (max-width: 580px) {
  .filters__item {
    font-size: 1rem;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .filters__item.active .filters__link::before {
    content: '';
    background-color: #4E5E96;
    opacity:.3;
    height: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .filters__link {
    padding: 0 4px;
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
  }
  .filters__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -.5rem;
    width: calc(100% + 1rem);
    background-color: #4E5E96;
    opacity:.3;
    height: 10px;
    transform: translateX(-100%);
  }
  .filters__link:hover::after {
    animation: link-hover 0.8s cubic-bezier(0.58, 0.3, 0.005, 1) 0s 1;
  }
}
@keyframes link-hover {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.select .placeholder {
  display: none;
}

@media only screen and (max-width: 768px) {
  .select {
    position: relative;
    display: block;
    width: 100%;
    color: #fff;
    vertical-align: middle;
    text-align: left;
    user-select: none;
    -webkit-touch-callout: none;
    z-index: 2;
  }
  .select .placeholder {
    position: relative;
    display: block;
    background-color: #110f10;
    z-index: 1;
    padding: .5rem 1.2rem;
    cursor: pointer;
  }
  .select .placeholder:hover {
    background-color: rgba(17, 15, 16, 0.9);
  }
  .select .placeholder:after {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'fonticons';
    content: '\e805';
    z-index: 10;
  }
  .select.is-open .placeholder:after {
    content: '\e804';
  }
  .select.is-open ul {
    display: block;
  }
  .select ul {
    display: none;
    position: absolute;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 60px rgba(17, 15, 16, 0.1);
    top: 100%;
    left: 0;
    padding: 0;
    z-index: 100;
    max-height: 200px;
  }
  .select ul li {
    display: block;
    text-align: left;
    padding: .5rem 1.2rem;
    color: #110f10;
    cursor: pointer;
  }
  .select ul li:hover {
    background: rgba(17, 15, 16, 0.05);
  }
  .select ul li:first-child {
    display: none;
  }
  .select ul li a {
    text-decoration: none;
  }
}
.grid-news {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-news {
  flex: 0 0 46%;
  margin-bottom: 3rem;
  width: 46%;
}
@media only screen and (max-width: 1200px) {
  .item-news {
    flex: 0 0 48%;
    width: 48%;
  }
}
@media only screen and (max-width: 992px) {
  .item-news {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 580px) {
  .item-news {
    margin-bottom: 1rem;
  }
}
.item-news:last-child {
  margin-bottom: 0;
}
.item-news--tree {
  flex: 0 0 30%;
  width: 30%;
}
@media only screen and (max-width: 1200px) {
  .item-news--tree {
    flex: 0 0 46%;
    width: 46%;
  }
}
@media only screen and (max-width: 768px) {
  .item-news--tree {
    flex: 0 0 100%;
    width: 100%;
  }
}
.item-news__media {
  height: 330px;
  overflow: hidden;
}
.item-news__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}
.item-news:hover .item-news__image {
  transform: scale(1.05);
}
.item-news__header {
  padding-top: 1.5rem;
  padding-left: 3.5rem;
}
@media only screen and (max-width: 580px) {
  .item-news__header {
    padding-top: .2rem;
    padding-left: 0;
  }
}
.item-news .date {
  position: relative;
}
.item-news .date::before {
  content: '';
  background-color: #8d99a7;
  height: 1px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3.5rem;
  width: 2rem;
}
.item-news__title {
  font-weight: 400;
  margin-top: 1rem;
}
@media only screen and (max-width: 580px) {
  .item-news__title {
    font-size: 1.4rem;
    margin-top: .5rem;
  }
}
.item-news__title a {
  text-decoration: none;
}

.item-news--tree .item-news__header {
  padding-top: 1rem;
  padding-left: 2rem;
}
@media only screen and (max-width: 580px) {
  .item-news--tree .item-news__header {
    padding-top: .2rem;
    padding-left: 0;
  }
}
.item-news--tree .item-news__title {
  font-size: 1.4rem;
}
.item-news--tree .date::before {
  left: -2.0rem;
  width: 1rem;
}

.date {
  color: #8d99a7;
  font-size: .85rem;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

.hover-line {
  background-image: linear-gradient(to right, #110f10 0%, #110f10 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  transition: background-size 0.25s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  padding: 0.1% 0;
}

.triger-hl:hover .hover-line {
  background-size: 100% 2px;
}

.single-news__media {
  margin-bottom: 4rem;
  margin-left: -50vw;
  overflow: hidden;
  position: relative;
  left: 50%;
  width: 100vw;
}
@media only screen and (max-width: 580px) {
  .single-news__media {
    margin-bottom: 2rem;
  }
}
.single-news__image {
  object-fit: cover;
  width: 100%;
  height: 45vw;
}
@media only screen and (max-width: 992px) {
  .single-news__image {
    height: 60vw;
  }
}
.single-news__video {
  height: 45vw;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .single-news__video {
    height: 50vw;
  }
}

.flex-gallery-container {
  margin-top: 1.2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 580px) {
  .flex-gallery-container {
    margin-bottom: .5rem;
  }
}

.flex-gallery {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  margin: 0 -5rem;
}
@media only screen and (max-width: 992px) {
  .flex-gallery {
    margin: 0 -1rem;
  }
}
@media only screen and (max-width: 768px) {
  .flex-gallery {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 580px) {
  .flex-gallery {
    margin: 0;
  }
}
.flex-gallery__item {
  flex: 1;
  margin-right: 1rem;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .flex-gallery__item {
    margin-right: .62rem;
    margin-bottom: .62rem;
  }
}
.flex-gallery__item:last-child {
  margin-right: 0;
}

.image-caption {
  color: #8d99a7;
  font-size: .87rem;
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}
.image-caption--two {
  margin-left: calc(-100% - 1rem);
}
@media only screen and (max-width: 768px) {
  .image-caption--two {
    margin-left: 0;
  }
}
.image-caption--three {
  margin-left: calc(-200% - 2rem);
}
@media only screen and (max-width: 768px) {
  .image-caption--three {
    margin-left: 0;
  }
}

.scroll-line {
  background: #4E5E96;
  height: 3px;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 1;
}

.share-post {
  margin-top: 1rem;
  padding-top: 2rem;
  position: relative;
  text-align: center;
}
.share-post::before {
  background-color: #110f10;
  content: '';
  height: 1px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 6rem;
}
.share-post a {
  display: inline-flex;
  margin: 0 1.5rem;
  text-decoration: none;
}
@media only screen and (max-width: 580px) {
  .share-post a {
    margin: 0 1rem;
  }
}
.share-post a span {
  font-size: .86rem;
  font-weight: 400;
  line-height: 2.3;
  padding-left: .8rem;
}
@media only screen and (max-width: 580px) {
  .share-post a span {
    display: none;
  }
}

/* -----------------------------------------------------------------
    - Footer
----------------------------------------------------------------- */
.footer {
  margin-top: 8rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 580px) {
  .footer {
    margin-top: 2rem;
  }
}
.footer::before {
  content: '';
  background-color: #110f10;
  position: absolute;
  height: 100%;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .footer::before {
    height: 0;
  }
}
.footer__left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  padding: 6rem;
  align-self: center;
}
@media only screen and (max-width: 992px) {
  .footer__left {
    padding: 5rem 0 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer__left {
    background-color: #110f10;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 580px) {
  .footer__left {
    padding: 2rem 0 1rem;
  }
}
.footer__right {
  padding: 6rem 0 3rem 10vw;
}
@media only screen and (max-width: 768px) {
  .footer__right {
    padding: 3rem 0 0 2rem;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.listContact {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 768px) {
  .listContact {
    margin-bottom: 2rem;
  }
}
.listContact .title {
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .listContact .title {
    margin-bottom: .8rem;
  }
}
@media only screen and (max-width: 580px) {
  .listContact .title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: .6rem;
  }
}

.newsletter-form__row .inputText {
  padding: 1rem 5rem 1rem 1.5rem;
  width: 30vw;
  margin-right: -62px;
}
@media only screen and (max-width: 768px) {
  .newsletter-form__row .inputText {
    width: 80vw;
  }
}
@media only screen and (max-width: 580px) {
  .newsletter-form__row .inputText {
    padding: 1.1rem 5rem 1.1rem 1.5rem;
    margin-right: -2rem;
  }
}
@media only screen and (min-width: 1500px) {
  .newsletter-form__row .inputText {
    width: 20vw;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .newsletter-form__row .inputText {
    line-height: 1;
    padding: 1.4rem 5rem 1.4rem 1.5rem;
  }
}

#validator-newsletter {
  font-size: .89rem;
  font-weight: 300;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 768px) {
  #validator-newsletter {
    text-align: center;
  }
}

/* -----------------------------------------------------------------
    - 404
----------------------------------------------------------------- */
.parallax-container {
  overflow: hidden;
}

.error-page {
  height: 100vh;
}

.mask-object {
  filter: drop-shadow(0 20px 30px rgba(17, 15, 16, 0.1));
  margin-bottom: 2rem;
  width: 30vw;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.8, 1);
}
@media only screen and (max-width: 992px) {
  .mask-object {
    width: 50vw;
  }
}

/* -----------------------------------------------------------------
    - Custom PhotoSwiper
----------------------------------------------------------------- */
.pswp {
  z-index: 1010;
}

.pswp__caption {
  display: none;
}

.pswp__top-bar {
  background: transparent;
}

.pswp__container,
.pswp--zoom-allowed .pswp__img {
  cursor: none;
}

/* -----------------------------------------------------------------
    - Effects
----------------------------------------------------------------- */
.reveal {
  position: relative;
  overflow: hidden;
}
.reveal::after, .reveal::before {
  content: '';
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.reveal::after {
  background: #fff;
  z-index: 1;
}
.touch .reveal::after, .touch .reveal::before {
  visibility: hidden;
}
.reveal.animated::before {
  background: #110f10;
  animation: reveal 2s cubic-bezier(0.77, 0, 0.175, 1) both;
  z-index: 2;
}
.reveal.animated::after {
  animation: revealBack 2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

@keyframes reveal {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes revealBack {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes reveal-vertical {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.js-text-wave div {
  display: inline-block;
  overflow: hidden;
}

.js-text-wave div span {
  display: inline-block;
  transform: translate3d(0, 100%, 0);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.js-text-wave.complete div span {
  transform: translate3d(0, 0, 0);
}

.js-lines-l {
  overflow: hidden;
}

.down-up {
  display: block;
  margin-top: -5px;
  overflow: hidden;
  position: relative;
}
.down-up span {
  display: block;
  transform: translate3d(0, 100%, 0);
  transition: opacity, transform 0.75s cubic-bezier(0.8, 0, 0.2, 1);
}
.down-up.animated span {
  opacity: 1;
  transform: translate3d(0px, 0%, 0px);
}

/* Text down*/
.down-up-2 {
  display: inline-block;
  margin-top: -5px;
  overflow: hidden;
}
.down-up-2 span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  transition: opacity, transform 0.8s 400ms cubic-bezier(0.7, 0, 0.3, 1);
}
.down-up-2.animated span {
  opacity: 1;
  transform: translate3d(0px, 0%, 0px);
}

/*.cursor {
  background-color: #4E5E96;
  border-radius: 50%;
  display: block;
  position: fixed;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: scale(1);
  transition: transform .35s ease-out;
  z-index: 1011;
} */

@supports not (mix-blend-mode: multiply) {
  .cursor {
    opacity: .7;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cursor {
    visibility: hidden;
  }
}
.cursor-close {
  background-color: #110f10;
  transform: matrix(3, 0, 0, 3, 0, 0) !important;
  mix-blend-mode: difference;
}
.cursor-close::before, .cursor-close::after {
  content: '';
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  animation: cursorClose .6s .1s ease-in-out both;
}
.cursor-close::before {
  height: 100%;
  width: 1px;
}
.cursor-close::after {
  height: 1px;
  width: 100%;
}

.open .cursor {
  mix-blend-mode: lighten;
}

.touch .cursor {
  display: none;
}

.cursor--active {
  animation: cursor-active 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}
.cursor--active.cursor--zoom {
  animation: cursor-active2 0.6s cubic-bezier(0.72, 0.16, 0.345, 0.875) both;
}

@keyframes cursor-active {
  0% {
    box-shadow: 0 0 0 0 #4E5E96;
  }
  100% {
    box-shadow: 0 0 0 3rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursor-active2 {
  0% {
    box-shadow: 0 0 0 0 #4E5E96;
  }
  100% {
    box-shadow: 0 0 0 1rem rgba(247, 84, 27, 0);
  }
}
@keyframes cursorClose {
  0% {
    transform: scale(0) rotate(90deg);
  }
  100% {
    transform: scale(0.45) rotate(45deg);
  }
}
.jarallax {
  position: relative;
  z-index: 0;
}

.jarallax > .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.js-lines,
.js-single-line,
.js-block {
  overflow: hidden;
}

.medium-zoom-overlay {
  z-index: 9999;
}

.medium-zoom-image {
  z-index: 9999;
}

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