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


body{
    background-image: url("../images/lb1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.main-container .banner-row{
    display: flex;
    justify-content: space-evenly;
}

.first-column{
    /* width: 55%; */
    width: 70%;
    display: flex;
    padding-right: 20px;
    flex-direction: column;
    align-items: end;
}

.first-column .content{
    width: 100%;
  max-width: 70%;
    margin-top: 3rem;
    /* padding: 1rem 1rem 2rem 11rem; */
    padding: 2rem 1rem 2rem 11rem;
} 

.first-column .content h3{
    color: #ffff;
    font-weight: bold;
} 

.first-column .content p{
    color: #ffff;
    font-size: 10px;
}

.first-column .content ul{
    color: #ffff;
}
.first-column .content ul li{
    font-size: 14px;
}

.first-column .list{
    width: 55%;
    margin-top: 4rem;
    margin-left:5rem;
}

.first-column .list-row{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background-color: rgba(0,0,0,0.1);
    box-shadow: 4px 4px 4px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
}

.first-column .list-row .list-column{
    width: 140px;
    height: 55px;
    /* background-color: #67D869; */
    background-color: #46a848;
    border-radius: 10px;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.first-column .list-row .list-column p{
    color: #ffff;
    text-transform: capitalize;
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    padding: 0.6rem 0rem;
}

.first-column .list-row .list-column:hover{
    background-color: #1a65b0;
}

.first-column .list-row .list-column:hover p{
    color: #ffff;
}

.main-container .images{
    width: 350px;
    height: 250px;
}

.main-container .images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.second-column{
    width:30%;
    margin-top: 1rem;
    padding-bottom: 1.5rem;
}


.second-column h2{
    color: #ffff;
}

h2{
    margin-top: 2rem;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
form {
    display: inline-block;
    text-align: left;
    border-radius: 10px;
    border: 2px solid #46a848;
    padding: 20px;
    margin-top: 10px;
    background-color: rgb(255,255,255,0.9);
}
  
.form-group {
    margin-bottom: 15px;
}

input.checkbox{
    width:11px;
    height: 11px;
    margin-right: 3px;
}

  
label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: gray;
}
  
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid rgb(208, 206, 206) ;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

input[type="text"]:focus{
    border: 1px solid #46a848  ;
}

.form-group p{
    color: gray;
    font-size: 12px;
}
  
button[type="submit"] {
    background-color: #46a848 ;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

/* MOBILE RESPONSIVE START*/
@media screen and (max-width: 480px){
    
    
    body{
        background-image: url("../images/mb5.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .main-container .banner-row{
        display: flex;
        flex-direction: column;
    }
    
    .first-column{
        width: 100%;
        order:2;
    }
    
    .first-column .content{
        width: 85%;
        margin-top: 2rem;
        padding:0rem 0rem 0rem 0rem;
    } 
    
    .first-column .list{
        width: 90%;
        margin-top: 3rem;
        margin-left:0rem;
        margin-bottom: 2rem;
    }
    .second-column h2{
        color: #ffff;
    }
    
    .second-column{
        margin-top: 15rem;
        width:100%;
        order:1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
}
/* MOBILE RESPONSIVE END*/

/* LARGER MOBILE AND SMALL TABLETS RESPONSIVE START */
@media screen and (min-width:481px) and (max-width: 768px){
    
    body{
        background-image: url("../images/mb5.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .main-container .banner-row{
        display: flex;
        flex-direction: column;
    }
    
    .first-column{
        width: 100%;
        order:2;
    }

    .first-column .content{
        width: 70%;
        margin-top: 2rem;
        padding:0rem 0rem 0rem 0rem;
    } 
    
    .first-column .list{
        width: 90%;
        margin-top: 3rem;
        margin-left:0rem;
        margin-bottom: 2rem;
    }
    .second-column h2{
        color: #ffff;
    }
    
    .second-column{
        margin-top: 14rem;
        width:100%;
        order:1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* LARGER MOBILE AND SMALL TABLETS RESPONSIVE END */


/* TABLETS RESPONSIVE START */
@media screen and (min-width:769px) and (max-width: 1024px){

    body{
        background-image: url("../images/tlb.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .main-container .banner-row{
        display: flex;
        flex-direction: column;
    }
    
    .first-column{
        width: 100%;
        order:2;
    }

    .first-column .content{
        width: 100%;
        margin-top: 2rem;
        padding:0rem 0rem 0rem 3rem;
    } 

    .first-column .list{
        width: 100%;
        margin-top: 2rem;
        margin-left:0rem;
    }

    .second-column{
        width:100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order:1;
        margin-left: 2rem;
    }
}

/* TABLETS RESPONSIVE END*/

/* DESKTOP AND LAPTOPS RESPONSIVE START */
@media screen and (min-width:1025px) and (max-width:1200px){

    nav{
        height: 20vh;
    }

    .first-column .content{
        width: 70%;
         margin-top: 3rem;
        padding:2rem 1rem 2rem 11rem;
    }

    .first-column .list{
        width: 90%;
        margin-top: 1rem;
        margin-left:0rem;
    }
}