@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
    color: #000;
}

.container {
    max-width: 1170px;
    width: 100%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}


.thank-you-section {
    padding: 100px 0;
}
.thank-you-section .thank-you-content {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thank-you-section .logo-wrap {
    width: 240px;
    margin: 0 auto;
}

.thank-you-section .logo-wrap img {
    width: 100%;
    height: 100%;
}

.thank-you-section .thank-text-wrap {
    padding: 40px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 14px 3px #88888830;
    border-radius: 10px;
    margin-top: 40px;
    width: 70%;
    margin: 0 auto;
}
.thank-you-section .heading-wrap h2 {
    font-size: 50px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
}

.thank-you-section .sub-heading-wrap h2 {
    font-size: 30px;
    font-weight: 600;
    color: #241071;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Signika", sans-serif;
}
.thank-you-section .sub-heading-wrap h5 {
    font-size: 24px;
    font-weight: 600;
    color: #5c5c5c;
    margin: 0;
    line-height: 1;
    font-family: "Signika", sans-serif;
}




/* Responsive CSS Start */

@media screen and (max-width: 992px) {
    .thank-you-section .thank-text-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .thank-you-section .thank-text-wrap {
        padding: 30px;
    }
    .thank-you-section .heading-wrap h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
    .thank-you-section .sub-heading-wrap h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .thank-you-section .thank-you-content p {
        font-size: 14px;
        margin: 30px 0 0 0;
    }
}

@media screen and (max-width: 480px) {
    .thank-you-section .logo-wrap {
        width: 160px;
    }

    .thank-you-section .thank-you-content {
        padding: 20px 0;
    }
    
    .thank-you-section .thank-text-wrap {
        padding: 20px 15px;
    }

    .thank-you-section .heading-wrap h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .thank-you-section .sub-heading-wrap h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    .thank-you-section .sub-heading-wrap h5 {
        font-size: 18px;
    }


}
@media screen and (max-width: 376px) {
    .thank-you-section .logo-wrap {
        width: 130px;
    }
    .thank-you-section .sub-heading-wrap h2{
        font-size: 16px;
    }
    .thank-you-section .sub-heading-wrap h5 {
        font-size: 16px;
    }
}
/* Responsive CSS End */