/* sova-thank-you-page */

/* header */

.header-sec-2 {
    padding: 14px 0;
    background-color: #fbfbfb;
    border-bottom: 1px solid #bbbbbb;
}

.header-sec-2 .container {
    max-width: 100%;
    padding: 0 6rem;
}

.header-sec-2 .header-main-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-sec-2 .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.header-sec-2 .logo img {
    max-width: 224px;
    height: auto;
    display: block;
    padding-bottom: .2rem;
}

.header-sec-2 .logo span {
    font-size: 14px;
    color: #556270;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.header-sec-2 .hdr-bck-btn a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 17px;
    font-weight: 600;
    color: #0d1b3e;
    letter-spacing: 0.02rem;
    transition: color 0.3s ease;
}

.header-sec-2 .hdr-bck-btn a img {
    width: 23px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(7%) sepia(31%) saturate(3691%) hue-rotate(206deg) brightness(113%) contrast(98%);
}

.header-sec-2 .hdr-bck-btn a:hover img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(58%) saturate(4619%) hue-rotate(201deg) brightness(100%) contrast(101%);
    transition: 0.4s ease-in;
}

.header-sec-2 .hdr-bck-btn a:hover {
    color: #0056b3;
}

/* header */

/* baner */

.thnk-u-bnr-sec {
    position: relative;
    overflow: clip;
    background: #f5f6fa;
}

.thnk-u-bnr-sec .thnk-u-content {
    padding-right: 20px;
}


.thnk-u-bnr-sec .thnk-u-content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: 0.1rem;
}

.thnk-u-bnr-sec .thnk-u-content .tq-bnr-sub-tle {
    font-size: 22px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 14px;
    display: inline-block;
    letter-spacing: 0.06rem;
}


.thnk-u-bnr-sec .green-line {
    width: 60px;
    height: 4px;
    background-color: #10b981;
    border-radius: 2px;
    margin-bottom: 27px;
}

.thnk-u-bnr-sec .thnk-u-content p {
    font-size: 1.7rem;
    color: #0b2545;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.02rem;
}

.thnk-u-bnr-sec .thnk-u-img-wrapper {
    position: relative;
    width: 100%;
    display: inline-block;
}

.thnk-u-bnr-sec .thnk-u-img-wrapper .main-img {
    width: 100%;
    height: auto;
    display: block;
}


.thnk-u-bnr-sec .laptop-screen-content {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: 44%;
    height: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}


/* .thnk-u-bnr-sec .screen-check-icon {
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin-bottom: 12px;
    transform: scale(0);
    animation: popCheckIcon 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards;
} */

/* .thnk-u-bnr-sec .screen-check-icon i {
    font-size: 20px;
    color: #ffffff;
} */

/* @keyframes popCheckIcon {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
} */


.thnk-u-bnr-sec .screen-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0;
    line-height: 1.3;
    opacity: 0;
    animation: fadeInText 1.5s ease 1.5s forwards;
}


@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.check-icon-animated .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #2563eb;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.check-icon-animated .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #2563eb;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #2563eb;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.check-icon-animated .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #fff;
    }
}


/* baner */

/* features */

.tq-pg-feat {
    padding: 6rem 0;
}

.tq-pg-feat .tq-pg-feat-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
    border: 1px solid #f1f5f9;
}


.tq-pg-feat .feat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.tq-pg-feat .icon-box {
    width: 61px;
    height: 61px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tq-pg-feat .icon-box i {
    font-size: 28px;
    color: var(--red);
}

.tq-pg-feat .feat-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #021730;
    margin-bottom: 7px;
    line-height: 1.5;
    letter-spacing: 0.02rem;
}

.tq-pg-feat .feat-content p {
    font-size: 1.4rem;
    color: #5b6778;
    line-height: 1.6;
    font-weight: 400;
}


.tq-pg-feat .feat-col {
    position: relative;
}

.tq-pg-feat .feat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: #e2e8f0;
}


/* features */

/* cta */

.tq-pg-cont-cta {
    padding: 25px 0;
    background-color: #f4f7fe;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.tq-pg-cont-cta .cta-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tq-pg-cont-cta .cta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.tq-pg-cont-cta .cta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background-color: #cbd5e1;
}

.tq-pg-cont-cta .cta-icon i {
    font-size: 2.5rem;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tq-pg-cont-cta .cta-text {
    display: flex;
    flex-direction: column;
}

.tq-pg-cont-cta .cta-text span,
.tq-pg-cont-cta .cta-text a {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    letter-spacing: 0.02rem;
}

.tq-pg-cont-cta .cta-text a:hover {
    color: var(--red);
}

.tq-pg-cont-cta .cta-social-item {
    gap: 15px;
}

.tq-pg-cont-cta .social-label {
    font-size: 1.6rem;
    font-weight: 600;
    color: #334155;
}

.tq-pg-cont-cta .social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tq-pg-cont-cta .social-icons a {
    width: 32px;
    height: 32px;
    background-color: var(--red);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tq-pg-cont-cta .social-icons a:hover {
    background-color: #021730;
    transform: translateY(-2px);
}

.tq-pg-cont-cta .container {
    max-width: 100%;
    padding: 0 10rem;
}

/* cta */

/* copyright */

.cpyright-sec-2 {
    padding: 1.9rem;
    background: var(--red);
}

.cpyright-sec-2 p {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02rem;
}

.cpyright-sec-2 p a:hover {
    color: #2563eb !important;
    border-color: #2563eb !important;
    transition: 0.4s ease-in;

}

/* copyright */

/* responsive */

@media(max-width:1540px) {

    .thnk-u-bnr-sec .thnk-u-content h2 {
        font-size: 50px;
        margin-bottom: 3px;
    }

    .thnk-u-bnr-sec .thnk-u-content .tq-bnr-sub-tle {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .header-sec-2 .hdr-bck-btn a {
        font-size: 16px;
    }

    .tq-pg-feat {
        padding: 4rem 0;
    }

    .tq-pg-feat .icon-box {
        width: 50px;
        height: 50px;
    }

    .tq-pg-feat .icon-box i {
        font-size: 24px;
        color: var(--red);
    }

    .tq-pg-feat .feat-content h3 {
        font-size: 15.5px;
    }

    .tq-pg-cont-cta .cta-text span,
    .tq-pg-cont-cta .cta-text a,
    .tq-pg-cont-cta .social-label {
        font-size: 15px;
    }

    .tq-pg-cont-cta .social-icons {
        gap: 8px;
    }

    .cpyright-sec-2 p {
        font-size: 16px;
    }

    .cpyright-sec-2 {
        padding: 1.6rem;
    }

    .tq-pg-cont-cta {
        padding: 23px 0;
    }


    .tq-pg-cont-cta .container {
        padding: 0 8rem;
    }

}

@media(max-width:1340px) {

    .thnk-u-bnr-sec .thnk-u-content h2 {
        font-size: 40px;
    }

    .thnk-u-bnr-sec .thnk-u-content .tq-bnr-sub-tle {
        font-size: 17px;
        margin-bottom: 5px;
    }

    .check-icon-animated .checkmark {
        width: 50px;
        height: 50px;
    }

    .header-sec-2 .logo img {
        max-width: 220px;
        padding-bottom: 0;
    }

    .thnk-u-bnr-sec .thnk-u-content p {
        font-size: 1.5rem;
        line-height: 1.7;
        margin-bottom: 0;
    }

    .tq-pg-feat .feat-content h3 {
        font-size: 15px;
    }

    .tq-pg-cont-cta .cta-text span,
    .tq-pg-cont-cta .cta-text a,
    .tq-pg-cont-cta .social-label {
        font-size: 14px;
    }

    .tq-pg-cont-cta .cta-icon i {
        font-size: 18px;
    }

    .cpyright-sec-2 p {
        font-size: 15px;
    }

    .header-sec-2 .container {
        padding: 0 4rem;
    }

    .tq-pg-cont-cta .container {
        padding: 0 6rem;
    }

}

@media(max-width:1199px) {

    .thnk-u-bnr-sec .thnk-u-content h2 {
        font-size: 35px;
        margin-bottom: 0;
    }

    .thnk-u-bnr-sec .thnk-u-content .tq-bnr-sub-tle {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .thnk-u-bnr-sec .green-line {
        width: 55px;
        height: 3px;
        background-color: #10b981;
        border-radius: 2px;
        margin-bottom: 20px;
    }

    .thnk-u-bnr-sec .thnk-u-content p {
        font-size: 1.45rem;
    }

    .thnk-u-bnr-sec .thnk-u-content {
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .thnk-u-bnr-sec {
        padding-top: 3rem;
    }


    .tq-pg-feat .feat-content p {
        font-size: 1.3rem;
    }

    .tq-pg-feat .feat-col {
        margin-bottom: 25px;
    }

    .tq-pg-feat .icon-box i {
        font-size: 22px;
    }

    .tq-pg-feat .feat-content h3 {
        font-size: 14px;
    }

    .tq-pg-cont-cta .social-icons a {
        width: 25px;
        height: 25px;
        font-size: 1.5rem;
    }

    .tq-pg-cont-cta .cta-item {
        padding-left: 2rem;
    }

    .tq-pg-cont-cta .cta-flex-wrapper {
        justify-content: center;
        gap: 2rem;
    }

    .thnk-u-bnr-sec .thnk-u-img-wrapper .main-img {
        max-width: 610px;
        margin: auto;
    }
}

@media (max-width: 991px) {
    .tq-pg-feat .feat-col:nth-child(2n)::after {
        display: none;
    }

    .tq-pg-feat .feat-col:last-child {
        margin-bottom: 0;
    }

    .tq-pg-feat .feat-col::after {
        display: none !important;
    }

    .check-icon-animated .checkmark {
        width: 50px;
        height: 50px;
    }

    .tq-pg-feat .feat-item {
        gap: 0;
        padding: 10px;
        flex-direction: column;
        text-align: center;
        height: 100%;
        align-items: center;
        border: 1px dotted var(--red);
        border-radius: 1.2rem;
    }

    .tq-pg-feat .tq-pg-feat-card {
        padding: 20px;
    }

    .tq-pg-feat .feat-col {
        margin-bottom: 0;
    }

    .tq-pg-feat {
        padding: 3rem 0;
    }

    .tq-pg-cont-cta .cta-item:not(:last-child)::after {
        display: none;
    }

    .cpyright-sec-2 {
        padding: 1.5rem;
    }


}

@media (max-width: 575px) {
    .header-sec-2 .container {
        padding: 0 2rem;
    }

    .header-sec-2 .logo img {
        max-width: 186px;
        padding-bottom: 0;
        margin: auto;
    }

    .header-sec-2 .logo span {
        font-size: 13px;
    }

    .header-sec-2 .hdr-bck-btn a {
        font-size: 15px;
        line-height: 1.5;
    }

    .header-sec-2 .header-main-cont {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .thnk-u-bnr-sec .thnk-u-content h2 {
        font-size: 28px;
    }

    .thnk-u-bnr-sec .thnk-u-content .tq-bnr-sub-tle {
        font-size: 13px;
        margin-bottom: 0;
    }

    .thnk-u-bnr-sec .thnk-u-content p {
        font-size: 1.35rem;
    }

    .thnk-u-bnr-sec .green-line {
        margin-bottom: 15px;
    }

    .thnk-u-bnr-sec .thnk-u-img-wrapper .main-img {
        max-width: 100% !important;
    }

    .check-icon-animated .checkmark {
        width: 27px;
        height: 27px;
    }

    .thnk-u-bnr-sec .screen-text {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .thnk-u-bnr-sec .laptop-screen-content {
        top: 52%;
    }

    .tq-pg-cont-cta .cta-flex-wrapper {
        justify-content: start;
        gap: 2.2rem;
    }

    .cpyright-sec-2 {
        padding: 1rem;
    }

    .tq-pg-cont-cta .container {
        padding: 0 3rem;
    }

    .cpyright-sec-2 p {
        font-size: 14px;
    }

    .tq-pg-cont-cta-inner {
        display: flex;
        justify-content: center;
        text-align: center;
        max-width: 80%;
        margin: auto;
    }
}

/* responsive */

/* sova-thank-you-page */