@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,600');


/*font-family: 'Roboto', sans-serif;
font-family: 'Roboto', sans-serif;
*/

body {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  /*overflow-x: hidden;*/
}

p {
  margin-bottom: 25px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.noPadding {
  padding: 0;
}

a.btn,
button,
.btn {
  color: #fff;
  background: #000;
  font-weight: 500;
  padding: 14px 28px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  border-radius: 0;
  font-size: 15px;
  width: auto;
  text-transform: uppercase;
  border-radius: 0;
}

a.btn:hover,
a.btn:focus,
a.btn:active,
.btn:hover,
.btn:focus,
.btn:active,
button:hover,
button:focus,
button:active {
  background: #bf82b9;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  color: #fff;
}

a.btn.btn-dark,
button.btn.btn-dark {
  background: #000;
}

a.btn.btn-dark:hover,
a.btn.btn-dark:focus,
a.btn.btn-dark:active,
button.btn.btn-dark:hover,
button.btn.btn-dark:focus,
button.btn.btn-dark:active {
  background: #ed1b24;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Times New Roman", serif;
  font-weight: 500;
  color: #000;
}

h2 {
  font-size: 32px;
}

h3 {
  color: #000;
  font-weight: 500;
  font-size: 24px;
  text-transform: capitalize;
}

.heading-left,
.heading-center {
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 18px;
  letter-spacing: 1.8px;
}

.heading-center {
  text-align: center;
}

.heading-light {
  color: #fff;
}

.heading-light span {
  color: #ed1b24;
}

h3.heading-left,
h3.heading-center {
  line-height: 0.8;
}
header {
  font-family: 'Calibri', sans-serif;
}
header .social {
  position: fixed;
  width: 50px;
  top: 50%;
  right: 0;
  z-index: 2;
  margin-top: -75px;
}
header .social i {
  text-rendering: optimizeLegibility;
}
header .social a {
  display: block;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 22px;
  padding-top: 10px;
  text-align: center;
}
header .social a:nth-child(1) {
  background: #3b5998;
}
header .social a:nth-child(2) {
 background: #0077B5;
}
header .social a:nth-child(3) {
  background: #0077B5;
}
header .social a:nth-child(4) {
    background: #00aced;
}
section {
  padding-top: 55px;
  padding-bottom: 60px;
}

section h2.heading-left,
section h2.heading-center {
  margin-top: 0;
}
form input[type="submit"]{
	color: #fff;
    background: #000;
    font-weight: 500;
    padding: 14px 28px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    border-radius: 0;
    font-size: 15px;
    width: auto;
    text-transform: uppercase;
    border-radius: 0;
}


section h2.heading-left {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 25px;
  margin-bottom: 30px;
}

section p:last-child {
  margin-bottom: 0;
}

ul.no-list {
  padding-left: 0;
}

ul.no-list li {
  display: inline-block;
  list-style: none;
}

.btn-wpr {
  margin: 0 auto;
  width: 100%;
  max-width: 175px;
}







/*--- pre loader ---*/

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: #fff;
  /*background: url('../images/preloader-small.gif') center no-repeat #fff;*/
}

@-webkit-keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader {
  position: absolute;
  margin: -18px 0 0 -18px;
  border: 3.6px solid #ed1b24;
  box-sizing: border-box;
  overflow: hidden;
  width: 36px;
  height: 36px;
  left: 50%;
  top: 50%;
  animation: loader-spin 2s linear infinite reverse;
  -webkit-filter: url(#goo);
  filter: url(#goo);
  box-shadow: 0 0 0 1px #ed1b24 inset;
}

.loader:before {
  content: "";
  position: absolute;
  -webkit-animation: loader-spin 2s cubic-bezier(0.59, 0.25, 0.4, 0.69) infinite;
  animation: loader-spin 2s cubic-bezier(0.59, 0.25, 0.4, 0.69) infinite;
  background: #ed1b24;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  border-radius: 50%;
  width: 150%;
  height: 150%;
  top: 50%;
  left: -12.5%;
}







/*--- /pre-loader ---*/


/*-- pre header --*/

.pre-bg {
  /*background: #fff;*/
}

.pre-header {
  min-height: 108px;
}

.pre-header ul {
  padding: 0;
  margin: 0;
}

.pre-header li {
  display: inline-block;
  list-style: none;
}

.pre-header ul.social-info {
  float: left;
}

.pre-header ul.contact-info {
  float: right;
}

.pre-header .social-info i {
  font-size: 20px;
  color: #000;
  padding-right: 4px;
  padding-top: 14px;
}

.pre-header .social-info a:hover i {
  color: #bf82b9;
}

.pre-header .contact-info li {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding-left: 6px;
  padding-top: 10px;
}

.pre-header .contact-info i {
  font-size: 14px;
}

.pre-header .contact-info li:nth-child(1) a {
  margin-right: 20px;
}

.pre-header .contact-info li:nth-child(1) a,
.pre-header .contact-info li:nth-child(2) a {
  color: #fff;
  padding-left: 8px;
}

.sec-left {
  float: left;
}

.sec-right,
.social_search {
  float: right;
}

.pre-header .top-btn {
  text-align: right;
}

.pre-header .top-btn .btn {
  background: #0d4881;
  padding: 7px 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.pre-header .top-btn .btn:hover {
  background: #bf82b9;
}

.pre-header .social_search {
  margin-top: 14px;
}

.pre-header .social_search span {
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

.pre-header .pdt_search {
  position: relative;
  top: -4px;
}

.pre-header .pdt_search i {
  position: absolute;
  top: -4px;
  right: 4px;
  color: #8e8e8e;
  font-size: 15px;
}

.pre-header .social_search span.seprator {
  width: 1px;
  height: 21px;
  background: #d0d0d0;
  display: inline-block;
  margin: 0 5px;
  position: relative;
  top: 3px;
}

.pre-header .social_search input {
  border: 1px solid #8e8e8e;
  min-width: 250px;
  height: 35px;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #8e8e8e;
  /*font-family: 'Calibri', sans-serif;*/
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 500;
}







/*-- /pre header --*/


/*--- nav ---*/

.navbar {
  margin-bottom: 0;
  min-height: auto;
  border: 0;
  z-index: 9;
}

.navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.navbar-default .navbar-nav>li>a {
  font-size: 15.8px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  /*padding: 9px 26.8px;*/
  padding: 9px 23.8px;
  font-family: 'Calibri', sans-serif;
  background: #bf82b9;
  margin-left: 2px;
}

.navbar-default .navbar-nav li:first-child a {
  margin-left: 0;
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
  color: #fff;
  background: #0d4881;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.nav.navbar-nav>li.current_page_item>a:hover{
  color: #fff;
  background: #0d4881;
}

.navbar-default .navbar-nav>li.current-menu-parent>a , .nav.navbar-nav>li.current_page_item>a{
  color: #fff;
  background: #0d4881;
}







/*.navbar-default .navbar-nav>li:last-child>a {
  padding-right: 0;
}*/

.navbar-default {
  background-color: transparent;
  border-color: transparent;
}

.navbar-brand {
  padding-top: 10px;
  padding-bottom: 0;
}

.dropdown-menu {
  padding: 0;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
  color: #fff;
  background-color: #bf82b9;
}

.dropdown-menu>li>a {
  padding: 8px 20px;
}




/*--- dropdown-submenu ---*/

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #ffffff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}




/* --/dropdown-submenu ---*/


/*--- /nav ---*/


/*-- slider--*/

.container-fluid.noPadding {
  /*z-index: 888;*/
  position: relative;
}

.main-carousel {
  z-index: 0;
}

.main-carousel .slide-item {
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
}

.main-carousel .slide-item img {
  opacity: 1;
}

.main-carousel .slide-text {
  position: absolute;
  left: 10%;
  top: 50%;
  z-index: 9999
}

.main-carousel .slide-text h1 {
  font-size: 40px;
  text-transform: uppercase;
  color: #0d4881;
  line-height: 50px;
  font-weight: 700;
  font-family: "Times New Roman", serif;
  text-shadow: 3px 2px 4px rgba(255, 255, 255, 0.5);
}

.main-carousel .slide-text span {
  color: #ed1b24;
}

.main-carousel .slide-text h3 {
  font-size: 28px;
  text-transform: capitalize;
  color: #fff;
  line-height: 36px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  margin-top: 0;
}

.main-carousel .slide-text a.btn {
  margin-top: 34px;
  width: auto;
  background: #bf82b9;
  color: #fff;
  font-weight: 700;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.main-carousel .slide-text a.btn:hover {
  background: #000;
  color: #fff;
}







/*-- /slider--*/


/*-- about --*/

section.about_us {
  position: relative;
  padding-top: 90px;
  padding-bottom: 80px;
  border-top: 1px solid #fff;
}

.about_us:before {
  content: '';
  position: absolute;
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about_us:after {
  content: '';
  position: absolute;
  background: rgba(191, 130, 185, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about_us .content {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 3px 25px;
  margin-bottom: 50px;
}

.about_us .content a.btn {
  margin-top: 12px;
  width: 150px;
  margin-bottom: 22px;
}

.about_us h2 {
  font-size: 32px;
  font-weight: 700;
}

.about_us p {
  color: #8e8e8e;
  margin-bottom: 15px;
  text-align: justify;
  line-height: 24px;
}

.about_us .features {
  position: relative;
  z-index: 2;
}

.about_us .features li {
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 290px;
  height: 235px;
}






/*.about_us .features li:nth-child(1),
.about_us .features li:nth-child(2) {
  margin-bottom: 50px;
}

.about_us .features li:nth-child(1),
.about_us .features li:nth-child(3) {
  margin-right: 48px;
}
*/

.about_us .features .desc h3 {
  font-size: 20px;
  font-family: 'Calibri', sans-serif;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.about_us .features .desc p {
  text-align: center;
}

.about_us .features .item {
  display: block;
  vertical-align: middle;
  min-height: 160px;
  margin-top: 37px;
}

.about_us .features li:nth-child(2n) .item {
  padding-top: 10px;
}







/*-- /about-us --*/


/*-- feature-product --*/

.feature_product li {
  width: 240px;
  vertical-align: top;
  margin-right: 54px;
}

.feature_product li:last-child {
  margin-right: 0;
}

.feature_product .item {
  border: 1px solid transparent;
  min-height: 304px;
}

.feature_product .item:hover {
  border: 1px solid #bf82b9;
}

.feature_product .item p {
  font-family: 'Calibri', sans-serif;
  position: relative;
  font-size: 19px;
  font-weight: 500;
  color: #151515;
  letter-spacing: 2px;
  padding-left: 45px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.feature_product .item p:before {
  content: '';
  position: absolute;
  width: 32px;
  height: 4px;
  background: #000;
  top: 10px;
  left: 0;
}

.feature_product .item:hover p:before {
  background: #bf82b9;
}

.feature_product .owl-carousel .owl-nav .owl-next,
.feature_product .owl-carousel .owl-nav .owl-prev {
  border: 1px solid #ebebeb;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 58px;
  display: inline-block;
  margin-left: 10px;
}

.feature_product .owl-nav {
  right: 0;
  position: absolute;
  top: -102px;
  display: block !important;
}

.feature_product .owl-nav .fa,
.feature_product .owl-nav .fas {
  font-weight: 900;
  font-size: 20px;
  color: #000;
}







/*-- feature-product --*/


/*-- team --*/

.team .item {
  border: 1px solid transparent;
  min-height: 350px;
}

.team .item:hover {
  border: 1px solid #bf82b9;
}

.team .item .desc {
  background: #bf82b9;
  min-height: 110px;
  padding: 21px 10px;
}

.team .item p {
  font-family: 'Calibri', sans-serif;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}

.team .item p span {
  font-size: 14px;
  display: block;
  line-height: 16px;
  padding-top: 10px;
}

.team .owl-carousel .owl-nav .owl-next,
.team .owl-carousel .owl-nav .owl-prev,
.membership .owl-carousel .owl-nav .owl-next,
.membership .owl-carousel .owl-nav .owl-prev {
  border: 1px solid #ebebeb;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 58px;
  display: inline-block;
  margin-left: 10px;
}

.team .owl-nav,
.team .owl-nav,
.membership .owl-nav,
.membership .owl-nav {
  right: 124px;
  position: absolute;
  top: -102px;
  display: block !important;
}

.team .owl-nav .fa,
.team .owl-nav .fas,
.membership .owl-nav .fa,
.membership .owl-nav .fas {
  font-weight: 900;
  font-size: 20px;
  color: #000;
}

.team a,
.membership a {
  float: right;
  top: -10px;
  position: absolute;
  right: 15px;
}

.membership .item img {
  width: auto;
  /*height: 70px;
  border: 1px solid #ccc;
  padding: 5px 10px;*/
  margin: 0 auto;
}

.membership .item {
  height: 70px;
  border: 1px solid #ccc;
  overflow: hidden;
}







/*-- team --*/


/*-- testimonial --*/

.testimonial,
.testimonial-sec {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

.testimonial:before,
.testimonial-sec:before {
  content: '';
  position: absolute;
  background: url(../images/testimonial-bg.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial:after,
.testimonial-sec:after {
  content: '';
  position: absolute;
  background: rgba(191, 130, 185, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.testimonial h2,
.testimonial-sec h2 {
  color: #fff;
  position: relative;
  z-index: 9;
}

.testimonial .item {
  /*width: 500px;*/
  height: 418px;
  background: #fff;
  padding: 15px;
  position: relative;
  z-index: 9;
}

.testimonial .slick-slide {
  zoom: 0.8;
}

.testimonial .slick-current {
  zoom: 1;
}


.testimonial .item .inner-block,
.testimonial-sec .block-info-inne {
  border: 1px solid #e1e1e1;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 45px 30px;
}

.testimonial .item p,
.testimonial-sec p {
  line-height: 24px;
  letter-spacing: 1px;
  color: #8f8f8f;
}

.testimonial .item p.name,
.testimonial-sec p.name {
  font-size: 18px;
  color: #000;
  margin-top: 40px;
}

.testimonial .item .img-box {
  margin-bottom: 35px;
}

.testimonial .item .img-box img {
  margin: 0 auto;
  width: auto;
}

.testimonial-carosuel {
  position: relative;
  z-index: 99;
}

.testimonial-sec .shell {
  position: relative;
  z-index: 1;
}






/*-- /testimonial --*/


/*-- footer --*/

footer {
  background: #bf82b9;
  padding-top: 55px;
  color: #fff;
}

footer h3.heading-left,
footer p,
footer a,
footer .recent-post li a {
  font-weight: 700;
  letter-spacing: 1px;
}

footer h3.heading-left {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
  font-family: 'Calibri', sans-serif;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 36px;
}

footer .contact-info a {
  color: #fff;
  letter-spacing: 1px;
}

footer .contact-info li {
  margin-bottom: 8px;
}

footer .contact-info li i,
.contact-inner {
  font-size: 16px;
  width: 18px;
}

footer .social-footer li i {
  font-size: 20px;
  margin-right: 5px;
}

footer .recent-post li {
  /*margin-bottom: 10px;*/
  position: relative;
      list-style: none;

}

footer .recent-post li:before {
  content: '';
  height: 34px;
  width: 3px;
  position: absolute;
  background: #fff;
  top: 5px;
  left: 0;
}

footer .recent-post li a {
  color: #fff;
  line-height: 22px;
  padding-left: 12px;
}

footer .recent-post li a span.date {
  display: block;
  padding-left: 12px;
}

footer .bits-newsletter input {
  width: 328px;
  height: 49px;
  padding-left: 10px;
  font-weight: 700;
}

footer .bits-newsletter .btn {
  position: relative;
  top: -1px;
  left: -3px;
}

footer .contact-info,
footer .recent-post,
footer .bits-newsletter {
  margin-bottom: 50px;
}

footer .copy {
  background: #ab74a5;
}

footer .copy p {
  line-height: 60px;
  margin-bottom: 0;
}

footer .copy p a {
  color: #fff;
}

footer .copy p:first-child {
  float: left;
}

footer .copy p:last-child {
  float: right;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer li {
  list-style: none;
}


.contact-page i {
  padding-right: 5px;
}

.contact-page p {
  margin-bottom: 8px;
}

.contact-page a {
  color: #8e8e8e !important;
}

.contact-page a:hover {
  color: #bf82b9 !important;
}

.contact-inner .contact-footer .social-footer a i {
  background-color: #3255a2;
  color: #fff;
}

.contact-inner .contact-footer .social-footer a i:hover {
  background: #ed1b24;
  color: #fff;
}

.contact-inner .contact-footer ul.social-footer {
  padding-left: 0;
}

.contact-page iframe {
  margin-top: 20px;
}





/*-- /footer --*/


/*-- inner pages --*/

.inner-slide {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: -1;
}

.inner-slide:before {
  content: '';
  position: absolute;
  background: url("../images/about-bg.jpg") no-repeat;
  background-size: cover !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.inner-slide.contact_us:before {
  background: url("../images/about-bg.jpg") no-repeat;
}

.inner-slide:after {
  content: '';
  position: absolute;
  background: rgba(191, 130, 185, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.inner-slide h1 {
  font-size: 30px;
  text-align: center;
  vertical-align: middle;
  padding: 15px 20px;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #fff;
  display: inline-block;
  margin: 0 auto;
  outline: 1px solid #fff;
  outline-offset: 2px;
}

.inner-slide .inner-title {
  z-index: 1;
  position: relative;
  text-align: center;
  padding-top: 95px;
}

.owl-carousel .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 1;
  margin-left: -11px;
}

.owl-carousel .owl-dot {
  display: inline-block;
  margin-right: 6px;
}

.owl-carousel .owl-dot span {
  height: 10px;
  background: #fff;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
}

.owl-carousel .owl-dot.active span {
  background: #000;
}

.owl-carousel.fleet-carousel .owl-dots {
  bottom: 10px;
}
 

.download-inner .item {
  border: 1px solid #e0e0e0;
  float: left;
  padding: 20px 20px 20px 5px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 17px rgba(0, 0, 0, 0.09);
}

.download-inner .img-wpr {
  float: left;
  margin-right: 20px;
}







/*-- /inner pages --*/


/*--  media queries --*/

@media (min-width: 1200px) {
  footer .service-ftr {
    padding-left: 75px;
  }
  footer .contact-ftr {
    padding-left: 50px;
  }
  .case .desc {
    width: 97.4%;
  }
  .about-img img {
    float: right;
  }
  .about_us .content {
    min-height: 520px;
  }
  /*-- dropdown on hover --*/
  .dropdown:hover .dropdown-menu,
  .btn-group:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu {
    margin-top: 0;
  }
  .dropdown-toggle {
    margin-bottom: 2px;
  }
  .navbar .dropdown-toggle,
  .nav-tabs .dropdown-toggle {
    margin-bottom: 0;
  }
  /*-- /dropdown on hover --*/
  .testimonial-sec .shell {
    margin-left: 25px;
  }
  .about_us .features-1 li {
    width: 30.3%;
  }
}

@media (max-width: 1024px) {
   /*-- toggle collapse --*/
  .navbar-header {
    float: none;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
    width: auto;
  }
  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }
  .navbar-collapse.collapse {
    display: none!important;
  }
  .navbar-nav {
    float: none!important;
    margin-top: 7.5px;
  }
  .navbar-nav>li {
    float: none;
  }
  .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .collapse.in {
    display: block !important;
  }
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .navbar-default .navbar-toggle,
  .navbar-default .navbar-toggle {
    background-color: #bf82b9;
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    right: 21px;
    top: -54px;
  }
  .navbar-default .navbar-toggle:focus,
  .navbar-default .navbar-toggle:hover {
    background-color: #3255a2;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  /* --/toggle collapse --*/
  .pre-header ul.social-info {
    margin-right: 40px;
}
  .stats li {
    padding-left: 0;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 20px;
  }
  body {
    overflow-x: hidden;
  }
  .stats {
    padding: 5px 0;
    margin-top: -50px;
  }
  .about .content {
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 35px;
  }
  .about-img {
    max-width: 412px;
    height: 385px;
    overflow: hidden;
  }
  .about-img img {
    width: 100%;
    height: 100%;
  }
  .navbar-brand>img {
    width: 140px;
    padding-top: 6px;
  }
  .navbar-default .navbar-nav>li>a {
    padding-left: 6px;
    padding-right: 6px;
  }
  .service .desc span {
    display: inline;
  }
  .service li {
    width: 29%;
  }
  .about_us .features li {
    width: 230px;
  }
  footer .bits-newsletter input {
    width: 250px;
  }
  .about_us .features-1 li {
    width: 278px;
  }
  footer .recent-post li a {
    display: inline-block;
  }
  footer .recent-post li a span.date {
    display: block;
    padding-left: 0;
  }
  .navbar-default .navbar-nav>li>a {
    /*padding-left: 16px;
    padding-right: 15px;*/
    padding-left: 12.5px;
    padding-right: 12.5px;
  }
}

@media (min-width: 768px) {
  .navbar-right {
    margin-top: 16px;
  }

  .main-carousel .slide-text {
    margin-top: -106px;
  }
  .about_us .features li {
    margin-bottom: 50px;
  }
  .about_us .features ul {
    margin-bottom: 0;
  }
  /*.about_us .features li:last-child {
  margin-bottom: 0;
}*/
  .about_us .features li:nth-child(odd) {
    margin-right: 48px;
  }
  .about_us .features-1 li:last-child {
    margin-right: 0;
    margin-left: 48px;
  }
  /*.about_us .features-1 li {
    width: 345px;
    margin-bottom: 0;
  }*/
}

@media (max-width: 768px) {

  footer .service-footer li br {
    display: none;
  }

 
  header {
    position: fixed;
    z-index: 9999;
    background: #fff;
    width: 100%;
    box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.5);
    height: 122px;
  }
  .navbar-default .navbar-nav>li>a {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-content {
    padding-top: 120px;
  }

  .features ul {
    text-align: center;
  }
  .about_us .features li {
    width: 330px;
    margin-bottom: 15px;
  }
  /*.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #3255a2;
    position: absolute;
    right: 21px;
    top: -54px;
  }*/
  .pre-header ul.social-info {
    margin-right: 45px;
  }
  .navbar-default .container {
    width: 100%;
    padding: 0;
  }
  .team .item {
    min-height: 400px;
  }
  .team .item img {
    /*width: 320px;*/
    height: auto;
  }
  .team .item p {
    max-width: 180px;
    text-align: left;
  }
  .team .item:hover {
    border: transparent;
  }
  section.team {
    margin-bottom: -40px;
    padding-bottom: 0;
}
}

@media (max-width: 767px) {
  header {
    height: 195px;
  }
  .navbar-default .container {
    width: 100%;
    padding: 15px;
  }
  h2 {
    font-size: 30px;
  }

  .main-carousel .slide-text {
    display: none;
  }
  .pre-header .contact-info a.btn {
    position: absolute;
    top: 0;
    right: 0;
  }
  .pre-header ul.social-info {
    float: none;
    text-align: center;
    width: 67%;
  }
  .pre-header ul.contact-info {
    float: none;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
  }
  .pre-header .contact-info li {
    padding-left: 0;
  }
  .navbar-default .navbar-collapse {
    margin-top: 15px;
  }
  a.btn,
  button {
    width: inherit;
  }
  .main-content {
    padding-top: 195px;
  }
  footer .bits-newsletter input {
    width: 230px;
    height: 50px;
  }
  .team .owl-carousel .owl-nav .owl-next,
  .team .owl-carousel .owl-nav .owl-prev,
  .membership .owl-carousel .owl-nav .owl-next,
  .membership .owl-carousel .owl-nav .owl-prev {
    display: none;
  }
  .about_us .features li {
    width: 100%;
  }
  .pre-header .top-btn {
    margin-top: 25px;
    /*text-align: center;*/
  }
  .pre-header .top-btn .btn {
    padding: 7px 9px;
    font-size: 10px;
    /*margin-top: 25px;*/
  }

  .pre-header li:last-child {
    margin-top: 8px;
  }
  .navbar-toggle {
    position: absolute;
    right: 15px;
    top: -60px;
  }
  .pre-header .social_search {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .sec-left {
    float: none;
    width: 140px;
    margin: 0 auto;
  }
  .navbar-toggle {
    top: -48px;
    padding: 9px 5px;
  }
  .about-inner img {
    padding-left: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .navbar-default .navbar-nav li a,
  .navbar-default .navbar-nav li:first-child a {
    margin-left: 12px;
  }
  .navbar-header {
    margin-top: -42px;
  }
  .inner-slide .inner-title {
    padding-top: 118px;
  }
}

@media (max-width: 375px) {
  .pre-header .top-btn .btn {
    padding: 7px 11px;
    font-size: 10px;
  }
  .pre-header ul.social-info {
    width: 76%;
  }
  .pre-header .top-btn {
    text-align: center;
    margin-top: 10px;
  }
  .pre-header .top-btn a:last-child {
    margin-top: 4px;
  }
  .navbar-brand {
    padding-top: 0;
  }
}

@media (max-width: 320px) {
  .pre-header .contact-info li:nth-child(1) a {
    margin-right: 8px;
  }
  footer .bits-newsletter input {
    width: 178px;
  }
  .pre-header .top-btn .btn {
    padding: 7px 6px;
    font-size: 9px;
  }
  .pre-header ul.social-info {
    width: 87%;
  }
  .navbar-default .navbar-toggle,
  .navbar-default .navbar-toggle {
    top: -48px;
  }
}



.testimonial-sec .block-info>.block-info-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 30px;
  border: 1px solid #ebebeb;
}

.testimonial-sec .block-info {
  background: #fff;
  padding: 15px;
}