

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Oxygen:300,400,700|Ubuntu:400,500,700');@import url(font-awesome.min.css);


body {
  font-family: 'Open Sans', sans-serif;
  color: #848484;
  font-weight: 400; 
  font-size: 14px;
}

a {
  color: #000000;
}

a:hover {
  color: #65c9cd;
  text-decoration: none;
}

button, a, a:hover, a:focus, a:active {
    text-decoration: none;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Ubuntu', sans-serif; line-height: 1.2;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

* {
    margin: 0;
    padding: 0;
}

.btn-primary {
    color: #fff;
    background-color: #ff5c5c;
    border-color: #ff5c5c;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #3fbbc0;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #ff5c5c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ffffff;
  color: #ff5c5c;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #010b63;
  color: #fff;    padding-top: 15px;
    padding-bottom: 15px;
  /*height: 40px;*/line-height: 30px;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;font-size: 16px;
}

.call-links ul {
    margin: 0;
    padding: 0;
}

.call-links ul li {display: inline-block;color: #848484;padding: 0 15px;}

.call-links li:last-child {
    padding-right: 0;
}

.call-links ul li i {color: #ffffff;font-size: 18px;}

.call-links ul li a {    color: #ffffff;text-decoration: none;}
.call-links ul li a:hover {    color: #ff5c5c;}

.social-links a {padding: 0 10px;color: #fff;display: inline-block;}

.social-links a:hover {color: #ff5c5c;}
  
  
 

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*background: #fff;*/background: transparent;
  transition: all 0.5s;
  z-index: 997;padding: 0;
  /*padding: 10px 0;*/
  /*top: 60px;*/
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;background: #ffffff;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 52px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo {
    font-size: 28px;
  }
}

.menu-area {
    transition: .6s;
    padding: 20px 0;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 16px;
}

.nav-menu a {
  display: block;
  position: relative;
 /* color: #ffffff;*/
  transition: 0.3s;
  font-size: 15px;
  
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu a:hover, /*.nav-menu .active > a,*/ .nav-menu li:hover > a {
  color: #ff5c5c;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #000000;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ff5c5c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;font-size: 12px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Appointment Button */
.appointment-btn {
  margin-left: 25px;
  background: #3fbbc0;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #65c9cd;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  /*position: fixed;*/position:absolute;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #010b63;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #555555;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #3fbbc0;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f106";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--Home About --*/

.home-about {}

.home-about h2 {
    color: #000531;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px; text-transform: uppercase;
    position: relative;
}

.home-about h2 span {color: #fb5044;}  

.home-about p {

  color: #484848; 
  font-size: 16px;
  font-weight: 400;
}

.welcome-pic {padding-top: 50px;}

.policy h3 {font-size: 22px;color: #000;font-weight: 600;margin-bottom: 25px; text-decoration: underline;}

.policy ul li { font-size: 16px; list-style: disc; 
  font-weight: 600; color: #000; line-height: 34px;}

  .policy ul {padding-left: 20px; }

.mission { box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    border: 1px solid rgba(0,0,0,.125); padding: 20px; min-height: 250px; margin-bottom: 50px;}

.mission:hover {box-shadow: 0 20px 40px -14px rgb(0 0 0 / 10%);}

.mission img {margin-bottom: 20px; width: 100%; }

.mission-img {-webkit-filter: contrast(90%);
    filter: contrast(90%);
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    transition: -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91), -webkit-filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
 }

 .mission:hover .mission-img {
  -webkit-filter: contrast(100%);
          filter: contrast(100%);
}

.mission h2 {color: #484848; /*text-align: center;*/
  font-size: 24px;font-weight: 600;
    text-transform: uppercase;text-decoration: underline;}

.mission ul li {font-size: 18px; line-height: 28px; display: flex; margin-bottom: 20px;}

.mission li:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    padding-right: 10px;
    color: #969696;
}

/*--------------------------------------------------------------
# Inner Banner
--------------------------------------------------------------*/

.inner-section {
  display: block;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 50px;
}

.all-title-box {
    background: url(../img/about-banner.jpg)no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    padding: 70px 0px;
    position: relative;
}

.all-title-box::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    
    background: rgba(0,0,0,0.30);
    top: 0;
    left: 0;
}

.title-holder {margin: 30px 0 0;}

/* Breadcrumb */
.bread_area {border-bottom: 1px solid #e7e7e7;padding: 10px 0;margin-bottom: 40px;}
.breadcrumb {margin: 0;background:transparent;padding: 0;}

.title-holder h1{
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 0%;
    font-size: 36px;
   /* line-height: 0px;*/
}

.title-holder .breadcrumb li a {
    color: #ffffff;
    font-size: 16px;
}

.title-holder .breadcrumb li a:hover {
    color: #fb5044;
}

.title-holder .breadcrumb li {
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
}

.title-holder .breadcrumb>li+li:before {
    padding: 0 5px;
    color: #fff;
    content: "/\00a0";
}

.title-holder .breadcrumb>.active {
    color: #fb5044;/*text-shadow: 2px 2px 5px #000;*/
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid #3fbbc0;
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #2f2f2f;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
  top: 112px;
}

@media (max-width: 992px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    top: 66px;
  }
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.4);
  border-radius: 50px;
  padding: 10px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(63, 187, 192, 0.6);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #3fbbc0;
}

#hero .btn-get-started {
  
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #3fbbc0;
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }
  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  .inner-products .sidebar-link {display: none;
}
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/*section {
  padding: 60px 0;
  overflow: hidden;
}*/

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  color: #000531;
  font-size: 18px;
    margin-bottom: 30px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative; text-transform: uppercase;
}

.section-title h2 span {color: #fb5044;}

/*.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ff5c5c;
  bottom: 0;
  left: calc(50% - 25px);
}*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {background-color:transparent;
  padding: 20px 0;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;color: #fff;text-transform: uppercase;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;color: #fff;
  font-size: 16px;
}
.breadcrumbs ol li a {color: #ff5c5c;}
.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #ffffff;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .icon-box:hover::before {
  background: #3fbbc0;
  top: 0;
  border-radius: 0px;
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #3fbbc0;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #111;
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.featured-services .icon-box:hover .title a, .featured-services .icon-box:hover .description {
  color: #fff;
}

.featured-services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #3fbbc0;
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  font-size: 28px;
  font-weight: 700;
}

.cta .cta-btn {
  
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #3fbbc0;
}

/* --new inner banner--*/

.inner-banner {
    position: relative;
    background-position: center top;
    background-image: url(images/backgrounds/inner-banner-bg-1-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.inner-banner .container {
    padding-top: 260px;
    padding-bottom: 213px;
    position: relative;
    text-align: center;
}

.inner-banner__title {
    margin: 0;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
}

.thm-breadcrumb {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.thm-breadcrumb li {
    color: #fff;
}

.thm-breadcrumb li + li {
    font-size: 16px;
}

.thm-breadcrumb li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.thm-breadcrumb li a {
    font-size: 16px;
    color: #fff;
}

.thm-breadcrumb li+li:before {
    /*content: '\f105'!important;*/
    font-family: 'Font Awesome'!important;
    font-size: 16px!important;
    color: #fff!important;
    margin-left: 10px;
    margin-right: 10px;
}





/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about {padding: 60px 0; }

.about .content img {margin-bottom: 35px;}

.about .section-title {
  text-align: left;
  padding-bottom: 30px;
}

.about .section-title h2::after {left: calc(0% - 0px);}

.about .content h3 {
  font-weight: 400;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 8px;font-size: 15px;
}

.about .content ul i {
  font-size: 16px;
  padding-right: 4px;
  color: #ff5c5c;
}

.about .content p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}


/*--inner products--*/

.inner-products {padding: 60px 0;}

.inner-products .content h3 {
  font-weight: 600;
  font-size: 24px;
}

.inner-products .content h5 {
  font-weight: 600;
  font-size: 24px;
}

.inner-products .content p {
  font-size: 18px;
}

.inner-products .content img {
  margin-bottom: 25px;
}

.inner-products .content ol li {font-size: 18px;margin-bottom: 15px;}

.inner-products .sidebar-link {}

.inner-products .sidebar-link h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    padding: 16px 24px;
    font-family: sans-serif;
    line-height: 1;
    background: #ff5c5c;
    margin: 0; text-transform: uppercase;
}

.service-box.service-3 {
    border: 2px solid #ff5c5c;
    border-radius: 0px;
    padding: 10px;
    box-shadow: 5px 3px 3px #960d066b;
    /*width: 330px;*/
    min-height: 436px;text-align: center;margin-bottom: 30px;
}

.service-box.service-3:hover {
    border: 0;
    /*transform: scale(1.05);*/
    z-index: 1;
    box-shadow: 0 3px 13px #da241c;
    /*width: 330px;*/
    /*min-height: 359px;*/
}

.service-box.service-3:hover .service-box.service-3 h4 {color: #ff5c5c;}

.service-box.service-3 h4 {
    font-weight: 600; font-size: 24px;line-height: 1.2;color: #222222;
   
}

.service-box {
    border: 2px solid transparent;
    padding: 30px;
    transition: .3s;
}

.service-box.service-3 img {
    margin-bottom: 18px;
    width: 100%;
}

.inner-products .sidebar-link ul {padding: 25px 24px 25px 24px;background-color: #f2f2f2;}

.sidebar-link ul li {
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 20px;
    font-weight: 500;
    padding-bottom: 15px;
}

.sidebar-link ul li, .sidebar-link ul li a {
    color: #000;
    line-height: 1.5;
    font-size: 16px;
    font-family: sans-serif;
    display: block;
}

.sidebar-link ul li a {
    font-weight: 600;
}

.sidebar-link ul li a:hover {color:#ff5c5c;}

.sidebar-link ul li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.table {font-size: 18px;}



::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

td {
    border-radius: 5px;
    border: 2px solid #000;
    padding: 5px 5px 5px 10px;
    margin: 5px;
    
}
/*--inner page--*/

.inner-page { padding: 60px 0; }


.inner-page .content img {margin-bottom: 35px;}

.inner-page .content h3 {
  font-weight: 600;
  font-size: 24px;
}

.inner-page .content ul {
  list-style: none;
  padding: 0;
}

.inner-page .content ul li {
  padding-bottom: 8px;font-size: 15px; color: #222222;
}

.inner-page .content ul i {
  font-size: 16px;
  padding-right: 4px;
  color: #ff5c5c;
}

.inner-page .content p {
  font-size: 18px;
}

.inner-page .content p:last-child {
  margin-bottom: 0;
}


/*--Services--*/

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.recent-work {
    background-color: #f5f5f5;
}

.single-project {
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer; background-color: #fff;box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    
}

.single-project .project-thumb {
    margin-bottom: 0px;
    overflow: hidden;
    position: relative;
}

.single-project:hover img {
    transform: scale(1.1);
}

.single-project .project-thumb img {
    transition: 1s;width: 100%;
}

.single-project .project-desc {padding: 20px 0;}

.single-project h4 {
    margin-bottom: 10px;
    color: #000531;
    font-size: 20px;
    font-weight: 700;
    transition: .6s;
}

.single-project:hover a h4 {
    color: #ffa100;
}


.single-project p {
    line-height: 26px;
    font-size: 14px;
}


/*--Project--*/

.project {}

.project-content img {
  width: 100%;
  margin-bottom: 30px;
}

.project-content h2 {
  color: #333333;
 
  font-weight: 400;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
}

.project-dec p {font-size: 20px; margin: 0 auto; text-align: center;}

.project-dec h2 {font-size: 22px; color: #000; margin-bottom: 20px; text-align: center;}

.project .project-content .project-tags {
  margin: 30px 0;
}
.project .project-content .project-tags ul {
  margin: 0;
  padding: 0;
}
.project .project-content .project-tags ul ul {margin-top: 20px;}
.project .project-content .project-tags ul ul li {padding: 5px 5px 5px 30px;line-height:26px;}
.project .project-content .project-tags ul li {
  list-style: none;
  display:block;
  color: #777777;
  font-size: 18px;
 line-height: 33px;
  font-weight: 500;
  margin-bottom: 2px;
  padding: 15px 25px;
  background: #f7f7f7;
}
.project .project-content .project-tags ul li i {
  color: rgba(255, 92, 92, 0.99);
  margin-right: 10px;
}
.project .project-content .project-tags ul li span {
  color: #333333;
  margin-right: 4px;font-weight: 700;
}
.project .project-content .project-tags ul li:last-child {
  margin-bottom: 0;
}


/*--Project side navigation--*/

.sidebar {
  width: 350px;
  /*height: 100%;*/
  background: #010b63;
  border: 1px solid #dedede;

  position:relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}
.sidebar #leftside-navigation ul,
.sidebar #leftside-navigation ul ul {
  margin: -2px 0 0;
  padding: 0;
}
.sidebar #leftside-navigation ul li {
  list-style-type: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
 
}

.sidebar #leftside-navigation ul ul li {
  list-style-type: none;
 /* border-bottom: 1px solid rgba(0, 0, 0, 0.05);*/
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/*.sidebar #leftside-navigation ul li.active > a {
  color: #fff;
    background-color: #cd0001;
}*/

.sidebar #leftside-navigation ul li.active > a {
  color: #fff; background: #ff5c5c;
  
}

.sidebar #leftside-navigation ul ul li.active > a {
  color: #ff5c5c;/*background-color: #ff5c5c;*/background-color: #010b63;
}
.sidebar #leftside-navigation ul li.active ul {
  display: block;
}
.sidebar #leftside-navigation ul li a {
  color: #fff; font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 18px 0 18px 25px;
  font-size: 16px;
  outline: 0;text-transform: uppercase;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.sidebar #leftside-navigation ul li a:hover {
  /*color: #ffffff;background-color: #cd0001;*/color: #fff;background-color: #ff5c5c;
}

.sidebar #leftside-navigation ul ul li a:hover {
  color: #ff5c5c;background-color: #010b63;
}
.sidebar #leftside-navigation ul li a span {
  display: inline-block;
}
.sidebar #leftside-navigation ul li a i {
  width: 20px;
}
.sidebar #leftside-navigation ul li a i .fa-angle-left,
.sidebar #leftside-navigation ul li a i .fa-angle-right {
  padding-top: 3px;
}
.sidebar #leftside-navigation ul ul {
  display: none;
}
.sidebar #leftside-navigation ul ul li {
  background: #010b63;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  /*border-bottom: none;*/
}
.sidebar #leftside-navigation ul ul li a {
  font-size: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: #fff;
}

/*--Project Protfolio--*/

.portfolio-main {}

.Portfolio {
    position: relative;
    margin: 10px;overflow: hidden;
    border: 0px solid black;
    float: left;
    width: 330px;
    transition-duration: 0.4s;
    border-radius: 0px;
    animation: winanim 0.5s ;
-webkit-backface-visibility:visible;
    backface-visibility:visible;
    box-shadow:0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12)
}

.Portfolio:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,.24),0 17px 50px 0 rgba(0,0,0,.19);
}

.Portfolio img {
    width: 100%;
    height: auto;
    transition: 1s;
    border-radius: 0px
}

.Portfolio:hover img {
    transform: scale(1.1);
}

.desc-img {overflow: hidden;
    position: relative;}

.desc {
    padding: 20px 10px;
    text-align: center;
    
    background:#010b63;
    color:#fff
}

.desc a {color:#fff; font-size: 16px;}

.desc a:hover {color:#FB5043; }

.portfolio-main .nav {
    padding:20px; margin: 0 auto;
    /*margin-left:340px;
    margin-top:-30px;*/
}

.portfolio-main .nav li a { 
    margin:5px;
    padding: 15px 50px; 
    font-size:16px; 
    color:#fff; 
    background: #010b63;
    transition-duration: 0.4s;
}
.portfolio-main .nav a:hover { 
    background:#fb5044; 
}
.portfolio-main .nav .active { 
    background-color:#fb5044 !important;
    color:#fff;
}

@keyframes winanim {
    0%{opacity:0;transform:scale3d(.3,.3,.3)}
    50%{opacity:1}
    
}

/*--new Contact page--*/

.single-contact-address {
    overflow: hidden;
    margin-top: 30px;
}

.padding-top0 {
    padding-top: 0
}

.padding-top {
    padding-top: 100px;
}

.single-input input {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #808080;
    background-color: transparent;
    padding-left: 10px;
    color: #fff
}

.single-input label {
    color: #ff5c5c;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
}

.single-input textarea {
    width: 100%;
    border: 1px solid #808080;
    border-radius: 10px;
    background-color: transparent;
    padding: 10px;
    color: #fff
}



.contactformbg {
    background-image: url(../img/contactbg.png);
    padding-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-bottom: 50px;
    color: #fff
}

.contact-address {
    margin-top: 80px;
}

.single-input {
    margin-bottom: 0px;
}

.single-contact-address .icon {
    background: transparent;
    color: #ff5c5c;
    font-size: 22px;
}

.single-contact-address .icon2 {
    background: transparent;
    color: #ff5c5c;
    font-size: 22px;
}

.single-contact-address .content p {
    font-size: 16px
}

.single-contact-address .content p a {
    color: #fff;
    
}

.single-contact-address .content p a:hover {
    color: #ffa100;
    
}

.get-in-touch {
    background-image: url(../img/contact-shap.png);
    display: inline-block;
    padding-right: 50px;
    padding-left: 50px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    top: -60px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.submitbtn button {
    width: 160px;
    height: 40px;
    background: #ff5c5c;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer; color: #fff;
    border-radius: 0px;
    transition: .6s;
}

.submitbtn {
    margin-bottom: 30px;
}

.submitbtn button:hover {
    background: #fff;
    color: #000531;
}
.get-in-touch h4 {
    position: relative;
    top: 0;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff
}

.icon2 {
    background-color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    font-size: 30px;
    float: left;
    margin-right: 20px;
    color: #404040;
    transition: .6s;margin-bottom: 21px;
}

.icon {
    background-color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #dfdfdf;
    border-radius: 50px;
    font-size: 30px;
    float: left;
    margin-right: 20px;
    color: #404040;
    transition: .6s;margin-bottom: 106px;
}

#gmap {
    /*height: 300px;*/
    margin-top: -0px;
    z-index: -1;
}

/*--Contact page--*/

.contact-info h2{color:#414149;font-size:26px;font-weight:600;margin-bottom:30px}
.contact-meta-info h4{font-size:18px;font-weight:600;margin-bottom:10px}
.contact-meta-info h4 i {
    font-size: 18px;
    color: #ff5c5c;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #ff5c5c;margin-right: 10px;
}
.contact-meta-info>p {margin-bottom:0;font-size: 18px;}

.contact-meta-info a {color: #393939;font-size: 18px;}
.contact-meta-info a:hover, a:focus, a:hover {
    color: #ff5c5c;
    text-decoration: none;
}

.contact-form>h3 {
    font-size: 26px;
    font-weight: 600;
    
    margin-bottom: 40px;
}

.contact-form input, .contact-form select {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    font-size: 18px;
    height: 50px;
    border: 0;
    border: 1px solid #ddd;
    padding: 0 15px;
}

.contact-form input, .contact-form textarea, .contact-form select{
    background: rgba(0,0,0,0);
    border-image: none;
    margin-bottom: 30px;
    width: 100%;
    font-family: sans-serif;
}

.contact-form textarea {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    height: 125px;font-size: 18px;
    border: 1px solid #ddd;
    padding: 15px;
}

.btn.brand-btn {
    color: #fff;
    background-color: #ff5c5c;
    border: none;
    border-radius: 0;
    padding: 0 30px;
    font-size: 16px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    height: 50px;display: inline-block;
}

.btn.brand-btn:hover {font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #000000;
    border-color: #40ba37;}



/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #3fbbc0;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #555555;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #3fbbc0;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #3fbbc0;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.services .icon {
  display: flex;
  justify-content: center;
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: #3fbbc0;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .icon-box:hover .icon i {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.services .title a {
  color: #444444;
  transition: 0.3s;
}

.services .title a:hover {
  color: #3fbbc0;
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #3fbbc0;
  bottom: 0;
  left: calc(50% - 25px);
}

.services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br + br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.appointment .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.appointment .php-email-form input, .appointment .php-email-form textarea, .appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus, .appointment .php-email-form textarea:focus, .appointment .php-email-form select:focus {
  border-color: #3fbbc0;
}

.appointment .php-email-form input, .appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

.appointment .php-email-form button[type="submit"] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.appointment .php-email-form button[type="submit"]:hover {
  background: #52c2c6;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555555;
  border-radius: 0;
  border-left: 5px solid #fff;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: #3fbbc0;
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #3fbbc0;
}

.departments .nav-link.active h4 {
  color: #3fbbc0;
}

.departments .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #3fbbc0;
}

.departments .tab-pane p {
  color: #777777;
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


.testimonials {padding: 60px 0;}

.testimonials .testimonial-item {
  box-sizing: content-box;
  /*min-height: 320px;*/
  border: 1px solid #e5e5e5;
    padding: 30px 20px 25px 40px;margin: 0 20px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  /*margin: -40px 0 0 40px;*/
  position: relative;
  z-index: 2;
  border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0px 0 6px 0px;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ff5c5c;
  margin: 0 0 11px 0px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}



.testimonials .testimonial-item p {
  
  margin: 0 0px 15px 0px;
  /*padding: 20px 20px 60px 20px;*/
  /*background: #f0fafa;*/
  position: relative;
  /*border-radius: 6px;*/
  position: relative; color: #848484;
  z-index: 1;font-size: 16px;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #ff5c5c !important;
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden;
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.doctors .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.doctors .member .social a:hover {
  color: #3fbbc0;
}

.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.doctors .member .member-info {
  padding: 25px 15px;
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.doctors .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .owl-nav, .gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0f4f5 !important;
}

.gallery .owl-dot.active {
  background-color: #3fbbc0 !important;
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible;
}

.gallery .gallery-carousel .center {
  border: 6px solid #3fbbc0;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #3fbbc0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #3fbbc0;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #3fbbc0;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #65c9cd;
}

.pricing .featured h3 {
  color: #fff;
  background: #3fbbc0;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #3fbbc0;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questioins
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 0 0 20px 25px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #3fbbc0;
  font-size: 18px;
  font-weight: 500;
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px;
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px;
}

.faq .faq-list a.collapse {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #3fbbc0;
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #3fbbc0;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #3fbbc0;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #3fbbc0;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #65c9cd;
}

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #000531;
  padding: 0 0 30px 0;
  color: #555555;
  font-size: 15px;
}

#footer .footer-top {
  background: #000531;
  padding: 60px 0 30px 0;border-bottom: 1px solid #33375a;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info a {color: #848484;}

#footer .footer-top .footer-info a i  {padding-right: 20px; font-size: 20px;}
  
#footer .footer-top .footer-info a:hover {color: #ff5c5c;}

#footer .footer-top .footer-info h3 {
  font-size: 18px; color: #ffffff;
  margin: 0 0 20px 0;
  padding: 0px 0 10px 0;
  line-height: 2;margin-bottom: 0;
  font-weight: 600; text-transform: uppercase;
}


.footer-info ul {
    margin-bottom: 20px;padding: 0;
}

.footer-info ul li {
    margin-bottom: 20px;
}

.footer-info ul li .addres-icon {
    float: left;
    margin-right: 20px;
    font-size: 15px;
    color: #fff;
}

.footer-info ul li .addres {
    padding-left: 38px;
}

.footer-info ul li .addres p {
    margin-bottom: 0;
    color: #999;
}

.footer-info p {
    color: #999999;
    font-size: 15px;
    line-height: 24px;
}


/*#footer .footer-top .footer-info h3:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ff5c5c;
    
}*/

.footer-newsletter p {font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
    color: #999999;
  }

.footer-newsletter {margin-bottom: 30px;}
.footer-newsletter img {margin-bottom: 30px;}

#footer .footer-top .footer-info p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0; color: #848484;
  
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: #999a9b;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: transparent;color: #fb5044;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;text-transform: uppercase;
  position: relative;line-height: 2;
  color: #fff; padding: 0px 0 20px 0; margin-bottom: 0;
}

/*#footer .footer-top h4:after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #ff5c5c;
    
}*/

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3fbbc0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #848484;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff5c5c;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3fbbc0;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #65c9cd;
}

#footer .copyright {
  /*text-align: center;*/
  padding-top: 30px;
}

#footer .copyright span {color: #ff5c5c;}

#footer .credits {
  padding-top: 30px;
  /*text-align: center;*/
  font-size: 15px;
}

#footer .credits a {color: #ff5c5c;}

/*.carousel {
   
    top: 110px;
}

.carousel-indicators {display: none;}

#carousel .carousel-item.boat {
  background-image: url("../img/slide/slide-1.jpg");
}

#carousel .carousel-item.sea {
  background-image: url("../img/slide/slide-2.jpg");
}

#carousel .carousel-item.river {
  background-image: url("../img/slide/slide-1.jpg");
}

#carousel .carousel-item {
  height: 100vh;
  width: 100%;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0px; padding-top: 80px;
  color: white;
  animation-duration: 1s;
  animation-delay: 2s;
}*/

/*#carousel .caption h2 {
  animation-duration: 1s;
  animation-delay: 2s;
  font-size: 70px;
    line-height: 70px; color: #ffffff;
    font-weight: 700;margin-bottom: 20px;
}

#carousel .caption p {
  animation-duration: 1s;
  animation-delay: 2.2s;
  font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0px;
}

#carousel .caption a {
  animation-duration: 1s;
  animation-delay: 2.4s;
}*/

/* Button */
.delicious-btn {
  display: inline-block;
  min-width: 160px;
  height: 50px;
  color: #ffffff;
  border: none;
  /*border-left: 3px solid #1c8314;*/
  border-radius: 0;
  padding: 0 30px;
  font-size: 16px;
  line-height: 50px;
  font-weight: 600;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-transform: capitalize;
  background-color: #ff5c5c;
}

.delicious-btn.active, .delicious-btn:hover, .delicious-btn:focus {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #000000;
  border-color: #40ba37;
}

/* Slider new */

.carousel {/*top: 90px;*/}

#carousel .carousel-item.boat {
 
  background-image: url("../img/slide/slide-1.jpg");
}

#carousel .carousel-item.sea {
  background-image: url("../img/slide/slide-3.jpg");
}

#carousel .carousel-item.river {
 background-image: url("../img/slide/slide-2.jpg");
}

#carousel .carousel-item.sun {
 background-image: url("../img/slide/slide-4.jpg");
}

#carousel .carousel-item {
  height: 100vh;
  width: 100%;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel .carousel-inner .carousel-item {
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease, -webkit-transform 2s ease;
}

#carousel .carousel-item .caption {
  /*background-color: rgba(0, 0, 0, 0.5);*/
  padding: 40px;
  color: white;
  animation-duration: 1s;
  animation-delay: 2s;
}

#carousel .caption h2 {
  animation-duration: 1s;
  animation-delay: 2s;
  color: #fff; font-size: 54px;margin-bottom: 20px;
  font-weight:normal; text-transform: uppercase;
}

#carousel .caption p {
  animation-duration: 1s;
  animation-delay: 2.2s;
}

#carousel .caption a {
  animation-duration: 1s;
  animation-delay: 2.4s;
}

/* Button */
.delicious-btn {
  display: inline-block;
  min-width: 142px;
  height: 42px;
  color: #ffffff;
  border: none;
  /*border-left: 3px solid #fb5044;*/
  border-radius: 0;
  padding: 0 30px;
  font-size: 16px;
  line-height: 42px;
  font-weight: 600;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  text-transform: capitalize;
  background-color: #fb5044;
}

.delicious-btn.active, .delicious-btn:hover, .delicious-btn:focus {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #000531;
  border-color: #000531;
}

/* End Slider new */

/* Testimonial page */

.testimonial {}

.testimonial .certificate  { 
  text-align: center; margin-bottom: 30px;
}

 .certificate h4 { 
  color: #484848;
  font-size: 18px; line-height: 28px;
  font-weight: 600;
    
}

.testimonial .certificate img {
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    border: 1px solid rgba(0,0,0,.125);
}

/* Photo Gallery  */

.thumbnail h4 { 
  color: #484848; margin-top: 25px;
  font-size: 18px; line-height: 28px;
  font-weight: 600;
    
}

.thumbnail {
  margin-bottom:30px;
  display:block;
  flex-wrap: wrap;text-align: center;
}

.thumbnail img {text-align: center;
    display: block;
    margin: 0 auto;box-shadow: 0 10px 20px -14px rgb(0 0 0 / 25%);
    border: 1px solid rgba(0,0,0,.125);}

.thumbnail img:hover {box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);}
    
.blur {
    transform: scale(0.9);
    opacity: 0.6;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

/* Client page */

.client img {text-align: center;
    display: block;
    margin: 0 auto;margin-bottom: 30px;}



/* Client Slider */

.clients {padding-top: 30px; padding-bottom: 60px;}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
   /* width: 100%;*/
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* Project Slider */

.home-demo .item {border: 1px solid rgba(0,0,0,.125);}

.home-demo .item .pro-thumb img {

  opacity: 1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
 
}

.home-demo .item .pro-thumb:hover img {

 opacity: .5;
 
}



.home-demo .item .pro-thumb {margin-bottom: 20px;}

.home-demo .item .pro-title {padding: 20px;}

.home-demo .item .pro-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.home-demo .item .pro-title h3:hover {
    
    color: #fb5044;
    
}

.home-demo .delicious-btn {margin-left: 20px;margin-bottom: 20px;}

a.read-more {
    display: inline-block;
    min-width: 142px;
    height: 42px;
    color: #ffffff;
    border: none;
    
    border-radius: 0;
    padding: 0 30px;
    font-size: 16px;
    line-height: 42px;
    font-weight: 600;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-transform: capitalize;
    background-color: #fb5044;
}

a.read-more.active, a.read-more:hover, a.read-more:focus {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #000531;
    border-color: #000531;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px !important;
}

/* Quote Band  */

.quote {
    background-color: #fb5044;
    color: #fff;
    padding-top: 25px;
    padding-bottom: 20px;

    line-height: 15px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.5s;
}

.quote-text p {font-size: 26px;
    font-weight: 700; margin-bottom: 0;line-height: 30px;} 

.quote-text-btn {text-align: right;}


.quote-btn {
    display: inline-block;
    min-width: 142px;
    height: 42px;
    color: #000;
    border: none;
    border-radius: 0;
    padding: 0 30px;
    font-size: 16px;
    line-height: 42px;
    font-weight: 600;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-transform: capitalize;
    background-color: #ffffff;
}

.quote-btn:hover {background-color: #000531; color: #fff;}

