/******************************************************************************************************************************
MAIN STYLE
*******************************************************************************************************************************/

body {
    background-color: #f2f2f2;
    font-size: 18px;
    font-weight: 200;
    color: #555;
    font-family: 'Raleway', cursive;
    -webkit-overflow-scrolling: touch;
}

a {
    color: #FFF;
    text-decoration: none;
    border-bottom: 1px #dbdbdb dotted;
}

a:hover {
    color: #dbdbdb;
    text-decoration: none;
    border: none;
}


/* Titles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lobster', cursive;
    font-weight: 300;
    color: #333;
}

h4 {
    color: white;
    font-weight: 400;
}

h1,
h2,
h3 {
    font-family: 'Lobster', cursive;
    margin-top: 30px;
    font-weight: 100;
    margin-bottom: 30px;
}

h1 {
    font-size: 60px;
    color: white;
}

h2 {
    color: #ffffff;
}

a:hover,
a:focus {
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.inpt {
    width: 60%;
    padding: 12px 20px 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    color: #C55157;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    background: white;
    -webkit-border-radius: 7;
    -moz-border-radius: 7;
    border-radius: 7px;
    border-style: none;
}

.btn {
    padding: 12px 20px 12px 20px;
    color: white;
    font-family: 'Lobster', cursive;
    font-weight: bold;
    font-size: 30px;
    background: #C55157;
    background-image: -webkit-linear-gradient(top, #C55157, #AE474C);
    background-image: -moz-linear-gradient(top, #C55157, #AE474C);
    background-image: -ms-linear-gradient(top, #C55157, #AE474C);
    background-image: -o-linear-gradient(top, #C55157, #AE474C);
    background-image: linear-gradient(to bottom, #C55157, #AE474C);
    -webkit-border-radius: 7;
    -moz-border-radius: 7;
    border-radius: 7px;
    text-decoration: none;
}

.btn:hover {
    background: #3cb0fd;
    background-image: -webkit-linear-gradient(top, #CB656A, #AC5C60);
    background-image: -moz-linear-gradient(top, #CB656A, #AC5C60);
    background-image: -ms-linear-gradient(top, #CB656A, #AC5C60);
    background-image: -o-linear-gradient(top, #CB656A, #AC5C60);
    background-image: linear-gradient(to bottom, #CB656A, #AC5C60);
    text-decoration: none;
    color: white;
}

#message {
    font-size: 30px;
    font-weight: 200;
}


/******************************************************************************************************************************
CONTACT FORM
*******************************************************************************************************************************/

#contact-form {
    max-width: 90%;
    margin: 0 auto;
}

label {
    font-weight: 400;
    cursor: pointer;
}

.inptMail,
.txtAreaMail {
    border: none;
    outline: none;
    border-radius: 0;
    text-align: center;
    background: none;
    font-weight: 700;
    font-family: 'Lato', georgia;
    font-size: 25px;
    color: rgba(255, 255, 255, 1);
    max-width: 90%;
    padding: 1rem;
    border: 2px dashed rgba(255, 255, 255, 0);
    box-sizing: border-box;
    cursor: text;
}

.txtAreaMail {
    text-align: left;
    /* overflow:hidden; */
    resize: none;
    width: 90%;
    border-color: rgba(255, 255, 255, 0)
}

.txtAreaMail:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 1);
}

.txtAreaMail:focus:required:valid {
    border: 2px solid rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.txtAreaMail:required:valid {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.inptMail {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}

.inptMail:required,
textarea:required {
    border-bottom: 2px dashed rgba(255, 255, 255, 0.5);
}

.inptMail:focus {
    border-bottom: 2px dashed rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.2);
}

.inptMail:required:valid {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.inptMail:required:invalid {
    color: rgba(255, 255, 255, 0.5);
}

::-webkit-input-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400;
}

:-moz-placeholder {
    /* Firefox 18- */
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400;
}

::-moz-placeholder {
    /* Firefox 19+ */
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400;
}

:-ms-input-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-weight: 400;
}

.expanding {
    vertical-align: top;
}

.send-icn {
    fill: rgba(255, 255, 255, 1)
}

.send-icn:hover {
    fill: rgba(0, 0, 0, 1);
    cursor: pointer;
}

button {
    background: none;
    border: none;
    outline: none;
    margin: 2vmax;
}

button:hover small {
    opacity: 1;
}

small {
    display: block;
    opacity: 0;
}

.website {
    opacity: 1;
    font-size: 16px;
    color: white;
    position: relative;
    text-align: center;
    display: block;
    margin-top: 7%;
}

.website a {
    color: white;
}


/******************************************************************************************************************************
HEADER
*******************************************************************************************************************************/

#header .container {
    color: #FFF;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.timer_box {
    margin-bottom: 35px;
    display: inline-block;
    text-align: center;
    width: 130px;
    border-bottom: 4px solid rgba(255, 255, 255, .6);
}

.timer_box h1 {
    font-size: 48px;
    margin-top: 5px;
    margin-bottom: 0px;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white;
}

.timer_box p {
    margin-top: 0px;
}

#layer {
    background-color: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
}

#slider {
    width: 100%;
    position: fixed;
    background-color: #2c3e50;
    top: 0;
    left: 0;
    z-index: 0;
    padding: 0;
}

.mt {
    margin-top: 30px;
}

.centered {
    text-align: center;
}


/******************************************************************************************************************************
RESPONSIVE
*******************************************************************************************************************************/

@media only screen and (max-width: 520px) {
    .timer_box {
        margin: 0 12px 12px 0;
    }
    .tp-bullets {
        display: none;
    }
    #header .container {
        padding: 20px 0px 20px 0
    }
    #header-button {
        display: none;
    }
    #appendedInputButtons {
        border-radius: 20px;
        margin-bottom: 25px;
    }
    #slider {
        display: none;
    }
    .btn-subscribe {
        border-radius: 20px;
    }
    #contact-informations {
        margin-top: 24px;
    }
    body {
        background-color: #2c3e50;
    }
}

@media only screen and (max-width: 740px) {
    .timer_box {
        width: 100px;
        padding: 16px 0 0 0;
        margin: 35px 0px;
    }
    .timer_box h1 {
        font-size: 28px;
    }
}


/******************************************************************************************************************************
ANIMATIONS
*******************************************************************************************************************************/

.animated {
    opacity: 0;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.GoIn {
    opacity: 1;
    -webkit-animation-name: GoIn;
    -moz-animation-name: GoIn;
    -o-animation-name: GoIn;
    animation-name: GoIn;
}

.animated.FadeIn {
    opacity: 1;
    -webkit-animation-delay: 1.0s;
    -moz-animation-delay: 1.0s;
    -ms-animation-delay: 1.0s;
    -o-animation-delay: 1.0s;
    animation-delay: 1.0s;
    -webkit-animation-duration: .8s;
    -moz-animation-duration: .8s;
    -ms-animation-duration: .8s;
    -o-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-name: FadeIn;
    -moz-animation-name: FadeIn;
    -o-animation-name: FadeIn;
    animation-name: FadeIn;
}

.animated.FadeInSlowly {
    opacity: 1;
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -ms-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-duration: .8s;
    -moz-animation-duration: .8s;
    -ms-animation-duration: .8s;
    -o-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-name: FadeIn;
    -moz-animation-name: FadeIn;
    -o-animation-name: FadeIn;
    animation-name: FadeIn;
}

@-webkit-keyframes GoIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes GoIn {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }
    80% {
        -moz-transform: translateY(-10px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes GoIn {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }
    80% {
        -o-transform: translateY(-10px);
    }
    100% {
        -o-transform: translateY(0);
    }
}

@keyframes GoIn {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes FadeIn {
    0% {
        opacity: 0
    }
    30% {
        opacity: .3;
    }
    60% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes FadeIn {
    0% {
        opacity: 0
    }
    30% {
        opacity: .3;
    }
    60% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes FadeIn {
    0% {
        opacity: 0
    }
    30% {
        opacity: .3;
    }
    60% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0
    }
    30% {
        opacity: .3;
    }
    60% {
        opacity: .6;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes InfiniteTurn {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
    ;
}

@-moz-keyframes InfiniteTurn {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
    }
    ;
}

@-o-keyframes InfiniteTurn {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(360deg);
    }
    ;
}

@-keyframes InfiniteTurn {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    ;
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(30px);
    }
    80% {
        -moz-transform: translateX(-10px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateX(30px);
    }
    80% {
        -o-transform: translateX(-10px);
    }
    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}

.animated.bounceInLeft {
    opacity: 1;
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(-30px);
    }
    80% {
        -moz-transform: translateX(10px);
    }
    100% {
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateX(-30px);
    }
    80% {
        -o-transform: translateX(10px);
    }
    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.animated.bounceInRight {
    opacity: 1;
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInTop {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(-30px);
    }
    80% {
        -moz-transform: translateY(10px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInTop {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(-30px);
    }
    80% {
        -o-transform: translateY(10px);
    }
    100% {
        -o-transform: translateY(0);
    }
}

@-ms-keyframes bounceInTop {
    0% {
        opacity: 0;
        -ms-transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -ms-transform: translateY(-30px);
    }
    80% {
        -ms-transform: translateY(10px);
    }
    100% {
        -ms-transform: translateY(0);
    }
}

@keyframes bounceInTop {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(-30px);
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.animated.bounceInTop {
    opacity: 1;
    -webkit-animation-name: bounceInTop;
    -moz-animation-name: bounceInTop;
    -o-animation-name: bounceInTop;
    animation-name: bounceInTop;
}

@-webkit-keyframes bounceInBottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInBottom {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }
    80% {
        -moz-transform: translateY(-10px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInBottom {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }
    80% {
        -o-transform: translateY(-10px);
    }
    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInBottom {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.animated.bounceInBottom {
    opacity: 1;
    -webkit-animation-name: bounceInBottom;
    -moz-animation-name: bounceInBottom;
    -o-animation-name: bounceInBottom;
    animation-name: bounceInBottom;
}


/******************************************************************************************************************************
PLUGINS
*******************************************************************************************************************************/


/* Preloader */

#preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* change if the mask should have another color then white */
    z-index: 99999;
    /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    /* centers the loading animation horizontally one the screen */
    top: 50%;
    /* centers the loading animation vertically one the screen */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
    /* is width and height divided by two */
}
