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

body {
    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;
}

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

.container {
    width: 80%;
    min-height: 300px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-name {
    min-height: 300px;
    padding-top: 50px;
}

h1 {
    font-size: 3.25rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}


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

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

.mybutton {
    background-color: white;
    color:#FA4083;
    font-family: "playfair display";
    padding: 11px 25px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 22px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}

.mybutton:hover {
    background-color: lime;
}


/* Navigation */
.navbutton  {
    color:white;
    border-style: solid;
    border-color:white;
    border-width: 1px;
    margin-left: 10px;
    padding: 11px 25px;
    font-family: "playfair display";
    display: inline-block;
}

.navbutton:hover  {
    background-color: lime;
  
}

.dropdown {
    display: none;
    position: absolute;
    padding-top: 10px;
    text-align: center;
    width: 250px;
    margin-left: -35px;
}

.navbutton:hover .dropdown {
    display: block; 
    width:97px;
}

.dropdown .navbutton  {
    width:97px;  
}


/* Home Page */
.home-sec1 {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

.home-sec1_text {
    width: 60%;
}

.home-sec1_image {
    width: 100%;
    max-width: 30%;
    height: auto;
  }

.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;
    width: 30%;
    min-height: 250px;
}

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

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

.cards p {
    font-size: 0.85rem;
    line-height: 1.2rem;
    margin-top: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.171);
}

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

.cards i:hover {
    background-color: lime;
}

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

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

.testimonial-card p:last-of-type {
    font-size: .8rem;
    padding-left: 30px;
}


/* Contact Us */
.inputwrapper {
    margin-bottom: 20px;
}

input[type=text], input[type=email] , textarea
{
    padding: 12px 20px;
    width: 40%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
}

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

.margin-right {
    margin-right: 20px;
}

input[type=radio] {
    margin-right: 10px;
}

form {
    margin: 40px 0px;
}

/* FOOTER */

footer {
    min-height: 120px;
    background-color:black;
    text-align: center; 
    padding-bottom: 5px;
}

.footer_cards {
    background-color: rgb(73, 70, 70);
    color: white;
    display:flex;
    padding-left: 100px;
    padding-right: 100px;
    padding-top:10px;
    justify-content: space-between;
    text-align: left;   
}

.footer_cards a{
    color: white;
}

.footer_cards p{
    color: white;
}

.footer_cards i{
    color:white;
}

.footer1, .footer2, .footer3, .footer4 {
    padding: 5px 30px 20px 30px;
    box-sizing: border-box;
}

.footer p:last-of-type{
    margin-top: -15px;
}

.footer_cards h3::first-letter {
    color:rgb(95, 206, 221);
    font-size: 1.8rem;
}

.footer1 {
    padding-top: 45px;
}

.margin_top{
    margin-top: 20px;
}

.margin_bottom {
    margin-bottom: 20px;
}

.margin-right {
    margin-right: 20px;
}

.footer_copyright p {
    color: white;
}

.footer_cards a{
    color: rgb(216, 216, 216);
}

.footer_link:hover {
    text-decoration: underline;
}

.footer_cards p{
    color: rgb(216, 216, 216);
}

.footer_cards i{
    color: rgb(216, 216, 216);
}


/* BLOG CSS */
  
  /* Header/Blog Title */
  .blog-header {
    padding: 10px;
    font-size: 40px;
    text-align: center;
    /* background: white; */
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 70%;
  }
  
  /* Right column */
  .rightcolumn {
    float: right;
    width: 20%;
    padding-left: 20px;
  }
  
  /* Fake image */
  .fakeimg {
    background-color: #aaa;
    background-image: url(../images/image-background-card2.jpg);
    width: 100%;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: top;
    background-size:cover;
  }

  .blog-image-frame {
    display: flex;
    justify-content: space-around;
    background-color: #aaa;
    width: 700px;
    height: 300px;
  }
  
  .card img {
    flex-direction: row;
    max-height: 260px;  
    max-width: 660px; 
    padding: 20px;
    background-repeat: no-repeat;
    background-size:auto;
  }

  /* Add a card effect for articles */
  .card {
    margin-top: 30px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 1025px) {
      header {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer_cards {
        padding-left: 30px;
        padding-right: 30px; 
    }

    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;
      }

  }

   /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
   @media screen and (max-width: 800px) {
 
}