/*Hero section styles*/

.hero-section {
    background-image: url(../images/backgrounds/jetSkiBg.PNG);
    padding: 100px;
    height: 300px;
    /*parallex*/
    background-attachment:none; /*image will not slide up & down*/
    background-position: center; 
    background-repeat: no-repeat; /*just show one time */
    background-size: cover;       /*crops image */
    min-width: 1094px;
}

/*building border around*/
.hero-section > .top-heading {
    padding: 1px 20px;
    background-color: #11122b;
    color: #cbcbcb;
    width: 290px;
    border-radius: 2px;
}

/*border gold around*/
.hero-section > .bottom-heading {
    background-color: #cea135;
    color: #11122b;
    padding: 1px 20px;
    margin-top: 15px;
    width: 107px;
    border-radius: 2px; /*rounded edges*/

}

.pitch{
    font-size: large;
    color: #cbcbcb;
}




  /*                  footer  */
  .footer-container {
    background-color: #11122B;
    color: #FFFFFF;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-logo img {
    max-height: 50px;
  }
  
  .footer-navigation ul {
    list-style-type: none;
    padding: 0;
    display: flex;
  }
  
  .footer-navigation li {
    margin-right: 20px;
  }
  
  .footer-navigation li:last-child {
    margin-right: 0;
  }
  
  .footer-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-navigation a:hover {
    color: #CEA123;
  }
  
  .footer-copy {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
  }