.page-container {
    border-bottom: 13px solid #D9D9D9;
    position: relative;
}

.page-container .page-container-inter {
    padding: 23px 50px 82px;
}

@media (max-width: 767px) {
    .page-container .page-container-inter {
        padding: 16px;
    }
}

.page-container:before {
    content: "";
    display: block;
    height: 13px;
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 30%;
    background-color: var(--blue);
}

.get-started-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .get-started-header  {
        display: flex;
    }

    .get-started-header > div:first-child,
    .get-started-header > div:last-child{
        display: none;
    }

    .get-started-header > div:nth-child(2){
        flex-grow: 1;
    }
}

.page-container.step-1 {
    background: url(../images/get-started-step-1-left.png) left -20px no-repeat;
}

.page-container.step-1 .page-container-inter {
    background: url(../images/get-started-step-1-right.png) right -50px no-repeat;
}

@media (max-width: 992px) {
    .page-container.step-1 {
        background: none
    }

    .page-container.step-1 .page-container-inter {
        background: none
    }
}

.get-started-header figure {
    padding-top: 10px;
    text-align: center;
    margin-bottom: 16px;
}

.get-started-header .steps {
    display: flex;
    justify-content: space-between;
    width: 420px;
    margin: auto;
}

@media (max-width: 767px) {
    .get-started-header .steps {
        width: 100%;
    }
}

.get-started-header .steps .step {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 110px;
    position: relative;
}

.get-started-header .steps .step:after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background-color:  var(--gray);
    position: absolute;
    top: 25px;
}

.get-started-header .steps .step:first-child::after {
    left: 50%;
}

.get-started-header .steps .step:last-child:after {
    right: 50%;
}
.get-started-header .steps .step div {
    display: flex;
    width: 56px;
    height: 56px;
    border: 1px solid transparent;
    padding: 1px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-color: #fff;
}

.get-started-header .steps .step div span {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--gray);
    color: #000;
    font-family: var(--font1);
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -5%;
    border-radius: 50%;
}

.get-started-header .steps .step strong {
    font-family: var(--font1);
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #9F9F9F;
}

.get-started-header .steps .step.active div{
    border-color: var(--blue);
}

.get-started-header .steps .step.active div span {
    background-color: var(--blue);
    color: #fff;
}

.get-started-header .steps .step.active strong {
    color: #000;
}

.get-started-title {
    text-align: center;
    margin-bottom: 35px;
}

.get-started-title h1 {
    font-family: var(--font1);
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.05em;
    color: #000000;
    margin-bottom: 5px;
}

.get-started-title p {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #000000;
}

.get-started-title p strong {
    font-weight: 600;
}

.get-started-form {
    max-width: 960px;
    margin: 0 auto 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

@media (max-width: 767px) {
    .get-started-form {
        margin-bottom: 100px;
    }
}

.get-started-form > div {
    font-family: 'poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -0.05em;
    color: #000000;
    gap: 10px;
    display: flex;
}


@media (max-width: 767px) {
    .get-started-form > div {
        font-size: 18px;
        line-height: 1.3em;
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.get-started-form > div input[type="text"],
.get-started-form > div input[type="number"] {
    border-width: 0 0 3px;
    padding: 0;
    border-color: var(--blue);
    border-style: dashed;
    color: var(--blue);
    font-family: 'poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.05em;
    background: transparent url(../images/icon-edit.png) no-repeat right center;
    padding-right: 10px;
}

.get-started-form > div input[type="number"] {
    width: 70px;
}

.get-started-form > div input[type="text"] {
    width: 190px;
}

.get-started-form > div select{
    border-width: 0 0 3px;
    padding: 0;
    border-color: var(--blue);
    border-style: dashed;
    color: var(--blue);
    font-family: 'poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.05em;
    background: transparent url(../images/select-arrow.png) right center no-repeat;
    padding-right: 20px;
}


@media (max-width: 767px) {
    .get-started-form > div input[type="text"],
    .get-started-form > div input[type="number"] {
        font-size: 18px;
        line-height: 30px;
        background: transparent;
        padding-right: 0;
        line-height: 1.3em;
    }

    .get-started-form > div input[type="number"] {
        width: 50px;
    }

    .get-started-form > div input[type="text"] {
        width: 100px;
    }

    .get-started-form > div select{
        font-size: 18px;
        line-height: 1.3em;
        letter-spacing: -0.05em;
        padding-right: 20px;
    }
}

.get-started-form > div input[type="text"]:focus,
.get-started-form > div select:focus {
    box-shadow: none;
}

.get-started-form > div select option {
    font-size: 18px;
}

.get-started-form > div .radiogroup {
    display: flex;
    gap: 10px;
}

.get-started-form > div .radiogroup label input {
    display: none;
}

.get-started-form > div .radiogroup label span {
    background: #FFFFFF;
    border: 1px solid var(--blue);
    border-radius: 9px;
    box-shadow: 4px 4px 0px 1px #46C3CD;
    font-family: var(--font1);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #1F1F1B;
    padding: 7px 11px;
    display: inline-flex;
    cursor: pointer;
}

.get-started-form > div .radiogroup label {
    cursor: pointer;
}

.get-started-form > div .radiogroup label input[type="radio"]:checked + span {
    background-color: var(--blue);
    color: #fff;
    box-shadow: 4px 4px 0px 1px #2B838B;
}

.get-started-form-button {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .get-started-form-button  {
        margin-bottom: 50px;
    }
}

.autocomplete-suggestions {
    border:1px solid #ccc;
    max-height:180px;
    overflow-y:auto;
    background:#fff;
    position:absolute;
    z-index:9999;
    width:100%;
    top: 100%;
}

.autocomplete-suggestions:not(.active) {
    display: none;
}

.autocomplete-suggestions div {
    padding:8px;
    cursor:pointer;
    text-align: left;
    font-size: 20px;
}

@media (max-width: 767px) {
    .autocomplete-suggestions div {
        font-size: 16px;
    }
}

.autocomplete-suggestions div:hover {
    background:#f0f0f0;
}

.the-breed {
    position: relative;
}
