.top-row {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 15px;
    border-radius: 15px;
    background: var(--lilac300);
    /* box-shadow: 9px 9px 0px 0px var(--lilac600); */
}
@media (min-width: 700px) {
    .top-row {
        flex-wrap: nowrap;
    }
}
.top-row .left {
    width: 100%;
}

.top-row .right {
    width: 100%;
}

.top-row img.bannerIMG {
    width: 100%;
}
.title-1 {
    position: relative;
    font-family: "Bungee", sans-serif;
    color: var(--dark-purple);
    z-index: 0;
    margin-top: 0;
}
ul {
    padding: 0;
    list-style: none;
}
li{
    display: flex;
    align-items: center;
    justify-content: center;
}
img.picto{
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 16px;
}
.second-row {
    display: flex;
    /* flex-wrap: wrap-reverse; */
    flex-wrap: wrap;
    margin-top: -70px;
    gap: 30px;
}
@media (min-width: 700px) {
    .second-row {
        flex-wrap: nowrap;
    }
}
.second-row .left {
    position: relative;
    text-align: center;
    flex-grow: 1;
}
.second-row .left img {
    max-width: min(400px, 70vw);
    margin: auto;
    transform: translateX(25px);
    position: sticky;
    top: 0;
}
@media (min-width: 700px) {
    .second-row .left img {
        transform: translateX(0px);
    }
}
.second-row .right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.second-row .browser-style2 {
    transform: unset;
    max-width: 100%;
}
@media (min-width: 700px) {
    .second-row .browser-style2 {
        transform: translateY(38px);
        width: unset;
        margin-bottom: calc(38px + 12px);
    }
}
.browser-style2 {
    background: white;
    border-radius: 15px;
    border: 2px solid var(--dark-gray);
    box-shadow: 10px 10px 0 0 var(--dark-purple), 10px 10px 0 2px var(--dark-gray);
    margin-right: 12px;
}
.browser-style2 .browser-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 20px;
    gap: 5px;
}
.browser-style2 .browser-top .circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-purple);
}
.browser-style2 .browser-bottom {
    padding: 0 20px 30px 20px;
}
.browser-style2 .browser-bottom p {
    text-align: left;
    margin-bottom: 12px;
}
.cta-2 {
    width: max-content;
    margin: auto;
}
.planning-more-info {
    margin-top: calc(38px + 30px);
}