body {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background-image: url("../images/bg.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color:#000;
    overflow:hidden;
}
*{
    padding: 0;
    margin: 0;
}

.landingDiv{
    width: 100%;
    height: 100vh;
	padding: 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.topLogoDiv{
    width:100%;
    height: 95px;
    padding:20px 0 30px 0;
    margin:0 auto;
    text-align: center;
}
.topLogoDiv img{
    max-height:50px;
    z-index: 99;
    position: relative;
}
@media (max-width: 414px) {
    .topLogoDiv{
        height: 85px;
    }
    .topLogoDiv img{
        max-height:30px;
    }
}
.content-div{
    max-width: 540px;
    height: 170px;
    padding: 0 20px;
    margin: 0 auto 15px auto;
}
.main-text{
    font-family: "Prata", sans-serif;
    font-size: 33px;
    font-weight: bold;
    font-style: normal;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 10px;
}
.bodytext{
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}
.bodytext-bold{
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0;
}
.blink {
    animation: blink-animation 1s steps(1, start) infinite;
}

@keyframes blink-animation {
    50% {
        visibility: hidden;
    }
}



@media (max-width: 540px) {
    .content-div {
         padding: 0 15px;
    }
    .main-text{
        font-size: 30px;
    }
    .bodytext{
        font-family: "Open Sans", sans-serif;
        font-size: 18px;
    }
    .bodytext-bold {
        font-size: 25px;
    }
}
@media (max-width: 493px) {
    .main-text{
        font-size: 26px;
    }
    
}
@media (max-width: 540px) {
    
}
@media (max-width: 430px) {
    .topLogoDiv {
        height: 75px;
        margin-bottom: 15px;
    }
    .topLogoDiv img {
        max-height: 40px;
    }
    .main-text{
        font-size: 22px;
    }
    .bodytext{
        font-family: "Open Sans", sans-serif;
        font-size: 16px;
    }
    .bodytext-bold{
        font-size: 20px;
        font-weight: 600;
    }
}

.btn-div{
    max-width: 250px;
    margin: 20px auto;
}
.btn-div img{
    max-width:100%;
    max-height: 100%;
}
.bottom-div{
    bottom: 0;
    height:calc(100vh - 280px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow-y: hidden;
}
.btn-div-desktop{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    margin: 20px auto;
    z-index: 9;
}
.btn-div-desktop img{
    max-width:100%;
    max-height: 100%;
}
.model-desktop{
    display: block;
    max-width:100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.bottom-div img{
    max-height: 100%;
    height: auto;
    top: 0;
}
.model-mobile{
    display: none;
    max-width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 600px) {
    .btn-div-desktop{
        display: none;
    }
    .btn-div-mobile{
        display: block;
    }
    .model-mobile{
        display: block;
    }
    .bottom-div img{
        max-height: 100%;
        height: auto;
    }
    .model-desktop{
        display: none;
    }
    .bottom-div{
        overflow: hidden;
    }
}
@media (max-width: 540px) {
    .model-img{
        max-width:600px;
    }
}
@media (max-width: 414px) {
    .model-img{
        max-width:500px;
    }
}
/*
@media (max-height: 1080px) {
    .model-mobile{
        bottom: 0!important;
    }
}
@media (max-height: 1920px) {
    .model-mobile{
        bottom: -70px!important;
    }
}*/

.anim1{
	animation: grow-and-shrink 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes grow-and-shrink {
    0% {
      transform: scale(.9);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(.9);
    }
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.vert-move-lr {
    -webkit-animation: mover-lr 1s infinite  alternate;
    animation: mover-lr 1s infinite  alternate;
}
.vert-move-lr {
    -webkit-animation: mover-lr 1s infinite  alternate;
    animation: mover-lr 1s infinite  alternate;
}
@-webkit-keyframes mover-lr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}
@keyframes mover-lr {
    0% { transform: translateX(0); }
    100% { transform: translateX(-10px); }
}