/* Container */

.cm-container {
    max-width: 1312px;
    margin: 0 auto;
}

.cm-section {
    padding: 24px;
}

/* Button */
.btn-white {
    display: inline-block;
    width: 251px;
    height: 48px;
    padding: 12px 0;
    border-radius: 50px;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    color: #033793;
    text-decoration: none;
    text-align: center;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-white span {
    /* Để trống */
}

.btn-white i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-card-blue {
    display: block;
    width: 150px;
    padding: 13px 0;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #033793 -18.33%, #033793 10.11%, #0080CA 69.28%, #025CAF 100%);
    line-height: 100%;
}

.btn-card-blue:hover {
    background-color: #ffffff;
    color: #003366;
}

.btn-card-blue i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-arrow {
    position: relative;
    display: block;
    width: 251px;
    padding: 14px 0;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    text-align: center;
    background-size: 200% auto;
    color: #ffffff;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #033793 -18.33%, #033793 10.11%, #0080CA 69.28%, #025CAF 100%);
    line-height: 100%;
}

.btn-arrow:hover {
    background-position: right center;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.btn-arrow span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-arrow i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);

    font-size: 14px;
}