.thankYouBoxcard {
    position: relative;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 20px;
    z-index: 10;
    overflow: hidden;
    text-align: center;
}

.thanckcircle2 {
    width: 150px;
    height: 150px;
    border: 20px solid #1b519818;
    position: absolute;
    z-index: -1;
    border-radius: 300px;
    left: -50px;
    bottom: -50px;

}

.thanckcircle {
    width: 20px;
    height: 20px;
    border: 5px solid #1b51983e;
    position: absolute;
    z-index: -1;
    border-radius: 300px;
    left: 50px;
    top: 50px;
    animation: circlethank 35s linear infinite;
}

@keyframes circlethank {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(20px, 50px);
    }

    30% {
        transform: translateX(200px);
    }

    50% {
        transform: translateY(200px);
    }

    60% {
        transform: translateX(50px);
    }

    80% {
        transform: translate(50px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.thankYouBoxcard h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-weight: 500;
    color: #323232;
}


@media (max-width:575px) {
    .thankYouBoxcard h2 {
        font-size: 30px !important;
    }
}

.thankYouBoxcard p {
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    padding: 25px 0 0;
    color: #7e7e7e;
}

.thankYouBoxcard-txtThank {
    position: relative;
    padding: 25px 0 50px;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 3px;
    flex-direction: column;
}

.thankYouBoxcard-txtThank span:first-child {
    font-size: 20px;
    color: #323232;
}

.thankYouBoxcard-txtThank span:last-child {
    font-size: 13px;
    color: #7e7e7e;
}

.thankYouBoxcard .gohomeBtn {
    padding: 10px 30px;
    position: relative;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 0;
    font-size: 15px;
    border: none;
    text-decoration: none;
    min-width: 180px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 300px;
    background-color: #1b5298;
    box-shadow: #1b51987e 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: transform 0.2s ease;
}

.thankYouBoxcard .gohomeBtn:hover {
    transform: scale(1.05, 1.05) translate(-10px, 10px);
}

.thankYouBoxcard a {
    color: #27a5de;
    text-decoration: underline;
}


.thankYouBoxcard .gohomeBtn:focus {
    outline: none !important;
}