/* Importing Google font - Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

.footer {
    position: absolute;
    /*top: 50%;
  left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*max-width: 1280px;*/
    width: 100%;
    background: #333;
    border-radius: 1px;
}

    .footer .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 3.5rem;
        padding: 1px 60px;
    }

.footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col .links {
    margin-top: 20px;
}

    .footer-col .links li {
        list-style: none;
        margin-bottom: 2px;
    }

        .footer-col .links li a {
            text-decoration: none;
            color: #fff;
        }

            .footer-col .links li a:hover {
                color: #DE3241;
            }

.footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
}

.footer-col form {
    display: flex;
    gap: 5px;
}

.footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
}

    .footer-col input::placeholder {
        color: #ccc;
    }

.footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
}

    .footer-col form button:hover {
        background: #cecccc;
    }

.footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
}

    .footer-col .icons i {
        color: #afb6c7;
    }

        .footer-col .icons i:hover {
            color: #fff;
        }

@media (max-width: 768px) {
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

        .footer .footer-row {
            padding: 20px;
            gap: 1rem;
        }

    .footer-col form {
        display: block;
    }

        .footer-col form :where(input, button) {
            width: 100%;
        }

        .footer-col form button {
            margin: 10px 0 0 0;
        }
}

@media (max-width: 470px) {
    .footer .footer-row {
        display: block;
    }
}


.copyrights {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #F1F1F1;
    font-size: 16px;
}

@media (max-width: 768px) {
    .copyrights {
        flex-direction: column;
        text-align: center;
    }

    .left-text, .right-text {
        text-align: center;
    }
}
