/* CLOUD ==================================================== */
#cloud {
    background: rgb(154, 119, 255);
    background: -moz-linear-gradient(90deg, rgba(154, 119, 255, 1) 0%, rgba(2, 199, 255, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(154, 119, 255, 1) 0%, rgba(2, 199, 255, 1) 100%);
    background: linear-gradient(90deg, rgba(154, 119, 255, 1) 0%, rgba(2, 199, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9a77ff", endColorstr="#02c7ff", GradientType=1);
    padding: var(--paddingMedium) 0;
    position: relative;
}

#cloud .box {
    border: 2px solid #FFF;
    border-radius: 40px;
    margin-bottom: 40px;
    position: relative;
    color: #FFF;
}

#cloud .box .data {
    margin-left: 42%;
    padding: 100px 40px 100px 0;
    position: relative;
    z-index: 1;
}

#cloud .pageWidth .user {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    top: -30px;
    left: -30px;
    bottom: 0;
    width: 52%;
    z-index: 1;
}

.webp #cloud .pageWidth .user {
    background-image: url(cloud/user.webp);
}

.nowebp #cloud .pageWidth .user {
    background-image: url(cloud/user.png);
}

#cloud .pageWidth .misc {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-image: url(cloud/misc.svg);
    position: absolute;
    top: 0;
    left: -30px;
    bottom: 0;
    width: 52%;
    z-index: 0;
    opacity: .3;
}

#cloud .pageWidth .data h2 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #273347;
}

#cloud .pageWidth .data h3 {
    font-weight: 400;
    font-size: clamp(1.5rem, 3.8vw, 2.8rem);
    margin: 0 0 5px 0;
}

#cloud .pageWidth ul {
    display: flex;
    font-weight: 200;
    font-size: 20px;
    color: #273347;
}

#cloud .pageWidth ul li {
    width: 20%;
    box-sizing: border-box;
    padding: 0px 15px 0 15px;
    position: relative;
}

#cloud .pageWidth ul li i {
    font-size: 40px;
    color: #FFF;
    margin-bottom: 6px;
}

#cloud .pageWidth ul li h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3em;
    padding: 0;
    margin: 0 0 5px 0;
    color: #FFF;
    transition: all 0.4s;
}

#cloud .pageWidth .data h3 strong {
    font-weight: 700;
}

#cloud .pageWidth p {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    padding: 0;
    margin: 0;
    color: #FFF;
}

@media screen and (max-width: 1100px) {
    #cloud .pageWidth {
        padding: 0 10px;
    }
}

@media screen and (max-width: 930px) {
    #cloud .pageWidth h2 br {
        display: none;
    }
}

@media screen and (max-width: 860px) {
    #cloud .pageWidth ul {
        flex-wrap: wrap;
        margin: 0 auto;
    }

    #cloud .pageWidth h2 {
        font-size: 30px;
    }

    #cloud .pageWidth h2.cloud {
        font-size: 23px;
    }

    #cloud .pageWidth ul li {
        width: 33%;
        box-sizing: border-box;
        padding: 0px 15px 20px 15px;
        text-align: center;
    }
}

@media screen and (max-width: 800px) {
    #cloud .box .data {
        margin-left: 0%;
        padding: 30px 20px 280px 20px;
        position: relative;
        z-index: 1;
        text-align: center;
    }

    #cloud .pageWidth .user {
        background-position: center bottom;
        position: absolute;
        top: 160px;
        left: -30px;
        bottom: 0;
        width: 100%;
        z-index: 1;
    }

    #cloud .pageWidth .misc {
        background-position: center center;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 90%;
        z-index: 0;
        opacity: .3;
    }
}

@media screen and (max-width: 700px) {
    #cloud .pageWidth .user {
        top: 180px;
    }

    #cloud .pageWidth .misc {
        background-size: cover;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 90%;
        z-index: 0;
        opacity: .3;
    }
}

@media screen and (max-width: 600px) {
    #cloud .pageWidth ul li {
        width: 50%;
    }

    #cloud .pageWidth .user {
        top: 220px;
    }

    #cloud .pageWidth .misc {
        background-size: cover;
        width: 100%;
        border-radius: 40px;
        overflow: hidden;
    }
}

@media screen and (max-width: 450px) {
    #cloud .pageWidth ul li {
        width: 100%;
    }

    #cloud .pageWidth .user {
        top: 280px;
    }
}