.main-header.new_main_header .header-upper {
    background: #000000;
}
.main-header {

    background: #000;
}
nav {
    position: fixed;
    z-index: 99;
    width: 100%;

    background: #242526;
}

nav .wrapper {
    position: relative;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px;
}

.wrapper .logo a {
    display: inline-block;
    z-index: 1;
    background: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}

.wrapper .logo a img {
    max-width: 120px
}

.wrapper .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 17px;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
color: #f2f2f2;
text-decoration: none;
font-size: 14px;
font-weight: 500;
padding: 9px 0px;
border-radius: 5px;
transition: all 0.3s ease;
color: #ffffff;
font-family: var(--primary-font);
text-transform: capitalize;

}
.nav-links li a.btn-one {
    font-size: 16px;
    padding: 12px 18px !important;
    font-family: var(--secondary-font) !important;
    font-weight: 500;
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
    line-height: 20px;
    text-align: center;
}
.nav-links li a:hover {
    color: #00a95a;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
color: #000000;
font-size: 20px;
cursor: pointer;
display: none;
background: #fff;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
    background-color: #fff;
    color: #000;
}

@media screen and (max-width: 1198px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.main-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.main-header.new_main_header .header-upper .header-upper-left .logo a {
    position: relative;
    display: inline-block;
    z-index: 1;
    background: #fff;
    padding: 8px 15px;
    border-radius: 5px;
}

.main-header.new_main_header .header-upper .header-upper-left .logo a img {
    width: 150px;
}

.main-header.new_main_header .header-upper .main-menu .navigation>li>a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--primary-font);
    text-transform: capitalize;
    padding: 0px 0px 0px;
    padding-right: 10px;
}

.main-header.new_main_header .header-upper .main-menu .navigation>li>a:hover {
    color: #00A95A;
}

.main-header.new_main_header .header-upper .header-upper-left {
    position: relative;
    top: 0px;
    left: 0px;
}

.main-header.new_main_header .header-upper .outer-box {
    position: relative;
    display: flex;
    padding-left: 0px;
    padding: 15px 0px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.main-header.new_main_header .header-upper .header-upper-right {
    position: relative;
    display: block;
    width: 100%;
    justify-content: end;
    display: flex;
}

.main-header.new_main_header .menu-right-content {
    position: relative;
    float: right;
    width: 0px;
    padding: 15px 0;
}

.main-header.new_main_header .header-upper .main-menu .navigation {
    position: inherit;
    align-items: center;
    display: flex;
    gap: 10px;
}

.main-header.new_main_header .header-upper .main-menu .navigation>li>a span:before {
    font-family: "Flaticon";
    display: none;
}

.main-header.new_main_header .header-upper .main-menu .navigation>li>a.btn-one {
    font-size: 16px;
    padding: 12px 18px !important;
    font-family: var(--secondary-font) !important;
    font-weight: 500;
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important;
    -o-border-radius: 5px !important;
}

.main-header.new_main_header .btn-one:hover {
    color: #ffffff !important;
    background: #131313;
    border: 1px solid #fff;
}

.search-box {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
}

.search-box .search-box-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--primary-font);
    letter-spacing: 0.02em;
}

.search-box .search-box-content p {
    font-size: 16px;
    font-weight: 300;
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero-slider .carousel-inner .carousel-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0px 0px 200px 50px;
}

.hero-slider .carousel-item {
    overflow: hidden;
}

.hero-slider .carousel-item {
    border-radius: 0px 0px 200px 50px;
    border: 3px solid #fff;
    box-shadow: 0px 4px 10px #00000032;
    border-top: 0px !important;
    border-left: 0px !important;
    border-right: 0px !important;
}

.search-form .input-group-text {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 10%;
    transform: translateX(-50%);
    background: unset;
    border: 0;
}

.search-form .input-form {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(35, 204, 115, 0.5);
}

.search-form .input-form .search-input {
    width: 331px;
}

.search-form .input-form .search-input input {
    border: none;
    outline: none;
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
}

.search-form .input-form .search-input .form-control:focus {
    outline: 0;
    box-shadow: unset !important;
}

.search-form .input-form .zip-input {
    width: 120px;
    overflow: hidden;
    border-left: 1px solid #cdcccc !important;
    padding-left: 20px;
    padding: 5px 0px 5px 20px;
}

.search-form .input-form .zip-input .form-group {
    padding-left: 30px;
}

.search-form .input-form .search-btn .btn.btn-primary {
    width: 168px;
    background-color: #00A95A !important;
    border-color: #00A95A !important;
    font-size: 18px;
    font-family: var(--secondary-font);
    height: 50px;
}

.search-form .input-form .search-input.input-with-icon {
    width: 250px;
}

.search-form .input-form .select-input {
    width: 200px;
    overflow: hidden;
    border-left: 1px solid #cdcccc !important;
    padding-left: 0px !important;
    padding: 5px 0px 5px 20px;
}

.search-form .input-form .select-input .form-control {
    border: none;
}

.search-form .input-form .select-input .form-control:focus {
    outline: none;
    box-shadow: unset !important;
}

.big-heading h2 {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--primary-font);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    line-height: 56px;
}

.text-green {
    background: linear-gradient(45deg, #23CC73, #2C3A32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    color: #5A5A5A;
    font-size: 18px;
    line-height: 27px;
    font-family: var(--secondary-font);
}


.categories-section {
    padding: 80px 0px;
    text-align: center;
}

.caregories-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.caregories-list .caregories-item {
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;

}

.caregories-list .caregories-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: #14183E;
    margin-top: 10px;
    line-height: 22px;
}

.caregories-list .caregories-item p {
    font-size: 13px;
    line-height: 17px;
    color: #14183E;
    margin-bottom: 0;
    margin-top: 2px;
}

.caregories-list .caregories-item img {
    max-width: 80px;
}

.categories-section .btn.btn-success {
    background-color: #00A95A !important;
    margin-top: 40px;
    font-size: 18px;
    padding: 15px 40px;
    border: 1px solid #00A95A;
    font-weight: 500;
}

.categories-section .btn.button {
    margin: 30px auto 0px;
}

.about-us-section {
    padding: 80px 0px;
    background-color: #F3F7FD;
}

.about-us-image {
    position: relative;
}

.about-us-image .about-shape {
    position: absolute;
    right: 17px;
    bottom: 17px;
    animation: bounceleft 4s linear infinite;
}

@keyframes bounceleft {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    50% {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }

    100% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
}


.about-us-image .about-conter-box {
    background: linear-gradient(45deg, #23CC73, #2C3A32);
    display: inline-block;
    text-align: center;
    padding: 33px 35px;
    position: absolute;
    top: 5px;
    left: 1px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.about-us-image .about-conter-box:before {
    position: absolute;
    content: "";
    width: 180px;
    height: 182px;
    left: -2px;
    top: -57px;
    background: linear-gradient(45deg, #23CC73, #2C3A32);
    border-radius: 50%;
    z-index: -1;
}

.about-us-image .about-counter-title span,
.about-us-image .about-counter-title h4 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding: 0 0 16px 0;
    display: inline-block;
    font-family: var(--primary-font);
}

.about-us-image .about-counter-title h4:before {
    position: absolute;
    content: "";
    width: 44px;
    height: 2px;
    left: 24px;
    bottom: -10px;
    background: #fff;
}

.about-us-image .about-counter-title p {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--secondary-font);
    text-align: center;
    padding: 20px 0 0 0;
    margin-bottom: 0;
}

.btn.button {
    padding: 12px 27px 12px 27px;
    font-weight: 600;
    color: #fff;
    background: #00A95A;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #00A95A;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 17px;
    margin-top: 8px;
    transition: 0.5s;
    gap: 10px;
    display: flex;
    width: fit-content;
    margin-top: 30px;
    justify-content: center;
}

.btn.button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    transition: 0.5s;
}

.btn.button:hover:before {
    width: 100%;
    color: #00A95A;
    right: 0;
}

.btn.button:hover {
    color: #00A95A !important;
}

.btn.button span svg {
    fill: #ffffff;
}

.btn.button:hover span svg {
    fill: #00A95A;
}

.about-left {
    position: relative;
}

.about-left .about-shape-two {
    position: absolute;
    bottom: 0;
    left: 239px;
    animation: bounceleft 4s linear infinite;
}

.projects-section {
    padding: 80px 0px;
    background-color: #FDFDFD;
}

.projects-box {
    border: 1px solid #D3CDCD;
    padding: 15px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.projects-box .projects-content {
    padding: 15px;
}

.projects-box img {
    border-radius: 5px;
    min-height: 217px;
    height: 217px;
    object-fit: cover;
    margin-bottom: 15px;
    width: 100%;
}

.projects-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #14183E;
    margin-bottom: 9px;
    font-family: var(--primary-font);
}

.projects-box p {
    font-size: 14px;
    font-weight: 400;
    color: #676D73;
    margin-bottom: 5px;
    line-height: 20px;
}

.projects-box a {
    font-size: 14px;
    color: #676D73;
    display: flex;
    gap: 5px;
    align-items: center;
}

.projects-slider {
    position: relative;
    margin-top: 40px;
}

.swiper-button-prev {
    left: -30px;
}

.swiper-button-next {
    right: -30px;
}
.projects-slider .swiper-button-prev {
    left: 0px;
}

.projects-slider .swiper-button-next {
    right: 0px;
}
.swiper-button-prev,
.swiper-button-next {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #D3D3D3;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 25px;
    color: #00A95A;
}

.platform-section {
    padding: 0px 0px 80px;
    background-color: #ffffff;
}

.platform-box {
    border: 1px solid #D3CDCD;
    border-radius: 10px;
    overflow: hidden;
}

.platform-box .platform-icon img {
    min-height: 219px;
    height: 219px;
    object-fit: cover;
}

.platform-box .platform-icon {
    position: relative;
}

.platform-box .platform-icon:after {
    content: "";
    display: block;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    position: absolute;
    pointer-events: none;
    background: -webkit-linear-gradient(bottom, #ffffff 10%, transparent 60%);
    background: -moz-linear-gradient(bottom, #ffffff 10%, transparent 60%);
    background: linear-gradient(to top, #ffffff 10%, transparent 60%);
}

.platform-box h5 {
    font-size: 18px;
    font-weight: 600;
    color: #14183E;
    margin-bottom: 9px;
    font-family: var(--primary-font);
}

.platform-box p {
    font-size: 14px;
    font-weight: 400;
    color: #676D73;
    margin-bottom: 5px;
    line-height: 20px;
}

.platform-box .platform-content {
    padding: 15px;
    margin-top: -40px;
    z-index: 99;
    position: relative;
}

.platform-box .platform-content .btn.button {
    margin-top: 15px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.02rem;
    text-transform: capitalize;
}

.platform-row {
    row-gap: 24px;
    margin-top: 40px;
}

.bg-color {
    background-color: #F3F7FD !important;
}

.why-choose {
    padding: 0px 0px 80px;
    background-color: #ffffff;
}

.why-choose .hero-section {
    position: relative;
    text-align: left;
    color: white;
}

.why-choose .hero-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.why-choose .hero-text {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
}

.why-choose .hero-text h1 {
    font-size: 45px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 20px;
}

.why-choose .hero-text p {
    font-size: 25px;
    color: #000;
    margin-bottom: 30px;
}

.why-choose .hero-text .btn {
    margin-top: 20px;
}

.feature-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.feature-card h2 {
    background: linear-gradient(45deg, #23CC73, #2C3A32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    font-weight: bold;
    line-height: 50px;
}

.feature-card h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 10px;
    font-family: var(--primary-font);
}

.testimonial-area-style2 {
    position: relative;
    display: block;
    padding: 80px 0 80px;
    z-index: 2;
    background: #EDF8F4;
}

.single-testimonial-item-style2 .text-holder .inner .quote-icon span:before {
    background: linear-gradient(45deg, #23CC73, #2C3A32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    display: block;
    line-height: auto;
    margin-left: 0px;
    margin-bottom: 10px;
}

.single-testimonial-item-style2 .text-holder {
    position: relative;
    display: block;
    background: #ffffff;
    -webkit-box-shadow: 0px 5px 10px 2px #ededed;
    box-shadow: 0px 5px 10px 2px #ededed;
    text-align: left;
}

.single-testimonial-item-style2 .text-holder .text:before {
    display: none;
}

.single-testimonial-item-style2 .text-holder .inner .quote-icon:before {
    display: none;
}

.single-testimonial-item-style2 .text-holder .inner .quote-icon {
    position: relative;
    top: 0;
    left: 0;
    width: fit-content;
    height: fit-content;
    text-align: left;
    z-index: 1;
}

.single-testimonial-item-style2 .text-holder .text {
    position: relative;
    display: block;
    margin-bottom: 0px;
    z-index: 1;
}

.single-testimonial-item-style2 .text-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 30px;
    border-radius: 10px;
}

.single-testimonial-item-style2 .text-holder {
    border-radius: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.reviewer-info img {
    width: 50px;
    border-radius: 100%;
    height: 50px;
    object-fit: cover;
}

.reviewer-img h4 {
    font-size: 14px !important;
    font-weight: 500;
    font-family: var(--primary-font);
}

.reviewer-img ul {
    display: flex;
    gap: 10px;
    align-items: center;
}

.reviewer-img ul li svg {
    width: 15px;
    height: 15px;
    fill: #F0C020;
}

.single-testimonial-item-style2 {
    position: relative;
    display: block;
    margin-top: 0px;
}

.footer-area {
    background-image: url(../images/footer/top-footer.png);
    padding: 80px 0px 40px;
}

.single-footer-widget .title h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: var(--primary-font);
}

.single-footer-widget .title {
    position: relative;
    display: block;
    padding-bottom: 25px;
    margin-top: 0px;
}

.single-footer-widget .usefull-links ul:before {
    display: none !important;
}

.single-footer-widget .usefull-links ul li a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding-left: 0px;
    transition: all 500ms ease;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 35px;
}

.single-footer-widget .usefull-links ul li a svg {
    width: 14px;
    fill: #fff;
    height: 14px;
    flex-shrink: 0;
}

.single-footer-widget .usefull-links ul li:before {
    display: none;
}

.single-footer-widget .usefull-links ul li a:hover svg {
    fill: #00A95A;
}

.single-footer-widget .footer-company-info-text p {
    color: #ffffff;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}

.contact-links ul li a {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 20px;
    color: #ffffff;
}

.contact-links ul li a svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.contact-links ul li {
    margin-bottom: 20px;
}

.single-footer-widget .subscribe-box .text p {
    color: #ffffff;
    margin: 0;
}

.subscribe-box input {
    height: 42px;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

.subscribe-box .btn.button {
    margin-top: 20px;
    line-height: auto !important;
}

.shop-page-title h6 {
    font-size: 16px;
    color: #00A95A;
    font-weight: 500;
    margin-bottom: 10px;
}

.shop-page-title .title {
    color: #282C4B;
    font-size: 36px;
    line-height: 53px;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: capitalize;
    font-family: var(--primary-font);
}

.form label {
    font-size: 20px;
    line-height: 20px;
    font-family: var(--primary-font);
    font-weight: 500;
    color: #14183E;
    margin-bottom: 10px;
}

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

.login-register-area .form .remember-text {
    margin-top: 10px;
    text-align: center;
}

a.link_login {
    color: #00A95A;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
}

.form .btn.button {
    margin-top: 10px;
}

.login-register-area {
    position: relative;
    display: block;
    padding-top: 80px;
    padding-bottom: 30px;
}

.drop-zone {
    max-width: 100%;
    height: 200px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 2px dashed #00A95A;
    border-radius: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.drop-zone__prompt .drop-zone__text {
    font-size: 20px;
    color: #00A95A;
    font-weight: 600;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.drop-zone__prompt {
    display: grid;
    gap: 10px;
}

.contact-info-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 80px 0px;
}

.contact-info-box {
    background-image: url(../images/login/contactus.png);
    background-size: cover;
    padding: 40px;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info-box h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.contact-info-box p {
    font-size: 18px;
    font-weight: 400;
    color: #C9C9C9;
    margin-bottom: 15px;
    font-family: var(--secondary-font);
}

.info-list {
    margin: 90px 0px;
}

.info-list .contact-links ul li {
    margin-bottom: 40px;
}

.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form textarea {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #EDEDED;
    width: 100%;
    height: 50px;
    font-size: 16px;
    padding-left: 19px;
    padding-right: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 500ms ease;
    color: #747582;
}

.contact-form {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px !important;
    box-shadow: unset !important;
    z-index: 3;
}

.contact-form form textarea {
    height: 200px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.contact-form .form .btn.button {
    margin-top: 20px;
    line-height: 28px !important;
}

.contractor-list {
    padding: 80px 0px;
}

.contractor-list .card img {
    height: 220px;
    object-fit: cover;
}

.contractor-list .card .card-body {
    padding: 15px;
}

.contractor-list .card .card-body .card-title {
    margin-bottom: .75rem;
    font-size: 19px;
    font-family: var(--primary-font);
    margin-bottom: 5px;
}

.contractor-list .card .card-body .card-text {
    font-size: 14px;
    margin-bottom: 10px;
}

.contractor-list .card .card-body .list-unstyled {
    padding-left: 0;
    list-style: none;
    border-top: 1.2px dashed #C8C8C8;
    padding-top: 10px;
    padding-bottom: 15px;
}

.contractor-list .card .card-body .list-unstyled li i {
    font-size: 13px;
    color: #14183E;
}

.contractor-list .card .card-body .list-unstyled li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-family: var(--secondary-font);
}

.contractor-list .card .card-body .btn.button {
    padding: 12px 20px !important;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 0px;
}

.contractor-list .card .card-body .border-top {
    border-top: 1px solid #C8C8C8;
    padding-top: 20px;
}

.swiper-container .swiper-button-prev {
    left: 70px;
}

.swiper-container .swiper-button-next {
    right: 70px;
}

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

.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.profile-card .parsnal-info {
    font-size: 14px;
    line-height: 16.3px;
    color: #676D73;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.profile-card .parsnal-info:last-child {
    margin-bottom: 0px;
}

.profile-card .parsnal-info strong {
    min-width: 122px;
    color: #000 !important;
    width: 122px;
}

.profile-card .profile-header .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0px 0px 10px #00000032;
}

.profile-card,
.review-card {
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #DADADA;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}

.project-swiper {
    margin-top: 20px;
}

.profile-card h4 {
    font-size: 25px;
    font-weight: 700;
}

.profile-card .single-testimonial-item-style2 .text-holder .inner {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #DADADA;
    margin-top: 20px;
}

.profile-card .projects-slider {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
}

.profile-card .swiper-pagination {
    position: absolute;
    bottom: -45px;
}

.profile-card .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}

.profile-card .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 18px;
    height: 18px;
    background-color: #00A95A;
}

.rating {
    color: #00A95A;
    font-size: 14px;
    font-weight: 600;
}


.service-list {
    color: #666;
}

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

.btn.button.action-btn {
    background-color: #14183E;
    border: 1px solid #1418;
}

.action-buttons .btn.button {
    margin-top: 10px;
}

.lg-download-1 {
    display: none;
}
