html {
    min-height: 100vh;
}

body {
    padding: 0;
    margin: 0;
    background: #fff;
    font-family: "Inter", sans-serif;
    cursor: default;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    color: #000;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.no-selectable-text {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1440px;
    }
}

.call-btn {
    padding: 13px 20px;
    border-radius: 10px;
    background: #3BA4EF;
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: max-content;
    outline: 0;
}

.call-btn span,
.call-btn i.fa,
.call-btn i.fa::before {
    color: #fff !important;
}

section.hero {
    padding: 65px 0;
    background: #235DAC;
}

section.hero > .container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

section.hero > .container > .title {
    color: #fff;
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -0.56px;
    margin: 0;

    /* Form width */
    padding-right: 500px;
}

section.hero .features {
    margin-top: 40px;

    /* Form width */
    padding-right: 500px;
}

section.hero .features .title,
section.hero .features li {
    color: #fff;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
}

section.hero .features .title {
    font-weight: 600;
    line-height: 30px;
    display: block;
    width: 100%;
}

section.hero .features ul {
    margin-bottom: 0;
    margin-top: 28px;
}

section.hero .features ul > li {
    font-weight: 400;
    line-height: 28px;
    list-style-type: none;
    margin-top: 13px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

section.hero .features ul > li::before {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #23A6F0;
    color: #fff;
    border-radius: 100%;
    margin-right: 15px;
    width: 19px;
    height: 19px;
    font-size: 11px;
    line-height: 19px;
    text-align: center;
}

section.hero .features ul > li:first-child {
    margin-top: 0;
}

section.hero .call-btn {
    margin-left: 40px;
    margin-top: 36px;
}

section.hero .form {
    max-width: 439px;
    width: 100%;
    padding: 10px 6px;
    position: absolute;
    top: 0;
    right: 0.75rem;
    border-radius: 5px;
    border: 1px solid #A3A3A3;
    background: #FFF;
    z-index: 10;
}

section.hero .form > .header {
    border-radius: 5px;
    border: 1px solid #000;
    background: #000;
    padding: 30.25px 10px;
}

section.hero .form > .header > .title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 28.5px;
}

section.hero .form > .content {
    padding: 16px 21px;
}

section.hero .form .field-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

section.hero .form .field-row > * {
    width: 100%;
}

section.hero .form > .content > form > *:first-child {
    margin-top: 0 !important;
}

section.hero .form .field-row label {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

section.hero .form .field-row input[type="text"],
section.hero .form .field-row select,
section.hero .form .field-row textarea {
    padding: 12px 14px;
    border-radius: 5px;
    border: 1px solid #ACACAC;
    background: #FFF;
    color: #000;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

section.hero .form .field-row input[type="text"]::placeholder {
    color: #8C8C8C;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 1;
}

section.hero .form .form-disclaimer {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 26px;
}

section.hero .form .form-disclaimer > input[type="checkbox"] {
    outline: 0;
    margin: 0;
}

section.hero .form .form-disclaimer > label {
    text-align: justify;
    color: #000;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

section.hero .form .submit-btn {
    width: 100%;
    padding: 9px 20px;
    border-radius: 5px;
    border: none;
    background: #23A6F0;
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    left: 0;
    bottom: -102px;
}

section.hero .form .form-success {
    display: none;
    padding: 60px 0;
}

section.hero .form .form-success .title {
    color: #000;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.38px;
    width: 100%;
    text-align: center;
}

section.hero .form .form-success .message {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: -0.38px;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

section.hero .form .form-success .buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 40px;
}

section.hero .form .form-success .buttons .call-btn {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    animation: wiggleGrowCycle 3s ease-in-out infinite;
    animation-delay: 3s;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

@keyframes wiggleGrowCycle {
    0%   { transform: scale(1) rotate(0deg); }
    5%   { transform: scale(1.1) rotate(-8deg); }
    10%  { transform: scale(1.1) rotate(8deg); }
    15%  { transform: scale(1.1) rotate(-8deg); }
    20%  { transform: scale(1.1) rotate(8deg); }
    25%  { transform: scale(1.1) rotate(0deg); }
    26%  { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

section.footer {
    background-color: #fff;
    padding: 36px 0;
    margin-top: auto;
}

section.footer > .container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

section.footer > .container > * {
    width: 50%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

section.footer > .container > .left {
    justify-content: flex-start;
}

section.footer > .container > .right {
    justify-content: flex-end;
}

section.footer .copyright {
    color: #343434;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
}

section.footer .footer-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9.5px;
}

section.footer .footer-menu a {
    color: #235DAC;
    text-align: right;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20.8px;
}

/**
 * Responsive
 */
 @media (max-width: 991.98px) {
    section.hero > .container {
        align-items: center;
        position: unset;
    }

    section.hero > .container > .title {
        padding-right: 0;
        text-align: center;
        width: 100%;
    }

    section.hero .form {
        position: relative;
        right: 0;
        margin-top: 30px;
    }

    section.hero .form .submit-btn {
        position: relative;
        bottom: 0;
        margin-top: 24px;
    }

    section.hero .features {
        padding-right: 0;
        max-width: 439px;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    section.footer > .container {
        flex-direction: column;
    }

    section.footer > .container > * {
        width: 100%;
        justify-content: center !important;
    }
}

@media (max-width: 550px) {
    section.hero {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .call-btn {
        padding: 10px 15.5px;
        font-size: 12.406px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    section.hero > .container > .title {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -0.36px;
    }

    section.hero .form {
        max-width: 329px;
    }

    section.hero .form > .header {
        padding-top: 22.3px;
        padding-bottom: 22.3px;
    }

    section.hero .form > .header > .title {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 14.272px;
        font-style: normal;
        font-weight: 500;
        line-height: 21.409px;
    }

    section.hero .form > .content {
        padding: 16px 15px;
    }

    section.hero .form .field-row {
        gap: 6px;
        margin-top: 9px;
    }

    section.hero .form .field-row label {
        color: #000;
        font-family: Inter;
        font-size: 12.019px;
        font-style: normal;
        font-weight: 500;
        line-height: 13.521px;
    }

    section.hero .form .field-row input[type="text"],
    section.hero .form .field-row select,
    section.hero .form .field-row textarea {
        padding: 9px 10px;
        font-size: 9.765px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    section.hero .form .field-row input[type="text"]::placeholder {
        font-size: 9.765px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    section.hero .form .form-disclaimer {
        margin-top: 20px;
    }

    section.hero .form .form-disclaimer > label {
        color: #000;
        font-family: Inter;
        font-size: 7.512px;
        font-style: normal;
        font-weight: 400;
        line-height: 10.517px;
    }

    section.hero .form .submit-btn {
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 15.024px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    section.hero .features {
        margin-top: 28px;
        max-width: 329px;
    }

    section.hero .features .title,
    section.hero .features li {
        font-size: 13.007px;
        line-height: 19.51px;
    }

    section.hero .features ul {
        margin-top: 18px;
        padding-left: 6px;
    }

    section.hero .features ul > li {
        margin-top: 8px;
        color: #FFF;
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 18.209px;
    }

    section.hero .features ul > li::before {
        width: 12px;
        height: 12px;
        font-size: 8px;
        line-height: 13px;
        margin-right: 9px;
    }

    section.hero .call-btn {
        display: none !important;
    }

    section.footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    section.footer > .container {
        gap: 16.5px;
    }

    section.footer .copyright {
        font-size: 11.5px;
        line-height: 14.95px;
    }

    section.footer .footer-menu a {
        font-size: 11.5px;
        line-height: 14.95px;
    }

    section.hero .form .form-success .buttons .call-btn {
        flex-direction: column;
        gap: 0;
    }
}