@import url('https://fonts.googleapis.com/css2?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');

body{
    font-family: "Poppins", sans-serif;
    color: #111;
}

span, strong, b{
    color: #16a34a;
    font-weight: 600;
}

h1, h2{
    font-weight: 700;
}

h3, h4, h5, h6{
    font-weight: 500;
}

.nav-link{
    color: #111;
    text-transform: uppercase;
    font-weight: 500;
}

.theme-button{
    background: #16a34a;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    color: #ffffff;
    text-decoration: none;
    padding: 0px 30px;
    border-radius: 6px;
}

.theme-button:hover{
    background: #16a34a;
    color: #ffffff;
}

.theme-button-white{
    background: #ffffff;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    color: #16a34a;
    text-decoration: none;
    padding: 0px 30px;
    border-radius: 6px;
}

.theme-button-white:hover{
    background: #ffffff;
    color: #16a34a;
}

.section-01 {
    background: url(../images/hero-img.jpg) no-repeat center center;
    background-size: cover;
    height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.section-01::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
}

.section-01 h1{
    font-size: 3.4vw;
    margin-bottom: 30px;
}

.extra-info {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: auto auto auto auto auto auto;
    text-align: center;
    align-items: center;
    margin-top: 45px;
}

form label{
    font-size: 14px;
}

.icon-box{
    background: #e7f6ed;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 15px;
    margin: 10px auto;
}

.challenges-list{
    list-style-image: url('../images/cross.png');
}

.challenges-list li{
    margin-top: 15px;
}

.challenges-list strong{
    color: #dc2626;
}


.solve-list{
    list-style-image: url('../images/check-mark.png');
}

.solve-list li{
    margin-top: 15px;
}

.maps{
    list-style: none;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.maps li{
    width: 12.5%;
    margin-top: 20px;
}

footer{
    background: url(../images/footer-bg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

footer::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}

footer ul{
    list-style: none;
    padding: 0px;
}

footer ul li{
    margin-bottom: 10px;
}

footer ul li a{
    text-decoration: none;
    color: #111;
}

.copyright{
    background: #111;
    color: #fff;
    padding: 8px 0px;
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    .section-01 {
        height: 100%;
    }
    .extra-info {
        grid-template-columns: auto;
        margin-bottom: 30px;
    }
    .maps li{
        width: 25%;
    }
}