* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
}

:root {
    --theme-color: #003d7f;
    --white-color: #ffffff;
}

/* header css start */
.header {
    padding: 10px 0;
    border-bottom: 1px solid #d8d8d8;
    background-color: #f0f0f0;
}

.header .header-right-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.order-theme-btn {
    color: var(--white-color) !important;
    background-color: var(--theme-color);
    padding: 12px 20px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 400;
    border: 2px solid var(--theme-color);
    transition: all ease 0.3s;
    text-transform: uppercase;
}

.order-theme-btn:hover {
    color: var(--theme-color) !important;
    background-color: transparent;
    border: 2px solid var(--theme-color);
}

/* header css end */

.order-pages-sec {
    padding: 50px 0px;
}

.order-pages-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.order-pages-content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #444956;
}

.order-pages-content p {
    font-size: 14px;
    font-weight: 400;
    color: #767984;
}


.order-pages-content ul {
    margin-left: 20px;
}

.order-pages-content ul li {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #767984;
}

/* order footer css start */
.footer {
    background-color: #16171a;
    padding: 15px 0px;
}

.footer .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--white-color);
}

.footer p {
    margin-bottom: unset;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
}

.footer a {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

/* order footer css end */

.thankyou_sec {
    padding: 100px 0;
    height: 85vh;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.main-thankyou {
    text-align: center;
}

.main-content__checkmark {
    font-size: 9.75rem;
    line-height: 1;
    color: #e92747;
}

.main-thankyou h1 {
    font-size: 100px;
    font-weight: 800;
}

.start_live_chat {
    background-color: var(--theme-color);
    color: var(--white-color) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none !important;
    border-radius: 5px;
}

@media(max-width:414px) {
    .header a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .order-theme-btn {
        font-size: 14px;
        padding: 12px 14px;
    }

    .header a img {
        width: 150px;
    }

    .footer p {
        text-align: center;
    }
    .footer .footer-links{
        justify-content: center;
        margin-top: 10px;
    }
}

@media(max-width:375px) {
    .order-theme-btn {
        padding: 12px 9px;
        font-size: 13px;
    }
}

@media(max-width:360px) {
    .order-theme-btn {
        padding: 12px 8px;
        font-size: 12px;
    }
}
