@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900;1000&display=swap');

/* ====================
1.	Reset
====================== */

* {
    margin: 0;
    padding: 0;
    line-height: inherit;
    outline: none;
    border: none;
}


/* =========================
2.	Global Settings
============================= */

:root {
    --thm-font: 'Nunito', sans-serif;
    --thm-base: #282828;
    --thm-text: #869199;
    /* --thm-text: #6a6f73; */
    --thm-hover: #008080;
    /* --thm-optional: #1EA69A; */
    --thm-light: #fdfcfc;
    --white: #ffffff;
    --gradient-color: linear-gradient(90deg, rgb(0, 111, 111) 0%, #008080 100%);
}

body {
    font-size: 16px;
    font-family: var(--thm-font);
    color: var(--thm-text);
    overflow-x: hidden;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus,
a:visited,
a:active {
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

button {
    outline: none !important;
    cursor: pointer;
}

p {
    margin-bottom: 0;
}

.thm-btn {
    display: inline-flex;
    background: var(--gradient-color);
    color: var(--white);
    font-weight: 600;
    padding: 8px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* filter: drop-shadow(-5px 15px 30px rgba(244, 25, 125, .35)); */
}

.thm-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 550px;
    height: 550px;
    margin: auto;
    background: #ffffff;
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    transform-origin: top center;
    transform: translateX(-50%) translateY(-5%) scale(.4);
    transition: transform 0.9s;
}

.thm-btn:hover {
    color: #ffffff;
}

.thm-btn:hover:before {
    transition: transform 1s;
    transform: translateX(-45%) translateY(0) scale(1);
    transform-origin: bottom center;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--thm-hover);
}

.form-check-input:checked {
    background-color: var(--thm-hover);
    border-color: var(--thm-hover);
}

.form-check-input:focus {
    box-shadow: none;
}

.form-control {
    padding: 8px 20px;
}

.form-select {
    padding: 8px 36px 8px 20px;
}

.btn-link {
    color: var(--thm-base);
    text-decoration: none;
}

.btn-link:hover {
    color: var(--thm-hover);
}


/* slick nav */

.slick-arrow {
    background: var(--thm-base);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 1;
    border-radius: 50px;
    transition: all 500ms ease;
}

.slick-arrow::before {
    color: var(--white);
    font-family: "Material Icons";
    font-size: 26px;
    opacity: 1;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background: var(--thm-hover);
}

.slick-arrow:hover::before {
    color: #ffffff;
}

.slick-prev {
    left: 20px;
}

.slick-prev::before {
    content: "\e5cb";
}

.slick-next {
    right: 20px;
}

.slick-next::before {
    content: "\e5cc";
}

.slick-slide {
    margin-left: 15px;
    margin-right: 15px;
}


/* slick nav end */


/* slick dots */

.slick-dots li {
    width: 10px;
    height: 10px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
}

.slick-dots li button::before {
    font-size: 12px;
    color: var(--thm-hover);
    width: 10px;
    height: 10px;
    content: '';
    background-color: var(--thm-hover);
}

.slick-dots li.slick-active button::before {
    color: var(--thm-hover);
    opacity: 1;
}


/* slick dots end*/

.spacer {
    margin-bottom: 100px;
}

.ts-backtotop-btn {
    display: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--thm-hover);
    border: 1px solid var(--thm-hover);
    color: var(--white);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    transition: all 0.3s ease-in-out;
}

.ts-backtotop-btn:hover {
    background-color: var(--thm-base);
    border-color: var(--thm-base);
    color: var(--white);
}


/* ======================
3.	Header
========================== */

.fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    z-index: 999;
    animation: smoothScroll 0.5s ease-in-out;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

.ts-header-section {
    background-color: #ffffff;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(41, 99, 112, .06);
}

.ts-header-section .navbar {
    padding: 10px 0;
}

.navbar .navbar-brand {
    padding: 0;
}

.navbar .nav-link {
    color: var(--thm-base);
    font-weight: 500;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--thm-hover);
}

.nav-item:not(:last-child) {
    margin-right: 20px;
}

.navbar-toggler {
    border: 1px solid var(--thm-base);
    color: var(--thm-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    width: 40px;
    height: 35px;
    line-height: 35px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 25px;
    height: 3px;
    background-color: var(--thm-base);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler-icon:last-child {
    margin-bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    margin-bottom: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
    transform: rotate(-45deg);
    margin-top: -5px;
}

.ts-mobile-menu-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    transition: all 0.3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
}

.ts-site.menu-active {
    overflow: hidden;
}


/* ------------ main css --------- */

.ts-slide-title {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--thm-base);
    font-weight: 800;
}

.ts-slide-list {
    margin-bottom: 20px;
    padding-left: 32px;
}

.ts-slide-list li {
    margin-bottom: 5px;
    font-size: 18px;
    list-style: disc;
    /* font-size: 18px; */
}

.ts-main-section {
    background: #f2f9f9;
    position: relative;
    padding: 30px 0;
}

.ts-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F1F3F8;
    padding: 20px;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.ts-info-box:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: var(--thm-hover);
    transition: 0.6s all ease;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.ts-info-box:hover:before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.ts-info-icon i {
    width: 50px;
    border: 2px solid;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    color: var(--thm-hover);
}

.ts-info-content {
    color: var(--thm-base);
}

.ts-info-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 600;
}

.ts-info-content p {
    opacity: 0.7;
    margin-bottom: 0px;
}

.ts-card-section {
    background: #F2F0EF;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.heading {
    margin-bottom: 50px;
}

.heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 800;
    text-align: center;
    color: var(--thm-hover);
}

.heading p {
    text-align: center;
}

.ts-feature-card {
    background: #ffffff;
    padding: 20px 20px;
    height: 100%;
    /* margin-bottom: 25px; */
    transition: 0.6s all ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(34, 86, 102, .07);
    /* box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; */
}

.ts-feature-card::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: var(--thm-hover);
    transition: 0.6s all ease;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.ts-feature-card:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.ts-feature-card .ts-feature-image {
    margin-bottom: 20px;
}

.ts-feature-card .ts-feature-content h6 {
    color: var(--thm-base);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 22px;
}

.ts-counter-section {
    background: #f2f9f9;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.ts-counter-box {
    padding: 20px;
    background-color: var(--white);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.ts-counter-box:last-child {
    margin-bottom: 0;
}

.ts-counter-box .icon {
    margin-top: -50px;
}

.ts-counter-box .icon i {
    display: inline-block;
    background: var(--gradient-color);
    border-radius: 10px;
    width: 92px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    font-size: 38px;
    color: var(--white);
}

.ts-counter-box .content h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--thm-base);
}

.ts-counter-box .content p {
    font-size: 18px;
}

.td-about-wrapper {
    margin-bottom: 40px;
}

.ts-about-contant .title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--thm-base);
    font-weight: 800;
}

.ts-about-contant .desc {
    font-size: 18px;
    margin-bottom: 15px;
}


/* .ts-why-survey-section {
    background: #f2f9f9;
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
} */

.ts-why-servey-box .icon {
    color: var(--thm-hover);
    margin-bottom: 15px;
    font-size: 28px;
}

.ts-why-servey-box .title {
    font-size: 22px;
    color: var(--thm-base);
    margin-bottom: 10px;
    font-weight: 700;
}

.ts-newsletter {
    background: var(--gradient-color);
    padding: 24px 24px;
    /* box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px; */
}

.ts-newsletter .heading h2 {
    color: var(--white);
}

.ts-newsletter .thm-btn {
    background: var(--white);
    color: var(--thm-hover);
}

.ts-newsletter .thm-btn::before {
    background: var(--thm-hover);
}


/* footer css */

.ts-footer-section {
    background: #f2f9f9;
    position: relative;
}

.ts-footer-center {
    padding-top: 40px;
    padding-bottom: 40px;
}

.ts-footer-about .ts-footer-logo {
    display: inline-block;
    margin-bottom: 10px;
}

.ts-footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.ts-footer-social .ts-footer-social-link {
    background-color: var(--thm-hover);
    color: var(--white);
    position: relative;
    text-align: center;
    font-size: 16px;
    display: block;
    height: 35px;
    width: 35px;
    line-height: 35px;
    transition: all 0.3s ease;
}

.ts-footer-social .ts-footer-social-link:hover {
    background-color: var(--thm-base);
}

.ts-footer-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 24px;
}

.ts-footer-block:last-child {
    margin-bottom: 0px;
}

.ts-footer-block .ts-footer-block-title {
    margin-bottom: 0;
    font-size: 20px;
    color: var(--thm-hover);
    position: relative;
    width: 150px;
}

.ts-footer-block .ts-footer-block-title::after {
    content: '';
    width: 2px;
    height: 100%;
    background-color: var(--thm-hover);
    position: absolute;
    top: 0;
    right: 0;
}

.ts-footer-block .ts-footer-link {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ts-footer-block .ts-footer-link a {
    color: var(--thm-base);
    font-weight: 500;
    transition: all 0.3s ease;
}

.ts-footer-block .ts-footer-link a:hover {
    color: var(--thm-hover);
}

.footer-bottom .footer-bootom-inner {
    border-top: 1px solid #D9D9D9;
    padding: 20px 0;
}

.footer-bottom .copyright-block {
    font-size: 14px;
}


/* login css */

.user-section {
    padding: 80px 0;
}

.form-box {
    background: #f2f9f9;
    /* box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px; */
    padding: 45px 30px;
    border: 1px solid var(--thm-hover);
}

.user-section .form-title {
    margin-bottom: 30px;
    text-align: center;
}

.user-section .form-title h3 {
    font-size: 28px;
    color: var(--thm-base);
    font-weight: 700;
    margin-bottom: 5px;
}

.form-check a {
    color: var(--thm-hover);
}

.form-box .user-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thm-btn-link {
    color: var(--thm-hover);
}

.thm-btn-link:hover {
    color: var(--thm-base);
}

.user-section .user-content .user-heading {
    text-align: center;
}

.user-section .user-content .user-heading h3 {
    font-weight: 600;
    font-size: 28px;
    color: var(--thm-base);
    margin-bottom: 5px;
}

.user-section .user-content .user-image {
    margin-top: 24px;
    text-align: center;
}


/* ================how it work ============== */

.ts-page-header-section {
    padding: 60px 0;
    background-color: #f2f9f9;
}

.ts-page-header-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--thm-base);
    font-weight: 800;
}

.ts-page-header-description {
    font-size: 18px;
    margin-bottom: 10px;
}

.ts-page-header-image {
    text-align: right;
}

.ts-process-section {
    padding: 80px 0;
}

.ts-process-card {
    background-color: #f2f9f9;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

.ts-process-image {
    margin-bottom: 24px;
}

.ts-process-title {
    font-size: 22px;
    color: var(--thm-hover);
    font-weight: 600;
    margin-bottom: 15px;
}

.ts-process-about-section {
    padding: 80px 0;
}

.ts-process-about-background {
    background-color: #f2f9f9;
}

.ts-process-about-title {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--thm-base);
    font-weight: 800;
}

.ts-process-about-description {
    margin-bottom: 10px;
}

.ts-process-about-image {
    text-align: center;
}

.ts-call-to-action-section {
    padding: 80px 0;
}

.ts-contact-section {
    padding: 80px 0;
}


/* =========FAQ Page============== */

.ts-faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: 1px solid var(--thm-hover);
    margin-bottom: 15px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    background: #f2f9f9;
    font-weight: 600;
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type {
    border-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:not(:first-of-type) {
    border-radius: 0;
}

.accordion-item:not(:first-of-type) {
    border: 1px solid var(--thm-hover);
}

.accordion-button:not(.collapsed) {
    background-color: var(--thm-hover);
    color: var(--white);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../image/faq-arrow-active.svg');
}


/* =================privacy & term page================== */

.page-wrapper {
    padding: 80px 0;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content p b {
    color: var(--thm-base);
    margin-bottom: 5px;
    display: inline-block;
}

.page-content a {
    color: var(--thm-base);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.page-content a:hover {
    color: var(--thm-hover);
}

/* 20-08-2024 */

 .ts-main-slider {
    user-select: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.ts-error-section {



    padding: 100px 0;



}







.ts-error-content {



    text-align: center;



}







.ts-error-image {



    text-align: center;



    margin-bottom: 20px;



}







.ts-error-image-heading {



    font-size: 280px;



    font-weight: 700;



    color: var(--thm-base);



    line-height: 280px;



    margin-bottom: 0;



}







.ts-error-image-heading span {



    color: var(--thm-hover);



}







.ts-error-title {



    font-size: 40px;



    color: var(--thm-base);



    font-weight: 700;



}







.ts-error-description {



    margin-bottom: 20px;



}







.ts-error-buttons {



    display: flex;



    gap: 15px;



    justify-content: center;



    align-items: center;



}
/* =======================
Media Query
======================= */

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .ts-slide-content {
        padding-right: 50px;
    }
    .ts-newsletter-image img {
        max-width: 330px;
    }
    .navbar .nav-link.active::after {
        content: '';
        height: 2px;
        width: 80%;
        background-color: var(--thm-hover);
        position: absolute;
        bottom: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) {
    .ts-slide-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .spacer {
        margin-bottom: 70px;
    }
    .ts-info-btn-section .col-12:not(:last-child) .ts-info-box {
        height: calc(100% - 24px);
        margin-bottom: 24px;
    }
    .heading {
        margin-bottom: 30px;
    }
    .heading h2 {
        font-size: 30px;
    }
    .ts-feature-card-section .col-12:not(:last-child) .ts-feature-card {
        height: calc(100% - 24px);
        margin-bottom: 24px;
    }
    .ts-counter-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .ts-about-contant .title {
        font-size: 26px;
    }
    .ts-why-servey-box {
        text-align: center;
    }
    .ts-why-survey-section .col-12:not(:last-child) .ts-why-servey-box {
        margin-bottom: 24px;
    }
    .ts-footer-about {
        margin-bottom: 24px;
    }
    .user-section {
        padding: 50px 0;
    }
    .ts-process-section {
        padding: 60px 0;
    }
    .ts-process-section .col-12:not(:last-child) .ts-process-card {
        margin-bottom: 24px;
        height: calc(100% - 24px);
    }
    .ts-process-about-section {
        padding: 60px 0;
    }
    .ts-call-to-action-section {
        padding: 60px 0;
    }
    .ts-faq-section {
        padding: 60px 0;
    }
    .ts-faq-wrapper#tsFaqWrapperLeft {
        margin-bottom: 15px;
    }
    .page-wrapper {
        padding: 60px 0;
    }
    .ts-contact-section {
        padding: 60px 0;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        left: unset;
        height: 100vh;
        width: 270px;
        max-width: 100%;
        transition: all 0.3s ease-in-out;
        z-index: 100;
    }
    .navbar-nav {
        width: 100%;
        padding: 80px 20px 20px 20px;
        display: flex;
        overflow-y: auto;
        background-color: var(--white);
        height: 100vh;
        transition: all 0.3s ease-in-out;
        position: relative;
        z-index: 101;
    }
    .navbar .navbar-toggler {
        z-index: 101;
    }
    .navbar-collapse.show {
        right: 0;
    }
    .navbar-collapse.show .ts-mobile-menu-overlay {
        visibility: visible;
        opacity: 1;
    }
    .navbar .nav-item {
        margin-right: 0px;
    }
}

@media (max-width: 767px) {
    .spacer {
        margin-bottom: 40px;
    }
    .navbar .navbar-brand img {
        max-width: 160px;
    }
    .ts-slide-title {
        font-size: 24px;
    }
    .heading h2 {
        font-size: 26px;
    }
    .ts-brand-section {
        padding: 10px 0;
    }
    .ts-counter-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .ts-counter-image {
        margin-bottom: 80px;
    }
    .td-about-wrapper {
        margin-bottom: 24px;
    }
    .ts-newsletter-image {
        margin-top: 24px;
    }
    .ts-footer-block {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .ts-footer-block .ts-footer-block-title {
        width: auto;
    }
    .ts-footer-block .ts-footer-block-title::after {
        display: none;
    }
    .ts-footer-block .ts-footer-link {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .user-section .form-title h3 {
        font-size: 24px;
    }
    .user-section {
        padding: 30px 0;
    }
    .ts-page-header-section {
        padding: 40px 0;
    }
    .ts-process-section {
        padding: 40px 0;
    }
    .ts-process-about-section {
        padding: 40px 0;
    }
    .ts-call-to-action-section {
        padding: 40px 0;
    }
    .ts-page-header-title {
        font-size: 24px;
    }
    .ts-process-about-image {
        margin-bottom: 24px;
    }
    .ts-process-about-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .ts-faq-section {
        padding: 40px 0;
    }
    .accordion-body {
        padding: 10px;
    }
    .page-wrapper {
        padding: 40px 0;
    }
    .form-box {
        padding: 35px 20px;
    }
    .ts-contact-section {
        padding: 40px 0;
    }
}

.color-red{
    color:red;
}