.page{
    display: flex;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
}
.title{
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.section-1{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-image{
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.section-text{
    width: 50%;
    margin-top: 0px;
    color: white;
}

hr{
    border: rgba(255, 247, 0) 1px solid;
}

.boka-btn{
    font-size: 25px;
    text-decoration: none;
    color:rgba(255, 247, 0, 1);
    padding: 5px 10px 5px 10px;
    border: 1px solid rgba(255, 247, 0, 1);
}

.boka-btn:hover{
    background-color: rgba(255, 247, 0, 1);
    color: black;
}

.splide{
    margin-left: auto; 
    margin-right: auto;
    width: 25%;
    min-width: 450px;
}

.splide-img{
    width: 100%;
}

@media only screen and (max-width: 1024px) {
   .section-1{
    flex-direction: column;
    justify-content: center;
   }

   .splide{
    margin-left: auto; 
    margin-right: auto;
    width: 50%;
    min-width: 320px;
}

.section-text{
    min-width: 320px;
}

 }