* {
  box-sizing: border-box;
}
html {
  background-image: linear-gradient(#fc5e55, #fa4083);
}

body {
  background-image: url(images/lion_reversed.png);
  background-position: top center;
  background-repeat: no-repeat;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: white;
}

.container {
  width: 1024px;
  min-height: 300px;
  text-align: center;
  margin: auto;
}
header {
  display: flex;
  padding-top: 15px;
  padding-bottom: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(228, 228, 228);
}

a {
  text-decoration: none;
  color: white;
}

.navButton {
  display: inline-block;
  position: relative;
  margin-left: 2px;
  border: 1px solid white;
  padding: 5px 20px;
  font-family: 'Playfair Display', serif;
}
.dropdown-box {
  display: none;
  text-align: center;
}
.navButton:hover .dropdown-box {
  display: block;
}
.navButton .dropdown-box {
  padding-top: 5px;
  position: absolute;
  z-index: 99;
  margin-left: -45px;
  width: 200px;
}

.navButton .dropdown-box .navButton {
  width: 150px;
  padding: 3px;
  background-color: white;
  border-bottom: 1px solid #fa4083;
}
.dropdown-box .navButton a {
  color: #fa4083;
  font-size: 0.9rem;
}

.dropdown-box .navButton:hover {
  background-color: #fed85c;
  transition-duration: 1s;
}

main {
  min-height: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-contact {
  height: 250px;
  padding: 25px 0;
  text-align: left;
}

.main-contact h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: bold;
  margin: 20px 0;
}

.cards {
  display: flex;
  justify-content: space-between;
}
.cards a {
  color: white;
  text-decoration: none;
}
.card1 {
  min-height: 250px;
  width: 30%;
  background-image: url(images/image-background-card1.jpg);
  background-size: cover;
  background-position: bottom;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.card2 {
  min-height: 250px;
  width: 30%;
  background-image: url(images/image-background-card2.jpg);
  background-size: cover;
  background-position: bottom;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.card3 {
  min-height: 250px;
  width: 30%;
  background-image: url(images/image-background-card3.jpg);
  background-size: cover;
  background-position: bottom;
  text-align: center;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
}
.hero1 {
  flex: 2;
  text-align: left;
  margin-right: 50px;
}
.hero2 {
  flex: 1;
  margin-left: 10px;
}

.hero2 img {
  border-radius: 10px;
}
main h1 {
  font-size: 3.25rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}
p {
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}

.cards h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  margin-top: 20px;
}
.cards p {
  font-size: 0.85rem;
  line-height: 1.2rem;
  margin: 10px 30px 20px 30px;
}

i {
  font-size: 100px;
  padding-top: 30px;
}

.btnStyle {
  background-color: white;
  color: #fa4083;
  padding: 11px 25px;
  font-family: 'Playfair Display', serif;
  margin-top: 10px;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.btnStyle:hover {
  background-color: #fed85c;
  transition-duration: 1s;
}
.testimonial {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
.testBox {
  width: 47%;
  padding: 50px;
  border: 1px solid white;
  margin-top: 50px;
  text-align: left;
}

.testBox :first-child {
  font-size: 1.1rem;
}
.testBox :last-child {
  font-size: 0.9rem;
  margin-left: 20px;
}
