@font-face {
    font-family: 'CircularXX-Regular';
    src: url('../fonts/CircularXXWeb-Regular.woff') format('woff');
}

@font-face {
    font-family: 'CircularXX-Bold';
    src: url('../fonts/CircularXXWeb-Bold.woff') format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'CircularXX-Regular';
}

body {
    font-size: 16px;
}

button {
    cursor: pointer;
    min-width: 230px;
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: white;
    background-color: #f99144;
    border-radius: 7px;
    transition: 0.2s;
    font-family: 'CircularXX-Bold';
    border: none;
}

button:hover,
button:focus {
    background-color: #E88033;
    transition: 0.2s;
    box-shadow: none;
}

section#thank_you_section_1 .container {
    padding: 100px 0;
    background-color: #f5faff;
}

section#thank_you_section_1 .container .title {
    text-align: center;
}

section#thank_you_section_1 .container .title h2 {
    font-family: 'CircularXX-Bold';
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 2.25rem;
    font-weight: bold;
    color: #2a5486;
    text-align: center;
}

section#thank_you_section_1 .container .space {
    height: 30px;
    width: 100%;
}

section#thank_you_section_1 .container .title p {
    margin: 0px auto;
    margin-top: 10px;
    font-size: 20px;
    color: black;
    text-align: center;
    max-width: 400px;
}

section#thank_you_section_1 .container .title p.sub-title {
    max-width: 380px;
    margin: 8px auto 20px;
    font-size: 16px;
    color: #808080;
    text-align: center;
}

section#thank_you_section_1 .container .card-div {
    max-width: 400px;
    margin: auto;
    padding: 10px;
}

section#thank_you_section_1 .container .card-div .card {
    overflow: hidden;
}

section#thank_you_section_1 .container .card-div .card img {
    width: 100%;
    height: auto;
    margin-top: -20%;
}

section#thank_you_section_1 .container .card-div .card h4 {
    display: block;
    font-weight: bold;
    margin: 0 auto 20px;
    font-size: 37px;
    line-height: 45px;
    letter-spacing: -0.18px;
    color: #1d4b79;
    text-align: center;
}

section#thank_you_section_1 .container .card-div .card-text {
    display: block;
    width: 100%;
    margin: 0 auto 38px;
    font-size: 20px;
    line-height: 34px;
    color: #1d4b79;
    text-align: center;
}

section#thank_you_section_1 .container .card-div .card-button {
    text-align: center;
}

@media screen and (max-width:767px) {
    section#thank_you_section_1 .container {
        padding: 40px 20px;
    }
    section#thank_you_section_1 .container .title h2 {
        font-size: 32px;
        line-height: 44px;
        max-width: none;
        padding: 0 10px;
    }
    section#thank_you_section_1 .container .title p {
        font-size: 16px;
        max-width: 276px;
    }
    section#thank_you_section_1 .container .title p.sub-title {
        font-size: 12px;
        margin-bottom: 10px;
        max-width: 278px;
    }
    section#thank_you_section_1 .container .card-div {
        max-width: 300px;
    }
    section#thank_you_section_1 .container .card-div .card h4 {
        font-size: 22px;
    }
    section#thank_you_section_1 .container .card-div .card-text {
        font-size: 16px;
        line-height: normal;
    }
}