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

/* Global */

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 10px;
}

/* UTILITIES */

.container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

.container-2 {
  margin: auto;
  max-width: 1100px;
  overflow: auto;
  padding: 0 20px;
}

.text-primary {
  color: #c4a8ff;
}

.lead {
  font-size: 1.25rem
}

.btn {
  display: inline-block;
  font-size: 1.125rem;
  color: #fff;
  background: #333;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.btn:hover {
  background: #c4a8ff;
  color: #333;
  transform: scale(.95);
}

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

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

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

.bg-primary {
  background: #c4a8ff;
  color: #333;
}

.l-heading {
  font-size: 2.5rem;
  line-height: 1em;
}

/* PADDING UTILITY */

.py-1 { padding: 10px 0; }
.py-2 { padding: 20px 0; }
.py-3 { padding: 30px 0; }

/* NAVBAR */

#navBar {
  background: #333;
  color: #fff;
  overflow: auto;
}

#navBar a {
  color: #fff;
}

.logo {
  padding: 10px 0;
}

.logo img {
  width: 175px;
}

.links {
  display: flex;
  align-items: center;
  list-style: none;
}

.links li {
  padding: 10px;
  font-size: 1.3rem;
}

#navBar ul li a:hover,
#navBar ul li a.current {
  /* background-color: #444; */
  color: #c4a8ff;
}

/* SHOWCASE */

#showcase {
  background: url('../img/showcase.jpg') no-repeat center center/cover;
  height: 600px;
}

.showcase-content {
  color: #fff;
  text-align: center;
  padding-top: 170px;
}

.showcase-content h1 {
  font-size: 3.75rem;
  line-height: 1.2em;
}

.showcase-content p {
  padding-bottom: 20px;
  line-height: 1.7em;
}

/* INFO SECTION */

#home-info {
  height: 400px;
  display: flex;
}

.info-img {
  width: 50%;
  background: url('../img/photo-1.jpg') no-repeat;
  min-height: 100%;
}

.info-content {
  width: 50%;
  height: 100%;
  text-align: center;
  padding: 50px 30px;
  overflow: hidden;
}

.info-content p {
  padding-bottom: 30px;
}

/* FEATURES */

#features {
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  padding: 50px;
  text-align: center;
}

.box i {
  margin-bottom: 10px;
}

/* ABOUT PAGE */

.info-left {
  width: 50%;
}

.info-right {
  width: 50%;
  min-height: 100%;
  align-self: center;
}

.info-right img {
  display: block;
  margin: auto;
  width: 70%;
  border-radius: 50%;
}

/* TESTIMONIALS */

#testimonials {
  height: 100%;
  background: url(../img/test-bg.jpg) no-repeat center center/cover;
  padding-top: 100px;
}

#testimonials h2 {
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}

.testimonial {
  display: flex;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
  opacity: 0.9;
}

.testimonial img {
  width: 100px;
  border-radius: 50%;
  margin-right: 20px;
}


/* CONTACT FORM */

.form-group {
  margin-bottom: 20px;
}

#contact-form {
  margin: 30px 0;
}

#contact-form label {
  display: block;  
  margin-bottom: 5px;
}

#contact-form input, 
#contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px #ddd solid;
}

#contact-form input:focus, 
#contact-form textarea:focus {
  outline: none;
  border-color: #c4a8ff;
}

#contact-form textarea {
  height: 200px;
}

/* FOOTER */

#main-footer {
  text-align: center;
  background: #444;
  color: #fff;
  padding: 20px;
}