/* Base */
@import 'https://fonts.googleapis.com/css?family=Days+One|Hind+Vadodara';
body {
  font-family: 'Hind Vadodara', sans-serif;
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Days One', sans-serif;
}
@media (min-width: 1200px) {
  .container {
    width: 900px;
  }
}
/* Header */
header {
  display: flex;
  height: 500px;
  text-align: center;
  color: #000;
  background: url(../images/bg.jpg) no-repeat center center fixed;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
header h1 {
  font-size: 46px;
  display: block;
  margin: 0;
}
header p {
  font-size: 16px;
  letter-spacing: 1px;
}
header .btn-default {
  margin-top: 40px;
  padding: 8px 25px;
  text-transform: uppercase;
  color: #fff;
  border: 0;
  border-radius: 20px;
  background: #9055a2;
}
header .btn-default:hover {
  color: #9055a2;
  background: #fff;
}
/* About */
#about {
  padding: 100px 0;
}
#about p {
  font-size: 18px;
  line-height: 1.0em;
  /*margin-bottom: 25px;*/
  letter-spacing: 1px;
}
/* List */
#list {
  display: block;
  height: auto;
}
#list div.box {
  float: left;
  width: 20%;
}
#list div.box img {
  width: 100%;
}

.hangingindent {
  padding-left: 15px ;
  text-indent: -15px ;
}


/* Services */
#services {
  padding: 100px 0;
  background: #f1e9f3;
}
#services h2 {
  margin-top: 0;
}
#services .box {
  margin-bottom: 30px;
  padding: 20px;
  transition: .5s ease;
  border: 1px dashed #9055a2;
}
#services .box h3 {
  margin-top: 0;
}
#services .box:hover {
  border: 1px solid #9055a2;
  background: #fff;
}
/* Member */
#member {
  padding: 100px 0;
}
#member .container {
	position: relative;}
#member h2 {
  margin-top: 0;
}
#member a {
  color: #333;
}
#member a:hover {
  text-decoration: none;
}
#member .box {
  margin-top: 20px;
  padding: 20px;
  transition: .5s ease;
  text-align: center;
  border: 3px solid #f7f7f7;
  background: #E4B8F2;
}
#member .box h3 {
  font-family: 'Days One', sans-serif;
  font-size: 17px;
}
#member .box img {
  max-width: 120px;
  padding: 5px;
  border-radius: 50%;
}
#member .box:hover {
  cursor: pointer;
  color: #fff;
  background: #9055a2;
}
#member .box:hover img {
  border: 4px solid #fff;
}
/* Client */
#client {
  text-align: center;
  background: url(../images/bg.jpg) no-repeat center center fixed;
  background-size: cover;
}
#client img {
  max-width: 100%;
}
#client .container {
  position: relative;
}
#client .overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 0;
  background-color: rgba(144, 85, 162, 0.8);
}
/* Contact */
#contact {
  padding: 50px 0;
  color: #fff;
  background-color: #9055a2;
}
#contact .title {
  margin-bottom: 40px;
  text-align: center;
}
#contact .title p {
  font-size: 16px;
}
#contact input {
  height: 45px;
  border: 0;
  border-radius: 0;
}
#contact .form-control {
  border: 0;
  border-radius: 0;
}
#contact .btn-default {
  font-size: 18px;
  padding: 10px 30px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: #724381;
}
#contact ul {
  padding-left: 0;
}
#contact ul li {
  display: inline-block;
  padding-right: 5px;
}
#contact ul li a {
  color: #fff;
}
/* Footer */
footer {
  padding: 20px 0;
  text-align: center;
  color: #fff;
  background: #724381;
}
footer a {
  text-decoration: underline;
  color: #fff;
}
footer a:hover,
footer a:focus {
  color: #fff;
}
/* Responsive */
/* Large Devices, Wide Screens */
/* Medium Devices, Desktops */
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  /* Member */
  #member .box img {
    width: 75%;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  /* Member */
  #member .box img {
    width: 100%;
  }
}
