* {box-sizing: border-box;padding: 0;margin: 0;}
@font-face{
font-family: 'MyWebFont';
src: url(fonts/Roboto/Roboto-Bold.ttf);
font-weight: bold;
}
@font-face{
font-family: 'MyWebFont';
src: url(fonts/Roboto/Roboto-Regular.ttf);
font-weight: 300;
}

p {
    font-family: MyWebFont;
}
    
body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.app {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding-top: 90px;
}

.cards {
    display: block;
    position: absolute;
    width: 250px;
    height: 350px;
   
    transition: all ease .3s;
   
    z-index: 999;
   text-decoration: none;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);

    transition: all ease .4s;
}
.cards img {width: 100%;}
.cards:hover {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
}
.card1 {top: 50px;left: 100px;}
.card2 {top: 50px;right: 100px;}
.card3 {bottom: 50px;left: 100px;}
.card4 {bottom: 50px;right: 100px; }



.main {
    position: relative;
    width: 800px;
    height: 390px;
    margin: 200px auto;
    
}
.main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}
.main .aside {
    position: absolute;
    
   top: 20px;
    left: 5%;
    width: 90%;
    height: 100%;
    z-index: 1;
    text-align: center;
    color: white;
}
.aside h1 {
    font-weight: bold;
    font-size:2.2em;
    text-transform: uppercase;
    width: 100%;
    height: 100px;
    font-family:MyWebFont;
    text-shadow: 1px 1px 3px #f1efec;
    color: #300310;
}
.aside h2 {
    font-weight: bold;
    font-size: 1.3em;
    font-family: MyWebFont;
    width: 80%;
    margin: 0 auto;
    text-transform: uppercase;
    color: #300310;
}
.aside p {
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 20px;
    letter-spacing: .1px;
    font-weight: bold;
    margin: 5px auto 0px;
    display: block;
    width: 70%;
    height: 120px;
    color: #300310;
}
.btn {
    display: block;
    width: 260px;
    height: 50px;
    position: relative;
    margin: 0px auto 50px;
    font-weight: bold;
}
.btn:hover .btn_hover {
    opacity: 0;
}


.btn_hover {
    opacity: 1;
}
.btn p {
    margin-top:0;
    position: absolute;
    top: 20px;
    height: 20px;
    color: black;
    font-weight: bold;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1em;
    letter-spacing: 0;
    text-shadow: 2px 2px 3px #250303;
    color: white;
}
.btn img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity ease .2s;
}
.btn2 {
 font-weight: bold;
    color: #300310;
    text-decoration: none;
    transition: all ease .2s;
    font-size: 1.2em;
    font-family: MyWebFont;
    
}
.btn2:hover {
    color: #000000;
}
p a {
    color: #300310;
}
.h_name {
    font-family:MyWebFont;
    font-size: 1.7em;
    font-weight: bold;
    margin-top: -50px;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #181818;
    transform: translateY(10px);
}
.card1 .h_name {
    transform: translate(-20px,-3px);
}
.card2 .h_name {
    transform: translate(19px,-5px);
}
.card3 .h_name {
    transform: translate(-15px,8px);    
}
.card4 .h_name {
    transform: translate(20px,5px);
}
.logo {
    width: 100%;
    height: 200px;
    position: fixed;
    top: 30px;
    left: 0;

}

.logo_wrapper {
    display: block;
    width: 500px;
    height: 150px;
    margin: 0 auto;
}

.logo_wrapper img {
    width: 100%;
}

.btn_anim1 {
    animation: button1 1s ease;
}
.btn_anim2 {
    animation: button2 .5s ease;
}
.btn_anim3 {
    animation: button3 .7s ease;
}
.btn_anim4 {
    animation: button4 .2s ease;
    animation-iteration-count: 2;
}
@keyframes button1 {
    form {transform: scale(1,1)}
    50%{transform: scale(.7,.7)}
    to {transform: scale(1.1)}
} 
@keyframes button2 {
    form {transform: rotate(0deg)}
    25%{transform: rotate(-15deg)}
    
    75%{transform: rotate(15deg)}
    to {transform: rotate(0deg)}
} 
@keyframes button3 {
    form {transform: translateX(0)}
    20%{transform: translateX(-15px)}
    40%{transform: translateX(13px)}
    60%{transform: translateX(-13px)}
    80%{transform: translateX(10px)}
    to {transform: rotate(0)}
} 
@keyframes button4 {
    form {transform: translateX(0)}
    20%{transform: translateX(-15px)}
    40%{transform: translateX(13px)}
    60%{transform: translateX(-13px)}
    80%{transform: translateX(10px)}
    to {transform: rotate(0)}
} 
@media screen and (max-width: 1360px) {
    .cards {
        width: 230px;
        height: 315px;
    }
    .card1 {top: 30px;left: 50px;}
    .card2 {top: 30px;right: 50px;}
    .card3 {bottom: 30px;left: 50px;}
    .card4 {bottom: 30px; right: 50px;}

  }

  @media screen and (max-width: 1150px) {
    .cards {
        width: 230px;
        height: 315px;
    }
    .card1 {top: 10px;left: 30px;}
    .card2 {top: 10px;right: 30px;}
    .card3 {bottom: 10px;left: 30px;}
    .card4 {bottom: 10px; right: 30px;}
    
    
    
  }
  @media screen and (max-height: 860px){
    .cards {
        width: 230px;
        height: 315px;
    } 
    .h_name {
        font-size: 1.2em;
        margin-top: -40px;
    }
    .card4 .h_name {
        margin-top: -35px;
    }
  }
  @media screen and (max-height: 800px){
    .cards {
        width: 200px;
        height: 270px;
    } 
    
    
  }




