*,
*:after,
*:before {
    box-sizing: border-box;
}

body {
    font-family: "arial";
    margin: 0;
    padding: 0;
}

.bg-body {
    background: url(images/rainbowbcn.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}

.container {
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.content-area img {
    max-width: 100%;
}

.info-item ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-item ul li a {
    color: #000;
    font-size: 17px;
    text-decoration: none;
    font-weight: 800;
}

.info-item {
    margin-top: 100px;
    margin-bottom: 40px;
}

.ft-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ft-menu ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

.ft-menu ul li a:hover {
    text-decoration: underline;
}

.ct-section-inner-wrap {
    max-width: 70vw;
    margin: 1vw auto;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    padding: 2vw;
    font-family: Arial;
    line-height: 1.6;
}

.ct-text-block {
    padding: 0 0 1em 0;
}

h1,
h2 {
    text-transform: uppercase;
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
    .bg-body {
        background-position: 0% 0%;
        background-size: cover;
    }
    .info-item ul {
        text-align: center;
        display: block;
        margin: 0;
        padding: 0;
     }
     .ft-menu ul {
         text-align: center;
         display: block;
         margin: 0;
         padding: 0;
     }
     .content-area {
        width: 100%;
    }
    .content-area .logo {
        max-width: 80%;
        margin: auto;
        display: block;
    }

    .info-item img {
        display: inline-block;
        margin-top: 20px;
    }

}

@media screen and (max-width: 767px) {
    .bg-body {
        background-position: 0% 0%;
        background-size: cover;
    }
    .container {
        padding: 40px 15px;
    }
    .content-area .logo {
        max-width: 80%;
        margin: auto;
        display: block;
    }
    .info-item {
        margin-top: 60px;
        margin-bottom: 30px;
    }
    .ft-menu ul {
        list-style: none;
        display: block;
    }
    .ft-menu ul li {
        margin: 4px 0;
    }
    .info-item ul {
       text-align: center;
       display: block;
       margin: 0;
       padding: 0;
    }
    .ft-menu ul {
        text-align: center;
        display: block;
        margin: 0;
        padding: 0;
    }
    .info-item img {
        display: inline-block;
        margin-top: 15px;
    }

}