@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300);
@import url(https://fonts.googleapis.com/css?family=Jura);

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

.body_slides{
    list-style:none;
    margin:0;
    padding:0;
    z-index:-2;
    background:#000;}
.body_slides,
.body_slides:after{
    position: fixed;
    width:100%;
    height:100%;
    top:0px;
    left:0px;}
.body_slides:after {
    content: '';
    background: transparent url(../img/pattern.png) repeat top left;}

@-webkit-keyframes anim_slides {
0% {opacity:0;}
6% {opacity:1;}
24% {opacity:1;}
30% {opacity:0;}
100% {opacity:0;}
}
@-moz-keyframes anim_slides {
0% {opacity:0;}
6% {opacity:1;}
24% {opacity:1;}
30% {opacity:0;}
100% {opacity:0;}
}
.body_slides li{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-size:cover;
    background-repeat:none;
    opacity:0;
    -webkit-animation: anim_slides 18s linear infinite 0s;
    -moz-animation: anim_slides 18s linear infinite 0s;
    -o-animation: anim_slides 18s linear infinite 0s;
    -ms-animation: anim_slides 18s linear infinite 0s;
    animation: anim_slides 18s linear infinite 0s;
}

.body_slides li:nth-child(1){
background-image: url(../img/1.jpg);
}
.body_slides li:nth-child(2){
-webkit-animation-delay: 6.0s;
-moz-animation-delay: 6.0s;
background-image: url(../img/2.jpg);
}
.body_slides li:nth-child(3){
-webkit-animation-delay: 12.0s;
-moz-animation-delay: 12.0s;
background-image: url(../img/3.jpg);
}

.wrapper {
    width: 100%;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
}

.header {
    width: 100%;
    display: block;
    padding-bottom: 15px;
}

.header h1 {
    width: 50%;
    display: inline-block;
    font-weight: 700;
    padding: 10px;
    text-align: left;
    font-size: 50px;
    letter-spacing: -4px;
    color: rgb(210,79,54);
}

.header h2 {
    width: 50%;
    display: inline-block;
    font-weight: 300;
    padding: 10px;
    text-align: right;
    font-size: 50px;
    letter-spacing: -2px;
    color: rgb(255,255,255);
}

.header h3 {
    width: 90%;
    display: block;
	margin: 0 auto;
    font-weight: 300;
    padding: 20px;
    text-align: center;
    font-size: 35px;
	font-family: 'Jura', sans-serif;
	margin-bottom: 20px;
    color: rgb(255,255,255);
}

.header h3 span {
	color: rgb(210,79,54);
	font-weight: 700;
	font-size: 45px;
}

.row {
    width: 100%;
    padding: 20px;
}

.row .title {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -1px;
    color: rgb(210,79,54);
}

.row .title span {
    font-weight: 300;
    color: #fff;
}

.row .description span {
    font-weight: 700;
    color: rgb(210,79,54);
}

.row .description {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    font-weight: 300;
    text-align: center;
    font-size: 20px;
    color: rgb(255,255,255);
}

.description .btn1 {
    width: 250px;
    padding: 10px;
    display: block;
    margin: 40px auto;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    border: 3px solid #fff;
    text-align: center;
    cursor: pointer;
    transition: 0.5s linear;
}

.description .btn1:hover {
    color: rgb(210,79,54);
    border: 3px solid rgb(210,79,54);
}

#wrap {
    display: none;
    opacity: 0.8;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 16px;
    background-color: rgba(1, 1, 1, 0.725);
    z-index: 100;
    overflow: auto;
}

#window {
    width: 40%;
    height: 405px;
    margin: 50px auto;
    border-radius: 15px;
    display: none;
    background: rgb(210,79,54);
    z-index: 200;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 16px;
}

#window .title {
    width: 90%;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    font-size: 20px;
    letter-spacing: -1px;
    color: rgb(255,255,255);
}

.close{
    width: 20px;
    margin-left: 364px;
    margin-top: -30px;
    cursor: pointer;
    float: right;
}

.input_text {
    width: 80%;
    padding: 10px;
    color: #fff;
    display: block;
    margin: 10px auto;
    background: rgba(183, 31, 31, 0.9);
    border: none;
}

input[type="text"]:focus {
    outline: none;
}

input[placeholder] {
    color: #fff;
}

input::-webkit-input-placeholder {
    color: #fff;
    font-family: Tahoma;
}

.btn {
    width: 250px;
    padding: 10px;
    display: block;
    margin: 40px auto;
    font-weight: 300;
    text-decoration: none;
    color: #fff;
    background: none;
    font-size: 15px;
    border: 3px solid #fff;
    text-align: center;
    cursor: pointer;
    transition: 0.5s linear;
}

.btn:hover {
    color: #000;
    border: 3px solid #000;
}

input[type="submit"]:focus {
    outline: none;
}

.footer {
    width: 100%;
    display: block;
    padding: 10px;
}