*{
    margin:0;
    padding:0;
}
body{
    font-family: 'Montserrat', sans-serif;
    background:#000;
}


.card {
    max-width: 550px;
    border: none;
    padding: 36px 40px;
    background: rgba(255, 255, 255, 0.89);
    text-align: center;
    margin-bottom: 42px;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.main:before{
    position: absolute;
    content:'';
    left: 0;
    top:0;    
    width:100%;
    height:100%;
    background: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
}

.logo-box img {
    max-width: 230px;
    margin-bottom: 15px;
}

.body-box h3 {
    font-size: 30px;
    color: rgb(17, 19, 74);
    font-weight: bold;
    line-height: 45px;
}
.body-box h3 span {
    color:#1e9dc6;
    text-transform: uppercase;
}
.body-box a {
    display: block;
    text-align: center;
    color: #fff;
    background: #1e9dc6;
    padding: 15px 0;
    border-radius: 5px;
    font-size: 26px;
    text-decoration: none;
    margin-top: 30px;
    font-weight:600;
    position: relative;
    overflow: hidden;
    z-index:1;
}
.body-box a:before{
    position: absolute;
    content: '';
    left: -80px;
    top: -200px;
    width: 120%;
    height: 0px;
    background: #f4ba00;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    z-index: -1;
    transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
}
.body-box a:hover:before {
    height: 500px;
}
.body-box a i{
    transition:ease all 0.55s;
    -webkit-transition:ease all 0.55s;
}
.body-box a:hover i{
    animation: ease shake 0.8s infinite;
}

.copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
}


.copyright h5 {
    color: #fff;
    display: block;
    font-size: 15px;
    margin: 0;
}

.copyright h5 img {
    display: inline-block;
    max-width: 96px;
    position: relative;
    left: 0;
    bottom: 15px;
}
@keyframes shake {
    from,
    to {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
    
    0% {
      -webkit-transform: translate3d(0px, 0, 0);
      transform: translate3d(0px, 0, 0);
      opacity:1;
    }
    80%{
        opacity: 1;
    }
  
    100% {
      -webkit-transform: translate3d(30px, 0, 0);
      transform: translate3d(30px, 0, 0);
      opacity:0;
    }
}

.tracking-box {
    padding: 30px 45px;
}
  
/* responsive */
@media (min-width: 821px) and (max-width: 1360px) {
   .card {
        max-width: 550px;
        border: none;
        padding: 36px 40px;
        background: rgba(255, 255, 255, 0.89);
        text-align: center;
        margin-bottom: 48px;
    }
    .tracking-box {
        padding: 20px 30px;
        margin: 0;
        margin-bottom: 40px;
    }
    .logo-box img {
        max-width: 200px;
        margin-bottom: 15px;
    }

    .body-box h3 {
        font-size: 28px;
    }
}
@media (min-width: 100px) and (max-width: 767px) {
    .card {
        margin: auto 15px;
        padding: 25px;
    }
    .tracking-box {
        padding: 15px 30px;
        margin: 0;
        margin-bottom: 40px;
    }
.body-box a:before{
    top: -130px;
    width:500px;
}
.main:before{
    filter: blur(4px);
    background-position: right;
}
.logo-box{
    text-align:Center;
}
.logo-box img{
    margin-bottom:10px;
    max-width: 50%;
}
.body-box h3 {
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}
.body-box a{
    margin-top: 10px;
    font-size: 20px;
}
}
@media (min-width: 100px) and (max-width: 820px) and (orientation : landscape) {
.card {
    margin: auto 15px;
    padding: 25px;
}
.body-box a{
    margin-top: 5px;
    font-size: 20px;
}
.body-box a:before{
    top: -230px;
    width:700px;
}
.main:before{
    filter:blur(4px);
}
.body-box h3 {
    font-size: 20px;
    line-height: 23px;
    text-align: center;
}
.logo-box{text-align:Center;}
.logo-box img{
    margin:0;
    max-width:50%
}
.copyright h5 img{
    max-width: 80px;
    bottom: 10px;
}
}


/* responsive */
