/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html,
  body {
    max-width: 100%;
    height: 100vh;
    overflow-x: hidden;
  }
  /* Global - Main Styling */
  html,
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7em;
  }
  
  a {
    color: #333;
    text-decoration: none;
  }
  
  h1,
  h2,
  h3 {
    padding-bottom: 20px;
  }
  
  p {
    margin: 10px 0;
  }
  
  /* Global Classes Styling */
  .container {
    margin: auto;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .text-primary {
    color: #f7c08a;
  }
  
  .lead {
    font-size: 20px;
  }
  
  .btn {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;
  }
  
  .btn:hover {
    background: #f7c08a;
    color: #333;
  }
  
  .btn-light {
    background: #f4f4f4;
    color: #333;
  }
  
  .bg-dark {
    background: #333;
    color: #fff;
  }
  
  .bg-light {
    background: #f4f4f4;
    color: #333;
  }
  
  .bg-primary {
    background: #f7c08a;
    color: #333;
  }
  
  .clr {
    clear: both;
  }
  
  .l-heading {
    font-size: 27px;
  }
  @media only screen and (min-width: 1000px) {
    .l-heading {
      font-size: 40px;
    }
  }
  
  /* Padding */
  .py-1 {
    padding: 10px 0;
  }
  .py-2 {
    padding: 20px 0;
  }
  .py-3 {
    padding: 30px 0;
  }
  
  /* Navbar */
  #navbar {
    max-width: 100%;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-around;
  }
  #navbar .container {
    display: flex;
    justify-content: space-around;
  }
  
  #navbar a {
    color: #fff;
  }
  
  #navbar h1 {
    padding-top: 20px;
    padding-left: 1rem;
  }
  
  #navbar ul {
    padding: 0 2rem;
    list-style: none;
    display: flex;
    justify-content: space-around;
  }
  
  #navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
  }
  
  #navbar ul li a:hover,
  #navbar ul li a.current {
    background: #444;
    color: #f7c08a;
  }
  .logo {
    font-size: 20px;
    margin-left: 2rem;
  }
  @media only screen and (min-width: 1000px) {
    #navbar ul {
      margin-left: 50px;
    }
  }
  
  /* Showcase */
  #showcase {
    background: url("../img/showcase.jpg") no-repeat center center/cover;
    height: 600px;
  }
  
  #showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;
  }
  
  #showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
  }
  
  #showcase .showcase-content p {
    padding-bottom: 20px;
    line-height: 1.7em;
  }
  
  /* Home Info */
  #home-info {
    display: flex;
    flex-direction: column;
  }
  #home-info .info-img {
    background: url("../img/photo-1.jpg") no-repeat;
    min-height: 100%;
  }
  #home-info .info-content {
    height: 100%;
    text-align: center;
    padding: 50px 30px;
    overflow: hidden;
  }
  
  #home-info .info-content p {
    padding-bottom: 30px;
  }
  @media only screen and (min-width: 1000px) {
    #home-info {
      flex-direction: row;
      height: 400px;
    }
    #home-info .info-img {
      width: 50%;
    }
    #home-info .info-content {
      width: 50%;
    }
  }
  /* Features */
  #features {
    display: flex;
    flex-direction: column;
  }
  .feature-box {
    padding: 50px;
  }
  @media only screen and (min-width: 1000px) {
    #features {
      flex-direction: row;
    }
  }
  
  /* About Info */
  .container-about {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    margin: auto;
  }
  .about-info-right img {
    display: block;
    margin: auto;
    max-width: 50%;
    border-radius: 50%;
    background-repeat: no-repeat;
  }
  @media only screen and (min-width: 1000px) {
    .container-about {
      flex-direction: row;
      height: 400px;
      width: 80vw;
    }
    .about-info-left h1 {
      font-size: 26px;
    }
    .about-info-right img {
      padding-top: 1rem;
      padding-left: 2rem;
      max-width: 100%;
    }
    .about-info-right {
      width: 50%;
      padding: 1rem;
    }
    .about-info-left {
      width: 50%;
      padding: 1rem;
    }
  }
  
  /* Testimonials */
  #testimonials {
    background: url("../img/test-bg.jpg") no-repeat center center/cover;
    padding-top: 100px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .testimonials-container {
    display: flex;
    flex-direction: column;
  }
  .testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #testimonials h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 40px;
  }
  .testimonial img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 150px;
  }
  
  #testimonials .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
  }
  @media only screen and (min-width: 1000px) {
    .testimonial {
      flex-direction: row;
      margin: auto;
      width: 80vw;
     }
     .testimonial img {
      width: 30%;
      margin-right: 2rem;
    }
  }
  
  /* Contact Form */
  #contact-form .form-group {
    margin-bottom: 20px;
  }
  
  #contact-form label {
    display: block;
    margin-bottom: 5px;
  }
  
  #contact-form input,
  #contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px #ddd solid;
  }
  
  #contact-form textarea {
    height: 200px;
  }
  
  #contact-form input:focus,
  #contact-form textarea:focus {
    outline: none;
    border-color: #f7c08a;
  }
  
  /* Footer */
  #main-footer {
    margin: 0;
    text-align: center;
    background: #444;
    color: #fff;
    padding: 20px;
  }
  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-box {
    margin-top: 1rem;
    display: block;
    max-width: 300px;
    text-align: center;
  }
  
  @media only screen and (min-width: 1000px) {
    .contact-container {
      flex-direction: row;
      justify-content: space-around;
      max-width: 80vw;
    }
  }
  