html {
    /* height: 100%; -- only here for large screens */
    /*background-image: linear-gradient(#fe5e55, #FA4083);*/
    background-image: linear-gradient(#fe5e55, #fa4083 );
}

.container {
    width: 1024px;
    /* background-color: forestgreen; */
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
}

body {
    background-color: #fe5e55;
    /* background-image: linear-gradient(#fe5e55, #FA4083); */
    background-image: url(images/image-lion-background.png);
    background-position: top center;
    background-repeat: no-repeat;
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 1.125rem;
}

header {
    /* background-color: green; */
    /* min-height: 150px; */
    display:  flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: thin solid lightgrey;
}

a {
    color: white;
    text-decoration: none;
}

.logobox {
    min-height: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.navbox {
    /* min-height: 100px; */
    text-align: right;
    padding-top: 30px;
    padding-bottom: 30px;
}

main {
    /* background-color: greenyellow; */
    min-height: 300px;
    display: flex;
    align-items: center;
}

.main2 {
    min-height: 300px;
    padding-top: 50px;
}

.cards {
    display: flex;
    justify-content: space-between;
    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 {
    /* background-color: royalblue; */
    flex: 2;
    padding-right: 100px;
}

.herobox2 {
    /* background-color: skyblue; */
    flex: 1;
}

h1 {
    font-size: 3.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
}

p {
    line-height: 1.75em;
    margin-bottom: 0.5rem;
}

.cards p {
    font-size: 0.85rem;
    line-height: 1.2rem;
    /* margin: 10px 30px 20px 30px; - pre border-box */
    margin-top: 10px;
}

i {
    font-size: 100px;
}

.fa-motorcycle {
    /* color:  blue; */
    padding-top: 30px;
}

.fa-cog {
    padding-top: 30px;
}

.fa-phone {
    padding-top: 30px;
}

.mybutton {
    background-color: white;
    color: #FA4083;
    font-family: 'Playfair Display', serif;
    padding: 11px 25px;
    border-radius: 2px;
}

.mybutton:hover {
    background-color: yellowgreen;
    transition-duration: 1s;
}

.mynavbutton {
    color:  white;
    border:  thin solid white;
    font-family: 'Playfair Display', serif;
    padding: 11px 25px;
    border-radius: 2px;
    display: inline-block;
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    padding-top: 15px;
    text-align: center;
}

.mynavbutton:hover .dropdown {
    display: block;
}

.dropdown .mynavbutton {
    width: 140px;
}

a.mybutton {
    display: inline-block;
    margin-top: 20px;
}

nav a.mybutton {
    margin-left: 30px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 100px;
}

.testibox {
    width: 47%;
    padding: 50px;
    border:  thin solid white;
    box-sizing: border-box;
    margin-top: 50px;
}

/* .testibox :last-child {
    font-size: .8rem;
} 
-- simple way of finding the testimonial author name
*/

.testibox p:last-of-type {
    font-size: .8rem;
    padding-left: 30px;
}

.inputwrapper {
    margin-bottom: 20px;
}

input[type=text], input[type=email], textarea {
    padding: 12px 20px;
    width:  100%;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.newline {
    display: block;
    margin-bottom: 10px;
}

.margin-right-a {
    margin-right: 20px;
}

input[type=radio] {
    margin-right: 10px;
}

form {
    margin: 40px 0px;
}