@import url('https://fonts.googleapis.com/css?family=Varela+Round');

@font-face {
    font-family: 'Varela Round', sans-serif;
    font-weight: 400;
}

* {
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

img {
    max-width: 100%;
}

html,
body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background: url('../images/bg.png') repeat;
    text-align: center;
    font-family: 'Varela Round', sans-serif;
    position: relative;
    padding-bottom: 30px;
    background-position: top center;
}

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a,
input[type='submit'] {
    -webkit-touch-callout:none;
    -webkit-text-size-adjust:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-user-select:none;
}
input {
    -webkit-appearance: none;
    line-height: 1 !important;
}

.hide {
    display: none;
}

/***** Start - global *****/
.wrapper {
    width: 100%;
    height: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
}

.container {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
}
.clear:after {
    clear: both;
    content: "";
    display: block
}
.clear {
    clear: both;
    *zoom: 1
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, .3, .3);
        -moz-transform: scale3d(0.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, .3, .3);
        -moz-transform: scale3d(0.3, .3, .3);
        transform: scale3d(0.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    -moz-animation-name: zoomIn;
    animation-name: zoomIn;
}

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

.animated-s {
    -moz-animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -moz-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s
}


