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

/* main styling parts */

html,
body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  line-height: 1.6em;
}

a {
  color: rgb(111, 106, 106);
  text-decoration: none;
}

h1,
h2,
h3 {
  padding-bottom: 20px;
}
p {
  margin: 15px 0;
}
.container {
  margin: auto;
  max-width: 1500px;
  overflow: auto;
  padding: 0 20px;
}

/* Navbar */

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

#navbar a {
  color: #fff;
}

#navbar .logo {
  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: #f7c08a;
}

.primary-text {
  color: rgb(234, 114, 114);
}
.lead {
  font-size: 24px;
}

.btn-links {
  display: inline-block;
  font-size: 20px;
  color: whitesmoke;
  background: #333;
  padding: 13px 20px;
  border: none;
  cursor: pointer;
}
.btn-links:hover {
  background: rgb(234, 114, 114);
  color: #333;
}

.btn-light {
  background: whitesmoke;
  color: #333;
}
.bg-dark {
  background: #333;
  color: whitesmoke;
}
.bg-light {
  background: whitesmoke;
  color: #333;
}
.bg-primary {
  color: #333;
  background: rgb(234, 114, 114);
}

.clearFloat {
  clear: both;
}
.L-heading {
  font-size: 40px;
}
/* padding classes */
.py-1 {
  padding: 10px 0;
}
.py-2 {
  padding: 20px 0;
}
.py-3 {
  padding: 30px 0;
}
/* showcase area styling */

.showcase {
  background: url(../images/pexels-andrew-neel-3201763.jpg) no-repeat center
    center/cover;
  height: 600px;
}

.showcase-content {
  color: black;
  text-align: center;
  padding-top: 100px;
}

.showcase .showcase-content h2 {
  font-size: 60px;
  line-height: 1.2em;
}

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

/* info section styling */

.info {
  height: 400px;
}

.info-img {
  background: url(../images/pexels-andrea-piacquadio-3771110.jpg) no-repeat;
  width: 50%;
  float: left;
  min-height: 100%;
}

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

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

/* Features styling */

.box {
  float: left;
  width: 33.3%;
  padding: 50px;
  text-align: center;
}

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

/* Footer sytling  */

.main-footer {
  text-align: center;
  padding: 20px;
}

/* about page styling */

.info-left {
  float: left;
  width: 50%;
  min-height: 100%;
}
.info-right {
  float: right;
  width: 50%;
  min-height: 100%;
}

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

/* testimonials styling */
.items {
  height: 100%;
  background: brown;
  padding-top: 40px;
}

.items h2 {
  color: whitesmoke;
  text-align: center;
  padding-top: 40px;
}

.item img {
  width: 100px;
  float: left;
  margin-right: 20px;
  border-radius: 30%;
}
.item {
  padding: 20px;
  margin: 40px 0;
  border-radius: 10px;
  text-align: center;
  opacity: 0.7;
}

/* contact page styling */

.form-items {
  margin-bottom: 20px;
}
.form-items label {
  display: block;
  margin-bottom: 10px;
}
.form-items input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px #ddd solid;
}
.form-items input:focus,
textarea:focus {
  border-color: rgb(234, 114, 114);
  outline: none;
}
.form-items textarea {
  height: 200px;
}

/* .form {
  text-align: center;
} */
