.container_main{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
    height: auto;
}
.container{
    position: relative;
    width: auto;
    height: auto;
}
#header{
    width: 100%;
    height: 180px;
    background-color: #54a1fa;
    place-content: center;
    text-align: center;
}
#header img{
    width: auto;
    height: 130px;
    margin-top: 5px;
    filter: blur(0.5px);
}
#header p{
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
    margin-top: -5px;
}
body{
    background-color: #54a1fa;
}
.body{
    display: flex;
    background-color: #54a1fa;
}
.sep{
    height: auto;
    width: 15%;
    background-color: #4a8dda;
}
.slideshow{
    position: relative;
    width: 70%;
    height: auto;
}
.description{
    position: relative;
    width: 15%;
    height: auto;
    background-color: #4a8dda;
    z-index: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.buttons input{
    width: 0;
    height: 0;
    opacity: 0;
}
.buttons{
    position: absolute;
    width: 100%;
    height: 100%;
    place-content: center;
    z-index: 2;
}
.next_bt{
    position: relative;
    float: right;
    display: inline-block;
    width: 56px;
    height: 56px;
    background: linear-gradient(gray, #d2d2d2);
    filter: drop-shadow(0 0 2px black);
    opacity: 80%;
    border-radius: 50%;
    margin: 10px;
    transition: ease 500ms;
}
.r_arrow{
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 40px solid #555;
    border-bottom: 20px solid transparent;
    transform: translateX(12px) translateY(-10px);
}
.return_bt{
    position: relative;
    float: left;
    display: inline-block;
    width: 56px;
    height: 56px;
    background: linear-gradient(#808080, #d2d2d2);
    filter: drop-shadow(0 0 2px black);
    opacity: 80%;
    border-radius: 50%;
    margin: 10px;
    transition: ease 500ms;
}
.l_arrow{
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-right: 40px solid #555;
    border-bottom: 20px solid transparent;
    transform: translateX(4px) translateY(-10px);
}
.next_bt:hover{
    scale: 1.15;
    filter: drop-shadow(0 0 4px black);
    transition: ease 500ms;
}
.return_bt:hover{
    scale: 1.15;
    filter: drop-shadow(0 0 4px black);
    transition: ease 500ms;
}
.next_bt:active{
    scale: 0.8;
    transition: ease 500ms;
}
.return_bt:active{
    scale: 0.8;
    transition: ease 500ms;
}
.footer{
    background-color: #54a1fa;
    width: 100%;
    height: 180px;
    z-index: 2;
    overflow: hidden;
}
.image-container{
    display: flex;
    overflow: hidden;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}
.slideshow img{
    position: relative;
    min-width: 100%;
    width: 100%;
    height: auto;
    transition: ease 1500ms;
}

/* Slide 1 */
.image-container [slided1]{
    transform: translateX(0%);
    transition: ease 1500ms;
}

/* Slide 2 */
.image-container [slided2]{
    transform: translateX(-100%);
    transition: ease 1500ms;
}

/* Slide 3 */
.image-container [slided3]{
    transform: translateX(-200%);
    transition: ease 1500ms;
}

/* Slide 4 */
.image-container [slided4]{
    transform: translateX(-300%);
    transition: ease 1500ms;
}

/* Slide 5 */
.image-container [slided5]{
    transform: translateX(-400%);
    transition: ease 1500ms;
}

/* Slide 6 */
.image-container [slided6]{
    transform: translateX(-500%);
    transition: ease 1500ms;
}

.bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
    background-color: #54a1fa;
}
.direitos{
    position: relative;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #cbcbcb;
    overflow: hidden;
    width: 100%;
    align-content: flex-end;
}
.info{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    text-align: center;
    flex: 1 1 0;
}
.direct{
    margin-top: 16px;
    position: relative;
    width: auto;
    flex: fit-content;
    transition: ease 500ms;
}
.direct img{
    width: auto;
    height: 48px;
}
.direct p{
    font-family: Arial, sans-serif;
    color: #fff;
    margin-top: -10px;
    font-size: 12px;
    text-decoration: none;
}
.direct a{
    text-decoration: none;
}
.contact{
    margin-top: -4px;
    position: relative;
    width: auto;
    flex: fit-content;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow: hidden;
    transition: ease 500ms;
}
.contact h2{
    letter-spacing: 2px;
}
.contact hr{
    color: #fff;
    background-color: #fff;
    border: 1px #fff solid;
    width: 70%;
    margin-top: -20px;
}
.phone{
    margin-top: -6px;
    font-size: 20px;
}
.time{
    font-size: 12px;
}
.direct:hover{
    scale: 1.1;
    transition: ease-in 500ms;
    filter: drop-shadow(0 0 5px white);
}
.contact:hover{
    scale: 1.1;
    transition: ease-in 500ms;
    filter: drop-shadow(0 0 5px white);
}

/* For mobile screens */
@media (max-width: 768px){
    .container_main{
        width: 100%;
    }
    #header{
        max-width: 768px;
        width: 100%;
        height: 220px;
    }
    #header img{
        width: 90%;
        height: auto;
    }
    .sep{
        display: none;
    }
    .description{
        display: none;
    }
    .slideshow{
        width: 100%;
        height: auto;
    }
    .footer{
        display: block;
        height: auto;
        align-items: flex-end;
    }
    .buttons{
        display: none;
    }
    .info{
        display: flex;
        flex-direction: column;
        scale: 0.7;
        margin-top: -16px;
    }
    .direitos{
        margin-bottom: -12px;
    }
    .bottom{
        display: none;
    }
    body{
        background-color: #54a1fa;
    }
}