
/*
Table of Contents in CSS
1. Global
2. Links
3. Headings
4. Text
5. Header
6. Navigation
7. Pictures
8. Sections
9.  Extras
10. Footer
*/

/* ----------1. Global----------------- */
@import url('https://fonts.googleapis.com/css?family=Hind|PT+Sans+Narrow:400,700');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font: 1em 'Hind', sans-serif;
  color: #2d2d2d;
  margin: 0;
  padding: 0;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.cf:after{
  content:"";
  display: table;
  clear: both;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
} 

ul {
  list-style-type: none;
}

.wrap {
  max-width: 1207px;
  width: 100%;
  margin: 0 auto;
}

/*------------2.LINKS---------------*/
a.btn {
  cursor: pointer;
  text-decoration: underline;
  color: #082a3f;
  font: 400 1.5em 'PT Sans Narrow', sans-serif;
  transition: all 0.3s ease-in-out;
}

a.btn:hover {
  opacity: 0.5;

}


/*-----------3.HEADINGS--------------*/

h1 {
  font: 700 3em 'PT Sans Narrow', sans-serif;
  color: #082a3f;
}

.header h1, .header1 h1, .header2 h1 {
  position: absolute;
  top: 60%;
  left: 10%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 1% 2%;
}


h2 {
  font: 700 3em 'PT Sans Narrow', sans-serif;
  color: #082a3f;
  margin-bottom: 1em;
}

.touch h2 {
  margin: 3% 0;
}


h3 {
  font: 400 1.5em 'PT Sans Narrow', sans-serif;
}


h4 {
  font: 400 1.2em 'PT Sans Narrow', sans-serif;
}


/*------------4.TEXT--------------*/


.quote p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.latest p {
  font-size: 2em;
}

.text-touch {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 1% -50% 3% 0;
  transform: translate(-50%, -50%);
  text-align: center;
}

.box-project p {
  margin-bottom: 3em;
  max-width: 900px;
  width: 100%;
}



/*-----------5.HEADER--------------*/

.logo {
  max-width: 300px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}



/*-----------6.NAVIGATION-----------------*/

/* BREADCRUMB*/

ul.breadcrumb {
  margin-top: 2%;
}

ul.breadcrumb li {
  display: inline-block;
  border-right: 1px solid #082a3f;
  padding: 0 1%;
}

ul.breadcrumb li:last-child {
  border-right: none;
}

ul.breadcrumb li a {
  color: #082a3f;
  font-size: 0.8em;
}

ul.breadcrumb li a.active {
  opacity: 0.5;
}


.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu {
  position: fixed;
  top: 10vh;
  left: 0;
  z-index: 1;
}

.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked + .hamburger > div {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:before,
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked ~ .menu {
/*  pointer-events: auto;*/
  visibility: visible;
}

.outer-menu .checkbox-toggle:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: .75s;
          transition-duration: .75s;
}

.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: .5em 1em;
  background: #082a3f;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  -webkit-transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu .hamburger > div {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  height: 2px;
  background: #FEFEFE;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu .hamburger > div:before,
.outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.outer-menu .hamburger > div:after {
  top: 10px;
}

.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*  pointer-events: none;*/
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu .menu > div {
  width: 200vw;
  height: 200vw;
  color: #FEFEFE;
  background: rgba(8, 42, 63, 0.9);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 2em;
  display: block;
}

.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}

.outer-menu .menu > div > div > ul > li > a {
  color: #fff;
}

.outer-menu .menu > div > div > ul > li > a.active {
  opacity: 0.5;
}

.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}

.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}

.menu ul li:first-child {
  margin-bottom: 18% !important;
}




/*------------7.PICTURES----------------*/

.novelty-bg {
  position: relative;
  background: url('../img/home_blue.jpg') center center / cover no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  width: 100%;
  height: 100%;
}

.touch img {
  width: 30%;
}

.latest img {
  width: 100%;
}

.box-img img {
  width: 100%;
}

.touch {
  background: url('../img/in-touch.jpg') center center / cover no-repeat;
  width: 100%;
  height: 550px;
  position: relative;
  margin-top: 7%;
}

.header {
  background: url('../img/story.jpg') center center / cover no-repeat;
  width: 100%;
  height: 400px;
  position: relative;
}

.header1 {
  background: url('../img/project.jpg') center center / cover no-repeat;
  width: 100%;
  height: 400px;
  position: relative;
}

.header2 {
  background: url('../img/pompidou1.jpg') center center / cover no-repeat;
  width: 100%;
  height: 400px;
  position: relative;
}

.menu ul li img {
  width: 40%;
}

.box-project img {
  width: 100%;
  margin-bottom: 3em;
}



/*------------8.SECTIONS---------------*/

.brief-story, .box-text {
  position: relative;
  max-width: 10207px;
  width: 100%;
  margin: 0 auto;
  padding: 1% 9%;
  margin-top: 7%;
}

.latest, .innovation, .box-project, .latest1 {
  position: relative;
  max-width: 1207px;
  margin: 0 auto;
  width: 100%;
  padding:  1% 9%;
  margin-top: 5%;
  clear: both;
}

.innovation {
  margin-top: 12%;
}

.latest ul li, .latest1 ul li {
  display: inline-block;
  margin-right: 2.6%;
  margin-top: 10%;
}

.latest ul li:nth-child(3n+0), .latest1 ul li:nth-child(3n+0) {
  margin-right: 0;
}

ul.caption li {
  display: block;
  margin-top: 0;
}

.quote {
  width:100%;
  max-width: 500px;
/*  margin: 5% 0;*/
  float: left;
}

.design {
  position: relative;
  width: 300px;
  height: 300px;
  float: right;
}

.box-img {
  float: left;
  max-width: 465px;
  width: 100%;
  margin-top: -6em;
  margin-left: 2%;
}

/*-------------9.EXTRAS----------------*/


.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  position: absolute;
  top: 92%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}


.m_scroll_arrows
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
   
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;
  
  width: 16px;
  height: 16px;
}


.unu
{
  margin-top: 1px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
  margin-top: -6px;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
  margin-top: -6px;
}




.mouse
{
height: 42px;
width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel
{
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;
  
  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  

}

.wheel
{
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
}



@-webkit-keyframes mouse-wheel
{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-moz-keyframes mouse-wheel
{
  0% { top: 1px; }
  25% { top: 2px; }
  50% { top: 3px;}
  75% { top: 2px;}
  100% { top: 1px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}


/*Square*/

.square, .square2  {
  border: 10px solid #082a3f;
  height: 250px;
  width: 250px;
  position: absolute;
  top: 10%;
  right: 0%;
}

.square2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 30%;
}

.circle, .circle2 {
  width: 34% !important;
}

.circle, .circle2, .circle3 {
  border: 10px solid rgba(8, 42, 63, 0.5);
  height: 100px;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  top: 74%;
  right: 63.8%;
}

.circle2 {
  top: 7%;
  right: 38.5%;
}

.circle3 {
  height: 200px;
  width: 200px;
  top: 10%;
  right: 31%;
}

.line {
  border: 6px solid #082a3f;
  width: 100px;
  margin-bottom: 2em;
}



/*------------10.FOOTER------------*/
.footer {
  clear: both;
  width: 100%;
  background-color: #082a3f;
  padding: 2em;
}

p.copyright {
  font-size: 0.65em;
  color: #fff;
  margin-top: 0.8em;
}

.fa {
  color: #fff;
  transition: all 0.3s ease-in-out;
  margin-right: 0.5em;
}

.fa:hover {
  opacity: 0.5;
}


.footer ul {
  text-align: center;
  margin: 2% 0;
}

.footer ul li a.active {
  opacity: 0.5;
}

.footer ul:nth-child(1) li {
  margin-right: 1%;
}

.footer ul:nth-child(1) a {
  transition: all 0.3s ease-in-out;
}

.footer ul:nth-child(1) > li > a:hover {
  opacity: 0.5;
}


.footer li {
  display: inline-block;
}

.footer li.block {
  display: block;
}






/*-----------MEDIA QUERIES------------*/
@media screen and (max-width: 1207px) {
  .latest {
    max-width: 860px;
  }

  .latest ul li:nth-child(3n+0) {
  margin-right: 2.6%;
  }

  .latest ul li:nth-child(2n+0) {
  margin-right: 0;
  }
}

@media screen and (max-width: 1200px) {
  .box-img {
  margin-top: 8%;
  margin-left: 0;
  }
}


@media screen and (max-width: 976px) {
  .design {
    float: left;
  }
}

/*@media screen and (max-width: 935px) {
  .box-img {
    float: none;
    clear: both;
    padding-top: 11%;
  }
}*/

@media screen and (max-width: 816px) {
  .design {
    float: left;
    margin: 6% 6%;
  }
}

@media screen and (max-width: 781px) {
  .latest {
    max-width: 452px;
  }
  .latest ul li {
    margin-right: 0;
  }
}



