/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,800&family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

/* general styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
section {
  max-width: 1200px;
  margin: 0 auto;
}
body {
  min-height: 100vh;
  font-family: "Comfortaa", sans-serif;
  display: flex;
  flex-direction: column;
}

/* link styles */
.contact a {
  color: aliceblue;
}
a {
  text-decoration: none;
  color: #292a2d;
}
a h1:hover {
  color: #dbe4ee;
}

a:hover {
  color: #054a91;
}

a i:hover {
  color: #7582c7;
}
.active {
  border-bottom: solid 2px #85879e;
  
}
span > a {
  color: aliceblue;
}

/* header styles */ 

header {
  background-color: #81a4cd;
  border-top: black solid 2px;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 2px 4px black;
  z-index: 99;
}

 header > span {
  font-family: "Comfortaa", sans-serif;
  color: #d1e3ea;
  font-size: 1rem;
  padding: 0.3rem 0.3rem;
  letter-spacing: 1.4px;
  align-self: center;
}

/* h1 {
  font-family: "Comfortaa", sans-serif;
  color: #f8f8f8;
  font-size: 2.5rem;
  padding: 0.3rem 0.8rem;
  letter-spacing: 1.6px;
  align-self: center;
  margin: 0 auto;
} */

hr {
  border-top: 1px solid #054a91;
}

.grey-bg {
  background-color: #f8f8f8;
}

main {
  margin-top: 4.8rem;
  padding-bottom: 4.8rem;
  width: 100%;
  flex-grow: 1;
  flex-direction: column;
  background-color:white;
}
p {
 padding: 0.4rem 1.1rem 0 0.9rem;
 color: #1b1c1d;
 text-align: center;
 line-height: 1.9rem;
}

 h1
 {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  padding: 1rem;
  
}
 
 h2
 {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  padding: 1rem 1rem 0.4rem 1rem;
  
}
h3 {
  font-family: "Comfortaa", sans-serif;
  text-align: center;
  padding: 1rem 1rem 0.3rem 1rem;
  font-size: 1.2rem;
}

#main-content img {
 margin: 0 0 0 5%;
  height: 40%;
  width: 90%;
}

#main-content hr {
  width: 80%;
  margin-left: 10%;
  margin-top: 2rem;
}
#main-content > div {
  display: flex;
  justify-content: center;
}
.contact {
  color: #d1e3ea;
  text-align: center;
  margin: 0 auto 1rem auto;
  background-color: #81a4cd;
  padding: 0.5rem 0.5rem 0.5rem 0.8rem;
  display: block;
  width: 8.5rem;
  
}

#whats-app {
  margin: 0 auto;
  background-color: #81a4cd;
  padding: 0.5rem;
  display: block;
  width: 7rem;
  text-align: center;

}
#map-plug {display:none;}
 
#google-reviews {
display:flex;
flex-wrap:wrap;
/*display: grid;
grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/
}
span.review-profile-image {
    float: left;
    padding: 0 2rem 0 0;
    width: 6rem;
}
span.review-profile-image img {
    width: 4rem;
}
.modal-backdrop.in{display:none;}
.review-item {
    /* border-bottom: solid 1px rgba(190,190,190,.35); */
    margin: 5px auto;
    display: block;
    width: 100%;
    padding: 15px 0px;
}
 
/* @media ( max-width:1200px) {
  .review-item { flex: 1 1 40%; }
}
 
@media ( max-width:450px) {
  .review-item { flex: 1 1 90%; }
} */
 
.review-meta, .review-stars {
                             text-align: left; 
                             font-size:115%;}
.review-author { 
    text-transform: capitalize;
    font-weight:bold;
    text-align: center; 
    }

.review-date {
   opacity:.6;
   display:block;
  }
.review-text {  line-height: 1.55;
    text-align: center;
    max-width: 72em;
    margin: auto;}
 
 
 
.review-stars ul {
display: inline-block;
list-style: none !important;
margin:0; padding:0;
}
 
.review-stars ul li {
float: left;
list-style: none !important;
margin-right: 1px;
line-height:1;
}
 
.review-stars ul li i {
  color: #E4B248;
  font-size: 1.4em;
  font-style:normal;
}
.review-stars ul li i.inactive { color: #c6c6c6;}
.star:after { content: "\2605"; }
#google-reviews img {
  height: 10%;
  width: 50%;
}

/* button styles */
#landing-page-button {
  color: #054a91;
  font-weight: bold;
  background-color: #f17300;
  padding: 0.6rem;
  border-radius: 3rem;
  margin: 0.3rem auto;
  box-shadow: 1px 2px black;
}
#landing-page-button:hover {
  background-color: #7582c7;
  color: aliceblue;
}
#landing-page-button:active {
  background-color: #054a91;
  color: #dbe4ee;
}
.button-div {
  padding-top: 1rem;
}

/* nav toggle hamburger style */
#nav-toggle {
  display: none;
}

#nav-toggle:checked ~ nav {
  display: block;
}
nav {
  position: absolute;
  background-color: #cdd8e4;
  width: 100%;
  left: 0;
  padding: 0 1rem;
  box-shadow: 0 2px 2px #3a3a3a;
  display: none;
  top: 100%;
}
.nav-toggle-label {
  margin: .5rem;
  font-size: 2rem;
  color: #054a91;
}
.address {
  padding-bottom: 0;
}

#burger-menu {
  margin-top: 0.5rem;
  letter-spacing: 4px;
  font-size: 110%;
  list-style-type: none;
}

#burger-menu > li {
  margin-bottom: 1em;
}
#main-content a {
  text-decoration: none;
  bottom: 70%;
}


/* sign up form */
#signup-form {
  display: flex;
  flex-direction: column;
  width: 88%;
  padding: 1rem;
  margin: 1.3rem;
  background-color: rgba(255, 255, 255, 0.2);
  font-family: "Roboto", sans-serif;
  color: aliceblue;
  border-radius: 8%;
  align-items: center;
}
#signup-form button {
  background-color: #393775;
  margin: 1rem auto;
  padding: 0.5rem;
  font-size: 1.02rem;
  color: whitesmoke;
  border-radius: 2rem;
  box-shadow: 1px 2px black;
}
#signup-form button:hover {
  background-color: #7582c7;
  color: aliceblue;
}
input {
  border-radius: 0.6rem;
  padding: 0.3rem;
  font-size: 1.1rem;
  color: #054a91;
}

/* thank you page style*/
#thank-you-main {
  background: url("../images/way-to-go.jpg") no-repeat center
    center/cover;
}

#thank-you-main-section > h2,
#thank-you-main-section > h3 {
  text-align: center;
  color: #255993;
  letter-spacing: 0.1rem;
  padding: 0.8rem 0.5rem 0.2rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
}

#thank-you-div {
  margin-top: 20%;
  padding-bottom: 1rem;
  width: 75%;
  background-color: rgba(255, 255, 255, 0.6);
}
#thank-you-div > h3 {
  color: #245784;
}
/* audio control styles */
audio {
  filter: sepia(90%) saturate(70%) grayscale(7) contrast(200%)
    drop-shadow(2px 2px);
  width: 15rem;
  height: 2.5rem;
}

.sample {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sample p {
  padding: 0.5rem 0;
}
.sample h3 {
  color: #f17300;
}
.sample-wrapper {
  display: block;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
.sample-wrapper hr {
  width: 100%;
  margin: 0 auto;
}

/* footer styles */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #054a91;
  height: 3rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer i {
  color: white;
  font-size: 1.3rem;
}

.list-style {
  color: aliceblue;
  margin: 0 1rem;
  list-style: none;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4rem;
}
/* responsive design Tablet */
 @media screen and (min-width: 768px) {
  nav {
    display: block;
    position: relative;
    box-shadow: none;
    width: fit-content;
    padding-right: 1rem;
    background-color: #81a4cd;
  }
  #whats-app {
    align-self: center;
    width: 12.2rem;
    
  }
  header > span {
    font-size: 2rem;
  }
  span > a {
    font-size: 2rem;
   
  }
 
  h1 {
    font-size: 3rem;
    margin: 1.5rem;
  }
  .contact {
    width: 13rem;
    font-size: 1.8rem;
  }
  h2 {
    font-size: 2rem;
    margin: 1.2rem;
  }
  h3 {
    font-size: 1.5rem;
    margin: 1.3rem;
  }
  #music-school {
    text-align: center;
  }
  p {
    font-size: 1.2rem;
  }
  #burger-menu {
    display: flex;
  }
  #burger-menu li {
    padding: 1rem;
  }
  #burger-menu li a {
    color: aliceblue;
    font-size: larger;
  }
  #burger-menu li a:hover {
    color: #3e7cb1;
  }
  .active {
    border-bottom: solid 2px  #fafdfe;
  }
  .nav-toggle-label {
    display: none;
  }
  input {
    max-width: 19rem;
  }
  #signup-form {
    align-items: center;
    margin: 0 auto;
    font-size: 1.3rem;
    width: 40%;
  }
  .nav-toggle-label {
    font-size: 3rem;
  }

  footer i {
    font-size: 1.8rem;
  }
  #thank-you-main {
 height: 50rem;
  }
  #thank-you-div {
    width: 30%;
    margin-top: 15rem;
  }
} 
 @media screen and (min-width: 1024px) {
  main {
    background-size: 40%;
    background-position: left;
    
  }
  /* #signup-form {
    background-color: rgba(30, 30, 30, 0);s
  }
  #thank-you-main {
    height: 90rem;
  } */
  /* #thank-you-main-section {
    max-width: 30%;
  }
  #main-content hr {
    max-width: 40%;
    margin: 2rem auto 0 auto;
  }
  #thank-you-div {
    margin-bottom: 50%;
    max-width: 30%;
  } */
  /* .sample-wrapper{
    display: grid!important;
    grid-template-columns: repeat(2, 1fr);
    width: 60%;
    margin: 0 auto;

  }
  .sample-wrapper .sample{
    margin: 1rem;
  }
  .sample-wrapper hr{
    display: none;
  }
   */
} 
