.application-hero{
    min-height: 70vh;
    background: url('../Images/Landing-pages/ocygen-lance-application-kingdom-lancing.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    z-index: 1;
    background-color: rgba(38, 53, 65, 0.5);
}

.application-container{
    max-width: 1320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2em;
    margin: 0 auto;
    padding: 2em;
}

.application-info{
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    margin: 0 auto;
    padding: 2em;
}

.application-float{
    width: 600px;
    height: 510px;
    position: relative;
}

.image-float{
    width: 400px;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.image-float-one{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-float-two{
    position: absolute;
    top: 150px;
    left: 200px;
    z-index: 2;
}

.image-float img{
    width: 100%;
    height: auto;
}

.experience{
    position: absolute;
    width: 250px;
    height: 150px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 2em;
    top: 310px;
    left: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-dark);
    z-index: 3;
}

.experience p{
    font-size: 1.5rem;
    font-family: Lilita One;
    color: var(--text-color);
    
}

.accessories-container{
    max-width: 1320px;
    padding: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 2em auto;
}

.accessories-list{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2em;
    list-style: none;
    margin-top: 2em;
    padding: 0;
}

.accessories-list li{
    color: var(--text-color);
    margin-bottom: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.accessories-list li h4{
    margin-bottom: 0;
}

.accessories-list li p{
    text-transform: capitalize;
}

.accessories-list li .accessories-images{
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.accessories-list li .accessories-images img{
    width: 100%;
}

.card{
    flex: 1 1 250px;
    justify-content: space-between;
    background: #fff;
    color: var(--text-color);
    text-align: left;
    border-radius: 10px;
    padding: 40px 30px;
    transition: var(--ve-trans);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

@media screen and (max-width: 768px){
    .application-container{
        flex-direction: column;
        align-items: center;
    }
    .application-info{
        max-width: 100%;
    }
    .application-float{
        width: 100%;
        height: auto;
    }
    .image-float{
        width: 100%;
        height: auto;
    }

    .image-float img{
        width: 100%;
        height: auto;
    }

    .image-float-one, .image-float-two{
        position: static;
        margin-bottom: 1em;
    }

    
    .experience{
        position: static;
        width: 100%;
        height: auto;
        margin-top: 1em;
    }
}