.container {
  max-width: 1280px;
  padding: 0 1.5rem;
  margin: auto;
  overflow: hidden;
}

/* Text Colors */
.text-primary {
  color: #5573a8;
}

.text-secondary {
  color: #a87e55;
}

/* Background Colors*/
.bg-primary {
  background: #5573a8;
  color: #fff;
}

.bg-secondary {
  background: #3b5176;
  color: #fff;
}

.bg-light {
  background: #fff;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #fff;
}

/* Buttons */
.btn-primary,
.btn-light,
.btn-dark {
  display: inline-block;
  padding: 0.7rem 2rem;
  cursor: pointer;
  transition: all 0.5s;
  border: none;
  border-radius: 5px;
}

.btn-primary {
  color: #333;
  background-color: #5573a8;
}

.btn-light {
  color: #333;
  background-color: #e8edf7;
}

.btn-dark {
  color: #e8edf7;
  background-color: #3b5176;
}

button[class^='btn-']:hover,
a[class^='btn-']:hover,
input[class^='btn-']:hover {
  background-color: #445d87;
}

.lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

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

body {
  font-family: 'IM Fell DW Pica', 'Times New Roman', Times, serif;
  background: #5573a8;
  line-height: 1.4;
  background-color: #3b5176;
}

a {
  text-decoration: none;
  color: #fff;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

.hamburger {
  visibility: hidden;
}

.container {
  max-width: 95%;
}

h2 {
  font-family: 'La Belle Aurore';
}

#main-nav {
  display: flex;
  justify-content: space-between;
  color: #fff;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}
#main-nav h2 {
  font-family: 'La Belle Aurore';
  font-weight: 200;
}
#main-nav .nav-top ul li {
  position: relative;
}
#main-nav ul {
  display: flex;
}
#main-nav ul div {
  position: absolute;
  display: none;
  background-color: #3b5176;
  min-width: 100px;
  margin-top: 0.5rem;
  border: 0.5px solid #fff;
}
#main-nav ul div:hover {
  display: block;
}
#main-nav ul li:hover > div {
  display: block;
}
#main-nav li {
  padding: 0.5rem 1rem;
}
#main-nav a {
  text-decoration: none;
  color: #e8edf7;
  border-bottom: 2px transparent solid;
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.5s;
}
#main-nav a:hover {
  color: #a87e55;
}
#main-nav a.current {
  color: #a87e55;
}

#header-home .header-content {
  border-top: 2px #a87e55 solid;
  background: url('../img/header_bg.png') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#header-home .header-content h1 {
  font-family: 'La Belle Aurore';
  padding: 3rem;
  color: #fff;
  opacity: 1;
  font-weight: 100;
}
#header-home .header-content .lead {
  color: #fff;
  text-align: left;
  margin: 32px 0;
}

#header-inner {
  border-bottom: #a87e55 2px solid;
}

#about-a h2 {
  font-family: 'La Belle Aurore';
  margin: 1rem 0;
  font-size: 2rem;
}

#about-a .container {
  max-width: 70%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
}

#about-a img {
  width: 60%;
  height: 60%;
  border-radius: 5px;
}

#instruments-a .section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

#instruments-a .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  text-align: center;
}
#instruments-a .grid-container .grid-item {
  padding: 1 1.5rem;
  margin-bottom: 1rem;
}
#instruments-a .grid-container .grid-item img {
  width: 300px;
  height: 300px;
  border-radius: 5px;
}

#testimonial-a .container {
  max-width: 80%;
}

#testimonial-a .testimonial-item {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-bottom: #a87e55 1px solid;
}
#testimonial-a .testimonial-item h3 {
  padding: 1rem 2rem;
}
#testimonial-a .testimonial-item img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 1rem;
}
#testimonial-a .testimonial-item:last-child {
  border-bottom: 0;
}

#contact-a .container {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}

#contact-a img {
  height: 200px;
  width: 200px;
  padding: 1rem;
  border-radius: 25px;
}

#contact-a .form-fields {
  display: grid;
  grid-template-areas:
    'name email'
    'subject phone'
    'message message';
  grid-gap: 1.2rem;
  margin-bottom: 1rem;
}
#contact-a .form-fields .name-input {
  grid-area: name;
}
#contact-a .form-fields .email-input {
  grid-area: email;
}
#contact-a .form-fields .subject-input {
  grid-area: subject;
}
#contact-a .form-fields .phone-input {
  grid-area: phone;
}
#contact-a .form-fields .message-input {
  grid-area: message;
  height: 100px;
}
#contact-a .form-fields .text-input {
  padding: 0.5rem 1rem;
}

#contact-a button[type='submit'] {
  width: 50%;
}

#footer-main {
  border-top: 2px #a87e55 solid;
  background: #3b5176;
  color: #e8edf7;
  font-size: 0.8rem;
}
#footer-main .footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#footer-main .contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#footer-main .contact h4 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
#footer-main .contact a {
  color: #fff;
}
#footer-main .contact div {
  padding: 1rem;
}

@media (max-width: 500px) {
  #main-nav {
    flex-direction: column;
    align-items: center;
  }
  #main-nav i {
    padding: 1rem 0;
  }
  #main-nav ul {
    display: flex;
    flex-direction: column;
  }
  #main-nav ul div {
    position: relative;
    border: none;
  }
  #main-nav ul div:hover {
    display: none;
  }
  #main-nav ul div a:active {
    display: block;
  }
  #instruments-a .grid-container {
    grid-template-columns: 1fr;
  }
  #instruments-a .grid-container .grid-item img {
    width: 200px;
    height: 200px;
  }
  #testimonial-a .testimonial-item {
    flex-direction: column;
  }
  #contact-a .container {
    max-width: 100%;
  }
  #contact-a .form-fields {
    grid-template-areas:
      'name'
      'email'
      'phone'
      'subject'
      'message';
  }
  #footer-main .container > p {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
  #footer-main .contact {
    flex-direction: column;
  }
  #footer-main .contact div {
    width: 100%;
    border-bottom: 1px solid #a87e55;
    padding: 0.5rem;
  }
  #footer-main .contact h4 {
    letter-spacing: 0.1rem;
  }
  .hamburger {
    visibility: hidden;
  }
}
