/*------------------------------------------------------------------

[Table of contents]

 1. Fonts
 2. Basic setup 
 3. Reusable components
 4. Typography
 5. Center section
 6. Contact section
 7. Footer section


-------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------
   1. Fonts
-----------------------------------------------------------------------------*/

@font-face {
    font-family: 'alcubierre';
    src: url('fonts/alcubierre-webfont.woff2') format('woff2'),
         url('fonts/alcubierre-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'diodrum';
    src: url('fonts/diodrum_semibold-webfont.woff2') format('woff2'),
         url('fonts/diodrum_semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}



/*-----------------------------------------------------------------------------
   2. Basic setup
-----------------------------------------------------------------------------*/

html {
    font-family: 'alcubierre', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    line-height: 1.4;
}

body {
    overflow: hidden;
}

.overflow-y {
    overflow-y: auto !important;
}

/*-----------------------------------------------------------------------------
   3. Reusable components
-----------------------------------------------------------------------------*/

.half-screen {
    height: 100vh;
    width: 50wh;
    position: relative;
}

#center-section .row {
    margin-bottom: 0
}

/*-----------------------------------------------------------------------------
   5. Center section
-----------------------------------------------------------------------------*/

#center-section {
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Left half */
.box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    height: 60%;
}

.bottomline {
    content: " ";
    border-bottom: 2px solid #000;
    display: block;
    width: 40px;
}

.headline {
    padding: 20px 0;
}

.headline h4 {
    font-size: 150%;
    font-weight: 300;
    margin: 0;
}

/* Typewriter */
.content {
    position: relative;
    width: 90%;
}

.element {
    font-family: 'diodrum', sans-serif;;
    font-size: 500%;
    font-weight: 900;
    color: #222;
    letter-spacing: 5px;
}

/* Cursor */
.typed-cursor {
    font-size: 600%;
    font-weight: 900;
    font-family: 'Noto', sans-serif;
    color: #222;
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    display: inline;
}

.copyright {
    position: relative;
    display: block;
}

.social {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.icon--circle {
    fill: #fff;
}

.icon--text {
    fill: #007AB9;
}

/* Right half */
.bg-container {
    overflow: hidden;
}

.bg-img {
    height: 100vh;
    background-image: url(img/bg.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.bg-img-contact {
    height: 100vh;
    background-image: url(img/bg-7.jpg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.contact--box {
    position: absolute;
    right: 2%;
    top: 2%;
    color: #fff;
    text-align: center;
    width: 150px !important;
	height: 40px !important;
    cursor: pointer;
    vertical-align: middle;
    display: inline-block;
}

.contact--text {
    position: relative;
    height: 40px;
    line-height: 50px;
    vertical-align: middle;
    min-width: 150px;
    border-bottom: 1px solid #fff;
}

.contact--button {
    position: relative;
    visibility: hidden;
    background: url(img/mail-light.png) no-repeat;
    background-position: center;
    height: 40px;
    border: 1px solid #fff;
    margin-top: -2px;
}

.contact--button--responsive {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    background: url(img/mail-dark.png) no-repeat;
    background-position: center;
    height: 24px;
    width: 24px;
    margin: 15px;
}


/*-----------------------------------------------------------------------------
   6. contact section
-----------------------------------------------------------------------------*/

#contact-section {
    height: 100%;
    width: 100%;
    position: absolute;
}

.contact--container {
    position: absolute;
    top: 30%;
    left: 75%;
    transform: translate(-50%,-30%);
    width: 50%;
    height: 60%;
}

.contact-footer {
    position: absolute;
    bottom: 0;
    left: 75%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
}

.back--to--home {
    left: 2%;
}

#contact-section .contact--button {
    background: url(img/left-arrow-light.png) no-repeat;
    background-position: center;
}

#contact-section h3 {
    margin-top: 10%;
    text-align: center;
}

.contact--back--button--responsive {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: url(img/left-arrow-dark.png) no-repeat;
    background-position: center;
    height: 24px;
    width: 24px;
    margin: 15px;
}

/* Contact form */
form {
  position: relative;
  width: 90% !important;
  margin: 50px auto;
}

input {
  width: 90%;
  height: 50px;
  padding: 0px 15px;
  background: transparent;
  outline: none;
  color: #222;
  border-bottom: solid 1px #b3aca7;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  background: transparent;
  outline: none;
  color: #222;
  border-bottom: solid 1px #b3aca7;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

#submit {
  width: 100%;
  padding: 0;
  margin: 0;
  color: #b3aca7;
  outline:none;
  cursor: pointer;
  border: solid 1px #b3aca7;
}

#submit:hover {
  color: #222;
}

@media only screen and (max-width:480px){
    #center-section {position: relative; height: 200vh;}
    .box {top: 30%; transform: translate(-50%,-30%);}
    .logo img{width: 75vw;}
    .content {top: 20%;}
    .element {font-size: 200%;}
    .typed-cursor {font-size: 220%;}
    .contact--box {display: none;}
    #contact-section {position: relative; height: 200vh;}
    .contact--container {width: 100%; left: 50%;}
    .formcontainer {position: absolute; top: 0%;}
    .contact-footer {left: 50%;}
    #contact-section h3 {margin: 0;}
    .contact--button--responsive {display: block;}
    .contact--back--button--responsive {display: block;}
    .align-middle {height: 100vh; position: relative;}
    input[type=text] {height: 1.5rem;}
    input[type=email] {height: 1.5rem;}
    input[type=submit] {height: 2rem;}
    h3 {font-size: 200%}
    form {margin-bottom: 0;}
}

@media only screen and (max-width:768px){
    
}

@media only screen and (max-width:1140px){}