.choose-option-container {
    width: 100%;
    position: relative;
    top: 0;
    height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.btnLogo {
    display: flex;
    height: 41px;
    margin-bottom: 20px;
}

.btnLogoHover {
    display: none;
    height: 40px;
    margin-bottom: 20px;
}

.btn:hover .btnLogo {
    display: none;
    height: 60px;
}

.btn:hover .btnLogoHover {
    display: block;
}

.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: 50px;
    text-align: center;
    color: var(--main-color);
    margin-top: 60px;
    margin-bottom: 10px;
}

.choose-option-container>.subtitle {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: var(--subtitle-color);
    display: none;
}

.buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.bottomImg {
    display: none;
}

.buttons-container .btn {
    width: calc(50% - 2px);
    height: calc(100vh - 362px);
    font-size: 23px;
    color: #00B0B9;
    border: 1px solid #00B0B9;
    text-transform: uppercase;
    box-shadow: none;
}

.buttons-container .btn:hover {
    background: #00B0B9;
    color: #ffffff;
}

.btn {
    width: 302px;
    height: 90px;
    display: flex;
    align-items: center;
    flex-direction: column;
    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: 0;
    font-weight: 500;
    font-size: 18px;
    color: #e0004d;
    font-size: 18px;
    cursor: pointer;
    transition: 0.5s all ease-in-out;
}

.btn:first-child {
    margin-right: 0;
}

.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: 0px;
    min-width: 63px;
}

.profileBtn:hover {
    background: transparent;
    border: solid 2px white;
}

@media screen and (max-width: 450px) {
    .buttons-container {
        flex-direction: column;
    }
    .btn img {
        height: 30px;
    }
    #open-gift-account img {
        height: 41px;
    }
    .buttons-container .btn {
        height: 100px;
        width: 80%;
        font-size: 17px;
    }
    .choose-option-container {
        justify-content: flex-start;
        height: auto;
        margin-bottom: 50px;
        /* margin-top: 30px; */
        top: 0;
        flex-direction: column;
        vertical-align: top;
    }
    #content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    .choose-option-container>.title {
        font-weight: 500;
        font-size: 44.58px;
        line-height: 57px;
        margin-bottom: 0;
        margin-top: 20px;
    }
    .choose-option-container>.subtitle {
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        margin-top: 5px;
    }
    .buttons-container {
        margin-top: 20px;
    }
    .btn:first-child {
        margin-right: 0;
        margin-bottom: 20px;
        height: 100px;
    }
    .btn {
        height: 60px;
        width: 250px;
    }
    .background-img {
        display: none;
    }

    .profileInfo {
        padding-top: 20px;
        height: auto;
        line-height: 30px;
        width: 94%;
        padding-left: 3%;
        padding-right: 3%;
        flex-direction: column;
        padding-bottom: 20px;
    }
    .profileInfo p {
        line-height: 18px;
        height: 72px;
        margin-top: 15px;
        margin-bottom: 4px;
        font-size: 12px;
    }
    .profileBtn {
        padding-left: 15px;
        padding-right: 15px;
        height: 16px;
        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; */
    }
}