/*------------------------------------------------------------------

========================================================================
 

 # Landing Page
 ===============================================
 1) Default CSS
 2) Fancy Box 
 3) Breadcrumb 
 4) Header
 5) Banner
 6) About
 7) Services
 8) Portfolio
 9) How it Works
 10) Team
 11) Fun And Fact  
 12) Mission
 13) Testimonial
 14) Blog Section
 15) Contact
 16) Footer
 17) Portfolio Detail Section 
 18) Blog Single  
 19) Blog Listing
 20) Blog Grid  
 21) Left Sidebar


*/
/* ========================================= */
/*          Default CSS        */
/* ========================================= */

@import url("https://fonts.googleapis.com/css?family=Poppins");
@import url("https://fonts.googleapis.com/css?family=Roboto");

@font-face {
  font-family: 'Tahoma';
  src: url('../fonts/Tahoma.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

:focus {
  outline: 0;
}

.clear {
  clear: both;
  line-height: 0;
  font-size: 0;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
}

.clearfix:after .test {
  color: red;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

header,
nav,
section,
article,
aside,
footer {
  display: block;
}

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-family: "Tahoma", sans-serif;
  overflow-x: hidden;
}

/* Preloader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e2c24;
  z-index: 3000;
  /* makes sure it stays on top */
}

#status {
  position: fixed;
  content: "";
  display: block;
  top: 45%;
  left: 0;
  right: 0;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: url(../images/loader.gif);
  /*    background-color: #fff;*/
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 9999999999;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

/* End Preloader */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
  font-family: "Tahoma", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

hr {
  border: 0.5px solid #444444;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
  color: #181d31;
  font-family: "Tahoma", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 24px;
  color: #181d31;
  padding-left: 40px;
  position: relative;
}

ol {
  margin: 0;
  counter-reset: i;
  position: relative;
}

ol li {
  font-size: 168x;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 24px;
  color: #181d31;
  padding-left: 40px;
  position: relative;
}

a {
  color: #181d31;
}

a:hover {
  text-decoration: none;
  color: #005d85;
  transition: all 0.4s ease;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="tel"],
textarea,
select {
  font-size: 14px;
  font-weight: 300;
  background-color: #fff;
  border: 1px solid #eceaea;
  border-radius: 5px;
  padding: 10px 25px;
  width: 100%;
  color: #444444;
  margin-bottom: 15px;
  font-family: "Tahoma", sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #005d85;
  transition: all 0.5s ease;
}

select {
  padding: 12px 25px;
}

textarea {
  border-radius: 8px;
  resize: vertical;
}

img {
  max-width: 100%;
}

blockquote {
  font-size: 14px;
  font-weight: 300;
  background-color: #faf8f8;
  margin-bottom: 15px;
  border-left: 4px solid #005d85;
  padding: 30px 70px 30px 70px;
  line-height: 24px;
  color: #444444;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

blockquote:before {
  content: "\f10d";
  font-family: fontawesome;
  font-size: 45px;
  position: absolute;
  top: 26px;
  left: 20px;
  color: #666;
  opacity: 0.1;
}

.text-white {
  color: #fff !important;
}

blockquote span {
  position: relative;
  padding-left: 20px;
}

blockquote span:before {
  content: "";
  width: 12px;
  height: 1px;
  background: #005d85;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
}

.section_title {
  margin-bottom: 13px;
  text-align: center;
}

.blog_heading_border {
  position: relative;
}

.blog_heading_border:before {
  content: "";
  background: #005d85;
  bottom: -7px;
  display: block;
  height: 2px;
  margin-bottom: 6px;
  position: absolute;
  width: 20%;
}

@media only screen and (max-width: 767px) {
  .mt_heading {
    padding: 0px;
  }

  .heading_txt {
    width: 100%;
  }

  .section_title,
  .mission-content h2 {
    font-size: 28px;
  }

  blockquote {
    padding-right: 20px;
  }
}

.mt_btn_blue,
input[type="submit"] {
  padding: 8px 20px;
  background: transparent;
  font-size: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: inline-block;
  color: #005d85;
  text-decoration: none;
  border: 2px solid #005d85;
  transition: all 0.5s ease;
}

.mt_btn_blue:hover,
.mt_btn_blue:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #fff;
  background-color: #005d85;
  transition: all 0.5s ease;
  text-shadow: initial;
  text-decoration: none;
}

.mg-2 {
  margin: 32px 0 0;
}

@media only screen and (max-width: 640px) {

  .mt_btn_red,
  .mt_btn_blue,
  input[type="submit"] {
    font-size: 14px;
    padding: 10px 19px;
  }
}

#content {
  margin-bottom: 60px;
  padding: 145px 0 0;
}

.mt_error {
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 13px 20px;
  text-align: center;
  background: rgba(228, 25, 25, 0.75);
  color: #fff;
  font-size: 14px;
}

.toast-message {
  font-size: 14px;
}

.title-padding {
  padding: 0 20%;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .title-padding {
    padding: 0 5%;
  }
}

@media only screen and (max-width: 767px) {}

/* ============================= */
/*           Fancy Box           */
/* ============================= */

.fancybox-next span,
.fancybox-prev span {
  background-image: none !important;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  text-align: center;
}

.fancybox-next span:before,
.fancybox-prev span:before {
  content: "";
  position: absolute;
  font-family: "FontAwesome";
  left: 0px;
  top: 0px;
  font-size: 12px;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  background-color: rgba(28, 28, 28, 0.4) !important;
  color: #ffffff;
  visibility: visible;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.fancybox-next span:before {
  content: "\f178";
}

.fancybox-prev span:before {
  content: "\f177";
}

.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
  background-color: #444444 !important;
  color: #ffffff;
}

.fancybox-type-image .fancybox-close {
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  background: url(../images/icon-cross.png) center center no-repeat;
  background-color: #444444 !important;
}

.fancybox-type-image .fancybox-close:hover {
  background-color: #000000 !important;
}

.fancybox-type-image .fancybox-skin {
  padding: 0px !important;
}

.section_heading {
  margin: 0 0 4rem;
}

p.heading_txt {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .section_heading {
    text-align: center;
  }

  .section_heading .button.pull-right {
    display: none;
  }
}

section {
  padding: 75px 0 0px;
  position: relative;
}

/* ========================================= */
/*            BREADCRUMB           */
/* ========================================= */

.breadcrumb-main {
  border-bottom: 1px solid #f1f1f1;
}

.breadcrumb-main .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  padding-bottom: 13px;
}

.breadcrumb-main .breadcrumb>li {
  margin-bottom: 0;
  padding-left: 0;
  font-size: 15px;
  line-height: inherit;
}

/* ====================== */
/*         Header         */
/* ====================== */
.navbar.navbar-default.reveal-menu-home.sticky-nav,
.sticky-nav-white {
  padding: 10px;
  background: #fff;
  color: #000;
  transition: background 0.5s ease-in-out 0s, padding 0.5s ease-in-out 0s;
  -webkit-transition: background 0.5s ease-in-out 0s,
    padding 0.5s ease-in-out 0s;
  -moz-transition: background 0.5s ease-in-out 0s, padding 0.5s ease-in-out 0s;
  -o-transition: background 0.5s ease-in-out 0s, padding 0.5s ease-in-out 0s;
  -ms-transition: background 0.5s ease-in-out 0s, padding 0.5s ease-in-out 0s;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.52);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.52);
  -o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.52);
  -ms-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.52);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.52);
}

.navbar.navbar-default.reveal-menu-home.sticky-nav .logo a img,
.sticky-nav-white .logo a img,
#inner-navigation .navbar.navbar-sticky-in .logo img {
  width: 70%;
  transition: all ease-in-out 0.5s;
}

.reveal-menu-blog {
  background: #ffffff !important;
  padding: 15px !important;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.reveal-menu-blog ul.nav.navbar-nav li a {
  color: #444444 !important;
}

.navbar.navbar-default {
  padding: 10px 0;
  border-bottom: 0;
}

.sticky-nav-white {
  background-color: #ffffff !important;
}

.sticky-nav-white ul.nav.navbar-nav li a {
  color: #444444 !important;
}

.reveal-menu-home {
  background-color: transparent;
}

.reveal-menu-home ul.nav.navbar-nav li a {
  color: #444;
}

.navbar.navbar-default ul.nav.navbar-nav {
  margin-top: 25px;
}

.navbar.navbar-default.sticky-nav ul.nav.navbar-nav {
  margin-top: 25px;
}

.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li:last-child {
  border-bottom: none;
}

.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li a,
#inner-navigation .nav.navbar-nav>li>a {
  font-size: 15px;
  font-family: "Tahoma", sans-serif;
  font-weight: 400;
  color: #000;
  padding: 0;
  line-height: 43px;
  position: relative;
  letter-spacing: 1px;
}

.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li.active a,
.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li a:hover {
  background: none;
  color: #005d85 !important;
  transition: all ease-in-out 0.5s;
}

.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li:before {
  display: none;
}

.navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li,
#inner-navigation .nav.navbar-nav li {
  padding: 0;
  margin-bottom: 0;
  margin-left: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar.navbar-default .navbar-header {
    margin-bottom: 0px;
    margin-top: 0px;
    display: inline-block;
  }

  .reveal-menu-blog .navbar-right {
    float: none !important;
    margin: 0 auto;
    width: 97%;
  }

  .reveal-menu-home .navbar-right {
    margin: 0 auto;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li,
  #inner-navigation .nav.navbar-nav li {
    margin-left: 10px;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li a,
  #inner-navigation .nav.navbar-nav>li>a {
    font-size: 13px;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li {
    margin-bottom: 0;
    padding: 0;
  }

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

@media (max-width: 812px) {
  #inner-navigation .slicknav_nav {
    height: 300px;
    overflow-y: scroll;
  }
}

@media only screen and (max-width: 767px) {
  .navbar.navbar-default .navbar-toggle {
    border-color: #005d85;
    background-color: #005d85;
    margin-top: 10px;
    margin-right: 0;
  }

  .navbar.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
  }

  .navbar.navbar-default .navbar-toggle:hover {
    border-color: #ffffff;
    background-color: #ffffff;
  }

  .navbar.navbar-default .navbar-toggle:hover .icon-bar {
    background-color: #005d85;
  }

  .navbar.navbar-default .navbar-collapse {
    background: #1f1d26;
    border: none;
    margin-top: 15px;
    max-height: 415px;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li a,
  #inner-navigation .nav.navbar-nav>li>a {
    color: #b6b3c4 !important;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5;
  }

  .navbar.navbar-default ul.nav.navbar-nav {
    margin: 0;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li {
    margin: 0;
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li a {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li:last-child a {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 640px) {
  .navbar.navbar-default .navbar-collapse {
    max-height: 225px;
  }
}

@media only screen and (max-width: 360px) {

  .navbar.navbar-default.reveal-menu-home.sticky-nav .logo a img,
  .sticky-nav-white .logo a img {
    margin-top: 0px;
    width: 150px;
  }

  .reveal-menu-home .logo a img {
    margin-top: 0px;
    width: 150px;
  }
}

/*innerpage navbar*/

#inner-navigation .navbar {
  border-bottom: 0;
  transition: all ease-in-out 0.5s;
}

#inner-navigation .navbar.navbar-default {
  margin: 0;
  height: auto;
  background: transparent;
}

#inner-navigation .navbar-nav {
  display: inline-block;
}

/* Main Menu Dropdown */

#inner-navigation .logo-wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

#inner-navigation ul.nav-mini {
  padding-top: 3px;
  padding-right: 13px;
}

#inner-navigation ul.nav-mini li {
  display: inline-block;
  margin-right: 10px;
  font-size: 13px;
  background: #00bcd4;
  border-radius: 5px;
  padding: 2px 10px;
}

#inner-navigation ul.nav-mini li:last-child {
  margin-right: 0px;
}

#inner-navigation ul.nav-mini li i {
  color: #fff;
  padding-right: 5px;
}

#inner-navigation .nav.navbar-nav {
  float: left;
  transition: all ease-in-out 0.5s;
}

#inner-navigation .nav.navbar-nav li a:hover,
#inner-navigation .nav.navbar-nav li.active>a {
  color: #005d85 !important;
  text-decoration: none;
  background: transparent;
}

#inner-navigation .nav.navbar-nav>li:last-child>a:after {
  display: none;
}

#inner-navigation .nav.navbar-nav li ul {
  z-index: 99999;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 66px;
  left: 0;
  width: 200px;
  display: none;
  background-color: #f7f7f7;
  border: 1px solid #eee;
  border-top: 2px solid #005d85;
  -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
}

#inner-navigation .nav.navbar-nav li ul li a {
  border-bottom: 1px solid #e6e6e6;
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  color: #444;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.25;
}

#inner-navigation .nav.navbar-nav li ul li a i {
  float: right;
}

#inner-navigation .nav.navbar-nav li>ul>li:last-child>a,
#inner-navigation .navbar-nav li>ul>li>ul>li:last-child>a {
  border-bottom: 0;
}

#inner-navigation .nav.navbar-nav li ul li:hover ul li a {
  color: #444;
}

#inner-navigation .nav.navbar-nav li ul li:hover a,
.nav.navbar-nav li ul li ul li:hover a {
  padding-left: 25px;
  padding-right: 15px;
  color: #005d85;
}

#inner-navigation .nav.navbar-nav li ul li ul {
  position: absolute;
  left: 198px;
  top: -2px;
}

#inner-navigation .nav.navbar-nav li ul li:hover ul li a {
  padding-left: 15px;
  padding-right: 15px;
}

#inner-navigation .nav.navbar-nav li ul li ul li:hover a {
  padding-left: 20px;
  padding-right: 10px;
}

#inner-navigation .nav.navbar-nav li ul li {
  display: block;
  text-align: left;
  margin-left: 0;
}

@media only screen and (max-width: 991px) {
  .logo-wrapper {
    width: 50%;
  }

  .logo img {
    float: left;
  }

  #inner-navigation .navbar-nav-wrapper {
    width: 0%;
  }

  #inner-navigation .navbar {
    margin: 0;
    padding: 0;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  #inner-navigation .navbar-brand {
    line-height: 30px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
  }

  #inner-navigation .navbar-arrow>ul>li .arrow-indicator,
  #inner-navigation .navbar-arrow ul ul>li .arrow-indicator {
    display: none;
  }

  #inner-navigation ul.nav-mini {
    padding-right: 0;
  }

  #inner-navigation ul.nav-mini li {
    margin-right: 5px;
    padding: 2px 6px;
  }
}

@media (max-width: 767px) {
  #inner-navigation .navbar-nav .open .dropdown-menu>li>a {
    line-height: 23px;
  }

  #inner-navigation .navbar.navbar-default {
    padding: 10px 0;
  }
}

/**
 * Sticky Header
 */

#inner-navigation .navbar-sticky-in {
  z-index: 9;
  transition: all ease-in-out 0.5s;
  position: fixed;
  width: 100%;
  top: 0;
}

#inner-navigation .navbar-sticky-in.navbar-default {
  padding: 10px 0px;
  background-color: #000;
  box-shadow: 0 0 5px #ccc;
}

#inner-navigation .navbar-sticky-in.navbar-default .nav.navbar-nav {
  padding-top: 0px;
  margin-top: 2px;
}

#inner-navigation .navbar-sticky-in .navbar-nav>li>ul {
  top: 53px;
}

#inner-navigation .transparent-header .navbar-sticky-in {
  padding: 0;
  background-color: rgba(0, 0, 0, 0.9);
  margin: 0px;
  border: none;
}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  #inner-navigation .transparent-header .navbar-sticky-in {
    padding: 10px 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  #inner-navigation .slicknav_btn {
    top: 37px;
  }

  #inner-navigation .navbar-sticky-in.navbar-default .slicknav_btn {
    top: 26px;
  }

  #inner-navigation .slicknav_btn.slicknav_open:before,
  .slicknav_btn.slicknav_collapsed:before {
    font-size: 21px;
    color: #005d85;
  }
}

/*====================== */
/*         Banner         */
/* ====================== */

#mt_banner {
  position: relative;
  padding: 0;
}

#blog_banner {
  position: relative;
  background-image: url(../images/started-bg1.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 0 30px;
}

#mt_banner .s-list {
  position: relative;
}

.yellow-overlay,
.black-overlay,
.blue-overlay {
  background: linear-gradient(to left,
      rgba(247, 148, 30, 0.7),
      rgba(0, 0, 0, 0.6));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
}

.black-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.blue-overlay {
  background: linear-gradient(to left, rgb(0, 107, 132), rgba(146, 146, 146, 0.1));
}

#mt_banner .banner_caption_text {
  left: 110px;
  position: absolute;
  top: 30.5%;
  width: 57%;
  z-index: 2;
}

#mt_banner .banner_caption_text h1 {
  color: #fff;
  margin: 0;
  position: relative;
  font-size: 48px;
}

#mt_banner .banner_caption_text p {
  font-size: 16px;
  color: #fff;
  padding: 0;
  margin: 22px 0 25px;
}

#mt_banner .banner_caption_text h3 {
  font-size: 36px;
  font-weight: 300;
}

#mt_banner .header_angle_03 {
  height: auto !important;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

#mt_banner .header_angle {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 80px;
  z-index: 99;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  z-index: 1;
}

#mt_banner .banner_caption_text .mt_btn_blue,
#mt_get_started .mt_btn_blue {
  margin-bottom: 0;
  border-color: #fff;
  color: #fff;
}

#mt_banner .banner_caption_text .mt_btn_blue:hover,
#mt_get_started .mt_btn_blue:hover {
  border-color: #005d85;
}

@media only screen and (min-width: 1200) {
  #mt_banner .banner_caption_text {
    top: 32%;
  }
}

@media only screen and (max-width: 1100px) {
  #mt_banner .banner_caption_text h1 {
    font-size: 34px;
  }

  #mt_banner .banner_caption_text {
    top: 34.5%;
  }
}

@media only screen and (max-width: 991px) {
  #mt_banner {
    height: 600px !important;
    position: relative;
  }

  #mt_banner.mt_video .banner_caption_text {
    width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  #mt_banner .banner_caption_text {
    width: 72%;
    top: 32%;
    left: 0;
    margin: 0 auto;
    right: 0;
  }

  #mt_banner .banner_caption_text h1,
  #mt_banner.mt_video .banner_caption_text h1 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 0;
  }

  #mt_banner .banner_caption_text h3 {
    font-size: 28px;
    margin-bottom: 32px;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 639px) {
  #mt_banner {
    background-position: 25% center !important;
  }

  #mt_banner .banner_caption_text {
    width: 70%;
    top: 30%;
  }

  #mt_banner .banner_caption_text h1,
  #mt_banner.mt_video .banner_caption_text h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
    position: relative;
  }
}

@media only screen and (max-width: 480px) {
  #mt_banner .banner_caption_text {
    left: 0px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 18%;
  }

  #mt_banner .banner_caption_text h1,
  #mt_banner.mt_video .banner_caption_text h1 {
    font-size: 20px;
  }

  #mt_banner .banner_caption_text h1 span {
    font-size: 21px;
  }

  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: -12px !important;
  }

  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: -12px !important;
  }

  #mt_banner .banner_caption_text h3 {
    font-size: 18px;
  }

  #mt_banner .banner_caption_text .mt_btn_red,
  #mt_banner .banner_caption_text .mt_btn_blue,
  #mt_banner .banner_caption_text input[type="submit"] {
    font-size: 12px;
  }
}

/* Slider Section */
.swiper-container {
  height: 100%;
  margin: 60px;
}

.swiper-slide {
  overflow: hidden;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white,
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: none !important;
}

.swiper-button-next.swiper-button-white:before,
.swiper-container-rtl .swiper-button-prev.swiper-button-white:before,
.swiper-button-prev.swiper-button-white:before,
.swiper-container-rtl .swiper-button-next.swiper-button-white:before {
  content: "\f3d6";
  font-family: "Ionicons";
  font-size: 45px;
  position: absolute;
  right: 25px;
  color: #fff;
}

.swiper-button-prev.swiper-button-white:before,
.swiper-container-rtl .swiper-button-next.swiper-button-white:before {
  content: "\f3d5";
  left: 25px;
}

/* Video Section */
.mt_video h1,
.mt_video h3 {
  color: #ffffff !important;
}

.mt_video .overlay {
  background-color: rgba(49, 208, 147, 0.6) !important;
}

.reveal-menu-video ul.nav.navbar-nav li a {
  color: #ffffff !important;
}

.reveal-menu-video.sticky-nav ul.nav.navbar-nav li a {
  color: #444444 !important;
}

/*====================== */
/*         About          */
/* ====================== */

#mt_außenbereich {
  position: relative;
  padding-bottom: 0;
  background: none;
}

#mt_außenbereich .section_title span:after {
  left: 0;
  right: inherit;
}

#mt_außenbereich .mt_heading {
  margin-bottom: 0;
}

#mt_außenbereich .heading_txt {
  width: 100%;
}

.about_services {
  text-align: left;
}

#mt_außenbereich .about_services .col-sm-6 {
  padding-left: 0;
  margin-bottom: 40px;
}

#mt_außenbereich .about_services .col-sm-6.mg-1 {
  margin-bottom: 0px;
}

#mt_außenbereich .about_services h2 span {
  padding-right: 100px;
}

#mt_außenbereich .about_services i {
  font-size: 26px;
  color: #005d85;
  margin-bottom: 0px;
}

#mt_außenbereich .about_services h3 {
  margin-bottom: 0px;
  margin-top: 0;
  display: inline-block;
  vertical-align: middle;
  padding-left: 8px;
}

#mt_außenbereich .about_services p {
  margin: 20px 0 0;
}

#mt_außenbereich .about_services .mt_btn_blue {
  background: none;
  border: 1px solid #005d85;
  color: #005d85;
  margin-top: 25px;
}

#mt_außenbereich .about_services .mt_btn_blue:hover {
  background: #005d85;
  color: #ffffff;
}

/*about us page*/

section#mt_außenbereich.about-main,
section#mission_main.mission-area,
section#mt_team.team-section,
section#mt_fun.fun-section {
  padding: 60px 0 0;
}

section#mt_fun.fun-section .container {
  border-bottom: none;
}

section#mt_fun.fun-section .container {
  padding-top: 60px;
}

@media only screen and (min-width: 991px) and (max-width: 1200px) {
  #mt_außenbereich .about_sec_img {
    position: static;
  }

  #mt_außenbereich .about_sec_img .mt_außenbereich_img {
    bottom: 0;
    position: absolute;
    width: 47%;
  }
}

@media only screen and (max-width: 1100px) {
  #mt_außenbereich .about_services p {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  #mt_außenbereich {
    padding-top: 44px;
  }
}

@media only screen and (max-width: 767px) {
  #mt_außenbereich .about_services .col-sm-6.mg-1 {
    margin-bottom: 40px;
  }

  #mt_außenbereich .about_services .col-sm-6 {
    padding-left: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  #mt_außenbereich .col-sm-7,
  #mt_außenbereich .col-sm-5 {
    width: 100%;
  }

  #mt_außenbereich .image-rev {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  #mt_außenbereich .about_services h2 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 767px) {
  #mt_außenbereich .about_services .col-sm-4 {
    margin-bottom: 30px;
  }

  section#mission_main.mission-area {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 640px) {
  #mt_außenbereich .about_services h5 {
    display: block;
  }

  #mt_außenbereich .about_services h2 {
    font-size: 18px;
  }

  #mt_außenbereich .about_services .col-sm-6 {
    padding: 0;
  }
}

/* ====================== */
/*        Services        */
/* ====================== */

section#mt_services {
  padding: 75px 0 0px;
}

#mt_services .box {
  padding: 40px 30px;
  background: #ffffff;
  margin-bottom: 30px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  text-align: center;
  box-shadow: 0px 0px 25px 0px rgba(122, 122, 122, 0.1);
  border: 1px solid #f1f1f1;
}

#mt_services .box:hover {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transform: translateY(-5px);
}

#mt_services .box.box-mar {
  margin-bottom: 0;
}

#mt_services .box .icon {
  margin: 0px 0 20px;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  background: #005d8587;
  display: inline-block;
  position: relative;
}

#mt_services .box .icon i {
  font-size: 42px;
  color: #fff;
  line-height: 2.4;
  font-weight: 600;
}

#mt_services .box h3 {
  margin-top: 0;
}

#mt_services .box p {
  margin-bottom: 0px;
}

#mt_services .box h3:hover {
  color: #005d85 !important;
}

#mt_services.services-section {
  padding: 60px 0px;
}

@media only screen and (max-width: 991px) {
  #mt_services .box.box-mar {
    margin-bottom: 30px;
  }

  #mt_services.services-section {
    padding-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #mt_services .box {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 735px) {
  #mt_services h2 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 735px) {
  #mt_services .col-md-4.col-sm-6.col-xs-6 {
    width: 100%;
  }

  #mt_services .col-md-6.col-sm-6.col-xs-6 {
    width: 100%;
  }
}

/*===================================== */
/*           Portfolio Section           */
/* ===================================== */

section#mt_portfolio {
  padding-bottom: 0;
}

#mt_portfolio .portfolio_grid {
  width: 33.33%;
  height: auto;
  padding: 2px;
  float: left;
  position: relative;
  max-height: 800px;
  overflow: hidden;
}

#mt_portfolio li:after,
#mt_portfolio li:before {
  display: none;
}

#mt_portfolio .mt_filter .list-inline {
  margin: 0;
}

#mt_portfolio .mt_filter .list-inline>li {
  margin-bottom: 0;
  padding: 0;
}

#mt_portfolio .mt_filter ul li a {
  padding: 8px 15px;
  margin-bottom: 0;
  border: 1px solid #f1f1f1;
  transition: all ease-in-out 0.3s;
  border-radius: 5px;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

#mt_portfolio .mt_filter ul li a:hover,
#mt_portfolio .mt_filter ul li.active a {
  border-color: #005d85;
  background: #005d85;
  transition: all ease-in-out 0.3s;
  color: #fff;
}

#mt_portfolio .mt_filter li.active a {
  color: #fff;
  transition: all ease-in-out 0.5s;
}

#mt_portfolio .portfolio_row {
  margin: 50px 0 0;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio:hover .overlayPort {
  background: #005d856b;
}

.portfolio-area .portfolio-masonary-wrapper .single-portfolio-item .thumb .hover a {
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#mt_portfolio .portfolio_row .hovereffect-portfolio:hover ul.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: transparent;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio .overlayPort {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

#mt_portfolio .portfolio_row .hovereffect-portfolio h2,
#mt_portfolio .portfolio_row .hovereffect-portfolio img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul {
  overflow: hidden;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul li {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  text-align: center;
  width: 100%;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul li:after {
  display: none;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul li a {
  color: #ffffff;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul li a h4 {
  margin-bottom: 0;
  line-height: 28px;
  color: #ffffff;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul li a p {
  font-size: 12px;
  color: #ffffff;
}

#mt_portfolio .portfolio_row .hovereffect-portfolio ul.info {
  background-color: transparent;
  color: #fff;
  display: inline-block;
  font-weight: normal;
  left: 0;
  margin: -7% auto 0;
  opacity: 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  text-transform: uppercase;
  top: 50%;
  transform: scale(1.5);
  transition: all 0.4s ease-in-out 0s;
}

#mt_portfolio.gallery-section {
  padding: 60px 0 58px;
}

@media only screen and (max-width: 767px) {
  #mt_portfolio .portfolio_grid {
    padding: 0 15px;
    width: 97%;
  }

  #mt_portfolio .portfolio_grid {
    width: 50%;
    padding: 0;
    margin: 0 auto;
    position: inherit !important;
    top: 0px !important;
    left: 0px !important;
  }
}

@media only screen and (max-width: 640px) {
  #mt_portfolio .mt_filter .list-inline>li {
    margin-bottom: 10px;
  }

  #mt_portfolio .portfolio_row {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 480px) {
  #mt_portfolio .portfolio_grid {
    width: 100%;
  }

  #mt_portfolio .portfolio_row .hovereffect-portfolio ul li a h4 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
  }
}

/* ====================== */
/*          Team          */
/* ====================== */

section#mt_team {
  padding: 73px 0 0px;
}

#mt_team .owl-dots {
  text-align: center;
  margin-top: 10px;
}

#mt_team .owl-dots .owl-dot.active {
  background: #005d85 none repeat scroll 0 0;
  border-radius: 5px;
  height: 5px;
  transition: all 0.5s ease 0s;
  width: 20px;
}

#mt_team .owl-dots .owl-dot {
  border: 1px solid #005d85;
  border-radius: 5px;
  display: inline-block;
  height: 5px;
  margin-right: 12px;
  width: 20px;
}

#mt_team .team_member {
  position: relative;
  text-align: center;
  /* padding-top: 15px; */
  border: 1px solid #f1f1f1;
  background: #fff;
  margin-bottom: 20px;
}

#mt_team .team_member img {
  width: 100%;
}

#mt_team .team_member figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  text-align: center;
  background: #fff;
}

#mt_team .team_member figure img {
  position: relative;
  display: block;
  max-width: 100%;
  opacity: 1;
  width: 100%;
  /* border-radius: 50%; */
  /* height: 150px; */
  margin: 0 auto;
  border: 3px solid #d3d3d3;
  padding: 8px;
  height: 362px;
}

#mt_team .team_member figure figcaption {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

#mt_team .team_member figure figcaption:before,
#mt_team .team_member figure figcaption:before,
#mt_team .team_member figure figcaption:after,
#mt_team .team_member figure figcaption:after {
  pointer-events: none;
}

#mt_team .team_member figure figcaption,
#mt_team .team_member figure figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#mt_team .team_member figure figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

#mt_team .team_member figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

#mt_team .team_member figure h2 span {
  font-weight: 800;
}

#mt_team .team_member .member_name {
  background: #ffffff;
  padding: 15px;
  height: 150px;
}

#mt_team .team_member .member_name h3 {
  margin: 0;
}

#mt_team .team_member .member_name span {
  display: block;
  font-size: 14px;
  color: #005d85;
  padding: 5px 0;
  font-weight: 300;
  font-style: italic;
}

@media only screen and (max-width: 640px) {
  #mt_team .team_member .member_name h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 449px) {
  #mt_team .item {
    margin: 0 auto;
    width: 100%;
  }

  #mt_team .item {}
}

/*team inner page*/

#mt_team.team-main .item {
  margin-bottom: 30px;
}

#mt_team.team-main .team_member {
  padding-top: 0px;
}

#mt_team.team-main .team_member figure {
  padding-top: 15px;
}

#mt_team.team-main .team_member .member_name p {
  margin-bottom: 0;
}

/* ============================= */
/*          Fun And Fact         */
/* ============================= */

#mt_fun {
  padding: 0;
  position: relative;
}

#mt_fun .container {
  border-top: 1px solid #f7f7f7;
  padding: 54px 15px 60px;
  border-bottom: 1px solid #f7f7f7;
}

.fun-facts_wrapper {
  text-align: center;
  padding-top: 10px;
}

#mt_fun .fun-facts_figure {
  font-weight: 600;
  font-size: 48px;
  color: #005d85;
  margin-top: 0px;
  margin-bottom: 0px;
}

#mt_fun .fun-facts_title {
  font-size: 16px;
  color: #5c6774;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 0;
}

#mt_fun .fun-facts_title:before {
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  margin: 0 auto;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .fun-facts_wrapper {
    margin-bottom: 40px;
    padding-top: 0;
  }

  #mt_fun .container {
    padding-bottom: 20px;
  }
}

@media (max-width: 640px) {
  #mt_fun .fun-facts_figure {
    font-size: 36px;
  }
}

@media (max-width: 359px) {
  #mt_fun .col-md-3.col-sm-3.col-xs-6.facts_col {
    width: 100%;
  }
}

/* ============================= */
/*          Mission        */
/* ============================= */

.mission-content h3 {
  margin: 0;
  color: #005d85;
}

.mission-content h2 {
  margin: 20px 0;
}

.mission-content p {
  margin-bottom: 0;
}

.mission-progress-bar {
  margin-top: 46px;
}

.progress-wrap {
  position: relative;
  margin-bottom: 25px;
}

.progress-wrap:last-child,
.progress:last-child {
  margin-bottom: 0;
}

.progress {
  position: relative;
  display: block;
  width: 100%;
  background: #f1f1f1;
  height: 15px;
  border-radius: 5px;
  -webkit-transition: 0.4s linear;
  -moz-transition: 0.4s linear;
  -ms-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  -webkit-transition-property: width, background-color;
  -moz-transition-property: width, background-color;
  -ms-transition-property: width, background-color;
  -o-transition-property: width, background-color;
  transition-property: width, background-color;
}

.progress-wrap h5 {
  margin: 0 0 10px;
}

.progress-bar {
  height: 14px;
  width: 0px;
  background: orange;
  border-radius: 5px;
  position: relative;
  box-shadow: none;
}

.bar-width {
  position: absolute;
  right: 10px;
  top: -10px;
  font-size: 13px;
  height: 35px;
  line-height: 35px;
  color: #fff;
}

@media only screen and (max-width: 767px) {}

/* ====================== */
/*      Testimonials      */
/* ====================== */
#mt_testimonial {
  background: url(../images/img08.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 72px;
}

#mt_testimonial .owl-dots .owl-dot.active {
  background: #005d85 none repeat scroll 0 0;
  border-radius: 5px;
  height: 5px;
  transition: all 0.5s ease 0s;
  width: 20px;
}

#mt_testimonial .owl-dots .owl-dot {
  border: 1px solid #005d85;
  border-radius: 5px;
  display: inline-block;
  height: 5px;
  margin-right: 12px;
  width: 20px;
}

#mt_testimonial .testimonial_main {
  border: 1px solid #f1f1f1;
  padding: 25px 25px;
  margin: 0 0 8px 0px;
  padding-bottom: 25px;
  float: left;
  background: #fff;
  width: 100%;
}

#mt_testimonial .owl-carousel .owl-item img,
#mt_testimonial.testi-main .testimonial_main img {
  text-align: center;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 25px;
  width: 120px;
  border: 3px solid #f1f1f1;
  display: inherit;
}

#mt_testimonial .testimonial_main h4 {
  margin: 20px 0 0;
}

#mt_testimonial .testimonial_main h4 a {
  padding: 0 0 5px;
  display: inline-block;
}

#mt_testimonial .testimonial_main span {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: #999;
}

#mt_testimonial .darker .testimonial_main {
  background: #1f1f1f;
}

#mt_testimonial .darker .testimonial_main em,
#mt_testimonial .darker .testimonial_main span {
  color: #eceaea;
}

#mt_testimonial .darker .testimonial_main .mt_testimonial_img img {
  box-shadow: 3px 3px 14px 0 #000000;
  -ms-box-shadow: 3px 3px 14px 0 #000000;
  -webkit-box-shadow: 3px 3px 14px 0 #000000;
  -moz-box-shadow: 3px 3px 14px 0 #000000;
  -o-box-shadow: 3px 3px 14px 0 #000000;
}

#mt_testimonial .darker .owl-dot.active {
  background: #eceaea;
}

#mt_testimonial .darker .owl-dot,
#mt_testimonial .darker .owl-dot.active:before {
  border-color: #eceaea;
}

#mt_testimonial .owl-dots {
  text-align: center;
  margin-top: 0px;
}

#mt_testimonial .testimonial_main p {
  margin-bottom: 6px !important;
  position: relative;
}

#mt_testimonial .testimonial_main p:before {
  content: "\f10d";
  font-family: fontawesome;
  font-size: 42px;
  left: -25px;
  opacity: 0.2;
  position: absolute;
  top: -36px;
  color: #ccc;
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 640px) {
  #mt_testimonial h2 {
    margin-bottom: 30px;
  }

  #mt_testimonial .testimonial_main {
    text-align: center;
    margin: 0 0 8px;
  }

  #mt_testimonial .testimonial_main p {
    font-size: 14px;
    line-height: 22px;
  }
}

/*testimonial inner page*/

#mt_team.team-main,
#mt_testimonial.testi-main {
  padding: 60px 0 30px;
}

#mt_testimonial.testi-main.about-testi {
  padding-bottom: 54px;
}

#mt_testimonial.testi-main .testimonial_main {
  margin-bottom: 30px;
}

#mt_testimonial.testi-main.about-testi .testimonial_main {
  margin: 0;
}

#mt_testimonial.testi-main .testimonial_main p:before {
  left: 5px;
}

/* ============================= */
/*          Fun And Fact         */
/* ============================= */

#mt_watch .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(49, 208, 147, 0.6);
}

#mt_watch .watch_content {
  position: relative;
}

#mt_watch .watch_content h1 {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
}

#mt_watch .watch_content a img {
  display: block;
  margin: 0 auto;
  width: 10%;
}

@media only screen and (max-width: 640px) {
  #mt_watch .watch_content h1 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 480px) {
  #mt_watch .watch_content a img {
    width: 18%;
  }
}

/* ============================= */
/*          Blog Section         */
/* ============================= */

#mt_blog .mt_btn_blue {
  margin-bottom: 0;
}

#mt_blog .blog-post_wrapper,
#blog_main_sec .blog-post_wrapper {
  border: 1px solid #f1f1f1;
  transition: all ease-in-out 0.5s;
}

#mt_blog .blog-post_wrapper:hover,
#blog_main_sec .blog-post_wrapper:hover {
  border-color: #005d85;
  transition: all ease-in-out 0.5s;
  box-shadow: 0 0 10px #ccc;
}

#mt_blog .blog-post-image .img,
#blog_main_sec .blog-post-image .img {
  overflow: hidden;
}

#mt_blog .blog-post-image .img img,
#blog_main_sec .blog-post-image .img img {
  max-width: 100%;
  min-width: 100%;
}

#mt_blog .author_img {
  margin-bottom: 0;
  margin-top: -59px;
  position: relative;
  z-index: 99;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(204, 204, 204, 0.61);
  -moz-box-shadow: 1px 1px 3px 0 rgba(204, 204, 204, 0.61);
  -o-box-shadow: 1px 1px 3px 0 rgba(204, 204, 204, 0.61);
  -ms-box-shadow: 1px 1px 3px 0 rgba(204, 204, 204, 0.61);
}

#mt_blog .post-detail_container,
#blog_main_sec .post-detail_container {
  position: relative;
}

#mt_blog .post-detail_container .sperator,
#blog_main_sec .post-detail_container .seperator {
  position: absolute;
  top: 0;
  width: 100%;
  height: 35px;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: skew(0, -5deg);
  -moz-transform: skew(0, -5deg);
  -ms-transform: skew(0, -5deg);
  -o-transform: skew(0, -5deg);
  transform: skew(0, -5deg);
  background: #fff;
  z-index: 10;
}

#mt_blog .post-detail_container .post-content,
#blog_main_sec .post-detail_container .post-content {
  background-color: #ffffff;
  padding: 15px 15px 5px;
  transition: all ease-in-out 0.5s;
}

#mt_blog .post-detail_container .post-content,
#blog_main_sec .post-detail_container .post-content {
  padding: 20px;
  position: relative;
}

#mt_blog .post-detail_container .post-content p.cats a,
#blog_main_sec .post-detail_container .post-content p.cats a {
  position: absolute;
  top: -18px;
  background: #005d85;
  padding: 6px 18px;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
}

#mt_blog .post-detail_container .post-content p.cats a.orange,
#blog_main_sec .post-detail_container .post-content p.cats a.orange {
  background: orange;
}

#mt_blog .post-detail_container .post-content p.cats a.green,
#blog_main_sec .post-detail_container .post-content p.cats a.green {
  background: #09b726;
}

#mt_blog .post-detail_container .post-content .post-title,
#blog_main_sec .post-detail_container .post-content .post-title {
  margin: 0;
}

#mt_blog .post-detail_container .post-content .post-metadata,
#blog_main_sec .post-detail_container .post-content .post-metadata {
  padding-left: 0px;
  margin: 1px 0 10px;
}

#mt_blog .post-detail_container .post-content .post-metadata li,
#blog_main_sec .post-detail_container .post-content .post-metadata li {
  font-size: 13px;
  line-height: 20px;
  color: #de7900;
  padding-right: 3px;
  padding-left: 3px;
  margin: 0;
}

#mt_blog .post-detail_container .post-content .post-metadata li:before,
#blog_main_sec .post-detail_container .post-content .post-metadata li:before,
#mt_blog .post-detail_container .post-content .post-metadata li:after,
#blog_main_sec .post-detail_container .post-content .post-metadata li:after {
  display: none !important;
}

#mt_blog .post-detail_container .post-content .post-metadata li a,
#blog_main_sec .post-detail_container .post-content .post-metadata li a {
  font-size: 13px;
  line-height: 20px;
  color: #de7900;
  text-decoration: none;
}

#mt_blog .post-detail_container .post-content p.post-excerpt {
  color: #444444;
  font-size: 14px;
  line-height: 22px;
}

#mt_blog .post-detail_container .post-content .view_detail {
  text-align: center;
}

#mt_blog .view_all_posts {
  margin-top: 50px;
  padding: 10px 30px;
  border: 1px solid #444444;
  font-size: 16px;
  border-radius: 50px;
  display: inline-block;
  color: #444444;
  text-decoration: none;
  font-family: "Tahoma", sans-serif;
}

#mt_blog .view_all_posts:hover,
#mt_blog .view_all_posts:focus {
  border: 1px solid #444444;
  color: #ffffff;
  background-color: #444444;
  transition: all 0.5s ease;
  text-shadow: initial;
  text-decoration: none;
}

#mt_blog .darker .blog-post_wrapper {
  -webkit-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.61);
  -moz-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.61);
  -o-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.61);
  -ms-box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.61);
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.61);
}

#mt_blog .darker .blog-post_wrapper .sperator,
#mt_blog .darker .blog-post_wrapper .post-content {
  background: #1f1f1f;
}

#mt_blog .darker .blog-post_wrapper .post-content h3 a {
  color: #ffffff;
}

#mt_blog .darker .blog-post_wrapper .post-content ul li,
#mt_blog .darker .blog-post_wrapper .post-content ul li a,
#mt_blog .darker .blog-post_wrapper .post-content p {
  color: #eceaea;
}

#mt_blog .darker .view_all_posts {
  border: 1px solid #eceaea;
  color: #eceaea;
}

#mt_blog .darker .view_all_posts:hover,
#mt_blog .darker .view_all_posts:focus {
  border: 1px solid #eceaea;
  color: #444444;
  background-color: #eceaea;
}

@media only screen and (max-width: 991px) {
  #mt_blog .col-sm-12 {
    margin-top: 30px;
  }

  #mt_blog .author_img {
    margin-bottom: 32px;
    margin-top: -47px;
  }

  #mt_blog .post-detail_container .sperator {
    height: 65px;
  }
}

@media (max-width: 767px) {
  section#mt_blog {
    padding-bottom: 50px;
  }

  #mt_blog .blog-post_wrapper,
  #blog_main_sec .blog-post_wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 639px) {
  section#mt_blog {
    padding-bottom: 65px;
  }
}

/* ============================= */
/*          Fun And Fact         */
/* ============================= */
#mt_get_started {
  background-image: url(../images/started-bg.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 60px 0 60px;
}

#mt_get_started .container {
  position: relative;
  z-index: 1;
}

#mt_get_started .watch_content {
  position: relative;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

#mt_get_started .watch_content h1 {
  text-align: center;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
}

#mt_get_started .watch_content h1 {
  color: orange;
  font-size: 60px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 0.8;
}

#mt_get_started .watch_content h2 {
  color: #fff;
}

#mt_get_started .watch_content p {
  color: #ffffff;
  display: block;
  margin: 0 auto 30px;
  width: 80%;
}

#mt_get_started .watch_content p {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #mt_get_started .watch_content {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  #mt_get_started .watch_content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #mt_get_started .watch_content h2 {
    font-size: 24px;
  }
}

/* ====================== */
/*         Contact        */
/* ====================== */

#mt_contact .contact-info h3 {
  color: #555;
  margin: 0 0 25px;
}

.contact-info ul {
  text-align: center;
  margin-bottom: 30px;
}

.contact-info ul li {
  padding: 0 25px 0 0;
  display: inline-block;
  margin-bottom: 0;
}

.contact-info ul li:last-child {
  padding: 0;
}


.contact-inner {
  text-align: center;
}

#mt_contact .map_info {
  margin-bottom: 24px;
  overflow: hidden;
}

#mt_contact .map {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

#mt_contact .contact_form1 h3 {
  line-height: 35px;
  margin-bottom: 40px;
}

#mt_contact .contact_form1 #submit-btn {
  margin-top: 5px;
  margin-bottom: 0;
  position: relative;
  float: left;
}

#mt_contact .contact_form1 textarea {
  resize: none !important;
}

#mt_contact.contact-main {
  padding: 60px 0;
}

#mt_contact.contact-main .contact-inner {
  text-align: left;
}

#mt_contact.contact-main .contact-info ul {
  text-align: inherit;
}

#mt_contact.contact-main .contact-info ul li {
  display: block;
  padding: 0 0 20px;
}

@media only screen and (max-width: 767px) {
  #mt_contact .map_info {
    margin: 30px 0 0;
  }

  #mt_contact.contact-main .map_info {
    margin: 0 0 30px;
  }

  #mt_contact.contact-main .col-md-6 {
    padding: 0;
  }
}

@media only screen and (max-width: 640px) {
  #mt_get_started .watch_content {
    width: 100%;
  }

  #mt_contact .contact-inner {
    padding: 0px;
  }

  #mt_contact .contact-inner .col-md-6 {
    padding: 0;
  }

  #mt_contact .contact_form1 {
    margin-bottom: 0;
  }

  #mt_contact h2 {
    margin-bottom: 30px;
  }

  #mt_contact.contact-main .contact-inner {
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  #mt_contact .contact_form1 {
    padding: 0;
  }

  #mt_contact .contact_form1 h3 {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 28px;
  }

  #mt_contact .contact_form1 textarea,
  #mt_contact .contact_form1 input[type="text"],
  #mt_contact .contact_form1 input[type="email"] {
    font-size: 16px;
  }

  #mt_contact .contact_form1 #submit-btn {
    font-size: 15px;
    margin-top: 5px;
    padding: 10px 30px;
  }

  .contact-info ul {
    text-align: left;
  }
}

/* ====================== */
/*         Footer         */
/* ====================== */

#mt_footer {
  padding-top: 40px;
  background-color: #1f1f1f;
}

#mt_footer h3 {
  color: #fff;
  margin: 0 0 65px;
  position: relative;
}

#mt_footer h3:before {
  content: "";
  position: absolute;
  bottom: -12px;
  height: 2px;
  width: 40px;
  background: #005d85;
  left: 0;
}

#mt_footer .footer-time {
  width: 70%;
  margin-bottom: 25px;
}

#mt_footer .footer-time p {
  margin-bottom: 5px;
}

#mt_footer .footer-time span {
  float: right;
}

#mt_footer .follow_us a {
  display: inline-block;
  /* margin-bottom: 30px; */
}

#mt_footer .follow_us p,
#mt_footer .follow_us h4 {
  color: #ffffff;
}

#mt_footer .follow_us h4 {
  margin-bottom: 5px;
}

#mt_footer .follow_us .social_icons li {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 15px;
}

#mt_footer .follow_us .social_icons li:before {
  display: none;
}

#mt_footer .follow_us .social_icons li a {
  color: #fff;
  margin-bottom: 0;
}

#mt_footer .follow_us .social_icons li a:hover {
  color: #005d85;
}

#mt_footer .mt_contact_ftr {
  float: left;
  width: 100%;
}

#mt_footer .mt_contact_ftr li {
  padding-left: 0;
  width: 100%;
  float: left;
}

#mt_footer .mt_contact_ftr li span {
  display: inline-block;
  float: left;
  margin-right: 0;
  font-size: 28px;
  color: #ffffff;
}

#mt_footer .mt_contact_ftr li a {
  display: inline-block;
  float: left;
  width: 85%;
  color: #ffffff;
  font-size: 14px;
}

#mt_footer .mt_contact_ftr li a:hover {
  color: #005d85;
}

#mt_footer .post_contnt_ftr {
  clear: both;
  width: 68%;
  display: inline-block;
  padding-left: 10px;
  vertical-align: top;
}

#mt_footer .mt_post_ftr li {
  padding: 0;
  margin-bottom: 0px;
}

#mt_footer .mt_post_ftr li:last-child {
  margin-bottom: 0;
}

#mt_footer .mt_post_ftr ul.thumbs li {
  padding: 0 5px;
  margin-bottom: 10px;
}

#mt_footer .mt_post_ftr ul.thumbs li img {
  width: 100%;
}

#mt_footer .mt_post_ftr li:before,
#mt_footer .mt_contact_ftr li:before {
  display: none;
}

#mt_footer .mt_post_ftr li h4 {
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 3px;
  text-transform: capitalize;
}

#mt_footer .mt_post_ftr li a {
  color: #ffffff;
}

#mt_footer .mt_post_ftr li a:hover {
  color: #005d85;
}

#mt_footer .mt_post_ftr li p {
  color: #eceaea;
  margin-bottom: 0;
  font-size: 12px;
}

#mt_footer .mt_footer_copy {
  background: #151414;
  margin-top: 40px;
  padding-top: 22px;
}

#mt_footer .mt_footer_copy .copy_txt p {
  color: #eceaea;
}

.made_txt a {
  color: #005d85;
}

#mt_footer .mt_footer_copy .made_txt p {
  color: #eceaea;
  /* text-align: right; */
}

#mt_footer .mt_footer_copy .made_txt i {
  color: #e91e63;
  margin-left: 5px;
}

@media only screen and (max-width: 991px) {

  #mt_footer .mt_contact_ftr li:last-child,
  #mt_footer .mt_post_ftr li:last-child {
    margin-bottom: 0;
  }

  #mt_footer .mt_footer_copy .copy_txt p {
    text-align: center;
  }

  #mt_footer .mt_footer_copy .made_txt p {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  #mt_footer {
    padding-top: 40px;
  }

  .policy-link {
    font-size: 15px;
  }

  #mt_footer .mt_footer_copy {
    margin-top: 40px;
  }

  #mt_footer h3 {
    margin-bottom: 40px;
  }

  #mt_footer .follow_us {
    margin-bottom: 40px;
  }

  #mt_footer .mt_footer_copy .copy_txt p {
    margin-bottom: 5px;
  }

  #mt_footer .footer-time {
    width: 100%;
  }
}

@media only screen and (max-width: 639px) {

  #mt_footer .col-md-3.col-sm-3.col-xs-6,
  #mt_footer .col-md-4.col-sm-4.col-xs-6 {
    width: 100%;
  }

  #mt_footer .mt_contact_ftr {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 480px) {
  #mt_footer .mt_post_ftr li img {
    width: 25%;
  }
}

/* =================================================== */
/*          Portfolio Detail Section             */
/* =================================================== */

section#portfolio_details {
  padding: 60px 0;
}

.portfolio_description h3 {
  margin-bottom: 15px;
}

.portfolio_description ul {
  list-style: disc;
  padding: 10px 10px 10px 35px;
  background: #fbfbfb;
  border: 1px solid #f1f1f1;
}

.portfolio_description ul li {
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 2.3;
}

.related-project {
  padding-top: 60px;
}

.related-item {
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}

.related-item h3 {
  margin-bottom: 0;
}

.related-item h3 a {
  position: absolute;
  background: #005d8575;
  bottom: 0px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.related-item:hover h3 a {
  bottom: 37%;
  transition: all ease-in-out 0.3s;
}

@media (max-width: 1100px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #portfolio_details .portfolio_description h2 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  #portfolio_details .col-sm-6 {
    width: 100%;
  }

  .project_gallery {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  section#portfolio_details {
    padding-bottom: 45px;
  }

  .related-item {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 360px) {}

@media only screen and (min-width: 480px) and (max-width: 640px) {
  #portfolio_details .portfolio_description h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 479px) {
  #portfolio_details .portfolio_description h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

/* ============================= */
/*          Blog Single          */
/* ============================= */

#blog_main_sec #comments .mt_btn_blue {
  padding: 4px 16px;
  font-size: 14px;
  margin: 0;
}

#blog_main_sec #comments form .mt_btn_blue {
  padding: 8px 20px;
}

#blog_main_sec .post_img {
  margin-bottom: 30px;
}

#blog_main_sec .post_item.post_video .post_img {
  margin-bottom: 22px;
}

#blog_main_sec .post_img img {
  width: 100%;
}

#blog_main_sec .post_title h3 {
  margin-bottom: 5px;
  margin-top: 0;
}

#blog_main_sec .post_title ul li,
#blog_main_sec .post_title ul li a {
  color: #de7900;
  margin-bottom: 10px;
  font-size: 14px;
}

#blog_main_sec .post_title ul li:before {
  display: none;
}

#blog_main_sec .post_item a.mt_btn_blue {
  margin-bottom: 0;
}

#blog_main_sec .author_box {
  overflow: hidden;
  margin-top: 40px;
}

#blog_main_sec .author_box .author_img {
  float: left;
  width: 22%;
}

#blog_main_sec .author_box .author_img img {
  margin-bottom: 10px;
  width: 100%;
  border-radius: 50%;
}

#blog_main_sec .author_box .author_bio {
  float: left;
  margin-left: 3%;
  width: 75%;
}

#blog_main_sec .author_box .author_bio h5 {
  margin-top: 0;
  margin-bottom: 10px;
}

#blog_main_sec .author_box .author_bio p {
  margin-bottom: 10px;
}

#blog_main_sec .author_box .author_bio ul li {
  display: inline-block;
  padding-left: 0;
  padding-right: 15px;
  margin-bottom: 0;
}

#blog_main_sec .author_box .author_bio ul li:before {
  display: none;
}

#blog_main_sec .author_box .author_bio ul li a {
  color: #444444;
  font-size: 17px;
}

#blog_main_sec .author_box .author_bio ul li a:hover {
  color: #005d85;
  transition: all 0.4s ease;
}

#blog_main_sec #comments {
  margin-top: 40px;
}

#blog_main_sec #comments .single-post_heading,
#blog_main_sec #comments .leave_comment h3 {
  font-size: 20px;
  color: #444444;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

#blog_main_sec #comments .single-post_heading:before {
  width: 10%;
}

#blog_main_sec #comments .comments-lists:before {
  display: none;
}

#blog_main_sec #comments .comments-lists .comment {
  position: relative;
  list-style: none;
  padding-left: 98px;
  padding-top: 1px;
  min-height: 100px;
  border-bottom: 1px solid #f8f8f8;
  margin-top: 20px;
}

#blog_main_sec #comments .comments-lists .comment:last-child {
  border-bottom: 0px;
}

#blog_main_sec #comments .comments-lists .comment .activity_rounded {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

#blog_main_sec #comments .comments-lists .comment .activity_rounded img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

#blog_main_sec #comments .comments-lists .comment h4 {
  font-size: 15px;
  color: #444444;
  margin-top: 0px;
  text-transform: capitalize;
}

#blog_main_sec #comments .comments-lists .comment p {
  font-size: 14px;
  color: #777777;
  line-height: 24px;
}

#blog_main_sec #comments .comments-lists .comment small.date-posted {
  color: #666666;
  font-size: 12px;
  margin-left: 12px;
  border: 1px solid #f1f1f1;
  padding: 5px 10px;
  background: #fbfbfb;
}

#blog_main_sec #comments .comments-lists .comment .comment-body {
  padding-bottom: 20px;
}

#blog_main_sec #comments .comments-lists .comment .comment-body .mt_btn_red {
  padding: 0px 25px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
}

#blog_main_sec #comments .comments-lists .comment .children {
  overflow: hidden;
  list-style: none;
  padding-left: 0px;
  list-style: none;
}

#blog_main_sec #comments .comments-lists .comment .children .comment {
  position: relative;
  border-top: 1px solid #f8f8f8;
  border-bottom: 0px;
  margin-top: 0px;
}

#blog_main_sec #comments .comments-lists .comment .children .comment:before {
  display: none;
}

#blog_main_sec #comments .comments-lists .comment .children .comment .activity_rounded {
  margin-top: 20px;
}

#blog_main_sec #comments .comments-lists .comment .children .comment .comment-body {
  border: none;
  margin-top: 20px;
  padding-bottom: 5px;
}

#blog_main_sec #comments .leave_comment h3 {
  font-size: 20px;
  color: #444444;
  text-transform: capitalize;
}

#blog_main_sec #comments .leave_comment .form-group .form-control {
  height: 40px;
}

#blog_main_sec #comments .leave_comment .form-group input[type="text"],
#blog_main_sec #comments .leave_comment .form-group input[type="email"] {
  border: 1px solid #eceaea;
  border-radius: 5px;
  box-shadow: none;
  font-size: 16px;
  color: #1a1a1a;
  padding: 10px 25px;
  margin-bottom: 20px;
}

#blog_main_sec #comments .leave_comment .form-group input[type="text"]:hover,
#blog_main_sec #comments .leave_comment .form-group input[type="text"]:focus,
#blog_main_sec #comments .leave_comment .form-group input[type="email"]:hover,
#blog_main_sec #comments .leave_comment .form-group input[type="email"]:focus {
  border: 1px solid #005d85;
}

#blog_main_sec #comments .leave_comment textarea {
  resize: vertical;
  min-height: 180px;
  border: none;
  border: 1px solid #eceaea;
  border-radius: 5px;
  box-shadow: none;
  font-size: 16px;
  color: #1a1a1a;
  padding: 10px 25px;
  margin-bottom: 20px;
}

#blog_main_sec #comments .leave_comment textarea:hover,
#blog_main_sec #comments .leave_comment textarea:focus {
  border: 1px solid #005d85;
}

aside .widget {
  background-color: #fff;
  margin-bottom: 50px;
  padding: 0 2rem;
}

aside .widget:last-child {
  margin-bottom: 0;
}

aside .widget h3 {
  margin-bottom: 30px;
  margin-top: 0px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  line-height: 0.8;
}

aside .widget.widget_instagram h3 {
  margin-bottom: 29px;
}

aside .widget.widget_tag_cloud h3 {
  margin-bottom: 25px;
}

aside .widget ul {
  padding: 0px;
  overflow: hidden;
  list-style: none;
  margin-bottom: 0px;
}

aside .widget ul li {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

aside .widget ul li:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}

aside .widget ul li:before {
  display: none;
}

aside .widget ul li span.categoryCount {
  float: right;
}

aside .widget ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #444444;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}

aside .widget.widget_categories ul li a:before,
aside .widget.widget_custom_menu ul li a:before {
  content: "\f105";
  font-family: fontawesome;
  padding-right: 5px;
}

aside .widget ul li a:hover {
  color: #005d85;
  transition: all ease-in-out 0.3s;
}

aside .widget .search-form input[type="text"] {
  width: 100%;
  font-size: 20px;
  padding-left: 10px;
  padding-right: 40px;
  font-weight: 300;
  background-image: url(../images/search-icon.png);
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-position-x: 98%;
  background-position-y: 50%;
  margin-bottom: 0;
}

aside .widget_recent_entries ul {
  overflow: hidden;
}

aside .widget_recent_entries ul li {
  position: relative;
  padding-left: 80px;
  float: left;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

aside .widget_recent_entries ul li:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}

aside .widget_recent_entries ul li:before {
  display: none;
}

aside .widget_recent_entries ul li h4 {
  margin-bottom: 3px;
  line-height: 16px;
  margin-top: 0;
}

aside .widget_recent_entries ul li h4 a {
  color: #444444;
  line-height: 20px;
}

aside .widget_recent_entries ul li h4 a:hover {
  color: #005d85;
  transition: all ease 0.4s;
}

aside .widget_recent_entries ul li span {
  color: #666666;
  font-size: 14px;
}

aside .widget_recent_entries ul li p,
aside .widget_recent_entries ul li p span {
  color: #de7900;
  margin-bottom: 0;
  font-size: 14px;
}

aside .widget_recent_entries ul li img {
  position: absolute;
  top: 2px;
  left: 0;
}

aside .widget_recent_entries ul li a {
  font-size: 15px;
  font-weight: 600;
  display: block;
  text-decoration: none;
}

aside .widget_tag_cloud ul {
  overflow: hidden;
}

aside .widget_tag_cloud ul li {
  display: inline-block;
  margin-right: 0px;
  margin-bottom: 5px;
  padding-bottom: 0;
  border: none;
}

aside .widget_tag_cloud ul li a {
  background-color: #faf8f8;
  font-size: 14px;
  text-transform: capitalize;
  text-decoration: none;
  color: #444444;
  padding: 6px 15px;
  font-weight: 400;
  border-radius: 3px;
}

aside .widget_tag_cloud ul li a:hover,
aside .widget_tag_cloud ul li a:focus {
  color: #ffffff;
  background: #005d85;
}

aside .widget.widget_instagram a {
  width: 25%;
  margin: 0;
  float: left;
  border: 1px solid #ffffff;
}

aside .widget.widget_follow .socibox {
  display: inline-block;
  margin: 0 2px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1.4;
  border: 1px solid #f4f4f4;
  background-color: #f9f9f9;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .widget.widget_follow .socibox:hover {
  background: #005d85;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

aside .widget.widget_follow .socibox:hover span {
  color: #fff;
}

aside .widget.widget_follow .socibox span {
  font-size: 16px;
  color: #444;
}

@media only screen and (max-width: 991px) {
  aside .widget {
    padding: 0;
  }
}

@media only screen and (max-width: 811px) {
  #blog_main_sec aside.col-md-4.col-sm-4.col-xs-12 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #blog_main_sec .post_title h3 {
    line-height: 35px;
  }
}

@media only screen and (max-width: 639px) {
  #blog_main_sec #comments .comments-lists .comment .activity_rounded {
    position: inherit;
    top: inherit;
  }

  #blog_main_sec #comments .comments-lists .comment {
    padding-left: 0px;
  }

  #blog_main_sec #comments .comments-lists .comment .comment-body {
    margin-top: 25px;
  }

  #blog_main_sec #comments .comments-lists .comment .activity_rounded {
    text-align: center;
    display: inherit;
  }

  #blog_main_sec #comments .comments-lists .comment .activity_rounded img {
    display: inline-block;
  }
}

@media only screen and (max-width: 480px) {
  #blog_main_sec .post_title {
    margin-bottom: 15px;
  }

  #blog_main_sec .post_title h3 {
    line-height: 24px;
    font-size: 18px;
  }

  #blog_main_sec .post_title ul li {
    font-size: 14px;
    margin-bottom: 0;
  }
}

/* ============================= */
/*          Blog Listing         */
/* ============================= */

#blog_main_sec {
  padding: 60px 0px 60px;
  background-color: #fff;
  position: relative;
}

#blog_main_sec .post_item {
  margin-bottom: 32px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 30px;
}

#blog_main_sec .post_item:last-child {
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}

.pagination-main {
  line-height: 0.8;
}

#blog_main_sec .pagination {
  margin-top: 0px;
  margin-bottom: 0;
}

#blog_main_sec.grid-view .pagination {
  margin-top: 2px;
}

#blog_main_sec .pagination li {
  padding-left: 0;
  padding-bottom: 0;
}

#blog_main_sec .pagination li:before,
#blog_main_sec .pagination li:after {
  display: none !important;
}

#blog_main_sec .pagination li a {
  border-radius: 50%;
  height: 40px;
  line-height: 38px;
  margin-right: 9px;
  padding: 0;
  text-align: center;
  width: 40px;
  color: #444444;
  font-size: 12px;
  border-color: #bfbfbf;
}

#blog_main_sec .pagination li a:hover,
#blog_main_sec .pagination li a:focus {
  background-color: #005d85;
  color: #ffffff;
  border-color: #005d85;
}

#blog_main_sec .pagination .prev a,
#blog_main_sec .pagination .next a {
  border-radius: 50px;
}

#blog_main_sec .pagination li.active a {
  background: #005d85 !important;
  border-color: #005d85 !important;
  color: #ffffff;
}

@media only screen and (min-width: 480px) and (max-width: 991px) {
  /*#blog_main_sec aside .widget.widget_recent_entries ul li h4 {margin-top: 20px; } */
}

@media only screen and (max-width: 767px) {
  #blog_main_sec .pagination li a {
    margin-bottom: 15px;
  }
}

/* ================================== */
/*            Blog Grid          */
/* ================================== */

#blog_main_sec h3.post-title.entry-title {
  margin-top: 0;
  margin-bottom: 10px;
}

#blog_main_sec .grid-item {
  margin-bottom: 30px;
}

#blog_main_sec .blog-post-image .img img,
#blog_main_sec.grid-view .pagination {
  margin-bottom: 0;
}

/* ================================== */
/*            left Sidebar          */
/* ================================== */

#blog_main_sec.left-sidebar .col-md-8 {
  float: right;
}

/* ================================== */
/*            Back to Top          */
/* ================================== */

.back-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: #005d85;
  border: none;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  text-align: center;
  padding: 10px 0 0;
  z-index: 1;
}

#back-to-top:hover {
  background-color: #222222;
}

/*homepage version 1.1*/

/*------------------------------------------------------*/
/* FULL WIDTH ANIMATED LAYERS 
/*------------------------------------------------------*/
#home-banner {
  overflow: hidden;
  max-height: 670px;
  position: relative;
  background: #000000;
}

#home-banner:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

#home-banner:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#home-banner>.carousel-inner>.item>img,
#home-banner>.carousel-inner>.item>a>img {
  opacity: 0.4;
  margin: auto;
  max-width: inherit;
}

/*---------- ROTATE AND SCALE CLOCK WISE EFFECT ----------*/
.ps_rotate_scale_c {
  opacity: 1;
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

.ps_rotate_scale_c .item {
  top: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0;
  display: block;
  -webkit-transform: scale(2) rotate(45deg);
  transform: scale(2) rotate(45deg);
  -webkit-transition: -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1) 0s,
    opacity cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1) 0s,
    opacity cubic-bezier(0.23, 1, 0.32, 1) 2s;
}

.ps_rotate_scale_c .item:first-child {
  top: auto;
  position: relative;
}

.ps_rotate_scale_c .item.active {
  opacity: 1;
  z-index: 2;
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
  -webkit-transition: -webkit-transform 2s cubic-bezier(0.23, 1, 0.32, 1) 0s,
    opacity cubic-bezier(0.23, 1, 0.32, 1) 2s;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1) 0s,
    opacity cubic-bezier(0.23, 1, 0.32, 1) 2s;
}

/*---------- INDICATORS CONTROL ----------*/
.ps_indicators_l>.carousel-indicators {
  left: 0;
  width: 100%;
  bottom: 5%;
  right: 0;
  margin: auto;
  z-index: 1;
}

.ps_indicators_l>.carousel-indicators li {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 1);
  border: none;
  padding: inherit;
  transition: all ease-in-out 0.5s;
}

.ps_indicators_l>.carousel-indicators .active {
  background: #005d85;
  height: 10px;
  transition: all ease-in-out 0.5s;
}

/*---------- LEFT/RIGHT CONTROL ----------*/
.ps_control_rotate_f .carousel-control {
  top: 45%;
  opacity: 0;
  width: 50px;
  height: 50px;
  z-index: 100;
  color: #000000;
  display: block;
  font-size: 34px;
  cursor: pointer;
  overflow: hidden;
  line-height: 48px;
  text-shadow: none;
  position: absolute;
  font-weight: normal;
  background: #fff;
}

.ps_control_rotate_f:hover .carousel-control {
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.ps_control_rotate_f .carousel-control.left {
  left: 3%;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.ps_control_rotate_f .carousel-control.right {
  right: 3%;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.ps_control_rotate_f .carousel-control.left:hover,
.ps_control_rotate_f .carousel-control.right:hover {
  color: #ffffff;
  background: #005d85;
}

.ps_control_rotate_f .carousel-control.left>span:nth-child(1) {
  left: 45%;
}

.ps_control_rotate_f .carousel-control.right>span:nth-child(1) {
  right: 45%;
}

/*---------- SLIDE CAPTION ----------*/
.caption_slide {
  left: 0;
  top: 30%;
  right: 0;
  margin: 0 auto;
  width: 70%;
  position: absolute;
  text-align: center;
}

.caption_slide>h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-shadow: none;
  font-style: normal;
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Delius Unicase", cursive;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.caption_slide>h3::before {
  content: "";
  top: 50%;
  height: 3px;
  width: 75px;
  right: 100%;
  display: block;
  margin-top: -2px;
  position: absolute;
  margin-right: 0.5em;
  border-bottom: 2px solid #ffffff;
}

.caption_slide>h3::after {
  content: "";
  top: 50%;
  left: 100%;
  height: 3px;
  width: 75px;
  display: block;
  margin-top: -2px;
  margin-left: 0.5em;
  position: absolute;
  border-bottom: 2px solid #ffffff;
}

.caption_slide>h1 {
  padding: 0;
  color: #ffffff;
  font-size: 65px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  margin-bottom: 0;
}

.caption_slide>h1>span {
  color: #005d85;
}

.caption_slide>p {
  padding: 0;
  color: #ffffff;
  font-size: 18px;
  text-shadow: none;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 1px;
  margin: 30px 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.caption_slide>a {
  color: #000000;
  font-size: 12px;
  position: relative;
  margin: 40px 0 0 0;
  text-align: center;
  padding: 15px 30px;
  white-space: nowrap;
  letter-spacing: 2px;
  display: inline-block;
  text-decoration: none;
  text-shadow: none;
  text-transform: uppercase;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.caption_slide>a:hover,
.caption_slide>a:active {
  color: #ffffff;
  background: #005d85;
}

section#mt_services.services_one {
  padding-top: 80px;
}

/*------------------------------------------------------*/
/* RESPONSIVE
/*------------------------------------------------------*/
@media (min-width: 1500px) {

  #home-banner>.carousel-inner>.item>img,
  #home-banner>.carousel-inner>.item>a>img {
    width: 100%;
  }

  .caption_slide {
    top: 30%;
  }
}

@media (max-width: 991px) {
  .caption_slide {
    top: 32%;
  }

  .caption_slide>h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .caption_slide>h1 {
    font-size: 36px;
  }
}

@media (max-width: 735px) {
  .caption_slide {
    top: 26%;
  }
}

@media (max-width: 639px) {
  .ps_control_rotate_f .carousel-control.left {
    left: 0;
  }

  .ps_control_rotate_f .carousel-control.right {
    right: 0;
  }

  .caption_slide>h1 {
    font-size: 28px;
  }
}

/*------------------------------------------------------*/
/* SLIDING TIMING FUNCTIONS
/*------------------------------------------------------*/

/*---------- ps_ease ----------*/
.ps_ease .carousel-inner>.item {
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_ease .carousel-inner>.item {
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -ms-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
  }
}

/*---------- ps_easeInOut ----------*/
.ps_easeInOut .carousel-inner>.item {
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInOut .carousel-inner>.item {
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }
}

/*---------- ps_speedy ----------*/
.ps_speedy .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_speedy .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    -moz-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    -ms-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    -o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
    transition-timing-function: cubic-bezier(0, 1, 0, 1);
  }
}

/*---------- ps_slowSpeedy ----------*/
.ps_slowSpeedy .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
  -o-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
  transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_slowSpeedy .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
    -moz-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
    -ms-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
    -o-transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
    transition-timing-function: cubic-bezier(0.3, 1, 0, 1);
  }
}

/*---------- ps_easeOutInCubic ----------*/
.ps_easeOutInCubic .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  -moz-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  -ms-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  -o-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutInCubic .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
    -moz-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
    -ms-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
    -o-transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
    transition-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  }
}

/*---------- ps_swing ----------*/
.ps_swing .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
  -moz-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
  -ms-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
  -o-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
  transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_swing .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
    -moz-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
    -ms-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
    -o-transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
    transition-timing-function: cubic-bezier(0.02, 0.01, 0.47, 1);
  }
}

/*---------- ps_easeOutCubic ----------*/
.ps_easeOutCubic .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutCubic .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -ms-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

/*---------- ps_easeInOutCubic ----------*/
.ps_easeInOutCubic .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInOutCubic .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -ms-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}

/*---------- ps_easeOutCirc ----------*/
.ps_easeOutCirc .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutCirc .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -moz-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -ms-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    -o-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  }
}

/*---------- ps_easeOutExpo ----------*/
.ps_easeOutExpo .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutExpo .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
}

/*---------- ps_easeInQuad ----------*/
.ps_easeInQuad .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -ms-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInQuad .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -moz-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -ms-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
}

/*---------- ps_easeOutQuad ----------*/
.ps_easeOutQuad .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutQuad .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/*---------- ps_easeInOutQuad ----------*/
.ps_easeInOutQuad .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -ms-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInOutQuad .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -moz-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -ms-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/*---------- ps_easeOutQuart ----------*/
.ps_easeOutQuart .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutQuart .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

/*---------- ps_easeInOutQuart ----------*/
.ps_easeInOutQuart .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInOutQuart .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -ms-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  }
}

/*---------- ps_easeOutQuint ----------*/
.ps_easeOutQuint .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutQuint .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  }
}

/*---------- ps_easeInSine ----------*/
.ps_easeInSine .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  -moz-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  -ms-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInSine .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    -moz-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    -ms-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
}

/*---------- ps_easeOutSine ----------*/
.ps_easeOutSine .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -moz-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -ms-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeOutSine .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -ms-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    -o-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
    transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}

/*---------- ps_easeInOutSine ----------*/
.ps_easeInOutSine .carousel-inner>.item {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -ms-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@media all and (transform-3d),
(-webkit-transform-3d) {
  .ps_easeInOutSine .carousel-inner>.item {
    -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -ms-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
}

/*------------------------------------------------------*/
/* FULL WIDTH ANIMATED LAYERS ONE
/*------------------------------------------------------*/
#home-banner>.carousel-inner>.item {
  overflow: hidden;
}

.caption_slide1 {
  top: 30%;
  left: 9%;
  width: 65%;
  right: auto;
  text-align: left;
  position: absolute;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.caption_slide1_right {
  right: 9%;
  left: auto;
  text-align: right;
}

.caption_slide1_center {
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.caption_slide1>h1 {
  color: #ffffff;
  margin: 10px 0;
  font-size: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.caption_slide1>h2 {
  margin: 0;
  color: #ffffff;
  font-size: 35px;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.caption_slide1>h3 {
  margin: 0;
  color: #ffffff;
  font-weight: 400;
  text-shadow: none;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.caption_slide1>a,
.caption_slide1>a:visited {
  width: 120px;
  color: #ffffff;
  font-size: 12px;
  text-align: left;
  font-weight: 400;
  margin-top: 25px;
  text-shadow: none;
  position: relative;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: width cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  transition: width cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.caption_slide1>a:hover,
.caption_slide1>a:active {
  width: 130px;
}

.caption_slide1_right>a {
  text-align: right;
}

.caption_slide1_center>a {
  width: 135px;
  text-align: center;
}

.caption_slide1>a:after {
  top: 0;
  right: 0;
  content: "\f178";
  font-style: normal;
  position: absolute;
  font-weight: normal;
  font-family: FontAwesome;
  text-decoration: inherit;
}

.caption_slide1_right>a:after {
  left: 0;
  right: auto;
  content: "\f177";
}

.caption_slide1_center>a:before {
  top: 0;
  left: 0;
  content: "\f177";
  font-style: normal;
  position: absolute;
  font-weight: normal;
  font-family: FontAwesome;
  text-decoration: inherit;
}

/*------------------------------------------------------*/
/* RESPONSIVE
/*------------------------------------------------------*/

@media (max-width: 991px) {
  .caption_slide1>h1 {
    font-size: 48px;
  }

  .caption_slide1>h2 {
    font-size: 32px;
  }

  .ps_control_rotate_f .carousel-control.left {
    left: 0;
  }

  .ps_control_rotate_f .carousel-control.right {
    right: 0;
  }

  .caption_slide1.caption_slide1_center {
    left: 0;
    right: 0;
  }

  .caption_slide1 {
    left: 10%;
  }

  .caption_slide1.caption_slide1_right {
    right: 10%;
    left: auto;
  }
}

@media (max-width: 811px) {
  .caption_slide1>h1 {
    font-size: 40px;
  }

  .caption_slide1>h2 {
    font-size: 28px;
  }
}

@media (max-width: 639px) {
  .ps_control_rotate_f .carousel-control {
    display: none;
  }

  .caption_slide1 {
    top: 35%;
    width: 100%;
  }

  .caption_slide1_right {
    right: 5%;
    left: auto;
  }

  .caption_slide1_center {
    left: 0;
    right: 0;
  }

  .caption_slide1>h1 {
    font-size: 24px;
  }

  .caption_slide1>h2 {
    font-size: 18px;
  }

  .caption_slide1>h3 {
    font-size: 14px;
  }

  .caption_slide1>a,
  .caption_slide1>a:visited {
    margin-top: 10px;
  }
}

/*------------------------------------------------------*/
/* ANIMATION EFFECTS
/*------------------------------------------------------*/
.kbrns_zoomInOut>.carousel-inner>.item>img,
.kbrns_zoomInOut>.carousel-inner>.item>a>img {
  -webkit-transform-origin: 100% 0%;
  -moz-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -o-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
  -moz-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
  -o-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
  -ms-animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
  animation: kbrns_zoomInOut 25s linear 0s infinite alternate;
}

/*---------- ANIMATION ----------*/
@-webkit-keyframes kbrns_zoomInOut {
  0% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
  }
}

@-moz-keyframes kbrns_zoomInOut {
  0% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(1.2);
  }
}

@-ms-keyframes kbrns_zoomInOut {
  0% {
    -ms-transform: scale(1);
  }

  100% {
    -ms-transform: scale(1.2);
  }
}

@-o-keyframes kbrns_zoomInOut {
  0% {
    -o-transform: scale(1);
  }

  100% {
    -o-transform: scale(1.2);
  }
}

@keyframes kbrns_zoomInOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/*------------------------------------------------------*/
/* VIDEO 096
/*------------------------------------------------------*/

/*---------- VIDEO AND IMAGE ----------*/
.home-banner_vid {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  position: relative;
}

.home-banner_vid:after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
}

.home-banner_vid>video {
  width: 100%;
}

.home-banner_img>img {
  display: none;
}

/*---------- MEDIA 991px ----------*/
@media only screen and (max-width: 991px) {

  /*---------- IMAGE ----------*/
  .home-banner_img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    position: relative;
  }

  .home-banner_img:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
  }

  .home-banner_img>img {
    max-width: inherit;
    display: block;
  }

  /*---------- VIDEO ----------*/
  .home-banner_vid {
    display: none;
  }
}

/*---------- TEXT LAYER ----------*/
.caption_slide2 {
  top: 25%;
  width: 100%;
  padding: 5px 15px;
  text-align: center;
  position: absolute;
}

.caption_slide2>h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: none;
  text-transform: capitalize;
  font-family: "Lato", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

.caption_slide2>h1>span {
  color: #005d85;
  margin-left: 10px;
}

.caption_slide2>h1 {
  color: #ffffff;
  font-size: 70px;
  margin-bottom: 30px;
  text-transform: uppercase;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

.caption_slide2>p {
  width: 550px;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0 auto 35px;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

.caption_slide2>a {
  width: 165px;
  height: 45px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
  background: #ffffff;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  transition: all 0.6s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
  animation-timing-function: cubic-bezier(0.22, 0.81, 0.01, 0.99);
}

.caption_slide2>a:hover {
  color: #ffffff;
  background: #005d85;
}

@media (max-width: 991px) {
  .caption_slide2>h1 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .caption_slide2>h4 {
    font-size: 24px;
  }

  .caption_slide2>h1 {
    font-size: 40px;
  }

  .caption_slide2>p {
    width: 80%;
  }
}

@media (max-width: 567px) {
  .caption_slide2>h4 {
    font-size: 18px;
  }

  .caption_slide2>h1 {
    font-size: 28px;
  }

  .caption_slide2>p {
    width: 100%;
  }
}

/*homestyle 2*/

/*header*/

.home_style_1 #inner-navigation .navbar.navbar-default {
  padding: 15px 0;
}

.home_style_1 .navbar-fixed-top {
  position: inherit;
}

.home_style_1 #inner-navigation .nav.navbar-nav>li>a {
  color: #222;
  font-size: 14px;
  text-transform: uppercase;
}

.home_style_1 .navbar.navbar-default ul.nav.navbar-nav {
  margin-top: 8px;
}

.home_style_1 #inner-navigation .navbar-sticky-in.navbar-default {
  background: #fff;
  padding: 10px 0;
}

.home_style_1 .header-search {
  position: relative;
  float: right;
  margin: 0;
}

.home_style_1 .header-search i {
  margin-top: 13px;
}

.home_style_1 .search-box-wrap {
  background: #ffffff;
  display: none;
  position: absolute;
  right: 0;
  top: 65px;
  padding: 10px;
  z-index: 2;
}

.home_style_1 #inner-navigation .navbar-sticky-in.navbar-default .search-box-wrap {
  top: 53px;
}

.home_style_1 .searchform {
  width: 430px;
  margin: 0 auto;
  max-width: 100%;
}

.home_style_1 form.search-form {
  position: relative;
}

.home_style_1 input.search-field {
  width: 100%;
  border: 5px solid #f7f7f7;
  margin-bottom: 0;
}

.home_style_1 input.search-submit,
input.search-submit:visited {
  position: absolute;
  top: 5px;
  margin: 0;
  right: 5px;
  font-size: 13px;
  border-radius: 0;
  background: #005d85;
  color: #fff;
}

.home_style_1 .slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
  color: #00cffd;
}

@media (max-width: 991px) {

  .home_style_1 .slicknav_btn.slicknav_open:before,
  .home_style_1 .slicknav_btn.slicknav_collapsed:before {
    color: #08d1ff;
  }

  .home_style_1 .header-search {
    display: none;
  }

  .home_style_1 #inner-navigation .navbar-sticky-in.navbar-default .slicknav_nav {
    top: 62px;
  }
}

/*slider*/

@media (max-width: 639px) {
  .home_style_1 .caption_slide {
    top: 22%;
  }
}

/*about*/
.home_style_1 .about_services {
  text-align: center;
}

span.about-no {
  font-size: 36px;
  font-weight: bold;
  display: inline-block;
  width: 100%;
  color: #005d85;
}

.home_style_1 #mt_außenbereich .about_services h3 {
  padding-left: 0px;
}

.home_style_1 #mt_außenbereich .about_services p {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .home_style_1 #mt_außenbereich {
    padding-top: 75px;
  }

  .cta-inner-wrapper h2 {
    font-size: 21px;
  }
}

@media (max-width: 639px) {
  .cta-inner-wrapper .button.pull-right {
    float: none;
    display: inline-block;
    margin-top: 25px;
    width: 100%;
  }
}

/*fun fact*/

.home_style_1 #mt_fun {
  background: url(../images/fun-bg.jpg);
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.home_style_1 #mt_fun:before {
  content: "";
  background: rgba(31, 31, 31, 0.78);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}

.home_style_1 #mt_fun .fun-facts_figure {
  font-size: 54px;
}

.home_style_1 #mt_fun .section_title span,
.home_style_1 #mt_fun p.heading_txt,
.home_style_1 #mt_fun .fun-facts_title,
.home_style_1 #mt_fun .fun-facts_figure {
  color: #fff;
}

.home_style_1 #mt_fun .container {
  border: none;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .home_style_1 #mt_fun {
    padding-bottom: 30px;
  }

  .home_style_1 .fun-facts_wrapper {
    margin-bottom: 50px;
  }
}

/*call to action*/

.section-cta {
  margin: 80px 0 0;
}

.cta-inner-wrapper {
  background: #012a33;
  padding: 40px 35px;
  display: inline-block;
  width: 100%;
}

.cta-inner-wrapper h2 {
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
}

.cta-description a {
  margin: 0;
}

@media (max-width: 767px) {
  .section-cta {
    margin-top: 50px;
  }
}

@media (max-width: 735px) {
  .cta-inner-wrapper {
    text-align: center;
    padding: 20px;
  }

  .cta-inner-wrapper .button.pull-right {
    width: 100%;
    float: none;
    display: inline-block;
    margin-top: 15px;
  }
}

/*portfolio*/
@media (max-width: 735px) {
  .home_style_1 section#mt_portfolio {
    padding-top: 40px;
  }
}

/*testimonial*/

.home_style_1 #mt_testimonial {
  background: #fbfbfb;
}

/*pricing*/

section.pricing .section_heading {
  margin-bottom: 5.5rem;
}

.pricing-item {
  background: #ffffff none repeat scroll 0 0;
  float: left;
  margin: 30px 0;
  text-align: center;
  box-shadow: 0 0 5px #dddddd;
  padding: 0 0 30px;
}

.pricing-item.p-recommended {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 1;
  margin: 0;
}

.pricing-header {
  background-color: #666;
  background-size: 100% auto;
  color: #222;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
}

.pricing-item.p-recommended .pricing-header {
  background: #005d85;
}

.pricing-header h3 {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
}

.pricing-ribbon {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 150px;
  overflow: hidden;
  height: 150px;
}

.pricing-ribbon h4 {
  background-color: #ffffff;
  margin-top: 38px;
  transform: translateY(-50%) translateX(-50%) translateX(38px) rotate(-45deg);
  color: #000;
  font-size: 13px;
  line-height: 3em;
  letter-spacing: 1px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.29);
  text-align: center;
}

.pricing-cost span.pricing-currency {
  font-size: 26px;
}

.pricing-cost {
  margin-bottom: 15px;
}

.pricing-cost span {
  display: inline-block;
}

.pricing-price {
  font-weight: 700;
  font-size: 71px;
  line-height: 1;
}

.pricing-content {
  text-align: left;
}

.pricing-content li {
  list-style: none;
  margin: 0;
  padding: 15px 30px;
}

.pricing-content li:nth-child(even) {
  background: #fbfbfb;
}

.pricing-content li i {
  color: #005d85;
  margin-right: 10px;
}

@media (max-width: 767px) {
  section.pricing {
    padding-bottom: 50px;
  }

  .pricing-item {
    width: 100%;
    margin: 0 0 30px;
  }
}

/*blog*/
.home_style_1 section#mt_blog {
  background: #fff;
}

.home_style_1 #mt_blog .blog-post_wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: none;
  box-shadow: 0 0 15px #cccccc80;
}

/*Contact info*/

.home_style_1 .contact-info ul {
  text-align: left;
}

.home_style_1 .contact-info ul li {
  padding: 10px 25px 10px 15px;
  width: 100%;
  margin-bottom: 0;
  border: 1px solid #f1f1f1;
  margin-bottom: 18px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}

.home_style_1 .contact-info ul li:before {
  content: "";
  background: #005d85;
  position: absolute;
  left: 0;
  height: 100%;
  width: 5px;
  top: 0;
}

.instagram h3 {
  text-align: center;
}

.instagram .slick-prev,
.instagram .slick-next {
  height: 50px;
  width: 50px;
  background: #000000b0;
}

.instagram .slick-prev:before,
.instagram .slick-next:before {
  line-height: 0.9;
}

.instagram .slick-prev:hover,
.instagram .slick-prev:focus,
.instagram .slick-next:hover,
.instagram .slick-next:focus {
  background: #000000b0;
}

@media (max-width: 767px) {
  .home_style_1 .contact-info {
    margin-top: 30px;
  }

  .home_style_1 section#mt_contact {
    padding-bottom: 68px;
  }
}

/*------------------------------------------------------*/
/* JAVASCRIPT GRAPH 046
/*------------------------------------------------------*/
#js_graph_046 {
  overflow: hidden;
  max-height: 658px;
  position: relative;
  background: #000000;
}

#js_graph_046:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

#js_graph_046:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#js_graph_046>.carousel-inner>.item>img,
#js_graph_046>.carousel-inner>.item>a>img {
  width: 100%;
  margin: auto;
}

/*---------- INDICATORS CONTROL ----------*/
.ps_indicators_numb_brdr>.carousel-indicators {
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  margin-left: 0;
  text-align: left;
  cursor: e-resize;
  overflow-x: auto;
  padding-left: 3%;
  padding-right: 3%;
  line-height: 70px;
  overflow-y: hidden;
  white-space: nowrap;
}

.ps_indicators_numb_brdr>.carousel-indicators li {
  width: 20px;
  height: 20px;
  text-indent: 0;
  line-height: 0;
  color: #000000;
  font-size: 18px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.7);
  font-family: "Raleway", sans-serif;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.ps_indicators_numb_brdr>.carousel-indicators li span {
  top: 0;
  opacity: 0;
  position: relative;
}

.ps_indicators_numb_brdr>.carousel-indicators .active {
  width: 20px;
  margin: 1px;
  height: 20px;
  text-indent: 0;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.7);
}

.ps_indicators_numb_brdr>.carousel-indicators .active span {
  opacity: 1;
  top: -20px;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ps_indicators_numb_brdr>.carousel-indicators::-webkit-scrollbar {
  height: 5px;
}

.ps_indicators_numb_brdr>.carousel-indicators::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.8);
  -webkit-border-radius: 0;
  border-radius: 0;
}

/*---------- LEFT/RIGHT CONTROL ----------*/
.ps_control_b_r_radius .carousel-control {
  top: 89%;
  opacity: 1;
  width: 25px;
  height: 25px;
  z-index: 100;
  border: none;
  color: #000000;
  display: block;
  font-size: 18px;
  cursor: pointer;
  overflow: hidden;
  line-height: 22px;
  text-shadow: none;
  position: absolute;
  font-weight: normal;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.7);
  font-family: "Raleway", sans-serif;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7);
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.ps_control_b_r_radius:hover .carousel-control {
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.ps_control_b_r_radius .carousel-control.left {
  right: 5%;
  left: auto;
}

.ps_control_b_r_radius .carousel-control.right {
  right: 2%;
  left: auto;
}

.ps_control_b_r_radius .carousel-control.left:hover,
.ps_control_b_r_radius .carousel-control.right:hover {
  color: #ffffff;
  background: transparent;
}

/*---------- SLIDE CAPTION ----------*/
.js_graph_x {
  text-align: left;
}

.js_graph_x_right {
  right: 10%;
  left: auto;
  text-align: right;
}

.js_graph_x_center {
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.js_graph_x>div {
  text-align: center;
}

.js_graph_x>div>span {
  float: left;
  width: 125px;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  background: #f6f6f6;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-border-radius: 100px 0 0 100px;
  border-radius: 100px 0 0 100px;
}

.js_graph_x>div>span:after {
  top: 7px;
  z-index: 2;
  content: "";
  right: -7px;
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 7px 0 7px 7px;
  border-color: transparent #f6f6f6;
}

.js_graph_x>div>.progress {
  height: 28px;
  margin-bottom: 35px;
  background: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0 100px 100px 0;
  border-radius: 0 100px 100px 0;
  position: inherit;
  width: auto;
}

.js_graph_x>div:last-child>.progress {
  margin-bottom: 0;
}

.js_graph_x>div>.progress>.progress-bar {
  color: #f6f6f6;
  line-height: 28px;
  background: orange;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0 100px 100px 0;
  border-radius: 0 100px 100px 0;
  height: inherit;
}

.js_graph_x>div:nth-child(2)>.progress>.progress-bar {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>div:nth-child(3)>.progress>.progress-bar {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>div:nth-child(4)>.progress>.progress-bar {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>div:nth-child(5)>.progress>.progress-bar {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>div:nth-child(6)>.progress>.progress-bar {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>div:nth-child(7)>.progress>.progress-bar {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.js_graph_x>a,
.js_graph_x>a:visited {
  color: #f6f6f6;
  cursor: pointer;
  font-size: 12px;
  padding: 10px 30px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 2px;
  white-space: nowrap;
  background: #000000;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
  transition: all cubic-bezier(0.23, 1, 0.32, 1) 0.5s;
}

.js_graph_x>a:hover,
.js_graph_x>a:active {
  color: #000000;
  background: #f6f6f6;
}

@media (max-width: 767px) {
  .js_graph_x {
    margin-top: 25px;
  }

  .js_graph_x>div>.progress {
    margin-bottom: 15px;
  }
}

/*homepage style 2*/

.topbar-section {
  border-bottom: 1px solid #f1f1f1;
  padding: 3px 0 8px;
}

.top-bar-left ul li,
.top-bar-right ul li {
  display: inline-block;
}

.top-bar-left ul li {
  font-size: 14px;
  padding: 0;
  border-left: 1px solid #ccc;
  padding-left: 10px;
  margin: 0;
  color: #666;
}

.top-bar-left ul li:first-child {
  border: none;
  padding-left: 0;
}

.top-bar-right ul li {
  padding: 0 10px 0 0;
  margin: 0;
}

.top-bar-right ul li a {
  color: #666;
}

@media (max-width: 1100px) {

  .home_style_1 .navbar.navbar-default .navbar-collapse ul.nav.navbar-nav li,
  .home_style_1 #inner-navigation .nav.navbar-nav li {
    padding: 0;
    margin-bottom: 0;
    margin-left: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .home_style_2 #inner-navigation .slicknav_btn {
    top: 80px;
  }

  .home_style_2 .slicknav_nav {
    top: 134px;
  }
}

@media (max-width: 812px) {
  #inner-navigation .slicknav_menu i.fa.fa-angle-down {
    display: none;
  }
}

@media (max-width: 767px) {

  .home_style_2 .navbar.navbar-default.reveal-menu-home.sticky-nav .logo a img,
  .home_style_2 .sticky-nav-white .logo a img,
  .home_style_2 #inner-navigation .navbar.navbar-sticky-in .logo img {
    width: auto;
  }

  .home_style_2 #inner-navigation .navbar-sticky-in.navbar-default {
    background: #fff;
    padding: 15px 0;
  }

  .home_style_2 #inner-navigation .navbar.navbar-default {
    position: inherit;
    top: inherit;
  }

  .home_style_2 #inner-navigation .slicknav_btn,
  .home_style_2 #inner-navigation .navbar-sticky-in.navbar-default .slicknav_btn {
    top: 80px;
  }
}

@media (max-width: 639px) {
  .top-bar-left ul li {
    font-size: 13px;
  }

  .top-bar-right ul li {
    font-size: 14px;
  }
}

@media (max-width: 567px) {
  .home_style_2 #inner-navigation .navbar-sticky-in.navbar-default .slicknav_btn {
    top: 152px;
  }

  .topbar-section {
    text-align: center;
  }

  .top-bar-left.pull-left,
  .top-bar-right.pull-right {
    display: inline-block;
    float: none !important;
    width: 100%;
  }

  .top-bar-left ul li {
    border: none;
    padding: 0;
  }

  .home_style_2 #inner-navigation .slicknav_btn {
    top: 152px;
  }

  .home_style_2 .slicknav_nav {
    top: 203px;
  }
}

@media (max-width: 567px) and (min-width: 360px) {

  .home_style_2 #inner-navigation .slicknav_btn,
  .home_style_2 #inner-navigation .navbar-sticky-in.navbar-default .slicknav_btn {
    top: 118px;
  }

  .home_style_2 .slicknav_nav {
    top: 168px;
  }
}

/*newsletter*/

#newsletter {
  padding: 40px 0;
  background: linear-gradient(to left, #005d85, #005a86);
  position: relative;
}

.news-content h3 {
  color: #fff;
}

.news-content p {
  margin-bottom: 0;
  color: #fff;
}

.mailpoet_form {
  padding-top: 35px;
  position: relative;
}

.mailpoet_form input.mailpoet_text {
  border: none;
  padding: 16px 142px 16px 25px;
  margin: 0;
}

#newsletter input[type="submit"] {
  border: none;
  background: #005d85;
  position: absolute;
  top: 38px;
  right: 3px;
  color: #fff;
  margin: 0;
  padding: 12px 20px;
}

@media (max-width: 567px) {
  .news-content {
    text-align: center;
  }

  .mailpoet_form input.mailpoet_text {
    padding: 16px;
  }

  #newsletter input[type="submit"] {
    color: #005d85;
    background: #111;
    position: inherit;
    top: inherit;
    right: inherit;
    padding: 12px 20px;
    width: 100%;
    margin-top: 10px;
  }
}

/*footer*/

.home_style_2 #mt_footer {
  background: #000 url(../images/footer-bg.jpg) no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  position: relative;
}

.home_style_2 #mt_footer:before {
  content: "";
  position: absolute;
  background: #000000d6;
  height: 100%;
  width: 100%;
  top: 0;
}

.home_style_2 #mt_footer .mt_footer_copy {
  border-top: 1px solid #f1f1f1;
  margin-top: 80px;
  padding-top: 22px;
}

.home_style_2 #mt_footer .instagram {
  margin-bottom: 65px;
}

.home_style_2 #mt_footer .instagram h3 {
  margin-bottom: 30px;
}

.home_style_2 #mt_footer .instagram h3:before {
  right: 0;
  margin: 0 auto;
}

.align-items-center {
  align-items: center !important;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 12px 17px;
  text-decoration: none;
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  transition: background 0.3s ease;
  height: 60px;
  width: 60px;
}

.play-button:hover {
  background: rgba(255, 0, 0, 0.7);
}

.back-color {
  background: linear-gradient(to left, rgb(0, 107, 132), rgba(146, 146, 146, 0.1));
  padding: 0px 10px;
}



.footer-ul-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}

.footer-text {
  font-size: 19px !important;
  margin-bottom: 0px !important;
}

@media(max-width: 768px) {
  .footer-ul-links {
    /* display: block; */
    justify-content: center;
  }

  .contact-map {
    margin-top: 30px;
  }

}

.date-input {
  font-size: 15px;
  border: 1px solid #efefef;
  text-align: left;
  padding: 8px 20px;
  color: #757575;
  margin: 0px 0px 20px 0px;
}
.Außenbereich-container {
  padding: 50px 0px;
}
.container.Außenbereich-container {
  padding: 50px 0px !important;

}

.main-logo {
  margin: 5px 10px;
  padding: 10px 0px;
  width: 90%;
}

.captcha-div {
  margin-bottom: 15px;
  padding: 0px;
}

.contact-address {
  border: 1px solid #efefefef;
  padding: 10px 15px;
  margin: 0px 0px 35px 0px;
  font-size: 16px;
  color: #4c5060;
  text-align: center;
  height: 140px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* .contact-number{
  border: 1px solid #efefefef;
  padding: 10px 15px;
  margin: 0px 0px 35px 0px;
  font-size: 16px;
  color: #4c5060;
  text-align: center;
  height: 140px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-mail{
  border: 1px solid #efefefef;
  padding: 10px 15px;
  margin: 0px 0px 35px 0px;
  font-size: 16px;
  color: #4c5060 ;
  text-align: center;
  height: 140px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
} */
.contact-detail {
  padding: 0px 6px;
  gap: 10px;
  display: flex;
  margin-bottom: 40px;
}

/* .contact-address:hover{
  box-shadow: 0 4px 8px rgba(4, 107, 121, 0.2); 
  border-radius: 8px; 
  padding: 1rem;       
  background-color: white;
} */
.contact-info div i {
  color: white;
  padding-right: 5px;
}

.booking-tool {
  height: 400px;
  overflow-y: scroll;
}

.tool-height {
  height: 2400px;
}

@media (max-width: 768px) {
  .contact-detail {
    display: block;
    /* for md and up */
  }

  .main-logo {
    width: 50%;
  }

  .navbar.navbar-default.reveal-menu-home.sticky-nav .logo a img,
  .sticky-nav-white .logo a img,
  #inner-navigation .navbar.navbar-sticky-in .logo img {
    width: 50%;
    transition: all ease-in-out 0.5s;
  }

  .tool-height {
    height: 1250px;
  }

  .last-serviece {
    padding: 0px;
  }

  .welcome-text {
    font-size: 28px;
    text-align: center;
  }
}

@media (max-width: 968px) {
  .tool-height {
    height: 2050px;
  }
}

.contact-icon {
  font-size: 30px;
}

.contact-form {
  padding-bottom: 80px;
}

.contact-address i {
  color: #005d85;
  padding-right: 5px;
  transition: color 0.3s;
}

/* Hover effect */
.contact-address:hover {
  background-color: #005d85;
  color: white;
  box-shadow: 0 4px 8px rgba(4, 107, 121, 0.2);
}

.contact-address:hover p {
  color: white;
}

.contact-address:hover i {
  color: white;
}



/* Default style for the contact box */
.contact-address {
  border: 1px solid #efefef;
  padding: 20px 25px;
  margin: 15px 0px;
  font-size: 16px;
  color: #4c5060;
  text-align: center;
  height: 180px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover effect: scale up and change shadow */
.contact-address:hover {
  transform: translateY(-5px) scale(1.05);
  /* Slightly lift and scale the box */
  background-color: #005d85;
  /* Change background color */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  /* Stronger shadow */
}

/* Change text and icon color on hover */
.contact-address:hover i {
  color: white;
}

.contact-address:hover p {
  color: white;
}

/* Icon container: color circle */
.contact-icon {
  display: inline-block;
  background-color: #005d85;
  /* Default colorful circle (you can change this) */
  border-radius: 50%;
  padding: 15px 26px;
  width: 75px;
  height: 75px;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Icon inside the circle */
.contact-icon i {
  color: #fff;
  /* White icon by default */
  font-size: 24px;
  /* Icon size */
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-address:hover .contact-icon {
  background-color: #005d85;
  transform: rotate(360deg);
}

.contact-address:hover .contact-icon i {
  color: white;
  transform: scale(1.3);

}

/* Animation for fade-in effect when page loads */
.contact-address {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

/* Keyframes for fade-in and slide-up effect */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }

}

.outdoor-subtitle {
  padding-bottom: 25px;
}

.Outdoor-list {
  border: 1px solid;
  padding: 5px 10px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 1px 5px 0 rgb(40 65 71 / 50%);
}

.Outdoor-list:hover {
  background-color: white;
  color: #000;
  font-weight: 500;
  box-shadow: 0 1px 5px 0 rgb(40 65 71 / 50%);
  border: 1px solid white;
}

.extra-services {
  gap: 10px;
}

.extra-service-img {
  position: absolute;
  top: 26px;
  right: 29px;
}

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

.Impressum-box {
  border: 1px solid #efefef;
  padding: 20px;
  margin: 50px;
  box-shadow: 3px 3px #eaeaea;
}

.Impressum-box:hover {
  background-color: #005d85;
  color: white !important;
}

.Impressum-box:hover h5 {
  color: white !important;
}

.service-box {
  height: 420px;
}

.sw-cont-sec {
  position: relative;
}

.welcome-text {
  text-align: center;
  margin-top: 50px;
  position: absolute;
  left: 30%;
  width: 100%;
}
@media (max-width: 768px) {
 
  .welcome-text {
    left: 5%;
  }
  .service-box {
    height: 460px;
  }
  
}
.float-left{
    float:left;
}

.cookies-btn-box{
    display: inline-block;
    
}




