

/* ------------------------------------------------------------------- 
 * ## home animations
 * ------------------------------------------------------------------- */


/* fade in */

@-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, 40%, 0);
      transform: translate3d(0, 40%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }




  @-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  

/* animate .home-content__main
 * ------------------------------------------------------------------- */
 html.cl-preload .home-content__main {
    opacity: 0;
}

html.cl-loaded .home-content__main {
    animation-duration: 2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

html.no-csstransitions .home-content__main {
    opacity: 1;
}


html {
    font-size: 10px;
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 9.411764705882353px;
    }
}

html, body {
    height: 100%;
}

body {
    background: #111111;
    font-family: "Raleway", serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.765;
    color: #757575;
    margin: 0;
    padding: 0;
}

::selection {
    color: #fff;
    background: #6cb670;
    }

/* ------------------------------------------------------------------- 
 * ## Media
 * ------------------------------------------------------------------- */
 
img,
video {
    max-width: 100%;
    height: auto;
}

/* ===================================================================
 * # grid
 *
 * ------------------------------------------------------------------- */
 .row {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row .row {
    width: auto;
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
}

@media only screen and (max-width: 600px) {
    .row {
        width: auto;
        padding-left: 25px;
        padding-right: 25px;
    }
    .row .row {
        margin-left: -10px;
        margin-right: -10px;
    }
}

/* column blocks
 * -------------------------------------- */
 [class*="col-"] {
    float: left;
    padding: 0 20px;
}

[class*="col-"]+[class*="col-"].end {
    float: right;
}


/* column width classes 
 * -------------------------------------- */
 .col-one {
    width: 8.33333%;
}

.col-two,
.col-1-6 {
    width: 16.66667%;
}

.col-three,
.col-1-4 {
    width: 25%;
}

.col-four,
.col-1-3 {
    width: 33.33333%;
}

.col-five {
    width: 41.66667%;
}

.col-six,
.col-1-2 {
    width: 50%;
}

.col-seven {
    width: 58.33333%;
}

.col-eight,
.col-2-3 {
    width: 66.66667%;
}

.col-nine,
.col-3-4 {
    width: 75%;
}

.col-ten,
.col-5-6 {
    width: 83.33333%;
}

.col-eleven {
    width: 91.66667%;
}

.col-twelve,
.col-full {
    width: 100%;
}



/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
 h1, h2, h3, h4, h5, h6,
 .h1, .h2, .h3, .h4, .h5, .h6 {
     font-family: "Raleway", sans-serif;
     color: #6cb670;
     font-style: normal;
     font-weight: normal;
     text-rendering: optimizeLegibility;
 }
 
 h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
     margin-top: 6rem;
     margin-bottom: 1.8rem;
 }

 
 a{
     color: #fff;
     font-family: "Raleway", sans-serif;
     font-style: normal;
     font-weight: normal;
     text-rendering: optimizeLegibility;
    text-decoration: none;
 }

 a > p{
     
    text-decoration: none;
 }
 
 
 @media only screen and (max-width: 600px) {
     h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
         margin-top: 5.1rem;
     }
 }
 
 h5, .h5, h6, .h6 {
     margin-top: 4.2rem;
     margin-bottom: 1.5rem;
 }
 
 @media only screen and (max-width: 600px) {
     h5, .h5, h6, .h6 {
         margin-top: 3.6rem;
         margin-bottom: 0.9rem;
     }
 }
 



 @media only screen and (max-width: 800px){
 .home-content h1 {
     font-size: 3.8rem !important;
 }
 }
 
 h2, .h2 {
     font-size: 3rem;
     line-height: 1.3;
 }
 
 h3, .h3 {
     font-size: 2.4rem;
     line-height: 1.25;
     font-weight: bold;
 }
 
 h4, .h4 {
     font-size: 2.1rem;
     line-height: 1.286;
 }
 
 h5, .h5 {
     font-size: 1.6rem;
     line-height: 1.313;
 }
 h6, .h6 {
     font-size: 1.3rem;
     line-height: 1.385;
     text-transform: uppercase;
     letter-spacing: .16rem;
 }
 
 p img {
     margin: 0;
 }
 
 .p-1 {
     font-family: "Raleway", sans-serif;
     font-size: 2rem;
     font-weight: 300;
     text-align: center;
     line-height: 1.6;
     margin-bottom: 3.6rem;
     color: #000;
 }
 .p-1-2 {
    font-family: "Raleway", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3.6rem;
    color: #000;
}
 .p-2 {
    font-family: "Raleway", sans-serif;
    font-size: 1.7rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 3.6rem;
    color: #000;
}
 
 @media only screen and (max-width: 800px) {
     p {
         font-size: 1.8rem;
     }
 }
 
 em, i, strong, b {
     font-size: inherit;
     line-height: inherit;
     font-style: normal;
     font-weight: normal;
 }
 a:hover{
     
    text-decoration: none;
 }
 
 em, i {
     font-family: "Raleway", serif;
 }
 
 strong, b {
     font-family: "Raleway", serif;
 }
 
 small {
     font-size: 1.2rem;
     line-height: inherit;
 }



/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
 .section-header {
    text-align: center;
    position: relative;
    margin-bottom: 3.6rem;
    max-width: 960px;
}

.section-header.has-bottom-sep {
    position: relative;
}

.section-header.has-bottom-sep::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 550px;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-header.has-bottom-sep.light-sep::before {
    background-color: rgba(255, 255, 255, 0.4);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * section-header
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .section-header {
        max-width: 800px;
    }
}

@media only screen and (max-width: 900px) {
    .section-header {
        max-width: 700px;
    }
}

@media only screen and (max-width: 800px) {
    .s-clients {
        padding-bottom: 17.4rem;
    }
    .section-header.has-bottom-sep::before {
        width: 400px;
    }
}

@media only screen and (max-width: 600px) {
    .section-header.has-bottom-sep {
        padding-bottom: 0;
    }
    .section-header.has-bottom-sep::before {
        width: 250px;
    }
    .header-menu-text {
        display: none !important;
    }
}



/*-- HOME --*/

.header {
    width: 100%;
    height: 96px;
    background-color: transparent;
    position: absolute;
    top: 0;
    z-index: 500;
}

.header-menu-text {
    display: block;
    position: absolute;
    top: 0;
    left: -70px;
    width: 70px;
    padding-left: 12px;
}

.container-fluid{
    height: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}
.container-about{
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

.home-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100vh;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}


.home-content h1 {
    font-family: "Carter One", cursive;
    font-size: 8.3rem;
    line-height: 1.2;
    color: #6cb670;
    margin-top: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}


.home-content h2 {
    font-family: "Raleway", sans-serif;
    font-size: 5.3rem;
    line-height: 1.2;
    margin-top: 0;
    color: #FFFFFF;
    font-weight: 300;
}


.home-content__main {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;
}

@media only screen and (max-width: 500px)
{
.home-content__main {
    text-align: center;
}
.home-content h2 {
    font-family: "Raleway", sans-serif;
    font-size: 3.3rem;
    line-height: 1.2;
    margin-top: 0;
    color: #FFFFFF;
    margin-top: 1.8rem;
    font-weight: 300;
}
}

.fondnom{
    background: url(../images/7.jpg)no-repeat;
    height: 23%;
    background-position: center;
    background-size: cover;
}


.home-content__scroll {
    position: absolute;
    right: 9.5rem;
    bottom: 8.4rem;
}

.home-content__scroll a {
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    line-height: 3rem;
    padding-left: 2.5rem;
}



.fa-angle-down{
    
    color: #6cb670;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    font-size: 15px;
    padding-right: 10px;
}

.home-content__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: #6cb670;
    position: absolute;
    right: 7.2rem;
    bottom: 0;
}

.about__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: #111;
    position: absolute;
    right: 7.2rem;
    top: 0;
}

.shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: .8;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

/*-- menu toogle --*/

.bar {
    width: 45px;
    height: 7px;
    background-color: #fff;
    border-radius: 7px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
  }
  body #menu {
    cursor: pointer;
    margin: 30px;
    position: fixed;
    width: 45px;
    z-index: 10000;
    right: 0;
  }
  body #menu .bar1 {
    width: 45px;
    height: 7px;
    background-color: #fff;
    border-radius: 7px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
    -ms-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    -webkit-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
  }
  body #menu .bar2 {
    width: 45px;
    height: 7px;
    background-color: #fff;
    border-radius: 7px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
    -ms-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    -webkit-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
  }
  body #menu .bar3 {
    width: 45px;
    height: 7px;
    background-color: #fff;
    border-radius: 7px;
    margin-bottom: 7px;
    transition: all 0.3s ease-in-out;
    -ms-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    -webkit-box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.5098039215686274);;
  }
 
  #menu.on .bar1 {
    -webkit-transform: translate(0, 14px) rotate(45deg);
            transform: translate(0, 14px) rotate(45deg);
  }
  #menu.on .bar2 {
    opacity: 0;
  }
  #menu.on .bar3 {
    -webkit-transform: translate(0, -14px) rotate(-45deg);
            transform: translate(0, -14px) rotate(-45deg);
  }
  #menu.cor .bar1 {
    background-color: #ecf0f1;
  }
  #menu.cor .bar2 {
    background-color: #ecf0f1;
  }
  #menu.cor .bar3 {
    background-color: #ecf0f1;
  }
  #sideNav.move {
    width: 20em;
  }
  

  .header-menu-text {
    left: -85px;
    line-height: 42px;
    font-family: "Raleway", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .4rem;
    color: #6cb670;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/*-- menu --*/

#sideNav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #111;
    overflow-x: hidden;
    transform-origin: 0% 0%;

    transition: 0.75s cubic-bezier(0.77,0.2,0.05,1.0);
    padding-top: 60px;
    text-align:left
}

#sideNav ul li {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transform-origin: 0% 0%;
    position: relative;
    transition: 1s cubic-bezier(0.77,0.2,0.05,1.0);

}
nav ul li a{
    position: relative;

}

.ligne{
    width: 3px;
    height: 18px;
    background: #6cb670;
    -webkit-transition: width 1s; /* For Safari 3.1 to 6.0 */
    transition: width 1s;
    position: absolute;
    top:30px;
    left: 19px;

}

.menu1:hover > .ligne{
    width: 90px;
    
}

.menu2:hover > .ligne {
    width: 160px;
    
}

.menu3:hover > .ligne {
    width: 100px;
    
}

.menu4:hover > .ligne {
    width: 75px;
    
}



#sideNav a:hover{
    color:#fff;
    text-decoration: none;
    
}

@media screen and (max-width: 600px) {
    #sideNav {
        opacity: 0.95;
        padding-top: 140px;
  
  }
    #sideNav.move {
      width: 100%;
    }
  }


@media screen and (max-height: 450px) {
  #sideNav {
      padding-top: 15px;

}
  #sideNav a {font-size: 18px;}
  
}




/*-- Accueil --*/


@media only screen and (max-width: 1200px){
    #home{
    background-attachment: inherit !important;
    }
}

#home {
    background: url(../images/7.jpg)no-repeat fixed;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}
#home::before{
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: .2;
    background-color: #000000;


}

a.project-link.showreel {
    border: 2px solid #6cb670;
    padding: 10px 30px;
    border-radius: 25px;
    transition: all 0.8s;
    font-size: 1.2rem;
}

a.project-link.showreel:hover {
    background: #6cb670;
    padding: 10px 30px;
    border-radius: 25px;
    color: #ffffff;
}

.btn-show{
    margin-top: 5%;
}



/*-- ABOUT --*/



.s-about{
    padding-bottom: 9rem;
    background-color: #ffffff;
    color: #010507;
    position: relative;
    padding-top: 2%;
}

.section-header{
    padding-top: 6em;
}

.row.about-desc.wow.fadeInLeft {
    width: 60%;
}
@media only screen and (max-width: 600px) {
    .row.about-desc.wow.fadeInLeft {
        width: auto;
    }
}


#about .subhead-about{
    font-size: 13.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 33rem;
    top: -2rem;
    color: #ffffff;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.2);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.2);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 600px) {
#about .subhead-about {
    font-size: 10.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 4rem;
    top: -1rem;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.2);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.2);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.2);
}
}

.about-titre {
    
    font-size: 6.8rem;
    line-height: 1.25;
    margin-top: 0;
    position: relative;
}

@media only screen and (max-width: 800px)
{
.about-titre {
    
    font-size: 3.8rem;
    line-height: 1.25;
    margin-top: 0;
}
}


.icon{
    padding-top: 1em;
}


.fa-4x{
   color: #6cb670;
   font-size: 3.2em;
}




.icon-box {
	position: relative;
	width: 160px;
	height: 92.38px;
	background-color: transparent;
	margin: 46.19px auto 60px;
	padding: 20px 0;

	-webkit-transform: translateZ(0px);
	   -moz-transform: translateZ(0px);
		-ms-transform: translateZ(0px);
		 -o-transform: translateZ(0px);
			transform: translateZ(0px);

	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		 -o-transition-duration: 0.3s;
			transition-duration: 0.3s;

	-webkit-transition-property: transform;
	   -moz-transition-property: transform;
		 -o-transition-property: transform;
			transition-property: transform;
}

.icon-box:hover {
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

.icon-box:before,
.icon-box:after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 113.14px;
	height: 113.14px;
	background-color: inherit;
	left: 20.4315px;

	-webkit-transform: scaleY(0.5774) rotate(-45deg);
	   -moz-transform: scaleY(0.5774) rotate(-45deg);
		-ms-transform: scaleY(0.5774) rotate(-45deg);
		 -o-transform: scaleY(0.5774) rotate(-45deg);
			transform: scaleY(0.5774) rotate(-45deg);
}

.icon-box:before {
	top: -56.5685px;
}

.icon-box:after {
	bottom: -56.5685px;
}


.text-center.wow.fadeInUp:hover {
    opacity: 1;
    -webkit-box-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.32);
    -moz-box-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.32);
    box-shadow: 0px 50px 70px 0px rgba(0, 0, 0, 0.22);
}

.text-center.wow.fadeInUp {
    margin-bottom: 2rem;
    transition: 2s;
}


/*-- Works --*/

.intro-wrap {
    padding: 0 0 25.2rem;
    background: #111111;
}

.works-content {
    max-width: 1160px;
    margin-top: -23.4rem;
}

.s-works {
    background: #FFFFFF;
    min-height: 800px;
    position: relative;
}

.works-titre {
    
    font-size: 6.8rem;
    line-height: 1.25;
    margin-top: 0;
    position: relative;
}

@media only screen and (max-width: 800px)
{
.works-titre {
    
        font-size: 3.8rem;
        line-height: 1.25;
        margin-top: 0;
    }

}

#works .subhead-about{
    font-size: 15.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 19rem;
    top: -2rem;
    color: #111111;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.9);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.9);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.9);
}

@media only screen and (max-width: 600px) {
#works .subhead-about {
    font-size: 10.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 4rem;
    top: -1rem;
    color: #111111;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.9);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.9);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.9);
}
}

/*=================================================================
	Portfolio section
==================================================================*/

#showcase {
    padding: 75px 0;
}

.portfolio-filter {
    margin-bottom: 15px;
}

.portfolio-filter ul li {
    display: inline;
}

.portfolio-filter ul li a {
	color: #ddd;
	display: inline-block;
	font-size: 14px;
	margin: 0 10px;
	padding: 5px 15px;
	position: relative;
}

.portfolio-filter ul li a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #6cb670;
	content: '';

	-webkit-transition: top 0.3s;
	   -moz-transition: top 0.3s;
		 -o-transition: top 0.3s;
			transition: top 0.3s;
}

.portfolio-filter ul li a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 2px;
	background: #6cb670;
	content: '';

	-webkit-transition: height 0.3s;
	   -moz-transition: height 0.3s;
		 -o-transition: height 0.3s;
			transition: height 0.3s;
}

.portfolio-filter ul li a:hover::before {
	top: 100%;
	opacity: 1;
}

.portfolio-filter ul li a:hover::after {
	height: 100%;
}

.og-grid .mix > a {
	display:block;
	overflow:hidden;
	position:relative;
}

.og-grid .mix a img {
	-webkit-transition: all 0.6s ease 0s;
	   -moz-transition: all 0.6s ease 0s;
		 -o-transition: all 0.6s ease 0s;
			transition: all 0.6s ease 0s;
}

.og-grid .mix a:hover img {
	-webkit-transform: scale(1.4) rotate(15deg);
	   -moz-transform: scale(1.4) rotate(15deg);
		-ms-transform: scale(1.4) rotate(15deg);
		 -o-transform: scale(1.4) rotate(15deg);
			transform: scale(1.4) rotate(15deg);
}

.hover-mask {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(43, 44, 48, 0.8);

	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-transition: all 600ms ease-out 0s;
	   -moz-transition: all 600ms ease-out 0s;
		 -o-transition: all 600ms ease-out 0s;
		    transition: all 600ms ease-out 0s;

	-webkit-transform: rotateY(180deg) scale(0.5,0.5);
	   -moz-transform: rotateY(180deg) scale(0.5,0.5);
		-ms-transform: rotateY(180deg) scale(0.5,0.5);
		 -o-transform: rotateY(180deg) scale(0.5,0.5);
			transform: rotateY(180deg) scale(0.5,0.5);
}

.hover-mask h3 {
	color: #ddd;
	font-size: 20px;
	position: relative;
	text-transform: uppercase;
	top: 110px;
}

.hover-mask span {
	border: 2px solid #ddd;
	border-radius: 50px;
	color: #ddd;
	display: inline-block;
	height: 50px;
	left: 42%;
	padding: 11px 0;
	position: absolute;
	text-align: center;
	top: 22%;
	width: 50px;
}

.og-grid .mix a:hover .hover-mask {
	opacity: 1;
	filter: alpha(opacity=100);

	-webkit-transform: rotateY(0deg) scale(1,1);
	   -moz-transform: rotateY(0deg) scale(1,1);
		-ms-transform: rotateY(0deg) scale(1,1);
		 -o-transform: rotateY(0deg) scale(1,1);
		    transform: rotateY(0deg) scale(1,1);
}

.img3, .img5{
    position: relative;
    left: 0px;
    top: -14rem;

}



@media only screen and (max-width: 800px){
    .img3, .img5{
            position: relative;
            left: 0px;
            top: -8.6rem;
    }
    }


@media only screen and (max-width: 600px){
.img3, .img5{
    float: none;
    width: 100%;
    top: 0rem;
}
}






/* ------------------------------------------------------------------- 
 * ## bricks/masonry
 * ------------------------------------------------------------------- */
 .masonry:after {
    content: "";
    display: table;
    clear: both;
}

.masonry .grid-sizer, .masonry__brick {
    width: 50%;
}

.masonry__brick {
    float: left;
    padding: 0;
}

.item-folio {
    position: relative;
    overflow: hidden;
}

.item-folio__thumb img {
    vertical-align: bottom;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.item-folio__thumb a {
    display: block;
}

.item-folio__thumb a::before {
    display: block;
    background-color: rgba(0, 0, 0, 0.8);
    content: "";
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.item-folio__thumb a::after {
    content: "";
    font-size: 2.7rem;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    z-index: 1;
}

.item-folio__text {
    position: absolute;
    left: 0;
    bottom: 3.6rem;
    padding: 0 3.3rem;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.item-folio__title {
    font-family: "montserrat-semibold", sans-serif;
    font-size: 1.4rem;
    line-height: 1.286;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: .2rem;
    margin: 0 0 .3rem 0;
}

.item-folio__cat {
    color: rgba(255, 255, 255, 0.5);
    font-family: "montserrat-light", sans-serif;
    font-size: 1.4rem;
    line-height: 1.714;
    margin-bottom: 0;
}

.item-folio__caption {
    display: none;
}

.item-folio__project-link {
    display: block;
    color: #FFFFFF;
    box-shadow: 0 0 0 1px #FFFFFF;
    border-radius: 50%;
    height: 4.2rem;
    width: 4.2rem;
    text-align: center;
    z-index: 500;
    position: absolute;
    top: 3rem;
    left: 3rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.item-folio__project-link i {
    font-size: 1.8rem;
    line-height: 4.2rem;
}

.item-folio__project-link::before {
    display: block;
    content: "";
    height: 3rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -3rem;
    left: 50%;
}

.item-folio__project-link:hover,
.item-folio__project-link:focus,
.item-folio__project-link:active {
    background-color: #FFFFFF;
    color: #000000;
}


/* on hover 
 * ----------------------------------------------- */
.item-folio:hover .item-folio__thumb a::before {
    opacity: 1;
    visibility: visible;
}

.item-folio:hover .item-folio__thumb a::after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.item-folio:hover .item-folio__thumb img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.item-folio:hover .item-folio__project-link,
.item-folio:hover .item-folio__text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* ------------------------------------------------------------------- 
 * responsive:
 * works
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 800px) {
    .item-folio__title, .item-folio__cat {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 600px) {
    .s-works {
        padding-bottom: 12rem;
    }
    .s-works .intro-wrap {
        padding: 0 0 25.2rem;
    }
    .works-content {
        margin-top: -25.2rem;
    }
    .masonry__brick {
        float: none;
        width: 100%;
    }
    .item-folio__title, .item-folio__cat {
        font-size: 1.4rem;
    }
}








/* MODAL */

@media (min-width: 576px){
.modal-dialog {
    max-width: 1280px;
}
}

@media only screen and (max-width: 600px){
.modal-body .row {
    width: auto;
    padding-left: 0px;
    padding-right: 0px;
}
.ti-modal{
    margin-top: 3rem ;
}
.text-modal{
padding-bottom: 5%;
}

}


.modal-body .container-fluid{
    height: 100%;
}

.modal {
    padding-right: 10px !important;
    padding-left: 10px!important;
}

.modal a{
    color: #000000;
    font-weight: 700;
}

.modal a:hover{
    color: #6cb670;
}

.modal-dialog.modal-dialog-centered .modal-content {
        width: 100% !important;
        height: 100%;
    }


    .close {
        font-size: 5.5rem;
        position: absolute;
        top: 0%;
        right: 2%;
    }

    .modal-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
        text-align: center;
    }
    .modal-title {
        margin-bottom: 0;
        line-height: 1.5;
        font-size: 3rem;
        font-weight: 700;
        color: black;
    }


    .row.img-p {
        justify-content: center;
    }


    .modal-body:before {
        content: "";
        position: fixed;
        background: #d8d8d8;
        width: 90%;
        height: 300px;
        right: 0;
        top: 13%;
        z-index: 1;
    }


    .ti-modal{
        font-family: "Raleway", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
        text-transform: uppercase;
        z-index: 2;
    }


    .text-modal{
        font-family: "Raleway", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    padding-top: 5%;
    z-index: 2;
    }
    .te-modal {
        margin-top: 0;
        margin-bottom: 2rem !important;
        z-index: 2;
        color: #000;
    }

    .de-modal{
        font-family: "Raleway", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
        text-transform: uppercase;
    }

    .col-md-12.ml-auto {
        padding-top: 20px;
        z-index: 4;
    }

    .col-md-8.ml-auto {
        padding-top: 20px;
        z-index: 2;
    }

    .col-md-6.ml-auto {
        padding-top: 20px;
        z-index: 2;
    }
    
    .col-md-4.ml-auto {
        padding-top: 20px;
        z-index: 2;
    }

    .col-md-12.ml-auto.s-b {
        text-align: center;
    }

    .modal-body .about__line-1 {
        display: block;
        width: 2px;
        height: 30%;
        background-color: #111;
        position: absolute;
        right: 25%;
        top: 0;
        z-index: 0;
    }
    .modal-body .about__line-2 {
        display: block;
        width: 2px;
        height: 60%;
        background-color: #111;
        position: absolute;
        left: 15%;
        top: inherit;
        bottom: 0;
        z-index: 0;
    }



    button.btn.btn-secondary {
        text-align: center;
        margin: auto;
        font-size: 1em;
        width: 80%;
        border: none;
        background: #d8d8d8;
        margin-top: 15px;
        height: 50px;
        font-family: "Raleway", sans-serif;
        z-index: 2;
    }

    button.btn.btn-secondary:hover {
        color: #6cb670;
        background-color: #111111;
    }

    .modal-footer {
        margin-top: 5%;
    }


/* PROJET 0 */
#portfolioModal-0 .modal-body:before {
    content: "";
    position: fixed;
    background: #d8d8d8;
    width: 90%;
    height: 100px;
    right: 0;
    top: 39%;
    z-index: 1;
}




/* PROJET 2 */

#portfolioModal-2 img {
    box-shadow: 1px 1px 30px 3px rgba(216, 216, 216, 0.32);
}



/* PROJET 3 */

    #portfolioModal-3 img {
        box-shadow: 1px 1px 30px 3px rgba(216, 216, 216, 0.32);
    }

    #portfolioModal-3 .modal-body .about__line-2 {
        display: block;
        width: 2px;
        height: 60%;
        background-color: #111;
        position: absolute;
        left: 25%;
        top: inherit;
        bottom: 0;
        z-index: 0;
    }
/* PROJET 4 */

#portfolioModal-4 .modal-body:before {
    top: 22%;
}


/* PROJET 5 */
#portfolioModal-5 .modal-body:before {
    top: 15%;
}


/* PROJET 6 */

#portfolioModal-6 .modal-body:before {
    top: 5%;
}

.col-md-6.ml-auto.red {
    padding-top: 10%;
}


/* PROJET 7 */


#portfolioModal-7 .modal-body:before {
    top: 9%;
}

.uno h4 {
    position: absolute;
    z-index: 4;
    top: 38%;
    left: 61%;
    color: #4840b5;
    width: 263px;
    font-size: 6rem;
    font-family: galada;
}
.uno:before {
    content: "";
    position: absolute;
    background: #d8d8d8;
    width: 300px;
    height: 62px;
    z-index: 4;
    right: 21%;
    bottom: 49.5%;
}

.col-md-6.ml-auto.pen {
    position: absolute;
    top: 70%;
    z-index: 4;
}

@media only screen and (max-width: 1024px) {
    .uno h4 {
        position: absolute;
        z-index: 4;
        top: 38%;
        left: 64%;
        color: #4840b5;
        width: 263px;
        font-size: 6rem;
        font-family: galada;
    }
}

@media only screen and (max-width: 768px) {
    .uno h4 {
        position: absolute;
        z-index: 4;
        top: 49%;
        left: 61%;
        color: #4840b5;
        width: 263px;
        font-size: 4rem;
        font-family: galada;
    }
    .uno:before {
        content: "";
        position: absolute;
        background: #d8d8d8;
        width: 300px;
        height: 62px;
        z-index: 4;
        left: 45%;
        top: 56.5%;
    }
}





@media only screen and (max-width: 426px) {
    .uno h4 {
        position: absolute;
    z-index: 4;
    top: 56%;
    left: 60.5%;
    color: #4840b5;
    width: 120px;
    font-size: 1.9rem;
    font-family: galada;
    }
    .uno:before {
        content: "";
        position: absolute;
        background: #d8d8d8;
        width: 200px;
        height: 32px;
        z-index: 4;
        left: 25%;
        top: 61.5%;
    }
    .col-md-6.ml-auto.pen{
        position: relative;
    }
}




/* PROJET 8 */
#portfolioModal-8 .modal-body:before {
    top: 10%;
}
#portfolioModal-8 img {
    box-shadow: 1px 1px 30px 3px rgba(216, 216, 216, 0.32);
}
    .bis h4 {
        position: absolute;
        z-index: 4;
        bottom: 6%;
        right: 10%;
        color: #000;
    }
    .bis:before {
        content: "";
        position: absolute;
        background: #d8d8d8;
        width: 200px;
        height: 32px;
        z-index: 4;
        right: 10%;
        bottom: 6.5%;
    }









  .box {
      display: flex;
      flex-direction: column;
      padding: 2%
  }
  .container-b{
      width: 100%;
      height: 60vh;
      z-index: -1;
  }
  .container-t{
    width: 500px;
    height: auto;
}
.container-t > h2{
    margin-top: 0 !important;
    font-weight: bold;
}
.container-t:before{
    content:'';
    position: absolute;
    width: 28em;
    height: 28px;
    background: #6cb670;
    z-index: -1;
    left: 8%;
}

img.img-2.rs-1 {
    height: 69%;
    width: auto;
}
.rs-1 {
    height: 100%;
    width: auto;
}
img.img-3.b {
    height: 100%;
    width: auto;
}


  .img-2, .img-3, .img-4{
      width: auto;
      height:auto;
  }

.img-2 :hover{
    width: 50%
}


#img2 > img.img-2{
    height: 30%;
    width: auto;
}


  @media only screen and (max-width: 1050px) {
    .box {
        display: flex;
        flex-direction: column;
        padding: 2%
    }
    .container-b{
        width: 100%;
        height: 62vh;
    }
    .lightbox video {
        /** Pad the lightbox image */
        
        width: 100%;
        height: auto;
        margin-top: 2%;
      }
      img.img-2.rs-1 {
        height: auto;
        width: auto;
    }
      .rs-1{
        width: 50% !important;
        height: auto;
        float: left;
    }
    img.img-3.b {
        height: auto;
        width: 48%;
    }
}
@media only screen and (max-width: 800px) {
    .rs{
        width: 50% !important;
        float: left;
    }
    
    .img-2, .img-3, .img-4{
        width: 100%;
        height:auto;
    }
    .container-t > h2{
        font-size: 1.4em;
    }
    .container-b{
        width: 100%;
        height: 80vh;
    }
    
}
@media only screen and (max-width: 600px) {
.lightbox img {
    /** Pad the lightbox image */
    max-width: 100%;
    padding-top: 0;
  }
  
  .container-t{
    width: 300px;
    height: auto;
}
.img-3.b{
    width: 50% !important;
    float: left;
}
}
/* ===================================================================
 * # contact 
 *
 * ------------------------------------------------------------------- */
 .s-contact {
    background-color: #111111;
    background-repeat: no-repeat;
    background-position: center, center;
    padding-top: 5rem;
    padding-bottom: 2rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.contact-titre{
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
    position: relative;
    margin-top: 20px;
    padding-left: 10%;
}


.s-contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background-color: #111111;
}

.s-contact .form-field {
    position: relative;
    text-align: center;
}

.s-contact .form-field:after {
    content: "";
    display: table;
    clear: both;
}

.s-contact .form-field label {
    font-family: "montserrat-light", sans-serif;
    font-size: 1rem;
    line-height: 2.4rem;
    position: absolute;
    bottom: -0.3rem;
    right: .6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    padding: 0 2rem;
    margin: 0;
    color: #FFFFFF;
    background: #6cb670;
}

.s-contact .form-field label::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #6cb670;
}

.contact__line {
    display: block;
    width: 2px;
    height: 20.4rem;
    background-color: #6cb670;
    position: absolute;
    left: 50%;
    top: -10.2rem;
    margin-left: -1px;
}

.contact-content {
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.4);
    padding-top: 6rem;
    padding-bottom: 6rem;
    font-family: "montserrat-light", sans-serif;
    font-size: 1.5rem;
    line-height: 2;
    position: relative;
}

.contact-content h3 {
    margin-top: 0;
    margin-bottom: 6.6rem;
    color: #FFFFFF;
}

.contact-content h5 {
    margin-top: 0;
    color: #6cb670;
}

.contact-content input[type="email"],
.contact-content input[type="number"],
.contact-content input[type="search"],
.contact-content input[type="text"],
.contact-content input[type="tel"],
.contact-content input[type="url"],
.contact-content input[type="password"],
.contact-content textarea,
.contact-content select {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    -webkit-background-color: rgba(255, 255, 255, 0.023529411764705882);
    -ms-background-color: rgba(255, 255, 255, 0.023529411764705882);
    background-color: rgba(255, 255, 255, 0.023529411764705882);
    border-bottom: 1px solid #6cb670;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 6px;
    width: 80%;
    
}

.contact-content input[type="email"]:focus,
.contact-content input[type="number"]:focus,
.contact-content input[type="search"]:focus,
.contact-content input[type="text"]:focus,
.contact-content input[type="tel"]:focus,
.contact-content input[type="url"]:focus,
.contact-content input[type="password"]:focus,
.contact-content textarea:focus,
.contact-content select:focus {
    color: #FFFFFF;
    border-bottom: 1px solid #6cb670;
}


#contactName:hover, #contactEmail:hover, #contactSubject:hover, #contactMessage:hover{
    background: rgba(255, 255, 255, 0.08);
    -moz-background: rgba(255, 255, 255, 0.08);
    -webkit-background: rgba(255, 255, 255, 0.08);
    -ms-background: rgba(255, 255, 255, 0.08);
}



.contact-content button,
.contact-content .btn {
    margin-top: 3.6rem;
    background: #111111;
    border: 1px solid #6cb670;
    color: #fff;
    font-family: 'raleway';
    padding: 0 30px;
    width: 100%;
    transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease;
}

.contact-content button:hover {
    background: #6cb670;
    -moz-box-shadow: 0px 2px 29px 7px #000000b8;
    -ms-box-shadow: 0px 2px 29px 7px #000000b8;
    -webkit-box-shadow: 0px 2px 29px 7px #000000b8;
    box-shadow: 0px 2px 29px 7px #000000b8;
}

.contact-content input::-webkit-input-placeholder,
.contact-content select::-webkit-input-placeholder,
.contact-content textarea::-webkit-input-placeholder {
    color: #4f4f4f;
}

.contact-content input:-moz-placeholder,
.contact-content select:-moz-placeholder,
.contact-content textarea:-moz-placeholder {
    color: #4f4f4f;    /* Firefox 18- */
}

.contact-content input::-moz-placeholder,
.contact-content select::-moz-placeholder,
.contact-content textarea::-moz-placeholder {
    color: #4f4f4f;    /* Firefox 19+ */
}

.contact-content input:-ms-input-placeholder,
.contact-content select:-ms-input-placeholder,
.contact-content textarea:-ms-input-placeholder {
    color: #4f4f4f;
}

.contact-content input.placeholder,
.contact-content select.placeholder,
.contact-content textarea.placeholder {
    color: #4f4f4f !important;
}
.contact-primary, .contact-secondary {
    float: left;
    padding: 0 5rem;
}

.contact-primary {
    width: 65%;
}

.contact-primary #contactForm {
    margin-top: -1.5rem;
}

.contact-secondary {
    width: 35%;
}

.contact-secondary::before {
    content: "";
    display: block;
    width: 35%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #121212;
}

.contact-secondary .contact-info {
    position: relative;
}

.contact-secondary .cinfo {
    margin-bottom: 4.8rem;
}

.contact-social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 2rem;
}

.contact-social li {
    margin-right: 15px;
    padding-left: 0;
    display: inline-block;
}

.contact-social li a {
    color: white;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease;
}

.contact-social li a:hover, 
.contact-social li a:focus {
    color: #6cb670;
}

.contact-social li:last-child {
    margin: 0;
}

ul.contact-social {
    padding-left: 0px;
}





/* ------------------------------------------------------------------- 
 * responsive:
 * contact
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .contact-content {
        max-width: 900px;
    }
}

@media only screen and (max-width: 1000px) {
    .contact-content {
        max-width: 700px;
    }
    .contact-primary, .contact-secondary {
        float: none;
        width: 100%;
    }
    .contact-primary #contactForm {
        margin-top: -1.5rem;
        margin-bottom: 7.2rem;
    }
    .contact-secondary .hide-on-fullwidth {
        display: none;
    }
    .contact-secondary::before {
        display: none;
    }
    .message-warning, .message-success {
        margin-bottom: 6rem;
    }
}

@media only screen and (max-width: 800px) {
    .contact-content h3 {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .s-contact {
        padding-top: 15%;
        padding-bottom: 0;
    }
    .contact__line {
        height: 14.4rem;
        top: -7.2rem;
    }
    .contact-content {
        padding-bottom: 12rem;
        text-align: center;
    }
    .contact-primary, .contact-secondary {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 500px) {
    .contact-primary, .contact-secondary {
        padding: 0 5px;
    }
    .contact-content textarea {
        width: 90%;
    }
}



#contact .subhead-contact{
    font-size: 15.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 19rem;
    top: -2rem;
    color: #111111;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.9);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.9);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.9);
}

@media only screen and (max-width: 600px) {
#contact .subhead-contact {
    font-size: 10.75rem;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    right: 4rem;
    top: -1rem;
    color: #111111;
    z-index: 0;
    -webkit-text-shadow: 0px 50px 75px rgba(0, 0, 0, 0.9);
    -moz-text-shadow: 0px 50px 75px 0px rgba(0, 0, 0, 0.9);
    text-shadow: -9px 4px 28px rgba(0, 0, 0, 0.9);
}
}


/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
 footer {
    padding: 2rem 0 6rem;
    font-family: "montserrat-light", sans-serif;
    font-size: 15px;
    line-height: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

footer .row {
    max-width: 980px;
}

/* ---------------------------------------------------------------
 * ## footer bottom
 * --------------------------------------------------------------- */
 .footer-bottom {
    margin-top: 5.4rem;
    text-align: center;
    font-size: 14px;
}

.footer-bottom .copyright span {
    display: inline-block;
}

.footer-bottom .copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 1rem 0 1.2rem;
    color: rgba(255, 255, 255, 0.05);
}

.footer-bottom .copyright span:last-child::after {
    display: none;
}


/* ---------------------------------------------------------------
 * ## preloader
 * --------------------------------------------------------------- */


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111111;
    z-index: 1000;

}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    -webkit-animation: spin 2s linear infinite;
    -ms-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #57915a;
    -webkit-animation: spin 3s linear infinite;
    -ms-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #6cb670;
    -webkit-animation: spin 1.5s linear infinite;
    -ms-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
