footer {
    height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #064F8E 0%, #0A2E4C 100%);
    border-radius: 50px 50px 0px 0px;
    transform: rotate(0.01deg);
    color: #DDDDDD;
    gap: 30px;
}

.part1 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    /* margin-left: 100px; */
    margin-left: 50px;
}

.part1 h3 {
    text-align: left;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.02em;
    transform: rotate(0.01deg);
}

.part1 p {
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.02em;
    transform: rotate(0.01deg);
}

.icones i {
    font-size: 45px;
    padding: 5px;
}

.part1 ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
}

.part1 ul a li {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.02em;
    transform: rotate(0.01deg);
    color: #DDDDDD;
}

.part2 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.part2 h3 {
    text-align: left;
    font-weight: bold;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.02em;
    transform: rotate(0.01deg);
}

.part2 p {
    width: 50%;
}

.part2 label {
    font-weight: bold;
    font-size: 18px;
    line-height: 32px;
}

.part2 .subscribe {
    display: flex;
}

.part2 input {
    background: #EFF2F1;
    border-radius: 4px;
    transform: rotate(0.01deg);
    border: none;
    height: 50px;
    width: 50%;
}

.part2 button {
    width: 20%;
    background: #0C4E8D;
    border-radius: 4px;
    transform: rotate(0.01deg);
    border: none;
    color: #DDDDDD;
    ;
}

@media only screen and (max-width: 600px) {
    
    footer {
        height: 45vh;
        gap: 20px;
    }

    .part1 {
        gap: 1px;
        margin-left: 20px;
        margin-bottom: 50px;
    }

    .part1 h3 {
        margin-top: 10px;
        font-weight: bold;
        font-size: 12px;
        line-height: 1;
    }

    .part1 p {

        font-size: 10px;
        line-height: 1;
    }

    .icones i {
        padding: 5px;
        font-size: 20px;
    }

    .part1 ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .part1 ul a li {
        font-size: 8px;
        line-height: 1;
    }

    .part2 {
        gap: 10px;
    }

    .part2 h3 {
        font-size: 12px;
        line-height: 1;
    }

    .part2 p {
        width: 90%;
        font-size: 10px;
    }

    .part2 label {
        font-size: 10px;
        line-height: 1;
    }

    .part2 input {
        height: 30px;
        width: 50%;
        padding: 5px;
        font-size: 10px;
    }

    .part2 button {
        width: 35%;
        font-size: 8px;
    }
    #btn-sub {
        width: 35%;
        font-size: 8px;
    }
  
}