html{
    background-image: linear-gradient(#FC5E55, #f8afca);
}
body{
    background-image: url(images/image-lion-background.png);
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1.125 rem;
    /* background-color: #FC5E55; */
}
a{
    color: white;
    text-decoration: none;
}
.container{
	width: 1024px;
	/* background-color: rgb(18, 60,12);  */
	min-height: 300px;

    /* To center */
    margin-left: auto;
    margin-right: auto;
    /* ------------------- */
}    
header{
    /* background-color:rgb(41,96,36); */
    /* min-height: 100px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid white;
}
main{
    /* background-color: rgb(49, 139,41);; */
    min-height: 300px;
    display: flex;
    align-items: center;
}
.main2{
    min-height: 300px;
    padding-top: 50px;
}

.cards{
    /* background-color: rgb(47, 198,33); */
    /* min-height: 300px; */
    display: flex;
    justify-content: space-between;
    text-align: center;
   
}


.card1{
    /* background-color: rgb(227,58,137); */
    background-image: url(images/image-background-card1.jpg);  
      background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
    border-radius: 48px;
    
}

.card2{
    /* background-color: rgb(228,124,173); */
    background-image: url(images/image-background-card2.jpg);
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
    box-shadow: 10px 10px 10px black;
}
.card3{
    /* background-color: rgb(125,22,70); */
    background-image: url(images/image-background-card3.jpg);
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
}
.card1, .card2, .card3{
    padding: 30px 30px 20px 30px;
    box-sizing:border-box;
}

.herobox1{
    /* background-color: cornflowerblue; */
    flex:2;
    padding-right: 100px;
    
}


.herobox2{
    /* background-color: mintcream; */
    flex:1; 
}
h1{
    font-size: 3.25rem;
    margin-bottom: .75rem;
    text-shadow: 0px 2px 2px black
}
h2{
    font-size: 2rem;
    margin-top: 20px;
}
p{
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}
.cards p {
font-size: 0.85rem;
line-height: 1.25rem;
/* margin: 10px 30px 20px 30px; */
margin-top:10px;
}
.cards i{
    font-size: 100px ;
    padding-top: 30px;
    

}

.mybutton{
    background-color:white ;
    color: #FA4083;
    padding: 11px 25px;
    display:inline-block;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 5px 5px 10px black;
    /* display: block; */
}
.mybutton:hover{
    background-color: blue;
    transition-duration: 1s;
}
.herobox2 img{
    border-radius: 12px;
}
.myHunter{
    height: 300px;
    background-color: blue;
    margin-top: 20px;;
}

nav a.mybutton{
    margin-left: 15px;
}


/* menu buttons */
.navbutton{
    /* border-style: solid; */
    /* border-width: 2px; */
    border: 2px solid white;
    padding:11px 25px;
    margin-right: 20px;
    border-radius: 12px;
    margin-top: 5px;
  display: inline-block;
  position: relative;

}
.testimonials{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;

}


.tbox{
    width: 47%;
    padding: 50px;
    border: 1px solid white;
    box-sizing: border-box;
}
/* .tbox :last-child{
    font-size: ;
} */

.tbox p:last-of-type{
    font-size: 0.8rem;
    padding:30px ;

}
.dropdown{
    display: none;
    position: absolute;
    
    z-index: 99;
    padding-top: 20px;
    text-align: center;
}

.navbutton:hover .dropdown{  
    display: block;
}
.dropdown .navbutton{
    width: 100px;
    background-color: white;
}

.dropdown .navbutton a{
   color:#FA4083;
}

.dropdown .navbutton:hover
{
    background-color: green;
}



