.choose-option-container {
    width: 100%;
    position: relative;
    top: 0;
    /* height: calc(100vh - 150px); */
}

.background-img {
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: auto;
    min-height: 250px;
    /* margin-top: 50px; */
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
}

.choose-option-container>.title {
    font-weight: 400;
    font-size: 70px;
    text-align: center;
    color: var(--main-color);
    margin-top: 80px;
    margin-bottom: 10px;
}

.choose-option-container>.subtitle {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--subtitle-color);
}

.buttons-container {
    /* margin-top: calc(calc(100vh - 635px) / 2); */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    /* margin-bottom: calc(calc(100vh - 635px) / 2); */
    margin-top: 40px;
}

.btn {
    width: 302px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--button-color);
    box-shadow: 6.86667px 6.86667px 20.6px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 500;
    font-size: 18px;
    color: #003DA5;
    font-size: 18px;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
}

.btn:first-child {
    margin-right: 60px;
}

.bottomImg.desktopElement {
    width: 100%;
    vertical-align: baseline;
    position: relative;
    bottom: -5px;
}

.btn:hover {
    background: var(--button-color);
    color: #ffffff;
}

.profileInfo {
    display: flex;
    position: relative;
    color: white;
    line-height: 50px;
    justify-content: space-between;
    width: 85%;
    padding-left: calc(15vw / 2);
    padding-right: calc(15vw / 2);
    height: 50px;
    background-color: var(--main-color);
}

.profileInfo p {
    margin: 0;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    margin-right: 0;
    font-size: 13px;
    margin-left: 0;
}

.profileBtn {
    position: relative;
    display: inline-block;
    float: right;
    border: solid 2px var(--button-color);
    background-color: var(--button-color);
    height: 26px;
    font-size: 14px;
    margin: 0 !important;
    line-height: 26px;
    vertical-align: middle;
    margin-top: 10px !important;
    padding-left: 30px;
    padding-right: 30px;
    cursor: pointer;
    border-radius: 16px;
}

.profileBtn:hover {
    background: transparent;
    border: solid 2px white;
}

@media screen and (max-width: 450px) {
    .choose-option-container {
        height: auto;
        margin-bottom: 50px;
    }
    .choose-option-container>.title {
        font-weight: 500;
        font-size: 52.58px;
        line-height: 57px;
        margin-bottom: 0;
        margin-top: 50px;
    }
    .choose-option-container>.subtitle {
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        margin-top: 5px;
    }
    .buttons-container {
        margin-top: 40px;
    }
    .btn:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .btn {
        height: 60px;
        width: 250px;
    }
    .background-img {
        display: none;
    }
    #headerDummy {
        height: 105px !important;
    }
    .profileInfo {
        margin-top: 0;
        height: auto;
        line-height: 30px;
        width: 94%;
        padding-left: 3%;
        padding-right: 3%;
        flex-direction: column;
        padding-bottom: 15px;
    }
    .profileInfo p {
        line-height: 18px;
        height: 72px;
        margin-top: 14px;
        margin-bottom: 4px;
        font-size: 13px;
    }
    .profileBtn {
        padding-left: 15px;
        padding-right: 15px;
        height: 17px;
        padding-bottom: 8px;
        padding-top: 8px;
        margin-top: 0px !important;
        line-height: 18px;
        text-align: center;
        vertical-align: middle;
        font-size: 13px;
        /* margin-left: 10px !important; */
    }
}