@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}

header .top-bar{
    background: #28a000;
}
header .top-bar p{
    text-align: center;
    color: #fff;
    padding: 10px;
}
header .middle-bar{
    background: #fff;
    padding: 20px 0;
}
header .middle-bar .logo img{
    width: 300px;
    margin-top: 15px;
}
header .middle-bar .content{
    text-align: right;
    width: 100%;
}
header .middle-bar .content .info{
    display: flex;
    justify-content: end;
    text-align: center;
}
header .middle-bar .content p{
    font-size: 18px;
}
header .middle-bar .content a{
    display: inline-block;
    background: #28a000;
    padding: 10px 18px;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    margin: 10px 0;
    transition: .3s;
}
header .middle-bar .content a:hover{
    background: #000;
}
header .navigation{
    background: #424242;
}
header .navigation ul{
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
header .navigation ul li{
    display: inline-block;
}
header .navigation ul li a{
    display: inline-block;
    padding: 20px;
    font-size: 18px;
    color: #ffff;
}
header .navigation ul li a:hover{
    color: #28a000;
}
.hero-section{
    height: 600px;
    width: 100%;
    background: url('../images/hero-bg.webp');
    background-size: cover;
}
.hero-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
}
.hero-section .caption{
    max-width: 650px;
    height: 600px;
    display: flex;
    align-items: center;
}
.hero-section .caption h2{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3em;
}
.hero-section .caption p{
    color: #fff;
    margin-top: 20px;
    line-height: 1.5em;
}
.hero-section .caption a{
    display: inline-block;
    font-size: 20px;
    padding: 20px 40px;
    color: #fff;
    background: #28a000;
    border-radius: 30px;
    margin-top: 20px;
    transition: .3s;
}
.hero-section .caption a:hover{
    background: #000;
}
.about-section {
    margin-top: 100px;
    margin-bottom: 80px;
}
.about-section .image img{
    width: 100%;
}
.about-section .content{
    padding-left: 30px;
}
.about-section .content h2{
    font-size: 35px;
}
.about-section .content p{
    margin-top: 20px;
    line-height: 1.5em;
}
.heading h2{
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}
.services-section{
    margin-top: 100px;
    padding: 60px;
    background: #f2f2f2;
}
.services-section .card{
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    margin: 10px;
    text-align: center;
}
.services-section .image img{
    width: 150px;
    margin-bottom: 20px;
}
.services-section .details h2{
    font-size: 25px;
    margin-bottom: 10px;
}
.services-section .details p{
    line-height: 1.5em;
}
.process-section {
    margin-top: 100px;
    margin-bottom: 100px;
}
.process-section .image img{
    width: 100%;
}
.process-section .content{
    padding-right: 30px;
}
.process-section .content h2{
    font-size: 35px;
}
.process-section .content p{
    margin-top: 20px;
    line-height: 1.5em;
}



footer{
    background: #202020;
}
footer .footer-content{
    padding: 40px 0;
    text-align: center;
}
footer .footer-content .menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
footer .footer-content .menu ul li{
    display: inline-block;
}
footer .footer-content .menu ul li a{
    display: inline-block;
    color: #c5c5c5;
    font-size: 18px;
    margin: 10px;
}
footer .footer-content .menu ul li a:hover{
    text-decoration: underline;
}
footer .footer-content .social-media{
    margin-top: 20px;
}
footer .footer-content .social-media a{
    font-size: 30px;
    color: #c5c5c5;
    margin: 10px 15px;
}
footer .footer-content .social-media a:hover{
    color: #28a000;
}
footer .copyright-content{
    padding: 20px;
    border-top: 1px solid #333333;
}
footer .copyright-content p{
    color: #c5c5c5;
    text-align: center;
}


.pt-2{
    padding-top: 20px;
}
.pt-5{
    padding-top: 50px;
}
.toggle-bar{
    display: none;
}

@media screen and (max-width: 767px){
    .pt-2{
        padding-top: 0;
    }
    .pt-5{
        padding-top: 0;
    }
    .row{
        display: block;
    }
    .col-lg-6{
        width: 100%;
    }
    header .middle-bar{
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }
    header .middle-bar .row{
        display: flex;
    }
    
    header .middle-bar .logo img{
        width: 180px;
        margin-top: 0;
    }
    header .middle-bar .content{
        display: none;
    }
    header .middle-bar .toggle-bar{
        text-align: right;
        display: block;
    }
    header .middle-bar .toggle-bar .call-btn{
        display: inline-block;
        padding: 10px;
        margin-right: 10px;
    }
    header .middle-bar .toggle-bar .call-btn{
        background: #28a000;
        border-radius: 50%;
    }
    header .middle-bar .toggle-bar .call-btn i{
        color: #fff;
        font-size: 20px;
    }
    header .middle-bar .toggle-bar .bars{
        display: inline-block;
        padding: 10px;
    }
    header .middle-bar .toggle-bar i{
        font-size: 25px;
    }

    header .navigation{
        display: none;
        position: absolute;
        width: 100%;
    }
    header .navigation ul li{
        display: block;
    }
    header .navigation ul li a{
        display: block;
        width: 100%;
        border-bottom: 1px solid #535353;
        box-sizing: border-box;
    }
    .navigation-bar-show{
        display: block;
    }

    p{
        font-size: 15px;
    }
    .hero-section .caption{
        padding: 15px;
        box-sizing: border-box;
    }
    .about-section{
        margin-top: 50px;
        padding: 15px;
        margin-bottom: 50px;
    }
    .about-section .content{
        padding-left: 0;
        margin-top: 30px;
    }
    .hero-section .caption h2{
        font-size: 25px;
    }
    .hero-section .caption p{
        font-size: 15px;
    }
    .hero-section .caption a{
        font-size: 18px;
        padding: 15px 30px;
    }
    .about-section .content h2{
        font-size: 30px;
    }
    .services-section{
        margin-top: 0;
        padding: 50px 15px;
    }
    .heading h2{
        font-size: 30px;
    }
    .services-section .image img{
        width: 120px;
    }
    .process-section{
        margin-top: 50px;
        padding: 15px;
        box-sizing: border-box;
    }
    .process-section .content h2{
        font-size: 30px;
    }
    .process-section .image img{
        margin-top: 20px;
    }
    footer .footer-content .social-media a{
        font-size: 25px;
    }
}