/*-------------
[Table of contents]

[ DEFULT INDEX NUMBER ]

1.  GENERAL CSS
2.  NAVBAR
4.  HOME
5.  SERVICE
6.  ABOUT
7.  TESTIMONIAL
8.  FAQ
9.  QUATE
10. SUBSCRIBE
11. PRICING
12. BLOG
13. FOOTER
14. COPYRIGHT


-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[ Color codes ]

    [ Text and Background Color ]
        Main color 1:       #1c93e5
        Main color 2:       #009688
        Main color 3:       #9c27b0
        Main color 4:       #ff4081
        Background 1:       #FFFFFF
        Background 2:       #F6F6F6
        Shadow color:       #000000;

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Typography]

    [ There are using two different font typography ]
        Typography 1: Roboto font;
        Typography 2: Montserrat font;

    [ Other Typography style are same ]
    Body :
        font-style:     normal;
        font-size:      15px;

    h2:
        font-size: 48px;
        line-height: 55px;

    h3:
        font-size: 30px;
        line-height: 40px;

    h4:
        font-size: 20px;
        font-weight: 600;

    p:
        font-size: 18px;
        line-height: 30px;


-------------------------------------------------------------------*/
/**
 * -------------------
 *  Defult CSS
 * -------------------
 */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: none;
  line-height: 26px;
  font-weight: 300;
  overflow-x: hidden !important;
  text-align: left;
  position: relative;
  background-color: #f6f6f6;
}
a,
.nav li a {
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  padding: 0px;
  background-color: transparent;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a:hover,
.nav li a:hover {
  background-color: transparent;
}
a:focus,
.nav li a:focus {
  background-color: transparent;
  outline: 0 !important;
}
p {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 25px;
  font-weight: 300;
}
p:last-child {
  margin-bottom: 0px;
}
/**
 * ---------------------
 *  Defult Halping Class
 * ---------------------
 */
.overflow {
  overflow: hidden;
}
.relative {
  position: relative;
}
.display-table {
  display: table;
  width: 100%;
  height: 100%;
}
.display-flex {
  display: flex;
  flex: 1;
}
.vertical-middle {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
/**
 * --------------------------------------
 *  Video Section Background Defult Style
 * --------------------------------------
 */
.section-video {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  z-index: -1;
}
.section-video .bgvid {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
}
.body-video-bg > .section-video {
  position: fixed;
  top: 0;
  left: 0;
}
/**
 * ------------------------------------
 *  Every Section Headline Defult Class
 * ------------------------------------
 */
.section-heading {
  display: block;
  margin: 0;
}
.section-header {
  margin-bottom: 100px;
  text-align: center;
}
.section-header .sub-heading {
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.section-header.text-left,
.section-header.text-left * {
  text-align: left;
}
.section-header.text-right,
.section-header.text-right * {
  text-align: right;
}
.section-header-separator {
  position: relative;
  width: 145px;
  margin: 5px auto;
  display: inline-block;
}
.section-header-separator .icon {
  font-size: 48px;
  text-align: center !important;
}
.section-header-separator::before,
.section-header-separator::after {
  content: '';
  position: absolute;
  width: 57px;
  height: 2px;
  top: 25px;
}
.section-header-separator::before {
  left: 0;
}
.section-header-separator::after {
  right: 0;
}
/**
 * -----------------
 *  Light Text Color
 * -----------------
 */
/**
 * -------------------------------
 *  Section Top and Bottom padding
 * -------------------------------
 */
.section-separator {
  display: block;
  padding-top: 110px;
  padding-bottom: 110px;
}
.section-separator.sp-top {
  padding-bottom: 0px;
}
.section-separator.sp-bottom {
  padding-top: 0px;
}
.section-separator-small {
  display: block;
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-separator-small.sp-top {
  padding-bottom: 0px;
}
.section-separator-small.sp-bottom {
  padding-top: 0px;
}
/**
 * ---------------------------
 *  Two Section Line Separator
 * ---------------------------
 */
.section-separator-line {
  margin: 0;
  width: 100%;
  border-top: 1px solid;
}
/**
 * ------------------------
 * Background Overlay Color
 * ------------------------
 */
.overlay-color {
  position: relative;
}
.bg-overlay::before,
.gradient-overlay::before,
.gradient-overlay-1::before,
.gradient-overlay-2::before,
.gradient-overlay-3::before,
.gradient-overlay-4::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/**
 * ------------------------------------
 * Making Same Height Left & Right Part
 * ------------------------------------
 */
.display-full {
  display: table !important;
  width: 100%;
}
.display-full .left,
.display-full .right {
  display: table-cell;
  float: none !important;
}
/**
 * ---------------------
 *   Defult Button Style
 * ---------------------
 */
.btn {
  -webkit-border-radius: 10px ;
  -moz-border-radius: 10px ;
  -ms-border-radius: 10px ;
  -o-border-radius: 10px ;
  border-radius: 10px ;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  margin-right: 15px;
  overflow: hidden;
  outline: 0;
  padding: 0 0;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn:last-child {
  margin-right: 0px !important;
}
.btn .icon {
  position: relative;
  top: 2px;
}
.btn .icon img {
  position: relative;
  top: -3px;
  width: 14px;
}
.btn.left-icon .icon {
  margin-right: 15px;
}
.btn.right-icon .icon {
  margin-left: 15px;
}
.btn.btn-fill,
.btn.btn-border {
  font-size: 24px;
  font-weight: 300;
  border: 1px solid;
  padding: 18px 25px;
}
.btn.btn-border {
  background-color: transparent;
}
.btn.btn-round {
  padding: 15px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 24px;
  text-align: center;
}
.btn.btn-round .icon {
  top: 7px;
}
.btn.apple,
.btn.androad {
  -webkit-border-radius: 5px ;
  -moz-border-radius: 5px ;
  -ms-border-radius: 5px ;
  -o-border-radius: 5px ;
  border-radius: 5px ;
  padding: 9px 28px;
  height: 82px;
}
.btn.apple img,
.btn.androad img {
  width: 35px;
  height: 100%;
  float: left;
}
.btn.apple .icon,
.btn.androad .icon {
  font-size: 60px;
  float: left;
}
.btn.apple span,
.btn.androad span {
  display: block;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.btn.apple .group,
.btn.androad .group {
  float: right;
}
.btn.apple .big,
.btn.androad .big,
.btn.apple .small,
.btn.androad .small {
  text-align: left;
  margin-left: 7px;
  line-height: 30px;
}
.btn.apple .big,
.btn.androad .big {
  font-size: 24px;
  font-weight: 400;
}
.btn.apple .small,
.btn.androad .small {
  font-size: 16px;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: thin dotted;
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.btn-text-link {
  padding: 50px 0 0 0;
  text-align: center;
}
.btn-text-link a {
  margin-left: 10px;
}
/**
 * -----------------
 * Social Icon Style
 * -----------------
 */
.social-icon {
  display: inline-block;
}
.social-icon li {
  list-style: none;
  float: left;
  margin-bottom: 0px;
}
.social-icon li a {
  font-size: 25px;
  text-align: center;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 50%;
  margin-right: 15px;
}
.social-icon li:last-child a {
  margin-right: 0px;
}
/**
 * -----------------------------------
 * Subscription and contact  "MESSAGE"
 * -----------------------------------
 */
.subscription-success,
.subscription-failed,
.email-success,
.email-failed,
.email-loading {
  font-size: 15px;
  display: none;
  text-align: center !important;
  padding: 10px !important;
}
.email-loading {
  color: #52B8FF;
}
.email-loading img {
  width: 15px;
  position: relative;
  top: -2px;
}
.subscription-failed,
.email-failed {
  color: #FF5252 !important;
}
.subscription-failed .icon,
.email-failed .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}
.subscription-success,
.email-success {
  color: #56CC35;
}
.subscription-failed .icon,
.email-failed .icon,
.subscription-success .icon,
.email-success .icon {
  font-size: 20px;
  position: relative;
  top: 5px;
}
/**
 * ------------------
 * Form Style
 * ------------------
 */
.single-form {
  width: 100%;
  display: inline-table;
}
.single-form .form-control {
  font-size: 15px;
  font-weight: 400;
  border: 2px solid;
  box-shadow: 0 0 0 0 #fff;
  height: 66px;
  text-align: left;
  margin-bottom: 20px;
  padding: 0 20px;
  background-color: transparent;
  -webkit-border-radius: 0 ;
  -moz-border-radius: 0 ;
  -ms-border-radius: 0 ;
  -o-border-radius: 0 ;
  border-radius: 0 ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.single-form .form-control,
.single-form .btn {
  height: 55px;
}
.single-form textarea {
  height: 175px !important;
  padding: 10px 15px !important;
}
.single-form .select-outer {
  position: relative;
}
.single-form .select-outer::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 15px;
  border-width: 7px 6px;
  border-style: solid;
}
.single-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
.single-form .btn {
  margin-top: 10px;
  font-weight: 400;
}
.single-form .form-group {
  margin: 0px;
}
.single-form .p-right {
  padding-left: 0px;
}
.single-form .p-left {
  padding-right: 0px;
}
.single-form .m-right {
  margin-right: 0px;
}
.single-form .m-left {
  margin-left: 0px;
}
/**
 * ----------------------
 * CONTAINER HALF CONTENT
 * ----------------------
 */
.content-half {
  position: relative;
}
.container-half {
  position: absolute;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  width: 43%;
}
.container-half.pr30 {
  width: calc(50% - 30px);
}
.container-half-left {
  left: 0;
  background-position: 50% 50%;
}
.container-half-right {
  right: 0;
  background-position: 50% 50%;
}
/**
 * ---------------------------------
 *  Section Background Size Property
 * ---------------------------------
 */
.bg-cover {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: initial;
  background-repeat: no-repeat;
}
/**
 * --------------------
 *  Defult Margin Class
 * --------------------
 */
.margin-t-15 {
  margin-top: 15px;
}
.margin-r-15 {
  margin-right: 15px;
}
.margin-b-15 {
  margin-bottom: 15px;
}
.margin-l-15 {
  margin-left: 15px;
}
.margin-t-20 {
  margin-top: 20px;
}
.margin-r-20 {
  margin-right: 20px;
}
.margin-b-20 {
  margin-bottom: 20px;
}
.margin-l-20 {
  margin-left: 20px;
}
.margin-t-30 {
  margin-top: 30px;
}
.margin-r-30 {
  margin-right: 30px;
}
.margin-b-30 {
  margin-bottom: 30px;
}
.margin-l-30 {
  margin-left: 30px;
}
.margin-t-40 {
  margin-top: 40px;
}
.margin-r-40 {
  margin-right: 40px;
}
.margin-b-40 {
  margin-bottom: 40px;
}
.margin-l-40 {
  margin-left: 40px;
}
.margin-t-50 {
  margin-top: 50px;
}
.margin-r-50 {
  margin-right: 50px;
}
.margin-b-50 {
  margin-bottom: 50px;
}
.margin-l-50 {
  margin-left: 50px;
}
/**
 * ---------------------
 *  Defult Padding class
 * ---------------------
 */
.padding-t-15 {
  padding-top: 15px;
}
.padding-r-15 {
  padding-right: 15px;
}
.padding-b-15 {
  padding-bottom: 15px;
}
.padding-l-15 {
  padding-left: 15px;
}
.padding-t-20 {
  padding-top: 20px;
}
.padding-r-20 {
  padding-right: 20px;
}
.padding-b-20 {
  padding-bottom: 20px;
}
.padding-l-20 {
  padding-left: 20px;
}
.padding-t-30 {
  padding-top: 30px;
}
.padding-r-30 {
  padding-right: 30px;
}
.padding-b-30 {
  padding-bottom: 30px;
}
.padding-l-30 {
  padding-left: 30px;
}
.padding-t-40 {
  padding-top: 40px;
}
.padding-r-40 {
  padding-right: 40px;
}
.padding-b-40 {
  padding-bottom: 40px;
}
.padding-l-40 {
  padding-left: 40px;
}
.padding-t-50 {
  padding-top: 50px;
}
.padding-r-50 {
  padding-right: 50px;
}
.padding-b-50 {
  padding-bottom: 50px;
}
.padding-l-50 {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .container-half-left,
  .container-half-right {
    display: none;
  }
}
@media (max-width: 767px) {
  /**
     * ----------------
     *  Defult CSS
     * ----------------
     */
  html *,
  body,
  p {
    text-align: center;
  }
  h1 {
    font-size: 45px;
    line-height: 65px;
    font-weight: 300;
  }
  h2 {
    font-size: 38px;
    line-height: 55px;
    font-weight: 300;
  }
  /**
     * ------------------------------------
     *  Every Section Headline Defult Class
     * ------------------------------------
     */
  .section-header {
    margin-bottom: 80px;
  }
  .section-header .sub-heading {
    font-size: 24px;
    line-height: 30px;
  }
  /**
     * ---------------------
     *   Defult Button Style
     * ---------------------
     */
  /**
     * -------------------------------
     *  Section Top and Bottom padding
     * -------------------------------
     */
  .section-separator {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /**
     * -----------------
     * Nav Defult Style
     * -----------------
     */
  ul,
  li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  li {
    display: inline-block;
  }
  /**
     * ----------------
     *   Helping Class
     * ----------------
     */
  .vertical-middle {
    display: block;
  }
  .display-table {
    width: auto;
    height: auto;
  }
}
/*
|===================
| GENERAL CSS
|===================
*/
h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 60px;
  line-height: 80px;
  font-weight: bold;
}
h2 {
  font-family: 'Roboto', sans-serif;
    font-size: 44px;
    line-height: 60px;
  font-weight: bold;
}
h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  line-height: 40px;
}
h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-transform: capitalize;
}
p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 30px;
  opacity: 0.8;
}
.tagline {
  font-size: 16px;
  line-height: 28px;
  opacity: 0.7;
}
.btn {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  line-height: 30px;
  font-weight: 600;
  width: 280px;
  text-decoration: none;
  background-color: #009688;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  padding: 20px 50px;
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
}
.btn .fa {
  margin-left: 20px;
}
.btn:hover,
.btn:focus,
.btn:active {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -ms-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -o-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  color: #fff;
  background-color: #6227e7;
}
.fixed-bg {
  background-attachment: fixed;
}
.section-separator {
  padding: 80px 0;
}
.section-title {
  margin-bottom: 80px;
  padding: 0 200px;
  text-align: center;
}
.section-title h2 {
  text-transform: capitalize;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
.home {
  background: url(../images/header-bg.jpg) no-repeat top;
  background-size: cover;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.home .color-overlay {
  padding: 180px 0;
}
.home .home-content {
  padding: 0 200px;
}
.home .home-content h1 {
  text-transform: capitalize;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.home .home-content p {
  margin-bottom: 50px;
}
.color-overlay {
  background: rgba(0, 0, 0, 0.8);
}
.black-bg {
  background-color: #202026;
  color: #fff;
}
.white-bg {
  background-color: #fff;
  color: #000;
}
.button {
  text-align: center;
  margin-top: 30px;
}
/*
|===================
| NAVBAR
|===================
*/
.navbar {
  border: none;
  background: transparent;
  min-height: initial;
  padding: 20px 0 20px 0;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navbar-brand img {
  margin-top: -5px;
}
.navbar-right {
  margin-right: 0;
}
.navbar-nav > li {
  padding: 0 15px;
}
.navbar-nav > li:last-child {
  padding-right: 0;
}
.navbar-nav > li > a {
  color: #fff;
  font-size: 18px;
  padding: 15px 0;
  font-family: 'Lora', serif;
}
.navbar.active {
  padding: 6px 0 8px 0;
  -webkit-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -moz-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -ms-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  -o-box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) ;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  color: #fff;
}
.navbar-nav > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 3px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.navbar-nav > li > a:hover:before,
.navbar-nav > li.active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #fff;
}
.navbar-nav > li > a .fa {
  color: #f03c4d;
  margin: 0 8px 0 0;
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
  background: none;
}
.strict {
  background-color: rgba(0, 0, 0, 0.9);
}
/*
|===================
| SERVICE
|===================
*/
.service {
  text-align: center;
}
.service-item .item {
  padding: 30px 20px;
  background-color: #fff;
  -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.service-item .item h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000;
  opacity: 0.9;
}
.service-item .item p {
  margin-bottom: 40px;
}
.service-item .item a {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
}
.service-item .item a .fa {
  margin-left: 20px;
}
.service-item .item a:hover {
  color: #009688;
}
.service-item .item:hover {
  -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -ms-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -o-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*
|===================
| ABOUT
|===================
*/
.about-content h2 {
  margin-bottom: 40px;
}
.about-content p {
  margin-bottom: 50px;
}
.about-content .btn{
  background-color: transparent;
  border: 2px solid #fff;
}
.about-content .btn:hover{
  border: 2px solid transparent;
}

/*
|===================
| TESTIMONIAL
|===================
*/
.testimonial {
  position: relative;
  z-index: 50;
  background-color: #f6f6f6;
}
.testimonial .part-2 {
  margin-top: 50px;
}
.testimonial .part-2 .clients-logo {
  display: inline-block;
  text-align: center;
}
.testimonial .part-2 .clients-logo li {
  display: inline-block !important;
  text-align: center;
  float: none;
  width: 19%;
  padding: 0 15px;
}
.testimonial .part-2 .clients-logo li a {
  margin: 0 40px 5px 40px;
  padding: 0;
  opacity: 0.5;
}
.testimonial .part-2 .clients-logo li a img {
  width: 100%;
  max-width: 100px;
  margin: auto;
}
.testimonial-content {
  text-align: center;
  padding: 80px 100px;
  background-color: #fff;
}
.testimonial-content .user {
  margin-bottom: 30px;
}
.testimonial-content .user img {
  height: 150px;
  width: 150px;
  -webkit-border-radius: 80px ;
  -moz-border-radius: 80px ;
  -ms-border-radius: 80px ;
  -o-border-radius: 80px ;
  border-radius: 80px ;
  display: block;
  float: none;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.testimonial-content .user span {
  font-size: 17px;
  line-height: 32px;
  opacity: 0.6;
  font-family: 'Roboto', sans-serif;
}
.testimonial-content .clients p {
  font-size: 20px;
  line-height: 35px;
  opacity: 1;
}
.testimonial-content .user p {
  font-size: 20px;
  line-height: 36px;
  opacity: 0.9;
}
.owl-nav {
  width: 140px;
  float: none;
  margin: 0 auto;
  margin-top: 50px;
  overflow: hidden;
}
.owl-prev {
  float: left;
}
.owl-next {
  float: right;
}
.owl-prev .fa,
.owl-next .fa {
  background: #e9e9e9;
  font-size: 22px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: #000;
  position: relative;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.owl-prev .fa:hover,
.owl-next .fa:hover {
  background-color: #009688;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}
/*
|===================
| FAQ
|===================
*/
.faq {
  position: relative;
  z-index: 50;
}
.faq .section-title h2 {
  text-transform: uppercase;
}
.faq .faqs {
  padding: 40px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05) ;
  -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05) ;
  -ms-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05) ;
  -o-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05) ;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.05) ;
  -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.faq .faqs h4 {
  margin-bottom: 20px;
}
.faq .faqs p {
  font-size: 16px;
  opacity: 0.8;
}
.faq .faqs a {
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
}
.faq .faqs a .fa {
  margin-left: 20px;
}
.faq .faqs a:hover {
  color: #009688;
}
.faq .faqs:hover {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -ms-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -o-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
}
/*
|===================
| QUATE
|===================
*/
.quate .section-separator {
  padding: 50px 0;
}
.quate .button {
  margin-top: 10px;
}
.get-quate h2 {
  font-size: 34px;
}
/*
|===================
| SUBSCRIBE
|===================
*/
.subcribe {
  position: relative;
  overflow: hidden;
}
.subcribe .spam {
  position: relative;
  border-radius: 50%;
  height: 150px;
  width: 150px;
    background: #FF4D4D;
  float: none;
  margin: auto;
  display: table;
  margin-top: 50%;
  text-align: center;
}
.subcribe .spam span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: table-cell;
  vertical-align: middle;
}
.subscribe-form {
  position: relative;
}
.red-circle {
  position: absolute;
  right: 12%;
}
.circle-bg {
  height: 300px;
  width: 300px;
  background: #FF4D4D;
  background: #4c555b;
  border-radius: 50%;
  position: absolute;
  right: -100px;
  top: -100px;
  z-index: 0;
}
#mailchimp-subscribe {
  margin: 0 auto;
  text-align: center;
}
#mailchimp-subscribe .form-control {
  height: 60px;
  border-radius: 40px;
  padding: 6px 30px;
  width: 50%;
  background: #313137;
  font-size: 16px;
  float: none;
  font-weight: bold;
   font-family: 'Roboto', sans-serif;
  -webkit-box-shadow: inherit ;
  -moz-box-shadow: inherit ;
  -ms-box-shadow: inherit ;
  -o-box-shadow: inherit ;
  box-shadow: inherit ;
  display: inline;
  border: 1px solid #494949;
}
#mailchimp-subscribe .form-control:hover,
#mailchimp-subscribe .form-control:focus {
  border-color: #494949;
  -webkit-box-shadow: inherit ;
  -moz-box-shadow: inherit ;
  -ms-box-shadow: inherit ;
  -o-box-shadow: inherit ;
  box-shadow: inherit ;
}
.contact-btn {
  width: 65px;
  height: 65px;
  border-radius: 50px;
  float: none;
  display: inline;
  margin-left: 20px;
  padding: inherit;
}
.contact-btn .fa {
  margin-left: 0;
}
.subscriber-form {
  width: 90%;
}
/*
|===================
| PRICING
|===================
*/
.price-content {
  text-align: center;
}
.price-item {
  background: #fff;
  padding: 50px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
}
.price-item .price h2 {
  font-size: 74px;
  line-height: 70px;
  margin-bottom: 50px;
  font-weight: lighter;
}
.price-item h4 {
  margin-bottom: 30px;
}
.price-item ul li {
  font-size: 16px;
  line-height: 22px;
  display: block;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-family: 'Lora', serif;
}
.price-item .btn {
  margin-top: 30px;
  width: 230px;
  padding: 20px 0px;
  background-color: #fff;
  border: 2px solid #bdbdbd;
  color: #000;
}
.price-item .btn:hover {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
  background-color: #009688;
}
.price-item:hover {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -ms-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -o-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
}
/*
|===================
| BLOG
|===================
*/
.blog .button {
  margin-top: 50px;
}
.blog-posts .post-item {
  background-color: #fff;
  -webkit-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(0) translateZ(0) rotate(0deg) scale(1) ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.blog-posts .post-item .item-content {
  text-align: center;
  padding: 20px 20px 30px 20px;
}
.blog-posts .post-item .item-content h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000;
  opacity: 0.9;
}
.blog-posts .post-item .item-content span {
  opacity: 0.7;
}
.blog-posts .post-item .item-content p {
  margin-bottom: 20px;
  margin-top: 10px;
}
.blog-posts .post-item .item-content a {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  opacity: 0.9;
}
.blog-posts .post-item .item-content a .fa {
  margin-left: 20px;
}
.blog-posts .post-item .item-content a:hover {
  color: #009688;
}
.blog-posts .post-item:hover {
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -moz-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -ms-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -o-box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  box-shadow: 0 21px 65px 0 rgba(0, 0, 0, 0.12) ;
  -webkit-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -moz-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -ms-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  -o-transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
  transform: translateX(0) translateY(-5px) translateZ(0) rotate(0deg) scale(1) ;
}
/*
|===================
| FOOTER
|===================
*/
.footer .section-separator {
  padding-bottom: 40px;
}
.footer-item h4 {
  font-size: 22px;
  line-height: 33px;
  opacity: 0.5;
  margin-bottom: 30px;
}
.footer-item ul li {
  margin-bottom: 5px;
  display: block;
}
.footer-item ul li a {
  color: #000;
  font-size: 18px;
  line-height: 34px;
  font-family: 'Lora', serif;
}
.footer-item ul li span {
  font-size: 16px;
  line-height: 30px;
  opacity: 0.7;
  font-family: 'Roboto', sans-serif;
}
.footer-item .phone {
  margin-top: 20px;
}
.footer-item .form-control {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  border: 0px solid transparent;
  border-bottom: 1px solid #bdbdbd;
  border-bottom-color: rgba(88, 88, 88, 0.9);
  -webkit-box-shadow: 0 0 0 0 transparent ;
  -moz-box-shadow: 0 0 0 0 transparent ;
  -ms-box-shadow: 0 0 0 0 transparent ;
  -o-box-shadow: 0 0 0 0 transparent ;
  box-shadow: 0 0 0 0 transparent ;
  min-height: 55px;
  text-align: left;
  margin-bottom: 30px;
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0 0 0 0 ;
  -moz-border-radius: 0 0 0 0 ;
  -ms-border-radius: 0 0 0 0 ;
  -o-border-radius: 0 0 0 0 ;
  border-radius: 0 0 0 0 ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-item .btn.disabled,
.footer-item .btn[disabled],
.footer-item fieldset[disabled] {
  background-color: #999;
}
.btn-form {
  text-align: left;
}
#msgSubmit {
  margin-top: 0 !important;
}
.social {
  margin-top: 30px;
}
.social ul li {
  display: inline-block;
  margin: auto 6px;
}
.social ul li a {
  height: 40px;
  width: 40px;
  background: #000;
  opacity: 0.7;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
}
.social ul li a .fa {
  opacity: 1;
}
.social ul li a:hover {
  background-color: #009688;
  color: #fff;
  opacity: 1;
}
.social ul li:first-child {
  margin-left: 0;
}
.social ul li:last-child {
  margin-right: 0;
}
.contact ul li {
  margin-bottom: 0;
}
.urgent-contact {
  overflow: hidden;
  margin-top: 10px;
}
.urgent-contact .phone h4,
.urgent-contact .email h4 {
  opacity: 0.5;
}
.urgent-contact .phone a,
.urgent-contact .email a {
  color: #000;
  opacity: 0.8;
}
/*
|===================
| COPYRIGHT
|===================
*/
.copyright {
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
  opacity: 0.8;
  font-family: 'Lora', serif;
}
.copyright a {
  color: #000;
  opacity: 0.8;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.copyright a:hover {
  color: #009688;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/**
 * ===================================
 * Blog Post Body Style
 * ===================================
 */
.mash {
  background-color: #009688 !important;
  color: #fff;
  -webkit-border-radius: 15px ;
  -moz-border-radius: 15px ;
  -ms-border-radius: 15px ;
  -o-border-radius: 15px ;
  border-radius: 15px ;
  padding: 5px !important;
}
.dark {
  background-color: #000 !important;
  color: #fff;
  -webkit-border-radius: 15px ;
  -moz-border-radius: 15px ;
  -ms-border-radius: 15px ;
  -o-border-radius: 15px ;
  border-radius: 15px ;
  padding: 5px !important;
}
.blog-header {
  background: url(../images/blog-bg.png) no-repeat top;
  background-size: cover;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.blog-header .color-overlay {
  padding: 40px 0;
}
.each-blog {
  padding: 30px;
  margin: 50px 0;
}
.each-blog .button {
  margin-bottom: 30px;
  margin-top: 0px;
}
.each-blog ul {
  margin: 20px 0;
}
.each-blog ul li {
  display: inline;
  margin-right: 10px;
}
.each-blog ul li a {
  font-family: 'Lora', serif;
}
.each-blog ul li a:hover {
  color: #fff;
}
.each-blog .post-option {
  margin-bottom: 0;
}
.each-blog .post-option span {
  margin-right: 10px;
  font-family: 'Lora', serif;
}
.each-blog .post-option span .fa {
  margin-right: 5px;
}
.each-blog .post-option .by a {
  margin-left: 5px;
}
.each-blog .post-option .comment a,
.each-blog .post-option .by a {
  font-family: 'Lora', serif;
}
.single-post {
  margin-bottom: 50px;
  background-color: #fff;
  padding: 20px;
}
.single-post .video {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}
.single-post .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: none;
}
.single-post p {
  margin-bottom: 10px;
}
.single-post .readmore {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  opacity: 0.9;
}
.single-post .readmore .fa {
  margin-left: 20px;
}
.single-post .readmore:hover {
  color: #009688;
}
.sidebar {
  margin-top: 80px;
  margin-bottom: 50px;
  padding: 15px;
  overflow: hidden;
}
.sa-search .single-form {
  margin-top: 0;
}
.sa-search .single-form .form-control {
  text-align: left;
}
.sa-search .single-form .form-control,
.sa-search .single-form .btn-style {
  background-color: transparent;
  border: 0px solid #fff;
  border-bottom: 1px solid;
  margin: 0 !important;
  height: 40px !important;
}
.sa-search .single-form .btn-style {
  padding: 9px 15px;
}
.recent-post {
  margin-bottom: 0px;
}
.recent-post a {
  margin-bottom: 13px;
  overflow: hidden;
}
.recent-post a .image {
  float: left;
}
.recent-post a img {
  max-width: 81px !important;
  opacity: 1;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.recent-post a img:hover {
  opacity: 0.7;
}
.recent-post a p {
  line-height: 21px;
  display: block;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 5px 5px 20px;
  margin: 0;
  color: #000;
  font-weight: bold;
  opacity: 0.9;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.recent-post a span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #000;
  opacity: 0.7;
}
.recent-post li:last-child a {
  margin-bottom: 0px !important;
}
.banner img {
  float: none;
  margin: 0 auto;
  text-align: center;
}
.comments {
  margin-top: 30px;
}
.single-comment {
  overflow: hidden;
  margin-top: 30px;
  background-color: #fff;
}
.post-comment {
  margin-top: 30px;
  padding: 30px;
}
.post-comment .form-control {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  border: 0px solid transparent;
  border-bottom: 1px solid #bdbdbd;
  border-bottom-color: rgba(88, 88, 88, 0.9);
  -webkit-box-shadow: 0 0 0 0 transparent ;
  -moz-box-shadow: 0 0 0 0 transparent ;
  -ms-box-shadow: 0 0 0 0 transparent ;
  -o-box-shadow: 0 0 0 0 transparent ;
  box-shadow: 0 0 0 0 transparent ;
  min-height: 50px;
  text-align: left;
  margin-bottom: 30px;
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0 0 0 0 ;
  -moz-border-radius: 0 0 0 0 ;
  -ms-border-radius: 0 0 0 0 ;
  -o-border-radius: 0 0 0 0 ;
  border-radius: 0 0 0 0 ;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.comment-details {
  padding: 15px;
}

/*About section image*/
.feature{
  margin-top: 100px;
  width: 100%;
}

@media screen and (max-width: 991px){
  .feature{
    margin-top: 0;
  }

  .center{
    text-align: center;
  }
}
