@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #10A3C2;
    color: white;
    border-radius: 5px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #056579;
}

.more {
    text-decoration: none;
    display: flex;
    align-items: center;
    background-color: #DDF056;
    padding: 8px 14px;
    font-weight: 500;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    width: 200px;
    transition: .3s;
}

.more:hover {
    color: white;
    background-color: #b8c939;
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #056579;
    font-size: 2.1875rem;
}

.section-subtitle {
    font-size: 1.563rem;
}