/* Reset styli*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: arial, sans-serif;


}

body {
    background: url(london.jpg) no-repeat center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1700px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;


}

.image,
accordion-menu {
    width: calc(50% - 20px);
    opacity: 0.7;
}

.title {
    background-color: rgba(65, 179, 240, 0.8);
    border: 1px solid #fff;
    display: flex;
    color: #fff;
    padding: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    align-items: center;
    justify-content: space-between;
}

.icon {
    position: relative;
    width: 14px;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 3px;
    background-color: #fff;
    top: -1.5px;
}

.icon::after {
    transform: rotate(90deg);
    transition: 0.5s linear;
}

.text {
    background-color: rgba(200, 200, 200, 0.75);
    color: #000;
    line-height: 22px;
    margin: 6px 0;
    opacity: 0;
    height: 0;
}

.item:target .text {
    height: auto;
    opacity: 1;
    padding: 20px;
    margin: 12px 0;
}

.item:target .icon::after {
    transform: rotate(0);
}

@media screen and (max-width: 1200px) {
    .container {
        flex-wrap: wrap;
        max-width: 700px;
    }

    .image,
    .accordion-menu {
        width: 100%;
        margin: 20px 0;
    }
}

footer {
    font-size: 1px;
}

#cookie-warn {
    position: fixed;
    bottom: 0;
    background: #000;
    margin: 0;
    padding: 15px;
    width: 100%;
    display: none;
    z-index: 99;
}

#cookie-warn a {
    color: #d66e1a;
    text-transform: uppercase;
    float: right;
    padding-right: 20px;
}

#cookie-warn p {
    font-size: 12px;
    color: #fff;
}
