/* font-family: "Playfair", serif; */
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');


/*   font-family: "Inter", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00560A;
    --secondary-color: #54D537;
    --para-color: #00000099;
    --white-color: #ffffff;
    --black-color: #000000;
    --bg-color: #54D5370D;
    --box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    --playfair-font: 'Playfair', serif;
    --inter-font: 'Inter', sans-serif;
}

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    font-family: var(--playfair-font);
    color: #000000b2;
    background-color: var(--white-color);
    overflow-x: hidden;
    color: #f0f8ff;
}

input,
textarea,
select,
button {
    font-family: var(--inter-font);
}

button {
    cursor: pointer;
    border: 0;
}

p {
    font-family: var(--inter-font) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 30px !important;
    color: var(--para-color);
    margin: 0;
}

@media (max-width: 1200px) {
    p {
        font-size: 16px !important;
        line-height: 25px !important;
    }

}

.btn {
    font-family: var(--inter-font);
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

section {
    padding: 50px 0;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 400;
    line-height: 1.1em;
    font-family: var(--accent-font);
    color: var(--black-color);
}

dl,
ol,
ul {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1600px;
}

@media (max-width: 1600px) {
    .container {
        max-width: 1500px;
    }

}

@media (max-width: 1500px) {
    .container {
        max-width: 1400px;
    }
}


@media (max-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

@media (max-width: 1300px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 1100px) and (min-width: 992px) {
    .container {
        max-width: 1000px;
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

/* Section Title */
.section-title {
    text-align: left;
    margin-bottom: 50px;
}

.section-title h5 {
    font-family: var(--inter-font);
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 50px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 400px) {
    .section-title h2 {
        font-size: 35px;
    }
}

/* End Section Title */


/* navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 9999;
}

nav::before,
nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.502);
    z-index: 99999999999;
}

nav::before {
    left: 20%;
}

nav::after {
    right: 20%;
}


nav img {
    width: 100%;
    max-width: 90px;
}

nav .menu-area li a {
    font-family: var(--inter-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
    transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
}

nav .menu-area li a:hover {
    color: var(--secondary-color);
}

nav.scrolled {
    background-color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid #ddd;
}

nav.scrolled .menu-area li a {
    color: var(--primary-color);
}

nav.scrolled .menu-area li a:hover {
    color: var(--secondary-color);
}


nav .humburger-menu,
nav .close-area,
nav .menu-area span {
    display: none;
}

nav .humburger-menu i,
nav .close-area i {
    font-size: 30px;
    color: var(--white-color);

}

nav.scrolled .humburger-menu i,
nav.scrolled .close-area i {
    color: var(--primary-color);
}

nav .contact-area .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

nav .menu-area span {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

nav .contact-area a {
    color: var(--secondary-color);
    font-size: 16px;
}

nav .contact-area i {
    color: var(--secondary-color);
    font-size: 20px;
}

@media (max-width: 1200px) {
    nav .menu-area .gap-5 {
        gap: 30px !important;
    }
}

@media (max-width: 992px) {
    nav::before {
        left: 18%;
    }

    nav::after {
        right: 25%;
    }
}

@media (max-width: 768px) {

    nav .humburger-menu,
    nav .close-area,
    nav .menu-area span {
        display: block;
    }

    nav .menu-area .contact-area,
    nav .menu-area .social-icons {
        display: flex;
    }

    nav .menu-area {
        position: fixed;
        top: 92px;
        right: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white-color);
        padding: 30px;
        box-shadow: var(--box-shadow);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        z-index: 9999;
    }

    nav .menu-area.active {
        transform: translateX(0%);
    }


    nav .menu-area .menu {
        flex-direction: column !important;

    }

    nav .menu-area li a {
        color: var(--primary-color);
    }

    nav .menu-area .social-icons i {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--secondary-color);
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: 0.3s ease-in-out;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
    }

    nav .menu-area .social-icons i:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

    nav::before {
        left: 20%;
    }

    nav::after {
        right: 20%;
    }
}

@media (max-width: 576px) {

    nav::before,
    nav::after {
        content: none;
    }
}

@media (max-width: 480px) {
    nav .menu-area {
        max-width: 100%;
    }


}

/* Page Not Found */
.page-not-found .content-area {
    background-color: var(--bg-color);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.page-not-found .error-code {
    font-size: 120px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--inter-font);
    margin-bottom: 20px;
}

.page-not-found .error-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black-color);
    font-family: var(--inter-font);
}

.page-not-found .error-description {
    font-size: 16px;
    color: var(--para-color);
    margin-bottom: 30px;
}

@media (max-width: 992px) {


    .page-not-found .error-code {
        font-size: 100px;
    }

    .page-not-found .error-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .page-not-found .error-code {
        font-size: 80px;
    }

    .page-not-found .error-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .page-not-found .content-area {
        padding: 15px;
    }

    .page-not-found .error-code {
        font-size: 60px;
    }

    .page-not-found .error-title {
        font-size: 24px;
    }
}

/* End Page Not Found */

/* End navbar */

/* Breadcrumb */
.breadcrumb {
    background: url(../images/hero-bg.jpg) no-repeat center center/cover;
    height: 40vh;
    position: relative;
    z-index: 1;
}

.breadcrumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00560a5b;
    z-index: -1;
}

.breadcrumb .content {
    text-align: center;
}

.breadcrumb h1 {
    font-size: 80px;
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
}


.breadcrumb ul a {
    font-family: var(--inter-font);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white-color);
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrumb ul .seprator {
    color: var(--white-color);
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .breadcrumb h1 {
        font-size: 45px;
    }

}

@media (max-width: 768px) {
    .breadcrumb {
        height: 30vh;
        justify-content: end !important;
        padding-bottom: 30px;
    }

    .breadcrumb ul {
        margin: 0 auto;
    }

    .breadcrumb h1 {
        font-size: 35px;
    }

    .breadcrumb ul a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .breadcrumb ul a {
        font-size: 16px;
    }

    .breadcrumb {
        height: 35vh;
    }
}

/* End Breadcrumb */


/* Hero Section */
.hero-section {
    position: relative;
    background: url(../images/hero-bg.jpg) no-repeat center center/cover fixed;
    height: 90vh;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00560a5b;
    z-index: -1;
}

.hero-section .content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h4 {
    font-family: var(--inter-font);
    color: var(--white-color);
    border-bottom: 2px solid #BBBD42;
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: 84px;
    color: var(--white-color);
    font-weight: 600;
}

.hero-section h1 span {
    color: #BBBD42;
}


@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 74px;
    }


}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-section h1 {
        font-size: 63px;
    }
}



@media (max-width: 576px) {
    .hero-section {
        justify-content: center !important;
        padding-top: 50px;
    }

    .hero-section h1 {
        font-size: 50px;
    }

    .hero-section h4 {
        font-size: 18px !important;
    }

    .hero-section .content {
        gap: 30px !important;
    }
}

/* End Hero Section */

/* About Us */
.about-us .content {
    padding-right: 120px;
}

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

.about-us .images img {
    width: 100%;
    height: 550px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.about-us .images .img-one {
    padding-left: 50px;
}

.about-us .images .img-one::before {
    content: "";
    position: absolute;
    right: -20px;
    height: 400px;
    width: 50px;
    background-color: var(--primary-color);
    z-index: -1;
    top: 75px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.about-us .images .img-two img {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 270px;
    height: 300px;
    border: 3px solid var(--white-color);
}

@media (max-width: 1300px) {
    .about-us .section-title h2 br {
        display: none;
    }

    .about-us .content {
        padding-right: 100px;
    }
}

@media (max-width: 992px) {
    .about-us .content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .about-us .images .img-one {
        padding-left: 100px;
    }

    .about-us .images .img-two img {
        left: -10px;
        width: 270px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-us .images img {
        height: 500px;
    }

    .about-us .images .img-two img {
        width: 230px;
        height: 270px;
    }

    .about-us .images .img-one::before {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-us .images .img-one {
        padding-left: 30px;
    }

    .about-us .images img {
        height: 400px;
    }

    .about-us .images .img-two img {
        width: 150px;
        height: 180px;
        left: -10px;
    }

    .about-us .images .img-one::before {
        right: -10px;
        height: 350px;
        width: 50px;
        background-color: var(--primary-color);
        z-index: -1;
        top: 30px;
    }
}

/* End About Us */

/* Our Product */
.our-product .product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.our-product .product {
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    background-color: var(--bg-color);
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.our-product .product .image {
    overflow: hidden;
}

.our-product .product .image img {
    max-width: 100%;
    height: 280px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.our-product .product .image:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.our-product .product .content {
    margin-top: 15px;
}

.our-product .product h6 {
    font-family: var(--inter-font);
    font-size: 18px;
    margin: 20px 0;
    color: var(--primary-color);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    margin-top: 30px;
    font-family: var(--inter-font);
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 8px 14px;
    background-color: var(--bg-color);
    color: var(--black-color);
    text-decoration: none;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pagination .current {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
}


@media (max-width: 1300px) {
    .our-product .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .our-product .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .our-product .product .image img {
        height: 260px;
    }
}



@media (max-width: 768px) {
    .our-product .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-product .product .image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .our-product .product-grid {
        grid-template-columns: 1fr;
    }

    .our-product .product .image img {
        height: auto;
    }
}

/* End Our Product */

/* Products Details */
.products-details .product-image {
    background-color: var(--bg-color);
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


.products-details .info h1 {
    font-family: var(--inter-font);
    font-weight: 600;
    margin-bottom: 15px;
}

.products-details .product-image img {
    max-width: 100%;
    height: auto;
    width: 400px;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.products-details .info ul li {
    display: flex;
    gap: 10px;
    color: var(--para-color);
    font-size: 16px;
    font-family: var(--inter-font);
}

.products-details .info ul {
    display: grid;
    gap: 10px;
    margin-bottom: 15px;
}

.products-details .info ul li i {
    margin-top: 5px;
}

.products-details .info h4 {
    color: var(--primary-color);
    text-transform: capitalize;
    font-family: var(--inter-font);
    margin-bottom: 15px;
	line-height: 32px;
}

@media (max-width: 992px) {
    .products-details .product-image {
        margin-bottom: 30px;
    }

    .products-details .product-image img {
        width: 300px;
        max-height: 400px;
        object-fit: contain;
        display: block;
    }
}

@media (max-width: 576px) {
    .products-details .product-image img {
        width: 200px;
        max-height: 300px;
        object-fit: contain;
        display: block;
    }
}

/* End Products Details */

/* Counter */
.counter-area {
    background: var(--primary-color) url(../images/counter-bg.png) center/cover no-repeat;
    background-blend-mode: overlay;
}

.counter-area .details {
    background: var(--white-color) url(../images/counter-bg.png) center/cover no-repeat;
    padding: 50px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.counter-area .info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.counter-area img {
    width: 80px;
    display: block;
}

.counter-area .number {
    font-size: 50px;
    font-family: var(--inter-font);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.counter-area .info h6 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--inter-font);
}

@media (max-width: 992px) {
    .counter-area .info {
        justify-content: flex-start;
    }

    .counter-area .details .row>div:nth-child(1) .info,
    .counter-area .details .row>div:nth-child(2) .info {
        margin-bottom: 30px;
    }

}

@media (max-width:576px) {
    .counter-area .details {
        padding: 30px;
    }

    .counter-area .details .row>div:nth-child(3) .info {
        margin-bottom: 30px;
    }

    .counter-area img {
        font-size: 60px;
    }

    .counter-area .number {
        font-size: 40px;
        font-weight: 600;
    }

    .counter-area .info h6 {
        font-size: 18px;
    }
}

/* End Counter */

/* Why Choose Us */
.why-choose-us .box-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-choose-us .box-area .box {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.why-choose-us .box-area .box i {
    font-size: 40px;
}

.why-choose-us .box-area .box h3 {
    margin: 15px 0;
    color: var(--white-color);
    text-transform: capitalize;
    font-weight: 600;
}

.why-choose-us .box-area .box p {
    color: var(--white-color);
}

@media (max-width:992px) {


    .why-choose-us .box-area {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .why-choose-us .box-area {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* End Why Choose Us */


/* Contact Us Area */
.contact-us-area form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-us-area .form-input p {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-us-area input,
.contact-us-area textarea {
    width: 100% !important;
    font-size: 16px;
    flex: 1;
    padding: 15px;
    background-color: var(--bg-color);
    border: 1px solid #ccc;
    outline: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.contact-us-area span,
.contact-us-area textarea span {
    width: 100%;
}


.contact-us-area textarea {
    height: 180px;
}

.contact-us-area .social-area {
    margin-top: 30px;
}

.contact-us-area ul i {
    width: 40px;
    height: 40px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
    color: var(--primary-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.contact-us-area ul i:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.contact-us-area .form-area input[type="submit"] {
    font-family: var(--inter-font);
    padding: 10px 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.contact-us-area .form-area input[type="submit"]:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/* Shared styles */
.wpcf7 form .wpcf7-response-output {
    width: 100%;
    padding: 15px!important;
    border: 2px solid;
    border-radius: 5px;
    font-family: var(--inter-font);
    box-shadow: var(--box-shadow);
    margin-top: 10px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    margin: 0 !important;
    margin-top: 20px !important;
}

/* Success message */
.wpcf7 form.sent .wpcf7-response-output {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
}

/* Error message */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
    background-color: #ffe5e5;
    color: #a10000;
    border-color: #a10000 !important;
}

/* Fade out */
.wpcf7-response-output.fade-out {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}


.wpcf7-response-output {
    transition: opacity 0.5s ease-in-out;
}

.wpcf7-response-output.fade-out {
    opacity: 0;
    pointer-events: none;
}


@media (max-width: 992px) {
    .contact-us-area .form-area {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .contact-us-area .form-input p{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: normal !important;
    }   

    .contact-us-area textarea {
        height: 150px;
    }
}

/* End Contact Us Area */

/* Client Testimonials */
.client-testimonials {
    background-color: var(--bg-color);
}

.client-testimonials .box {
    background-color: var(--white-color);
    padding: 30px;
    border-bottom: 5px solid var(--primary-color);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.client-testimonials p {
    margin: 15px 0 30px 0;
    color: var(--para-color);
}

.client-testimonials .horiz-line {
    width: 100%;
    height: 1px;
    background-color: var(--bg-color);
    margin-bottom: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.client-testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-testimonials .client-info .icon i {
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: var(--white-color);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.client-testimonials .client-info .info h5 {
    font-family: var(--inter-font);
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 16px;
}

.client-testimonials .client-info .info h6 {
     font-family: var(--inter-font);
    color: var(--para-color);
    font-weight: 400;
    font-size: 14px;
}

.client-testimonials .testimonial-slider .swiper-pagination {
    position: relative;
    text-align: center;
    bottom: 0px;
    margin-top: 30px;
}

.client-testimonials .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    width: 20px;
    height: 5px;
    background-color: #2C5F2D;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* End Client Testimonials */

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 50px 0 30px 0;
}

footer .footer-logo img {
    width: 100%;
    max-width: 130px;
}

footer p {
    color: #FFFFFF99;
}

footer p a {
    color: #FFFFFF99;
}

footer h3 {
    margin-bottom: 20px;
    color: var(--white-color);
}

footer .footer-links a {
    font-size: 18px;
    font-family: var(--inter-font);
    color: #FFFFFF99;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

footer .footer-links a:hover {
    color: var(--secondary-color);
}

footer .footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-contact li a i {
    color: var(--white-color);
    font-size: 20px;
}

footer .copyright-area .social-icons i {
    width: 35px;
    height: 35px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

footer .copyright-area .social-icons i:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

@media (max-width: 992px) {
    footer .footer-links {
        align-items: flex-start !important;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 30px 0;
    }
}

@media (max-width: 576px) {
    footer .footer-links a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    footer {
        padding-bottom: 50px;
    }
}

/* End Footer */