@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    font-family: "Poppins", sans-serif;
}

.playfair-font{
    font-family: "Playfair Display", serif;
}

header #menu ul li a.active , header #menu ul li button.active{
    color: #2F4F2F;
}

header #menu ul li a.active::after , header #menu ul li button.active::after{
    width: 100%;
}

header #menu  ul li a , header #menu ul li button{
    position: relative;
}
header #menu > ul > li > a::after , header #menu > ul > li > button::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2F4F2F;
    transition: all 0.3s ease-in-out;
}
header #menu > ul > li > a:hover::after , header #menu > ul > li > button:hover::after{
    width: 100%;
}

/* .about_heading{
    position: relative;
    display: inline-block;
    padding-left: 60px;
} */
.about_heading span{
    display: inline-block;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #2F4F2F;
}


.testimonial-section::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 40%;
    bottom: 0;
    left: 0;
    right:0;
    z-index: -1;
    background-color: #E5F5E5; 
}
 

.main-form-box::after{
    content:"";
    position: absolute;
    height:7px;
    top:0;
    left:0;
    right:0;
    width:100%;
    background: linear-gradient(90deg, #3C6E47 0%, #D4AF37 100%);
}

.validate-has-error{
    color:#EF4444;
    font-size:12px
}