/* Exporting Fonts */

@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);
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@font-face {
    font-family: sofiapro;
    src: url(../fonts/sofiapro/sofiapro-light.otf);
}

@media (min-width: 1430px) {
    .container {
        max-width: 1420px;
    }
}

* {
    box-sizing: border-box;
}

:root {
    --blue-color: #3468ff;
    --light-green: #00a79e;
    --frozen-forest: #d3ecb9;
    --cloudless: #d9e8ff;
    --dead-pixel: #3a3a3a;
    --primery-color: #131d2e;
    --secondary-color: rgba(19, 29, 46, 0.8);
    --white: #fff;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: #edf4ff;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primery-color);
}

h3 {
    font-size: 16px;
    font-weight: 400;
    color: var(--primery-color);
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primery-color);
}

p.small {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
}

p {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
}

p.medium {
    font-weight: 400;
}

a,
a:hover,
button,
button:hover {
    transition: 0.3s all ease;
}

a {
    text-decoration: none;
}

.max-w-max {
    max-width: max-content !important;
}

button {
    cursor: pointer;
}

.btn_site, .btn_active {
    display: inline-block;
    border: 2px solid var(--blue-color);
    border-radius: 9px;
    background-color: var(--blue-color);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 15px;
    min-width: 146px;
    text-align: center;
}

.btn_site:hover, .btn_active:hover {
    border-color: #3468ff;
    background-color: #012765;
    color: #fff;
}

.btn_site.change-btn {
    background-color: var(--light-green);
    border: 2px solid var(--light-green);
    padding: 4px 0;
}
@media (max-width: 767px) {
    .btn_site.change-btn {
        padding: 12px 15px;
    }
}
.change-btn:hover {
    border-color: #3468ff;
    background-color: #012765;
    color: #fff;
}

.btn_site.outline {
    background-color: var(--white);
    border-radius: 9px;
    border-color: #3468ff;
    color: #3468ff;
    font-size: 16px;
    padding: 13px 0;
}

.btn_site.outline:hover {
    background-color: #3468ff;
    color: var(--white);
}

.btn_site.secondary {
    background-color: #e7eaef;
    border-color: #e7eaef;
    color: #131d2e;
}

.btn_site.secondary:hover {
    background: #131d2e;
    color: var(--white);
}

.btn_site.warning {
    background-color: #ff613d;
    border-color: #ff613d;
}

.btn_site.warning:hover {
    background: #d85335;
}

.avatar {
    border-radius: 50%;
    aspect-ratio: 1;
    width: 25px;
}

.avatar.avatar-sm {
    width: 25px;
}

.avatar.avatar-md {
    width: 46px;
}

.avatar.avatar-lg {
    width: 60px;
}
.mobile-menu-message {
    color: #73d4f4;
    font-weight: 400;
}

@media (min-width: 1200px) {
    .sidebar-toggle, .top-add-post-btn, .side_navigation.mobile, .side-menu-item-mobile-post, .mobile-menu-message {
        display: none;
    }
}
@media (max-width: 1200px) {
    .side_navigation.desktop.hide-mobile  {
        display: none;
    }
}

.sidebar-toggle {
    position: relative;
    margin-left: 15px;
    padding: 0;
    width: 30px;
    height: 30px;
    outline: 0;
    border: none;
}

.sidebar-toggle span {
    display: block;
    width: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primery-color);
    border-radius: 5px;
    margin: auto;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar-toggle span:before {
    content: "";
    width: 100%;
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primery-color);
    border-radius: 5px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar-toggle span:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primery-color);
    border-radius: 5px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.sidebar-toggle.active span {
    background: transparent;
}

.sidebar-toggle.active span:before {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.sidebar-toggle.active span:after {
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}


/* CSS style */

header {
    padding: 25px 0;
}

header nav.navbar {
    padding: 10px 16px;
    border-radius: 10px;
    border-color: #d3dbe9;
    background-color: var(--white);
}

header .change-btn span {
    font-size: 10px;
    display: block;
}

header .navbar-brand {
    max-width: 210px;
}

header li a {
    color: var(--blue-color);
}

.escrow-bar li {
    margin-left: 20px;
}

header ul .nav-item.header-btn:first-child {
    position: relative;
    padding-left: 15px;
}

header ul .nav-item.header-btn:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 1px;
    height: 60%;
    background: #d3dbe9;
}

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

.serach-bar .form-control {
    border-radius: 5px;
    border: 1px solid #d3dbe9;
    font-size: 14px;
    font-weight: 400;
    color: #484c53;
    padding: 14px;
}

.serach-bar {
    min-width: 425px;
    margin-right: 15px;
}

.serach-bar .input-group-text {
    padding: 16px;
    background-color: var(--white);
    border-radius: 5px;
    border: 1px solid #d3dbe9;
}

.serach-bar input::placeholder {
    color: #484c53;
}

header .escrow-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 833px;
    width: 100%;
}

.escrow-bar .navbar-collapse {
    flex-grow: unset;
}

.escrow-bar .translate-middle {
    transform: translate(-38%, -34%) !important;
}

.escrow-bar .img .badge {
    padding: 4px;
    font-size: 7px;
    font-weight: 400;
    background-color: #ff613d;
    border-radius: 50%;
    border-color: #ff613d;
}


/* feed-section */

.feed-section .side-bar img {
    max-width: 22px;
}

.side-bar ul {
    list-style-type: none;
}

.side-bar li {
    /* margin-bottom: 20px; */
    border-bottom: 1px solid #d3dbe9;
}

.side-bar li:last-of-type {
    border-bottom: 0;
}

@media (min-width: 992px) {
    .side-bar li:nth-last-of-type(2) {
        border-bottom: 0;
    }
}

.side-bar.secondary li:nth-last-of-type(2) {
    border-bottom: 1px solid #d3dbe9;
}

.side-bar li a {
    display: flex;
    align-items: center;
    padding: 19px 0;
    color: var(--primery-color);
}

.side-bar li .side-icon {
    min-width: 23px;
}

.side-bar li .small-icon i {
    font-size: 16px;
}

.side-bar li i {
    font-size: 20px;
}

.side-bar {
    padding: 8px 23px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
}

.side-bar.text {
    font-size: 16px;
    font-weight: 400;
}

.side-bar a:hover,
.side-bar li a.active {
    color: var(--blue-color);
    transition: 0.3s;
}

@media (min-width: 768px) {
    .mobile-zip {
        display: none;
    }
}
/* Secondary Sidebar */

.side-bar li a[aria-expanded="true"] {
    font-weight: 700;
}

.side-bar li a.collapsed svg {
    color: #484c53;
}

.side-bar li.has-children {
    position: relative;
}

.side-bar li.has-children a {
    padding-bottom: 12px;
}

.side-bar li.has-children a.active .text {
    color: #131d2e;
}

.side-bar li a .arrow {
    transition: 0.4s all ease;
}

.side-bar li a[aria-expanded="false"] .arrow {
    transform: rotate(180deg);
}


/* Nav Children */

.side-bar .nav-child {
    padding: 0 24px 8px;
}

.side-bar .nav-child li {
    border: none !important;
    margin-bottom: 10px;
}

.side-bar .nav-child li a {
    padding: 5px 0;
}

.side-bar .nav-child li.current-item {
    list-style: disc;
}

.side-bar .nav-child li.current-item::marker {
    color: var(--blue-color);
}

.personalInfo .tittle {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

@media (min-width: 1201px) {
    .desktop-feed-post {
        display: block;
    }

    .mobile-feed-post {
        display: none;
    }
}
@media (max-width: 1200px) {
    .mobile-feed-post {
        display: block !important;
    }

    .desktop-feed-post {
        display: none;
    }

    .personalInfo {
        order: 1;
        margin-bottom: 20px;
    }

    .home-page-feed, .logged-in-feed{
        order: 2;
    }
}



@media (min-width: 1200px) {
    .sidebar-col.col-xl-3,
    .story-model .col-xl-3 {
        max-width: 400px;
        width: 20%;
    }
    .personalInfo.col-lg-4 {
        width: 35%;
    }
    .feed-section .col-xl-7 {
        width: 52.8%;
    }
    .feed-section .col-xl-2 {
        width: 27.1%;
    }
    .feed-section-other .col-xl-9 {
        width: 80%;
    }
}

.story-model {
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
}

.add-story,
.view-story {
    min-height: 192px;
    padding-bottom: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
}

.add-story .text {
    display: block;
    text-align: center;
    align-items: center;
}

.add-story .text p {
    color: var(--white);
    font-weight: 500;
}

.view-story .img {
    margin-right: 6px;
}

.view-story img {
    max-width: 21px;
}

.view-story .text p {
    font-size: 10px;
    font-weight: 500;
    color: var(--white);
}

.storySwiper .swiper-button-next {
    right: 5px;
}

.storySwiper .swiper-button-prev {
    left: 5px;
}

.storySwiper .swiper-button-next,
.storySwiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    color: var(--white);
    background: var(--blue-color);
    border-radius: 50%;
}

.storySwiper .swiper-button-next::after,
.storySwiper .swiper-button-prev::after {
    font-size: 15px;
}

.storySwiper .swiper-button-disabled {
    display: none;
}


/* Post */

.feed-post {
    background-color: var(--white);
    padding: 19px 20px 0px;
    /*margin-top: 20px;*/
    border-radius: 10px;
    border: 1px solid #d3dbe9;
}

.feed-post .profile-img img {
    max-width: 46px;
    border-radius: 50%;
    border: 1px solid #d3dbe9;
    margin-right: 12px;
}

.feed-post .details h3 {
    margin-bottom: 9px;
    font-weight: 600;
}

.feed-post .details p {
    color: rgba(72, 76, 83, 0.7);
}

.feed-post .options-img .dots {
    max-width: 5px;
}

.feed-post .cancel-img {
    font-size: 22px;
    display: none;
}

.options-img .dropdown-toggle {
    padding: 0;
    border: none;
    box-shadow: none !important;
}

.options-img .dropdown-toggle.show .cancel-img {
    display: inline-block;
}

.options-img .dropdown-toggle.show .dots {
    display: none;
}

.options-img .dropdown-toggle::after {
    content: none;
}

.feed-post .options-img ul {
    min-width: 357px;
    padding: 13px 9px;
    border-radius: 10px;
}

.options-img li.border-line {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 5px;
}

.options-img li.option-space {
    padding-bottom: 5px;
    padding-top: 8px;
}

.options-img li p {
    color: var(--secondary-color) !important;
    margin: 0;
}

.options-img li span {
    font-size: 10px;
    color: rgba(118, 118, 118, 0.8);
    display: block;
}

.options-img .dropdown-menu img {
    max-width: 17px;
}

.options-img .dropdown-item {
    display: flex;
}

.options-img li.option-text {
    margin-top: 12px;
}

.block-icon img {
    min-width: 17px;
}

.feed-post .post-info {
    border-top: 1px solid #d3dbe9;
    margin-top: 11px;
    padding-top: 12px;
}

.feed-post .post-img {
    margin: 8px 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    height: 100%;
}

.feed-post .post-img img {
    border-radius: 6px;
    height: 100%;
    object-fit: cover;
}

.feed-post .post-btn {
    font-size: 14px;
    font-weight: 400;
    color: #484c53;
}

.cstm-hight {
    height: 100%;
    margin: 0 !important;
}

.cstm-hight img {
    height: 100%;
    object-fit: cover;
}

.img-more .post-img {
    position: relative;
    z-index: 1;
    
}

.img-more .post-img span {
    font-size: 70px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 29, 46, 0.7);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    
}


@media (min-width: 768px) {
    .custom-col .col-md-5 {
        width: 37.2%;
    }
    
    .custom-col .col-md-2 {
        width: 25.5%;
    }
    
    .custom-col-2 .col-md-2 {
        width: 20%;
    }
    
}


.feed-post .post-icons img {
    max-width: 17px;
}

.feed-post .heart-icon .fal {
    font-size: 16px;
    color: #ff613d;
}

.feed-post .share-icon .fal {
    font-size: 16px;
    color: var(--blue-color);
}

.feed-post .comment-icon .fal {
    font-size: 16px;
    color: #00a79d;
}

.feed-post .text-icon {
    margin-left: 9px;
}

.feed-post .text p {
    color: #484c53;
}

.feed-post .comment-container:first-of-type {
    border-top: 1px solid #d3dbe9;
}
.feed-post .comment-container .reply-container, .feed-post .comment-container .comment-reply  {
    margin-left: 30px;
}

.feed-post .comment-container .reply-container .comment-details {
    padding-top: 0;
}

.feed-post .comment-container .small {
    font-size: 12px !important;
}

.feed-post .comment-reply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}
.feed-post .comment-reply .btn {
    border-color: var(--blue-color);;
    background-color: var(--blue-color);;
}

.feed-post .comment-reply .new-comment {
    margin-right: 10px;
}


.comment-details {
    display: flex;
    margin-top: 6px;
    padding-top: 12px;
}

.comment-details .text p {
    font-size: 12px;
    color: rgba(19, 29, 46, 0.7);
}

.comment-details img {
    max-width: 22px;
    margin-right: 2px;
    border-radius: 50%;
}

.comment-details .text {
    background-color: #edf4ff;
    border-radius: 5px;
    padding: 7px 19px 5px 9px;
}

.comment-details .text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--primery-color);
    display: block;
}

.comment-likes {
    display: flex;
    padding: 4px 32px;
}

.comment-likes .post-btn {
    font-size: 12px;
    color: rgba(19, 29, 46, 0.7);
}

.comment-likes .post-btn.liked {
    color: rgba(19, 29, 46);
}

.add-btn {
    border-radius: 50%;
    background-color: #3468ff;
    color: var(--white);
    width: 36px;
    text-align: center;
    font-size: 15px;
    aspect-ratio: 1;
    padding: 0;
}


/* Profile Bar */

.suggestion-col {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d3dbe9;
}

.suggestion-col .view-link a {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    color: #3468ff;
}

.profile-border {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.profile .profile-pic img {
    min-width: 60px;
    border-radius: 50%;
}

.has-story img {
    border-radius: 50%;
    border-color: #ff613d;
}

.profile .details {
    margin-left: 6px;
}

.profile .details p {
    color: rgba(72, 76, 83, 0.7);
}

.profile {
    margin-top: 25px;
}

.profile .profile-pic,
.profile .profile-pic .name_initial {
   width: 60px;
   height: 60px;
}

.profile .profile-info p {
    font-size: 14px;
    max-width: 300px;
}

.view-btn {
    margin-top: 20px;
}


/* Other User Profile */

.cover-pic img {
    max-width: 1110px;
}

.cover-pic {
    margin-bottom: 20px;
}

.other-user {
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
}

.other-user .img img {
    max-width: 92px;
    border-radius: 10px;
}

.other-user .text {
    margin-left: 15px;
}

.feed-post .option-icon .fal {
    font-size: 32px;
}

.friends-imgs .img {
    margin-right: 10px;
    margin-top: 18px;
}

.friends-imgs .img img {
    width: 25px;
    aspect-ratio: 1;
    border-radius: 50%;
}

.follow-btn {
    margin-right: 5px;
}

.follow-btn .outline {
    padding: 10px 0;
}

.user-icon .fal {
    font-size: 18px;
    margin-right: 5px;
}

.adder-icon .fal {
    font-size: 40px;
    color: var(--blue-color);
}

.message-icon .fal {
    font-size: 17px;
    margin-right: 5px;
}

.message-btn .btn_site {
    padding: 10px 14px;
}

.user-post .intro {
    padding: 22px;
    border-radius: 10px;
    background-color: var(--white);
    margin-bottom: 20px;
}

.intro .tittle p {
    max-width: 327px;
    margin-top: 12px;
    font-weight: 400;
    margin-bottom: 28px;
}

.intro .text p, .intro .personal-info li {
    word-wrap: break-word;
}

.personal-info img {
    max-width: 14px;
}

.personal-info ul {
    list-style-type: none;
}

.personal-info li {
    color: var(--secondary-color);
    margin-top: 12px;
}

.personal-info li img {
    margin-right: 9px;
}

.personal-info-icon {
    font-size: 14px;
    color: var(--blue-color);
}


/* Rating */

.info-icon .fal {
    font-size: 18px;
}

.rating {
    padding: 22px;
    background: var(--white);
    border-radius: 10px;
}

.rating .img img {
    max-width: 18px;
}

.stars {
    padding-bottom: 18px;
    margin-top: 10px;
}

.star-img {
    margin-right: 7px;
}

.star-img img {
    max-width: 31px;
}

#ratingStars img {
    max-width: 30px;
    margin-right: 7px;
}

.text-rating p {
    font-size: 18px;
    font-weight: 400;
    color: var(--blue-color);
    text-decoration: underline;
}

.stars {
    border-bottom: 1px solid #d3dbe9;
}

.ratting-btn {
    margin-top: 18px;
}


/* Contact Page */

.quote-section {
    background-color: var(--white);
    padding: 96px 0;
    border-radius: 10px;
}

.quote {
    max-width: 555px;
    margin: auto;
    text-align: center;
}

.steps {
    border-radius: 10px;
    background-color: #e7eaef;
    height: 5px;
    width: 10%;
    margin-right: 8px;
    margin-bottom: 47px;
}

.steps.active {
    background-color: #00a79e;
}

.quote h2 {
    font-size: 30px;
}

.quote-step1 .input-group {
    margin: 30px 0 25px;
}

.quote-step1 .form-control {
    border-radius: 10px !important;
    border-color: #d3dbe9 !important;
    padding: 12px 15px !important;
    font-size: 16px;
    font-weight: 400;
    color: rgba(72, 76, 83, 0.7);
}


/* Quote Step 2 */

.input-group-text {
    border-radius: 10px;
    border-color: #d3dbe9;
    color: var(--blue-color);
    color: rgba(72, 76, 83, 0.7);
    background-color: #fff;
}

.input-group-text .fal {
    font-size: 20px;
    color: var(--blue-color);
}

.check-btn {
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.check-btn label {
    border: 1px solid #d3dbe9;
    border-radius: 10px;
    display: block;
    text-align: center;
    padding: 15px 10px;
    font-size: 20px;
    font-weight: 400;
    color: rgba(72, 76, 83, 0.7);
}

.check-btn input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.check-btn input:checked+label {
    background-color: #00a79e;
    color: #fff;
}


/* Quote Step 3 */

.quote.quote-step3 {
    max-width: 637px;
}

.step {
    max-width: 552px;
    margin: auto;
}

.quote-step3 h2 {
    font-size: 38px;
    font-weight: 600;
    color: #ff613d;
    margin-bottom: 14px;
}

.quote-step3 h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
}

.quote-step3 button {
    margin-top: 43px;
}

.button .btn_site {
    min-width: 308px;
    padding: 10px 15px;
    border-radius: 10px;
}


/* Quotes Step 4 */

.quote.quote-step4 {
    max-width: 768px;
}

.options {
    margin: 20px 0 40px;
}

.options .form-check {
    padding-left: 0;
}


/* Quotes Step 5 */

.quote.quote-step5 {
    max-width: 589px;
}

.quote-step5 h2 {
    line-height: 1.5;
}

.email {
    margin: 30px auto 30px;
    max-width: 555px;
}

.email .form-control {
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(72, 76, 83, 0.7);
}

.quote-step5 .btn_site {
    min-width: 284px;
    padding: 10px 15px;
    border-radius: 10px;
}


/* Quotes Step 6 */

.quote.quote-step6 {
    max-width: 821px;
}

.quote-step6 span {
    font-size: 22px;
    font-weight: 400;
}

.quote-step6 .image {
    margin: 30px 0 12px;
}

.quote-step6 .image img {
    border-radius: 10px;
}

.quote-step6 .text p {
    font-size: 18px;
    font-weight: 400;
    color: #131d2e;
    margin-bottom: 40px;
}


/* Quotes Step 7 */

.quote.quote-step7 {
    max-width: 589px;
}

.quote-step7 .btn_site {
    min-width: 284px;
}

.select-gates {
    margin: 30px 0 47px;
}

.select-gates .form-select {
    width: 555px;
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.7);
    padding: 12px 15px;
    background-image: url(/assets/images/dropdown.svg);
}


/* Quotes Step 8 */

.quote.quote-step8 {
    max-width: 589px;
}

.quote-step8 .btn_site {
    min-width: 284px;
}

.quote-step8 .images {
    margin: 18px 0 28px;
}

.quote-step8 .images img {
    border-radius: 6px;
    max-height: 160px;
}

.quote-step8 .form-check {
    margin-top: 10px;
}

.quote-step8 .check-btn {
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.quote-step8 .check-btn label {
    border: none;
    border-radius: 6px;
    padding: 3px;
}

.quote-step8 .check-btn input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.quote-step8 .check-btn input:checked+label {
    border-radius: 6px;
    background-color: #ff613d;
}

.quote-step8 label::before {
    content: " ";
    position: absolute;
    border-radius: 50%;
    border: 1px solid #d3dbe9;
    width: 15px;
    height: 15px;
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.quote-step8 label::after {
    content: " ";
    position: absolute;
    border-radius: 50%;
    background: #00a79e;
    width: 9px;
    height: 9px;
    bottom: 8px;
    left: 3px;
    z-index: -1;
}

.quote-step8 .check-btn img {
    border-radius: 6px;
}

.check-btn p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    margin-left: 25px;
    text-align: left;
}


/* Quotes Step 9 */

.quote.quote-step9 {
    max-width: 610px;
}

.quote-step9 h2 {
    margin-bottom: 35px;
}

.quote-step9 .button {
    margin-top: 23px;
}

.quote-step9 .text p {
    font-size: 16px;
    font-weight: 400;
    color: #7f8186;
    margin-top: 32px;
}

.quote-step9 .text span {
    color: #3468ff;
}


/* Quotes Step 10 */

.quote.quote-step10 {
    max-width: 698px;
}

.quote-step10 .text p {
    font-size: 20px;
    font-weight: 400;
}

.quote-step10 .text h3 {
    font-size: 58px;
    font-weight: 600;
    color: #ff613d;
    margin: 12px 0 17px;
}

.quote-step10 h2 {
    margin-bottom: 40px;
}


/* Blog-Quotes */

.blog-qoute .quote-section {
    padding: 80px 0 12px;
}

.blog-qoute .steps {
    min-width: 95px;
    margin-bottom: 62px;
}

.blog-qoute .form-control {
    padding: 10px 15px;
    border-radius: 10px;
}

.blog-step {
    text-align: center;
    margin: auto;
    max-width: 410px;
}


/* blog-step-1 */

.blog-qoute .quote-step1 h2 {
    margin-bottom: 35px;
}

.blog-qoute .quote-step1 input {
    margin-bottom: 12px !important;
}


/* blog-step-2 */

.blog-qoute .quote-step2 p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primery-color);
    margin: 5px 0 20px;
}

.blog-qoute .quote-step2 {
    max-width: 555px;
}

.select-btn {
    max-width: 100px;
    padding: 3px 12px;
    background: #00a79e;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-right: 5px;
}

.select-button {
    text-align: start;
}

.blog-qoute .quote-step2 button {
    margin-top: 23px;
}

.quote-step2 svg {
    margin-left: 13px;
}

.blog-button {
    margin-top: 50px;
}

.blog-qoute .quote-step2 .form-check-input[type="checkbox"] {
    width: 19px;
    height: 18px;
    margin-top: 6px;
    border-radius: 0;
    margin-right: 18px;
}

.blog-qoute .quote-step2 .form-check-input:checked {
    background-color: #00a79d;
    border: 1px solid #00a79d;
}

.dashboardcode-bsmultiselect label {
    font-size: 20px;
    font-weight: 400;
    color: var(--primery-color);
}

.dashboardcode-bsmultiselect li {
    padding: 0px 10px 5px !important;
    margin-bottom: 5px;
}

.badge .btn-close {
    background: url(/assets/images/cancel-icon.svg) no-repeat;
    background-size: cover;
    border-radius: 0;
    margin-left: 20px;
    vertical-align: unset !important;
}

.blog-qoute .badge button {
    margin-top: 8px;
}

.blog-qoute .quote-step2 .badge {
    background-color: #00a79e;
    border-radius: 5px;
    margin-right: 10px;
}

.blog-qoute .quote-step2 .badge span {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}


/* blog-step-3 */

.blog-qoute .quote-step3 {
    max-width: 555px;
}

.blog-qoute .quote-step3 h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primery-color);
}

.blog-qoute .quote-step3 input {
    margin: 0 0 12px;
}


/* blog-step-4 */

.blog-qoute .quote-step4 p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primery-color);
    margin: 5px 0 30px;
}

.check-option {
    text-align: start;
    margin-bottom: 55px;
}


.check-option [type="checkbox"] {
    border-color: #00a79d !important;
    width: 19px;
    min-width: 19px;
    height: 18px;
    min-height: 18px;
    border-width: 1px;
    margin-top: 6px;
    border-radius: 0;
    margin-right: 18px;
}

.check-option .form-check-input:checked {
    background-color: #00a79d;
}

.check-option label {
    font-size: 20px;
    font-weight: 400;
    color: var(--primery-color);
}

.check-option .form-check {
    margin-bottom: 12px;
}


/* Account-Created */

.account-create {
    text-align: center;
    margin: auto;
    max-width: 500px;
}

.account-create h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.account-create p {
    font-size: 20px;
    font-weight: 400;
    color: var(--primery-color);
}

/* contracter new page  */

.header-v2 .nav-item.header-btn::before {
    display: none !important;
}

.main-wrapper .container > .wrapper {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 1440px;
    margin: auto;
    border: 1px solid #d3dbe9;
}

.main-wrapper .container > .wrapper .wrapper {
    padding: 0 10px;
    margin: auto;
}

.padding-50 {
    padding: 50px 30px;
}

.margin-50 {
    margin-bottom: 50px;
}

.cont-banner .wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

.cont-banner .content {
    padding: 0;
}

.cont-banner .content h1 {
    color: var(--primery-color);
    font-size: 40px;
    font-weight: 600;
}

.cont-banner .content p {
    margin: 10px auto 40px;
    color: var(--gray);
    max-width: 502px;
    font-weight: 400;
    font-size: 16px;
}

.pop-video img {
    border-radius: 10px;
}

.bsnner-logo {
    max-width: 250px;
    margin: 0 auto 0;
}

.regForm .form-title h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primery-color);
    margin: 60px auto 35px;
}

.regForm input {
    width: 100%;
    border: 1px solid #d3dbe9;
    padding: 12px 16px;
    border-radius: 7px;
    transition: 0.3s all ease;
}

.regForm input::placeholder {
    color: #8c8c8c;
}

.regForm input:focus {
    outline: unset;
    box-shadow: 0 0 0 4px rgba(52, 104, 255, 0.2);
    border-color: var(--blue-color);
}

.regForm input.invalid {
    background-color: rgba(255, 221, 221, 0.4);
}

.regForm .tab {
    display: none;
}

.regForm #prevBtn {
    background-color: rgba(0, 167, 157, 0.8);
    border-color: rgba(0, 167, 157, 0.8);
}

.regForm #prevBtn:hover {
    background-color: rgba(4, 151, 141, 1);
    border-color: rgba(4, 151, 141, 1);
}

.regForm .all-steps {
    display: flex;
    gap: 10px;
}

.regForm .step {
    height: 4px;
    max-width: 90px;
    width: 100%;
    border: none;
    display: inline-block;
    background-color: rgba(175, 181, 192, 0.6);
    border-radius: 5px;
}

.regForm .step.active {
    background: #00a79d;
}

.regForm .step.finish {
    background: #00a79d;
}

.regForm .all-steps {
    text-align: center;
}

.regForm .thanks-message {
    display: none;
}

.thanks-message img {
    max-width: 70px;
}

.thanks-message h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primery-color);
    margin: 30px auto 20px;
}

.thanks-message p {
    font-size: 20px;
    color: var(--gray);
}
/* Home Owner page invite */

.reliability-sec {
    margin: 100px 30px 0;
}

.light-bg {
    position: relative;
    z-index: 1;
}

.light-bg::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: #edf4ff;
    border-radius: 10px;
}

.blue-title.tittle h2 {
    font-size: 50px;
}

.blue-title p {
    color: #8c8c8c;
    font-size: 18px;
    margin: 15px auto 40px;
    font-weight: 400;
}

.blue-title .btn_site {
    min-width: 260px;
}

.profile-card {
    padding: 8px;
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    border-radius: 10px;
}

.profile-card .profile-title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d3dbe9;
}

.profile-card .profile-title img {
    max-width: 60px;
}

.profile-card .profile-title h3 {
    color: var(--primery-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-card .profile-title p {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
}

.profile-card .profile-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--primery-color);
    font-size: 12px;
    margin: 15px 0 30px;
}

.profile-card a {
    width: 100%;
    background-color: transparent;
    color: var(--blue-color);
    font-weight: 600;
    border: 1px solid var(--blue-color);
}

.profile-card a:hover {
    color: var(--white);
    background-color: var(--blue-color);
}

.nightmar .inner-width.text {
    max-width: 500px;
}

.nightmar .inner-width.text p {
    font-size: 17px;
}

/* content-section  */
.content-section {
    padding: 40px 70px;
    margin: 50px 30px;
    background-color: #edf4ff;
    border-radius: 10px;
}

.content-section .blue-title h2 {
    text-align: left;
    margin-bottom: 10px;
    font-size: 50px;
}

.content-section .blue-title p {
    margin: 0;
}

/* content-img-section  */
.content-img-section .wrapper {
    max-width: 1170px;
    margin: auto;
}

.nightmar2 .txt h2 {
    margin: 50px auto 35px;
    max-width: 770px;
}
.nightmar .tittle span,
.blue-title.tittle h2 span {
    color: var(--blue-color);
}

.content-img-section .blue-title.tittle h2 {
    text-align: center;
}
/* Home Owner Page */

.home-owner {
    background-color: var(--white);
    border-radius: 10px;
    padding: 34px 30px;
}

.relaiable {
    padding: 10px 40px 24px 55px;
    position: relative;
    z-index: 1;
}

.relaiable::before {
    content: "";
    background-color: #edf4ff;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    border-radius: 10px;
}

.relaiable .text {
    max-width: 411px;
}

.relaiable .text h2 {
    font-size: 43px;
    font-weight: 700;
}

.relaiable .text h2 span {
    color: var(--blue-color);
}

.relaiable .text p {
    font-size: 18px;
    font-weight: 400;
    color: #8c8c8c;
    /*max-width: 382px;*/
    margin: 10px 0 45px;
}

.relaiable .owner-pic {
    max-width: 41px;
}

@media (max-width: 1400px) {
    /* Home Owner page  */
    .profile-card .profile-title h3 {
        font-size: 16px;
    }

    .profile-card .profile-title img {
        max-width: 45px;
    }

    .content-section .blue-title h2 {
        font-size: 42px;
    }

    .blue-title p {
        font-size: 16px;
    }

    .blue-title p br {
        display: none;
    }

    /* contractor page  */

    .regForm .form-title h3 {
        font-size: 22px;
    }

    .relaiable .text h2 {
        font-size: 35px;
    }

    .relaiable .text p {
        margin-bottom: 30px;
    }

    .relaiable::before {
        height: 85%;
    }

    .check-list li {
        font-size: 14px;
    }
}
@media (min-width: 1200px) {
    .relaiable .col-xl-7 {
        width: 56%;
    }
}

.relaiable .btn_site {
    min-width: unset;
    width: 100%;
    padding: 10px 13px;
}

.contractor {
    background-color: var(--white);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 20px;
}

.contractor .details h2 {
    font-size: 15px;
    font-weight: 600;
}

.contractor .details p {
    font-size: 9px;
}

.feedback-table #ratingStars img,
.feedback-table #ratingStars1 img,
.feedback-table #ratingStars2 img,
.feedback-table #ratingStars3 img,
.feedback-table #ratingStars4 img {
    max-width: 20px;
    margin-right: 7px;
}

.contractor .profile-border {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.contractor .profile-info p {
    font-size: 9px;
    font-weight: 400;
}

.contractor .btn_site {
    min-width: 200px;
    padding: 8px 0;
    font-size: 11px;
}

.question {
    padding: 80px 0 70px;
}

.question .tittle h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    margin: auto;
    max-width: 540px;
    margin-bottom: 60px;
}

.question .tittle span {
    color: var(--blue-color);
}

.question img {
    max-width: 886px;
}

.peace-mind {
    background-color: #edf4ff;
    padding: 44px 66px;
    border-radius: 10px;
}

.peace-mind .text {
    max-width: 582px;
}

.peace-mind .text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

.peace-mind .btn_site {
    min-width: 294px;
    padding: 10px 13px;
}

.nightmar {
    padding: 35px 0;
}

@media (min-width: 992px) {
    .nightmar .col-lg-7 {
        width: 54.333333%;
    }
    .nightmar .col-lg-4 {
        width: 30.333333%;
        margin: auto;
    }
}

.nightmar .tittle h2,
.blue-title.tittle h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: auto;
}

.nightmar .tittle span,
.blue-title.tittle h2 span{
    color: var(--blue-color);
}

.nightmar .tittle {
    margin-bottom: 50px;
}

.nightmar .comma img {
    max-width: 27px;
}

.nightmar .text {
    max-width: 525px;
}

.nightmar .text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--blue-color);
    line-height: 1.4;
    margin: 12px 0 20px;
}

.nightmar .text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.nightmar .txt h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primery-color);
    line-height: 1.3;
    text-align: center;
    max-width: 630px;
    margin: 90px auto 34px;
}

.nightmar .watch-btn .btn_site {
    min-width: 248px;
    font-weight: 500;
}

.nightmar .watch-btn .btn_site svg {
    margin-right: 10px;
}

.nightmar .wrapper {
    max-width: 1000px !important;
    margin: auto;
}

.nightmar .image {
    position: relative;
    z-index: 1;
}

.nightmar .image img {
    border-radius: 25px;
}

.nightmar .image::before {
    content: " ";
    position: absolute;
    z-index: -1;
    background-color: var(--blue-color);
    border-radius: 10px;
    bottom: 23px;
    left: -11%;
    width: 100%;
    height: 85%;
    max-width: 170px;
    transform: rotate(-14deg);
}


/* Contractor */

.home-contractor {
    background-color: var(--white);
    border-radius: 10px;
    padding: 34px 30px;
}

.home-contractor .relaiable h2 {
    font-size: 40px;
    font-weight: 700;
}

.home-contractor .relaiable {
    padding: 13px 28px 4px 45px;
}

.home-contractor .text {
    max-width: 380px;
}

.home-contractor .relaiable p {
    font-size: 16px;
    margin: 22px 0 42px;
}

.home-contractor .relaiable img {
    margin-bottom: 20px;
}

.protect .container {
    max-width: 777px;
    padding-top: 70px;
    margin: auto;
}


/* Email-confirm */

#confirm-email .modal-content {
    border-radius: 10px;
}

#confirm-email .modal-body {
    max-width: 590px;
    margin: auto;
}

#confirm-email h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primery-color);
}

#confirm-email p {
    font-size: 18px;
    font-weight: 400;
    color: var(--primery-color);
    margin: 25px auto 40px;
}

#confirm-email .btn_site {
    background-color: #00a79d;
    border: 2px solid #00a79d;
    margin-bottom: 50px;
}
.protect .text {
    margin-left: 10px;
}

.protect .text h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-color);
    margin: 16px 0;
}

.check-list {
    list-style-type: none;
    padding-left: 27px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.check-list li {
    position: relative;
    font-size: 18px;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -27px;
    margin: auto;
    aspect-ratio: 1;
    width: 16px;
    background-image: url(../images/check-icon04.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position-y: center;
}

.protect .inner-wrapper {
    position: relative;
    z-index: 1;
}

.protect .inner-wrapper > img {
    position: absolute;
    z-index: -1;
    top: 22%;
    right: 31%;
    width: auto;
    height: max-content;
    width: 42px;
    margin: auto;
}

.protect .inner-wrapper > .arrow-1 {
    right: unset;
    left: 32%;
}

@media (min-width: 1200px) {
    .protect .wrap-1 .col-xl-7 {
        width: 61.333333%;
    }
    .protect .wrap-1.col-xl-3 {
        flex: 0 0 auto;
        width: 25.333333%;
    }
    .protect .wrap-2 .col-xl-7 {
        width: 57.333333%;
    }
    .protect .wrap-3 .col-xl-7 {
        width: 55.333333%;
    }
    .dashboard-profile.col-xl-7 {
        flex: 0 0 auto;
        width: 64.333333%;
    }
}

.protect .text h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 28px;
}

.protect ul {
    list-style: none;
    margin-top: 10px;
}

.protect .wrap-2 {
    max-width: 842px;
    padding-top: 105px;
}

.protect .wrap-3 {
    max-width: 866px;
    padding-top: 120px;
}

.protect .wrap-3 ul {
    text-wrap: wrap;
}

.nightmar-construct {
    padding: 60px 0;
}

.nightmar-construct .text {
    text-wrap: wrap;
}


/* Project Financing */

.project-finance {
    background-color: var(--white);
    border-radius: 10px;
    padding: 34px 30px;
}

.project-finance .Build {
    position: relative;
    z-index: 1;
}

.project-finance .Build::before {
    content: " ";
    background: #edf4ff;
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 69%;
}

.Build .info {
    padding: 35px;
}
.date-alert {
    color: var(--blue-color)!important;
    font-weight: 400;
}
.info h2 {
    font-size: 35px;
    font-weight: 700;
}

.info h2 span {
    color: var(--blue-color);
}

.info h2 span.font-weight-normal {
    font-weight: 500;
}

.info .text p {
    font-size: 16px;
    font-weight: 400;
    margin: 16px 0 28px;
}

.info .btn_site {
    min-width: unset;
    width: 88%;
    margin-bottom: 41px;
}

.Build .info .video img {
    border-radius: 19px;
}

.Build .info .video {
    position: relative;
    z-index: 1;
}

.Build .info .video::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: url(/assets/images/build-bg.svg) no-repeat;
    border-radius: 19px;
    background-size: 100% 100%;
    left: -19%;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.Build .image img {
    border-radius: 19px;
}

.build-card {
    background: var(--white);
    box-shadow: 0px 3px 23px rgba(52, 104, 255, 0.1);
    border-radius: 10px;
    height: 100%;
    padding: 17px 20px;
    text-align: center;
}

.build-card .card-text p {
    font-size: 14px;
    font-weight: 500;
    color: var(--primery-color);
    margin-top: 15px;
}

.build-card img {
    width: auto;
    height: 100%;
}

.apart {
    padding: 77px 0px 30px 21px;
}

.apart .text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 20px;
}

.apart .text {
    max-width: 305px;
}

.apart .text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(72, 76, 83, 0.6);
    margin: 20px 0 15px;
}

.apart .btn_site {
    min-width: unset;
    width: 93%;
}

.apart-cards {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 3px 30px rgba(19, 29, 40, 0.15);
    padding: 18px 19px 32px 18px;
    height: 100%;
}

.apartcard [class*="col-"] {
    margin-bottom: 18px;
}

.apart-cards .main-tittle img {
    width: auto;
    height: 100%;
    margin-right: 10px;
}

.main-tittle h2 {
    font-size: 19px;
}

.apart-cards .card-text p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.6);
    margin-top: 10px;
}


/* Blog */

.blog-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 34px 30px;
}

.blog-section .blog {
    position: relative;
    z-index: 1;
}

.blog-section .blog::before {
    content: " ";
    background: #edf4ff;
    border-radius: 10px;
    padding: 10px 20px;
    position: absolute;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 50%;
}

.blogcard {
    padding: 15px 25px 90px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid #d3dbe9;
    box-shadow: 0px 3px 23px rgba(52, 104, 255, 0.1);
    height: 100%;
}

.blog-card .image img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    max-height: 254px;
    min-height: 254px;
    object-fit: cover;
}

.blog-card .blog-text {
    text-align: center;
    margin: auto;
    margin: 0px auto 20px;
}

.blog-text .text {
    padding: 0 12px;
}

.blog-card .main-tittle h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 23px;
}

.blog-card .main-tittle p {
    font-size: 12px;
    font-weight: 400;
    color: #484c53;
    max-width: 300px;
    margin: 12px auto 0;
}

.blog-subtext.sub-para {
    text-align: center;
    margin: auto;
    max-width: 272px;
}

.blog-card .main-tittle .blog-para {
    text-align: center;
    margin: 12px auto 0;
    max-width: 238px;
}

.blog-card .blog-subtext p {
    margin: 20px auto 25px;
    font-size: 14px;
    font-weight: 400;
    color: #484c53;
    max-width: 300px;
}

.right-contractor {
    text-align: center;
    margin: auto;
    max-width: 250px !important;
}

.blog-card a {
    font-size: 14px;
    font-weight: 500;
    color: #3468ff;
}


/* Dashboard Profile */

.alert-email {
    background: #ff613d;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.alert-email p {
    text-align: center;
    margin: auto;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 8px 15px;
}

.header-img {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    height: 240px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.header-img .uploaded-img,
.header-img .uploaded-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-headerimg {
    text-align: center;
    margin: 33px auto 0;
    padding: 60px 0 80px;
}

.add-headerimg.img-added {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.add-headerimg p {
    color: rgba(19, 29, 46, 0.8);
}

.upload-img {
    border-radius: 10px;
    width: 101px;
    height: 101px;
    border: 1px solid #d3dbe9;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.add-headerimg label,
.upload-img label {
    cursor: pointer;
}

.profile-photo-uploader {
    position: absolute;
    left: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo-uploader.img-added {
    z-index: -1;
}

.search-status {
    padding: 22px;
    background: var(--white);
    border-radius: 10px;
    margin-top: 20px;
}
.search-status .check {
    margin-right: 10px;
}

.search-status .fa-duotone:before {
    color: var(--blue-color);
}

.search-status .fa-duotone:after {
    color: var(--cloudless);
    opacity: 1;
}

.serch-text {
    border-bottom: 1px solid #d3dbe9;
}

.serch-text p {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-color);
}

.serch-text h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primery-color);
    padding: 5px 0 20px;
}

.status-option {
    max-width: 593px;
    margin: auto;
    border-top: 1px solid #d3dbe9;
}

.status-option .fal {
    font-size: 16px;
}

.status-option .video-icon {
    color: #ff613d;
}

.status-option .camera-icon {
    color: #008e51;
}

.status-option .face-icon {
    color: var(--blue-color);
}

.post-viwers h3 {
    font-size: 18px;
    font-weight: 600;
}

.post-viwers select,
.create-post .form-select {
    border: 0;
}

.post-viwers .form-select option,
.create-post .form-select option {
    border: 4px;
    padding: 10px 7px;
}

.post-viwers .form-select,
.create-post .form-select {
    background-position: 100% 50%;
    max-width: 80px;
    padding: 3px 12px 3px 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.7);
}

.thought {
    padding: 20px 58px 60px;
    cursor: pointer;
}

.thought h2 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.dashboard-profile .options-img ul {
    min-width: 71px;
    padding: 10px 7px;
    border-radius: 4px;
}

.dashboard-profile .dropdown-item {
    padding: 0;
}

.dashboard-profile li.option-space {
    padding-top: 6px;
}

.camera-option {
    text-align: center;
    margin: auto;
}


/* Pricing Plan */

.pricing-plan .tittle h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.pricing-plan .tittle {
    padding: 18px 7px 16px;
}

.pricing h2 {
    font-size: 52px;
    font-weight: 600;
}

.pricing span {
    font-size: 19px;
    font-weight: 500;
    color: rgba(19, 29, 46, 0.83);
    margin-left: 5px;
}

.pricing h3 {
    font-size: 26px;
    font-weight: 500;
    margin: 13px 0 18px;
}

.pricing {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: 23px;
}

.pricing-plan .offer-card {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    padding: 27px 18px 23px 29px;
    min-height: 665px;
    margin-bottom: 50px;
}

.package-offer li {
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.package-offer li img {
    width: auto;
    height: 100%;
    margin-right: 8px;
}

.current-offer {
    background: var(--blue-color) !important;
    border: 1px solid #d3dbe9;
}

.current-offer .pricing {
    border-bottom: 1px solid rgba(242, 242, 242, 0.53);
}

.current-offer h2,
.current-offer h3,
.current-offer span,
.current-offer li {
    color: #fff !important;
}

.current-offer {
    position: relative;
    z-index: 1;
}

.current-offer::before {
    content: " ";
    position: absolute;
    background: url(/assets/images/premium-tag.svg) no-repeat;
    background-size: 170% 24%;
    z-index: -1;
    top: 0;
    right: 0;
    width: 100%;
    height: 48%;
}

.card2 img {
    width: auto;
    height: 100%;
}


/* Contracts Page */

.create-table {
    border-left: 1px solid #d3dbe9;
    margin-left: 10px;
    padding-left: 16px;
}

.contracts h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.contracts .input-group-text {
    background: var(--blue-color);
}

.contracts-table {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    margin: 20px 0;
}

.contracts-table tbody tr:nth-of-type(even) {
    background-color: #f5f9ff;
}

.contracts-table tbody td {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    padding: 12px 20px;
    border-style: unset;
    border: none;
    vertical-align: middle;
}

.contracts-table thead th {
    font-size: 16px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
    padding: 12px 20px;
}

.contracts-table tbody tr {
    min-height: 64px;
}

.contracts-table tbody .btn_site {
    min-width: 103px;
    min-height: 50px;
}


/* Contracts Details */

.back-btn {
    margin-bottom: 23px;
}

.back-btn h2 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(19, 29, 46, 0.8);
    margin-left: 12px;
}

.contracts-details {
    margin-bottom: 50px;
}

.contracts-details .nav-tabs .active {
    color: var(--blue-color);
    border-bottom: 5px solid #3468ff;
    background: none;
}

.contracts-details .nav-tabs {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    margin-bottom: 25px;
}

.contracts-details .nav-item:first-of-type button {
    border-bottom-left-radius: 10px;
}

.contracts-details .nav-item:last-of-type button {
    border-bottom-right-radius: 10px;
}

.nav-item button {
    font-size: 16px;
    font-weight: 500;
    color: rgba(19, 29, 46, 0.8);
    padding: 12px 29.6px;
}

.contracts-details .nav-tabs button {
    border: none;
}

.contracts-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    padding: 13px 15px 16px;
    min-height: 100px;
}

.contracts-card li {
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.contracts-card .text {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 7px;
    margin-bottom: 16px;
}

.contracts-card .text span {
    background-color: rgba(255, 97, 61, 0.15);
    color: #ff613d;
    padding: 2px 0;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    text-align: center;
    min-width: 100px;
}

.contracts-card .date p {
    font-size: 18px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.contracts-card .text img {
    width: auto;
    height: 100%;
}

.message-btn .btn_site {
    min-width: 170px;
    margin-right: 12px;
}

.message-btn .outline {
    min-width: 122px;
}

.contractor-details {
    background: var(--white);
    border-radius: 10px;
    padding: 17px 18px;
    min-height: 183px;
    margin-top: 20px;
}

.contactor-info h2 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.contactor-info p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    margin: 10px 0 46px;
}

.contractor-details .option-icon .fal {
    font-size: 24px;
}

.contact-info img {
    width: auto;
    height: 100%;
}

.contact-info .personal-info-icon {
    text-align: center;
    font-size: 16px;
}

.contact-info .image {
    border-radius: 2px;
    margin-right: 6px;
    padding: 0 4px;
}

.contact-info .image.email-icon {
    background-color: rgba(52, 104, 252, 0.1);
}

.contact-info .phone-icon .personal-info-icon {
    color: #ff613d;
}

.contact-info .image.phone-icon {
    background-color: rgba(255, 97, 61, 0.1);
}

.mail-text p {
    font-size: 14px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.mail-info {
    margin-bottom: 12px;
}

.bill-recive {
    background: var(--white);
    border-radius: 10px;
    padding: 15px 16px;
    margin-top: 20px;
}

.bill-recive .tittle h2 {
    font-size: 16px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.bill-recive .paid-badge span {
    background-color: rgba(255, 97, 61, 0.15);
    color: #ff613d;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
    text-align: center;
    padding: 3px 7px;
}

.bill-recive .tittle {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 12px;
    margin-bottom: 12px;
}


/* chat */

.msger {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
    min-height: 558px;
    border-radius: 10px;
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
}

.msger-inputarea input::-moz-placeholder {
    color: rgba(26, 67, 83, 0.5);
}

.msger-inputarea input::placeholder {
    color: rgba(26, 67, 83, 0.5);
}

.msger-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.msger-chat {
    flex: 1;
    overflow-y: auto;
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 20px 13px 9px;
    max-height: 480px;
}

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

.msger-chat::-webkit-scrollbar-track {
    background-color: rgba(52, 104, 255, 0.3);
    margin: 22px 15px 0 0;
    border-radius: 10px;
}

.msger-chat::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
    border-radius: 10px;
}

.msg-text {
    font-size: 12px;
    color: rgba(19, 29, 46, 0.8);
}

.time {
    text-align: end;
}

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

.msg {
    display: flex;
}

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

.messages .serch-chat {
    background-color: #ffffff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 20px 13px 9px;
    margin: 0;
}

.messages .msger-chat {
    max-height: 370px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.messages .name-log p {
    font-size: 24px;
    color: var(--white);
}

.messages .search-button {
    display: flex;
    justify-content: end;
    align-items: center;
}

.msg-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    background-color: #00a79d;
}

.msg-img p {
    color: var(--white);
    font-size: 18px;
    font-family: sofiapro;
}

.msg-bubble {
    min-width: 356px;
    padding: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: #f5f9ff;
    color: rgba(19, 29, 46, 0.8);
}

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

.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
}

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

.massege {
    display: block;
}

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

.timer {
    text-align: end;
}

.timer h6 {
    font-size: 10px;
    font-weight: 300;
    color: rgba(19, 29, 46, 0.8);
}

.timer h6 span {
    font-size: 10px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.left-msg {
    margin-bottom: 26px;
}

.right-msg {
    margin-bottom: 26px;
}

.left-msg .msg-img {
    margin-right: 8px;
}

.right-msg .msg-img {
    margin-left: 8px;
}

.right-msg .msg-bubble {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: #f5f9ff;
    color: rgba(19, 29, 46, 0.8);
}

.left-msg .msg-bubble {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.msger-inputarea {
    display: flex;
    align-items: center;
    padding: 10px 35px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #fff;
}

.msger-inputarea .input-group-text {
    background: transparent;
}

.msger-inputarea * {
    border: none;
    padding: 5px;
    border-radius: 5px !important;
    font-size: 14px;
}

.msger-inputarea svg {
    padding: 0;
    border-radius: 0;
}

.msger-inputarea .input-group {
    padding: 0;
    background: rgba(26, 67, 83, 0.03);
    padding: 8px;
}

.msger-input {
    font-size: 14px;
    font-weight: 300;
    border-radius: 5px;
    flex: 1;
    background: #ffffff;
}

.msger-send-btn {
    margin-left: 10px;
    padding: 12px 10px;
    min-width: 80px;
    max-height: 48px;
    border-radius: 5px;
    border: 2px solid var(--blue-color);
    background: var(--blue-color);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s all ease;
}

.msger-send-btn:hover {
    background: var(--light-green);
    border-color: var(--light-green);
    color: #4b84e9;
    transition: 0.3s all ease;
}

.msger-send-btn:hover svg {
    color: #4b84e9;
}

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

.chat-module {
    padding: 20px;
}

.serch-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    padding: 18px 12px;
    margin-bottom: 8px;
}

.serch-card .upload {
    margin-top: 22px;
}

.search-conversation .form-control {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.search-conversation .input-group-text {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.file-serch .tittle h2 {
    font-size: 16px;
    font-weight: 500;
    color: #1a4353;
}

.file-serch .tittle {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.file-serch .file p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    text-decoration: underline;
    margin-left: 6px;
}

.file-serch .file {
    display: flex;
    align-items: center;
}


/* Time-Material */

.time-material {
    background: var(--white);
    border-radius: 10px;
    padding: 23px 20px 12px 26px;
}

.time-material .input-number,
.time-material .select-type {
    max-width: 100px;
}

.search-input.form-control {
    min-width: 554px;
}

.cross-icon .fal {
    font-size: 20px;
    color: #e63939;
}

.table tbody {
    vertical-align: middle;
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 5px 0px;
}

.quantity__input {
    text-align: center;
    margin: auto;
    border: 0;
}

.inputWithIcon {
    position: relative;
}

.inputWithIcon .quantity__minus {
    position: absolute;
    left: 0;
    top: 3px;
    padding: 0px 11px;
    transition: 0.3s;
}

.inputWithIcon .quantity__plus {
    position: absolute;
    right: 0;
    top: 3px;
    padding: 0px 11px;
    transition: 0.3s;
}

.time-material .select-type.form-select {
    background-image: url(/assets/images/table-dropdown.svg);
    background-size: 10px 8px;
}

.time-material .add-time {
    width: auto;
    height: 100%;
}

.time-material .total-ammount span {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--blue-color);
    padding: 6px 15px 6px;
    border-radius: 0.375rem;
}

#profitability .profit {
    background: var(--white);
    border-radius: 10px;
    padding: 22px 24px 1px;
    margin-bottom: 50px;
}

.endmargin-ammount {
    text-align: end;
}

.profit .input-profit {
    max-width: 82px;
    text-align: center;
}

.profit .total-profit td {
    border-bottom: 1px solid #d3dbe9;
    padding: 13px 0 17px;
}

.profit .net-profit td {
    padding-top: 12px;
}

.profit span {
    font-size: 16px;
    font-weight: 700;
    color: rgba(19, 29, 46, 0.8);
}

.profit p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.save-btn .btn_site {
    min-width: 112px;
    border-radius: 4px;
    padding: 11px 7px;
    font-size: 16px;
    font-weight: 700;
}

#profitability .col-6 {
    width: 51%;
}


/* Draw */

.draw-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 14px 15px;
}

.draw-card .text {
    border-bottom: 1px solid #e7eaef;
    padding-bottom: 20px;
    margin-bottom: 10px;
}

.draw-card .text p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.draw-card .total h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-color);
}

.draw-remains {
    margin: 24px 0;
}

.draw-remains .tittle h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.issue-btn .btn_site {
    background: #ff613d;
    border-radius: 9px;
    margin-right: 16px;
    min-width: 146px;
    border: 1px solid #ff613d;
}

.draw-table tbody .btn_site {
    min-width: 158px;
    min-height: 50px;
}

.draw-table .outline.full-fund {
    border: 2px solid #00a79d;
    color: #00a79d;
}

.outline.full-fund:hover {
    color: #fff;
    background-color: #00a79d;
}

.draw-table tbody td {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    padding: 12px 19px;
}

.contracts-table thead th {
    font-size: 16px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
    padding: 12px 20px;
}

.payment-table tbody span {
    font-size: 16px;
    font-weight: 400;
    color: #ff613d;
    border-radius: 4px;
    background: rgba(255, 97, 61, 0.15);
    padding: 4px;
}


/* Feedback */

.feedback-table {
    background: var(--white);
    border-radius: 10px;
    padding: 18px 10px 10px;
    position: relative;
    z-index: 1;
}

.feedback-table::before {
    content: " ";
    position: absolute;
    background: url(/assets/images/review-icon.svg) no-repeat;
    background-size: 189% 24%;
    z-index: -1;
    top: -2.5%;
    right: 0;
    width: 100%;
    height: 66%;
}

.review .tittle h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primery-color);
}

.review img {
    width: auto;
    height: 100%;
}

.review {
    margin-bottom: 20px;
}

.feedback-table .stars-review {
    width: auto;
    height: 100%;
}

.feedback-table tbody td {
    padding: 10px 0px 21px 0px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.total-rateing {
    background: var(--white);
    border-radius: 10px;
    min-height: 175px;
    margin: 22px 0 30px;
}

.total-rateing .total {
    display: flex;
    justify-content: space-between;
    background: var(--blue-color);
    padding: 15px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.total-rateing .text h2 {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.total-rateing .rateing p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.write-feedback {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 24px;
}

.write-feedback .tittle h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primery-color);
    margin-bottom: 20px;
}

.write-feedback .text .form-control {
    padding: 20px 20px 0;
}

.write-feedback {
    margin-bottom: 50px;
}


/* Bathroom Renovation Details */

.bath-reno-details {
    background: var(--white);
    border-radius: 10px;
    padding-bottom: 20px;
    margin-bottom: 50%;
}

.header-details {
    padding: 24px 20px;
}

.bath-reno-details .tittle h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.bath-reno-details .tittle p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.7);
    margin-top: 8px;
}

.bath-reno-details .paid p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.bath-reno-details .paid {
    text-align: end;
}

.bath-reno-details .paid h2 {
    font-size: 30px;
    font-weight: 600;
    color: #00a79d;
    margin-top: 12px;
}

.bath-reno-details .contracts-table {
    background: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 0;
    margin: 22px 0;
}

.bath-reno-details tbody .btn_site {
    min-width: 240px;
    min-height: 50px;
}

.contract-install {
    background-color: #f5f9ff;
    margin: 10px 20px;
    padding: 14px 27px;
}

.contract-install p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.contract-install h3 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(72, 76, 83, 0.5);
}


/* Bathroom Renovation Draw */

.bath-reno-draw {
    margin-bottom: 50px;
}

.bath-reno-draw .contracts-table {
    margin-top: 0;
}

.bath-reno-draw tbody .btn_site {
    min-width: 129px;
    min-height: 50px;
    font-size: 14px;
    font-weight: 400;
}

.bath-reno-draw thead th {
    font-size: 22px;
}

.draw-num td {
    padding: 0;
}

.survay p {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue-color);
    text-decoration: underline;
}

.contracts-table.odd-color tbody tr:nth-of-type(odd) {
    background-color: #f5f9ff !important;
}

.contracts-table.odd-color tbody tr:nth-of-type(even) {
    background-color: unset;
}


/* Bathroom renovation conservation */

.serch-chat {
    margin: 0 8px 38px;
}

.serch-chat .form-control {
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-color);
}

.msg-bubble.lg-chat {
    min-width: 490px;
}

.msger-chat.chat-box {
    min-height: 750px;
}


/* Bathroom renovation Loans */

.bath-reno-loan .contracts-card {
    padding: 22px 26px;
    min-height: 123px;
}

.bath-reno-loan .contracts-card li {
    font-size: 16px;
    font-weight: 400;
    color: var(--blue-color);
}

.bath-reno-loan .contracts-card .text {
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.bath-reno-loan .contracts-card .date span {
    font-size: 12px;
    font-weight: 400;
    color: #00a79d;
    padding: 3px 18px;
    border-radius: 5px;
    background-color: rgba(0, 167, 157, 0.1);
}

.bath-reno-loan .contracts-card .date p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.bath-reno-loan .dash p {
    font-size: 14px;
    font-weight: 400;
    color: var(--primery-color);
}

.bath-reno-loan .contracts-card .text span {
    font-size: 12px;
    font-weight: 400;
    color: #00a79d;
    padding: 3px;
    border-radius: 5px;
    min-width: 64px;
    background-color: rgba(0, 167, 157, 0.1);
}

.bath-reno-loan .text.dash {
    margin-bottom: 11px;
}

.bath-reno-loan .dash2 p {
    margin-right: 44px;
}

.bath-reno-loan .tittle h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
    margin: 20px 0;
}

.bath-reno-loan .offer {
    background: var(--white);
    border-radius: 10px;
}

.bath-reno-loan .offer h2 {
    font-size: 16px;
    font-weight: 400;
    color: #00a79d;
    text-align: center;
    margin: auto;
    padding: 50px 0;
}


/* Bathroom renovation Payments */

.bath-reno-payment {
    background-color: var(--white);
    border-radius: 10px;
    padding: 27px 26px;
}

.pay-tittle {
    margin-bottom: 20px;
}

.pay-tittle .tittle h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primery-color);
}

.pay-tittle .text h3 {
    font-size: 12px;
    font-weight: 700;
    color: rgba(19, 29, 46, 0.8);
}

.pay-tittle .text p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
    margin-top: 8px;
}

.pay-graph {
    padding: 14px 3px 21px 30px;
}

.payment-details {
    border-bottom: 1px solid #d3dbe9;
    border-top: 1px solid #d3dbe9;
    margin-bottom: 12px;
}

.pay-graph img {
    min-width: 213px;
}

.graph-value {
    margin: 20px 0 18px;
}

.graph-value p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.end-border {
    border-right: 1px solid #d3dbe9;
    padding-right: 18px;
    margin-right: 20px;
}

.details h3 {
    font-size: 12px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.details h3 span {
    color: var(--blue-color);
}

.details p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.payment {
    padding: 9px 0px 12px 0px;
}

.left-border {
    border-left: 1px solid #d3dbe9;
}

.payment .tittle h2,
.payment .amount h2 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.payment .file-load span {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-color);
    text-decoration: underline;
}

.payment .text h3 {
    font-size: 14px;
    font-weight: 400;
    color: #a5a5a5;
}

.below-border {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 13px;
    margin-bottom: 18px;
}

.add-payment .btn_site {
    background-color: #009b9a;
    border: 1px solid #009b9a;
    font-size: 14px;
    font-weight: 600;
    min-width: 261px;
}

.add-payment {
    margin-top: 20px;
}

.payment-details tbody td {
    padding: 14px 18px;
}

.total-payments h2 {
    font-size: 12px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.total-payments h3 {
    font-size: 12px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
}

.total-payments {
    text-align: end;
}


/* payment table */

.bath-reno-payment .contracts-table.bg-disable tbody tr:nth-of-type(even) {
    background-color: unset;
}

.bath-reno-payment .contracts-table thead tr {
    background-color: #f5f9ff;
}

.bath-reno-payment .contracts-table tbody tr {
    border: 1px solid #e6e6e6;
}

.bath-reno-payment tbody td {
    font-size: 14px;
    font-weight: 400;
}

.bath-reno-payment tbody td.text-alert {
    color: #e02020;
}

.bath-reno-payment thead th {
    font-size: 14px;
    font-weight: 500;
}

.bath-reno-payment .contracts-table {
    background: var(--white);
    border-radius: 0;
    border: unset;
    margin: 20px 0;
}

.feedback-table::before {
    content: " ";
    position: absolute;
    background: url(/assets/images/review-icon.svg) no-repeat;
    background-size: 189% 24%;
    z-index: -1;
    top: -2%;
    right: 0;
    width: 100%;
    height: 66%;
}


/* Pipline */

.pipline .title h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primery-color);
    margin-bottom: 20px;
}

.pipline-header {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
    padding: 27px;
}

.pipline-header .pipecard {
    text-align: center;
}

.pipecard a {
   width:97px;
   height: 77px;
}

.pipecard .num h2 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(19, 29, 46, 0.8);
    margin-bottom: 6px;
}

.pipecard .text h3 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(19, 29, 46, 0.8);
}

.pipecard.border-rig {
    border-left: 1px solid #d3dbe9;
    padding-left: 10px;
}

.pipecard .btn-outline-primary:hover .num h2,
.pipecard .btn-outline-primary:hover .text h3 {
    color: #fff !important;
}
/* Pipline Table */

.pipline-table .header {
    padding: 20px 0 10px;
}

.pipline-table .input-group-text {
    background: var(--blue-color);
}

.pipline-table .search-icon.fal {
    color: var(--white);
}

.pipline-table .contracts-table thead th {
    color: var(--blue-color);
}

.contracts-table tbody td.pipline-option {
    display: flex;
    align-items: center;
}

.pipline-table .cross-icon .fal {
    font-size: 28px;
    color: #e63939;
    margin-left: 10px;
}


/* Messages Chat */

.message-chat .msger-chat.chat-box {
    min-height: 500px;
}

.message-chat .search-button .btn_site {
    min-width: 50px;
    padding: 6px 5px;
    font-size: 24px;
}

.message-chat .msger-inputarea {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.message-chat .serch-chat .title {
    margin-bottom: 16px;
}

.serch-chat .title button {
    border: none;
    background: #ffffff;
    font-size: 20px;
}

.chat-top .title button {
    border: none;
    background: #ffffff;
    font-size: 20px;
}


/* Chat List */

.messages .chat-list {
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid #d3dbe9;
}

.chat-top {
    padding: 20px 18px;
}

.content {
    padding: 0 18px 10px;
}

.chat-top .title h2 {
    font-size: 22px;
    font-weight: 600;
}

.chat-top .title {
    border-bottom: 1px solid #d3dbe9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.search-msg-list .add-list .btn_site {
    min-width: 30px;
    padding: 9px 13px;
}

.chat-list-body {
    border-bottom: 1px solid #d3dbe9;
    padding: 30px 0 20px;
}

.chat-list-body.last-border {
    border: none;
}

.scrolling {
    max-width: 408px;
    height: 446px;
    border-radius: 7px;
    overflow-y: auto;
}

.scrolling::-webkit-scrollbar {
    width: 5px;
}

.scrolling::-webkit-scrollbar-track {
    margin: 22px 15px 0 0;
    background-color: rgba(52, 104, 255, 0.3);
    border-radius: 10px;
}

.scrolling::-webkit-scrollbar-thumb {
    background-color: var(--blue-color);
    border-radius: 10px;
}

.chat-list-body .chat-list-content h2 {
    font-size: 16px;
    font-weight: 700;
}

.chat-list-body .date p {
    font-size: 14px;
    font-weight: 400;
    color: var(--blue-color);
}

.cntract-btn .message-btn {
    display: flex;
}

.home-feed, .top-contractor-feed {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    max-height: 100vh;
    overflow-y: auto;
    margin-bottom: 10px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.home-feed::-webkit-scrollbar, .top-contractor-feed::-webkit-scrollbar  {
    display: none;
}

/* filter section  */

.filters-sec {
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px 15px;
    margin-bottom: 20px;
}

.filters-sec .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.filters-sec .inner-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 800px;
}

.filters-sec label {
    margin-bottom: 6px;
    color: var(--primery-color);
    font-weight: 500;
}

.filters-sec .item span {
    color: var(--primery-color);
    font-weight: 500;
}

.filters-sec select {
    font-weight: 500;
    /*background-color: #e6e6e6;*/
    min-width: 110px;
}

.filters-sec .input-group-text {
    background: var(--blue-color);
}

.filters-sec input {
    font-weight: 500;
}

.status-dropdown {
    font-size: 14px !important;
    padding: 10px !important;
}

.more-filter {
    display: flex;
    gap: 5px;
}

.more-filter .flat-btn:hover {
    background-color: var(--primery-color);
    color: var(--white);
}

.more-filter button {
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 5px;
}

.more-filter button span {
    white-space: nowrap;
}

.cust-icon {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ci-filter {
    background-image: url(../images/filter-icon.png);
}


/* task-list section  */

.task-list {
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white);
}

.task-list .table-responsive::-webkit-scrollbar {
    display: none;
}

.pagination-cust .btn-group button.active {
    background-color: #3468ff;
    color: var(--white);
    border-color: #3468ff;
}

.task-list table :is(th,
td) {
    white-space: nowrap;
    padding-block: 20px;
}

.task-list table thead th:first-child,
.task-list table tbody td:first-child {
    padding-left: 20px;
}

.task-list table thead th:last-child,
.task-list table tbody td:last-child {
    padding-right: 20px;
}

.task-list table th {
    font-weight: 500;
}

.squr-img img {
    border-radius: 5px;
    width: 45px;
    height: auto;
}

.table-text h5 {
    color: var(--primery-color);
    font-size: 16px;
    font-weight: 500;
}

.table-text p {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 400;
}

.task-list .badge {
    color: #854d0e;
    background-color: #fef9c3;
    border-radius: 30px;
    padding: 8px 10px;
    font-weight: 500;
}

.task-list .badge.green {
    color: rgb(22 101 52);
    background-color: rgb(220 252 231);
}

.task-list .badge.l-blue {
    color: rgb(30 64 175);
    background-color: rgb(219 234 254);
}

.task-list .badge.gray {
    color: rgb(31 41 55);
    background-color: rgb(243 244 246);
}

.task-list .badge.purpal {
    color: rgb(107 33 168);
    background-color: rgb(243 232 255);
}

.task-list .badge.orange {
    color: rgb(194 65 12);
    background-color: rgb(255 237 213);
}

.task-list .badge.teal {
    color: rgb(15 118 110);
    background-color: rgb(204 251 241);
}

.avtar-img img {
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.pagination-cust .btn-group {
    border-radius: 0;
    gap: 10px;
    align-items: center;
}

.pagination-cust .btn-group button {
    border-radius: 5px !important;
    padding: 0;
    width: 35px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #dfe1e4;
    color: rgb(55 65 81);
}

.uplode-file {
    position: relative;
    z-index: 1;
}

.uplode-file label {
    background-color: rgb(243 244 246);
    width: 100%;
    height: 100%;
    min-height: 193px;
    border-radius: 8px;
    border: 1px dashed rgb(209 213 219);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fw-medium {
    font-weight: 500;
}

.uplode-file label button {
    z-index: 0;
    position: relative;
}

.file-input {
    visibility: hidden;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}

.bit-conterector>div:hover {
    background-color: rgb(240 253 244);
}

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

.timeline {
    position: relative;
    z-index: 1;
}

.timeline::before {
    content: "";
    border-right: 1px solid #dee2e6;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 33px;
    width: 1px;
    height: 88%;
}

.cust-select img {
    width: 20px;
    border-radius: 50%;
}

.timeline .line-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timeline .line-items:not(:last-of-type) {
    margin-bottom: 30px;
}

.timeline .line-items .icon {
    width: 35px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: rgb(220 252 231);
    color: rgb(22 163 74);
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-selects {
    padding: 7px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
}

.radio-selects .select-btn {
    width: 100%;
    background-color: transparent;
    color: var(--primery-color);
    text-align: center;
    position: relative;
    font-weight: 500;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.radio-selects .select-btn label {
    width: 100%;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radio-selects .select-btn input:checked+label {
    background-color: rgb(254 226 226);
    color: rgb(185 28 28);
}

.radio-selects .select-btn input {
    display: none;
}


/* task3 page  */

.toggle-button label {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 40px;
    height: 35px;
}

.check-icon {
    background-color: rgb(34 197 94);
    width: 26px;
    min-width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
}

.check-icon i {
    font-size: 12px;
}

.check-icon.blue {
    background-color: var(--blue-color);
}

.check-icon.gray {
    background-color: #bec5cf;
}

.toggle-button input:checked+label {
    background-color: var(--blue-color);
    color: var(--white);
}

.cust-shadow {
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}

.project-tsks .mob-style .avtar-img {
    width: 23px;
    margin-right: 3px;
}

.project-tsks .mob-style .avtar-img img {
    max-width: 100%;
}


@media (min-width: 992px) {
    .other-user-feed.col-lg-7 {
        width: 65%;
    }
    .Build .info .col-lg-5 {
        width: 40.666667%;
    }
    #message .col-lg-8 {
        width: 71.666667%;
    }
    #message .col-lg-3 {
        width: 28%;
    }
    #contractdetails .col-lg-3 {
        width: 24% !important;
    }
    #contractdetails .col-lg-4 {
        width: 36.333333%;
    }
    #contractdetails .col-lg-2 {
        width: 27%;
    }
    #draws .col-lg-2 {
        width: 20%;
    }
    .pipline-header .col-lg-2 {
        width: 12%;
    }
    .pipline-header .col-lg-3 {
        width: 14%;
    }
    .pipline-header .pipline1.col-lg-2 {
        width: 10%;
    }
    .chat-side-col .collapse {
        display: block;
    }
}

@media (min-width: 768px) {
    .info-card .col-md-4 {
        width: 30.333333%;
    }
    #contractdetails .bill.col-md-3 {
        width: 27%;
    }
    #contractdetails .col-md-4 {
        width: 33.333333%;
    }
}

.user-post .feed-post {
    margin-top: 0;
}

@media (max-width: 1440px) {
    .scrolling {
        height: 436px;
    }
    .message-chat .msger-chat.chat-box {
        min-height: 491px;
    }
    .messages .message-chat .msger-chat.chat-box {
        min-height: 370px;
    }
}

@media (max-width: 1399px) and (min-width: 992px) {
    .nav-item button {
        font-size: 15px;
        padding: 12px 16.78px;
    }
    .messages .col-lg-8 {
        width: 62%;
    }
    .messages .col-lg-4 {
        width: 38%;
    }
    .message-chat .search-button .btn_site {
        font-size: 20px;
        min-width: 45px;
    }
}

@media (max-width: 1199px) {
    .home-contractor .relaiable {
        padding-bottom: 30px;
    }
    p.small,
    .view-story .text p {
        font-size: 18px;
    }
    p.small.time {
        font-size: 12px;
    }
    .suggestion-col .title h2 {
        font-size: 19px;
    }
    header .serach-bar {
        min-width: 345px;
    }
    section.feed-section {
        padding-bottom: 40px;
    }
    .suggestion-col,
    .sidebar-col .user-post {
        display: none !important;
    }
    .sidebar-col {
        margin: 0;
        position: fixed;
        left: 110%;
        width: 100% !important;
        z-index: 1090;
        background: var(--white);
        padding: 30px 20px;
        top: 96px;
        height: calc(100vh - 96px);
        overflow-y: auto;
        transition: 0.4s all ease;
    }
    .sidebar-col.sidebar-show {
        left: 0;
        transition: 0.4s all ease;
    }
    html.sidebar-show,
    body.sidebar-show {
        overflow-y: hidden;
    }
    .add-story,
    .view-story {
        min-height: 340px;
    }
    .contractor .btn_site {
        min-width: 170px;
    }
    .relaiable .text h2 {
        font-size: 40px;
    }
    .nav-item button {
        font-size: 15px;
        padding: 12px 20.1px;
    }
    .peace-mind .text h2 {
        font-size: 25px;
    }
    .peace-mind .btn_site {
        min-width: 240px;
    }
    .peace-mind {
        padding: 44px 18px 44px 28px;
    }
    .other-user-feed .post-info p.small {
        font-size: 16px;
    }
    .feed-post .user-details .details p.small {
        font-size: 12px;
    }
    .cntract-btn .message-btn {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .message-btn .btn_site {
        margin-right: 0;
    }
    /* .contractor new page  */
    .regForm .form-title h3 {
        margin-top: 30px;
    }
    .bsnner-logo {
        margin-bottom: 40px;
    }

    .cont-banner .content h1 {
        font-size: 35px;
    }

    .nightmar .image::before {
        left: -7%;
        transform: rotate(-9deg);
    }

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

    .relaiable::before {
        height: 100%;
    }

    .check-list li::before {
        background-position-y: 3px;
        left: -20px;
        width: 15px;
    }

    .protect .text h2 {
        font-size: 30px;
    }

    .check-list {
        padding-left: 20px;
    }
    /* Home Owner  */
    .profile-card {
        padding: 15px;
    }
    .content-section .blue-title h2 {
        font-size: 35px;
    }

    .content-section {
        padding: 30px;
    }
    .main-wrapper{
        margin-bottom: 500px;
    }

}

@media (max-width: 991px) {
    .relaiable .text h2 {
        font-size: 30px;
    }
    .protect .wrap-2 {
        padding-top: 50px;
    }
    .home-contractor .relaiable {
        padding-bottom: 30px;
    }
    .home-contractor .relaiable img {
        margin: 0;
    }
    .nightmar .tittle h2 {
        font-size: 30px;
    }
    .nightmar .text h2 {
        font-size: 19px;
    }
    .nightmar .image {
        padding: 0 0 29px 29px;
    }
    .nightmar .txt h2 {
        font-size: 30px;
        max-width: 498px;
        margin-top: 50px;
    }
    .add-story,
    .view-story {
        min-height: 240px;
    }
    .serach-bar {
        width: 100%;
        min-width: unset;
        margin-bottom: 25px;
    }
    .relaiable .text p {
        font-size: 13px;
        margin: 22px 0;
    }
    .nightmar .image img {
        max-width: 320px;
    }
    .nightmar .text {
        max-width: 100%;
    }
    /* project-financing */
    .info-card {
        margin-bottom: 50px;
    }
    .info .btn_site {
        width: 94%;
    }
    .video {
        width: 76%;
        margin: auto;
    }
    .apartcard {
        padding-top: 50px;
    }
    .apart .text {
        max-width: unset;
        text-align: center;
        margin: auto;
    }
    .apart .btn_site {
        text-align: center;
        margin: auto;
        width: 100%;
    }
    /* Blog */
    .blog-text .text {
        padding: 0 12px;
    }
    .blog-section {
        padding: 34px 15px;
    }
    .blog-card .main-tittle h2 {
        font-size: 16px;
    }
    .blog-section .blog::before {
        height: 72%;
    }
    /* tab1 */
    .nav-item button {
        font-size: 13px;
        padding: 12px 9.25px;
    }
    .contracts-details .nav-tabs .active {
        width: 100%;
        text-align: start;
    }
    /* tab2 */
    .messages-files .msger {
        margin-bottom: 30px;
    }
    .messages-files .serch-card {
        margin-bottom: 25px;
    }
    .feedback-table::before {
        background-size: 183% 24%;
    }
    /* Bathroom reno details */
    .bath-reno-details .tittle h2 {
        font-size: 18px;
    }
    .bath-reno-details .paid h2 {
        font-size: 22px;
    }
    .payment {
        padding: 9px 0px 12px 0px;
    }
    /* Bathroom Reno Payments */
    .payment .file-load span {
        font-size: 12px;
    }
    .pay-tittle .tittle h2 {
        font-size: 19px;
    }
    /* quotes */
    .quote.quote-step4 {
        max-width: 520px;
    }
    .quote .button .btn_site {
        min-width: 252px;
    }
    .quote.quote-step6 {
        max-width: 560px;
    }
    /* Pipline */
    .pipline-header {
        padding: 20px 0;
    }
    .pipline-header .card4.border-rig,
    .pipline-header .card7.border-rig {
        border-left: none;
    }
    /* Messages */
    .content.scrolling {
        max-width: 770px;
    }
    .messages {
        position: relative;
        z-index: 1;
    }
    .chat-side-col {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        padding: 0;
    }
    .message-chat .search-button .btn_site {
        min-width: 45px;
        padding: 7px 7px;
        font-size: 20px;
    }
    .serch-chat .form-control {
        padding: 12px;
    }
    .scrolling {
        height: 427px;
    }
    .cntract-btn .message-btn {
        padding: 0 11px;
    }
    /* .contractor new  page */

    .regForm input {
        padding: 8px 10px;
    }

    .nightmar .image {
        display: inline-block;
        margin: auto;
        text-align: center;
    }

    .relaiable .text {
        margin: auto;
        text-align: center;
    }

    .relaiable .row {
        flex-direction: column-reverse;
    }

    .relaiable {
        padding-top: 25px;
    }

    .nightmar .text {
        margin: auto;
        text-align: center;
    }

    .nightmar .comma {
        text-align: left;
    }

    .nightmar .text h2 {
        font-size: 17px;
    }

    .protect .inner-wrapper > img {
        display: none;
    }

    .protect .text h2 {
        margin: 10px 0 !important;
    }

    .check-list {
        gap: 5px;
    }

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

    /* Home Owner page  */
    .reliability-sec {
        margin-top: 50px;
    }

    .blue-title.tittle h2 {
        font-size: 30px;
    }
    .nightmar .inner-width.text h2 {
        font-size: 21px;
    }

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

    .content-section .blue-title.tittle h2 {
        text-align: center;
    }

    .nightmar2 .txt h2 {
        margin-top: 30px;
    }
    .main-wrapper{
        margin-bottom: 500px;
    }
}

@media (max-width: 767px) {
    
    .green-input-number {
        max-width: 65%;
    }
    
    .add-story,
    .view-story {
        min-height: 200px;
    }
    header .escrow-bar {
        width: auto;
    }
    .sidebar-toggle {
        margin-left: 30px;
    }
    .home-owner {
        padding: 25px 15px;
    }
    .protect .wrap-1 {
        padding-top: 50px;
    }
    .relaiable {
        padding: 25px 15px;
    }
    .relaiable .text h2 {
        font-size: 25px;
    }
    .relaiable .text p {
        margin: 15px 0 20px;
        font-size: 14px;
    }
    .home-contractor .relaiable img {
        margin-top: 30px;
    }
    .home-contractor .text {
        margin-top: 40px;
    }
    .protect .text h2 {
        font-size: 27px;
        margin-bottom: 20px;
    }
    .protect .wrap-3 {
        padding-top: 50px;
        margin: 0;
    }
    .sgin {
        display: flex;
        flex-direction: column-reverse;
    }
    .contractor .profile-info p {
        font-size: 14px;
    }
    .other-user-feed .post-info p.small {
        font-size: 12px;
    }
    .question {
        padding: 50px 0;
    }
    .question .tittle h2 {
        font-size: 23px;
        margin-bottom: 40px;
    }
    .peace-mind {
        padding: 30px 15px;
    }
    .peace-mind .text h2 {
        font-size: 28px;
    }
    .peace-mind .btn_site {
        min-width: 230px;
    }
    .nightmar .tittle h2 {
        font-size: 20px;
    }
    .nightmar .text h2 {
        font-size: 17px;
    }
    .nightmar .txt h2 {
        font-size: 18px;
    }
    .nightmar .image {
        padding: 0 0 27px 27px;
    }
    .apart {
        padding-top: 30px;
    }
    /* Project-financing */
    .info h2 {
        font-size: 18px;
    }
    .info .text p {
        font-size: 13px;
    }
    .project-finance .Build::before {
        height: 90%;
    }
    .apart .text h2 {
        font-size: 27px;
    }
    .project-finance .main-tittle h2 {
        font-size: 18px;
    }
    .video {
        width: 88%;
        margin: auto;
    }
    /* Blog */
    .blogcard {
        padding: 10px 10px 22px;
    }
    .blog-card .main-tittle h2 {
        font-size: 15px;
    }
    .blog-section .blog::before {
        height: 83%;
    }
    /* Profile */
    .follow-btn,
    .message-btn {
        margin-top: 20px;
    }
    .follow-btn .btn_site.outline {
        min-width: 108px;
    }
    /* create Account */
    .quote {
        max-width: 300px;
    }
    .blog-qoute .steps {
        min-width: 73px;
        margin-bottom: 32px;
    }
    .quote h2 {
        font-size: 18px;
    }
    .blog-qoute .quote-section {
        padding: 50px 0;
    }
    .blog-section {
        padding: 34px 12px;
    }
    .blog-qoute .quote-step2 {
        max-width: 309px;
    }
    .blog-qoute .quote-step2 p {
        font-size: 12px;
    }
    .blog-button {
        margin-top: 30px;
    }
    .blog-qoute .quote-step3 {
        max-width: 316px;
    }
    .blog-qoute .quote-step3 h2 {
        font-size: 22px;
    }
    .blog-qoute .quote-step4.account-step-4 {
        max-width: 318px;
    }
    .blog-qoute .quote-step4 p {
        font-size: 14px;
    }
    .check-option label {
        font-size: 18px;
    }
    .account-create {
        max-width: 319px;
    }
    .account-create p {
        font-size: 14px;
    }
    .account-create h2 {
        font-size: 25px;
    }
    /* Pricing Page */
    .pricing-plan .tittle h2 {
        font-size: 25px;
    }
    .pricing h2 {
        font-size: 40px;
    }
    .pricing h3 {
        font-size: 20px;
    }
    /* tab-1 */
    .contracts-details .contracts-card {
        margin-bottom: 25px;
    }
    .contracts-details .message-btn {
        margin-bottom: 25px;
    }
    .msg-bubble {
        min-width: 185px;
    }
    .right-msg .msg-bubble {
        min-width: 185px;
    }
    .msger-input {
        width: 100%;
    }
    .msger-send-btn {
        min-width: 58px;
        padding: 0;
    }
    .draw-remains .tittle h2 {
        font-size: 24px;
    }
    #draws .creatbtn {
        margin-top: 20px;
        justify-content: start !important;
    }
    .feedback-table::before {
        background-size: 169% 24%;
    }
    /* Bath reno Details */
    .bath-reno-details .tittle h2 {
        font-size: 17px;
    }
    .bath-reno-details .paid {
        margin-top: 20px;
    }
    .contract-install p {
        font-size: 12px;
    }
    .contract-install h3 {
        font-size: 12px;
    }
    /* bathroom reno chat */
    .msg-bubble.lg-chat {
        min-width: 183px;
    }
    .msger-chat.chat-box {
        min-height: 500px;
    }
    .total-payments {
        text-align: start !important;
    }
    .total-payments h3 {
        text-align: end !important;
    }
    .left-border {
        border-top: 1px solid #d3dbe9;
        border-left: none;
    }
    .pay-tittle .tittle h2 {
        font-size: 14px;
    }
    .pay-tittle .text {
        margin-top: 20px;
    }
    .graph-value {
        min-width: 82px;
    }
    /* quotes */
    .check-btn label {
        font-size: 14px;
    }
    .quote.quote-step3 {
        max-width: 300px;
    }
    .quote-step3 h3 {
        font-size: 20px;
    }
    .quote-step3 button,
    .quote-step4 button,
    .quote-step5 button,
    .quote-step6 button,
    .quote-step7 button,
    .quote-step8 button,
    .quote-step10 button {
        margin-top: 25px;
    }
    .quote.quote-step4 {
        max-width: 270px;
    }
    .quote.quote-step4 .button {
        display: block !important;
    }
    .quote.quote-step5 {
        max-width: 300px;
    }
    .quote.quote-step6 {
        max-width: 300px;
    }
    .quote-step6 span {
        font-size: 14px;
    }
    .quote-step6 .text p {
        font-size: 14px;
    }
    .quote.quote-step7 {
        max-width: 300px;
    }
    .select-gates .form-select {
        width: 300px;
    }
    .quote.quote-step8 {
        max-width: 300px;
    }
    .quote.quote-step9 {
        max-width: 300px;
    }
    .quote.quote-step10 {
        max-width: 300px;
    }
    .quote-step10 .text p {
        font-size: 16px;
    }
    .quote-step10 .text h3 {
        font-size: 37px;
    }
    .nav-item button {
        font-size: 13px;
        padding: 12px 10px;
    }
    .contracts-details .nav-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }
    /* Pipeline */
    .pipline .title h2 {
        font-size: 24px;
    }
    .pipline-header {
        padding: 20px;
    }
    .pipline-table .header .create-btn .btn_site {
        min-width: 80px;
    }
    .pipline-header .card3.border-rig,
    .pipline-header .card5.border-rig {
        border: 0;
    }
    .pipline-header .card3.border-rig {
        border-right: 1px solid #d3dbe9 !important;
    }
    .chat-top .title h2 {
        font-size: 18px;
    }
    .message-chat .serch-chat .title h2 {
        font-size: 18px;
    }
    .chat-list-body .chat-list-content h2 {
        font-size: 14px;
    }
    .chat-list-body .chat-list-content p {
        font-size: 12px;
    }
    .chat-list-body .date p {
        font-size: 12px;
    }
    .serch-chat .form-control {
        padding: 9px;
    }
    .message-chat .search-button .btn_site {
        min-width: 38px;
        padding: 5px 5px;
        font-size: 16px;
    }
    .search-msg-list .add-list .btn_site {
        padding: 6px 10px;
    }
    .messages .msger-send-btn {
        min-width: 57px;
        padding: 13px;
    }
    .scrolling {
        height: 433px;
    }
    .feedback-table #ratingStars img,
    .feedback-table #ratingStars1 img,
    .feedback-table #ratingStars2 img,
    .feedback-table #ratingStars3 img,
    .feedback-table #ratingStars4 img {
        max-width: 15px;
        margin-right: 5px;
    }
    
    .short-web.signup-contractor > div > div img {
        max-width: 100% !important;
    }
    
    .sign-up-form.wizard .actions > ul {
        max-width: 300px !important;
    }
    
    .sign-up-form.wizard .actions > ul li{
        margin: 0 !important;
    }

    /* .contractor new page  */
    .padding-50 {
        padding: 30px 10px;
    }
    .cont-banner .content h1 {
        font-size: 27px;
    }
    .cont-banner .content p {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .bsnner-logo {
        max-width: 185px;
        margin: 10px auto 30px;
    }

    .regForm .form-title h3 {
        margin-bottom: 20px;
    }

    .nightmar .image::before {
        left: -2%;
        transform: rotate(-3deg);
        height: 90%;
    }

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

    .nightmar .txt h2 {
        margin: 30px auto 20px;
    }

    .regForm input::placeholder {
        font-size: 14px;
    }

    .thanks-message img {
        max-width: 60px;
    }
    .thanks-message h3 {
        font-size: 30px;
        margin: 15px 0 10px;
    }

    .thanks-message p {
        font-size: 16px;
    }


    /* Home Owner page  */
    .reliability-sec {
        margin: 30px 10px;
    }

    .blue-title.tittle h2 {
        font-size: 23px;
    }

    .blue-title p {
        font-size: 14px;
        margin: 10px auto 20px;
    }

    .blue-title .btn_site {
        width: 100%;
        padding: 10px;
    }

    .main-wrapper .btn_site {
        padding: 10px;
        border-radius: 5px;
    }

    .light-bg::before {
        height: 100%;
    }

    .content-section {
        margin: 25px 10px;
        padding: 30px 10px;
    }

    .nightmar .image img {
        border-radius: 15px;
    }

    .content-section .tittle h2 {
        font-size: 20px;
    }

    .regForm .form-title h3 {
        font-size: 16px;
    }
}

.create-post-modal .modal-dialog {
    max-width: 568px;
}

.create-post-modal .modal-title {
    flex-basis: 100%;
    text-align: center;
}

.create-post {
    border-radius: 5px;
}

.create-post .post-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.create-post .profile-pic {
    width: 3.5rem;
    aspect-ratio: 1;
}

.create-post .profile-pic img {
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.create-post .full-name {
    font-size: 18px;
    font-weight: 600;
}

.create-post .post-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.create-post textarea {
    font-size: 14px;
    color: rgba(19, 29, 46, 0.8);
    width: 100%;
    border: none;
    resize: none;
    outline: none;
}

.create-post textarea::placeholder {
    color: rgba(19, 29, 46, 0.8);
}

.create-post .emoji-picker {
    text-align: right;
    margin-bottom: 1rem;
    position: relative;
}

.create-post emoji-picker {
    display: none;
    position: absolute;
    right: 0;
    top: -26rem;
    left: 65%;
}

.create-post .emoji {
    border-radius: 50%;
    cursor: pointer;
}

.create-post .add-to-your-post {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgb(193, 190, 190);
    padding: 1.25rem 1rem;
    border-radius: 5px;
}

.create-post .add-to-post-text {
    font-weight: bold;
}

.create-post .add-to-post-icons {
    display: flex;
    gap: 1.25rem;
}

.create-post .add-to-post-icons label {
    cursor: pointer;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
}

.create-post .add-to-post-icons label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.create-post .photo-video {
    background-image: url(../images/photo-video-icon.png);
}

.create-post .tag-people {
    background-image: url(../images/tag-friend-icon.png);
}

.create-post .feeling-activity {
    background-image: url(../images/smiley-icon.png);
}

.create-post .check-in {
    background-image: url(../images/check-in-icon.png);
}

.create-post .gif {
    background-image: url(../images/gif-icon.png);
}

.create-post .live-video {
    background-image: url(../images/live-video-icon.png);
}

.create-post .btn_site {
    min-width: none;
    width: 100%;
    margin-top: 16px;
}

.create-post .btn_site:disabled,
.create-post .btn_site[disabled] {
    cursor: not-allowed;
    background-color: #e4e6eb;
    color: #bdc1c5;
}


.skeleton .feed-post .profile-img {
    border-radius: 50%;
    max-width: 46px;
    aspect-ratio: 1;
    width: 100%;
    background-color: #e4e6eb;
}

.skeleton .post-viwers .name {
    background: #e4e6eb;
    height: 10px;
    width: 190px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.skeleton .post-viwers .date {
    background: #e4e6eb;
    height: 10px;
    width: 100px;
    border-radius: 10px;
}

.skeleton .thought {
    padding: 0 0 20px;
}

.skeleton .feed-post .post-btn {
    background: #e4e6eb;
    height: 5px;
    width: 150px;
    margin: 20px 0;
}

.skeleton .status-option {
    max-width: unset;
}

.skeleton .feed-post .post-img {
    background: #e4e6eb;
    height: 400px;
    width: 100%;
    border-radius: 10px;
}

.details-post-skeleton {
    width: 100%;
    height: auto;
}

.skeleton .post-info {
    margin-bottom: 20px;
}

.skeleton .post-info .name {
    background: #e4e6eb;
    height: 10px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.skeleton .post-info .date {
    background: #e4e6eb;
    height: 10px;
    width: 60%;
    border-radius: 10px;
}

.skeleton .suggestion-col .title {
    background: #e4e6eb;
    height: 38px;
    width: 50%;
    border-radius: 10px;
}

.skeleton .profile .profile-img {
    border-radius: 50% !important;
    max-width: 46px !important;
    aspect-ratio: 1;
    width: 100%;
    background-color: #e4e6eb;
}

.skeleton .view-btn .post-btn {
    background: #e4e6eb;
    width: 100%;
    height: 40px;
    margin: 20px 0;
}

@media (max-width:767px) {
    .skeleton .feed-post .post-btn {
        width: 70px;
    }
    .skeleton .feed-post .post-img {
        height: 200px;
    }
}

.is-loading {
    position: relative !important;
    overflow: hidden;
}

.is-loading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 30%;
    background-color: #d9dbe1 !important;
    animation: 1s shine linear infinite;
}

@keyframes shine {
    from {
        left: 0;
    }
    to {
        left: 100%;
    }
}

.sign-up-form .quote-step4 .check-option{
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    
    /* ===== Scrollbar CSS ===== */
    /* Firefox */
    cursor: default;
    -ms-overflow-style: scrollbar;  /* IE and Edge */
    scrollbar-width: thin;
    scrollbar-color: #00a79d85 white;
}

/* Chrome, Edge, and Safari */
.sign-up-form .quote-step4 .check-option::-webkit-scrollbar {
    width: 3px;
}

.sign-up-form .quote-step4 .check-option::-webkit-scrollbar-track {
    background: white;
}
.sign-up-form .quote-step4 .check-option::-webkit-scrollbar-thumb {
    background-color: #00a79d85;
    border-radius: 0;
    border: none;
}

.onboarding-warning { cursor: pointer; }

.onboarding-steps  ul .list-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.onboarding-steps  ul li {
    margin-left: 16px;
    list-style: disc;
}

.onboarding-steps ul li a, .onboarding-steps ul li button {
    padding: 8px;
}
.onboarding-steps ul li span {
    text-transform: capitalize;
}

.onboarding-steps .btn-success {
    border-color: var(--frozen-forest);
    background-color: var(--frozen-forest);
    color: var(--dead-pixel);
}

.features-wrapper .form-check {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 10px;
}

.features-wrapper .form-check label {
    padding-left: 5px;
    padding-right: 5px;
}

.pricing-plans-container .create-table{
    border-left: none;
}

.pricing-plans-container .btn-info {
    background-color: var(--blue-color);
    border-color: var(--blue-color);
}
.price-cards .package-offer .check {
    margin-right: 10px;
}

.price-cards .package-offer .fa-duotone:before {
    color: var(--blue-color);
}

.price-cards .package-offer .fa-duotone:after {
    color: var(--cloudless);
    opacity: 1;
}

.price-cards .package-offer li a {
    color: var(--bs-link-color)
}

.price-cards .package-offer.current-plan li a {
    color: var(--cloudless);
}

.price-cards .package-offer.current-plan li a:hover,
.price-cards .package-offer li a:hover{
    color: rgb(4, 250, 236) !important;
}

.details-paycard-container .inner-paycard {
    margin-left: 0 !important;
}

.sign-up-form #place_order_div_id_address .form-control::placeholder {
    text-transform: capitalize;
}

.sign-up-form .check-option label  {
   font-size: 16px;
}

.sign-up-form .check-option label, .sign-up-form .check-option input[type=checkbox]  {
    cursor: pointer;
}

.sign-up-form .check-option h2  {
    font-size: 18px;
}
.sign-up-form .form-check {
    display: flex;
    align-items: center;
}

.sign-up-form.wizard > .content {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.sign-up-form.wizard .actions > ul {
    height: auto;
    flex-direction: column-reverse;
    max-width: 555px;
    margin: 0 auto;
}

.sign-up-form.wizard .actions > ul li {
    width: 100%;
}

.short-web.signup-contractor {
    max-width: 100vw;
}
.short-web.get-started, .short-web.signup-homeowner, .short-web.contractor-accept{
    max-width: 650px;
}

.short-web.signup-contractor > div {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/*.short-web.signup-contractor > div > div {*/
/*    margin: 0 auto !important;*/
/*}*/

.short-web.signup-contractor > div > div img {
    max-width: 20%;
}

#frm_subscribed_plan .input-group-text {
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #e9ecef;
}

#frm_subscribed_plan .input-group-prepend + input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.zip-code::-webkit-outer-spin-button,
.zip-code::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.zip-code {
    -moz-appearance: textfield;
}

.green-input-number {
    border: 2px solid var(--light-green);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    color: var(--light-green);
    font-weight: 500;
    font-size: 20px;
    max-width: 40%;
}

.green-input-number:focus-visible, .green-input-number:focus {
    outline: none;
}

.green-input-number.text {
    color: black;
    font-size: 1rem;
    width: 100% !important;
    max-width: 100% !important;
}

.homeowner-signup-form .form-floating-group {
    display: flex;
}

.homeowner-signup-form .form-floating-group .form-floating{
    width: 100%;
}

.homeowner-signup-form .form-floating input {
    border-radius: 0;
}

.homeowner-signup-form .form-floating.last input {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.homeowner-signup-form .form-floating-group .form-floating:first-of-type input {
    border-right: 0;
    border-bottom: 0;
    border-top-left-radius: 15px;
}

.homeowner-signup-form .form-floating-group .form-floating:last-of-type input {
    border-left: 0;
    border-bottom: 0;
    border-top-right-radius: 15px;
}

.btn-notice {
    min-width: 25%;
}
.upload-img.square {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1171CE;
}

.upload-img.square img {
    border-radius: unset !important;
    height: 100%;
}

.upload-img.square span {
    font-size: 20px;
    width: auto;
    height: auto;
}

.uploaded-img span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    border: 1px #ffffff solid;
}

.upload-img.square span.adder-icon {
    right: 30%;
    bottom: 26%;
}

.name_initial{
    background:#1171CE;
    color: #fff;
    /*border:1px #ccc solid;*/
    border-radius:50%;
    width:46px;
    height:46px;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    font-size:20px;
    text-transform:uppercase;
    margin-right: 12px;
}

.upload-img .name_initial, .feed-post:not(.create-post) .name_initial {
    margin-right: 0;
}

.big_name_initial .name_initial{
    width:100px;
    height:100px;
    font-size: 30px;
}

.like-button {
    border: none !important;
    background: transparent !important;
}

.pac-container {
    z-index: 1055 !important;
}

.short-limited-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mfees-table {
    overflow-x: hidden;
}

.post-search-btn {
    background-color: transparent;
    border: none;
    padding: 0;
}

.post-search-btn .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.serach-bar .input-group .form-control {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.modal-create-post .modal-title {
    text-align: center;
    flex-basis: 100%;
    font-size: 1.25rem !important;
    font-weight: 600;
}

.side-icon.post-mobile {
    font-size: 30px;
    cursor: pointer;
    color: #1f2b34;
}

.hide {
    display: none !important;
}

.post-media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #f0f2f54a;
}

.post-media-container .image-grid {
    display: grid;
    gap: 4px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 500px;
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr); /* Default grid columns */
    grid-auto-rows: 1fr; /* Default row height */
}

/* Base styles for images */
.post-media-container .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Landscape images take two columns */
.post-media-container .image-grid img.landscape {
    grid-column: span 2;
    grid-row: span 1;
}

/* Portrait images take two rows */
.post-media-container .image-grid img.portrait {
    grid-column: span 1;
    grid-row: span 2;
}

/* Square images take up one cell */
.post-media-container .image-grid img.square {
    grid-column: span 1;
    grid-row: span 1;
}

/* Dynamic adjustments for different numbers of images */
.post-media-container .image-grid > img:nth-child(5) ~ img {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767px) {
    .mfees-table {
        overflow-x: scroll;
    }
    
    .green-input-number {
        max-width: 50%;
    }
    
    .btn-notice {
        width: 100%;
    }
    
    .work-switch-wrapper {
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 20px;
    }
    
    .contractors.contract-details .tickets-filters, .contracts.regular-filters .d-flex, .documents-info .d-flex {
        flex-direction: column;
        margin-bottom: 15px;
    }
    
    .contracts.regular-filters .d-flex .input-group {
        margin-bottom: 15px;
    }
    
    .dashboard-profile .options-img ul, .feed-post .options-img ul { margin-right: -22px !important; };
}

.post-switcher-container {
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    overflow: hidden;
    background-color: white;
}

.post-switcher-container .btn {
    width: 50%;
    border-radius: 0;
}

.post-switcher-container .btn.btn_active {
    border-radius: 9px;
}

.post-switcher-container .btn:not(.btn_active) {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 15px;
    background-color: white;
    color: black;
}

.post-form-selection img {
    max-width: 60%;
}

.post-form-selection img, .post-form-selection button {
    margin: 0 auto;
    display: block;
}

.before-after-container {
    display: flex;
}
.file-box {
    width: 50%;
    height: 370px;
    border: 2px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #aaa;
    cursor: pointer;
    margin: 10px;
    position: relative; /* Ensure the image fits within this box */
    overflow: hidden; /* Prevent the image from exceeding the box */
}

.file-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire box */
    position: absolute; /* Position it within the parent div */
    top: 0;
    left: 0;
    display: none; /* Initially hide the image */
}

.file-box:hover {
    border-color: #888;
    color: #555;
}

.icon-color{
    color: var(--light-green);
}

.icon-color:hover{
    color:#012765;
}

/* agency css */

.agency-warning {
    position: absolute;
    bottom: 50px;
}

/* contractor  page 2   */

.contractor-2 p {
    color: #656565;
    font-size: 16px;
    font-weight: 400;
}

.contractor-2 h3 {
    color: #1e1e1e;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

.contractor-2 .title h2 {
    color: #1e1e1e;
    font-size: 28px !important;
    font-weight: 600;
}

.bg-green-grid {
    background: linear-gradient(106.78deg, #1a4353 0%, #0d988c 138.73%);
}

.header .btn_site-outline {
    padding: 10px;
    line-height: 100%;
    flex-direction: column;
    gap: 6px;
}

.btn_site-outline {
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
}

.header .btn-digit span {
    font-size: 16px;
}

.header .btn-digit {
    font-size: 12px;
}

.btn_site-outline:hover {
    background-color: transparent;
    color: var(--blue-color);
}

.contractor-v2 .header .btn_site {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn_site-2 {
    background-color: var(--light-green);
    border-color: var(--light-green);
}

.btn_site-2:hover {
    background-color: transparent;
    color: var(--light-green);
    border-color: var(--light-green);
}

.contractor-v2 .serach-bar .form-control {
    border-right: unset;
    border-radius: 8px;
}

.contractor-v2 .serach-bar .input-group-text {
    border-left: unset;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.contractor-v2 .serach-bar .input-group-text::before {
    border-left: 1px solid #d3dbe9;
    content: "";
    width: 1px;
    height: 35%;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    z-index: 0;
}

.contractor-v2 .serach-bar {
    margin: 0;
}

.contractor-v2 .side-bar.bar-top {
    padding: 20px;
    margin-bottom: 20px;
}

.contractor-v2 .side-bar.bar-top h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primery-color);
    margin-bottom: 20px;
}


/* inner section 1  */

.contractor-2 .relaiable {
    padding: 60px 50px;
    border-radius: 12px 12px 0 0;
}

.contractor-2 .relaiable::before {
    display: none;
}

.foot-crad {
    position: absolute;
    bottom: 0;
    padding-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

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

.contractor-2 .relaiable .text h1 {
    color: var(--white);
    font-size: 47px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contractor-2 .relaiable .text h1 span {
    color: #13cfbe;
}

.contractor-2 .relaiable .text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

.contractor-2 .relaiable .text .inner-text {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 6px;
    margin: 25px 0 40px;
    max-width: 350px;
}

.contractor-2 .relaiable .text .inner-text span {
    color: var(--light-green);
    display: inline-flex;
    margin-bottom: 5px;
    font-size: 18px;
}

.btn-2 {
    background-color: #0d988c;
    border-color: #0d988c;
    gap: 10px;
    width: unset !important;
    display: inline-flex;
    border-radius: 26px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 10px 8px 14px !important;
}

.btn-2 img {
    max-width: 25px;
}

.btn-2:hover {
    background-color: transparent;
    border-color: var(--light-green);
}

.contractor-2 .relaiable .image {
    position: relative;
    z-index: 1;
}

.contractor-2 .relaiable .image::before,
.contractor-2 .relaiable .image::after {
    content: "";
    z-index: -1;
    background-color: rgba(13, 152, 140, 0.3);
    position: absolute;
    top: 0;
    left: 8px;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 67%;
    aspect-ratio: 1;
    border-radius: 50%;
}

.contractor-2 .relaiable .image::after {
    width: 78%;
    z-index: -2;
}


/* inner section 2 */

.paddingY-50 {
    padding: 50px 40px;
}

.p-inline-40 {
    padding-inline: 40px;
}

.contractor-lead .title {
    margin: 50px auto;
    max-width: 760px;
}

.contractor-lead .title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lead-card {
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
    border-radius: 4px;
    padding: 20px 19px;
    height: 100%;
}

.lead-card img {
    max-width: 32px;
}

.lead-card .text h3 {
    font-weight: 600;
    color: #1e1e1e;
    font-size: 18px;
    margin: 10px 0;
}

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

.btn-3:hover {
    color: var(--light-green);
}


/* inner section 3  */

@media (min-width: 992px) {
    .contractor-2 .nightmar .col-lg-5 {
        width: 39%;
    }
}

.contractor-2 .nightmar .wrapper {
    max-width: 970px !important;
    margin: auto;
}

.contractor-2 .nightmar .image {
    max-width: 300px;
}

.contractor-2 .nightmar .image::before {
    background: linear-gradient(108.36deg, #0d988c -7.81%, #1a4353 99.34%);
    border-radius: 8px;
}

.contractor-2 .nightmar .image.me-auto::before {
    right: -11%;
    left: unset;
    transform: rotate(14deg);
    background: linear-gradient(339.42deg, #1a4353 -5.25%, #0d988c 77.05%);
}

.contractor-2 .nightmar .text p {
    margin: 8px 0 30px;
    font-weight: 400;
    line-height: 1.4;
    font-size: 16px;
}

.contractor-2 .nightmar .text h3 {
    line-height: 1.3;
}

.contractor-2 .nightmar .inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contractor-2 .nightmar .inner-wrapper .row:nth-child(even) {
    flex-direction: row-reverse;
}

.pricing-card-sec {
    padding: 40px;
}

.pricing-card-sec .title h2,
.pricing-card :is(li,
p,
h3,
span) {
    color: var(--white);
}

.pricing-card {
    position: relative;
    z-index: 1;
    padding: 20px;
    padding-top: 0;
    height: 100%;
    transition: 0.3s all ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card::before {
    content: "";
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 97%;
}

.pricing-card .head-card>div>span {
    color: #1e1e1e;
    font-size: 20px;
    font-weight: 500;
    padding: 8px 10px;
    background-color: var(--white);
    border-radius: 24px;
    min-width: 127px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 127px;
}

.pricing-card .head-card h3 {
    font-size: 52px;
    font-weight: 600;
    display: flex;
    gap: 2px;
    justify-content: center;
    align-items: last baseline;
    padding: 40px 0 25px;
    border-bottom: 2px solid #e6e6e6;
}

.pricing-card .head-card strong {
    font-size: 60px;
    line-height: 1;
    font-weight: 600;
}

.pricing-card .head-card span {
    font-size: 18px;
}
.pricing-card .body-card{
    padding-bottom: 35px;
}

.pricing-card .body-card p {
    font-size: 20px;
    font-weight: 500;
}

.chick-list {
    list-style-type: none;
    margin: 30px 0 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chick-list li {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}

.chick-list li i {
    font-size: 21px;
    line-height: 100%;
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card :is(h3,
h3 span) {
    color: #1e1e1e;
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card li {
    color: #656565;
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card .head-card>div>span {
    background-color: var(--light-green);
    color: var(--white);
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card::before {
    background-color: var(--white);
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card .chick-list li:first-child {
    color: #1e1e1e;
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card .chick-list li i {
    color: var(--light-green);
}

.pricing-card-sec .row>div:nth-child(2) .pricing-card .chick-list li:first-child,
.pricing-card-sec .row>div:nth-child(3) .pricing-card .chick-list li:first-child {
    font-size: 20px;
    font-weight: 500;
}


/* faqs section   */

.faqs-section .accordion-button::after {
    background-image: url(../images/arrow-down.svg);
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
}

.faqs-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/arrow-down.svg);
}

.faqs-section .accordion-item {
    border: unset !important;
    border-radius: 8px;
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
}

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

.accordion-button:not(.collapsed) {
    border-radius: 8px 8px 0 0 !important;
    background-color: transparent;
    box-shadow: unset;
}

.faqs-section .accordion-item .accordion-header .accordion-button {
    border-radius: 8px;
    font-size: 22px;
    font-weight: 500;
    color: #1e1e1e;
    font-weight: 600;
}

.faqs-section .accordion-item :is(.accordion-body,
.accordion-button) {
    padding: 23px 30px;
}

.accordion-item :is(.accordion-body,
.accordion-button):focus {
    box-shadow: unset;
}

.faqs-section .accordion-body {
    margin: 0 30px 15px !important;
    padding: 0 !important;
    border-top: 1px solid rgba(10, 9, 41, 0.25);
}

.faqs-section .accordion-body p {
    padding-top: 20px;
    max-width: 917px;
}


/* inner section 6 */

.static-sec .wrapper {
    padding: 40px;
    border-radius: 12px;
}

.static-sec .title :is(p,
h2) {
    color: var(--white);
}

.static-sec .title p {
    margin: 20px auto;
    font-weight: 300;
}
/* fo0ter  */

footer {
    position: relative;
    z-index: 1;
}

footer::before {
    content: "";
    background: linear-gradient(106.78deg, #1a4353 0%, #0d988c 138.73%);
    border-radius: 0 0 10px 10px;
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
}

.gap-column {
    row-gap: 8px;
}

.footer-form .nightmar .image {
    max-width: 380px;
}

.footer-form {
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px rgba(30, 30, 30, 0.06);
    padding: 30px;
    background-color: var(--white);
}

.footer-form .inputs label {
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.footer-form .inputs input {
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    height: 46px;
}

.footer-form .btn-3 {
    width: 100% !important;
}

.footer-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 152, 140, 0.2);
    border-color: var(--light-green);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.footer-row p {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-row .logo {
    max-width: 290px;
}

.center-content span {
    color: #eeeeee;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.center-content span i {
    font-size: 20px;
}

.social-icon {
    display: flex;
    gap: 10px;
}

.social-icon a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--light-green);
    width: 34px;
    aspect-ratio: 1;
    border: 2px solid transparent;
    transition: 0.3s all ease;
}

.social-icon a:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.copy-right p {
    border-top: 1px solid #67a0a0;
    padding: 20px 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.copy-right p,
.copy-right a {
    color: #ffffff;
    text-decoration: none;
}

.copy-right a:hover {
    text-decoration: underline;
}

.home-about-info .btn-outline-primary {
    padding: 12px 15px;
}
.home-about-info .nav-item {
    margin-right: 10px;
}

.agency-signup-form {
    max-width: 500px;
    margin: 0 auto;
}

#taskFrm input {
    color: #212529 !important;
}

/* media query  */

@media (max-width: 1400px) {
    .contractor-v2 .side-bar.bar-top h3 {
        font-size: 17px;
    }
    .contractor-2 .relaiable .text h1 {
        font-size: 35px;
    }
    .lead-card .text p {
        font-size: 14px;
    }
    .lead-card {
        padding: 20px 10px;
    }
    .lead-card .text h3 {
        font-size: 15px;
    }
    .contractor-2 .nightmar .image.me-auto::before {
        right: -8%;
        transform: rotate(11deg);
    }
    .contractor-2 .nightmar .image.ms-auto::before {
        left: -8%;
        transform: rotate(-11deg);
    }
    .contractor-2 .nightmar .image {
        max-width: 260px;
    }
    .pricing-card-sec {
        padding: 30px 15px;
    }
    .pricing-card-sec .row>div:nth-child(2) .pricing-card .chick-list li:first-child,
    .pricing-card-sec .row>div:nth-child(3) .pricing-card .chick-list li:first-child {
        font-size: 16px;
    }
    .chick-list li {
        font-size: 14px;
    }
    .chick-list li i {
        font-size: 18px;
    }
    .faqs-section .accordion-item .accordion-header .accordion-button {
        font-size: 18px;
    }
    .footer-form .nightmar .image {
        max-width: 310px;
    }
    .footer-row .logo {
        max-width: 250px;
    }
}

@media (max-width: 991px) {
    .contractor-2 .relaiable {
        padding: 40px 30px;
    }
    .contractor-2 .relaiable .text {
        text-align: left;
    }
    .contractor-2 .relaiable .text h1 {
        font-size: 30px;
    }
    .contractor-2 .relaiable .text p {
        font-size: 14px;
    }
    .paddingY-50 {
        padding: 50px 30px;
    }
    .contractor-2 p br {
        display: none;
    }
    .contractor-2 p {
        font-size: 14px !important;
    }
    .lead-card .text h3 {
        font-size: 17px;
    }
    .contractor-2 h3 {
        font-size: 22px;
    }
    .contractor-2 .nightmar .text {
        text-align: left;
    }
    .contractor-2 .nightmar .image {
        display: block;
        margin: unset;
    }
    .contractor-2 .title h2 {
        font-size: 23px !important;
    }
    .footer-form .inputs input {
        height: 30px;
        font-size: 14px;
    }
    .footer-form .inputs label {
        font-size: 14px;
        margin-bottom: 2px;
    }
    .contractor-2 .gap-column {
        gap: 2px;
    }
    .center-content span {
        font-size: 13px;
    }
    .footer-row {
        gap: 30px;
    }
    .contractor-2 .social-icon a {
        width: 30px;
    }
    .contractor-2 .social-icon {
        gap: 5px;
    }
    .footer-form .nightmar .image {
        max-width: 247px;
    }
    .social-icon a i {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .btn-2 img {
        margin: 0 !important;
    }
    .contractor-2 .relaiable {
        border-radius: unset;
    }
    .contractor-2 .relaiable img {
        margin: 0;
    }
    .contractor-lead .title {
        margin: 20px 0;
    }
    .paddingY-50 {
        padding: 30px 10px;
    }
    .contractor-2 .text {
        margin: unset;
    }
    .contractor-2 .relaiable {
        padding: 40px 10px;
    }
    .contractor-2 .relaiable .text .inner-text span {
        margin-bottom: 0;
    }
    .contractor-2 .relaiable .text .inner-text {
        margin: 20px 0 25px;
    }
    .contractor-2 .nightmar .image {
        margin-right: auto !important;
        margin-left: auto;
    }
    .contractor-v2 .side-bar.bar-top {
        margin-top: 20px;
    }
    .contractor-2 .nightmar .image::before {
        height: 85%;
    }
    .contractor-2 .nightmar .image.ms-auto::before {
        left: -6%;
        transform: rotate(-8deg);
    }
    .contractor-2 .nightmar .image.me-auto::before {
        right: -6%;
        transform: rotate(8deg);
    }
    .faqs-section .accordion-item :is(.accordion-body,
    .accordion-button) {
        padding: 15px;
    }
    .faqs-section .accordion-item .accordion-header .accordion-button {
        font-size: 14px;
    }
    .faqs-section .accordion-body p {
        font-size: 12px !important;
        padding-top: 10px;
    }
    .faqs-section .accordion-body {
        margin: 0 15px 10px !important;
    }
    .static-sec .wrapper {
        padding: 25px 15px;
    }
    .footer-form {
        padding: 20px 10px;
    }
    .footer-row {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }
    .footer-row p {
        margin-bottom: 5px;
    }
    .footer-row .logo {
        max-width: 218px;
    }
    .contractor-2 .social-icon {
        gap: 12px;
    }
    .contractor-2 .social-icon a {
        width: 35px;
    }
    .contractor-2 .nightmar .text p {
        margin-bottom: 15px;
    }
    .btn-2 {
        font-size: 14px !important;
    }
    .btn-2 img {
        max-width: 20px;
    }
    .pricing-card .head-card>div>span {
        font-size: 16px;
    }
    .pricing-card .head-card h3 {
        padding: 25px 0 15px;
    }
    .pricing-card .head-card h3,
    .pricing-card .head-card strong {
        font-size: 40px;
    }
    .pricing-card .head-card span {
        font-size: 16px;
    }
    .chick-list {
        gap: 10px;
        margin: 20px 0;
    }
    footer::before {
        border-radius: unset !important;
    }
}