/* Fonts From (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Gruppo&family=Open+Sans:wght@300;400;500;600&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fffbfb;
  margin: 0;
  padding: 0;
}

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


.navigationBar {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo i {
  margin-right: 0.5rem;
  color: #ff6b6b;

}

.logo h1 {
  font-family: 'Gruppo', sans-serif;
  font-size: 35px;
}

nav ul li {
  display: inline;
  margin: 0 2rem;
}


nav ul li:hover,
#active {
  color: #FF6B6B;
  border-bottom: 1px solid #ff6b6b4c;
}

.container-padding {
  padding: 8rem;
}


.center-contents {
  display: grid;
  place-items: center;
}

.topSection {
  background-color: #fff4f4;
  height: 60vh;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.topSection .content {
  width: 50%;
}

.topSection h1 {
  font-size: 60px;
  margin: 1rem 0;
}

.topSection h3 {
  line-height: 35px;
  font-weight: 300;
}

.coral {
  color: #FF6B6B;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.button {
  border: none;
  outline: none;
  padding: 1rem 2rem;
  background-color: #FF6B6B;
  border-radius: 5px;
  font-size: 15px;
  color: #f8f4ed;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}

.button:hover {
  background-color: #df5858;
}

.button#border-button {
  background-color: transparent;
  border: 2px solid #FF6B6B;
  color: #FF6B6B;

}

.button#border-button:hover {
  background-color: #f1c6c6b6;

}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


h1,
h2 {
  font-family: 'Gruppo', sans-serif;
  text-transform: capitalize;
  font-weight: 400;
}



.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .title {
  font-size: 40px;
  text-transform: capitalize;
  color: #FF6B6B;
  ;
}

p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}


footer {
  padding: 1rem;
  background-color: #FF6B6B;
  color: white;
  text-align: center;
}


/* styles for ipad, tables */
@media (max-width: 992px) {


  nav ul li {
    margin: 0 1rem;
  }

  .container-padding {
    padding: 3rem;
  }

  .topSection {
    height: 50vh;
    background-position: 70% center;
  }

  .topSection .content {
    width: 55%;
  }
}

/* styles for phones */
@media (max-width: 576px) {

  nav {
    flex-direction: column;
  }

  nav ul {
    padding-inline-start: 0;
  }

  nav ul li {
    display: inline-block;
    margin: 1rem 0.5rem;
  }

  .topSection {
    height: 60vh;
  }

  .topSection .content {
    width: 100%;
    text-align: center;
    background-color: #f1c6c6b6;
    padding: 0.5rem;
  }

  .topSection h1 {
    font-size: 40px;
  }

  .section-header .title {
    font-size: 28px;
    text-align: center;
  }

  p {
    font-size: 15px;
  }

}