@charset "UTF-8";

/* Fonts */
/* @import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Open+Sans:300,400,800&display=swap'); */
/*
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap');
*/
/* CSS Document */

/**********************| STANDARD RULES |*************************/

body {
    color: #5b5e6d;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0px;
    padding: 0px;
    background-size: cover;
    font-weight: 400;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-smooth: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: #bb9339;
    font-weight: 400 !important;
    text-decoration: none;
	/*-moz-transition: all 0.3s ease-in;
  	-o-transition: all 0.3s ease-in;
  	-webkit-transition: all 0.3s ease-in;
  	transition: all 0.3s ease-in;*/
}
a:hover {
    color: #e2c882;
    font-weight: 400 !important;
    text-decoration: none;
}
a:visited { color: inherit; }

p {
	margin: 0;
    padding: 0;
}

button:focus {outline:0;}
input:focus {outline:0;}
select:focus {outline:0;}

form {
    padding: 0;
    margin: 0;
	/* overflow: hidden; */
}

img {
    pointer-events: none; /* protect images from mouse events*/
}

.securityPage { 
	color: #fff;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../files/gfx/MainBG1.jpg);
    background-attachment: fixed;
}

#LogForm { 
    overflow: hidden; 
}

.Header {
  /* transition: all 1s ease, width 1s ease, height 0.2s ease; */
  position: fixed;
  top: 300px;
  left: 50px;
  color: #38494f;
  font-weight: 500;
  z-index: 999;
}
.fixedHeader {
  overflow: hidden;
  background-color: white;
  border-bottom: solid 1px #333;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 1;
  display: none;
}
.CoHeader {
  /* transition: all 1s ease, width 1s ease, height 0.1s ease; */
  position: fixed;
  top: 50px;
  left: 50px;
  color: #38494f;
  font-weight: 500;
  z-index: 999;
}
.MainSubtitle {
    color: #333;
    font-weight: 500;
    display: block;
    font-size: 14px;
    /* text-shadow: 1px 1px #8f8f8fa1; */
    animation: fadeIn linear 2s;
    -webkit-animation: fadeIn ease-in 2s;
    -moz-animation: fadeIn ease-in 2s;
    -o-animation: fadeIn ease-in 2s;
    -ms-animation: fadeIn ease-in 2s;
}
@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  @-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  @-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  @-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
  @-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }
#Content {
    /* max-width: 1050px; */
    min-height: 100vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0px;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
    /* overflow: hidden; */
    white-space: normal;
    position: relative; 
    align-items: center;
    display: flex;
}

#Main { 
    min-height: calc(100vh - 335px); 
    font-size: 13px; 
    overflow: hidden; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#Footer {
    color: #333;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0px;
    padding-right: 0px;
    border: none;
    border-top-color: transparent;
    border-top-style: solid;
    border-top-width: 1px;
    overflow: hidden;
    position: fixed;
    bottom: 55px;
    line-height: 21px;
    left: 0px;
    width: 259px;
    font-size: 14px;
    font-weight: 200;
    background-color: #ffffff8f;
    z-index: 1;
}

.link{
  position: relative;
}

.link:after{
  position: absolute;
  width: 0; 
  height: 2px;
  display: block;
  margin-top: 0px;
  border-radius: 1px;
  right: 0;
  background: #333;
  transition: width .2s ease;
  -webkit-transition: width .2s ease;
}

.Logo {
    color: #4F4F4F;
    float: left;
    clear: none;
    white-space: normal;
    overflow: hidden;
    height: 135px;
    background-repeat: no-repeat;
    background-size: contain;
    min-width: 155px;
    font-size: 23px;
    font-weight: 500;
    transition: width 1s ease, height 1s ease;
    line-height: 125px;
    padding-left: 10px;
    text-align: left;
}
.MainLogo {
    background-image: url(../../files/gfx/TrickeyLogo.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 130px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.MainTitle {
    transition: 0.5s linear;
    font: 400 32px Raleway, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #333;
    background: linear-gradient(#333 0 100%) left/0 no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
}
.MainTitle:hover {
    background-size: 100%;
}
.MainLogoFixed {
  background-image: url(../../files/gfx/TrickeyLogo.png);
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: left center;
  height: 70px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  width: 60px;
  float: right;
}
.TitleFixed {
  display: block;
  overflow: hidden;
  float: right;
  width: 200px;
  padding-top: 10px;
  position: absolute;
  left: calc(50% - 100px);
}
.MainTitleFixed {
  transition: 0.5s linear;
  font: 400 32px Raleway, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #333;
  background: linear-gradient(#333 0 100%) left/0 no-repeat;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  cursor: pointer;
  display: block;
}
.MainSubtitleFixed {
  color: #333;
  font-weight: 500;
  display: block;
  font-size: 14px;
  /* text-shadow: 1px 1px #8f8f8fa1; */
  animation: fadeIn linear 2s;
  -webkit-animation: fadeIn ease-in 2s;
  -moz-animation: fadeIn ease-in 2s;
  -o-animation: fadeIn ease-in 2s;
  -ms-animation: fadeIn ease-in 2s;
}

@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

.menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.menu li {
    padding-bottom: 10px;
}
.menuMain {
    position: relative;
    display: block;
    padding: 4px 0;
    font: 700 22px Raleway, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #333;
    background: linear-gradient(#333 0 100%) left/0 no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: 0.5s linear;
    cursor: pointer;
}
.menuMain:hover {
    background-size: 100%;
}
.menuSub {
    display: none;
    position: relative;
    padding: 0 0 0 20px;
    font: 400 18px Raleway, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #38494f;
    background: linear-gradient(#38494f 0 100%) left/0 no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: pointer;
}
.menuSub:hover {
    transition: 0.5s linear;
    background-size: 100%;
}
.genTitler {
  display: none;
  position: relative;
  padding: 0 0 0 20px;
  font: 400 18px Raleway, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #38494f;
  background: linear-gradient(#38494f 0 100%) left/0 no-repeat;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  cursor: pointer;
}
.open {
    transition: 0.5s linear;
    background-size: 100%;
}
.introTitle {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #333;
    /* text-shadow: 1px 1px #2e4b4e; */
}
.introText {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #333;
    margin-top: 30px;
    border-left: 4px solid #333;
    padding-left: 10px;
    border-radius: 2px;
}
.introTitleSmallWithBG {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #333;
    text-shadow: 1px 1px #2e4b4e;
    background-color: rgb(243 242 242 / 90%);
    margin-left: 20px;
    margin-right: 30px;
    padding: 10px;
    border-radius: 4px;
}
.filtering {
    display: none;
}
.introTitleSmall {
    /*
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #333;
    margin-bottom: 15px;
    margin-top: 15px;
    */
    /* text-shadow: 1px 1px #2e4b4e; */
    position: relative;
    padding: 0 0 0px 0;
    font: 400 24px Raleway, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #ff9822;
    background: linear-gradient(#38494f 0 100%) left/0 no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    cursor: crosshair;
    /* cursor: pointer; */
    /* float: left; */
    display: block;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
}
.introTextSmall {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #333;
    margin-top: 40px;
    border-radius: 2px;
    text-align: justify;
}
.introButton {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
    display: block;
    color: #fff;
    margin-top: 50px;
    margin-right: 20px;
    background-color: #333;
    padding: 10px;
    border-radius: 4px;
    width: 200px;
    float: right;
    text-align: center;
    cursor: pointer;
    transition: 0.5s linear;
    border: 1px solid #333;
}
.introButton:hover {
    color: #333;
    background-color: #fff;
}
.person {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 210px;
    overflow: hidden;
    float: left;
  }
  .container {
    border-radius: 50%;
    height: 275px;
    -webkit-tap-highlight-color: transparent;
    transform: scale(0.48);
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 400px;
  }
  .container:after {
    background-color: transparent;
    /* content: ""; */
    height: 10px;
    /* position: absolute; */
    /* top: 390px; */
    width: 100%;
  }
  .container:hover {
    transform: scale(0.54);
  }
  .container-inner {
    clip-path: path(
      "M 390,400 C 390,504.9341 304.9341,590 200,590 95.065898,590 10,504.9341 10,400 V 10 H 200 390 Z"
    );
    position: relative;
    transform-origin: 50%;
    top: -200px;
  }
  .circle {
    background-color: #fee7d3;
    border-radius: 50%;
    cursor: pointer;
    height: 380px;
    left: 10px;
    pointer-events: none;
    position: absolute;
    top: 210px;
    width: 380px;
  }
  .img {
    pointer-events: none;
    position: relative;
    transform: translateY(20px) scale(1.15);
    transform-origin: 50% bottom;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
    background-repeat: no-repeat;
    background-position: center;
  }
  .container:hover .img {
    transform: translateY(0) scale(1.2);
  }
  .img1 {
    left: 22px;
    top: 180px;
    width: 340px;
    content: url(../../files/gfx/cv/Vasilis_Serketzis.png);
  }
  .img2 {
    left: -46px;
    top: 174px;
    width: 444px;
    content: url(../../files/gfx/cv/Nikolaos_Siokos.png);
  }
  .img3 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Elena_Zalemi.png);
  }
  .img4 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Nektarios_Baziotis.png);
  }
  .img5 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Giorgos_Sarantos.png);
  }
  .img6 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Katerina_Chlioumi.png);
  }
  .img7 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Panagiotis_Tsapournis.png);
  }
  .img8 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Funda_Yurdaalp.png);
  }
  .img9 {
    left: -27px;
    top: 173px;
    width: 394px;
    content: url(../../files/gfx/cv/Tina_Reisi.png);
  }
  .divider {
    background-color: #333;
    height: 60px;
    width: 100%;
  }
  .name {
    color: #344850;
    font-size: 26px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
  }
  .surname {
    color: #344850d9;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
  }
  .title {
    color: #6e6e6e;
    font-family: arial;
    font-size: 14px;
    font-style: italic;
    margin-top: 4px;
  }
  .cv {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #333;
    padding-left: 15px;
    padding-right: 25px;
    padding-bottom: 30px;
    border-radius: 10px;
  }
  .cvs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
  .cvTitle {
    width: calc(100% - 250px);
    float: right;
    display: block;
    padding-top: 30px;
    text-align: justify;
    color: #344850;
    font-size: 22px;
    font-weight: 600;
  }
  .cvText {
    width: calc(100% - 250px);
    float: right;
    display: flex;
    min-height: 200px;
    padding-top: 20px;
    text-align: justify;
    font-size: 16px;
  }
  .mainDivider {
    background-color: #333;
    width: 40%;
    height: 2px;
    display: block;
    margin-top: 50px;
    margin-bottom: 60px;
    clear: both;
    overflow: hidden;
  }
  .FrontContent_Front3 {
    background-color: transparent !important;
}
.clients {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
}
.client {
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 1px;
    padding: 20px;
    text-align: left;
    /* background-color: rgb(243 242 242 / 90%); */
    border-radius: 10px;
    width: calc(33% - 82px);
    float: left;
    min-height: 340px;
    border: solid 1px #333;
}
.client_logo {
    width: 100%;
    height: 150px;
    display: block;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    overflow: hidden;
}
.clientLogo {
  height: calc(100% - 10px);
  width: 100%;
  object-fit: contain;
}
.client_logo picture {
  width: 100%;
}
.client_title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-radius: 2px;
    margin-bottom: 5px;
    text-align: left;
    font-size: 16px;
  }
  .client_type {
    color: #596668;
    display: block;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 1px;
    background-color: #ffffff7a;
  }
  .client_client {
      color: #596668;
      display: block;
      font-weight: 500;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 0px;
      padding-top: 5px;
      padding-bottom: 5px;
      border-radius: 1px;
      background-color: #a7a7a736;
    }
  .client_date {
    color: #9c654b;
    display: block;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-top: 0px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .client_technologies {
    background-color: #a7a7a736;
    color: #596668;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 4px;
    margin-bottom: 5px;
  }
  .projects {
    margin-bottom: 20px;
  }
  .project {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 20px;
    text-align: left;
    /* background-color: rgb(243 242 242 / 90%); */
    border-radius: 10px;
    width: calc(100% - 42px);
    float: left;
    height: 200px;
    margin-bottom: 20px;
    border: 1px solid #333;
  }
  .project_logo_container {
    height: 200px;
    overflow: hidden;
    display: inline-block;
    float: left;
    /* box-shadow: 0px 1px 3px 1px #959595; */
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #333;
    width: 199px;
    position: relative;
  }
  .project_logo {
      max-height: 200px;
      display: block;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      margin-bottom: 30px;
      border-radius: 4px;
      float: left;
      object-fit: cover;
      object-position: top;
      overflow: hidden;
  /* transition duration is less than the one on hover */
  /* so img returns faster to its original position */
      transition: transform 3s ease-in-out;
      width: 100%;
      height: 100vh;
      overflow: hidden;
  }
span.project_logo:hover {
  transform: translateY(calc(-100% + 200px));
  transition: transform 1s ease-in-out;
}
.project_title {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-radius: 2px;
  margin-bottom: 5px;
  text-align: left;
  font-size: 16px;
  width: calc(100% - 250px);
  float: right;
}
.project_type {
  color: #596668;
  display: block;
  font-weight: 500;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 1px;
  background-color: #ffffff7a;
  width: calc(100% - 250px);
  float: right;
}
.project_client {
    color: #596668;
    display: block;
    font-weight: 500;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 1px;
    background-color: #a7a7a736;
    width: calc(100% - 250px);
    float: right;
  }
.project_date {
  color: #9c654b;
  display: block;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0px;
  padding-top: 0px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: calc(100% - 250px);
  float: right;
}
.project_technologies {
  background-color: #a7a7a736;
  color: #596668;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 4px;
  margin-bottom: 5px;
  width: calc(100% - 250px);
  float: right;
}
.project_url {
    color: #9c654b;
    display: block;
    font-weight: 600;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-top: 0px;
    border-radius: 4px;
    margin-bottom: 10px;
    width: calc(100% - 250px);
    float: right;
    font-size: 18px;
}
.project_url a {
    font-weight: 600 !important;
    color: #9c654b;
}
.contactTable input {
    width: calc(100% - 50px) !important;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 15px;
    border-radius: 4px;
}
.contactTable textarea {
    width: calc(100% - 50px) !important;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 15px;
    border-radius: 4px;
}
.contactTable input[type="submit"] {
    width: calc(100% - 22px) !important;
    padding-left: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
    padding-right: 15px;
    border-radius: 4px;
    background-color: #38484f;
    color: #fff;
    margin-top: 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
}
.contactTable div {
    font-size: 16px;
    font-weight: 600;
}
  
/**********************|/STANDARD RULES |*************************/

/**********************| PROJECT RULES |**************************/
.Front {
  height: 100vh;
  width: 100vw;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 240px 100vh;
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 0;
  transition: all 0.75s cubic-bezier(0.75, 0.25, 0, 1.05);
  position: relative;
}
.FrontContent {
  border-radius: 2px;
  width: calc(100vw - 260px);
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  overflow: auto;
  overflow: scroll;
  border-left: 1px solid #333;
}
/*
.FrontContent_Front0 {
background-image: url(../../files/gfx/front/basic_Intro_BG21.png);
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
.Front0 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../files/gfx/front/basic_Intro_ICON1.png), url(../../files/gfx/front/basic_Intro_BG21.png);
  background-position: left bottom, left;
  background-repeat: no-repeat, no-repeat;
  background-size: 200px auto, 240px 100%;
}
.FrontContent_Front1 {
    background-image: url(../../files/gfx/front/what_we_do_BG1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.Front1 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../files/gfx/front/what_we_do_ICON1.png), url(../../files/gfx/front/what_we_do_BG1.png);
  background-position: left calc(100% - 200px), left;
  background-repeat: no-repeat, no-repeat;
  background-size: 200px auto, 240px 100%;
}
.FrontContent_Front2 {
  background-image: url(../../files/gfx/front/who_is_who_BG1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.Front2 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../files/gfx/front/who_is_who_ICON1.png), url(../../files/gfx/front/who_is_who_BG1.png);
  background-position: left calc(100% - 200px), left;
  background-repeat: no-repeat, no-repeat;
  background-size: 200px auto, 240px 100%;
}
.FrontContent_Front3 {
  background-image: url(../../files/gfx/front/portfolio_BG1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.Front3 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../files/gfx/front/portfolio_ICON1.png), url(../../files/gfx/front/portfolio_BG1.png);
  background-position: left calc(100% - 200px), left;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 330px, 240px 100%;
}
.FrontContent_Front4 {
  background-image: url(../../files/gfx/front/contact_BG1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.Front4 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../../files/gfx/front/contact_ICON1.png), url(../../files/gfx/front/contact_BG1.png);
  background-position: 25px calc(100% - 200px), left;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 243px, 240px 100%;
}
*/
.circle1 {
    background-image: url(../../files/gfx/cv/cv_bg1.jpeg);
}
.circle2 {
    background-image: url(../../files/gfx/cv/cv_bg2.jpeg);
}
@supports (background-image: -webkit-image-set(url(../../files/gfx/cv/cv_bg2.webp) 1x)) {
  .circle2 {background-image: -webkit-image-set(url(../../files/gfx/cv/cv_bg2.webp) 1x) }
}
.circle3 {
    background-image: url(../../files/gfx/cv/cv_bg3.jpeg);
}
.contact {width: 100%;display: inline-block;float: left;}
.contact_rest {
  width: 100%;
  display: inline-block;
  float: right;
  height: auto;
  overflow: hidden;
}
.Contact_line {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  border: solid 1px #333;
  border-radius: 10px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 200;
}
.Contact_label {
  width: 160px;
  display: inline-block;
  float: left;
  line-height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  text-align: right;
  border-right: 1px solid #333;
}
.Contact_input input {
    width: calc(100% - 200px);
    line-height: 30px;
    border: none;
}
.Contact_label_textarea {
  width: 160px;
  display: inline-block;
  float: left;
  line-height: 180px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  text-align: right;
  border-right: 1px solid #333;
}
.Contact_input textarea {
  width: calc(100% - 200px);
  line-height: 30px;
  border: none;
  height: 180px;
  overflow: scroll;
}
.contactButton {
  background-color: #333;
  color: #fff;
  border: none;
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 20px;
  margin: 0px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
.map {
  border: solid 1px #333;
  padding: 10px;
  overflow: hidden;
  height: 280px;
  display: block;
  border-radius: 10px;
  margin-top: 60px;
  width: calc(100% - 235px);
  float: left;
}
.general_info {
  margin-top: 10px;
  display: block;
  border: solid 1px #333;
  border-radius: 10px;
  padding: 10px;
  margin-left: 20px;
  margin-top: 60px;
  min-height: 280px;
  width: 171px;
  float: right;
  text-align: center;
  display: table;
  line-height: 30px;
}
.general_info span {
  /* display: inline-block; */
  /* vertical-align: middle; */
  /* line-height: normal; */
  display: table-cell;
  vertical-align: middle;
}

/*
Mobile menu button
*/
.spinnerMaster {
  position: absolute;
  top: 15px;
  left: 15px;
  height: calc(5px * 10 );
  width: calc(5px * 10 );
  display: none;
}
.spinnerMaster * {
  transition: all 0.3s;
  box-sizing: border-box;
}
.spinnerMaster input[type=checkbox] {
  display: none;
}
.spinnerMaster label {
  cursor: pointer;
  position: absolute;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 10px;
  left: 0;
}
.spinnerMaster .spinner1,
.spinnerMaster .spinner2,
.spinnerMaster .spinner3,
.spinnerMaster .spinner4 {
  position: absolute;
  height: 5px;
  width: 100%;
  background-color: #333;
}
.spinnerMaster .diagonal.part-1 {
  position: relative;
  float: left;
}
.spinnerMaster .diagonal.part-2 {
  position: relative;
  float: left;
  margin-top: calc(5px * 1.3 );
}
.spinnerMaster .horizontal {
  position: relative;
  float: left;
  margin-top: calc(5px * 1.3 );
}
.menuFix {
  margin-top: 10px;
}
.spinnerMaster input[type=checkbox]:checked ~ .spinner-spin1 > .horizontal, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin2 > .horizontal, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin3 > .horizontal, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin4 > .horizontal {
  opacity: 0;
}
.spinnerMaster input[type=checkbox]:checked ~ .spinner-spin1 > .diagonal.part-2, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin2 > .diagonal.part-2, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin3 > .diagonal.part-2, .spinnerMaster input[type=checkbox]:checked ~ .spinner-spin4 > .diagonal.part-2 {
  margin-top: calc(-1 * ( 5px + (5px * 2.2 ) ));
}
/*Style four*/
.spinnerMaster input[type=checkbox]:checked ~ .spinner-spin4 > .horizontal {
  transform: translate(-100px, 0px);
}
.spinnerMaster input[type=checkbox]:checked ~ .spinner-spin4 > .diagonal.part-1 {
  transform: rotate(-135deg);
}
.spinnerMaster input[type=checkbox]:checked ~ .spinner-spin4 > .diagonal.part-2 {
  transform: rotate(135deg);
}

.project_logo {
}
.project_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 1s ease-in-out;
}
.project_logo:hover img {
  object-position: bottom center;
}

.FrontContent_Front0 {
  background-image: url("../../files/gfx/front/webp/bg_0.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: initial;
}
.FrontContent_Front1 {
  background-image: url("../../files/gfx/front/webp/bg_1.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: initial;
}
.FrontContent_Front2 {
  background-image: url("../../files/gfx/front/webp/bg_2.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: initial;
}
.FrontContent_Front3 {
  background-image: url("../../files/gfx/front/webp/bg_3.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: initial;
}
.FrontContent_Front4 {
  background-image: url("../../files/gfx/front/webp/bg_4.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: initial; 
}
.InnerContainer {
  padding-top: 65px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: hidden;
  background-color: #fff;
  min-height: 100vh;
}
.OuterContainer {
  background-repeat: no-repeat;
  height: 380px;
  width: 100%;
  display: block;
  background-position-y: top;
  background-position-x: center;
  background-size: 100% auto;
  background-image: url(../../files/gfx/front/wave1.png);
}
.custom-shape-divider-top-1681755171 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1681755171 svg {
  position: relative;
  display: block;
  width: calc(154% + 1.3px);
  height: 500px;
}

.custom-shape-divider-top-1681755171 .shape-fill {
  fill: #FFFFFF;
}
.WelcomeContent_Develop {
  color: #ff9822;
  margin-top: 10px;
  display: block;
}

/**********************|/PROJECT RULES |**************************/

/**********************| WELCOME CONTENT RULES |******************/
.WelcomeContentContainer {
}
.WelcomeContent {
  line-height: 54px;
  color: #333333;
  display: block;
  float: left;
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
}
.WelcomeContent_WeBuild {
  display: block;
  float: left;
  line-height: 52px;
}
.WelcomeContent__container {
  font-weight: 200;
  overflow: hidden;
  height: 60px;
  padding-left: 30px;
  padding-right: 40px;
  padding-bottom: 0;
  padding-top: 0;
}
.WelcomeContent_Products {
  line-height: 52px;
  display: block;
  float: left;
}
.WelcomeContent__container:before {
  content: "[";
  left: 0;
}
.WelcomeContent__container:after {
  content: "]";
  position: absolute;
  right: 0;
}
.WelcomeContent__container:after, .WelcomeContent__container:before {
  position: absolute;
  top: 0;
  color: #ff9720;
  font-size: 62px;
  line-height: 54px;
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
.WelcomeContent__container__text {
  display: inline;
  float: left;
  margin: 0;
}
.WelcomeContent__container__list {
  margin-top: 0;
  padding-left: 10px;
  display: flow-root;
  text-align: left;
  list-style: none;
  -webkit-animation-name: change;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}
.WelcomeContent__container__list__item {
  line-height: 54px;
  margin: 0;
  text-align: center;
}

@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 29.32% {
    transform: translate3d(0, -25%, 0);
  }
  33.32%, 45.98% {
    transform: translate3d(0, -50%, 0);
  }
  49.98%, 62.64% {
    transform: translate3d(0, -75%, 0);
  }
  66.64%, 79.3% {
    transform: translate3d(0, -50%, 0);
  }
  83.3%, 95.96% {
    transform: translate3d(0, -25%, 0);
  }
}
@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes change {
  0%, 12.66%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 29.32% {
    transform: translate3d(0, -20%, 0);
  }
  33.32%, 45.98% {
    transform: translate3d(0, -40%, 0);
  }
  49.98%, 62.64% { 
    transform: translate3d(0, -60%, 0);
  }
  66.64%, 79.3% {
    transform: translate3d(0, -80%, 0);
  }
  83.3%, 95.96% {
    transform: translate3d(0, -0%, 0);
  }
}

/*
// 6 is the number of animation.
// Here, there are 4 lines :

// 1 to 2
// 2 to 3
// 3 to 4
// 4 to 3
// 3 to 2
// 2 to 1

// 6x + 6y = 100 (100% duration)

// HERE : 
// y = 4 -> Animation between two lines
// x = 12.66 -> Time spent on a line

// You can define a value and calculate the other if you want change speed or the number of lines
*/
/**********************|/WELCOME CONTENT RULES |******************/

/**********************| TABLES RULES |***************************/
@media only screen and (max-width: 1300px) {
  .client {
    width: calc(50% - 52px);
  }
}

@media only screen and (max-width: 900px) {
  .client {
    width: calc(100% - 62px);
  }
  .project {
    width: calc(100% - 62px);
    height: auto;
    min-height: 200px;
  }
  
  .WelcomeContent_WeBuild {
    float: unset;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    float: unset;
    margin-bottom: 30px;
  }
  .WelcomeContent_Products {
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: unset;
    text-align: center;
    margin-bottom: 30px;
  }
  .WelcomeContent {
    float: unset;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .introTitle {
    text-align: center;
  }
  .headline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 667px) {
  .spinnerMaster {
    /* display: block; */
  }
  .menu {
    /* display: none; */
  }
}

@media only screen and (max-width: 768px) {
  #Content {
    min-height: unset;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
    margin-top: 71px;
    overflow: scroll;
    display:flex;
  }
  #Main {
    min-height: calc(100vh - 335px);
    height: -webkit-fill-available;
    width: 100vw;
    top: 71px;
  }
  .Front {
    height: 100vh;
    width: 100%;
    min-width: unset;
    min-height: 100vh;
  }
  .FrontContent {
    width: 100%;
    padding-bottom: 0px;
    border: none;
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
    background-size: auto 100%;
  }
  .client {
    margin-left: 0;
    margin-right: 0px;
    width: calc(100% - 45px);
  }
  .CoHeader {
    left: 20px;
  }
  .menu {
    display: none;
    position: fixed;
    left: 0px;
    top: 71px;
    width: 220px;
    background-color: black;
    color: #fff;
    height: calc(100% - 111px);
    padding-top: 40px;
    text-align: left;
  }
  .spinnerMaster {
    display: block;
  }
  #Footer {
    width: 200px;
    color: #fff;
    z-index: 999;
    text-align: center;
    border-top: solid #fff 1px;
    padding-top: 15px;
    left: 10px;
    background-color: unset;
    display: none;
  }
  .CoHeader {
    display: none;
  }
  .fixedHeader {
    display: block;
  }
  .menuMain {
    -webkit-text-stroke: 1px #fff;
    background: linear-gradient(transparent 0 100%) left/0 no-repeat;
    padding-left: 20px;
  }
  .menuSub {
    -webkit-text-stroke: 1px #fff;
    background: linear-gradient(transparent 0 100%) left/0 no-repeat;
    padding-left: 35px;
  }
  .cvTitle {width: 100%;}
  .cvText {
    width: 100%;
  }
  .project {
    margin-left: 0px;
    margin-right: 0px;
    width: calc(100% - 45px);
    height: auto;
  }
  .project_logo_container {
    border: none;
    width: 100%;
    border-bottom: 30px solid #fff;
  }
  .project_url {
    width: calc(100% - 30px);
    border-top: solid 1px #333;
    padding-top: 15px;
    border-radius: 0px;
  }

  .project_title {
      width: calc(100% - 30px);
  }

  .project_date {
      width: calc(100% - 30px);
  }

  .project_client {
      width: calc(100% - 30px);
  }

  .project_type {
      width: calc(100% - 30px);
  }

  .project_technologies {
      width: calc(100% - 30px);
  }
  .WelcomeContent {
    margin-left: auto;
    margin-right: auto;
    float: unset;
    display: inline-block;
    margin-top: 15px;
  }
  .WelcomeContent_WeBuild {
    display: block;
    float: unset;
    text-align: center;
  }
  .introTitle {
    text-align: center;
    font-size: 2.8rem;
  }
  .anim {
    display: none;
  }
  .InnerContainer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 490px) {
  .introTitle {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 1500px) {
  .OuterContainer {
    height: 480px;
}
}
@media only screen and (min-width: 2000px) {
  .OuterContainer {
    height: 680px;
}
}
/**********************|/TABLES RULES |***************************/

/**********************| RUNNING LINES RULES |********************/
.anim, .anim svg {
  position: fixed;
  width: 259px;
  height: 160px;
  bottom: 0;
  left: 0;
}
.anim path {
  stroke-width: 2;
}
/**********************|/RUNNING LINES RULES |********************/

/**********************| AUTOTYPE TEXT RULES |********************/
.headline {
  position: relative;
  display: table !important;
  min-height: 80px;
  clear: both;
}
.text-js{
  opacity: 0;
}
.cursor{
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  right: -5px;
  width: 2px;
  /* Change colour of Cursor Here */
  background-color: #ff9822;
  z-index: 1;
  animation: flash 0.5s none infinite alternate;
}
@keyframes flash{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
/**********************|/AUTOTYPE TEXT RULES |********************/