body{
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
img{
    max-width: 100%;
}
.wrapper {
    background: url(../images/bg.jpg?v=1) no-repeat center;
    background-size: cover;
    height: 100vh;
}

.header-wrapper {
    background: #11754b;
    background: -moz-linear-gradient(top, #11754b 0%, #00360f 99%);
    background: -webkit-linear-gradient(top, #11754b 0%, #00360f 99%);
    background: linear-gradient(to bottom, #11754b 0%, #00360f 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#11754b', endColorstr='#00360f', GradientType=0);
    border-bottom: 1px solid #007628;
}

.btnheader {
    text-align: center;
    padding: 7px 0;
}

.btnlan {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    color: #222;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    min-width: 180px;
    margin: 0 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

a.btnlan:focus,
a.btnlan:hover {
    text-decoration: none;
    color: #222;
}

.btn-yellow {
    color: #222;
    background: #fff48e;
    background: -moz-linear-gradient(top, #fff48e 0%, #fecb1b 100%);
    background: -webkit-linear-gradient(top, #fff48e 0%, #fecb1b 100%);
    background: linear-gradient(to bottom, #fff48e 0%, #fecb1b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff48e', endColorstr='#fecb1b', GradientType=0);
}

.btn-white {
    color: #222;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 0%, #b2b2b2 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #b2b2b2 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #b2b2b2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#b2b2b2', GradientType=0);
}

.mob-banner {
    display: none;
}


.dummyBox{
    height: calc(100vh - 170px);
}
.topTitle{
    text-align: center;
    padding: 10px;
}   
.footer-wrapper {
    width: 100%;
    height: 130px;
    background: rgb(0, 40, 9);
    background: linear-gradient(0deg, rgba(0, 40, 9, 1) 0%, rgba(0, 46, 36, 1) 50%, rgba(1, 28, 9, 1) 100%);
}

.footer-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 5px 10px;
}

.footer-container ul {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 5px;
}

.footer-container ul li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

li>img {
    margin: 0 15px;
}

@media(max-width: 757px) {
    .btnlan {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
        min-width: 105px;
    }

    .wrapper {
        background: #052819;
    }

    .mob-banner {
        display: block;
    }
    
    .mob-banner img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .dummyBox{
        display: none;
    }
    .desktop{
        display: none;
    }
    .wrapper {
        background: #00190f;
    }

    .mob-banner {
        display: block;
    }

    .mob-banner img {
        max-width: 100%;
    }

    .flex-box {
        display: none;
    }
    .btnheader.btn-onMob{
        display: flex;
    }
    .footer-wrapper {
        height: auto;
    }
    .footer-container ul{
        flex-wrap: wrap;
    }
    .footer-container ul li {
        flex-basis: 100%;
        flex-wrap: nowrap;
        border-bottom: 1px solid white;
        padding: 10px 0;
        justify-content: left;
    }
}

@keyframes zoom {
    0% {
        transform:scale(0.9)
    }
    50% {
        transform : scale(1)
    }
    100% {
        transform:scale(0.9)
    }
}