/* index.html styling */
body {
    background-color: black;
    color: gold;
}

h2 {
    text-align: center;
}

.slideshow {
    display: flex;
    justify-content: center;  
}

.mySlides {
    display:none;
    
    max-width: 100%;
}

.footer {
    background-color:gold;
    text-align: center;
}

.socials {
    display: flex;
}

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

.logo img {
    max-width: 20%;
}

#inquiries { 
    font-size: 2em;
    color: black;
}
#phonenr { 
    color: white;
    font-size: 2.5em;
    font-weight: bold;
}
#phonenr a {color: white;}

.testimonials {
    display: flex;
    width: 100%;
    
}



.aboutsection { 
    padding: 2rem;
}
.aboutsection p {font-size: 1.2em;} 

.container {
    display: flex;
    flex-direction: column;

}

/*Mobile media conditional*/
@media only screen and (max-width: 600px) {
    .container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-around;
    }
    .fbReview {
        display:flex;
        flex-direction: column-reverse;
        margin-bottom: 2%;
    }
    .logo {
        display: none;
    }
    
}

.fbReview {
    display:flex;
    justify-content: space-around;   
}

/*FB reviews styling*/
.reviewcard {
    box-shadow: 0px 20px 60px -20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    padding: 30px 50px;
    font-family: sans-serif;
    color: black;
    font-weight: 400;
    border-radius: 15px;
    background: #fff;
    width: 100%;
    max-width: 600px;
  }
  
  .propicbox {
      float: left;
  }
  
  .propic {
      width: 50px;
      border-radius: 50px;   
  }
  
  .reviewerbox {
      margin: -7px 0 0 60px;
      
  }
  
  h1 {
      font-size: 16px;
      line-height: 1.5em;
      font-weight: 400;
      color: #636972;
  }
  
  .reviewername {
      color: #39599a;
      font-size: 18px;
      font-weight: 600;
  }
  
  a, a:visited, a:hover {
      color: #39599a;
      text-decoration: none;
  }
  
  .reviewdate {
      font-size: 14px;
      line-height: 1em;
      font-weight: 400;
      color: #636972;
      margin: -10px 0 0 0
  }
  
  
  .review {
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.5em;
    color: black;
  }
  
  .bottomText {
    margin: 15px 0 15px;
    font-size: 14px;
    color: #636972;
  }

  /* Certifications.html styling */

  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px 5px;
    }

    .certificate {
        max-width: 100%;
    }   
    .redirect {
        color: gold;
        text-decoration: underline;
    
    }
    .redirect a {
        color: gold;
        text-decoration: underline;
    }
  .redirect a:hover {
      color: goldenrod;
  }


  @media only screen and (max-width: 600px) {
     
    .grid {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        justify-content: center;
    }
    

  }
/* Pricing.html styling */

.logo1 {
    display: flex;
    justify-content: center;
   
}

.logo1 img {
    max-width: 20%;
}

.bigdiv {
    display: flex;
    border-radius: 1em;
    justify-content: space-around;
    
}

.bigdiv h3 {
    font-size: 2.5em;
}

.bigdiv p {
    font-size: 2em;
}

.pricelist {
    font-size: 1.5em;
}

.priceheader {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 600px) {
     
    .bigdiv {
        display: flex;
        flex-direction: column;
        justify-content: space-around;

    }

}

/* Pricing section test  */

.Pricing {
    display: flex;
    justify-content: center;
    width: 50%;
}

.collapsible  {
    width: 100%;
    background-color: black;
    color: gold;
    border: none;
    font-size: 1.3em;
    font-family: 'Times New Roman', Times, serif;   
    text-decoration: underline;
}    

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    
  }


  .certlink {
      display: flex;
      justify-content: center;
      font-size: 1.3em;
      font-family: 'Times New Roman', Times, serif;
      text-decoration: underline;
    
  }

  .certlink a {
      color: gold;
  }