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

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

p {
    font-weight: 500;
    line-height: 25px;
    color: #7c7c7c;
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}
@font-face {
    font-family: 'brunson';
    src: url(../fonts/brunson.ttf);
    font-weight: 400;
    font-style: normal
}

/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #242889;
    position: relative;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: inline-block;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #72d219;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms
}

.theme_btn:hover {
    color: #000000;
}

.theme_btn:hover::before {
    width: 100%;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'brunson';
    font-size: 99px;
    line-height: 90px;
    color: #000000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'brunson';
    font-size: 60px;
    line-height: 1.2;
    color: #000000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'brunson';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'brunson';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'brunson';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'brunson';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/down.png') no-repeat right;
    padding: 0 50px 0px 33px;
    background-position: 272px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 15px 0;
    background: #ebece7;
    border-bottom: 1px solid #0000001f;
}

.menuSec img {
    margin: 0;
}
.header_btn {
    text-align: end;
    display: flex;
    justify-content: end;
}
.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: start;
    text-transform: capitalize;
    display: flex;
    justify-content: start;
    gap: 42px;
}

.header_btn a {
    display: flex;
    justify-content: end;
    align-items: center;
   
    width: 228px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.header_btn a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    /* position: relative; */
    display: inline-block;
    text-decoration: none;
    color: #000000;
    /* padding: 10px 23px; */
    font-size: 14px;
    font-weight: 600;
}

.menuSec ul li a:after {
    content: '';
    /* position: absolute; */
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
}

.menuSec ul li:last-child a {
    padding-right: 0px;
}

.menuSec ul li:last-child a:after {
    display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.banner_text.inner-banner.wow.fadeInLeft {
    padding: 0;
    text-align: center;
}

.carousel-item.inner-banner.active {
    height: 50vh;
}
.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: rgb(235 236 231);
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.carousel-item {
    height: 100vh;
    width: 100%;
}
h2.ban-heading {
    font-size: 178.04px;
    position: absolute;
    left: 76px;
    bottom: 0;
    margin: 0;
    color: #000;
}

.banner_img.wow.bounceIn {
    position: absolute;
    right: -166px;
    top: 1px;
    z-index: 1;
}
.banner_text {
    padding-bottom: 30%;
}
.banner_text p {
    width: 90%;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}

.banner_text a {
    display: flex;
    justify-content: end;
    align-items: center;
   
    width: 228px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.banner_text a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}

.banner_img img {
    width: 85%;
    height: 975px;
}
/*banner css end*/


.tp-features-wrapper p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-features-wrapper {
        margin-top: -125px;
        margin-bottom: 160px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-features-wrapper {
        margin-bottom: 120px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-features-wrapper p br {
        display: none;
    }
}

.tp-features-icon span {
    position: relative;
    margin-top: 15px;
    height: 78px;
    width: 78px;
    background: var(--tp-common-white);
    box-shadow: 0px 8px 18px rgba(44, 52, 128, 0.12);
    border-radius: 88px;
    display: inline-block;
    line-height: 78px;
    text-align: center;
    font-size: 30px;
    -webkit-text-fill-color: transparent;
    background-image: var(--tp-gradient-primary);
    -webkit-background-clip: text;
}

.tp-features-icon span img {
    transform: translateY(-2px);
}

.tp-features-icon span::before {
    content: "";
    position: absolute;
    height: 102px;
    width: 102px;
    background: var(--tp-common-white);
    box-shadow: 0px 8px 18px rgba(44, 52, 128, 0.12);
    border-radius: 88px;
    left: -12px;
    top: -12px;
    z-index: -1;
}

.tp-features-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.fml {
    margin-left: 70px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .fml {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .fml {
        margin-left: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .fml {
        margin-left: 0px;
    }
}

.fml-2 {
    margin-left: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .fml-2 {
        margin-left: 105px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .fml-2 {
        margin-left: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .fml-2 {
        margin-left: 0px;
    }
}

.tp-feature-area {
    background: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.tp-feature-wrapper .tp-section__title-pre-3 {
    background: #272727;
    color: var(--tp-common-white);
    box-shadow: none;
    border: none;
}

.tp-feature-wrapper .tp-section__title {
    color: var(--tp-common-white);
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-feature-wrapper .tp-section__title br {
        display: none;
    }
}

.row-custom {
    display: flex;
    margin: 0 10px;
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
    .row-custom {
        padding: 0;
        flex-wrap: wrap;
    }
}

@media only screen and (min-width: 270px) and (max-width: 575px) {
    .row-custom {
        flex-direction: column;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.col-custom {
    position: relative;
    flex: 1;
    width: 100%;
    height: 462px;
    margin: 10px;
    padding: 30px 0;
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #d2d2ce;
    border-radius: 0;
    margin-top: 30px;
    border-top: 0;
    border-bottom: 0;
}
.our-gallery-text-box h2 i {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #324f4f;
    height: 50px;
    width: 50px;
    transform: rotate(
324deg);
    font-size: 19px;
    color: #fff;
}
.our-gallery-text-box h2 {
    font-size: 33px;
    margin-bottom: 2px;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-gallery-text-box p {
    color: #868686;
    font-weight: 500;
    margin-bottom: 23px;
    width: 100%;
    line-height: 25px;
}

.t-img h2 {
    font-size: 34px;
    color: #000000;
    transform: rotate(
269deg);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .col-custom {
        padding: 40px 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .col-custom {
        padding: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-custom {
        width: 15%;
        padding: 0;
        flex: 0 0 15%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .col-custom {
        width: 25%;
        padding: 40px 25px;
        flex: 0 0 25%;
    }
}

@media only screen and (min-width: 398px) and (max-width: 575px) {
    .col-custom {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 397px) {
    .col-custom {
        width: 100%;
        padding: 0;
    }
}

.col-custom.active {
    flex: 6;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .col-custom.active {
        flex: 5;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .col-custom.active {
        flex: 0 0 55%;
        width: 55%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .col-custom.active {
        flex: 0 0 63%;
        width: 55%;
    }
}

.col-custom.active .tp-panel-item {
    display: none;
}

.col-custom.active .tp-panel-item-2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.col-custom.active::before {
    visibility: visible;
    opacity: 1;
}

.tp-panel-title {
    width: 240px;
    transform: rotate(90deg) translate(145px, 80px);
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .tp-panel-title {
        transform: rotate(90deg) translate(145px, -10px);
    }
}

.tp-panel-title.child-one {
    transform: rotate(90deg) translate(172px, 100px);
    width: 275px;
}

@media (max-width: 575px) {
    .tp-panel-title.child-one {
        transform: rotate(90deg) translate(172px, 7px);
    }
}

.tp-panel-title.child-two {
    transform: rotate(90deg) translate(172px, 100px);
    width: 275px;
}

@media (max-width: 575px) {
    .tp-panel-title.child-two {
        transform: rotate(90deg) translate(172px, 10px);
    }
}

.tp-panel-title.child-three {
    transform: rotate(90deg) translate(180px, 104px);
    width: 290px;
}

@media (max-width: 575px) {
    .tp-panel-title.child-three {
        transform: rotate(90deg) translate(180px, 23px);
    }
}

.tp-panel-title.child-four {
    transform: rotate(90deg) translate(146px, 104px);
    width: 290px;
}

@media (max-width: 575px) {
    .tp-panel-title.child-four {
        transform: rotate(90deg) translate(146px, 20px);
    }
}

.tp-panel-content {
    text-align: center;
    align-items: center;
}

.tp-panel-content span {
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    color: var(--tp-common-white);
}

.tp-panel-content-2 .tp-panel-shape {
    position: absolute;
    bottom: -85px;
    left: -50px;
    z-index: -1;
}

.tp-panel-content-2 .tp-panel-icon {
    margin-bottom: 10px;
}


@media only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-panel-content-2 p {
        font-size: 18px;
    }
}

.tp-panel-content-2 i {
    font-weight: 900;
    font-size: 16px;
    height: 54px;
    color: #161616;
    line-height: 54px;
    background: var(--tp-common-white);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}


ul.testi-stars li a i {
    color: #ffffff;
    font-size: 11px;
}


.tp-panel-title-2 {
    font-weight: 600;
    font-size: 24px;
    color: var(--tp-common-white);
    margin-bottom: 10px;
}

@media only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-panel-title-2 {
        font-size: 22px;
    }
}

.tp-panel-item-2 {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: scale(0.7);
    width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .tp-panel-item-2 {
        width: 290px;
    }
}

@media only screen and (min-width: 270px) and (max-width: 575px) {
    .tp-panel-item-2 {
        width: 100%;
    }
}


.tp-line-wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    bottom: 0px;
    margin: auto;
    width: calc(100% - 400px);
    z-index: -1;
    transform: translateX(-50%);
    border-left: 1px solid #EEF3F8;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .tp-line-wrapper {
        width: calc(100% - 200px);
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-line-wrapper {
        width: calc(100% - 80px);
    }
}

.tp-line-wrapper::before {
    width: 1px;
    right: 0;
    content: "";
    height: 100px;
    position: absolute;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
    animation: line_anim_2 15s ease-out infinite alternate;
    z-index: 1;
}

.tp-line-item {
    width: 12.5%;
    float: left;
    height: 100%;
    position: relative;
    border-right: 1px solid #EEF3F8;

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .tp-line-item {
        width: 20.5%;
    }
}

.tp-line-item::before {
    width: 1px;
    left: 0;
    content: "";
    height: 100px;
    position: absolute;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
}

.tp-line-item:nth-child(even)::before {
    animation: line_anim 15s ease-out infinite alternate;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
}

.tp-line-item:nth-child(odd)::before {
    animation: line_anim_2 15s ease-out infinite;
}

@-webkit-keyframes line_anim {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@-moz-keyframes line_anim {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@-ms-keyframes line_anim {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@keyframes line_anim {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0.5;
    }
}

@-webkit-keyframes line_anim_2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}

@-moz-keyframes line_anim_2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}

@-ms-keyframes line_anim_2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}

@keyframes line_anim_2 {
    0% {
        opacity: 1;
        bottom: 0;
    }

    50% {
        bottom: 50%;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0.5;
    }
}
.blog-text {
    margin-top: 65px;
}
.blog-text h4 {
    font-size: 39px;
    color: #09050d;
    writing-mode: tb;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 41px;
    transform: rotate(
180deg);
    text-transform: uppercase;
    margin-bottom: 0 !important;
    height: 36%;
}

.blg-txt1 p {
    font-size: 11px;
    color: #09050d;
    writing-mode: tb;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: -120px;
    margin-left: -16px;
}


.blox-box .row {
    align-items: center;
}

.col-custom.wow.fadeInUpBig.active {
    padding: 30px;
    position: relative;

}

.blox-box-number h2 {
    font-size: 30px;
    margin-bottom: 0;
    color: #09050d;
}

.blox-box {
    position: relative;
    padding: 0 25px;
}

.blox-box-number {
    position: absolute;
    top: -32px;
    left: 85px;
}
.gallery-sec.sec {
    padding: 100px 0;
    background: #ebece7;
}
.gallery-heading {
    text-align: center;
}
.our-gallery-images-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

ul.blgdetail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
    border-bottom: solid 0.5px #ffffff3b;
    padding: 20px 0;
}


.t-img img {
    width: 68px;
    border-bottom: solid 0.5px #0000004a;
    padding: 20px 0;
}

.gallery-heading h2 {
    color: #000;
    margin-bottom: 8px;
}

/*Current Projects Ends */

.main-heading-banner-1 {
    position: relative;
    font-size: 178px;
    margin: 0;
}
.banner_text_haed {
    position: absolute;
    bottom: 8px;
    width: 100%;
    left: 95px;
}

.main-heading-banner-2 h2.waviy {
    font-size: 178px;
    /* margin: 0; */
    -webkit-text-stroke: 2px #ffffff;
    color: transparent;
    z-index: 99999;
    position: relative;
}

.main-heading-banner-2 {
    position: absolute;
    top: 0;
    left: 0px;
    /* z-index: 99; */
}

.main-heading-banner-1 h2 {
    font-size: 178px;
}
.main-heading-banner-2 {
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 4; */
    color: black;
}

.main-heading-banner-2 h1 {
    -webkit-text-stroke: 2px #a5823a;
    color: transparent;
}
/* about css start  */

.about_sec {
    padding: 100px 0;
}
.about_text p {
    width: 83%;
    line-height: 24px;
}
.about_img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 62%;
}
.about_img1 img {
    height: 425px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: -220px;
}
.ab-text h4 {
    color: #000;
    font-size: 60px;
    margin-bottom: 10px;
}

.about_text a {
    display: flex;
    justify-content: end;
    align-items: center;
    /* margin: 0 auto; */
    width: 190px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.about_text a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}
/* sbout css end  */
/*---------------------------------------------------- Footer Section Start ------------------------------------------------------------- */

footer {
    background: #ebece7;
    padding-top: 60px;
    background-image: url(../images/footer.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 114vh;
    width: 100%;
    background-position: center;
}

footer * {
    color: #000000;
}

footer a {
    transition: 0.5s all;
}

footer h5 {
    margin-bottom: 20px;
    font-size: 25px;
}

.contact-info ul li,
.quick-links ul li {
    margin-bottom: 15px;
    opacity: 70%;
}

.socialF-info i {
    font-size: 23px;
    opacity: 40%;
    transition: 0.5s all;
}

.socialF-info {
    margin-right: 10%;
    float: inline-end;
}

.card-credit {
    text-align: end;
}

.footer-info {
    margin-top: 0px;
}

.email-info-ftr input::placeholder {
    color: #fff;
    opacity: 60%;
}

.contact-info ul li a:hover,
.contact-info ul li p:hover,
.quick-links ul li a:hover {
    opacity: 1 !important;
}

.contact-info ul li a,
.contact-info ul li p,
.quick-links ul li a {
    opacity: 1;
    transition: 0.5s all;
    color: #000000;
}

.socialF-info i:hover {
    color: #fff;
    opacity: 1;
}

.footer-last-disline {
    padding: 16px 0;
    border-top: 1px solid #b7bcb3;
    margin-top: 40px;
}

.socialF-info ul {
    display: block;
    align-items: center;
    gap: 30px;
}

.email-info-ftr {
    margin-top: 0px;
    position: relative;
}

.email-info-ftr input {
    border: unset;
    border-bottom: 1px solid #acb1a8;
    background: transparent;
    width: 100%;
    height: auto;
    padding: 0px 0px 20px 0px;
    margin-bottom: 20px;
    color: #000;
}

.email-info-ftr button {
    position: absolute;
    top: -5px;
    right: 0;
    border-radius: 50%;
    border: unset;
    background: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info p {
    width: 93%;
    opacity: 1;
    margin-top: 15px;
    opacity: 70%;
}

.email-info-ftr button i {
    color: #ffffff;
    font-size: 16px;
    transform: rotate(-25deg);
}

.socialF-info ul li {
    margin-bottom: 10px;
}

.footer-last-disline p {
    margin-bottom: 0px;
    text-align: center;
}

.email-info-ftr input::placeholder {
    color: #000;
}


/*---------------------------------------------------- Footer Section End ------------------------------------------------------------- */
.Vendors_img1 img {
    height: 580px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.Vendors {
    padding-bottom: 100px;
}
.Vendors .row {
    align-items: center;
}
.Vendors_txt:hover p {
    display:block;
}


.Vendors_text p {
    line-height: 25px;
}
.Vendors_img img {
    height: 306px;
    width: 100%;
    border-radius: 10px;
}


.Vendors_txt {
    padding: 13px 0 10px 0;
    border-bottom: 1px solid #7c7c7759;
}
.Vendors_txt:hover h3 {
    color: #000;
}
.Vendors_txt h3 {margin: 0;padding-bottom: 10px;font-weight: 500;color: #999999;}

.Vendors_txt p {
    line-height: 24px;
    display: none;
}

.why_chose_us {
    padding: 100px 0;
}

.why_box {
    padding: 22px 30px;
    border: 1px solid #7c7c7c42;
    border-radius: 16px;
    box-shadow: 0 0 6px 0px #7c7c7c9c;
}

.why_chose_img img {
    height: 621px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.why_chose_us .row {
    align-items: center;
}
.why_box h3 {
    margin: 0;
    font-weight: 500;
    font-size: 22px;
}

.why_box p {
    margin: 0;
}

.why_box h4 {
    margin: 0;
    color: #000;
    font-size: 30px;
}

.why_box {
    margin-bottom: 20px;
}

.why_text a {
    display: flex;
    justify-content: end;
    align-items: center;
    /* margin: 0 auto; */
    width: 190px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.why_text a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}

/*---------------------------------------------------- Testimonials Section Start ------------------------------------------------------------- */

.testi-user img {
    width: max-content;
}
.testi-user img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.testimonial-sec {
    margin-bottom: 100px;
}

.testi-main {
    padding: 75px 45px 28px;
    /* border: 1px solid #e6e6e6; */
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: 0px 5px 21px 0px rgb(0 0 0 / 5%); */
    text-align: center;
    transition: 0.5s all;
    position: relative;
    margin-top: 30px;
}

.testi-slider-sd .slick-slide {
    margin: 20px 20px;
}

.testi-main p {
    color: #7c7c7c;
    font-size: 16px;
    line-height: 27px;
    padding-top: 17px;
}
.testi-main i {
    color: #f3ac29;
    font-size: 19px;
    padding-right: 27px;
}
.testi-slider-sd .slick-list.draggable {
    padding: 0 !important;
    /* margin-left: -20px; */
}

.testi-slider-sd .slick-current .testi-main,
.testi-main:hover {
    width: 64%;
    margin: 0 auto;
}

.testi-usrtxt span {
    font-size: 14px;
    color: #7c7c7c;
}

.testi-icon {
    position: absolute;
    top: -30px;
    left: 30px;
    opacity: 0.5;
}

.testi-slider-sd .slick-active {
    opacity: 1;
}

.testi-usrtxt h6 {
    font-size: 30px;
    margin: 0;
    color: #000;
}

.testi-usrtxt {
    text-align: start;
}

section.testimonial-sec .container-fluid {
    padding: 0px;
}

.testi-head {
    text-align: center;
}
.testi-head h2 {
    margin: 0;
    font-size: 60px;
}
.testi-slider-sd .slick-list.draggable {
    /* padding: 0px 500px !important; */
}

.testi-slider-sd .slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

.testi-slider-sd .slick-arrow:before {
    content: '\f060';
    font-family: 'FontAwesome';
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 24px;
    justify-content: center;
    background: #000000;
    color: #fff;
    opacity: 1;
    transition: 0.5s all;
}

.testi-slider-sd .slick-arrow {
    top: -66px;
}

.testi-slider-sd .slick-prev {
    left: 18%;
    top: 50%;
    z-index: 1;
}

.testi-slider-sd .slick-next {
    right: 19%;
    top: 50%;
}

.testi-slider-sd .slick-current .testi-main .testi-icon {
    opacity: 1;
}

.testi-slider-sd .slick-next:before {
    content: '\f061';
}

.testi-slider-sd .slick-arrow:hover:before {
    opacity: 1;
}

.testi-slider-sd .slick-next:before {
    content: '\f061';
}

.testi-slider-sd .slick-arrow:hover:before {
    opacity: 1;
}

/*---------------------------------------------------- Testimonials Section End ------------------------------------------------------------- */
  .contact_sec {
        padding: 100px 0;
    }
    .contact_form form input {
        width: 100%;
        height: 49px;
        padding: 9px;
        margin-bottom: 24px;
        border: unset;
        border: 1px solid #7c7c7c;
        border-radius: 31px;
    }
    .contact_form form select {
        width: 100%;
        height: 51px;
        border: unset;
        border-bottom: 1px solid;
        padding: 7px;
        appearance: auto;
    }
    .contact_form form textarea {
        width: 100%;
        border: unset;
        border: 1px solid #7c7c7c;
        height: 140px;
        border-radius: 17px;
        padding: 88px 26px 0;
    }
    .contact_form form h2 {
        font-size: 51px;
        padding-bottom: 26px;
        text-transform: uppercase;
    }
    .contact_form {
        box-shadow: 0 0 8px 0 #7c7c7c;
        padding: 32px 44px;
        border-radius: 15px;
    }
    .contact-icon {
        display: flex;
        gap: 20px;
        align-items: center;
        margin: 0;
        padding-bottom: 18px;
    }
    .contact_details h2 {
        padding-left: 0;
        color: #fff;
        margin: 0;
    }
    .contact-icon a {
        color: #ffffff;
        font-weight: 400;
        font-size: 12px;
    }
    .contact-icon a img {
        height: 47px;
        width: 54px;
    }
    .contact-icon p {
        font-size: 17px;
        font-weight: 600;
    }
    .contact_form button {
      display: flex;
      justify-content: end;
      align-items: center;
      width: 228px;
      height: 60px;
      background: #2b2b2b;
      border-radius: 50px;
      gap: 19px;
      color: #ffffff;
      font-weight: 600;
      padding: 5px;
      border: 0;
    }

 .contact_form button i {
     
display: flex;
     
justify-content: center;
     
align-items: center;
     
height: 50px;
     
width: 51px;
     
border-radius: 50px;
     
background: #ffffff;
     
color: #2b2b2b;
     
font-size: 27px;
     
transform: rotate(45deg);
 }
    .contact_form {
        /* position: relative; */
        z-index: 1;
        background-color: #ffff;
    }
.contact_sec .col-md-7 {
    padding: 0;
}

.contact_sec .col-md-5 {
    padding: 0;
}
    .contact_details {
        padding: 56px;
        width: 99%;
        height: 548px;
        border-radius: 10px;
        background: #2b2b2b;
    }
    .contact_details p {
        color: #fff;
        font-weight: 300;
        font-family: 'Poppins';
        padding-bottom: 30px;
        padding-top: 8px;
    }
    .contact-icon a i {
        font-size: 25px;
    }
    .contact-icon p {
        padding: 0;
        font-size: 11px;
    }
    .Vendor_sec {
    padding: 100px 0;
}

.Vendor_cont {
    text-align: center;
    margin-bottom: 50px;
}

.Vendor_cont h2 {
    margin: 0;
}

.Vendors_img1 img {
    width: 100%;
    height: 634px;
    object-fit: cover;
}

.Vendors_text h4 {
    font-size: 30px;
    color: #000;
    margin: 0;
}
.Vendors_text a {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 189px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
    /* margin: 0 auto; */
    font-size: 17px;
}
.Vendors_text {
    padding: 47px 25px;
    box-shadow: 0 0 0 1px #7c7c7c6e;
    margin-top: -8px;
    border-radius: 0 0 10px 10px;
}

.Vendors_text a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}


.Concierge {
    padding: 100px 0;
}

.Concierge_cont {
    text-align: center;
    margin-bottom: 50px;
}

.Concierge_cont h2 {
    margin: 0;
}

.Concierge_box h3 {
    font-weight: 500;
    margin: 0;
    padding-bottom: 8px;
}
.Concierge_box {
    padding: 30px;
    box-shadow: 0 0 3px 0 #7c7c7c;
    border-radius: 10px;
}
.Concierge_img {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #2b2b2b;
    border-radius: 50px;
    margin-bottom: 25px;
}

.makeappointment_form {
    padding: 100px 0;
}

.get_a_quote h2 {
    font-size: 60px;
    text-transform: uppercase;
    margin: 0;
}

/* quote-sec */

form.quote-form {
    margin-top: 50px;
}

.quote-form input,
.quote-form select {
    width: 100%;
    height: 60px;
    text-indent: 10px;
    border: 1px solid #d4d4d4;
    margin-bottom: 20px;
    /* background: transparent; */
    border-radius: 50px;
}

.quote-form .position-relative select {
    margin-bottom: 0px;
    padding: 6px;
    color: #7c7c7c;
    /* appearance: auto; */
    background-position: 603px 29px;
}

.quote-form textarea {
    padding: 10px;
    text-indent: 0px;
    height: 200px;
    width: 100%;
    resize: none;
    border: 1px solid #d4d4d4;
    margin-bottom: 11px;
    border-radius: 20px;
}
.quote-form input::placeholder, .quote-form select::placeholder {
    color: #7c7c7c;
}

.quote-form textarea::placeholder {
    color: #7c7c7c;
}
.quote-form i {
    /* position: absolute; */
    top: 0;
    right: 0;
    font-size: 20px;
    color: #012134;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    pointer-events: none;
    display: none;
}

.quote-form .position-relative {
    margin-bottom: 20px;
    z-index: 2;
}

.quote-form .position-relative input {
    margin-bottom: 0;
}

.quote-form div input[type="date"]::-webkit-calendar-picker-indicator,
.quote-form div input[type="time"]::-webkit-calendar-picker-indicator {
    position: relative;
    z-index: 2;
    width: 60%;
    margin-left: auto;
    height: 100%;
    opacity: 0;
    z-index: 1;
}
.clubj-buttn button i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 23px;
    transform: rotate(45deg);
    position: unset;
}
.clubj-buttn.join button {
    width: 174px;
}
.clubj-buttn button {
   height: 63px;
   display: flex;
   justify-content: end;
   align-items: center;
   background: #2b2b2b;
   color: #fff;
   padding: 0px;
   font-size: 15px;
   text-transform: uppercase;
   margin: 0 auto;
   font-weight: 500;
   border: 1px solid #000000;
   width: 300px;
   border-radius: 50px;
   gap: 10px;
   padding: 5px;
   }


.clubj-buttn button img {
    border-left: 1px solid #e5e5e5 !important;
    background: #e8e8e8 !important;
}

.clubj-buttn button img {
    height: auto;
    width: auto;
    background: #ffffff;
    display: flex;
    padding: 19px;
    margin: 0;
}
.Riviewes_sec.inner-revi {
    padding: 100px 31px;
}
.Qutes {
    position: absolute;
    z-index: 2;
    top: -26px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 34px;
    background: #fafafa;
    box-shadow: 0 0 1px 0;
    border-radius: 51px;
}

.Qutes i {
    padding: 0;
    color: #022235;
}
.status-toggle {
    width: 125px;
    height: 45px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    border: 1px solid;
}

.status-toggle .circle {
    width: 26px;
    height: 26px;
    background: #000000;
    border-radius: 50%;
    transition: 0.3s;
}

.status-toggle .text {
    color: #000000;
    margin-left: 10px;
    font-size: 14px;
    font-family: sans-serif;
}

/* ONLINE STATE */
.status-toggle.active {
    background: #000000;
}
.Scenario {
    padding: 100px 0;
}

.Scenario_cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
}

.Scenario_cont h2 {
    margin: 0;
}

.status-toggle.active .text {
    color: #fff;
}
.status-toggle.active .circle {
    transform: translateX(90px);
    background: #fff;
}

.status-toggle.active .text {
    content: "Feed OFF";
    display: flex;
    margin-left: -17px;
    text-transform: uppercase;
}
.Scenario_input input {
    width: 100%;
    height: 59px;
    padding: 12px;
    border-radius: 50px;
    border: 1px dashed #7c7c7c;
    position: relative;
    z-index: 1;
}
.Scenario_input {
    position: relative;
    z-index: 1;
}

.Scenario_input p {
    position: absolute;
    top: 16px;
    z-index: 99;
    left: 24px;
}

.Scenario_input p span {
    color: #4da9f6;
}
.Scenario_select select {
    width: 100%;
    height: 50px;
    border-radius: 40px;
    padding: 7px  114px  7px 11px;
    border-color: #7c7c7c;
}
.arrow_down {
    position: relative;
    z-index: 1;
}

.arrow_down img {
    position: absolute;
    right: 21px;
    top: -26px;
}
.Scenario_select {
    display: flex;
    gap: 35px;
    padding: 20px 0;
    width: 100%;
}

.Scenario_tabs .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border: 1px solid #7c7c7c;
  padding: 6px;
  border-radius: 50px;
  width: 47%;
  align-items: center;
  gap: 20px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 60px;
  border-radius: 50px;
  font-size: 15px;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 130px;
  border-radius: 50px;
  color: #7c7c7c;
}

.Scenario_tabs a {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 261px;
    height: 60px;
    background: #2b2b2b;
    border-radius: 50px;
    gap: 19px;
    color: #ffffff;
    font-weight: 600;
    padding: 5px;
}

.Scenario_tabs a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 51px;
    border-radius: 50px;
    background: #ffffff;
    color: #2b2b2b;
    font-size: 27px;
    transform: rotate(45deg);
}
.Scenario_tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
p.Scenario_para {
    margin: 15px 0;
}
.Scenario_request {
    padding-top: 59px;
}

.scenario-card {
  /* width: 880px; */
  margin: 50px auto;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  border: 1px solid #e6e6e6;
}

/* Top */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 15px;
  font-weight: 600;
}

.title span {
  color: #2f80ed;
}

.sub {
  font-size: 12px;
  color: #8a8a8a;
  margin-top: 3px;
}

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

.muted {
  font-size: 12px;
  color: #777;
}

.primary-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 29px;
  font-size: 14px;
  cursor: pointer;
}

/* Description */
.desc {
  font-size: 14px;
  color: #878787;
  margin: 20px 0;
  line-height: 25px;
}

/* Info row */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  font-size: 14.5px;
  color: #555;
}

.info-row b {
  color: #838383;
  border: 1px solid;
  border-radius: 50px;
  padding: 6px;
  font-weight: 400;
}

/* Bottom */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.bottom-row .left {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 12.5px;
}

.pill {
  background: #f1f2f4;
  padding: 5px 10px;
  border-radius: 14px;
}
.bottom-row span img {
    border: 1px solid #7c7c7c;
    padding: 8px 21px;
    border-radius: 36px;
    margin-left: 15px;
}

.bottom-row span {
    font-size: 14px;
}

.left span b {
    font-weight: 400;
    border: 1px solid #7c7c7c;
    padding: 5px 11px;
    border-radius: 50px;
}
.view-btn {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 60px;
  padding: 10px 26px;
  font-size: 14px;
  cursor: pointer;
}
span.one {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #000;
    color: #fff;
    border-radius: 50px;
}
.comment-btn {
  background: #f1f2f4;
  border: none;
  border-radius: 16px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

/* Divider */
.divider {
  border-top: 1px dashed #ddd;
  margin: 16px 0;
}

/* Comments */
.label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #000;
}

.comment-box {
  display: flex;
  gap: 10px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 10px;
}

.avatar img {
  width: 50px;
  height: 51px;
  background: #d8d8d8;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 12.5px;
  font-weight: 600;
}
.comments p {
    font-size: 10px;
}
.text {
  font-size: 14.5px;
  color: #878787;
  margin-top: 3px;
}
/* Outer light container like screenshot */
.wrapper {
  padding: 30px;
}

/* Main card */
.card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 920px;
  margin: auto;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.title span {
  color: #3b82f6;
  font-weight: 600;
}

.meta {
  font-size: 11.5px;
  color: #9ca3af;
  margin-top: 4px;
}

.badge {
  background: #eef0f3;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 6px;
  font-size: 11px;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.muted {
  font-size: 12px;
  color: #6b7280;
}

/* Buttons */
.btn-primary {
  background: #2f2f2f;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
}

.btn-dark {
  background: #2f2f2f;
  color: white;
  border: none;
  border-radius: 18px;
  padding: 6px 14px;
  font-size: 12px;
}

.btn-light {
  background: #eef0f3;
  border: none;
  border-radius: 18px;
  padding: 6px 12px;
  font-size: 12px;
  color: #444;
}

.count {
  background: #2f2f2f;
  color: white;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  margin-left: 5px;
}

/* Description */
.desc {
  font-size: 13.5px;
  color: #5f5f5f;
  margin: 14px 0;
  line-height: 1.5;
}

/* Rows */
.row {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* gap: 8px 12px; */
  /* align-items: center; */
  /* font-size: 12px; */
  /* color: #6b7280; */
  margin-bottom: 10px;
}

.row.space {
  justify-content: space-between;
}

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

/* Pills (IMPORTANT FIX) */
.pill {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 14px;
  color: #374151;
}

.pill.icon {
  padding-left: 8px;
}

.pill.check::before {
  content: "✔ ";
  font-size: 11px;
}

/* Divider */
.divider {
  border-top: 2px dashed #d1d5db;
  margin: 38px 0;
}

/* Comments */
.comment-title {
  font-size: 12.5px;
  font-weight: 500;
}

.latest {
  font-size: 11px;
  color: #9ca3af;
  margin: 6px 0;
}

.comment-box {
  display: flex;
  gap: 15px;
  background: #f3f4f6;
  padding: 10px;
  border-radius: 10px;
  align-items: center;
}

.avatar {
  width: 86px;
  height: 49px;
  /* background: #d1d5db; */
  border-radius: 50%;
}

.name {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.text {
  font-size: 14px;
  color: #585858;
  margin-top: 3px;
}