@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
  font-size: 16px;
}

img {
    width: 100%;
    height: 100%;
}

/* text  */

.quotation-marks {
  display: flex;
  font-weight: bold;
  flex-direction: row;
  font-size: 16px;
  color: #b0612d;
}
.open-quote {
  font-size: 4rem;
  color: #b0612d;
}
.close-quote {
  font-size: 4rem;
  color: #b0612d;
}

h1 {
    font-size: 3rem;
}

h1, h4 {
    text-align: center;
    color: #b0612d;
}

button {
    background-color: #b0612d;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.5s;
  }
  
  button:hover { 
    background-color: #ffffff;
    color: #b0612d;
    box-shadow: 0px 0px 5px #b0612d;
  }

/* LAYOUT STYLES  */

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  justify-items: center;
}
   
/* NAV  */

nav {
    width: 100%;
    height: 5vh;
    margin: 0 auto;
    padding: 0;
    background-color: #0d738b;
    text-align: center;
  }
  
  nav ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  nav ul li {
    display: inline-block;
    padding: 10px;
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
    font-family: "Helvetica Neue", sans-serif;
    color: #ffffff;
    position: relative;
  }
  
  nav ul li a{
    color: #ffffff;
    text-decoration: none;
  }
  
  nav ul li:hover {
    color: #0d738b;
    background-color: #ffffff;
    transition: background-color 1s;
  }

  nav ul li:hover a{
    color: #0d738b;
  }

  .sticky {
    position: sticky;
    top: 0;
    left: 0;
    background: #0d748b71;
  }

  /* images  */
  .img-container-medium {
    width: 20rem;
  }

  /* HERO  */

  .hero-section {
    background: url('/img/hero.jpg') no-repeat center center/cover;
    height: 95vh;
  }

  .hero-section .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    text-align: center;
    background: linear-gradient(90deg, rgba(2,0,36,0.5438550420168067) 0%, rgba(9,9,121,0.969625350140056) 50%, rgba(12,0,255,0.4150035014005602) 100%);
  }
 
  .hero-section h1 {
    font-family: 'Roboto', sans-serif;
    padding-bottom: 6px;
    color: #b6b6b6;
    font-size: 4rem;
  }

  .hero-section hr  {
    width: 20%;
  }

  /* SECTION STYLES  */

.divider {
    background: #0d738b;
    padding: 10px;
}

.divider h1 {
    color: #de9f75;
}

  /* ABOUT  */

  .panel {
    width: 80%;
    margin: 10px auto;
    padding: 50px;
    background-color: #f0f0f0;
    text-align: center;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 1.2em;
  }

  .panel p, .panel h4, .panel button {
    margin: 10px 0;
  }

  .panel .panel-content {
    padding: 10px;
  }

  /* .divider {
    background: #0d738b;
  } */

  /* FOOTER  */

  footer {
    text-align: center;
    height: 5vh;
    padding: 10px 0;
    color: #fff;
    background: #333;
  }

/* MEDIA QUERIES  */

@media (max-width: 800px) {
  .grid-1-2 {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .img-container-medium {
    width: 10rem;
  }
}