/* QUOTE SUCCESS */

.banner_thank-you {
    position: relative;
    height: 100%;
    margin-top: 90px;
}

.banner_thank-you>figure.bg_thank-you-responsive {
    display: none;
}

.banner_thank-you>figure {
    position: relative;
    margin: 0;
    width: 100%;
}

.banner_thank-you>figure img {
    width: 100%;
}

.banner_thank-you-container {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
    z-index: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.banner_thank-you-container .thank-you-info {
    width: 300px;
    text-align: center;
    color: #FFF;
}

.banner_thank-you-container .thank-you-info .line {
    height: 4px;
    width: 150px;
    background-color: #1ef1c6;
    margin: 0 auto 20px auto;
    border-radius: 20px;
}

.banner_thank-you-container .thank-you-info h4 {
    font-size: 35px;
    color: #FFF;
    margin: 0;
}

.banner_thank-you-container .thank-you-info p {
    font-size: 20px;
    margin: 20px 0px;
}

.banner_thank-you-container .thank-you-info a {
    width: 200px;
    height: 45px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFF;
    font-size: 20px;
    position: relative;
    border: 4px solid transparent;
    border-radius: 40px;
    background: #171717;
    background-clip: padding-box;
}

.banner_thank-you-container .thank-you-info a::after {
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    background: linear-gradient(to right, #1ef1c6, #00d4ec, #00b0ff, #0082ff, #5634ed);
    content: '';
    z-index: -1;
    border-radius: 40px;
}

@media only screen and (max-width: 1400px) {
    .banner_thank-you-container {
        width: 1100px;
    }
}

@media only screen and (max-width: 1200px) {
    .banner_thank-you-container {
        width: 850px;
    }
}

@media only screen and (max-width: 1000px) {
    .banner_thank-you-container {
        width: 700px;
    }
}

@media only screen and (max-width: 800px) {
    .banner_thank-you-container {
        width: 500px;
    }
}

@media only screen and (max-width: 600px) {
    .banner_thank-you-container {
        width: 450px;
        justify-content: center;
        align-items: flex-end;
        padding: 0 0 80px 0;
    }

    .bg_thank-you-desktop {
        display: none;
    }

    .banner_thank-you>figure.bg_thank-you-responsive {
        display: flex;
    }
}

@media only screen and (max-width: 500px) {
    .banner_thank-you-container {
        width: 90%;
    }

    .banner_thank-you-container .thank-you-info .line {
        width: 140px;
    }

    .banner_thank-you-container .thank-you-info h4 {
        font-size: 30px;
    }

    .banner_thank-you-container .thank-you-info p {
        margin: 12px 0;
    }
}

@media only screen and (max-width: 400px) {
    .banner_thank-you-container .thank-you-info {
        width: 95%;
    }
}