@import url('https://fonts.googleapis.com/css?family=Roboto:900');
@import url(https://fonts.googleapis.com/css?family=Anton);
@import url('https://fonts.googleapis.com/css?family=Satisfy');


/*=============Normalize =============*/
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:#000;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
/*=============Normalize =============*/









/*=============MENU =============*/
/*=============MENU =============*/
/*=============MENU =============*/
/*=============MENU =============*/
/*=============MENU =============*/

body{
  width: 100vw!important;
  overflow-x: hidden;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-weight: 400;
  font-size: 3em;
  text-align: center;
}
.outer-menu {
  position: fixed;
  top: 10vh;
  left: 85%;
  z-index: 1;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 120px!important;
  height: 60px;
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-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);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-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;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  width: 200vw;
  height: 200vw;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
}
.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);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);

}
.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 120px!important;
  height: 60px;
  padding: .5em 1em;
  /*backdround color was here */
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  backface-visibility: hidden;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
   -webkit-align-items: center;
  -webkit-justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #f26267;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
   -webkit-align-items: center;
  -webkit-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;
  transition: all 0.3s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;

}
.outer-menu .menu > div {
  width: 0;
  height: 0;
  color: #fefefe;
  background: rgba(0, 0, 0, 1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex: none;
  -webkit-flex: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
   -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;

}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex: none;
  -webkit-flex: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden!important;
}
.outer-menu .menu > div > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 200vh;
}
.outer-menu .menu > div > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  font-family: roboto;
  letter-spacing: 0.04em;
}
.outer-menu .menu > div > div > div > ul > li > a:hover {
  color: #fff;
}
.outer-menu .menu > div > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.menuLogo{
  padding: 10vh 0 20px 0;
  width: 50px;
}

.menuLogoText{
  width: 250px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10vh;
}

/*.menuSapButton{
  margin: 0 auto;
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 15vh;
  width: 220px;
  transition: 0.5s;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: 'Satisfy', cursive;
  font-size: 2em;
  color: #F24B4B;
}*/

.menuSapButton{
  margin: 0 auto;
  display: block;
  transition: 0.5s;
  margin: 0 auto;
  text-align: center!important;
  padding-top: 10vh!important;
}

.menuSapButton a{
    font-family: 'Satisfy', cursive!important;
     font-size: 2em!important;
     position: relative;
     z-index: 2;
     color: #F24B4B!important;
}

.menuSapButton button{
    font-family: 'Satisfy', cursive!important;
     font-size: 2em!important;
     position: relative;
     z-index: 2;
     color: #F24B4B!important;
     background: transparent;
     font-weight: bold;
}

.queryMenuButton{
  margin-left: 80px;
}

.outer-menu .menu > div > div > div > ul > li.menuSapButton > a:after {
  background:#f26267!important;
}

/*.menuSapButton img{
  margin: 0 auto;
  display: block;
  width: 220px;
  transition: 0.5s;
}*/



.startBorder{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100vw;
  height: 100vh;
  border: solid 35px transparent;
  -webkit-border-image: url(../img/start-a-project-hover.gif) 30 round; /* Safari 3.1-5 */
    -o-border-image: url(../img/start-a-project-hover.gif) 30 round; /* Opera 11-12.1 */
    border-image: url(../img/t1.gif) 90 round;
    z-index: -1;

}
/*
.menuSapButton:hover{
  width: 60vh;
  height: 60vh;
  border-radius: 30vh;
  border: solid 1px #fff;
  background-image: url('../img/start-a-project-hover.gif');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
  bottom: 6vh;
}*/

/*.menuSapButton:hover{
}*/


/*.menuSapButton:hover > a img{
  width: 230px;
  transition: 0.5s;
}*/

.menuSapButton a:hover ~ .startBorder{
  display: block;
  z-index: 1;
}

.socialDiamond{
  width: 30px;
  height: 30px;
  border: solid 1px #fff;
    -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
   transform: rotate(45deg);
  display: block;
  float: left;
  margin:0 10px;
  transition: 0.5s;
}

.socialDiamond:hover{
  background-color: #fff;
   transition: 0.5s;
}

.actionButtonB{
  padding: 10px 40px;
  font-size: 16px;
  font-weight: bold;
  float: left;
  border: solid 1px #7f7f7f;
  transition: 0.5s;
  cursor: pointer;
  vertical-align: middle;
  color: #7f7f7f;
}

.actionButtonB:hover{
  border: solid 1px #fff;
  color: #000;
  transition: 0.5s;
  background-color: #fff;
}








/*===========CUSTOMS============*/
/*===========CUSTOMS============*/
/*===========CUSTOMS============*/
/*===========CUSTOMS============*/
/*===========CUSTOMS============*/



.sectionPadding{
	width: 100vw;
	height: 100vh;

	position: relative;
}

.sOne{
	background-color: #000;
}

main.smooth{
	margin: 0 auto;
	left:0;
	right:0;
	display: block;
	position: absolute;
	top:0;
	width: 65vw!important;
	height: 100vh!important;
}

.scrollArrowWrap{
	width: 35px;
	display: block;
	margin: 0 auto;
	height: 60px;
	border: solid 1px rgba(255,255,255,0.5);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
  cursor: pointer;
}


.boxScrollArrow{
	width: 100%;
	display: block;
	margin: 0 auto;
	position: relative;
	opacity: 0.6;
	margin-top: 8px;
}

.scrollArrowWrap p{
	color:#ddd;
	font-size: 12px;
	letter-spacing: 0.28em;
	margin: 0 auto;
	margin-top: -53px;
	font-weight: 100;
	margin-left: -18px;
	left: 0;
	right: 0;
	z-index: 3;
	text-align: center;
	width: 40px;
}

.sTwo{
	background-color: #000;
	position: relative;
  height: 110vh;
}


.contentMiddle{
     position: relative;
     top: 50%;
     transform: translateY(-50%);
     -ms-transform: translateY(-50%);
     -webkit-transform: translateY(-50%);
     z-index: 600;
}

#tagBlocksWrap{
	max-width: 800px;
	display: block;
	margin: 0 auto;
	color: #000;
	text-align: center;
}

.tagBlocks span{
	background-color: #fff;
	margin: 5px auto;
	display: inline;
	font-size: 24px;
    font-weight: bold;
    font-family: "Courier New", Courier, monospace;
    padding: 0;
  line-height: 1.2em;
}

.oneStopSvg{
	width: 80%;
	position: absolute;
	bottom:15vh;
	opacity: 0.3;
	transform: rotate(-10deg);
}

.sTwoContent{
  padding-top: 30vh;
}

.bounce {
	-webkit-animation-name: bounce;
	-moz-animation-name: bounce;
	-o-animation-name: bounce;
	animation-name: bounce;
}
.animated{
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-ms-animation-fill-mode:both;
	-o-animation-fill-mode:both;

	animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;

	animation-fill-mode:both;
	-webkit-animation-duration:3s;
	-moz-animation-duration:3s;
	-ms-animation-duration:3s;
	-o-animation-duration:3s;
	animation-duration:3s;
}


@-webkit-keyframes bounce {
	0% {-webkit-transform: translateY(0px);}
	50% {-webkit-transform: translateY(-20px);}
	100% {-webkit-transform: translateY(0px);}
}

@-moz-keyframes bounce {
	0% {-moz-transform: translateY(0px);}
	50% {-moz-transform: translateY(-20px);}
	100% {-moz-transform: translateY(0px);}
}

@-o-keyframes bounce {
	0% {-o-transform: translateY(0px);}
	50% {-o-transform: translateY(-20px);}
	100% {-o-transform: translateY(0px);}
}
@keyframes bounce {
	0% {transform: translateY(0px);}
	50% {transform: translateY(-20px);}
	100% {transform: translateY(0px);}

}


.videoSection{
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    display: block;
    min-height: 660px;
    float: left;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.videoWrap{
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  min-height: 660px;
}

.myVideoR{
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    min-height: 660px;
    background-size: 100% 100%;
    background-color: #000; /* in case the video doesn't fit the whole page*/
    background-image: /* our video */;
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
    z-index: 5;
}


.videoContent{
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.videoP{
	font-family: Times;
	font-size: 4em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-weight: 100;
	line-height: 1.2em;
}

.videoP span{
	color: #13072b;
	text-transform: none;
	font-size: 1.5em;
	display: block;
	letter-spacing: 0.01em;
	font-style: italic;
}

.awardsBlockWrap{
	width: 68%;
	display: block;
	margin: 0 auto;
	margin-top:50px;
	min-width: 640px;
}

.awardsNumber{
	font-family: Times;
	font-size: 6em;
	color: #fff;
	text-align: center;
	padding-top: 0;
	margin: 0 auto;
	padding-top: 40px;
}


.awardLogo{
	padding:0;
	z-index: 100;
	display: block;
	position: relative;
	width:70%;
	margin:0 auto;
}

.greatnessImg{
  width: 70%;
  display: block;
  margin: 0 auto;
  margin-top: 5vh;
}

.whyWeMake{
  background-color: #000;
  position: relative;
  z-index: 1;
}

.whatWeMakeWrap{
  color: #fff;
  transition: color 0.5s;
}

.whatWeMakeWrap:hover{
  color: #333333;
  transition: 0.5s;
}

.whyWeDo{
  width: 95%;
  cursor: pointer;
  text-align: left;
  padding: 20px;
  margin: 0 auto;
  display: block;
  transition: 0.5;
  letter-spacing: .02em;
  vertical-align: center;
  padding-left: 40px;
}

.whyWeDo h1{
    text-align: left;
    padding: 0;
    margin: 0;
    display: block;
    line-height: 1em;
    text-transform: uppercase;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 6em;
    padding-bottom: 5px;
    letter-spacing: 0.1em;
}



.whyWeDo span{
  font-size: 16px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 100;
  margin: 0;
  padding: 0;
  line-height: 0px;
  display: none;
  line-height: 1.2em;
}


#why:hover{
  color: #fff;
  display: block;
  transition: 1s;
}
#why:hover > span{
  display: block;
  transition: 1s;
  color: #fff;
  transition: 1s;
}
#what:hover {
  color: #fff;
  display: block;
  transition: 1s;
}
#what:hover > span{
  display: block;
  color: #fff;
  transition: 1s;
}

#says:hover {
  color: #fff;
  display: block;
  transition: 1s;
}
#says:hover > span{
  display: block;
  color: #fff;
  transition: 1s;
}

#aboutus:hover {
  color: #fff;
  display: block;
  transition: 1s;
}
#aboutus:hover > span{
  display: block;
  color: #fff;
  transition: 1s;
}


.footerParts{
  width:100%;
  height: 50%;
  display: block;
  margin: 0 auto;
  float: left;
}

.indexFooterBug{
  padding-bottom: 80px;
}

.balloon{
  background:url('../img/balloon.gif');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  background-position: center;
  position: relative;
  background-attachment: fixed;
}


.footerQuickLinks{
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
  color: #f26267;
  bottom: 25px;
  position: absolute;
  font-family: 'Satisfy';
  font-size: 1.2em;
}

.footerQuickLinks span{
  color: #ff9b9e;
  margin: 10px;
  font-size: 0.6em;
  font-family: 'Roboto';
}

.footerQuickLinks a:hover{
  color: #fff;
}

















/*======= Interactive Scroll ======== */
/*======= Interactive Scroll ======== */
/*======= Interactive Scroll ======== */
/*======= Interactive Scroll ======== */
/*======= Interactive Scroll ======== */


img.wp-smiley,
        img.emoji {
            display: inline !important;
            border: 0 !important;
            box-shadow: none !important;
            height: 1em !important;
            width: 1em !important;
            margin: 0 .07em !important;
            vertical-align: -.1em !important;
            background: none !important;
            padding: 0 !important
        }
        
        div.wpcf7 {
            margin: 0;
            padding: 0
        }
        
        div.wpcf7-response-output {
            margin: 2em .5em 1em;
            padding: .2em 1em
        }
        
        div.wpcf7 .screen-reader-response {
            position: absolute;
            overflow: hidden;
            clip: rect(1px, 1px, 1px, 1px);
            height: 1px;
            width: 1px;
            margin: 0;
            padding: 0;
            border: 0
        }
        
        div.wpcf7-mail-sent-ok {
            border: 2px solid #398f14
        }
        
        div.wpcf7-mail-sent-ng {
            border: 2px solid red
        }
        
        div.wpcf7-spam-blocked {
            border: 2px solid orange
        }
        
        div.wpcf7-validation-errors {
            border: 2px solid #f7e700
        }
        
        .wpcf7-form-control-wrap {
            position: relative
        }
        
        span.wpcf7-not-valid-tip {
            color: #f00;
            font-size: 1em;
            display: block
        }
        
        .use-floating-validation-tip span.wpcf7-not-valid-tip {
            position: absolute;
            top: 20%;
            left: 20%;
            z-index: 100;
            border: 1px solid red;
            background: #fff;
            padding: .2em .8em
        }
        
        span.wpcf7-list-item {
            margin-left: .5em
        }
        
        .wpcf7-display-none {
            display: none
        }
        
        div.wpcf7 img.ajax-loader {
            border: 0;
            vertical-align: middle;
            margin-left: 4px
        }
        
        div.wpcf7 div.ajax-error {
            display: none
        }
        
        div.wpcf7 .placeheld {
            color: #888
        }
        
        *,
        *:before,
        *:after {
            margin: 0;
            padding: 0;
            border: 0 none;
            outline: 0;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            font-smoothing: antialiased;
            text-rendering: optimizeLegibility
        }
        
        article,
        aside,
        details,
        figcaption,
        figure,
        footer,
        header,
        hgroup,
        nav,
        section {
            display: block
        }
        
        audio,
        canvas,
        video {
            display: inline-block
        }
        
        audio:not([controls]) {
            display: none
        }
        
        [hidden] {
            display: none
        }
        
        input,
        select,
        textarea {
            font-family: Georgia, serif;
            font-size: 14px;
            line-height: 20px
        }
        
        input[type="search"],
        input[type="email"],
        input[type="text"] {
            -webkit-appearance: initial
        }
        
        ::-moz-selection {
            background: #13042b;
            color: #FFF;
            text-shadow: none
        }
        
        ::selection {
            background: #13042b;
            color: #FFF;
            text-shadow: none
        }
        
        ::-webkit-input-placeholder {
            color: currentColor
        }
        
        ::-moz-placeholder {
            color: currentColor
        }
        
        :-ms-input-placeholder {
            color: currentColor
        }
        
        html,
        body {
            height: 100%;
            min-height: 100%;
            max-width: 100%;
            margin: 0
        }
        
        .screen {
            position: relative;
            min-height: 100%;
            height: auto;
            height: 100%;
            width: 100%;
            padding-left:0px;
            display: table;
            overflow-x: hidden
        }
        
        .screen-wrapper {
            display: table-cell;
            vertical-align: middle
        }
        
        .screen-inner {
            font-size: 16px;
            display: block;
            margin: auto;
            width: 60vw;
            min-width: 720px;
            max-width: 100%;
            position: relative;
            z-index: 999
        }
        
        @media screen and (max-width:900px) {
            .screen {
                padding-left: 0
            }
            .screen-inner {
                width: 600px;
                max-width: 100%
            }
        }
        
        @media screen and (max-width:720px) {
            .screen {
                padding-left: 0
            }
            .screen-inner {
                width: 440px;
                max-width: 100%
            }
        }
        
        @media screen and (max-width:640px) {
            .screen {
                padding-left: 0
            }
            .screen-inner {
                width: 380px;
                max-width: 100%
            }
        }
        
        @media screen and (max-width:480px) {
            .screen {
                padding-left: 0
            }
            .screen-inner {
                width: 250px;
                max-width: 100%
            }
        }
        
        .cd-words-wrapper {
            display: inline-block;
            position: relative;
            text-align: left
        }
        
        .cd-words-wrapper b {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 0
        }
        
        .cd-words-wrapper b.is-visible {
            position: relative
        }
        
        .no-js .cd-words-wrapper b {
            opacity: 0
        }
        
        .no-js .cd-words-wrapper b.is-visible {
            opacity: 1
        }
        
        .cd-headline.zoom .cd-words-wrapper {
            -webkit-perspective: 300px;
            -moz-perspective: 300px;
            perspective: 300px
        }
        
        .cd-headline.zoom b {
            opacity: 0
        }
        
        .cd-headline.zoom b.is-visible {
            opacity: 1;
            -webkit-animation: zoom-in 1s;
            -moz-animation: zoom-in 1s;
            animation: zoom-in 1s
        }
        
        .cd-headline.zoom b.is-hidden {
            -webkit-animation: zoom-out .6s;
            -moz-animation: zoom-out .6s;
            animation: zoom-out .6s
        }
        
        @-webkit-keyframes zoom-in {
            0% {
                opacity: 0;
                -webkit-transform: translateZ(20px)
            }
            100% {
                opacity: 1;
                -webkit-transform: translateZ(0)
            }
        }
        
        @-moz-keyframes zoom-in {
            0% {
                opacity: 0;
                -moz-transform: translateZ(20px)
            }
            100% {
                opacity: 1;
                -moz-transform: translateZ(0)
            }
        }
        
        @keyframes zoom-in {
            0% {
                opacity: 0;
                transform: translateZ(20px)
            }
            100% {
                opacity: 1;
                transform: translateZ(0)
            }
        }
        
        @-webkit-keyframes zoom-out {
            0% {
                opacity: 1;
                -webkit-transform: translateZ(0)
            }
            100% {
                opacity: 0;
                -webkit-transform: translateZ(-20px)
            }
        }
        
        @-moz-keyframes zoom-out {
            0% {
                opacity: 1;
                -moz-transform: translateZ(0)
            }
            100% {
                opacity: 0;
                -moz-transform: translateZ(-20px)
            }
        }
        
        @keyframes zoom-out {
            0% {
                opacity: 1;
                transform: translateZ(0)
            }
            100% {
                opacity: 0;
                transform: translateZ(-20px)
            }
        }
        
        .hamburger {
            display: none
        }
        
        #menu-xl {
            display: table;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 99999;
            font-family: 'dual600', Arial, sans-serif;
            width: 100px;
            height: 100%
        }
        
        .menu-xl-inner {
            display: table-cell;
            vertical-align: middle
        }
        
        #menu-home .logo-stroked {
            max-width: 100%;
            height: 50px;
            fill: transparent;
            stroke: white;
            stroke-width: 3px;
            stroke-dasharray: 100, 0
        }
        
        .logo-stroked-poly {
            fill: white
        }
        
        .logo-stroked-poly:hover {
            fill: white
        }
        
        #menu-home .logo-stroked:hover,
        #menu-home .logo-stroked:focus {
            -webkit-animation: panache-anim .7s ease-out forwards;
            -moz-animation: panache-anim .7s ease-out forwards;
            -ms-animation: panache-anim .7s ease-out forwards;
            -o-animation: panache-anim .7s ease-out forwards;
            animation: panache-anim .7s ease-out forwards
        }
        
        .logo-stroked-poly {
            fill: white
        }
        
        .logo-stroked-poly:hover,
        .logo-stroked-poly:focus {
            fill: white
        }
        
        @-webkit-keyframes panache-anim {
            0% {
                stroke-dasharray: 0%, 100;
                stroke-dashoffset: 0
            }
            100% {
                stroke-dasharray: 100%, 0;
                stroke-dashoffset: 0
            }
            0% {
                stroke-dasharray: 0, 100;
                stroke-dashoffset: 0
            }
        }
        
        @-moz-keyframes panache-anim {
            0% {
                stroke-dasharray: 0%, 100;
                stroke-dashoffset: 0
            }
            100% {
                stroke-dasharray: 100%, 0;
                stroke-dashoffset: 0
            }
            0% {
                stroke-dasharray: 0, 100;
                stroke-dashoffset: 0
            }
        }
        
        @-ms-keyframes panache-anim {
            0% {
                stroke-dasharray: 0%, 100;
                stroke-dashoffset: 0
            }
            100% {
                stroke-dasharray: 100%, 0;
                stroke-dashoffset: 0
            }
            0% {
                stroke-dasharray: 0, 100;
                stroke-dashoffset: 0
            }
        }
        
        @-o-keyframes panache-anim {
            0% {
                stroke-dasharray: 0%, 100;
                stroke-dashoffset: 0
            }
            100% {
                stroke-dasharray: 100%, 0;
                stroke-dashoffset: 0
            }
            0% {
                stroke-dasharray: 0, 100;
                stroke-dashoffset: 0
            }
        }
        
        @keyframes panache-anim {
            0% {
                stroke-dasharray: 0%, 100;
                stroke-dashoffset: 0
            }
            100% {
                stroke-dasharray: 100%, 0;
                stroke-dashoffset: 0
            }
            0% {
                stroke-dasharray: 0, 100;
                stroke-dashoffset: 0
            }
        }
        
        .entry {
            margin: auto;
            width: 30px;
            font-size: 18px;
            line-height: 18px;
            text-transform: uppercase;
            margin-top: 30px
        }
        
        .nbsp {
            line-height: 10px
        }
        
        .menu-link {
            display: block
        }
        
        .menu-link-hover:before,
        .menu-link-hover:after {
            background: transparent;
            content: "";
            display: block;
            margin: 10px auto;
            width: 0;
            height: 1px;
            -webkit-transition: all .3s ease-out;
            -moz-transition: all .3s ease-out;
            -ms-transition: all .3s ease-out;
            -o-transition: all .3s ease-out;
            transition: all .3s ease-out
        }
        
        .menu-link-hover:hover:before,
        .menu-link-hover:hover:after,
        .menu-link-hover.active:before,
        .menu-link-hover.active:after,
        .menu-link-hover:focus:before,
        .menu-link-hover:focus:after {
            width: 1em;
            background: white
        }
        
        .label {
            display: block;
            margin-left: auto;
            margin-right: auto;
            text-align: center
        }
        
        a,
        a:visited,
        a:active {
            color: white;
            text-decoration: none
        }
        
        @media screen and (max-height:768px) {
            #menu-home .logo {
                max-width: 80%
            }
            .entry {
                width: 30px;
                font-size: 14px;
                line-height: 14px
            }
        }
        
        #menu-mobile {
            overflow-x: hidden
        }
        
        .burger {
            position: fixed;
            right: 0;
            z-index: 9998;
            width: 200px
        }
        
        .burger label {
            font-family: 'NotCourierSans';
            text-transform: uppercase;
            font-size: 40px;
            text-align: center
        }
        
        .burger label:hover {
            cursor: pointer
        }
        
        #onoff {
            display: none
        }
        
        .overlay {
            z-index: 8;
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: white;
            z-index: 9999
        }
        
        .overlay label {
            position: absolute;
            z-index: 100;
            cursor: pointer
        }
        
        .cross {
            fill: #f24b4b
        }
        
        .overlay ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
            display: inline-block;
            height: 100%;
            position: relative
        }
        
        .overlay ul li {
            display: block;
            height: 20%;
            height: calc(100%/5);
            min-height: 54px
        }
        
        .overlay ul li a {
            font-weight: 300;
            display: block;
            color: #f24b4b;
            text-decoration: none;
            -webkit-transition: color .4s;
            -moz-transition: color .4s;
            -ms-transition: color .4s;
            -o-transition: color .4s;
            transition: color .4s;
            text-transform: uppercase
        }
        
        .overlay ul li a:hover {
            color: #13042b
        }
        
        .overlay #mobile-entry {
            text-align: center;
            position: relative;
            top: 50%;
            height: 60%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%)
        }
        
        .mobile-panache #mobile-entry {
            -webkit-perspective: 300px;
            -moz-perspective: 300px;
            perspective: 300px
        }
        
        .burger~.mobile-panache {
            opacity: 0;
            visibility: hidden;
            -webkit-transition: opacity .5s, visibility 0s .5s;
            -moz-transition: opacity .5s, visibility 0s .5s;
            -ms-transition: opacity .5s, visibility 0s .5s;
            -o-transition: opacity .5s, visibility 0s .5s;
            transition: opacity .5s, visibility 0s .5s
        }
        
        #onoff:checked~.mobile-panache {
            opacity: 1;
            visibility: visible;
            -webkit-transition: opacity .5s;
            -moz-transition: opacity .5s;
            -ms-transition: opacity .5s;
            -o-transition: opacity .5s;
            transition: opacity .5s
        }
        
        #onoff:checked~.mobile-panache #mobile-entry ul {
            opacity: 1;
            -webkit-transform: rotateX(0deg);
            -moz-transform: rotateX(0deg);
            -ms-transform: rotateX(0deg);
            -o-transform: rotateX(0deg);
            transform: rotateX(0deg)
        }
        
        .mobile-panache #mobile-entry ul {
            opacity: .4;
            -webkit-transform: translateY(-25%) rotateX(35deg);
            -moz-transform: translateY(-25%) rotateX(35deg);
            -ms-transform: translateY(-25%) rotateX(35deg);
            -o-transform: translateY(-25%) rotateX(35deg);
            transform: translateY(-25%) rotateX(35deg);
            -webkit-transition: -webkit-transform .5s, opacity .5s;
            -moz-transition: -webkit-transform .5s, opacity .5s;
            -ms-transition: -webkit-transform .5s, opacity .5s;
            -o-transition: -webkit-transform .5s, opacity .5s;
            transition: transform .5s, opacity .5s
        }
        
        #onoff:not(:checked)~.mobile-panache #mobile-entry ul {
            -webkit-transform: translateY(25%) rotateX(-35deg);
            -moz-transform: translateY(25%) rotateX(-35deg);
            -ms-transform: translateY(25%) rotateX(-35deg);
            -o-transform: translateY(25%) rotateX(-35deg);
            transform: translateY(25%) rotateX(-35deg)
        }
        
        @media screen and (min-width:900px) {
            .cross {
                display: block;
                position: fixed;
                height: 65px;
                width: 60px;
                top: 35px;
                right: 40px
            }
            #mobile-entry .logo {
                fill: #f24b4b;
                height: 80px;
                margin-bottom: 100px
            }
            .overlay #mobile-entry {
                font-size: 250%
            }
            #logo-mobilehome {
                height: 165px
            }
            .cover-entry:before,
            .cover-entry:after {
                background-color: transparent;
                content: "";
                display: block;
                margin: 10px auto;
                width: 0;
                height: 1px;
                -webkit-transition: all .3s ease-out;
                -moz-transition: all .3s ease-out;
                -ms-transition: all .3s ease-out;
                -o-transition: all .3s ease-out;
                transition: all .3s ease-out
            }
            .cover-entry:hover:before,
            .cover-entry:hover:after {
                width: 100%;
                background-color: #13042b
            }
        }
        
        @media screen and (max-width:900px) {
            #menu-xl {
                display: none
            }
            #menu-classic {
                display: block
            }
            .hamburger {
                display: block;
                position: fixed;
                z-index: 1;
                fill: white;
                height: 45px;
                width: 50px;
                top: 45px;
                right: 45px
            }
            .cross {
                display: block;
                position: fixed;
                height: 65px;
                width: 60px;
                top: 35px;
                right: 40px
            }
            .overlay #mobile-entry {
                font-size: 250%
            }
            #mobile-entry .logo {
                fill: #f24b4b;
                height: 80px
            }
            .cover-entry:before,
            .cover-entry:after {
                background-color: transparent;
                content: "";
                display: block;
                margin: 10px auto;
                width: 0;
                height: 1px;
                -webkit-transition: all .3s ease-out;
                -moz-transition: all .3s ease-out;
                -ms-transition: all .3s ease-out;
                -o-transition: all .3s ease-out;
                transition: all .3s ease-out
            }
            .cover-entry:hover:before,
            .cover-entry:hover:after {
                width: 100%;
                background-color: #13042b
            }
        }
        
        @media screen and (max-width:900px) {
            #mobile-entry .logo {
                fill: #f24b4b;
                height: 80px;
                margin-bottom: 100px
            }
            #logo-mobilehome {
                height: 145px
            }
        }
        
        @media screen and (max-width:640px) {
            #menu-xl {
                display: none
            }
            #menu-classic {
                display: block
            }
            #logo-mobilehome {
                height: 95px
            }
            .hamburger {
                display: block;
                position: fixed;
                z-index: 1;
                fill: white;
                height: 25px;
                width: 25px;
                top: 25px;
                right: 25px
            }
            .cross {
                display: block;
                position: fixed;
                height: 33px;
                width: 45px;
                top: 21px;
                right: 15px
            }
            #mobile-entry .logo {
                fill: #f24b4b;
                height: 60px
            }
            .overlay #mobile-entry {
                font-size: 200%
            }
        }
        
        #home {
            background-color: #13042b;
            min-height: 150%;
            min-height: 150vh;
            height: 150%;
            height: 150vh
        }

        #home>.screen-wrapper{
            padding-top: -150px;
            padding-bottom: 350px;
        }

        
        
        #main-title {
            text-align: center;
            position: relative;
            z-index: 1
        }
        
        .biglogo {
            position: absolute;
            height: 650px;
            width: 760px;
            top: -150px;
            padding-top: 0px;
            left: 0;
            right:0;
            max-width: 100%;
            z-index: -1;
            opacity: 0.6
        }
        
        @media screen and (max-width:900px) {
            .biglogo {
                position: absolute;
                height: 460px;
                width: 650px;
                top: -100px;
                padding-top: 5px;
                left: 0;
                padding-left: 140px;
                max-width: 100%;
                z-index: -1
            }
        }
        
        @media screen and (max-width:720px) {
            .biglogo {
                position: absolute;
                height: 480px;
                width: 450px;
                top: -160px;
                padding-top: 0;
                left: 0;
                padding-left: 90px;
                max-width: 100%;
                z-index: -1
            }
        }
        
        @media screen and (max-width:640px) {
            .biglogo {
                position: absolute;
                height: 410px;
                width: 550px;
                top: -150px;
                padding-top: 0;
                left: 0;
                padding-left: 50px;
                padding-right: 0;
                max-width: 100%;
                z-index: -1
            }
        }
        
        @media screen and (max-width:480px) {
            .biglogo {
                position: absolute;
                height: 280px;
                width: 350px;
                top: -90px;
                padding-top: 0;
                left: 0;
                padding-right: 0;
                padding-left: 40px;
                max-width: 100%;
                z-index: -1
            }
        }
        
        @media screen and (max-width:320px) {
            .biglogo {
                position: absolute;
                height: 220px;
                width: 450px;
                top: -70px;
                padding-top: 45px;
                left: 0;
                padding-right: 0;
                padding-left: 40px;
                max-width: 100%;
                z-index: -1
            }
        }
        
        #expertises {
            background-color: #f24b4b;
            position: relative;
            padding-top: 50vh
        }
        
        #ghost-transition-1 {
            position: absolute;
            top: 0;
            left: 0;
            min-height: 150%;
            min-height: 150vh;
            height: 150%;
            height: 150vh;
            z-index: -1
        }
        
        #conseil,
        #creation,
        #ecran {
            background-color: #f24b4b;
            margin: 0;
             padding-top: 80px;
            padding-bottom: 180px;
        }

        #ecran .cd-content{
            padding-bottom: 280px;
        }

        #conseil h5, #creation h5, #ecran h5{
            padding-bottom: 50px;
            font-size: 1em;
            line-height: 1.8em;
            color: #000;
        }

         #creation h5{
            padding-bottom: 50px
        }

        #ecran h5{
            padding-bottom: 50px
        }
        
        .expertise-inner {
            padding-left: 420px;
            padding-top: 80px
        }
        
        .column-left {
            float: left;
            margin-right: 100px
        }
        
        .column-right {
            float: left;
            margin-bottom: 80px
        }
        
        .fixed-background {
            position: relative
        }
        
        .fixed-background:after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 145px;
            height: 100%;
            max-width: 4000px;
            min-width: 700px;
            background-repeat: no-repeat;
            background-size: auto auto;
            background-position: 20% center;
            background-attachment: fixed
        }
        
        .fixed-background.img-1:after {
            background-image: url(../img/a.png)
        }
        
        .fixed-background.img-2:after {
            background-image: url(../img/b.png)
        }
        
        .fixed-background.img-3:after {
            background-image: url(../img/c.png)
        }
        
        @media screen and (max-width:1024px) {
            #conseil,
            #creation,
            #ecran {
                background-color: #f24b4b;
                margin: 0
            }
            #conseil {
                padding-top: 70px
            }
            #ecran {
                padding-bottom: 20px
            }
            .miniscreen {
                min-height: 80%;
                height: auto
            }
            .expertise-inner {
                padding-left: 270px
            }
            .column-left {
                width: 170px;
                margin-right: 60px
            }
            .column-right {
                width: 170px
            }
            .cd-content {
                margin: auto;
                width: auto
            }
            .fixed-background:after {
                display: none
            }
            .img-tablet {
                background-repeat: no-repeat;
                background-position: 135px center;
                background-size: 280px auto;
                overflow-y: hidden
            }
            .fixed-background:after {
                display: none
            }
            .columns {
                width: 415px
            }
        }
        
        @media screen and (max-width:900px) {
            .img-tablet {
                background-repeat: no-repeat;
                background-position: 80px center;
                background-size: 280px auto;
                overflow-y: hidden
            }
            #ecran {
                padding-bottom: 10px
            }
            .column-left {
                width: 125px;
                margin-right: 35px
            }
            .column-right {
                width: 172px
            }
            .img-tablet-1 {
                background-position: 50px 170px
            }
            
        }
        
        @media screen and (max-width:800px) {
            .img-tablet {
                background-repeat: no-repeat;
                background-position: 50px center;
                background-size: 280px auto;
                overflow-y: hidden
            }
            .img-tablet-1 {
                background-position: 50px 170px
            }
            .img-tablet-3 {
                background-position: 50px 90px
            }
            .miniscreen {
                min-height: 60%;
                height: auto
            }
        }
        
        @media screen and (max-width:720px) {
            #conseil,
            #creation,
            #ecran {
                background-color: #f24b4b;
                margin: 0;
                padding-left: 0;
            }
            .expertise-inner {
                padding-left: 0
            }
            .columns {
                width: 495px
            }
            .column-left,
            .column-right {
                width: 100%
            }
            .cd-content {
                margin: auto;
                width: auto
            }
            .img-tablet {
                background-image: none
            }
            .img-mob {
                background-repeat: no-repeat;
                background-position: right center;
                background-size: 280px !important;
                overflow-y: hidden
            }
            
            .fixed-background:after {
                display: none
            }
        }
        
        @media screen and (max-width:640px) {
            #conseil,
            #creation,
            #ecran {
                background-color: #f24b4b;
                margin: 0;
                padding-left: 0
            }
            .miniscreen {
                min-height: 70%;
                height: auto
            }
            .columns {
                width: 415px
            }
            .img-mob {
                background-size: 230px !important
            }
            .img-mob-3 {
                background-position: right 80px
            }
            .cd-content {
                margin: auto;
                width: auto
            }
        }
        
        @media screen and (max-width:480px) {
            #conseil,
            #creation,
            #ecran {
                background-color: #f24b4b;
                margin: 0;
                padding: 0
            }
            #conseil {
                padding-top: 60px
            }
            .miniscreen {
                min-height: 30%;
                height: auto
            }
            .column-left,
            .column-right {
                width: 100%
            }
            .columns {
                width: 290px
            }
            .img-mob {
                background-size: 200px !important
            }
            .cd-fixed-background {
                position: relative
            }
            .cd-fixed-background:after {
                display: none
            }
            .cd-content {
                margin: auto;
                width: auto
            }
            
        }
        
        #vous {
            background-color: #6bd6f1
        }
        
        #vous h3 {
            padding-bottom: 20px
        }
        
        #sommet {
            float: left;
            width: 300px;
            padding-right: 0;
            margin-top: 80px
        }
        
        .keyword {
            color: white
        }
        
        #sous-marin {
            float: right;
            width: 300px;
            margin-top: 270px;
            padding-left: 0;
            margin-bottom: 80px
        }
        
        #sous-traitance {
            color: white
        }
        
        @media screen and (max-width:900px) {
            .glossaire {
                display: block
            }
            #vous h3 {
                padding-bottom: 10px
            }
            #sommet {
                float: left;
                width: 300px;
                padding-right: 30px
            }
            #sous-marin {
                float: right;
                width: 300px;
                margin-top: 190px;
                padding-left: 30px
            }
        }
        
        @media screen and (max-width:720px) {
            .glossaire {
                display: inline
            }
            #vous {
                padding: 0
            }
            #vous>.wrapper {
                width: 440px;
                padding: 0
            }
            #vous h3 {
                padding-bottom: 10px
            }
            #sommet,
            #sous-marin {
                width: 100%;
                padding: 0
            }
            #sous-marin {
                margin-top: 80px
            }
        }
        
        @media screen and (max-width:640px) {
            #vous>.wrapper {
                width: 420px
            }
            #sommet,
            #sous-marin {
                width: 100%;
                padding: 0
            }
        }
        
        @media screen and (max-width:480px) {
            .glossaire {
                display: block
            }
            #vous>.wrapper {
                width: 250px
            }
            #vous h3 {
                padding-bottom: 8px
            }
            #sommet,
            #sous-marin {
                width: 100%;
                padding: 0
            }
        }
        
        #duo {
            background-color: #13042b

        }
        
        @media screen and (min-width:900px) {
            #duo {
                min-height: 150%;
                min-height: 150vh;
                height: 150%;
                height: 150vh
            }
            #duo>.screen-wrapper {
                padding-bottom: 150%;
                padding-bottom: 150vh
            }
        }
        
        .photoduo {
            display: block;
            margin: 0 auto;
            margin-top: 150px;
            height: auto;
            max-width: 100%
        }
        
        .photoduo-mobile {
            display: none
        }
        
        #marianne-schricke {
            float: left;
            width: 300px;
            margin-top: 60px;
            margin-bottom: 60px;
            margin-right: 100px;
            height: 100%;
            padding-bottom: 80px
        }
        
        #guillaume-thibord {
            float: right;
            width: 300px;
            margin-top: 60px;
            margin-bottom: 60px;
            height: 100%;
            padding-bottom: 80px
        }
        
        #duo h6 {
            color: white
        }
        
        #duo h3,
        #duo p {
            color: #f24b4b
        }
        
        #duo p {
            padding-bottom: 20px
        }
        
        #duo h3 {
            padding-bottom: 20px
        }
        
        #duo h6 {
            padding-bottom: 0
        }
        
        @media screen and (max-width:900px) {
            #duo {
                background-color: #13042b;
                height: auto
            }
            #marianne-schricke {
                float: left;
                width: 300px;
                height: 100%;
                margin: 0;
                padding-right: 30px;
                margin-top: 60px;
                margin-bottom: 60px
            }
            #guillaume-thibord {
                float: right;
                width: 300px;
                height: 100%;
                margin: 0;
                padding-left: 30px;
                margin-top: 60px;
                margin-bottom: 60px
            }
            #duo h3 {
                padding-bottom: 10px
            }
            #duo p {
                padding-bottom: 15px
            }
            #duo h6 {
                padding-bottom: 0
            }
        }
        
        @media screen and (max-width:720px) {
            #duo {
                background-color: #13042b;
                height: auto;
                padding: 0
            }
            #duo>.wrapper {
                width: 440px;
                height: 100%
            }
            #marianne-schricke,
            #guillaume-thibord {
                width: 100%;
                padding: 0
            }
            #marianne-schricke {
                margin-top: 20px;
                margin-bottom: 0
            }
            #guillaume-thibord {
                margin-top: 20px;
                margin-bottom: 20px
            }
            #duo h3 {
                padding-top: 80px;
                padding-bottom: 10px
            }
            #duo p {
                padding-bottom: 15px
            }
            #duo h6 {
                padding-bottom: 0
            }
            #guillaume-thibord>h6 {
                padding-bottom: 100px
            }
        }
        
        @media screen and (max-width:640px) {
            #duo {
                background-color: #13042b;
                height: auto;
                padding: 0
            }
            #duo>.wrapper {
                width: 420px;
                height: 100%
            }
            #marianne-schricke,
            #guillaume-thibord {
                width: 100%;
                padding: 0
            }
            #marianne-schricke {
                margin-top: 0;
                margin-bottom: 0
            }
            #guillaume-thibord {
                margin-top: 0;
                margin-bottom: 0
            }
        }
        
        @media screen and (max-width:480px) {
            #duo {
                background-color: #13042b;
                height: auto;
                padding: 0
            }
            #duo>.wrapper {
                width: 250px;
                height: 100%
            }
            .photoduo {
                display: none
            }
            .photoduo-mobile {
                display: block;
                margin-top: 100px;
                height: auto;
                max-width: 100%
            }
            #marianne-schricke,
            #guillaume-thibord {
                width: 100%;
                padding: 0
            }
            #marianne-schricke {
                margin-top: -10px;
                margin-bottom: 0
            }
            #guillaume-thibord {
                margin-top: 0;
                margin-bottom: 15px
            }
            #duo h3 {
                padding-top: 80px;
                padding-bottom: 8px
            }
            #duo p {
                padding-bottom: 15px
            }
            #duo h6 {
                padding-bottom: 0
            }
            #guillaume-thibord>h6 {
                padding-bottom: 80px
            }
        }
        
        #contact {
            background-color: #f24b4b;
        }
        
        @media screen and (min-width:900px) {
            #contact {
                min-height: 100%;
                min-height: 100vh;
                height: 100%;
                height: 100vh
            }
            #contact>.screen-wrapper {
                padding-top: 20%;
                padding-top: 20vh;
                position: relative;
                z-index: 9999
            }
        }
        
        #contact>.wrapper {
            margin-top: 125px
        }
        
        #contact-details {
            text-align: left;
            margin-top: 80px
        }
        
        #contact-ref {
            float: left;
            width: 300px;
            margin-top: 100px;
            margin-right: 100px;
            padding-left: 100px;
            color: white
        }
        
        #contact-ref>p {
            color: white
        }
        
        #mail>a:hover {
            color: #13042b;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out
        }
        
        .facebook,
        .twitter,
        .pinterest {
            width: 55px;
            height: 55px;
            fill: white;
            display: inline;
            margin-top: 80px
        }
        
        .facebook,
        .twitter {
            margin-right: 10px
        }
        
        .facebook:hover,
        .twitter:hover,
        .pinterest:hover {
            fill: #13042b;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out
        }
        
        #contact .wpcf7 {
            float: left;
            width: 300px;
            height: 100%;
            margin-top: 100px;
            margin-bottom: 100px;
            padding-bottom: 80px;
            padding-left: 18px
        }
        
        ::-webkit-input-placeholder {
            color: #000;
            text-transform: none;
            font-family: sans-serif;
            -webkit-padding-before: 6px;
            font-size: 0.7em;
        }
        
        ::-moz-placeholder {
            color: #000;
            opacity: 1;
            text-transform: none;
            font-family: sans-serif;
            font-size: 0.7em;
        }
        
        :-ms-input-placeholder {
            color: #000;
            text-transform: none;
            font-family: sans-serif;
            font-size: 0.7em;
        }
        
        .wpcf7 input {
            width: 100%;
            color: white;
            background-color: transparent;
            border: 0;
            height: 40px
        }
        
        .wpcf7 p {
            margin: 0 !important;
            padding-top: 0;
            padding-bottom: 0;
            line-height: 27px
        }
        
        .formpan-input {
            vertical-align: middle
        }
        
        .formpan-textarea::-webkit-input-placeholder {
            line-height: 22px
        }
        
        .formpan-input:before,
        .formpan-textarea:before {
            content: '';
            display: block;
            background-color: white;
            height: 1px;
            width: 300px
        }
        
        .wpcf7 textarea {
            background-color: transparent;
            resize: vertical;
            line-height: 22px;
            margin-top: 8px;
            width: 300px;
            color: white;
            -webkit-padding-before: 2px
        }
        
        textarea::-webkit-input-placeholder,
        input::-webkit-input-placeholder {
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        textarea::-moz-input-placeholder,
        input::-moz-placeholder {
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        textarea:-ms-input-placeholder,
        input:-ms-input-placeholder {
            -ms-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        input:hover::-webkit-input-placeholder,
        input:focus::-webkit-input-placeholder,
        textarea:hover::-webkit-input-placeholder,
        textarea:focus::-webkit-input-placeholder {
            opacity: .3;
            filter: alpha(opacity=50);
            -webkit-transform: translate(0%, -45%)
        }
        
        input:hover::-moz-placeholder,
        input:focus::-moz-placeholder,
        textarea:hover::-moz-input-placeholder,
        textarea:hover::-moz-input-placeholder {
            opacity: .3;
            filter: alpha(opacity=50);
            -moz-transform: translate(0%, -50%)
        }
        
        input:hover:-ms-input-placeholder,
        input:focus:-ms-input-placeholder,
        textarea:hover:-ms-input-placeholder,
        textarea:hover:-ms-input-placeholder {
            opacity: .3;
            filter: alpha(opacity=50);
            -ms-transform: translate(0%, -20%)
        }
        
        .formpan-check {
            margin-bottom: 30px
        }
        
        .formpan-check p {
            color: white;
            font-size: 14px
        }
        
        .formpan-check input {
            -webkit-appearance: button !important;
            appearance: button !important;
            border: solid 1px white;
            border-radius: none !important;
            background-color: transparent !important;
            width: 18px !important;
            height: 18px !important;
            margin: 0 !important;
            margin-right: 5px !important;
            vertical-align: middle !important
        }
        
        .formpan-check input:hover {
            border: solid 1px #13042b;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        .formpan-check input:checked {
            border: solid 1px #13042b;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        .formpan-check:before {
            content: '';
            display: block;
            background-color: white;
            height: 1px;
            width: 300px;
            margin-bottom: 25px
        }
        
        .formpan-check input:checked:after {
            content: '×';
            line-height: 13px;
            font-size: 25px;
            margin-left: 0;
            vertical-align: middle;
            padding-bottom: 0;
            padding-left: 0;
            color: #13042b;
            display: block;
            background-color: transparent;
            height: auto;
            width: auto;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        #contact .wpcf7-submit {
            font-family: 'dual300';
            font-style: normal;
            text-transform: uppercase;
            color: white;
            border: solid 1px white;
            height: 30px;
            position: relative;
            width: 100px;
            padding-top: 8px;
            padding-bottom: 25px;
            border-radius: 0;
            */background-color: transparent;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            cursor: pointer
        }
        
        #contact .wpcf7-submit:hover,
        #contact .wpcf7-submit:focus {
            border: solid 1px #13042b;
            color: #13042b
        }
        
        span.wpcf7-not-valid-tip {
            color: #a43333 !important;
            position: absolute;
            top: 8px;
            right: 0;
            font-family: Georgia;
            font-size: 14px !important;
            font-style: italic
        }
        
        div.wpcf7-validation-errors {
            display: none !important
        }
        
        div.wpcf7-mail-sent-ok {
            border: 0 !important;
            color: white !important
        }
        
        div.wpcf7-response-output {
            margin: 0 0 10px 0 !important;
            padding: 0 !important
        }
        
        @media screen and (max-width:900px) {
            #contact-ref {
                float: left;
                width: 250px;
                padding-left: 0;
                margin-right: 80px
            }
            #contact .wpcf7 {
                float: left;
                width: 270px;
                padding-left: 0
            }
            .formpan-input:before,
            .formpan-textarea:before {
                content: '';
                display: block;
                background-color: white;
                height: 1px;
                width: 270px
            }
            .wpcf7 textarea {
                width: 270px
            }
            .formpan-check:before {
                width: 270px
            }
        }
        
        @media screen and (max-width:720px) {
            #contact-ref {
                width: 440px;
                padding-left: 0;
                margin-right: 0
            }
            .facebook,
            .twitter,
            .pinterest {
                margin-top: 50px
            }
            #contact .wpcf7 {
                width: 440px;
                padding-left: 0
            }
            .formpan-input:before,
            .formpan-textarea:before {
                width: 440px
            }
            .wpcf7 textarea {
                width: 440px
            }
            .formpan-check:before {
                width: 440px
            }
        }
        
        @media screen and (max-width:640px) {
            #contact-ref {
                width: 420px;
                padding-left: 0;
                margin-top: 65px
            }
            #contact .wrapper {
                margin-top: 12px
            }
            #contact .wpcf7 {
                width: 380px;
                padding-left: 0;
                margin-top: 65px
            }
            .formpan-input:before,
            .formpan-textarea:before {
                height: 1px;
                width: 380px
            }
            .wpcf7 textarea {
                width: 380px
            }
            .formpan-check:before {
                width: 380px
            }
        }
        
        @media screen and (max-width:480px) {
            #contact-ref {
                width: 250px;
                padding-left: 0
            }
            #contact .wpcf7 {
                width: 250px;
                padding-left: 0
            }
            .formpan-input:before,
            .formpan-textarea:before {
                width: 250px
            }
            .wpcf7 textarea {
                width: 250px
            }
            .formpan-check:before {
                width: 250px
            }
        }
        
        footer.screen {
            background-color: #6bd6f1;
            position: fixed;
            z-index: -1;
            bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 550px;
            height: 550px;
            max-height: 550px;
            padding-left: 0
        }
        
        .footer-wrapper {
            max-width: 410px;
            height: 445px;
            margin-top: 70px
        }
        
        .logo-txt {
            fill: white;
            max-width: 250px;
            max-height: auto;
            display: block;
            margin: 0 auto;
            margin-bottom: 33px
        }
        
        .footer-wrapper h5 {
            text-align: center;
            font-size: 26px;
            margin-bottom: 47px;
            line-height: 35px
        }
        
        .footer-button {
            display: block;
            position: relative;
            width: 200px;
            height: 38px;
            margin: 0 auto;
            padding-top: 10px;
            padding-bottom: 28px;
            border: solid 1px white;
            text-align: center;
            font-family: 'dual600';
            font-style: normal;
            text-transform: uppercase;
            color: white;
            border-radius: 0;
            -webkit-transition: all .4s ease-in-out;
            -moz-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out;
            cursor: pointer
        }
        
        .footer-button:hover {
            border: solid 1px #13042b;
            color: #13042b
        }
        
        .copyright-and-legals {
            position: absolute;
            bottom: 40px;
            width: 100%
        }
        
        .copyright,
        .legals {
            width: 50%;
            color: white;
            float: left;
            font-family: 'dual600';
            font-size: 16px;
            text-transform: uppercase
        }
        
        .legals {
            text-align: right;
            cursor: pointer;
            -webkit-transition: all .4s ease-in-out;
            transition: all .4s ease-in-out
        }
        
        .legals:hover {
            color: #13042b
        }
        
        @media screen and (max-width:720px) {
            .copyright-and-legals {
                position: relative;
                top: 50px;
                bottom: 0
            }
            .copyright,
            .legals {
                width: 100%;
                display: block;
                text-align: center;
                top: 50px
            }
            .legals {
                padding-top: 15px
            }
        }
        
        @font-face {
            font-family: 'dual300';
            src: url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.eot);
            src: url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.eot?#iefix) format('embedded-opentype'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.woff2) format('woff2'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.woff) format('woff'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.ttf) format('truetype'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_300.svg#dual300) format('svg');
            font-weight: normal;
            font-style: normal
        }
        
        @font-face {
            font-family: 'dual600';
            src: url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.eot);
            src: url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.eot?#iefix) format('embedded-opentype'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.woff2) format('woff2'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.woff) format('woff'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.ttf) format('truetype'), url(//panache.fr/wp-content/themes/_panache/assets/css/../fonts/dualfamily/cdtype_-_dual_600.svg#dual600) format('svg');
            font-weight: normal;
            font-style: normal
        }
        
        h1,
        h2,
        h3,
        h4,
        b,
        #mobile-entry ul,
        #mobile-entry li,
        #mobile-entry a {
            font-family: 'dual300', Arial, sans-serif;
            font-style: normal;
            text-transform: uppercase;
            font-weight: normal;
            font-kerning: none;
            -webkit-font-kerning: none
        }
        
        h5,
        h6,
        p {
            font-family: Georgia, "Nimbus Roman No9 L", serif;
            font-weight: normal;
            font-style: italic
        }
        
        h1 {
            color: white
        }
        
        h2 {
            color: white
        }
        
        h3 {
            color: #13042b;
            font-family: "dual300", Arial, sans-serif;
            font-weight: normal;
            font-style: normal;
            text-transform: uppercase;
            font-size: 37px;
            line-height: 44px
        }
        
        h4 {
            font-family: 'dual600';
            color: #13042b
        }
        
        h5 {
            color: #1c1c23;
        }
        
        h6 {
            color: #13042b;
            font-style: italic;
            text-transform: none;
            text-decoration: none;
            font-size: 14px;
            line-height: 20px
        }
        
        p {
            color: #13042b;
            font-size: 18px;
            line-height: 26px
        }
        
        @media screen and (min-width:900px) {
            h1 {
                font-size: 500%;
                line-height: normal
            }
            h2 {
                font-size: 394%;
                line-height: normal
            }
            #conseil h2,
            #creation h2,
            #ecran h2 {
                padding-bottom: 15px
            }
            h3 {
                font-size: 220%;
                line-height: 40px
            }
            h4 {
                font-size: 95%;
                line-height: 20px;
                padding-bottom: 5px
            }
            h5 {
                font-size: 130%;
                line-height: 25px
            }
            .tiret {
                font-size: 150%;
                line-height: 10px;
                padding-top: 80px;
                padding-bottom: 10px
            }
        }
        
        @media screen and (max-width:1024px) {
            .tiret {
                font-size: 150%;
                line-height: 10px;
                padding-top: 65px;
                padding-bottom: 10px
            }
            #ecran .column-right {
                padding-bottom: 80px
            }
        }
        
        @media screen and (max-width:900px) {
            h1 {
                font-size: 410%;
                line-height: normal
            }
            h2 {
                font-size: 380%;
                line-height: normal
            }
            #conseil h2,
            #creation h2,
            #ecran h2 {
                padding-bottom: 15px
            }
            h3 {
                font-size: 164%;
                line-height: 35px
            }
            h4 {
                font-size: 85%;
                line-height: 20px;
                padding-bottom: 4px
            }
            h5 {
                font-size: 130%;
                line-height: 25px
            }
            h6 {
                font-size: 90%;
                line-height: 20px
            }
            p {
                font-size: 120%;
                line-height: 25px
            }
            .tiret {
                font-size: 150%;
                line-height: 10px;
                padding-top: 0;
                padding-bottom: 10px
            }
            .column-left {
                padding-top: 60px
            }
            .column-right {
                padding-top: 60px
            }
        }
        
        @media screen and (max-width:720px) {
            h1 {
                font-size: 310%;
                line-height: normal
            }
            h2 {
                font-size: 350%;
                line-height: normal
            }
            h3 {
                font-size: 200%;
                line-height: 40px
            }
            h5 {
                font-size: 140%;
                line-height: 30px
            }
            .tiret {
                font-size: 150%;
                line-height: 10px;
                padding-top: 0;
                padding-bottom: 5px
            }
            .column-left {
                padding-top: 50px
            }
            .column-right {
                padding-top: 20px
            }
        }
        
        @media screen and (max-width:640px) {
            h1 {
                font-size: 265%;
                line-height: normal
            }
            h2 {
                font-size: 208%;
                line-height: normal
            }
            #conseil h2,
            #creation h2,
            #ecran h2 {
                font-size: 280%;
                padding-bottom: 10px
            }
            h5 {
                font-size: 110%;
                line-height: 25px
            }
            h6 {
                font-size: 90%;
                line-height: 22px
            }
            p {
                font-size: 110%;
                line-height: 25px
            }
        }
        
        @media screen and (max-width:480px) {
            h1 {
                font-size: 175%;
                line-height: normal
            }
            h2 {
                font-size: 185%;
                line-height: normal
            }
            h4 {
                font-size: 80%;
                line-height: 20px;
                padding-bottom: 4px
            }
            h5 {
                font-size: 100%;
                line-height: 20px
            }
            h6 {
                font-size: 80%;
                line-height: 20px
            }
            p {
                font-size: 100%;
                line-height: 20px
            }
            .column-left {
                padding-top: 30px
            }
        }
        
        @media screen and (max-width:319px) {
            h1 {
                font-size: 150%;
                line-height: normal
            }
        }
        
        #main-title-o {
            -moz-font-feature-settings: "salt";
            -ms-font-feature-settings: "salt";
            -webkit-font-feature-settings: "salt";
            font-feature-settings: "salt"
        }
        
        #main-title-a {
            -moz-font-feature-settings: "salt";
            -ms-font-feature-settings: "salt";
            -webkit-font-feature-settings: "salt";
            font-feature-settings: "salt"
        }
        
        #main-title-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #conseil-o {
            -moz-font-feature-settings: "salt";
            -ms-font-feature-settings: "salt";
            -webkit-font-feature-settings: "salt";
            font-feature-settings: "salt"
        }
        
        #conseil-e {
            -moz-font-feature-settings: "salt" 10;
            -ms-font-feature-settings: "salt" 10;
            -webkit-font-feature-settings: "salt" 10;
            font-feature-settings: "salt" 10
        }
        
        #creation-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #creation-o {
            -moz-font-feature-settings: "salt" 7;
            -ms-font-feature-settings: "salt" 7;
            -webkit-font-feature-settings: "salt" 7;
            font-feature-settings: "salt" 7
        }
        
        #ecran-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #ecran-a {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #partenariat-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #constructif-u {
            -moz-font-feature-settings: "salt" 7;
            -ms-font-feature-settings: "salt" 7;
            -webkit-font-feature-settings: "salt" 7;
            font-feature-settings: "salt" 7
        }
        
        #renfort-e {
            -moz-font-feature-settings: "salt" 3;
            -ms-font-feature-settings: "salt" 3;
            -webkit-font-feature-settings: "salt" 3;
            font-feature-settings: "salt" 3
        }
        
        #renfort-f {
            -moz-font-feature-settings: "salt" 3;
            -ms-font-feature-settings: "salt" 3;
            -webkit-font-feature-settings: "salt" 3;
            font-feature-settings: "salt" 3
        }
        
        #renfort-o {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #renfort-n {
            -moz-font-feature-settings: "salt" 5;
            -ms-font-feature-settings: "salt" 5;
            -webkit-font-feature-settings: "salt" 5;
            font-feature-settings: "salt" 5
        }
        
        #guyom-a {
            -moz-font-feature-settings: "salt";
            -ms-font-feature-settings: "salt";
            -webkit-font-feature-settings: "salt";
            font-feature-settings: "salt"
        }
        
        #guyom-e {
            -moz-font-feature-settings: "salt" 3;
            -ms-font-feature-settings: "salt" 3;
            -webkit-font-feature-settings: "salt" 3;
            font-feature-settings: "salt" 3
        }
        
        #tibor-o {
            -moz-font-feature-settings: "salt" 7;
            -ms-font-feature-settings: "salt" 7;
            -webkit-font-feature-settings: "salt" 7;
            font-feature-settings: "salt" 7
        }
        
        #marianne-m {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #marianne-n {
            -moz-font-feature-settings: "salt" 5;
            -ms-font-feature-settings: "salt" 5;
            -webkit-font-feature-settings: "salt" 5;
            font-feature-settings: "salt" 5
        }
        
        #schricke-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #schricke-k {
            -moz-font-feature-settings: "salt";
            -ms-font-feature-settings: "salt";
            -webkit-font-feature-settings: "salt";
            font-feature-settings: "salt"
        }
        
        @media screen and (max-width:768px) {
            .travaillons h2 {
                font-size: 318%;
                line-height: normal
            }
        }
        
        @media screen and (max-width:500px) {
            .travaillons h2 {
                font-size: 224%;
                line-height: normal
            }
        }
        
        #contact-r {
            -moz-font-feature-settings: "salt" 2;
            -ms-font-feature-settings: "salt" 2;
            -webkit-font-feature-settings: "salt" 2;
            font-feature-settings: "salt" 2
        }
        
        #contact-a {
            -moz-font-feature-settings: "salt" 15;
            -ms-font-feature-settings: "salt" 15;
            -webkit-font-feature-settings: "salt" 15;
            font-feature-settings: "salt" 15
        }
        
        #contact-e {
            -moz-font-feature-settings: "salt" 10;
            -ms-font-feature-settings: "salt" 10;
            -webkit-font-feature-settings: "salt" 10;
            font-feature-settings: "salt" 10
        }
        
        #contact-b {
            -moz-font-feature-settings: "salt" 6;
            -ms-font-feature-settings: "salt" 6;
            -webkit-font-feature-settings: "salt" 6;
            font-feature-settings: "salt" 6
        }
        
        #kikoo {
            background: transparent;
            position: absolute;
            top: -10px;
            left: -10px;
            width: 1px;
            height: 1px;
            z-index: 9999
        }
        
        .transition-wrapper {
            background: transparent;
            position: relative;
            z-index: 300;
            height: 0
        }
        
        .transition {
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 300;
            width: 100%;
            height: 100%;
            height: 100vh
        }
        
        .modal {
            display: block;
            width: 800px;
            max-width: 90%;
            height: 600px;
            max-height: 90%;
            position: fixed;
            z-index: 99999;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            background: white
        }
        
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            background: rgba(0, 0, 0, .6)
        }
        
        .modal-guts {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            padding: 60px;
            margin-bottom: 10px
        }
        
        .open-button:focus {
            outline: 0
        }
        
        .modal .close-button {
            position: absolute;
            z-index: 1;
            top: 10px;
            right: 20px;
            border: 0;
            background: transparent;
            color: white;
            padding: 5px 10px;
            font-size: 1.3rem;
            outline: 0
        }
        
        .modal .cross {
            width: 65px;
            cursor: pointer;
            outline: 0;
            border: solid transparent;
            border-width: 10px 20px 10px 20px;
            transition: all .5s
        }
        
        .modal .cross:hover {
            fill: #6bd6f1;
            transform: rotateY(180deg)
        }
        
        .closed {
            display: none
        }
        
        .modal-list li {
            font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
            font-size: 16px;
            font-style: normal;
            font-variant: normal;
            font-weight: 400;
            color: #0000b5;
            margin-bottom: 20px;
            text-align: left
        }
        
        .modal-link:hover,
        .modal-link:active {
            background: #0000b5;
            color: white
        }
        
        .modal * {
            color: #13042b
        }
        
        .modal h1 {
            font-family: 'dual300', Arial, sans-serif;
            font-style: normal;
            font-size: 24px;
            text-transform: uppercase;
            padding-bottom: 25px
        }
        
        .modal h2 {
            font-family: Georgia, Times, 'Times New Roman', serif;
            font-size: 18px;
            text-transform: none;
            font-style: italic;
            font-weight: bold;
            margin-top: 20px
        }
        
        .modal p {
            font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
            font-size: 16px;
            font-style: normal
        }
        
        .modal p a {
            color: #f24b4b;
            -webkit-transition: all .2s;
            transition: all .2s;
            text-decoration: none
        }
        
        .modal p a:hover,
        .modal p a:active {
            color: #6bd6f1
        }
        
        .mc4wp-form input[name^="_mc4wp_honey"] {
            display: none!important
        }
        
        .mc4wp-form-basic,
        .mc4wp-form-theme {
            margin: 1em 0
        }
        
        .mc4wp-form-basic,
        .mc4wp-form-basic input,
        .mc4wp-form-basic label,
        .mc4wp-form-theme,
        .mc4wp-form-theme input,
        .mc4wp-form-theme label {
            width: auto;
            display: block;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            cursor: auto;
            height: auto;
            vertical-align: baseline;
            line-height: normal
        }
        
        .mc4wp-form-basic:after,
        .mc4wp-form-theme:after {
            content: "";
            display: table;
            clear: both
        }
        
        .mc4wp-form-basic label,
        .mc4wp-form-theme label {
            font-weight: 700;
            margin-bottom: 6px;
            display: block
        }
        
        .mc4wp-form-basic input.placeholdersjs,
        .mc4wp-form-theme input.placeholdersjs {
            color: #aaa!important
        }
        
        .mc4wp-form-basic input[type=text],
        .mc4wp-form-basic input[type=email],
        .mc4wp-form-basic input[type=tel],
        .mc4wp-form-basic input[type=url],
        .mc4wp-form-basic input[type=date],
        .mc4wp-form-basic select,
        .mc4wp-form-basic textarea,
        .mc4wp-form-theme input[type=text],
        .mc4wp-form-theme input[type=email],
        .mc4wp-form-theme input[type=tel],
        .mc4wp-form-theme input[type=url],
        .mc4wp-form-theme input[type=date],
        .mc4wp-form-theme select,
        .mc4wp-form-theme textarea {
            min-height: 28px;
            width: 100%;
            max-width: 480px
        }
        
        .mc4wp-form-basic input[type=number],
        .mc4wp-form-theme input[type=number] {
            min-width: 40px
        }
        
        .mc4wp-form-basic input[type=checkbox],
        .mc4wp-form-basic input[type=radio],
        .mc4wp-form-theme input[type=checkbox],
        .mc4wp-form-theme input[type=radio] {
            position: relative;
            margin: 0 6px 0 0;
            padding: 0;
            height: 13px;
            width: 13px;
            display: inline-block;
            border: 0
        }
        
        .mc4wp-form-basic input[type=checkbox],
        .mc4wp-form-theme input[type=checkbox] {
            -webkit-appearance: checkbox;
            -moz-appearance: checkbox;
            appearance: checkbox
        }
        
        .mc4wp-form-basic input[type=radio],
        .mc4wp-form-theme input[type=radio] {
            -webkit-appearance: radio;
            -moz-appearance: radio;
            appearance: radio
        }
        
        .mc4wp-form-basic button,
        .mc4wp-form-basic input[type=submit],
        .mc4wp-form-basic input[type=button],
        .mc4wp-form-theme button,
        .mc4wp-form-theme input[type=submit],
        .mc4wp-form-theme input[type=button] {
            cursor: pointer;
            display: inline-block;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none
        }
        
        .mc4wp-form-basic label>span,
        .mc4wp-form-basic li>label,
        .mc4wp-form-theme label>span,
        .mc4wp-form-theme li>label {
            font-weight: 400
        }
        
        .mc4wp-form-basic .mc4wp-alert,
        .mc4wp-form-theme .mc4wp-alert {
            color: #c09853;
            clear: both
        }
        
        .mc4wp-form-basic .mc4wp-success,
        .mc4wp-form-theme .mc4wp-success {
            color: #468847
        }
        
        .mc4wp-form-basic .mc4wp-notice,
        .mc4wp-form-theme .mc4wp-notice {
            color: #3a87ad
        }
        
        .mc4wp-form-basic .mc4wp-error,
        .mc4wp-form-theme .mc4wp-error {
            color: #CD5C5C
        }
        
        .rtl .mc4wp-form-reset input[type=checkbox],
        .rtl .mc4wp-form-reset input[type=radio] {
            margin: 0 0 0 6px
        }
        
        .mc4wp-checkbox-wp-registration-form {
            clear: both;
            display: block;
            position: static;
            width: auto
        }
        
        .mc4wp-checkbox-wp-registration-form input {
            float: none;
            width: auto;
            position: static;
            margin: 0 6px 0 0;
            padding: 0;
            vertical-align: middle;
            display: inline-block !important;
            max-width: 21px;
            -webkit-appearance: checkbox
        }
        
        .mc4wp-checkbox-wp-registration-form label {
            float: none;
            display: block;
            cursor: pointer;
            width: auto;
            position: static
        }






/*======= Menu Style ======== */
/*======= Menu Style ======== */
/*======= Menu Style ======== */
/*======= Menu Style ======== */
/*======= Menu Style ======== */




/* MENU */

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu {
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
h1 {
  font-weight: 400;
  font-size: 3em;
  text-align: center;
}
.outer-menu {
  position: fixed;
  top: 10vh;
  left: 85%;
  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);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -ms-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);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-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;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  width: 200vw;
  height: 200vw;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
}
.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);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-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;
  /*backdround color was here */
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  backface-visibility: hidden;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
   -webkit-align-items: center;
  -webkit-justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
   -webkit-align-items: center;
  -webkit-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;
  transition: all 0.3s ease;
}
.outer-menu .hamburger > div:after {
  top: 10px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;

}
.outer-menu .menu > div {
  width: 0;
  height: 0;
  color: #fefefe;
  background: rgba(0, 0, 0, 1);
  border-radius: 50%;
  transition: all 0.3s ease;
  flex: none;
  -webkit-flex: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
   -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;

}
.outer-menu .menu > div > div {
  text-align: center;
  max-width: 100vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  flex: none;
  -webkit-flex: none;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  border: solid 25px #fff;
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 200vh;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
  font-weight: bold;
  font-family: Roboto!important;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  color: #7f7f7f;
}
.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;
  transition: width 0.3s ease;
}

.socialDiamond{
  width: 30px;
  height: 30px;
  border: solid 1px #fff;
    -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
   transform: rotate(45deg);
  display: block;
  float: left;
  margin:0 10px;
  transition: 0.5s;
}

.socialDiamond:hover{
  background-color: #fff;
   transition: 0.5s;
}

.actionButtonB{
  padding: 10px 40px;
  font-size: 16px;
  font-weight: bold;
  float: left;
  border: solid 1px #7f7f7f;
  transition: 0.5s;
  cursor: pointer;
  vertical-align: middle;
  color: #7f7f7f;
}

.actionButtonB:hover{
  border: solid 1px #fff;
  color: #000;
  transition: 0.5s;
  background-color: #fff;
}



/*FOOTER*/
#footerLogo {
    width: 50px;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 0
}

#footerLogoText {
    margin: 0 auto;
    display: block;
    width: 233px;
    color: #fff;
    height: 25px;
    padding-left: 10px
}

#footerLogoText img {
    width: 150px
}

#footerLogoText span {
    display: inline-block;
    padding-bottom: 10px;
    font-size: 15px;
    vertical-align: 3px
}

.footerSocialWrap {
    margin: 20px auto 0;
    display: block;
    width: 150px
}

.socialDiamondF,
.socialDiamondF img {
    width: 30px;
    height: 30px
}

.socialDiamondF {
    border: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    float: left;
    margin: 0 10px;
    transition: .5s
}

.socialDiamondF:hover {
    background-color: #fff;
    transition: .5s
}


.legalClass{
clear:both;
text-align: center;
display:block;
color: #fff!important;
margin: 0 auto;
padding-top:24px;
font-size:0.8em;
}

.legalClass a{
  font-weight: 300;
  color: #fff!important;
}

.legalClass a:hover{
color:#ff9b9e!important;
}







/*======= Tilter Style ======== */
/*======= Tilter Style ======== */
/*======= Tilter Style ======== */
/*======= Tilter Style ======== */
/*======= Tilter Style ======== */








.content {
  padding: 0;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contentA {
  padding: 0;
  height: 15vw;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}


.tilter {
  display: block;
  position: relative;
  width: 65vw;
  height: 600px;
  margin-bottom: 10vh;
  color: #fff;
  flex: none;
  perspective: 1000px;
}

.contentA .tilter{
  width: 15vw;
  min-width: 150px;
  height: 15vw;
  min-height: 150px;
  margin-bottom: 0;
  margin: 1%;
  background-color: #13072b;
}

.contentA .tilter:nth-child(1){
  margin-left: 0;
}

.tilter * {
  pointer-events: none;
}

.tilter:hover,
.tilter:focus {
  color: #fff;
  outline: none;
}

/*
.tilter__figure,
.tilter__deco,
.tilter__caption {
  will-change: transform;
}*/

.tilter__figure,
.tilter__image {
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tilter__figure > * {
  transform: translateZ(0px); /* Force correct stacking order */
}

.smooth .tilter__figure,
.smooth .tilter__deco--overlay,
.smooth .tilter__deco--lines,
.smooth .tilter__deco--shine div,
.smooth .tilter__caption {
  /*transition: transform 0.2s ease-out;*/
}

.tilter__figure {
  position: relative;
}

.tilter__figure::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  
}

.tilter__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(226, 60, 99, 0.4), rgba(145, 58, 252, 0.4), rgba(16, 11, 192, 0.4));
}

.tilter__deco--shine div {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
}

.tilter__deco--lines {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px;
}

.tilter__caption {
  position: absolute;
  bottom: 6vh;
  width: 100%;
}

.tilter__title {
  margin: 0 auto;
  font-weight: normal;
  font-size: 2.5em;
  font-family: 'Abril Fatface', serif;
  line-height: 1;
}


.tilter__description {
  margin: 1em 0 0 0;
  font-size: 0.85em;
  letter-spacing: 0.15em;
}



/* Tilter2 (thicker lines, overlay) */
.tilter--2,
.tilter--2:hover,
.tilter--2:focus {
  color: #2e27ad;
}

.tilter--2 .tilter__deco--overlay {
  background-image: linear-gradient(45deg, rgba(245, 239, 40, 0.6), rgba(164, 22, 169, 0.6));
}

.tilter--2 .tilter__deco--lines {
  stroke: rgba(255,255,255,0.5);
  stroke-width: 4px;
}


.contentA .tilter--2 .tilter__deco--lines {
  margin-top: 13%
}




























/*======= Custom Style ======== */
/*======= Custom Style ======== */
/*======= Custom Style ======== */
/*======= Custom Style ======== */
/*======= Custom Style ======== */



        .screen-inner{
        z-index:0;
    }

    canvas.particles-js-canvas-el{
        position: absolute !important;
        top: 0;
    }

    .indexFix{
        z-index: 1!important;
    }

    a.menu-link span.label{
        color:#fff!important;
        font-size: 0.8em;
        font-weight: 100;
        opacity: 0.8;
    }


    .customFullScreen{
        width: 100%;
        margin:0 auto;
        float:left;
        height:100vh;
        background-color: #000;
        position: relative;
    }

    .gradientOverlay{
        width: 100%;
        position: relative;
        top: 0;
        z-index: 10;
        float: left;
    }

    .gradientOverlayBottom{
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: 10;
        float: left;
    }

    .gradientOverlay img{
        width: 100%;display: block;
        margin: 0 auto;
        float: left;
    }

    .gradientOverlayBottom img{
        width: 100%;display: block;
        margin: 0 auto;
        float: left;
        transform: rotate(180deg);
    }

    .fullWidthVideoWrap{
        width: 100%;
        height: 100vh;
        float: left;
        margin: 0 auto;
        position: absolute;
        top: 0;
        z-index: 5;
    }

    .greatness{
    position: relative;
    height: 130vh;
}

  .greatness .sectionPadding{
    height: 130vh;
  }

    .videoWrap{
      width: 100%;
      height: 100vh;
      display: block;
      position: absolute;

    }

  .greatness  .videoWrap{
      width: 130vw;
      height: 130vh;
      display: block;
      position: absolute;

    }


  .greatness .videoSection{
    width: 100vw;
    height: 130vh;
    margin: 0 auto;
    display: block;
    min-height: 660px;
    float: left;
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

  .greatness .myVideoR{
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 130vw;
    height: 130vh;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-image: /* our video */;
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
    z-index:3;
}

    .greatnessLogo{
    width: 70vw;
    max-width: 1100px;
    display: block;
    margin: 0 auto;
    z-index: 200;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right:0;
}

.myVideoR{
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-image: /* our video */;
    background-position: center center;
    background-size: contain;
    object-fit: cover; /*cover video background */
    z-index:3;
}

.navLogo{
    height: 100px;
}


div.entry.item{
    padding-left: 15px;
}

.entry{
    margin-top: 25px;
}

h1#main-title{
    font-size:2em;
    letter-spacing: 0.06em;
    margin:0 auto;
}


.handcrafted{
    width: 70%;
    min-width: 550px;
}


.landingButtonsWrap{
    width: 350px;
    float: left;
    padding-top: 50px;
}



 #home .screen-inner{
    width: 950px;
 }

.bigLogoWrap{
     position: absolute;
    height: 650px;
    width: 760px;
    left: 0;
    right:0;
    max-width: 100%;
    z-index: -1;
    margin: 0 auto;
}

.landingButton{
    font-size: 0.8em;
    letter-spacing: 0.5em;
    text-align: center;
    color:#f26267;
    border: solid 1px #f26267;
    padding: 10px 20px;
    display: inline-block;
    text-transform: uppercase;
    margin:20px auto;
    margin-left: 60px;
    float: right;
    font-family: 'dual300', Arial, sans-serif;
    transition: 0.5s;
    cursor: pointer;
}

.landingButton:hover{
    color: #13042b;
    background-color: #f26267;
    transition: 0.5s;
}


section#quote p{
  text-align: center;
  font-size: 3em;
  letter-spacing: 0.07em;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  font-weight: bold;
  padding-top: 50px;
  padding-bottom: 50px;
  line-height: 1.1em;
  font-family: Roboto;
  font-style: normal;
  text-transform: none;

  
  background: rgba(255,253,160,1);
  background: -webkit-linear-gradient( left, #00ffff 0%, #97fba0 10%, #97b1fb 20%, #00ffff 30%, #00ffff 40%, #97fba0 50%, #97b1fb 60%, #00ffff 70%, #00ffff 80%, #97fba0 90%, #97b1fb 100%) repeat;
  background: -moz-linear-gradient( left, #00ffff 0%, #97fba0 10%, #97b1fb 20%, #00ffff 30%, #00ffff 40%, #97fba0 50%, #97b1fb 60%, #00ffff 70%, #00ffff 80%, #97fba0 90%, #97b1fb 100%) repeat;
  background: -o-linear-gradient( left, #00ffff 0%, #97fba0 10%, #97b1fb 20%, #00ffff 30%, #00ffff 40%, #97fba0 50%, #97b1fb 60%, #00ffff 70%, #00ffff 80%, #97fba0 90%, #97b1fb 100%) repeat;
  background: -ms-linear-gradient( left, #00ffff 0%, #97fba0 10%, #97b1fb 20%, #00ffff 30%, #00ffff 40%, #97fba0 50%, #97b1fb 60%, #00ffff 70%, #00ffff 80%, #97fba0 90%, #97b1fb 100%) repeat;
  -webkit-animation: masked-animation 10s ease infinite;
  -moz-animation: masked-animation 10s ease infinite;
  -o-animation: masked-animation 10s ease infinite;
  -ms-animation: masked-animation 10s ease infinite;
  background-size: 500% 500%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
  -moz-text-fill-color: transparent;
    -o-background-clip: text;
  -o-text-fill-color: transparent;
    -ms-background-clip: text;
  -ms-text-fill-color: transparent;
}


@-webkit-keyframes masked-animation {
    0%{background-position:0% 25%}
    25%{background-position:25% 50%}
    50%{background-position:50% 100%}
    100%{background-position:100% 0%}
}
@keyframes masked-animation { 
      0%{background-position:0% 25%}
    25%{background-position:25% 50%}
    50%{background-position:50% 100%}
    100%{background-position:100% 0%}
}

.cd-content h2{
    font-size: 2em;
    font-weight: 100;
}

.projectsHead{
    margin-top: 100px;
}

.projectHeadImg{
    width: 300px;
  }

.projectBox{
    width: 100%;
    height: 160px;
    border: solid 3px #f24b4b;
    margin-bottom: 30px;
}


.projectButton{
    display: block;
    margin: 0 auto;
    font-size: 1em;
    color: #f24b4b!important;
    text-transform: uppercase;
    letter-spacing: 0.2em!important;
    position: relative;
    text-align: center;
    margin-top: 400px;
}

.projectButton span{
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
    margin-left: -90px!important;
    color: #f24b4b!important;
}

.projectButton:hover{
  color:#fff;
}

.projectButton:hover > span{
  border-left: solid 1px #f24b4b;
  border-right: solid 1px #f24b4b;
}

.capabilitiesBG{
    width: 600px;
    position: absolute;
    top: 300px;
    left: 8vw;
}


.headerTextLogo{
  width: 220px;
  max-width: 90vw;
  display: block;
  position: absolute;
  top:10vh;
  left:10vh;
  z-index: 100;
}

.cd-content-2-wrap{
  width: 100%;
  position: relative;
}

.cd-content-2{
  height: 300px;
  width: 300px;
  border-radius: 150px;
  float: right;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -2;
}

#conseil .cd-content-2{
  background: url('../img/paper-plazma.gif');
   background-position: center;
}

#creation .cd-content-2{
  background: url('../img/responsive-websites.gif');
   background-position: center;
}

#ecran .cd-content-2{
  background: #fff;
  z-index: 1;
}

#ecran .cd-content-2:hover{
  background-image: url('../img/start-a-project-hover.gif');
   background-position: center;
}

#conseil #tagBlocksWrap{
  padding-top: 70px!important;
  text-align: left!important;
}


#creation #tagBlocksWrap{
  padding-top: 180px!important;
  text-align: left!important;
}

#ecran #tagBlocksWrap{
  padding-top: 120px!important;
  text-align: left!important;
}

#ecran .cd-content-2 img{
  width: 80%;
  margin: 0 auto;
  display: block;
  margin-top: 120px;
}

.reasonsLeft{
  width: 82vw;
  margin: 0 auto;
  margin-top: 550px;
  padding-bottom: 140px;
}

.reasonsBlock{
  width: 12vw;
  height: 12vw;
  display: block;
  float: left;
  background: #fab7b7;
  max-width: 200px;
  max-height: 200px;
  box-sizing: border-box;
  border: solid 5px #fff;
}

.reasonsBlockMargin{
  margin: 0 1vw;
}

.reasonsBlockMarginLeft{
  margin-left: 1vw;
}

.reasonsBlockMarginRight{
  margin-right: 1vw;
}

.reasonsNumber{
  display: block;
  width: 100%;
  font-size: 45px;
  color: #f24b4b;
  padding: 20px 0 10px 10px;
}

.reason{
  width: 100%;
  color: #000;
  padding: 10px;
  padding-top: 15px;
  font-size: 0.9em;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  font-style: normal;
  font-family: sans-serif;
  font-weight: 400;
}

.capabilitiesWrap{
  width: 400px;
  display: block;
  margin: 0 auto;
  margin-top: 140px;
}

.capabilitiesWrap:hover{
  border-left: solid 1px #fff;
  border-right: solid 1px #fff;
}

.capabilitiesWrap p{
  text-align: center;
  font-size: 4em;
  color: #000;
}

.capabilitiesWrap img{
  display: block;
  margin: 0 auto;
  width: 200px;
}

.projectBoxOne{
  background:url('../img/the-website-baba-work-featured-one.jpg');
  background-size: cover;
  background-position: center;
}

.projectBoxTwo{
  background:url('../img/The-website-baba-decode.jpg');
  background-size: cover;
  background-position: center;
}

.projectBoxInner{
  width: 100%;
  height: 100%;
  background: rgba(242, 75, 75, 0);
  color: #fff;
  font-size: 3em;
  text-align: center;
  padding-top: 10%;
  transition:0.5s;
  opacity: 0;
}


.projectBoxInner:hover{
  background: rgba(242, 75, 75, 0.9);
  transition:0.5s;
  opacity: 1;
  padding-top: 16%;
}

  
.glitch:hover{
  animation: noise-3 1s linear infinite;
}

@keyframes noise-3 {
  0%,3%,5%,40%,44%,100% {opacity: 1; transform: scaleY(1);}
  4.3% {opacity: 1; transform: scaleY(5.5);}
  43% {opacity: 1; transform: scaleX(50); transform: scaleY(.01); rotate(90deg);}
}




#particles-js{
  background-image: url(../img/a.gif)!important;
  height: 100vw;
  opacity: 0.5;
  transform: rotate(90deg);
}

.sapButtonHover ul li{
  font-size: 1em!important;
}


.schemaWrap{
  color: #000;
  z-index: -20000;
  position: absolute;
  background-color: #000;
}


.cd-content-2-sap-mobile span{
  margin-top: 40%;
    display: block;
    text-align: center;
    font-size: 2.5em;
    font-family: 'Satisfy';
    color: #F24B4B;
  }



/* The Modal (background) */
/* The Modal (background) */
/* The Modal (background) */

.modalMenu {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 20vh; /* Location of the box */
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    width: 100vw; /* Full width */
    height: 100vh; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}


/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    min-width: 750px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modalMain{
  background-color: #f26267;
  height: 50vh;
  min-height: 500px;
  width: 65%;
  float: left;
}

.ModalInputWrap{
  width: 340px;
  margin: 0 auto;
}

.ModalInputWrap input{
  width: 300px;
  margin: 10px 20px;
  float: left;
  padding: 0.25em;
  font-size: 1.5em;
  color:#333333;
  font-family: sans-serif;
    font-weight: 100;
    background: transparent;
    border: solid 1px #fff;
}


.modalMain textarea{
  width: 300px;
  margin: 10px auto;
  font-size: 1.5em;
  color:#333333;
  padding: 0.25em;
  font-family: sans-serif;
  font-weight: 100;
  background: transparent;
    border: solid 1px #fff;
}


.modalSubmit{
  clear: both;
  display: block;
  margin: 0 auto;
  font-size: 0.9em;
  color: #fff;
  background-color: transparent;
  border: solid 2px #fff;
  padding: 5px 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
  font-family: 'Roboto';
  transition: 0.5s;
}

.modalSubmit:hover{
  background-color: #fff;
  color: #f24b4b;
  transition: 0.5s;
}

.modal-left{
 width: 35%;
 float: left;
 height: 50vh;
 min-height: 500px;
 background-color: rgba(255,255,255,0.7);
 padding: 20px;
}

.close{
  color: #000;
  padding: 5px;
}

.modalQuestion{
  font-size: 2em!important;
  font-color:#fff;
  font-family: Georgia, "Nimbus Roman No9 L", serif!important;
  text-align: left;
  line-height: 1.2em;
  font-style: italic!important;
}

.modelHi{
  font-family: 'Anton', sans-serif!important;
  font-size: 4.5em!important;
  color: #fff;
  text-align: left;
  line-height: 1.4em!important;
}

.modelHi span{
  color: #000;
}

.ModalInputWrap p{
  font-size: 1em;
  font-family: Georgia, "Nimbus Roman No9 L", serif!important;
  color: #fff;
  text-align: center;
  margin: 20px auto;
  font-style: italic!important;
  margin-bottom: 10px;
}

.mobileModalReplacement{
  display: none!important;
}


.g-recaptcha div{
  margin: 0 auto!important;
}

.menuLogoHome{
  margin-top: 5vh;
}






/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/
/*---------------Mobile Style ---------------*/




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

  .heroTilterMobile{
    height: 50vh;
  }

  .heroTilterMobile .tilter__deco{
    height: 50vh!important;

  }

  .heroTilterMobile .tilter__caption{
    bottom: 15vh;
  }

  .headerTextLogo{
    top:5vh;
    left: 5vh;
    width: 180px;
  }

  .outer-menu .checkbox-toggle {
    width: 60px!important;
     left: -5vh;
    top: -8vh;
  }

  .outer-menu .hamburger{
    width: 60px!important;
    left: -5vh;
    top: -8vh;
  }

  #particles-js{
   height: 100vh;
  transform: rotate(0deg);
  }

  .menuLogoText{
    display: none;
  }

  .menuLogo{
    padding: 50px 0 5vh 0;
  }

  .outer-menu .menu > div > div{
    border: none;
  }

  .tagBlocks{
    width: 95vw;
    margin: 0 auto;
  }

  .tagBlocks span{
    font-size: 18px;
  }

  .oneStopSvg{
    bottom: 10vh;
  }

  .videoP{
    font-size: 1.5em;
  }

  .awardsBlockWrap{
    width: 100%;
    min-width: 100vw;
    padding-bottom: 40vh;
  }

  .awardsNumber{
    font-size: 3.5em;
  }

  #home .screen-inner{
    width: 100vw;
  }

  #quote{
    max-width: 100vw;
  }

  section#quote p{
    max-width: 100vw;
    font-size: 1em;
    padding: 10px;
    line-height: 1.5em;
  }

  .screen-inner{
    min-width: 100vw;
    max-width: 100vw;
    width: 100vw;
  }

  .cd-content{
    padding: 10px;
  }

  .cd-content h2 img{
    width: 200px;
  }

  #ecran .cd-content h2 img{
    width: 150px;
  }

  .projectHeadImg{
    width: 200px;
    margin-bottom: 50px;
    padding-left: 10px;
  }

  #marianne-schricke{
    padding: 10px;
    margin-bottom: 50px;
  }

  #guillaume-thibord{
    padding: 10px;
  }

  .projectButton span{
    margin-left:0px!important;
  }

  .projectButton{
    padding-bottom: 50px;
  }

  .capabilitiesWrap{
    width: 100vw;
    margin-top: 0px;
  }

  .capabilitiesBG{
    width: 95vw;
    left: 0;
    top:80px;
    right: 0;
    margin: 0 auto;
  }

  .reasonsLeft{
    margin-top: 200px;
    margin-bottom: 0px;
    width: 100vw;
  }

  .reasonsBlock{
    float: none;
    margin:20px auto;
    min-width: 170px;
    min-height: 170px;
  }

  .reasonsBlockMarginRight{
    margin: 0 auto!important;
  }

  .capabilitiesWrap p{
    font-size: 3em;
  }

  .whyWeDo h1{
    font-size: 2em;
    line-height: 1.4em;
  }

  .cd-content-2-sap-mobile{
    width: 180px;
    height: 180px;
    border-radius: 90px;
    margin-top: 50px;
  }

  .cd-content-2-sap-mobile img{
    margin-top: 75px!important;
  }

    .cd-content-2-sap-mobile span{
    margin-top: 25%!important;
    font-size: 2em;
  }


  #ecran .cd-content{
    padding-bottom: 80px;
  }

  .myVideoR{
    display: none;
  }

  .balloon{
    background-attachment: scroll;
  }

  .footerWhyWeMake .whyWeMake{
    height: 150vh;
    min-height: 700px;
  }

  .menuSapButton{
    padding-top: 30px!important;
  }

  .menuSapButton a{
    display: block!important;
    padding-top:10px;
    font-size: 1.5em!important;
  }

   .menuSapButton a:nth-child(1){
    padding-bottom: 20px;
   }

  .queryMenuButton{
     margin: 0 auto;
    padding-top: 15px!important;
    border-top:solid 1px #f26267;
    width: 60vw;
    font-size: 1.6em!important;
  }

  .menuSapButton button{
    font-size: 1.6em!important;
  }

  .mobileModalReplacement{
    display: block;
    margin: 0 auto;
    padding-top: 20px!important;
    border-top:solid 1px #f26267;
    width: 60vw;
  }

  .modal-left{
    display: none;
  }

  .modalMain{
    width: 100%;
    min-height: 530px;
  }

  .modal-content{
    min-width: 90%;
  }

  .modalMenu{
    padding-top: 15vh;
  }

  .scrollArrowWrap{
    bottom: 70px;
  }

  #ecran #tagBlocksWrap{
    margin-bottom: 50px;
  }

  
} /*---------------Mobile Style Close---------------*/



@media screen and (max-width:750px) and (orientation : landscape) { 

    .heroTilterMobile .tilter__caption{
      bottom: 0vh;
    }

    .scrollArrowWrap{
      bottom: 10px;
    }

    #quote{
      padding-top:100px;
    }

    #conseil, #creation, #ecran{
      padding-bottom: 20px;
      padding-top: 20px;
    }

    .whyWeMake{
      z-index: 5;
      height: 180vh;
    }

    .projectBox{
      width: 60%;
      margin: 0 auto;
    }

    #duo h6{
      width: 60%;
      margin: 0 auto;
    }

    .reasonsLeft{
      margin-top: 250px;
    }

    .menuLogo{
      display: none;
    }

    .menuSapButton{
      display: none!important;
    }

    .outer-menu .menu > div > div > div > ul{
      padding-top: 18vh;
    }

}










/*---------------iPad Style ---------------*/
/*---------------iPad Style ---------------*/
/*---------------iPad Style ---------------*/
/*---------------iPad Style ---------------*/
/*---------------iPad Style ---------------*/
/*---------------iPad Style ---------------*/


@media screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) and (orientation : portrait)  {




  .heroTilterMobile{
    height: 50vh;
  }

  .heroTilterMobile .tilter__deco{
    height: 50vh!important;

  }

  .heroTilterMobile .tilter__caption{
    bottom: 15vh;
  }

  .headerTextLogo{
    top: 4.5vh;
    left: 5vh;
    width: 180px;
  }

  .outer-menu .checkbox-toggle {
     left: -5vh;
    top: -6vh;
  }

  .outer-menu .hamburger{
    left: -5vh;
    top: -6vh;
  }

  #particles-js{
   height: 100vh;
  transform: rotate(0deg);
  }


  .menuLogo{
    padding: 50px 0 10vh 0;
  }

  .outer-menu .menu > div > div{
    border: none;
  }

  .videoP{
    font-size: 3.5em;
  }

  #home .screen-inner{
    width: 100vw;
  }

  #quote{
    max-width: 100vw;
  }

  section#quote p{
    max-width: 100vw;
    font-size: 2.5em;
    padding: 10px;
    line-height: 1.5em;
  }

  .expertise-inner{
    padding-left: 0px;
  }

  #expertises .columns, #creation .columns, #ecran  .columns{
    margin: 0 auto;
  }

  .reasonsLeft{
    margin-top: 300px;
  }

  .capabilitiesBG{
    top: 100px;
  }

  .reasonsBlock{
    margin-top:20px;
    width: 17vh;
  }

  .reasonsBlockMargin:nth-child(4){
    margin-left: 0;
  }

  .capabilitiesWrap{
    padding-top: 150px;
  }

  .whyWeDo h1{
    font-size: 4em;
  }

  .balloon{
    background-attachment: scroll;
  }

  .modal-content{
    width: 90%!important;
  }

  .modalMenu input{
    border-radius: 0px;
  }

}/*---------------iPad Portrait Style Close ---------------*/





@media screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) and (orientation : landscape) { 


   .heroTilterMobile .tilter__deco{
    height: 70vh!important;
    padding-top: 10vh;
  }

   .heroTilterMobile .tilter__caption{
    bottom: 15vh;
  }

   #home .screen-inner{
    width: 100vw;
  }

  .expertise-inner{
    padding-left: 0px;
  }

  #expertises .columns, #creation .columns, #ecran  .columns{
    margin: 0 auto;
  }

  .projectButton span{
    margin-left: 0px!important;
  }

  .reasonsLeft{
    margin-top: 300px;
  }

  .capabilitiesBG{
    top: 100px;
  }

  .reasonsBlock{
    margin-top:20px;
    width: 22vh!important;
    min-width: 175px;
  }

  .reasonsBlockMargin:nth-child(5){
    margin-left: 0;
  }

  .capabilitiesWrap{
    clear: both;
    padding-top: 100px;
  }

  .whyWeDo h1{
    font-size: 5em;
  }

  .balloon{
    background-attachment: scroll;
  }

  .modal-content{
    width: 90%!important;
  }

  .modalMenu input{
    border-radius: 0px;
  }


  }/*---------------iPad landscape Style Close ---------------*/








/*-------------Small Laptops Styles-------------*/
/*-------------Small Laptops Styles-------------*/
/*-------------Small Laptops Styles-------------*/
/*-------------Small Laptops Styles-------------*/
/*-------------Small Laptops Styles-------------*/



@media screen 
and (min-device-width : 1025px) 
and (max-device-width : 1250px) {

  .menuSapButton{
    padding-top: 5vh!important;
  }

  .modalMenu{
    padding-top: 10vh!important;
  }

  .heroTilterMobile .tilter__figure{
    width: 80%!important;
    height: 80%!important;
    margin: 0 auto!important;
    left:0!important;
    right: 0!important;
    top:10vh!important;
  }

  .heroTilterMobile .tilter__caption{
    padding-bottom: 50px!important;
  }

  .scrollArrowWrap{
    bottom: 20px!important;
  }

  .awardsNumber{
    font-size: 4em;
  }

  .projectButton span{
    margin: 0 auto!important;
  }

   .reasonsLeft{
    margin-top: 300px;
  }

  .capabilitiesBG{
    top: 100px;
  }

  .reasonsBlock{
    margin-top:20px;
    width: 22vh!important;
    min-width: 175px;
  }

  .reasonsBlockMargin:nth-child(5){
    margin-left: 0;
  }

  .capabilitiesWrap{
    clear: both;
    padding-top: 100px;
  }

}


