header .container {
    justify-content: center;
}

.flow {
    padding: var(--spacing) 0!important
}

.flow .container {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) * 2);
}

.flow .section-title {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing) / 2);
    margin-bottom: 0;
}

h1 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 0;
}

.unable-to-assist {
    display: none;
}

.uta-inner {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.uta-inner p {
    margin: 0;
}

.form-progress {
    position: relative;
    width: 100%;
    height: 5px;
    min-height: 5px;
    background-color: var(--color-snow-gray);
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    top: 0;
    width: auto;
    height: 100%;
    background-color: var(--color-sky-blue);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tab-question {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: var(--spacing);
}

.tab-question i {
    display: block;
    font-size: 16px;
}

.tab-answers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing);
    margin-bottom: var(--spacing);
}

.tab[data-tab="4"] .tab-answers {
    align-items: flex-start;
}

.tab-answers-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.tab-answer-btn {
    cursor: pointer;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-family: inherit;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-light-blue);
    background-color: var(--color-selective-yellow);
    border: 3px solid var(--color-selective-yellow);
    padding: 15px 20px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.tab-answer-btn:hover {
    background-color: transparent;
    color: var(--color-selective-yellow);
}

input, select, textarea {
    position: relative;
    width: 100%;
    font-size: 16px;
    background-color: var(--color-snow-gray);
    border: 0;
    padding: 15px 20px;
    outline: 0 !important;
}

input[name="phone"] {
    padding-left: 52px!important;
}

.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
    display: none;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent;
}

textarea {
    height: 140px;
}

button.cta {
    padding: 15px 20px;
    width: 100%;
    cursor: pointer;
}

button.cta:disabled {
    background-color: var(--color-latte);
    border-color: var(--color-latte);
    pointer-events: none;
}

.iti {
    width: 100%;
}

.error-row {
    margin-top: var(--spacing);
    color: var(--color-royal-blue);
    font-weight: 500;
}

@media screen and (max-width: 750px) {
    body {
        font-size: 16px;
    }
    h1 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .25px;
    }
    .section-title p {
        font-size: 14px;
    }
    .tab-answers {
        flex-direction: column;
        gap: calc(var(--spacing) / 1.5);
        margin-bottom: calc(var(--spacing) / 1.5);
    }
    .tab-answers-inner {
        gap: calc(var(--spacing) / 1.5);
    }
    .flow .container {
        gap: var(--spacing);
    }
    .flow {
        padding-top: 0 !important;
    }
    .tab-question {
        font-size: 24px;
    }
}