html {
    background-image: linear-gradient(#FC5E55,#FA4083);
}

body {
    background-image: url(images/image-lion-background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-size: 1.125rem;
    
}

a {
    color: white;
    text-decoration: none;
}

.container {
    width: 70%;
    min-height: 300px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid lightgray;
}

main {
    /* min-height: 300px; */
    display: flex;
    align-items: center;
}


.cards {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.card1 {
    background-image: url(images/image-background-card1.jpg);
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
}

.card2 {
    background-image: url(images/image-background-card2.jpg);
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
}

.card3 {
    background-image: url(images/image-background-card3.jpg);
    background-size: cover;
    background-position: bottom;
    min-height: 250px;
    width: 30%;
}

.card1, .card2, .card3 {
    box-sizing: border-box;
    padding: 30px 30px 20px 30px;
}


.herobox1 {
     flex: 2;
     padding-right: 100px;
}

.herobox2 {
    flex: 1;
}

h1 {
    font-size: 3.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;

}

p {
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
    
}

.cards p {
    font-size: 0.85rem;
    line-height: 1.2rem;
}

.cards i {
    font-size: 100px;
}

.btn {
    padding: 11px 25px;
    background-color: white;
    color :#FC5E55;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 0px 2px 5px rgba(128, 128, 128, 0.642);
}
.btn:hover {
    background-color: rgb(154, 234, 208);
    transition-duration: 1s;
}

.navbtn {
    box-shadow: none;
    border: 1px solid white;
    color: white;
    padding: 11px 25px;
    font-family: 'Playfair Display', serif;
    border-radius: 2px;
    display: inline-block;
    position: relative;
}

.navbtn:hover {
    background-color: rgba(159, 152, 152, 0.365);

}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
   margin-bottom: 100px;
}

.tbox{
   width: 47%;
   padding: 50px;
   border: 1px solid white;
   box-sizing: border-box;
   margin-top: 50px;
   
}

.tbox :last-child {
    font-size: 0.8rem;
   
}

.dropdown {
    display: none;
    position: absolute;
    z-index: 99;
    padding-top: 20px;
    text-align: center;
    margin-left: -25px;

}

.navbtn:hover .dropdown {
    display: block;
}

.dropdown .navbtn:hover {
    color: rgba(130, 120, 120, 0.667);
    border: 1px solid rgb(123, 116, 116);
}

.dropdown .navbtn {
    width: 120px;
    background-color: white;
}

.dropdown .navbtn a {
    color: #FC5E55;
}


.inputwrapper {
    margin-bottom: 20px;
}

input[type=text], input[type=email], textarea {
   padding: 12px 20px;
   width: 100%;
   font-family: 'Playfair Display', serif;
   font-size: 0.85rem;
   box-sizing: border-box;
}
select {
    width: 15%;
    height: 25px;
    font-size: 0.9rem;
}

.newline {
    display: block;
    margin-bottom: 10px;
}
.margin-right {
    margin-right: 40px;
}

@media screen and (max-width:1000px){
    body {
        font-size: 0.9rem;
    }
    .container {
        width: 90%;
    }
    main {
        display: block;
        margin: 50px auto;
    }
    main .herobox1 {
        padding-right: 0px;
    }
    main .herobox2 {
        display: none;
    }
}

@media screen and (max-width:600px){
    body {
        font-size: 0.7rem;
    }
    .cards {
        display: block;
    }
    .card1, .card2, .card3 {
        width: 90%;
        margin: 20px auto;
    }
}