body {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing:border-box; 
}
body{
    font-family: 'Poppins', sans-serif;;
}

.container{
    /*max-width: 1300px;*/
    width: 95%;
    padding-right:10px;
    padding-left: 10px;
    padding-bottom:0px;
    margin: auto;
    display: flex;
    flex-direction: column;
    

}

.navbar{
    display: flex; /*A flex container expands items to fill available free space or shrinks them to prevent overflow. Most importantly, the flexbox layout is direction-agnostic as opposed to the regular layouts (block which is vertically-based and inline which is horizontally-based).*/


}



.ham{
    display: none;
    
}

.nav{
    display: inline-block; /*Let all the flexible items be the same length, regardless of its content:*/
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    /*height:50px;*/

}
.nav ul{
    /*display: inline-block; Compared to display: inline , the major difference is that display: inline-block allows to set a width and height on the element. Also, with display: inline-block , the top and bottom margins/paddings are respected, but with display: inline they are not.*/
    list-style-type: none;
    
}

.nav ul li{
    display:inline-block; /*Compared to display: inline, the major difference is that display: inline-block allows to set a width and height on the element.*/
    margin:10px;
    background-color:white;
}

.nav ul li a{
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color:#008e40;
    background-color: white;
    
}

.banner{
    height: 100%;
    width: 100%;
    
}

.overlay{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
}
.in-banner{
    margin-left: 5%;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    width:90%;
    background-color:rgba(255,214,214,.5) ;
    border-width: thick;
    border-color: red;
    border-radius: 20px;
}

.in-banner p{
    margin: 10px 0;
    color:black;
}

.in-banner h2{
    color: black;
}
.row{
    display:flex;
    align-items: center;
    flex-wrap: wrap; /*Specifies that the flexible items will wrap if necessary*/
    justify-content: space-between; /*Items will have space before, between, and after them*/
    margin-left: 30px;
    margin-top: 50px;
    margin-right: 30px;
    border-width: 2px;

}

.rowA{
    
    display:flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap; /*Specifies that the flexible items will wrap if necessary*/
    justify-content: space-between; /*Items will have space before, between, and after them*/
    margin-left: 1%;
    margin-top: 25px;
    margin-right: 1%;
    border-style: solid;
    border-color: #008e40;
    border-width: 2px;
    background-image: url(./images/honeycombbg2.jpg);
}

.rowT{

    width: 95%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    position: relative;
    text-align:center;

}

.col-1{
    width: 45%;
    justify-content:center;
    align-items: center;
    text-align: center;
    
}

.col-2{
    flex-basis: 50%;  /*takes up 50% of the row*/
    padding: 0px;
    text-align: center;

    
}
.col-2 img{
    /*max-width: 100%;*/
    padding: 0px 0;
}
.col-2 h1{
    font-size: 40px;
    line-height: 50px;
    color:#008e40;
    
}
.btn{
    display: inline-block;
    background: #ff523b;
    text-decoration: none;
    color:#fff;
    padding:10px;
    border-radius: 10px;
    transition: background 0.5s;
    
}
.btn:hover{
    background: #563434;
}


.mainback .row{
    margin-top: 10px;
}

.categories{
    margin: 60px 0;
    align-content: flex-start;
}

.categoriesvalues{
    margin: 10px 0;
    vertical-align: top;
}

.small-container{
    /*max-width: 1080px;*/
    margin: auto;
}
.col-3{
    flex-basis: 24%;
    
}


.col-4{
    flex-basis: 25%;
    margin-bottom: 50px;
    transition: transform 0.5s;
    
}
.col-4:hover{
    transform: translateY(-10px);
}

.checked {
    color: #ff523b;
    }
.title{
    text-align: center;
    color:#555;
    position: relative;
    line-height: 60px; /* to create a gap between the botton line and title*/
    margin-bottom: 10px;
}
.title::after{
    content: '';
    background: #ff523b;
    width:80px;
    height:5px;
    border-radius: 5px;
    position: absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
}
h4{
    font-weight: normal;
    color: #555;
    font-size: 14px;
}
h5{
    font-size: 12px;
}
.small1{
    color: #555;

}
.col-3 p{
    font-weight:500;
    font-size: 10px;
}
.col-3 img{
    align-items: center;
}
.testimonials .col-3{
    margin: 10px;
    text-align: center;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
    transition: transform 0.5s;
    cursor: pointer;
   
}
.testimonials .col-3:hover{
    transform: translateY(-10px);
    
}


/* ----------footer ------- */

.footer{
    background: black;
    color:#8a8a8a;

}

.footer-col-1{
    flex-basis: 100%;
}
.footer-col-1 p{
    font-size: 10px;
}

.footer-col-2{
    flex-basis: 25%;
    text-align: center;
    margin-bottom: 20px;
}

.footer-col-2 p{
    font-size: 10px;
    text-align: center;
}

.footer-col-3{
    flex-basis: 25%;
    font-size: 10px;
    text-align: center;
}


.footer-col-3 h3{
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.footer-col-4{
    flex-basis: 25%;
    font-size: 10px;
    text-align: center;
}
.footer-col-4 h3{
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.footer-col-1 img{
    height: 50px
}
.social{
    display:flex;
    text-align: center;
}
.social .s1{
    flex-basis: 45%;
    text-align: right;
}
.social .s2{
    flex-basis: 55%;
    text-align: left;
    vertical-align: middle;
 
}


.testimonials {
    
    text-align: center;
    box-shadow: 0px 0px 20px 0px rgba(0,0,5,0.1);
    transition: transform 0.5s;
    cursor: pointer;
    
}
.testimonials:hover{
    transform: translateY(-10px);
    
}

li { list-style: none;}
    

.card{
    display: flex;
    /*background-color:rgba(255,214,214,.5) ;*/
    background-color:white;
    justify-content: space-around;
    border-radius: 20px;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}
.img-card img{
    width: 100%;
    margin-top: 5px;
    border-radius: 10px;
    justify-content: space-around;

}
.card-desc{
    padding-top: 10px;
    background-color: #fcfaf5;
        
}
.card-desc h2,p,button{
    padding: 10px;
}

.card-desc button{
    margin-left: 10px;
}

.imgcardbottom{
    margin-bottom: 20px;
}
.valueswidth
{
    width: 95%;
    text-align: center;
    justify-content: center;
}
.missionwidth
{
    width: 95%;
}




.row-services{
    width: 95%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    position: relative;
    text-align:center;
}
.card1{
    width:30%;
    background-color: #fcfaf5;
    margin: 10px;
    border-radius: 20px;
    justify-content:center;
    border-style: solid;
    border-color: black;
    border-width: 1px;
}
.img-card1 img{
    width: 100%;
    height: 300px;
    margin-left: 0px;
    margin-top: 0px;
    border-radius: 20px;
    
}
.card-desc1{
    padding-top: 20px;
    border-color: black;
    border-width: 1px;
        
}

.card2{
    width:40%;
    background-color: #fcfaf5;
    margin: 10px;
    border-radius: 20px;
    justify-content:center;
    border-style: solid;
    border-color: black;
    border-width: 1px;
}


.card3{
    
    background-color:#fcfaf5; /*rgba(1,41,0,.2);*/
    margin: 10px;
    border-radius: 20px;
    justify-content:center;
    border-color: black;
    border-style: solid;
    border-width: 1px;
}

.lineheight{
    
    line-height: 2;
}

.footer{
    background: black;
    color:#8a8a8a;

}

.footer-col-1{
    flex-basis: 100%;
}
.footer-col-1 p{
    font-size: 15px;
    text-align: center;
}

@media (max-width:1024px){

    .col-2{
        flex-basis: 100%;
    }

    .container{
        position: relative;
        padding-top:20px;
    }
    .nav
    {
        width: 100%;
        height: 0px;
        overflow: hidden;
        justify-content:flex-end;
        
    }
    .nav ul{
        text-align: left;
        
    }

    .nav ul li{
        display: block;
        text-align: left;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 5px;
        width: 90%;
        /*background-color: #008e40;
        color: #fff;*/
        
    }

    .nav ul li a{
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        display: inline-block;
        width: 100%;
        font-size: 16px;
        padding-left: 2%;
    }

    .nav ul li a:hover{
        color:white;
        background-color:  #008e40;
        border-radius: 7px;
    }

    .row{
        justify-content: space-around;
    }

    .rowA{
        width: 95%;
        /*margin-top: 150px;*/
    }


    
    .col-3{
        flex-basis: 80%;
        justify-content: space-around;
        
        
        
    }
    
    .imgcardbottom{
        margin-bottom: 20px;
    }

    .col-1{
        width: 90%;
      
    }
    .valueswidth
    {
    width: 90%; 
    }

    .carousel-item img{
        height: 200px;
        width: 100%;
    }
  
    .logoham{
       
        display: flex;
        width: 95%;
        justify-content: space-between;
        align-items: center;
    }

    .logoham img{
        max-width: 80%;
        max-height: 80%;
    }
    
    .ham{
        
        display:flex;
         
    }
    .navbar{
        justify-content: space-between;
        /*padding: 0px;*/
        
    }
    .card1{
        width:90%;
    }

    .card2{
        width:90%;
        background-color: #fcfaf5;
        margin: 10px;
        border-radius: 20px;
        justify-content:center;
        border-color: black;
        border-width: 2px;
    }
}

