* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

.container {
    width: 100%;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-right: 0;
}

.title-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    transition: all 1700ms ease;
    position:relative;
    z-index:0;
}

.title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin-top: 20px;
    /*text-shadow: #000000 0.1em 0.1em 0.3em;*/
}

.subtitle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    /*text-shadow: #000000 0.1em 0.1em 0.3em;*/
}

.title-firs-wave {
    position:absolute;
    z-index:2;
    bottom: 75%;
    left: 5%;
    width: 150px;
    height: 150px;
}

.title-book-now {
    z-index:1;
    position:absolute;
    bottom: 70%;
    left: 3%;
    width: 100px;
    height: 50px;
}

.logo-image {
    width: 200px;
}

.body {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    background-color: #ffffff;
    border: none;
}

.accommodation-group {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    background-color: #146666;
}

.touroperator-group {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    background-color: #ffffff;
}

.card-container {
    z-index:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px;
    position: relative;
}

.card {
    color: #152046;
    width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .3);
    overflow: hidden;
    /*padding: 10px 10px;*/
    padding-bottom: 20px;
    height: auto;
    transition: all 1700ms ease;

}

/*.card:hover {
    transform: translateY(-20px);
}*/

.title-image:hover {
    transform: translateY(-10px);
}

.card-image-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 200px;
    margin: 20px 20% 20px 20%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

.card-body {
    display: flex;
    flex-direction: column;
    padding: 5px 5px;
    text-align: center;

}

.card-body h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 30px;
    margin-bottom: 10px;
}

.card-body h2 {
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        font-size: 20px;
        margin-bottom: 10px;
}

.image-wrapper {
    height: 20px;
}

.card-body p {
    font-size: 15px;
   /* justify-content: justify;*/
    color: #000000;
    margin-bottom: 20px;
}

.container-touroperator-accommodation {
    list-style-type: none; 

    background-color: rgb(255, 255, 255);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    color: #000000;
    text-align: center;
    margin: 0 auto 0 auto;
}

.tour-operator {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;

    border-top-left-radius: 30px;
    border-top-right-radius: 30px;

    width: 250px;
    height: 100%;
    display: inline-block;
    transition: transform all 1700ms ease;
    
    &:hover {
        background-color: #146666;
        a {
            color: #ffffff;
        }
    }

}

.accommodation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;

    border-top-left-radius: 30px;
    border-top-right-radius: 30px;

    width: 250px;
    height: 100%;
    display: inline-block;
    transition: transform all 1700ms ease;
    
    &:hover {
        background-color: #146666;

        a {
            color: #ffffff;
        }
        
    }
}

a {
    text-decoration: none;
    color: #000000;
}



@media (max-width: 560px) {
    .container {
        position: relative;
        width: 100vw;
        height: 20vh;
        background-color:#146666;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 1700ms ease;
    }
    
    .title-image {
        height: auto;
        transition: all 1700ms ease;
    }

    .title {
        font-family: 'Nunito', sans-serif;
        font-size: 25px;
        color: #000000;
        text-align: center;
        margin-top: 20px;
        /*text-shadow: #000000 0.1em 0.1em 0.2em;*/
    }
    
    .subtitle {
        font-family: 'Nunito', sans-serif;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        /*text-shadow: #000000 0.1em 0.1em 0.2em;*/
    }

    .card {
        color: #152046;
        width: 250px;
        background-color: #ffffff;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, .3);
        overflow: hidden;
        /*padding: 10px 10px;*/
        padding-bottom: 20px;
        height: auto;
        transition: all 1700ms ease;
    
    }

    .card-image-container {
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 150px;
        width: 150px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
    }

    .card-image {
        width: 175px;
        height: 175px;
        object-fit: cover;
    }

    .card-body h1 {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .card-body h2 {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 15px;
    }
    
    .card-body p {
        font-size: 8px;
       /* justify-content: justify;*/
        color: #000000;
        margin-bottom: 20px;
    }

    .container-touroperator-accommodation {
        list-style-type: none; 
    
        background-color: rgb(255, 255, 255);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 50px;
        font-family: 'Nunito', sans-serif;
        font-size: 16px;
        color: #000000;
        text-align: center;
        margin: 0 auto 0 auto;
        /*text-shadow: #000000 0.1em 0.1em 0.2em;*/ 
    }

    .tour-operator {
        width: 200px;
        display: inline-block;
    }
    
    .accommodation {
        width: 200px;
        display: inline-block;
    }

    .title-firs-wave {
        position:absolute;
        z-index:2;
        bottom: 87%;
        left: 5%;
        width: 70px;
        height: 70px;
    }

    }