/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Styling */

  html,body {
   font-family: "Times New Roman", Times, serif;
   line-height: 1.6;
  }

  a {
   color: #333;
   text-decoration: none;
  }

  h1, h2, h3 {
    padding-bottom: 20px;
  }

  p {
    margin: 10px 0;
  }

  /*Utility Classes*/
  .container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
  }

  .text-primary {
    color: #665d97;
  }

  .lead {
    font-size: 20px;
  }

  .btn {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    background: #333;
    padding: 13px 20px;
    border: none;
    cursor: pointer;

  }

  .btn:hover {
   background: #665d97;
   color: #ffffff;
  }

  .btn-light {
    background: #f4f4f4;
    color: #333;
  }

  .btn-light:hover {
    background: #665d97;
    color: #f4f4f4;
  }

  .bg-dark {
    background: #333;
    color: #fff;
  }
  .bg-light {
    background: #f4f4f4;
    color: #333;
  }
  .bg-primary {
    color: white;
    background: #665d97;
  }

  .clr {
    clear:both ;
  }

  .l-heading {
    font-size: 40px;
  }

  /* Padding */
  .py-1 {padding: 10px 0; }
  .py-2 {padding: 20px 0; }
  .py-3 {padding: 30px 0; }
  
 /* Navbar */
 #navbar {
   background: #333;
   color: #333;
   overflow: auto;
 }

 #navbar a {
   color: white;

 }

 #navbar h1 {
   float: left;
   padding-top: 20px;
  
 }

 #navbar ul {
   list-style: none;
   float: right;
 }

 #navbar ul li {
   float: left;
 }

 #navbar ul li a {
   display: block;
   padding: 20px;
   text-align: center;
 }

 #navbar ul li a:hover, #navbar ul li a.current {
   background: #444;
   color: #665d97;
 }

 /*Showcase*/
 #showcase {
   background-color: #eeebeb;
   height: 600px;
 }

 #showcase .showcase-content {
   color: black;
   text-align: center;
   padding-top: 170px;
 }

 #showcase .showcase-content h1 {
   font-size: 60px;
   line-height: 1.2em;}

   #showcase .showcase-content p {
     font-size: 27px;
     font-weight: 450;
     padding-bottom: 20px;
     line-height: 1.7em;
   }

   /*Home Info*/
   #home-info {
     height: 400px;
   }

  #home-info .info-img {
    float: left;
    width: 50%;
    background: url('a-c-fsy2bD7Pep8-unsplash.jpg') no-repeat;
    min-height: 100%;
  }

  #home-info .info-content {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 50px 30px;
    overflow: hidden;
  }

  #home-info .info-content p {
    padding-bottom: 30px;
  }

 /* Features */
 .box {
   float: left;
   width: 33.3%;
   padding: 50px;
   text-align: center;
   height: 300px;
   
 }

.getstarted {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}


 /*About Info*/
 #about-info .info-right {
   float: right;
   width: 50%;
   min-height: 100%;
 }

 #about-info .info-right img {
   display: block;
   margin: auto;
   width: 70%;
   border-radius: 20%;
 }

 #about-info .info-left {
   float: left;
   width: 50%;
   min-height: 100%;
 }

  /* Testimonials */

  .found {
    size: 300px;
  }
  .foundleft p{
    display: flex;
    justify-content: left;
    float: right;
  }
  

  /*Contact Form*/
     .contactbox {
      size: 100px;
      padding: 20px;
     }

     .contactbox h3 {
      text-align: center;
      padding: 10px;
     }

     .contactbox p {
      text-align: center;
      padding-bottom: 20px;
     }

     .contactbox a {
      display: flex;
      justify-content: center;
      padding-bottom: 10px;
     }

     .contactbox img {
      max-width: 200px;   
      height: auto;    
      display: block;
      margin: 0 auto;
      border-radius: 10px;
      border: 2px solid #ddd;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .contactbox h2 {
      text-align: center;
      padding: 20px;
    }

/* Footer */

#main-footer {
  text-align: center;
  background: #333;
 
  color: white;
  padding: 20px;
  margin-top:10px
  
  
}


/* mobile compatible styling */

@media (max-width: 768px) {

  #showcase {
    height: auto;
    padding: 40px 20px;
  }

  #showcase .showcase-content {
    padding-top: 40px;
  }

  #showcase .showcase-content h1 {
    font-size: 32px;
  }

  #showcase .showcase-content p {
    font-size: 18px;
  }

  #home-info {
    height: auto;
  }

  #home-info .info-img,
  #home-info .info-content {
    float: none;
    width: 100%;
  }

  #home-info .info-img {
    height: 200px; 
    background-size: cover;
    background-position: center;
  }

  #home-info .info-content {
    padding: 20px;
  }

  .box {
    float: none;
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .getstarted {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

    #navbar h1 {
    float: none;
    text-align: center;
    padding: 15px 0;
  }

  #navbar ul {
    float: none;
    padding: 0;
  }

  #navbar ul li {
    float: none;
  }

  #navbar ul li a {
    display: block;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #444;
  }

}
}



 
