/*
== LOGO RGB COLORS ==
Blue (34,42,53)
White (255,255,255)
*/

@font-face{
    font-family: "Quicksand";
    src: url(../font/Quicksand-Regular.otf);
}

@font-face{
    font-family: "Cantarell ";
    src: url(../font/Cantarell-Regular.ttf);
}

.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute;}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: white;
  color: black;
  font-family: 'Cantarell ';
  text-align: center;
  vertical-align: middle;
}

h1,h2,h3,label, .hero h1{
    font-family: "Centaur";
} /* DEFINITIONS */

html, body{
    font-family: "Centaur ";
    padding:0;
    margin:0;
    height: 100%;
    width: 100%;
}

p{
    font-family: "Centaur";
    font-size: 1.2em;
}

.hero {
	position: relative;
	background: url("../img/bg.jpg") no-repeat center center fixed;
	height: auto;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	text-align: center;
	padding-top: 110px;
	min-height: 60%;
	letter-spacing: 2px;
	font-family: "Cantarell", sans-serif;
  }

  .hero h1 {
	font-size: 1.8em;
	line-height: 1.3;
  }

  .hero h1, span{
    color: whitesmoke;
  }

  .hero h1 span {
	font-size: 1.7em;
	color: whitesmoke;
	border-bottom: 2px solid whitesmoke;
	padding-bottom: 12px;
	line-height: 3;
  }

  .mouse {
	display: block;
	margin: 0 auto;
	width: 26px;
	height: 46px;
	border-radius: 13px;
	border: 2px solid #e8f380;
	position: absolute;
	bottom: 40px;
	position: absolute;
	left: 50%;
	margin-left: -26px;
  }

  .mouse span {
	display: block;
	margin: 6px auto;
	width: 2px;
	height: 2px;
	border-radius: 4px;
	background: #e8f380;
	border: 1px solid transparent;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: scroll;
	animation-name: scroll;
    }

    /*NAV*/
nav{
    height: 6rem;
    width: 100vw;
    background-color: rgb(34,42,53);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 10;
  }
  
  
  .logo{
    padding:1vh 1vw;
    text-align: center;
  }
  .logo img {
    height: 5rem;
    width: 5rem;
  }
  
  
  .nav-links{
    display: flex;
    list-style: none; 
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
  }
  .nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw;
  }
  .nav-links li a:hover {
    color: #61DAFB;
  }
  .nav-links li {
    position: relative;
  }
  .nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #61DAFB;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
  }
  .nav-links li a:hover::before{
    width: 80%;
  }

  .hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .hamburger{
    display: none;
  }
  
  
  @media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }
  }

  .toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
  }
  .toggle .line2{
    transition: all 0.7s ease;
    width:0;
  }
  .toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
  }
  /*END NAV*/
  
  * {
    box-sizing: border-box;
  }

  /*CONTENT*/
  a{
      color: white;
  }

  /* == OLD WEBSITE PART */
  .old{
      position: relative;
      height: fit-content;
      width: 100%;
      height: 50vh;
      text-align: center;
      background: rgb(34,42,53);
  }
  .old img{
      height: 50vh;
      width: 30%
  }
  /*END OLD*/

  .f1{
      height: 10%;
      width: 30%;
  }

  .images{
    width: 60%;
    height: 20%;
  }

  #d1 p{
    text-align: justify;
  }

  #d1 h2, #d2 h2, #d3 h2{
    text-align: center;
  }

  .text-content{
      text-align: center;
  }

  .flex1, .flex2{
    display: flex;
    flex-direction: row;
  }

  .flex1 {
      display: flex;
      flex-direction: row-reverse !important;
  }

  .flex2 img{
    padding-top: 1.5%;
  }

  .flex3{
      display: flex;
      flex-direction: row-reverse;
  }
  

  input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px; 
    border: 1.5px solid #ccc;
    border-radius: 10px 10px 10px 10px; 
    box-sizing: border-box; 
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input:focus{
    border: 1px solid blueviolet;
  }

  #footer p{
    font-family: "Centaur";
  }
  
  input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px 10px 10px 10px ;
    cursor: pointer;
    transition: color 2s;
    -webkit-transition: color 2s;
    -moz-transition: color 2s;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
    transition: 2s;
    transition-property: all;
  }
  
  #contact {
    border-radius: 5px;
    background-color: rgb(34,42,53);
    color: white;
    margin-top: 4%;
  }

  #fix{
    margin-top:0;
  }

  #d1, #d2, #d3{
      margin-top: 3%;
      display: inline-block;
      flex-direction: column;
      justify-content: space-evenly !important;
      /*border: 1px solid gray;*/
      text-align: justify;
      overflow: unset;
  }

  #d3{
  }

  #d3 img {
    padding-top: 0.5%;
  }

  #footer{
    padding-top: 2%;
    padding-bottom: 2%;
      text-align: center;
      border: 2px dotted black;
      border-radius: 20px 20px 20px 20px;
  }

  #footer ul li{
    list-style: none;
      list-style-position: inside;
  }

  #footer ul li a{
      color: currentColor;
  }

  #d2{
      background: rgb(34,42,53);
      color: white;
      height: fit-content;
      padding-bottom: 2%;
  }

  #d2 span{
      color: white;
  }

  #d2 p {
    padding-top: 1%;
    padding-left: 0.7%;
  }

  #p1{
    height: auto !important;
    width: 40% !important;
  }

  span{
      color: black;
      font-weight: bold;
  }

  h2{
      font-family: "Centaur";
      text-transform: uppercase;
      font-size: 1.6em;
  }

  
  #txflex, #txflex1{
    text-align: justify;
}


#d1, #d2, #d3, #contact{
  position: relative;
  padding-left: 20%;
  padding-right: 20%;
}

#d1 img, #d2 img, #d3 img{
  height:35vh !important;
  width: 40% !important;
}

#contact{
  padding-top: 1.8em;
}

.flex1, #txflex3{
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
}

.flex2 ,#txflex1{
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
}


.flex3, #txflex2{
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
}

#txflex3, #txflex2,#txflex1{
  padding-left: 3%;
  padding-right: 3%;
  margin-top: 0 !important;
}

p{
  margin-top: 0;
}

#txflex2, #txflex3{
  padding-left: 0;
}

#txflex1{
  padding-right: 0;
}

#d1 h2{
  padding-bottom: 2%;
}

#d2 h2, #contact h2{
  padding-bottom: 2%;
  padding-top: 2%;
}


  /*END CONTENT*/