/* 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;
    --shadowCard: 0px 4px 12px 0px rgba(30, 30, 30, 0.08);
}

* {
    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);
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary);
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
}

p {
    color: var(--gray);
}

.primary {
    color: var(--primery);
}

/* 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;
    border: 1px solid var(--primery);
    color: var(--white);
    overflow: hidden;
    transition: 0.3s all ease;
    padding: 11.5px 30px;
    transition: var(--transition);
}

.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-color: var(--primery);
}

.btn-2:hover {
    color: var(--white);
}

.btn-2::before {
    background-color: var(--primery);
}

.wrapper {
    max-width: 1170px;
    margin: auto;
}

.bg-sblue {
    background-color: #F3F8FE;
}

.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: 35px;
    transition: 0.3s all ease;
}

.static-card.style-2 p {
    max-width: 290px;
    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: 20px;
    margin: 8px 0 20px
}

.static-card.reviews .stars {
    margin-bottom: 20px;
}

.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;
}

.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;
}

.white-text :is(p,
    h2,
    h3,
    span,
    a,
) {
    color: var(--white);
}

.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: var(--primery);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    color: var(--white);
    font-size: 20px;
}

.title-h4 h4 {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 20px;
    color: var(--secondary);
    font-weight: 500;
}

.title-h4.small h4 {
    color: var(--gray);
    font-weight: 400;
}

.bg-card,
.bg-card-2 {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadowCard);
    padding: 24px;
    border: 1px solid #D7E8FF !important
}

.bg-card-2 {
    box-shadow: 0px 4px 20px 0px rgba(54, 135, 242, 0.1) !important;
}

.title-h4 h4 i {
    color: var(--primery);
}

.static-list ul {
    list-style-type: none;
}

.static-list ul li {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: 7px;
}

.gray-color {
    color: var(--gray) !important;
}

.primery-color {
    color: var(--primery) !important;
}

.secondary {
    color: var(--secondary);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mw-200 {
    min-width: 200px;
}

.font-20 {
    font-size: 20px;
}

.font-28,
.font-28 h3 {
    font-size: 28px;
}

.btn-4 {
    background-color: white;
    color: var(--secondary);
}

.btn-4:hover {
    color: var(--white);
}

.btn-4::before {
    background-color: var(--secondary);
}

.my-p p {
    margin: 15px 0 50px;
}

.mw-550 {
    max-width: 525px;
    margin-left: auto;
}

.flat-btn {
    padding: 0;
    margin: 0;
    border: unset;
    outline: unset !important;
    background-color: transparent;
}

.detail-content.big {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.detail-content.big-fonts {
    padding: 30px;
}

.detail-content.big-fonts .site-btn {
    font-size: 20px;
    padding: 7px 30px;
}

.detail-content.big .inner-title h4 {
    font-size: 28px;
}

.detail-content.big .info h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 10px;
}

.detail-content.big .info p {
    max-width: 510px;
}

.detail-content.big-fonts .info h5 {
    font-size: 24px;
}

.detail-content.big-fonts .info p {
    max-width: 620px;
    font-size: 20px;
}

.rotate-180 {
    transform: rotate(180deg);
}

.mt-40 {
    margin-top: 40px;
}

.like-btn {
    font-size: 25px;
    color: #93ACCC;
}

.liked {
    color: var(--primery) !important;
}

.detail-content.big .title-h4 {
    margin: 37px 0;
}

.banner-h1 {
    padding: 170px 0 50px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.more-btn i {
    font-size: 25px;
}

.admin.avtar img {
    border-radius: 50%;
    max-width: 35px;
}

header .dropdown-menu {
    left: unset !important;
    right: 0 !important;
}

header .btns a {
    text-transform: capitalize;
}

.dropdown.user {
    border: 1px solid #DCDCDC;
    border-radius: 50px;
    padding: 9px 15px 9px 10px;
}

.dropdown.user .dropdown-toggle::after {
    border: unset;
    border-right: 1px solid var(--gray);
    border-top: 1px solid var(--gray);
    width: 8px;
    height: 8px;
    transform: rotate(135deg);
    transition: var(--transition);
}

.dropdown.user .show.dropdown-toggle::after {
    transform: rotate(-45deg)
}

.dropdown.user span {
    color: var(--gray);
}

.s-links a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-conyent {
    height: 100%;
}

.btn-3 {
    background-color: #E0EDFF;
    border-color: transparent;
    color: var(--primery);
}

.btn-3:hover {
    border-color: var(--primery);
}

.more-card {
    display: none;
}

.more-card.show {
    display: block;
}


/* header  */

header {
    padding: 25px 0;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
}

header .navbar .navbar-nav li a {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary);
    transition: var(--transition);
}

header .navbar .navbar-nav li a.active,
header .navbar .navbar-nav li a:hover {
    color: var(--primery);
    font-weight: 500;
}

.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: 20px;
}

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(/assets/images/hamburger.svg);
    background-size: 100% 100%;
    transition: 0.15s all;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(/assets/images/closs-icon.svg);
}


/* banner  */

.banner {
    padding: 180px 0 100px;
}

.banner .text p {
    margin: 17px 0 40px;
}


/* chat box */

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

.chat-section {
    position: relative;
    z-index: 1;
    padding: 25px 0 60px;
    min-height: 100vh;
}

.chat-tab-body {
    position: relative;
    z-index: 1;
}

.chat-section .pub-logo img {
    max-width: 130px;
}

.chat-section .pub-logo {
    margin-bottom: 60px;
}

.msger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.msger p {
    margin: 0;
}

.msger h2 {
    margin: 0;
}

.msger-inputarea input::placeholder {
    color: #252849;
}

.msger-chat {
    max-height: 560px;
    background-color: rgba(54, 135, 242, 0.08);
    padding: 0px 24px;
    overflow-y: auto;
}

.msger-chat::-webkit-scrollbar {
    width: 5px;
}

.msger-chat::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 3px;
}

.msger-chat::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border: 3px;
}

.msg-text {
    font-weight: 400;
    max-width: 170px;
    word-wrap: break-word;
}

.right-msg .msg-text {
    max-width: 250px;
}

.time {
    text-align: end;
}

.msger-chat h6 {
    font-size: 14px;
    font-weight: 400;
    color: #252849;
}

.msger-input:focus {
    outline: unset;
}

.msg {
    display: flex;
    align-items: start;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img {
    min-width: 35px;
    height: 35px;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    border-radius: 50%;
    margin-right: 10px;
}

.msg-bubble {
    margin-left: 10px;
    max-width: 260px;
    padding: 8px 12px;
    border-radius: 0px 8px 8px 8px;
    background-color: var(--white);
    color: #6C6D78;
    font-size: 12px;
    position: relative;
    z-index: 1;
}

.msg-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.msg-info-name {
    font-weight: bold;
}

.msg-info-time {
    font-size: 0.85em;
}

.massege {
    display: block;
}

.massege>span {
    color: #6C6D78;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.right-msg {
    flex-direction: row-reverse;
}

.right-msg .timer {
    text-align: end;
}

.left-msg .timer {
    margin-left: 10px;
    text-align: start;
}

.timer h6 {
    color: #252849;
}

.right-msg .msg-bubble {
    background-color: var(--primery);
    color: var(--white);
    border-radius: 8px 0px 8px 8px;
}

.right-msg .massege>span {
    text-align: end;
}

.right-msg .msg-img {
    margin: 0 0 0 10px;
}

.right-msg .msg-bubble::before {
    background-image: url(../assets/img/try-angle-right.svg);
    left: unset;
    right: -7px;
}

.timer {
    margin-top: 3px;
}

.timer h6{
    font-size: 10px;
}

.chat-module {
    padding: 20px 0;
}

.msger-inputtext {
    display: flex;
    align-items: center;
    gap: 10px;
}

.msger-inputtext button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    min-width: unset;
    padding: 0;
    min-width: 50px;
    height: 50px;
    background-color: var(--primery);
    transition: var(--transition);
}

.msger-inputtext button i {
    margin-top: 2px;
}

.msger-input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #DADBDD;
    padding: 5px 15px;
    height: 50px;
}

.msger-input,
.msger-input::placeholder {
    color: #6C6D78;
    font-weight: 400;
    font-size: 16px;
    font-weight: 400;
}

.msger-input {
    color: #000612 !important;
}


/* form-section */

.form-section {
    padding: 50px 0 100px;
}

.info-form .cust-input {
    height: 47px;
}

.info-form select {
    background-image: url(../images/chavron-down-gray-icon.svg);
}

.form-label {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1E1E1E;
}


/* detail card section  */

@media (min-width: 1200px) {
    .detail-card-sec .col-xl-3 {
        flex: 0 0 auto;
        width: 27%;
    }
}


/* footer  */

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;
}

.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 {
    padding: 50px 0 40px;
}

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);
}

.drop-wrap {
    max-width: 866px;
    margin: 40px auto 0;
}

.files-wrapper {
    margin-bottom: 15px;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed #95C2FF;
    text-align: center;
    padding: 90px 15px;
}

.files-wrapper img {
    max-width: 57px;
}

.files-wrapper p {
    font-weight: 500;
    font-size: 24px;
    color: var(--secondary);
    margin: 20px 0 10px;
}

.files-wrapper p b {
    font-weight: 500;
    color: var(--primery);
}

.files-wrapper span {
    color: var(--gray);
    font-size: 16px;
}

#fileInput {
    display: none;
}


/* Bid Watch */

.titlev2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titlev2 .bdiv {
    display: flex;
    column-gap: 10px;
}

.bids-table .table-responsive {
    border: 1px solid #E2E2E2;
    border-radius: 8px;
}

.bids-table th {
    background: #F5F7F9;
    color: #818587;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.bids-table th,
.bids-table td {
    padding: 15px 16px;
    border-color: #E2E2E2;
    white-space: nowrap;
}

.bids-table td {
    color: #6F7577;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    vertical-align: middle;
}

.bids-table tbody tr:last-of-type td {
    border-bottom: none;
}

.cus-badge {
    font-size: 16px;
    display: inline-block;
    min-width: 150px;
    padding: 6px 20px;
    border-radius: 22px;
    text-align: center;
    color: #7C879C;
    background: rgba(124, 135, 156, 0.08);
}

.cus-badge.primary {
    background: rgba(54, 135, 242, 0.08);
    color: #3687F2;
}

.cus-badge.secondary {
    background: rgba(24, 120, 181, 0.08);
    color: #1878B5;
}

.cus-badge.success {
    background: rgba(35, 178, 109, 0.08);
    color: #23B26D;
}

.cus-badge.danger {
    background: rgba(245, 54, 92, 0.06);
    color: #F5365C;
}

.bids-table span.text-bg {
    border-radius: 50%;
    color: #6F7577;
    font-size: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.bids-table span.text-bg.primary {
    background: #3687F2;
    color: var(--white);
}

/* pricing-sec */
.pricing-sec {
    padding: 0 0 40px;

}

.pricing-sec .inner-wrapper {
    max-width: 900px;
    margin: auto;
}

.pricing-card {
    min-height: 460px;
    border: 1px solid #CCCCCC;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card .card-head>span,
.pricing-card .card-head .title span {
    border-radius: 50px;
    border: 1px solid #3687F2;
    color: var(--primery);
    padding: 10px 15px;
    max-width: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto 40px;
    text-align: center;
}


.pricing-card .card-head .inner-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);

}

.pricing-card .card-head .inner-text h2 span {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray);
}

.pricing-card .card-head h4 {
    margin: 18px 0 38px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
}

.pricing-card .card-head h4 i {
    color: #23B26D;
    font-size: 20px;
}

.list-detail ul {
    list-style-type: none;
}

.list-detail ul li {
    font-size: 17px;
    color: var(--gray);
}

.list-detail ul li:not(:last-child) {
    margin-bottom: 5px;
}

.list-detail ul li strong,
.list-detail ul li i {
    color: var(--primery);
}

.list-detail ul li i {
    display: inline-flex;
    width: 30px;
}

.pricing-card .site-btn {
    font-size: 20px;
    font-weight: 500;
}


.pricing-card.hover-effect:hover {
    box-shadow: 0px 42px 34px 0px rgba(54, 135, 242, 0.3);
    transform: translateY(-30px);
    background-color: var(--primery);
    border-color: transparent;
}

.pricing-card.hover-effect:hover :is(span, p, h2, h4, i, li, strong) {
    color: var(--white) !important;
}

.pricing-card.hover-effect:hover .card-head>span {
    border-color: var(--white);
}

.pricing-card.hover-effect:hover .site-btn {
    background-color: var(--white);
    color: var(--primery);
}

.pricing-card.hover-effect:hover .site-btn:hover {
    color: var(--white);
}

.pricing-card.hover-effect:hover .site-btn::before {
    background-color: var(--secondary);

}

/* text-sec */
.badges-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.badges-block span {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(54, 135, 242, 0.08);
    color: var(--gray);
    padding: 8px 10px;
    border-radius: 30px;
    gap: 8px;
    flex-grow: 1;
    font-size: 20px;
}

.badges-block span i {
    color: var(--primery);

}

.text-sec {
    padding-bottom: 60px;
}

/* subscribe paln page  */

.pricing-card-v2 {
    min-height: unset;
}

.pricing-card-v2 .list-detail li {
    font-size: 16px;
}

.pricing-card-v2 .list-detail li i {
    width: 26px;
}

.pricing-card-v2 {
    border: 1px solid rgba(54, 135, 242, 0.2);
    box-shadow: 0px 4px 20px 0px rgba(54, 135, 242, 0.1);
}

/* contractor page  */

.contractor-sec {
    padding: 170px 0 100px;
}

.user-card {
    display: flex;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    flex-direction: column;
}

.user-card .user-img {
    max-width: 110px;
}

.user-card .user-name h3 {
    margin: 25px 0 5px;
}

.user-card .list-detail ul li {
    font-size: 20px;
}

.contractor-sec .cust-textarea {
    font-size: 21px;
}

.field-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.field-form input:focus {
    box-shadow: unset;
    border-color: #D2D2D2;
}

.field-form-wrapper .field-file {
    flex-grow: 1;
}

.field-form-wrapper .field-file label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid #D4D4D4;
    border-radius: 30px;
    color: var(--gray);
    cursor: pointer;

}

.field-form-wrapper .field-file label i {
    color: var(--primery);
}

.image-box {
    position: relative;
    display: inline-block;
}

.image-box img {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;


}

.remove-btn {
    position: absolute;
    top: -3px;
    right: -3px;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    height: 13px;
    width: 13px;
    font-size: 6px;
    cursor: pointer;
    display: none;
}

.image-box:hover .remove-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.uplode-img {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.add-more-btn {
    background-color: rgba(54, 135, 242, 0.08);
    border: 1px dashed var(--primery);
    width: 68px;
    height: 68px;
    border-radius: 10px;
    color: var(--primery);

}

.user-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-wrapper img {
    max-width: 95px;
}

.contractor-sec .row-gap-4 {
    row-gap: 40px !important;
}

.atm-card-wrapper h3 {
    font-size: 32px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}

.atm-card .inner-text span {
    color: var(--primery);
    font-weight: 700;
    font-size: 20px;
}

.atm-card .inner-text span.sub-text {
    display: flex;
    flex-direction: column;
}

.atm-card .inner-text span.sub-text b {
    font-weight: 400;
    font-size: 12px;
}

.atm-card .inner-text {
    margin-bottom: 30px;
}

.valids span {
    color: var(--primery);
    font-size: 15px;
    font-weight: 600;
}

.valids span strong {
    color: var(--primery);
    font-size: 8px;
    font-weight: 400;
    margin-right: 8px;
    line-height: 1.1;
}

.content-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.content-card .remove {
    color: #F5365C;
    font-size: 18px;
}

.content-card span {
    cursor: pointer;
}



.atm-card-wrapper .pricing-card {
    min-height: unset;
}

.pricing-card .card-head .title {
    margin-bottom: 40px;
}

.pricing-card .card-head .title span {
    margin: 0;
    min-width: 120px;
}

.pricing-card .card-head .title h4 {
    margin: 0;
    font-size: 20px;
}

.atm-card-wrapper .pricing-card .inner-text span {
    font-size: 20px;
}

.pricing-card .card-head .inner-text h1 {
    font-size: 60px;
}

.pricing-card .card-head .inner-text h1 span {
    color: var(--gray);
    font-size: 20px;
    margin-left: -2px;
}

.atm-card-wrapper .pricing-card .list-detail ul {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 40px;
    margin-top: 40px;
}

.btn-prim-light {
    background-color: rgba(54, 135, 242, 0.2);
    border-color: transparent;
    color: var(--primery);
}

.btn-prim-light:hover {
    border-color: var(--primery);
}

.site-btn.red {
    background-color: rgba(245, 54, 92, 0.14);
    color: #F5365C;
    border-color: transparent;
}

.site-btn.red:hover {
    border-color: #F5365C;
}

.atm-card .title h4 {
    color: var(--primery);
    font-size: 27px;
    font-weight: 600;
}

.atm-card .card-chip {
    margin: 35px 0;
}

.atm-card .card-chip img {
    width: 55px;
}

.card-js .icon {
    display: inline-flex;
    align-items: center;
    height: auto;
    top: 0;
    bottom: 0;
    display: none;
}

.card-js {
    display: flex;
    border: 1px solid #D2D2D2;
    border-radius: 30px;
    padding: 1px;
}

.card-js input,
.card-js select {
    height: 47px;
    font-weight: 400;
    font-family: "Outfit", sans-serif;
    border-radius: 30px;
    color: gray;
    background-color: transparent;
}

.card-js .cvc-container {
    width: 30%;
}

.card-js .expiry-container {
    width: 40%;
}

.card-js .cvc-wrapper {
    margin: 0;
}

.card-js .card-number-wrapper .card-type-icon {
    top: 13px;
    right: 0;
}

.card-js input::placeholder,
.card-js select {
    color: var(--gray);
}

.card-js input.card-number,
.card-js input.cvc,
.card-js input.name,
.card-js .expiry-wrapper .expiry {
    padding: 10px;
    border: unset;
    box-shadow: unset !important;
}

.card-js .card-number-wrapper,
.card-js .name-wrapper {
    margin-bottom: 0;
}

.card-js input.card-number {
    padding-left: 20px;
}

.modal-header .btn-close {
  box-shadow: none !important;
  outline: none !important;
}

.modal-footer {
  border-top: 0 !important;
}

.modal-title {
  font-family: var(--bs-body-font-family, inherit) !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  color: #0f1b3d !important;
}
.modal-body {
  padding: 1rem 1.25rem 1.5rem !important;
  font-family: var(--bs-body-font-family, inherit) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #3d4451 !important;
}



/* mediaQuery */

@media (max-width:1400px) {
    .dashboard h3 {
        font-size: 18px;
    }

    .dashboard .site-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .orderd-list ul li {
        font-size: 14px;
    }

    .orderd-list {
        padding: 12px 18px;
    }
}

@media (max-width:1199px) {

    h1,
    h2 {
        font-size: 40px;
    }

    .static-card {
        padding: 18px;
    }

    .static-card h3 {
        font-size: 20px;
    }

    .static-card p {
        font-size: 15px;
    }

    .static-card.reviews .text-card p {
        font-size: 16px;
    }

    .user-profile img {
        width: 60px;
    }

    header .navbar .navbar-nav {
        gap: 6px;
    }

    header .navbar .navbar-nav li a {
        font-size: 14px;
    }

    .banner .text p br {
        display: none;
    }

    .detail-card-sec .bg-card {
        padding: 15px;
    }

    .detail-card-sec .card-foot h3 {
        font-size: 18px;
    }

    .detail-card-sec .card-foot a {
        font-size: 16px;
    }

    .title-h4 h4 {
        font-size: 18px;
    }

    .two-col-section h2 {
        font-size: 36px;
    }

    .two-col-section p br {
        display: none;
    }

    footer .text :is(p,
        span) {
        font-size: 15px;
    }

    footer .text-1 h3 {
        font-size: 17px;
    }

    /* dashboard  */
    .dashboard .navbar {
        padding: 15px;
    }

    .dashboard .navbar-nav {
        gap: 0;
        margin-top: 20px !important;
    }

    .dashboard .navbar-nav>li>a {
        padding: 10px !important;
        display: inline-flex;
    }

    .badges-block span {
        font-size: 16px;
    }

    .contractor-sec .form-label,
    .contractor-sec .cust-textarea,
    .user-card .list-detail ul li {
        font-size: 16px;
    }

    .list-detail ul li i {
        width: 22px;
    }

    .user-card .site-btn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .user-profile p,
    .content-card span,
    .content-card .remove {
        font-size: 16px;
    }

}

@media (max-width: 991px) {

    h1,
    h2 {
        font-size: 30px !important;
    }

    p {
        font-size: 14px;
    }

    .site-btn {
        padding: 10px 15px;
    }

    .navbar-collapse {
        padding: 10px 16px;
        padding-left: 35px;
        background-color: var(--white);
        position: absolute;
        z-index: 1050;
        top: 90px;
        width: 100%;
        left: 0;
        box-shadow: 0px 15px 30px -20px rgba(54, 135, 242, 0.4);
    }

    .navbar {
        position: unset;
    }

    header {
        padding: 18px 0;
    }

    header .navbar .navbar-nav {
        margin: 10px 0 !important;
        gap: 0;
    }

    .chain::before {
        display: none;
    }

    .static-card.reviews .text-card p {
        font-size: 14px;
    }

    .bottom-content .text p {
        font-size: 14px;
    }

    .title-h4 h4 {
        font-size: 14px;
    }

    .detail-content.big .inner-title h4 {
        font-size: 20px;
    }

    .like-btn i {
        font-size: 16px;
    }

    .bg-card {
        padding: 15px;
    }

    .detail-content.big .title-h4 {
        margin: 15px 0;
    }

    .mt-40 {
        margin-top: 20px;
    }

    .card-foot h3 {
        font-size: 18px;
    }

    footer .text :is(p,
        span) {
        font-size: 14px;
    }

    footer p br {
        display: none;
    }

    /* dashboard  */
    .dashboard header.header-shadow {
        padding: 0;
    }

    .last-btns {
        flex-direction: row;
    }

    .titlev2 {
        align-items: flex-start;
        flex-direction: column;
    }

    .titlev2 .bdiv {
        margin: 20px 0 0 auto;
    }

    .pricing-card.hover-effect:hover {
        transform: translateY(-10px);
        box-shadow: 0px 11px 26px 0px rgba(54, 135, 242, 0.3);

    }

    .titlev2 .bdiv {
        margin: 15px 0 0;
    }

}

@media (max-width: 767px) {
    p br {
        display: none;
    }

    h3 {
        font-size: 20px;
    }

    header .navbar-toggler .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }

    .banner {
        padding: 100px 0 50px;
    }

    .navbar-collapse {
        top: 60px;
        padding: 10px 16px;
    }

    .header-v2 .navbar-brand img {
        max-width: 120px;
    }

    .admin.avtar img {
        max-width: 23px;
    }

    .dropdown.user span {
        font-size: 14px;
    }

    .dropdown.user {
        padding: 1px 9px 4px 4px;
    }

    .dropdown.user .dropdown-toggle::after {
        width: 6px;
        height: 6px;
    }

    .static-card.reviews .text-card p {
        margin-bottom: 10px;
    }

    .user-profile img {
        width: 50px;
    }


    .site-btn {
        padding: 9px 15px;
        font-size: 14px;
    }

    .my-p p {
        margin: 15px 0 25px;
    }

    .static-list ul li {
        font-size: 14px;
    }

    .mw-200 {
        min-width: unset;
    }

    .mail-box label {
        right: 5px;
    }

    .banner-h1 {
        padding: 100px 0 50px;
    }

    .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;
    }

    .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;
        font-weight: 300;
    }

    .padding-100 {
        padding: 50px 0;
    }

    .large-btn {
        padding: 12px 18px;
    }

    .choices button i {
        font-size: 22px;
    }

    .choices button,
    .total p {
        font-size: 16px;
    }

    .persentage span {
        font-size: 16px;
    }

    /* dashboard */
    .dashboard .navbar-brand {
        max-width: 35px;
    }

    .main-content {
        padding-top: 100px;
    }

    .cust-title {
        flex-direction: column;
        align-items: start !important;
    }

    .dashboard .mob-content img {
        max-width: 30px;
    }

    .user-profile-nav h3 {
        font-size: 14px;
    }

    .user-profile-nav p {
        font-size: 11px;
    }

    .dashboard .mob-content {
        display: flex;
        gap: 10px;
    }

    .dashboard .navbar {
        padding: 10px 12px;
    }

    .dashboard .navbar-collapse {
        position: static;
        padding: 0;
    }

    .dashboard .navbar-toggler-icon {
        width: 25px;
        height: 25px;
    }

    .dashboard .navbar-nav>li>a {
        padding: 5px !important;
        border-width: 3px;
    }

    .last-btns {
        flex-direction: column;
    }

    .user-profile-nav :is(h3,
        p,
    ),
    .user .dropdown-toggle-cust::after {
        display: none;
    }

    .bg-style-white {
        padding: 12px;
    }

    .bids-table th,
    .bids-table td {
        font-size: 14px;
        padding: 12px;
    }

    .cus-badge {
        font-size: 14PX;
        min-width: 130px;
    }

    .titlev2 .bdiv .site-btn {
        min-width: 90px;
    }

    .copy-right {
        margin-top: 40px;
    }

    .copy-right a span {
        width: 25px;
        height: 25px;
    }

    .copy-right a {
        font-size: 14px;
    }

    footer .newsletter {
        margin-top: 10px;
    }

    footer .logo img {
        max-width: 250px;
    }

    /* pricing page  */
    .pricing-card {
        padding: 15px;
        min-height: unset;
    }

    .pricing-card .card-head>span {
        font-size: 16px;
        margin: 0 0 25px;
        max-width: 170px;
    }

    .pricing-card .card-head .inner-text h4 {
        margin: 13px 0 28px;
    }

    .pricing-card .site-btn {
        font-size: 16px;
        width: 100%;
    }

    .pricing-card .foot-card {
        padding-top: 30px !important;
    }

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

    .badges-block span {
        justify-content: start;
        padding-inline: 20px;
    }

    .field-form label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .field-form input {
        height: 45px;
    }

    .contractor-sec {
        padding: 90px 0 50px;
    }

    .user-wrapper img {
        max-width: 65px;
    }

    .contractor-sec .row-gap-4 {
        row-gap: 25px !important;
    }

    .cust-input {
        height: 45px;
    }

    .atm-card-wrapper h3 {
        font-size: 25px;
    }

    .atm-card .title h4 {
        font-size: 20px;
    }

    .bg-card,
    .bg-card-2 {
        padding: 18px;
    }

    .pricing-card .card-head>span,
    .pricing-card .card-head .title span {
        font-size: 18px;
        padding: 8px;
    }

    .user-profile h4 {
        font-size: 18px;
    }

    .atm-card .card-chip {
        margin: 25px 0;
    }

    .atm-card .card-chip img {
        width: 45px;
    }

    .card-js .card-number-wrapper .card-type-icon {
        top: 11px;
    }

    .detail-content.big-fonts {
        padding: 15px;
    }

    .like-btn,
    .detail-content.big-fonts .info p,
    .card-foot h3,
    .detail-content.big-fonts .site-btn,
    .form-label {
        font-size: 15px;
    }

    .msg-text,
    .files-wrapper span {
        font-size: 14px;
    }

    .msger-input,
    .info-form .cust-input {
        height: 40px;
    }

    .msger-inputtext button {
        height: 40px;
        min-width: 40px;
    }

    .form-section {
        padding: 25px 0;
    }

    .files-wrapper {
        padding: 40px 15px;
    }

    .files-wrapper p {
        font-size: 16px;
    }

    footer .logo img {
        max-width: 200px;
    }

    .info-form select {
        background-size: 12px;
    }



}
  
/* faqs section  */


.faqs-section .accordion-item {
   border: unset !important;
   overflow: hidden;
   border-radius: 12px;
   background-color: var(--white);
   box-shadow: var(--cardShadow);
}

.faqs-section .accordion {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.accordion-button:not(.collapsed) {
   border-radius: unset;
   background-color: #e8f2ff;
   box-shadow: unset;
}

.faqs-section .accordion-item .accordion-button {
   font-size: 20px;
   color: var(--dGray);
   font-weight: 700;
   padding: 20px;
}

.faqs-section .accordion-body {
   background-color: #e8f2ff;
   padding: 0 20px 20px;
}

.faqs-section .accordion-body p {
   color: #656565;
   font-size: 16px;
}
