@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Roboto", serif;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: "Roboto Slab", serif;
}

.overview{
    border-radius: 30px;
    box-shadow: 0px 0px 10px #00000027;
    padding: 30px;
    background: #ffffff;
}

.overview .green-box{
    background: #438f08;
    padding: 35px 0px;
    color: #ffffff;
}

.overview .white-box{
    background: #ffffff;
    padding: 35px 0px;
}

.overview .green-box,
.overview .white-box{
    text-align: center;
}

.overview .green-box h2,
.overview .white-box h2{
    margin-bottom: 0px;
    font-size: 46px;
}

.section-01{
    position: relative;
    z-index: 0;
    padding: 45px 0px;
}

.section-01::before{
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 60% 0, 100% 100%, 40% 100%);
    background: #438f08;
    width: 50%;
    height: 100%;
    z-index: -1;
    top: 0px;
    right: 25%;
}

.section-02{
    padding: 30px 0px;
    background-color: #438f08;
}

.btn-enquiry{
    background: #111111;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    padding: 6px 20px;
    margin-top: 15px;
    border-radius: 3px;
    font-size: 14px;
}

.section-03{
    position: relative;
    z-index: 0;
    padding: 45px 0px;
}

.section-03::before{
    content: "";
    position: absolute;
    clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    background: #f1f1f1;
    width: 50%;
    height: 100%;
    z-index: -1;
    top: 0px;
    left: 25%;
}

.bg-grey{
    background: #f6f6f6;
    padding: 5px 0px;
}

.nav-link{
    color: #111111;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #438f08;
}

.nav-link:hover{
    color: #438f08;
}

footer{
    padding: 45px 0px;
    background: url(../img/footer-bg.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 0;
}

footer::before{
    content: '';
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

footer .info{
    color: #ffffff;
}

footer .info h4{
    color: #438f08;
}

footer .info div{
    margin-bottom: 8px;
}

.copy-right{
    background: #438f08;
    color: #ffffff;
    padding: 10px 0px;
    text-align: center;
}

.enquiry-form-box form .ff-section .ff-secfields .ff-item{
    padding: 0px;
}

.enquiry-form-box form .ff-section .ff-secfields .ff-item label{
    font-size: 14px;
    margin-top: 5px;
}

.enquiry-form-box form .ff-section .ff-button-bar a{
    position: relative;
}

.enquiry-form-box form .ff-section .ff-button-bar a::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background: #ffffff;
}

.enquiry-form-box form .ff-section .ff-button-bar button#ff-submit-root{
    width: 100%;
    background: #438f08;
    border-color: #438f08;
}

.enquiry-form-box form .ff-section .ff-button-bar button#ff-submit-root span{
    font-size: 16px;
}

.enquiry-form-box form .ff-section .ff-button-bar button#ff-submit-root:hover{
    background: #000000;
    border-color: #000000;
}


@media only screen and (max-width: 600px) {
    .enquiry-form-box form .ff-section .ff-button-bar a::before {
        height: 90px;
    }
    .section-01::before {
        width: 80%;
        right: 10%;
    }
  }