*::after,
*::before {
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background-color: #cccccc;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

button{
    border: none;
    background-color: transparent;
}

.top-panel{
    width: 100%;
    position: relative;
}

.top-panel a{
    position: absolute;
    bottom: 0px;
    left: 0;
}

.download-btn{
    height: 42px;
}

.main-panel{
    height: 100vh;
    padding-top: 20px;
    padding-left: 40px;
}

.instruction-banner{
    position: relative;
    width: fit-content;
}

.free-download-icon{
    position: absolute;
    bottom: 10px;
    left: 25px;
}

.footer{
    text-align: center;
}

.loading-main{
    height: 100vh;
    padding-top: 10px;
    display: flex;
    color: white;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    background-image: url(https://app.88driamtx.com/assets/img/landing_images/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Desktop page styles */
.desktop-main{
    height: 100vh;
    background-image: url(https://app.88driamtx.com/assets/img/landing_images/BG.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.desktop-banner{
    width: fit-content;
    position: relative;
}

.downloads-container{
   width: 100%;
   display: flex;
   justify-content: center;
   gap: 15px;
   position: absolute;
   bottom: 10px;
}

.downloads img{
    border-radius: 10px;
    opacity: 90%;
}

.downloads img:hover{
    opacity: 100%;
}


/* Responsive styles: Tablet and Mobile */
@media (max-width: 1200px) {
    .download-btn{
        height: 42px;
    }
}

@media (max-width: 1024px) {
    .main-panel {
        padding-left: 20px;
        padding-top: 10px;
        height: auto;
    }
    .download-btn {
        height: 23px;
    }
    .instruction-banner {
        width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .main-panel {
        padding-left: 10px;
        padding-top: 5px;
        height: auto;
    }
    .top-panel {
        height: 100px;
    }
    .top-panel-img {
        height: 100px;
    }
    .top-panel a{
        bottom: -5px;
    }
    .download-btn {
        height: 36px;
    }
    .instruction-banner {
        width: 100%;
        padding: 0 5px;
    }
    .footer {
        font-size: 14px;
        padding: 10px 0;
    }

    .downloads img{
        height: 50px;
    }
}

@media (max-width: 480px) {
    
    .main-panel {
        padding-left: 15px;
        padding-top: 2px;
    }
    .top-panel a{
        bottom: -3px;
    }
    .download-btn {
        height: 36px;
        max-width: 200px;
    }
    .footer {
        font-size: 12px;
        padding: 8px 0;
    }
}

@media (max-width: 380px) {
    .main-panel {
        padding-left: .25px;
        padding-top: 1px;
    }
    .top-panel a{
        bottom: -2px;
    }
    .download-btn {
        height: 36px;
        max-width: 200px;
    }
    .footer {
        font-size: 10px;
        padding: 6px 0;
    }
}
    


