.footer_top {
    padding-top: 60px;
    padding-bottom: 70px;
    background: #EFF5FF;
}

@media (max-width: 768px) {
    .footer_top {
        background: #0069EA;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .footer_top .box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.footer_top h2 {
    font-size: 32px;
    font-weight: 500;
    color: #333333;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .footer_top h2 {
        font-size: 14px;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 20px;
        margin-bottom: 0;
    }
}

.footer_top p {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer_top p {
        display: none;
    }
}

.footer_top .btn {
    display: block;
    width: 370px;
    height: 60px;
    line-height: 46px;
    background: #0069EA;
    border-radius: 4px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .footer_top .btn {
        width: 85px;
        height: 30px;
        background: #FFFFFF;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        color: #0069EA;
        line-height: 30px;
        margin: initial;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .footer_top .btn:hover {
        color: #ffffff;
        background: linear-gradient(259deg, #1F88E5 0%, #1B91E6 27%, #11A8E7 48%, #0972E9 74%, #0069EA 100%);
        background-size: 400% 400%;
        -webkit-animation: gradientBG 4s ease infinite;
        animation: gradientBG 4s ease infinite
    }
}