*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: #f2f5f4;
  color: #879991;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  height: 100%;
  line-height: 26px;
  overflow: hidden;
}

body.alt {
  overflow: auto;
}

/*=============================================================================
======================= Typography ==============================================*/

h1 {
  color: #17422c;
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-style: italic;
  font-weight: 400;
  line-height: 38px;
  margin-left: 35px;
}

h2 {
  color: #17422c;
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
}

h3 {
  font-family: 'Playfair Display', serif;
  color: #879991;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-transform: lowercase;
  font-style: italic;
}

h4 {
  color: #17422c;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 5px;
}

p {
  display: block;
  margin-bottom: 15px;
}

.red {
  color: #a8635a;
  font-weight: 700;
  margin-top: 15px;

  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

a {
  color: #a8635a;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  margin-top: 15px;
  text-decoration: none;

  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  text-decoration: none !important;
}

a:hover, a:focus {
  color: #17422c;
}

a.alt-link {
  color: #879991;
}

a.alt-link:hover, a.alt-link:focus {
  color: #a8635a;
}


a.button {
  display: inline-block;
  padding: 20px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 12px;
  color: #a8635a;
  border: none;
  float: right;
  text-align: center;
  text-transform: none;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
}

a.button:hover {
  color: #17422c;
}

a.button:hover span.triangle {
  right: -300px;
}

a.button span.triangle {
  display: inline-block;
  position: absolute;
  right: -523px;
  bottom: -278px;
  height: 500px;
  width: 500px;
  background-color: #e2e7e5;
  z-index: -1;
  -webkit-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  transition: 0.9s cubic-bezier(0.18, 1, 0.21, 1);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacityIE)";
  filter: alpha(opacity=100);
}

ul.bullets {
    margin-left: 30px;
}

.quote {
  color: #879991;
  display: block;
  margin-top: 30px;
  margin-left: 35px;
  font-size: 18px;
}

.quote p {
  margin-left: 160px;
}

.quote-start::before {
  content: '';
  display: block;
  position: absolute;
  height: 63px;
  width: 97px;
  background-image: url("../img/quote.png");
  background-position: center center;
  background-repeat: no-repeat;
  top:5px;
  left: 15px;
}

.quote-end::after {
  content: '';
  display: block;
  position: absolute;
  height: 63px;
  width: 97px;
  background-image: url("../img/quote.png");
  background-position: center center;
  background-repeat: no-repeat;
  bottom:130px;
  left: 410px;
}

.bottom-line::after {
  background-color: #a8635a;
  border: none;
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  margin:12px 0 8px;
}

.tl-header {
  display: block;
  left: 0;
  padding: 0 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.alt .tl-header {
  border-bottom: 1px solid #cfd8d5;
  background: #f2f5f4;
}

hr {
  height: 30px;
  margin: 0;
  border: none;
}

/*=============================================================================
======================= logo Switch ==============================================*/

.tl-logo {
  float: left;
  line-height: 100px;
  height: 100px;
  margin: 0;
  padding: 0;
  position: relative;
}

.tl-logo a {
  background: url(../img/logo_alt.png) 0 0 no-repeat;
  background-size: 180px 50px;
  display:block;
  height:50px;
  margin: 30px 0 30px 0;
  position:relative;
  width:180px;
}

.tl-logo-dark {
  float: left;
  line-height: 100px;
  height: 100px;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 20;
  opacity: 0;
}

.tl-logo-dark a {
  background: url(../img/logo2@.png) 0 0 no-repeat;
  background-size: 180px 50px;
  display:block;
  height:50px;
  margin: 30px 0 30px 0;
  position:relative;
  width:180px;
}

.alt .tl-logo-dark{
  opacity: 1;
}



/* ------------------------------------- */
/* 2. Loading .......................... */
/* ------------------------------------- */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #17422c;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #a8635a;

        -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #879991;

        -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
          animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    }

    @-webkit-keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   {
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
        background: #f2f5f4;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;
                transition: all 0.3s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;

        -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateY(-100%);  /* IE 9 */
                transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.3s 1s ease-out;
                transition: all 0.3s 1s ease-out;
    }

    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }



.index-999 {
    z-index: -999 !important;
}

.display-none {
    display: none !important;
}

.opacity-0 {
  opacity: 0;
}



/* ------------------------------------- */
/* 8. Services ......................... */
/* ------------------------------------- */

.carousel {
    overflow: hidden;
}

.carousel-inner {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
  min-height: 300px;
}

#carousel-services .carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: auto;
  margin-right: 20px;
  margin-left: 20px;
  margin-top:3px;
  margin-bottom: 0;
  float: left;
}

#carousel-services .carousel-indicators li {
  background: transparent;
  border: 1px solid #879991;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#carousel-services .carousel-indicators li:hover {
  background: #17422c;
  border: 1px solid #17422c;
}
#carousel-services .carousel-indicators .active {
  background: #17422c;
  border: 1px solid #17422c;
}
#carousel-services .carousel-control {
  margin-top: 0;
  position: relative;
  width: 30px;
  font-size: 28px;
  text-shadow: none;
  background: none;
  color: #879991;
}

#carousel-services .carousel-control.left {
  margin-left: 10px;
  display: inline-block;
  float: left;
  opacity: 1;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#carousel-services .carousel-control.right {
  display: inline-block;
  float: left;
  opacity: 1;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#carousel-services .carousel-control.left:hover, #carousel-services .carousel-control.right:hover {
  color: #17422c;
}


.icon-services {
  display: block;
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.text-services {
  margin-top: 0;
  margin-left: 30px;
}

.text-services p {
  margin-bottom: 0;
}

span.item-num {
  color: #879991;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  margin-right: 10px;
}

span.leistung {
  display: inline-block;
  margin-right: 5px;
  color: #a8635a;
}

.map {
    width: 100%;
    height: 200px;
}


/*
.light::after {
  background: url(../img/logo_alt.png) 0 0 no-repeat;
  background-size: 214px 60px;
  content: '';
  display:block;
  height:60px;
  position:absolute;
  top:20px; left: 50px;
  width:214px;
  z-index: 20;
  opacity: 0;
}

.active.light::after {
  opacity: 1;

  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  transition-duration: 1s;
}


.dark::after {
  background: url(../img/logo2@.png) 0 0 no-repeat;
  background-size: 214px 60px;
  content: '';
  display:block;
  height:60px;
  position:absolute;
  top:20px; left: 50px;
  width:214px;
  z-index: 21;
  opacity: 0;
}

.active.dark::after {
  opacity: 1;

  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  transition-duration: 1s;
} */

.tl-nav-mobile {
  display:none;
}

.tl-nav {
  float:right;
	position:relative;
	z-index:90;
}

.tl-nav ul {
  list-style:none;
	padding:0px;
	margin:0;
}

.tl-nav ul li {
  cursor: pointer;
  display:inline-block;
	padding:28px 5px;
	margin:0 10px;

  transition:all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
}

.tl-nav ul li:last-child {
	margin:0 0 0 10px;
}

.tl-nav ul li:hover a, .tl-nav ul li.active a {
  color: #a8635a !important;
}

.tl-nav ul li a {
	color:#17422c;
	display:block;
	font-size:16px;
	font-weight: 400;
	text-decoration:none;
	text-transform:uppercase;
	text-shadow:none !important;

  transition:all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
}

#menu-link-mobile {
	display:none;
}

#menu-link {
  float: right;
	display: block;
	position: relative;
	padding: 15px 0 11px 15px;
  margin: 31px 0 0 30px;
  z-index: 999;
	opacity: 1;
}

#menu-link span {
  backface-visibility: hidden;
  background: none repeat scroll 0 0 #17422c;
  display: block;
  height: 4px;
  margin: 0 0 5px;
  transition: all 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  width: 30px;
}

#menu-link.close span.slice1 {
  margin-top: 9px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

#menu-link.close span.slice3 {
   margin-top: -18px;
  transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#menu-link.close span.slice2 {
	opacity: 0;
}

/* .scroll-btn.down {
  display: block;
  position: absolute;;
  padding: 20px;
  cursor: pointer;
  color:#08402b;
  font-family: 'Ubuntu', sans-serif;
  top:500px;
  right: 300px;
  z-index: 999999
}

.content {
  position: absolute;
  z-index: 999999;
  top: 50%;
  left: 100px;
  display: block;
} */


/*=============================================================================
======================= Images ==============================================*/

/* .ms-right, .ms-left {
  width: 50%;
  position: absolute;
  height: 100%;
  -ms-touch-action: none
}

.ms-right {
  right: 1px;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
}

.ms-left {
  left: 0;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
}

.ms-left .ms-section, .ms-right .ms-section {
  height: 100%;
} */

 #myContainer {
    height: 100% !important;
    overflow: visible !important;
    z-index: 9999 !important;
}

.left-sec-1 {
  background-image: url("../img/photos/photo-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.left-sec-3 {
  background-image: url("../img/photos/photo-3.jpg");
  background-position: center 35%;
  background-repeat: no-repeat;
  background-size: cover;
}

.left-sec-5 {
  background-image: url("../img/photos/photo-5.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.right-sec-2 {
  background-image: url("../img/photos/photo-2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.right-sec-4 {
  background-image: url("../img/photos/photo-4.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


/*=============================================================================
======================= Content ==============================================*/

.container-fluid {
  width: 100%;
}

.tl-content {
  padding: 100px 50px 50px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.tl-content-alt {
  display: block;
  position: relative;
  padding: 100px 0 50px;
}

.gap {
  padding-top: 20px;
  overflow: hidden;
}

.impressum {
  display: block;
  position: relative;
  padding: 150px 0 50px;
}

/*=============================================================================
======================= Services ==============================================*/
.ui-test {
  margin-top: 300px;
  width: 500px;
  margin-left: 500px;
}

.tl-services-box {
  display: block;
  z-index: 20;
}

a.tl-box {
  color: #6c6c6c;
  font-weight: 400;
  display: inline-block;
  padding: 15px 15px 15px 0;
  border: none;
  overflow: hidden;
  cursor: pointer;
  background-color: transparent;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -webkit-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
}

a:focus {
  outline: none;
}


/* a.tl-box:hover span.triangle {
  height: 300%;
  right: -335px;
  top: -335px;
  width: 300%;
} */

a.tl-box:hover span.triangle {
  right: -400px;
}

a.tl-box:hover p.red {
  color: #17422c;
}


a.tl-box span.triangle {
  display: inline-block;
  position: absolute;
  right: -520px;
  bottom: -520px;
  height: 700px;
  width: 700px;
  background-color: #e2e7e5;
  z-index: -2;
  -webkit-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -moz-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -ms-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -o-transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  transition: 2s cubic-bezier(0.18, 1, 0.21, 1);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=$opacityIE)";
  filter: alpha(opacity=100);
}


.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width:auto;
  max-width: 700px;
  margin: 20px auto;
}


/*=============================================================================
======================= Philosophy ==============================================*/

.counter-title {
  display: block;
  text-align: center;
  padding-top: 15px;
}

.counter-title span.bottom-line::after {
  margin: 15px auto 15px;
  display: block;
  text-align: center;
  float: none;
}

.counter-title span {
  clear: both;
  color: #17422c;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}

.counter-title p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.right-line {
  border-right: 1px solid #cfd8d5;
}

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

.contact-icon {
    border: 2px solid #a8635a;
    border-radius: 50%;
    display: block;
    height: 70px;
    position: relative;
    text-align: center;
    width: 70px;
}

.contact-icon i {
    color: #a8635a;
    font-size: 28px;
    line-height: 67px;
}

.contact-text {
  display: block;
  margin-top: 20px;
}

.contact-info {
  display: inline-block;
  margin-right: 20px;
  font-weight: 700;
}

#contact-form {
  margin-top: 40px;
}
#contact-form .form-control {
  background: #fff;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
  outline: medium none;
  height: 40px;
  width: 100%;
  color: #879991;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: left;
  font-family: 'Playfair Display', serif;
  -webkit-appearance: none;
}

#contact-form .form-control {
  box-shadow: none;
  border:1px solid #fff;
  -webkit-transition: border 0.2s ease-in-out;
  -moz-transition: border 0.2s ease-in-out;
  -ms-transition: border 0.2s ease-in-out;
  -o-transition: border 0.2s ease-in-out;
  transition: border 0.2s ease-in-out;
}

#contact-form .form-control:hover, #contact-form .form-control:focus {
  box-shadow: none;
}

#contact-form .form-control:focus{
  border:1px solid #17422c;
}


#contact-form .form-control::-webkit-input-placeholder {
  color: #879991 !important;
}
#contact-form .form-control::-moz-placeholder {
  color: #879991 !important;
}
#contact-form .form-control:-moz-placeholder {
  color: #879991 !important;
}
#contact-form .form-control:-ms-input-placeholder {
  color: #879991 !important;
}
#contact-form textarea.form-control {
  min-height: 150px;
  margin-bottom: 1em;
}
#contact-form button#valid-form {
  font-weight: 400;
  padding: 1em 2em;
  font-size: 14px;
  display: block;
  margin: 0 auto 0;
  background: #17422c;
  color: #f2f5f4;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;

  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#contact-form button#valid-form:hover {
  background: #a8635a;
}

#block-answer {
  min-height: 30px;
  margin-top: 1em;
  text-align: center;
}

.success-message, .error-message {
  color: #FFFFFF;
}
.success-message .ion-checkmark-round, .error-message .ion-checkmark-round {
  color: #27AE60;
}

.error-message .ion-close-round {
  color: #FFFFFF;
}
