footer {
    margin-top: 2rem;
    padding-top: 3rem;
    background: url("../images/footer_bg.png") no-repeat center center;
    background-size: cover;
}

footer .cont {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
    flex-wrap: wrap;
    color: #fff;
    margin-bottom: 0;
    padding-right: 4rem;
}

footer .cont.en {
    padding-right: 0;
    padding-left: 4rem;
}

footer .cont .social {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.2rem;
    width: 38%;
}

footer .cont .social p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4em;
    margin-bottom: 0.5rem;
}

footer .cont .social .links {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 1rem;
}

footer .cont blockquote h5 {
    font-weight: 800;
}

footer .cont blockquote ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}

footer .cont blockquote ul li {
    cursor: pointer;
}

footer .cont blockquote ul li a {
    color: #e7e7e7;
    font-weight: 200;
}

footer .cont .fastLinks {
    width: 14%;
}

footer .cont .company {
    width: 14%;
}

footer .cont .shape {
    width: 22%;
    position: relative;
    left: 0;
}

footer .cont .shape .cloud,
footer .cont .shape .rocket {
    position: absolute;
}

footer .cont .shape .cloud.ar {
    top: 7rem;
    left: 0;
    z-index: 1;
    animation: cloud 3s infinite ease-in-out;
}

footer .cont .shape .cloud img {
    height: 140px;
}

footer .cont .shape .rocket.ar {
    top: -9rem;
    left: 47%;
    z-index: 0;
    animation: rocket 2.5s infinite linear;
}

footer .cont .shape .cloud.en {
    top: 7rem;
    right: 0;
    z-index: 1;
    animation: cloud 3s infinite ease-in-out;
}

footer .cont .shape .rocket.en {
    top: -9rem;
    right: 26%;
    z-index: 0;
    animation: rocket 2.5s infinite linear;
}

footer .copy {
    padding: 1rem 2rem;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 500;
}

footer .copy p,
.powered {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

footer .copy p span {
    font-size: 1.1rem;
}

footer .copy .powered {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

footer .copy .powered strong {
    color: var(--text-color);
    white-space: nowrap;
}

footer .copy .powered img {
    width: 150px;
}

footer .copy .controls {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

footer .copy .controls a {
    font-size: 1.1rem;
}

footer .copy .controls .sh {
    display: inline-block;
    width: 2px;
    height: 25px;
    background-color: #766e7d;
}

@keyframes cloud {
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rocket {
    50% {
        transform: translate(-15px);
    }
    80% {
        transform: translateY(-15px);
    }
}

@media (max-width: 450.99px) {
    footer .cont {
        padding-inline: 2rem;
    }

    footer .cont .shape {
        display: none;
    }

    footer .cont .social {
        width: 100%;
    }

    footer .cont blockquote {
        width: 100% !important;
    }

    footer .copy {
        padding: 0.5rem 2rem;
    }
}

@media (max-width: 767.99px) {
    footer .cont {
        padding-right: 2rem;
    }

    footer .cont.en {
        padding-left: 2rem;
    }
}

@media (min-width: 451px) and (max-width: 767.99px) {
    footer .cont .social {
        width: 60%;
    }

    footer .cont blockquote {
        width: 40% !important;
    }

    footer .cont .shape {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.99px) {
    .shape {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199.99px) {
    .shape {
        display: none;
    }
}

@media (min-width: 1200px) {
    footer .cont .shape .rocket {
        left: 40%;
    }
}
