/* poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* roboto */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wdth,wght@75..100,100..900&display=swap");
/* rock salt  */
@import url("https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap");
/* Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
/* outfit  */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* fontowsome  */
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-shims.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v5-font-face.min.css?token=7ca6a895ef);
@import url(https://ka-p.fontawesome.com/releases/v6.5.1/css/pro-v4-font-face.min.css?token=7ca6a895ef);

:root {
    --primery: #3687F2;
    --secondary: #1E1E1E;
    --gray: #727272;
    --skyBlue: #F3F8FE;
    --black: #000000;
    --offWhite: #f9f7ff;
    --green: #166534;
    --white: #ffffff;
    --transition: 0.3s all ease;
    --border: 1px solid #C5C5C5;
    --box-shadow-prim: 0px 0px 12px 0px rgba(49, 95, 172, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    padding: 0;
    margin: 0;
}

html,
body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary);
}

h2 {
    font-weight: 600;
}


h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary);
}


p {
    color: var(--gray);
}



/* comp classes  */

.site-btn {
    background-color: var(--primery);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 115px;
    font-size: 16px;
    border-radius: 32px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    color: var(--white);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 11.5px 30px;
    transition: var(--transition);
    border: 1px solid var(--primery);
}

.site-btn:hover {
    color: var(--primery);
}

.site-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: var(--transition);
}

.site-btn:hover::before {
    width: 100%;
}

.btn-2 {
    background-color: transparent;
    color: var(--primery);
    border: 1px solid var(--primery);
}

.btn-2:hover {
    color: var(--white);
}

.btn-2::before {
    background-color: var(--primery);
}

.btn-3 {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-3:hover::before {
    background-color: var(--secondary);
}

.btn-3:hover {
    color: var(--white);
}

.btn-4 {
    border: 1px solid var(--white);
}

.btn-4:hover {
    border-color: transparent;
}

.wrapper {
    max-width: 1170px;
    margin: auto;
}

.bg-sblue {
    background-color: rgba(54, 135, 242, 0.04);
}

.buttons {
    gap: 10px;
    display: flex;
}

.padding-100 {
    padding: 100px 0;
}

.margin-50 {
    margin: 50px 0;
}

.static-card {
    border: var(--border);
    padding: 24px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;

}

.hover-card::before {
    content: "";
    background-color: var(--primery);
    width: 100%;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 0;
    transition: 0.3s all ease;
}

.hover-card:hover::before {
    height: 100%;
}

.hover-card :is(p, h3, h4) {
    transition: 0.3s all ease;
}

.hover-card:hover :is(p, h3, h4) {
    color: var(--white);
    transition: 0.3s all ease;
}

.static-card h3 {
    margin: 25px 0 8px;
}

.avtar-img {
    border-radius: 50%;
    width: 56px;
    aspect-ratio: 1;
    display: inline-flex;
    background-color: #D7E8FF;
    justify-content: center;
    align-items: center;
}

.avtar-img img {
    max-width: 32px;
}

.title p {
    margin-top: 5px;
}

.chain {
    position: relative;
    z-index: 1;
}

.chain::before {
    content: "";
    background-image: url(/assets/images/chain.png);
    background-size: 100% 100%;
    width: 74%;
    height: 1px;
    top: 46px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
}

.static-card.style-2 {
    text-align: center;
    padding: 10px;
    border: unset;
}

.hover-card.style-2:hover .avtar-img {
    background-color: var(--white);
}

.hover-card.style-2:hover .avtar-img img {
    filter: drop-shadow(0px 0px 3px #3687F2);
}

.static-card.style-2 .avtar-img {
    background-color: var(--primery);
    width: 70px;
    transition: 0.3s all ease;
}

.static-card.style-2 .avtar-img img {
    max-width: 40px;
    transition: 0.3s all ease;
}

.static-card.style-2 p {
    max-width: 343px;
    margin: auto;
}

.bg-primery {
    background-color: var(--primery);
}

.bg-primery-before {
    position: relative;
    z-index: 1;
}

.bg-primery-before::before {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 14%);
    background-color: var(--primery);
}

.large-btn {
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--white);
    width: auto;
}


.img-white-bg {
    padding: 12px 12px 15px;
    border-radius: 23px;
    background-color: var(--white);
    box-shadow: 0px 5.76px 48.92px 0px rgba(0, 0, 0, 0.12);
    max-width: 220px;
    margin-left: auto;
}

.choices {
    display: flex;
    gap: 20px;
}

.choices button {
    width: 100%;
    border-radius: 12px;
    padding: 22px 10px;
    border: unset;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.green {
    color: #166534;
    background-color: #BDFCD3;
}

.red {
    background-color: #FED2D2;
    color: #991B1B;
}

.gray {
    background-color: #DEDEDE;
    color: #1E1E1E;
}

.choices button i {
    font-size: 35px;
}

.hov-top {
    transition: var(--transition);
}

.hov-top:hover {
    transform: translateY(-4px);

}

.progress-wrapper {
    background-color: var(--white);
    border-radius: 12px;
    padding: 16px;
}

.persentage:not(:last-child) {
    margin-bottom: 20px;
}

.persentage span,
.persentage p {
    color: #727272;
    font-size: 20px;
}

.persentage .progress {
    height: 20px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.persentage .progress span {
    display: block;
}

.persentage .progress span.gray {
    background-color: var(--secondary);
}

.persentage .progress span.green {
    background-color: #166534;
}

.persentage .progress span.red {
    background-color: #991B1B;
}

.flat-input {
    width: 20px;
    padding: 0;
    margin-left: 3px;
    outline: unset !important;
    height: unset;
    border: unset;
    color: var(--gray);
    font-size: 20px;
    background-color: transparent;
}

.total p {
    font-size: 20px;
}

.yellow {
    color: #FACC15;
}

.static-card.reviews {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.static-card.reviews .text-card p {
    font-size: 19px;
    margin: 10px 4px 15px;
}

.user-profile {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-profile img {
    width: 70px;
    aspect-ratio: 1;
}

.user-profile h4 {
    color: var(--secondary);
    font-size: 20px;
}

.user-profile p {
    font-size: 18px;
}

.stars i {
    font-size: 18px;
}

.m-top {
    margin-top: 13%;
}

.bottom-content .text p {
    margin-top: 16px;
    font-size: 20px;
}

.bottom-content .text h2 {
    font-size: 32px;
    font-weight: 500;
}

.inner-buttns button {
    min-width: 230px;
}

/* header  */

header {
    padding: 25px 0;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
}

.dropdown-menu.show {
    z-index: 1051;
}


.header-shadow {
    box-shadow: -6px 5px 30px -9px rgba(54, 135, 242, 0.4);
    background-color: var(--white);
}

.navbar-nav {
    gap: 22px;
}

header .nav-item .nav-link {
    color: var(--lightBlack);
    font-size: 14px;
}

header .navbar-toggler {
    padding: 0;
    margin: 0;
    border: unset;
    box-shadow: unset !important;
}

header .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/hamburger.svg);
    background-size: 100% 100%;
    transition: 0.15s all;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(../images/closs-icon.svg);
}

.logo-img {
    background-image: url(../images/logo.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: 370px;
    height: 42px;

}

header.header-shadow .logo-img {
    background-image: url(../images/logo-blue.svg);
}

header.header-shadow .btn-3 {
    border: 1px solid var(--secondary);
}


/* banner  */
.banner {
    padding: 160px 0 100px;
}

@media (min-width: 1200px) {
    .banner .col-xl-4 {
        flex: 0 0 auto;
        width: 36%;
    }
}

.white-text :is(h1, h2, h3, h4, h5, h6, p, span, li) {
    color: var(--white);
}

.banner .text p {
    margin: 20px 0 40px;
}

/* com-web-sec */
.mail-box {
    position: relative;
}

.mail-box label {
    cursor: pointer;
}

.cust-input {
    border-radius: 50px;
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border-color: #D2D2D2;
    color: var(--gray);
}


.cust-input::placeholder {
    color: var(--gray);
}

.cust-input.v2 {
    height: 44px;
    padding: 5px 16px;
    border-radius: 8px;
}

.cust-textarea {
    border-radius: 12px;
    height: unset;
    padding: 16px 20px;
    border-color: #D2D2D2;
    color: var(--gray);
}

.mail-box label {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #D7E8FF;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    color: var(--primery);
    font-weight: 500;
    font-size: 20px;
}

.img-card {
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
    border-radius: 16px;
    background-color: var(--white);
    padding: 40px;
}

.img-card img {
    max-width: 220px;
    margin: auto;
}

.img-card h5 {
    font-size: 20px;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 25px;
}

.static-cont-card {
    padding: 20px 24px;
    border-radius: 16px;
}

.static-cont-card h4 {
    margin: 15px 0 10px;
}

.static-cont-card h5 {
    font-weight: normal;
}

.find-card .card-head .text {
    margin: 20px 0;
}

.find-card .body-card {
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.find-card .body-card p {
    font-size: 15px;
}

.find-card .body-card h3 {
    margin-bottom: 10px;
}

.find-card .body-card a {
    margin: 5px 0;
    display: inline-flex;
}

.find-card a {
    text-decoration: underline;
    font-weight: 500;
    color: var(--primery);
}

/* three-col-sec */
.static-card-v2 {
    text-align: center;
    box-shadow: var(--box-shadow-prim);
    border: unset;
    background-color: var(--white);
    height: 100%;
}

/* static-content-sec */
.static-content-sec .inner-btns {
    max-width: 560px;
    margin: auto;
}

.static-content-sec p {
    margin: 20px 0 30px;
}

/* faqs-section */
.faqs-section .accordion-button::after {
    background-image: url(../images/plus-icon.svg);
    background-size: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
}

.faqs-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus-icon.svg);
}

.faqs-section .accordion-item {
    border: unset !important;
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);

}

.faqs-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-button[aria-expanded="true"] {
    background-color: #E8F2FF !important;
}


.accordion-button:not(.collapsed) {
    border-radius: 12px 12px 0 0 !important;
    background-color: transparent;
    box-shadow: unset;
    padding-bottom: 10px !important;
}

.faqs-section .accordion-item .accordion-header .accordion-button {
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #303030;
}

.faqs-section .accordion-item :is(.accordion-body, .accordion-button) {
    padding: 20px;
}

.accordion-item :is(.accordion-body, .accordion-button):focus {
    box-shadow: unset;
}

.faqs-section .accordion-body {
    padding: 0 20px 20px !important;
    margin-top: -1px;
    background-color: #E8F2FF;
    border-radius: 0 0 12px 12px;

}

.faqs-section .accordion-body p {
    padding-top: 0;
    color: #656565;
}

/* footer  */

footer {
    padding: 50px 0 40px;
}

footer .text :is(p,
    span) {
    font-size: 18px;
}

footer .text p {
    margin: 20px 0;
}

footer .text-1 {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

footer .text-1 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

footer .text-1 a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    transition: var(--transition);
    font-size: 20px;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.copy-right {
    margin-top: 65px;
    padding-top: 30px;
    border-top: 1px solid #8EBFFF;
}

.copy-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.copy-right a span {
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    color: var(--primery);
}

footer .newsletter h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

footer .newsletter form {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .newsletter input {
    border-radius: 35px;
    border: 1px solid #FFF;
    background: #3687F2 !important;
    font-size: 16px;
    color: #fff !important;
    height: 44px;
    padding: 10px 16px;
}

footer .newsletter input::placeholder {
    color: #fff;
}

footer .newsletter button {
    border-radius: 50%;
    min-width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    color: var(--primery);
    padding: 10px;
}

footer .newsletter button:hover {
    color: var(--white);
}

footer .newsletter button::before {
    background: var(--secondary);
}


/* @mediaQuery  */
@media (max-width:1199px) {

    h1,
    h2 {
        font-size: 40px;
    }


    p br,
    h2 br {
        display: none;
    }

    .static-card {
        padding: 18px;
    }

    .static-card h3 {
        font-size: 20px;
    }

    .static-card p {
        font-size: 14px;
    }

    .static-card.reviews .text-card p {
        font-size: 16px;
    }

    .user-profile img {
        width: 60px;
    }

    .user-profile h4 {
        font-size: 18px;
    }


}

@media (max-width: 991px) {

    h1,
    h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 14px;
    }

    .site-btn {
        padding: 10px 15px;
    }

    .logo-img {
        min-width: 260px;
    }

    header {
        padding: 18px 0;
    }

    .chain::before {
        display: none;
    }


    .static-card.reviews .text-card p {
        font-size: 14px;
    }

    .bottom-content .text p {
        font-size: 14px;
    }

    footer .text :is(p, span) {
        font-size: 14px;
    }

    footer p br {
        display: none;
    }

}

@media (max-width: 767px) {

    p br {
        display: none;
    }

    .banner {
        padding: 100px 0 50px;
    }

    header {
        background-color: var(--white);
        padding: 10px 0;
    }

    .logo-img {
        background-image: url(../images/logo-blue.svg) !important;
    }

    header .navbar-toggler .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    header .btn-3 {
        border-color: var(--secondary);
    }

    .navbar-collapse {
        padding: 10px 16px;
        background-color: var(--white);
        position: absolute;
        z-index: 1050;
        top: 60px;
        width: 100%;
        left: 0;
    }

    .navbar {
        position: unset;
    }

    .site-btn {
        padding: 9px 15px;
        font-size: 14px;
    }

    .banner .text p {
        margin: 10px 0 20px;
    }

    .static-card h3 {
        margin: 14px 0 6px;
    }

    .static-card.style-2 .avtar-img {
        width: 60px;
    }

    .static-card.style-2 .avtar-img img {
        max-width: 30px;
    }

    .img-white-bg {
        margin: auto;
    }

    .qr-section .text p {
        margin: 12px 0 20px;
    }

    .vot-section h2 {
        font-size: 25px !important;
    }

    .choices {
        flex-direction: column;
    }

    .choices button {
        padding: 10px;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .m-top {
        margin: 0;
    }

    .bg-primery-before::before {
        height: 100%;
    }

    footer {
        padding: 50px 0 20px;
    }

    footer .text-1 {
        gap: 3px;
    }

    footer .text-1 h3 {
        margin-bottom: 5px;
    }

    footer .text :is(p, span) {
        font-size: 16px;
    }

    .padding-100 {
        padding: 50px 0;
    }

    .navbar-collapse .btns {
        flex-direction: column;
        align-items: start;
    }

    .large-btn {
        padding: 12px 18px;
    }

    .choices button i {
        font-size: 22px;
    }

    .choices button,
    .total p {
        font-size: 16px;
    }

    .persentage span {
        font-size: 16px;
    }

    .bg-style-white {
        padding: 12px;
    }

    .logo-img {
        min-width: 190px;
    }

    /* faq section  */
    .faqs-section .accordion-item .accordion-header .accordion-button {
        font-size: 14px;
        gap: 10px;
        align-items: start;
    }

    footer .newsletter {
        margin-top: 10px;
    }

    footer .logo img {
        max-width: 250px;
    }

    .copy-right {
        margin-top: 40px;
    }

    .copy-right a span {
        width: 25px;
        height: 25px;
    }

    .copy-right a {
        font-size: 14px;
    }

    .find-card .body-card p {
        font-size: 14px;
    }

    .find-card .body-card {
        padding: 15px;
    }

}